临时 过渡
This commit is contained in:
parent
869de6b1be
commit
80937742dc
|
|
@ -1,6 +1,20 @@
|
|||
import { String, Text } from 'oak-domain/lib/types/DataType';
|
||||
import { EntityShape } from 'oak-domain/lib/types/Entity';
|
||||
import { QiniuConfig } from '../types/Config';
|
||||
export declare type QiniuConfig = {
|
||||
accessKey: string;
|
||||
secretKey: string;
|
||||
uploadHost: string;
|
||||
liveHost?: string;
|
||||
puhlishDomain?: string;
|
||||
playDomain?: string;
|
||||
playBackDomain?: string;
|
||||
hub?: string;
|
||||
publisthKey?: string;
|
||||
playKey?: string;
|
||||
bucket: string;
|
||||
domain: string;
|
||||
protocol: string | string[];
|
||||
};
|
||||
export declare type PlatformConfig = {
|
||||
Cos?: {
|
||||
qiniu?: QiniuConfig;
|
||||
|
|
|
|||
|
|
@ -1,7 +1,21 @@
|
|||
import { String, Boolean, Text } from 'oak-domain/lib/types/DataType';
|
||||
import { EntityShape } from 'oak-domain/lib/types/Entity';
|
||||
import { QiniuConfig } from '../types/Config';
|
||||
import { Schema as Platform } from './Platform';
|
||||
export declare type QiniuConfig = {
|
||||
accessKey: string;
|
||||
secretKey: string;
|
||||
uploadHost: string;
|
||||
liveHost?: string;
|
||||
puhlishDomain?: string;
|
||||
playDomain?: string;
|
||||
playBackDomain?: string;
|
||||
hub?: string;
|
||||
publisthKey?: string;
|
||||
playKey?: string;
|
||||
bucket: string;
|
||||
domain: string;
|
||||
protocol: string | string[];
|
||||
};
|
||||
export declare type SystemConfig = {
|
||||
Cos?: {
|
||||
qiniu?: QiniuConfig;
|
||||
|
|
|
|||
|
|
@ -4,8 +4,22 @@ import { OneOf } from "oak-domain/lib/types/Polyfill";
|
|||
import * as SubQuery from "../_SubQuery";
|
||||
import { FormCreateData, FormUpdateData, Operation as OakOperation, MakeAction as OakMakeAction } from "oak-domain/lib/types/Entity";
|
||||
import { GenericAction } from "oak-domain/lib/actions/action";
|
||||
import { QiniuConfig } from "..\\..\\types\\Config";
|
||||
import * as System from "../System/Schema";
|
||||
export declare type QiniuConfig = {
|
||||
accessKey: string;
|
||||
secretKey: string;
|
||||
uploadHost: string;
|
||||
liveHost?: string;
|
||||
puhlishDomain?: string;
|
||||
playDomain?: string;
|
||||
playBackDomain?: string;
|
||||
hub?: string;
|
||||
publisthKey?: string;
|
||||
playKey?: string;
|
||||
bucket: string;
|
||||
domain: string;
|
||||
protocol: string | string[];
|
||||
};
|
||||
export declare type PlatformConfig = {
|
||||
Cos?: {
|
||||
qiniu?: QiniuConfig;
|
||||
|
|
|
|||
|
|
@ -4,11 +4,25 @@ import { OneOf } from "oak-domain/lib/types/Polyfill";
|
|||
import * as SubQuery from "../_SubQuery";
|
||||
import { FormCreateData, FormUpdateData, Operation as OakOperation, MakeAction as OakMakeAction } from "oak-domain/lib/types/Entity";
|
||||
import { GenericAction } from "oak-domain/lib/actions/action";
|
||||
import { QiniuConfig } from "..\\..\\types\\Config";
|
||||
import * as Platform from "../Platform/Schema";
|
||||
import * as Application from "../Application/Schema";
|
||||
import * as Domain from "../Domain/Schema";
|
||||
import * as User from "../User/Schema";
|
||||
export declare type QiniuConfig = {
|
||||
accessKey: string;
|
||||
secretKey: string;
|
||||
uploadHost: string;
|
||||
liveHost?: string;
|
||||
puhlishDomain?: string;
|
||||
playDomain?: string;
|
||||
playBackDomain?: string;
|
||||
hub?: string;
|
||||
publisthKey?: string;
|
||||
playKey?: string;
|
||||
bucket: string;
|
||||
domain: string;
|
||||
protocol: string | string[];
|
||||
};
|
||||
export declare type SystemConfig = {
|
||||
Cos?: {
|
||||
qiniu?: QiniuConfig;
|
||||
|
|
|
|||
|
|
@ -1,9 +0,0 @@
|
|||
|
||||
|
||||
.container {
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: 'center';
|
||||
align-items: 'center';
|
||||
}
|
||||
|
|
@ -1,7 +1,22 @@
|
|||
import { String, Int, Datetime, Image, Boolean, Text } from 'oak-domain/lib/types/DataType';
|
||||
import { EntityShape } from 'oak-domain/lib/types/Entity';
|
||||
import { LocaleDef } from 'oak-domain/lib/types/Locale';
|
||||
import { QiniuConfig } from '../types/Config';
|
||||
|
||||
export type QiniuConfig = {
|
||||
accessKey: string;
|
||||
secretKey: string;
|
||||
uploadHost: string; // 七牛上传域名
|
||||
liveHost?: string; // 七牛直播云接口域名
|
||||
puhlishDomain?: string; // 推流域名
|
||||
playDomain?: string; // 拉流域名
|
||||
playBackDomain?: string; // 直播回放存储域名
|
||||
hub?: string; // 直播空间名,
|
||||
publisthKey?: string; // 直播空间限时鉴权密钥
|
||||
playKey?: string; // 拉流密钥
|
||||
bucket: string;
|
||||
domain: string; // 域名
|
||||
protocol: string | string[];
|
||||
};
|
||||
|
||||
export type PlatformConfig = {
|
||||
Cos?: {
|
||||
|
|
|
|||
|
|
@ -1,9 +1,24 @@
|
|||
import { String, Int, Datetime, Image, Boolean, Text } from 'oak-domain/lib/types/DataType';
|
||||
import { EntityShape } from 'oak-domain/lib/types/Entity';
|
||||
import { LocaleDef } from 'oak-domain/lib/types/Locale';
|
||||
import { QiniuConfig } from '../types/Config';
|
||||
import { Schema as Platform } from './Platform';
|
||||
|
||||
export type QiniuConfig = {
|
||||
accessKey: string;
|
||||
secretKey: string;
|
||||
uploadHost: string; // 七牛上传域名
|
||||
liveHost?: string; // 七牛直播云接口域名
|
||||
puhlishDomain?: string; // 推流域名
|
||||
playDomain?: string; // 拉流域名
|
||||
playBackDomain?: string; // 直播回放存储域名
|
||||
hub?: string; // 直播空间名,
|
||||
publisthKey?: string; // 直播空间限时鉴权密钥
|
||||
playKey?: string; // 拉流密钥
|
||||
bucket: string;
|
||||
domain: string; // 域名
|
||||
protocol: string | string[];
|
||||
};
|
||||
|
||||
export type SystemConfig = {
|
||||
Cos?: {
|
||||
qiniu?: QiniuConfig;
|
||||
|
|
|
|||
Loading…
Reference in New Issue