@alicloud/aliding20230426 2.46.0 → 2.47.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +16 -0
- package/dist/client.js +68 -0
- package/dist/client.js.map +1 -1
- package/dist/models/MeetingFlashMinutesTextHeaders.d.ts +37 -0
- package/dist/models/MeetingFlashMinutesTextHeaders.js +85 -0
- package/dist/models/MeetingFlashMinutesTextHeaders.js.map +1 -0
- package/dist/models/MeetingFlashMinutesTextRequest.d.ts +49 -0
- package/dist/models/MeetingFlashMinutesTextRequest.js +86 -0
- package/dist/models/MeetingFlashMinutesTextRequest.js.map +1 -0
- package/dist/models/MeetingFlashMinutesTextResponse.d.ts +19 -0
- package/dist/models/MeetingFlashMinutesTextResponse.js +69 -0
- package/dist/models/MeetingFlashMinutesTextResponse.js.map +1 -0
- package/dist/models/MeetingFlashMinutesTextResponseBody.d.ts +151 -0
- package/dist/models/MeetingFlashMinutesTextResponseBody.js +180 -0
- package/dist/models/MeetingFlashMinutesTextResponseBody.js.map +1 -0
- package/dist/models/MeetingFlashMinutesTextShrinkHeaders.d.ts +17 -0
- package/dist/models/MeetingFlashMinutesTextShrinkHeaders.js +63 -0
- package/dist/models/MeetingFlashMinutesTextShrinkHeaders.js.map +1 -0
- package/dist/models/MeetingFlashMinutesTextShrinkRequest.d.ts +32 -0
- package/dist/models/MeetingFlashMinutesTextShrinkRequest.js +64 -0
- package/dist/models/MeetingFlashMinutesTextShrinkRequest.js.map +1 -0
- package/dist/models/model.d.ts +12 -0
- package/dist/models/model.js +63 -39
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +78 -0
- package/src/models/MeetingFlashMinutesTextHeaders.ts +66 -0
- package/src/models/MeetingFlashMinutesTextRequest.ts +81 -0
- package/src/models/MeetingFlashMinutesTextResponse.ts +40 -0
- package/src/models/MeetingFlashMinutesTextResponseBody.ts +250 -0
- package/src/models/MeetingFlashMinutesTextShrinkHeaders.ts +33 -0
- package/src/models/MeetingFlashMinutesTextShrinkRequest.ts +51 -0
- package/src/models/model.ts +12 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class MeetingFlashMinutesTextHeadersAccountContext extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @remarks
|
|
5
|
+
* This parameter is required.
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* 012345
|
|
9
|
+
*/
|
|
10
|
+
accountId?: string;
|
|
11
|
+
static names(): {
|
|
12
|
+
[key: string]: string;
|
|
13
|
+
};
|
|
14
|
+
static types(): {
|
|
15
|
+
[key: string]: any;
|
|
16
|
+
};
|
|
17
|
+
validate(): void;
|
|
18
|
+
constructor(map?: {
|
|
19
|
+
[key: string]: any;
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
export declare class MeetingFlashMinutesTextHeaders extends $dara.Model {
|
|
23
|
+
commonHeaders?: {
|
|
24
|
+
[key: string]: string;
|
|
25
|
+
};
|
|
26
|
+
accountContext?: MeetingFlashMinutesTextHeadersAccountContext;
|
|
27
|
+
static names(): {
|
|
28
|
+
[key: string]: string;
|
|
29
|
+
};
|
|
30
|
+
static types(): {
|
|
31
|
+
[key: string]: any;
|
|
32
|
+
};
|
|
33
|
+
validate(): void;
|
|
34
|
+
constructor(map?: {
|
|
35
|
+
[key: string]: any;
|
|
36
|
+
});
|
|
37
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.MeetingFlashMinutesTextHeaders = exports.MeetingFlashMinutesTextHeadersAccountContext = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class MeetingFlashMinutesTextHeadersAccountContext extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
accountId: 'accountId',
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
static types() {
|
|
46
|
+
return {
|
|
47
|
+
accountId: 'string',
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
validate() {
|
|
51
|
+
super.validate();
|
|
52
|
+
}
|
|
53
|
+
constructor(map) {
|
|
54
|
+
super(map);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
exports.MeetingFlashMinutesTextHeadersAccountContext = MeetingFlashMinutesTextHeadersAccountContext;
|
|
58
|
+
class MeetingFlashMinutesTextHeaders extends $dara.Model {
|
|
59
|
+
static names() {
|
|
60
|
+
return {
|
|
61
|
+
commonHeaders: 'commonHeaders',
|
|
62
|
+
accountContext: 'AccountContext',
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
static types() {
|
|
66
|
+
return {
|
|
67
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
68
|
+
accountContext: MeetingFlashMinutesTextHeadersAccountContext,
|
|
69
|
+
};
|
|
70
|
+
}
|
|
71
|
+
validate() {
|
|
72
|
+
if (this.commonHeaders) {
|
|
73
|
+
$dara.Model.validateMap(this.commonHeaders);
|
|
74
|
+
}
|
|
75
|
+
if (this.accountContext && typeof this.accountContext.validate === 'function') {
|
|
76
|
+
this.accountContext.validate();
|
|
77
|
+
}
|
|
78
|
+
super.validate();
|
|
79
|
+
}
|
|
80
|
+
constructor(map) {
|
|
81
|
+
super(map);
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
exports.MeetingFlashMinutesTextHeaders = MeetingFlashMinutesTextHeaders;
|
|
85
|
+
//# sourceMappingURL=MeetingFlashMinutesTextHeaders.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MeetingFlashMinutesTextHeaders.js","sourceRoot":"","sources":["../../src/models/MeetingFlashMinutesTextHeaders.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,4CAA6C,SAAQ,KAAK,CAAC,KAAK;IAS3E,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,WAAW;SACvB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,QAAQ;SACpB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA5BD,oGA4BC;AAED,MAAa,8BAA+B,SAAQ,KAAK,CAAC,KAAK;IAG7D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,aAAa,EAAE,eAAe;YAC9B,cAAc,EAAE,gBAAgB;SACjC,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,aAAa,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,QAAQ,EAAE;YAC5E,cAAc,EAAE,4CAA4C;SAC7D,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,aAAa,EAAE,CAAC;YACtB,KAAK,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;QAC9C,CAAC;QACD,IAAG,IAAI,CAAC,cAAc,IAAI,OAAQ,IAAI,CAAC,cAAsB,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACrF,IAAI,CAAC,cAAsB,CAAC,QAAQ,EAAE,CAAC;QAC1C,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA9BD,wEA8BC"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class MeetingFlashMinutesTextRequestTenantContext extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @example
|
|
5
|
+
* xxxxxx
|
|
6
|
+
*/
|
|
7
|
+
tenantId?: string;
|
|
8
|
+
static names(): {
|
|
9
|
+
[key: string]: string;
|
|
10
|
+
};
|
|
11
|
+
static types(): {
|
|
12
|
+
[key: string]: any;
|
|
13
|
+
};
|
|
14
|
+
validate(): void;
|
|
15
|
+
constructor(map?: {
|
|
16
|
+
[key: string]: any;
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
export declare class MeetingFlashMinutesTextRequest extends $dara.Model {
|
|
20
|
+
tenantContext?: MeetingFlashMinutesTextRequestTenantContext;
|
|
21
|
+
/**
|
|
22
|
+
* @remarks
|
|
23
|
+
* This parameter is required.
|
|
24
|
+
*
|
|
25
|
+
* @example
|
|
26
|
+
* 61289fxxx
|
|
27
|
+
*/
|
|
28
|
+
conferenceId?: string;
|
|
29
|
+
/**
|
|
30
|
+
* @example
|
|
31
|
+
* 20
|
|
32
|
+
*/
|
|
33
|
+
maxResults?: number;
|
|
34
|
+
/**
|
|
35
|
+
* @example
|
|
36
|
+
* 0
|
|
37
|
+
*/
|
|
38
|
+
nextToken?: string;
|
|
39
|
+
static names(): {
|
|
40
|
+
[key: string]: string;
|
|
41
|
+
};
|
|
42
|
+
static types(): {
|
|
43
|
+
[key: string]: any;
|
|
44
|
+
};
|
|
45
|
+
validate(): void;
|
|
46
|
+
constructor(map?: {
|
|
47
|
+
[key: string]: any;
|
|
48
|
+
});
|
|
49
|
+
}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.MeetingFlashMinutesTextRequest = exports.MeetingFlashMinutesTextRequestTenantContext = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class MeetingFlashMinutesTextRequestTenantContext extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
tenantId: 'tenantId',
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
static types() {
|
|
46
|
+
return {
|
|
47
|
+
tenantId: 'string',
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
validate() {
|
|
51
|
+
super.validate();
|
|
52
|
+
}
|
|
53
|
+
constructor(map) {
|
|
54
|
+
super(map);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
exports.MeetingFlashMinutesTextRequestTenantContext = MeetingFlashMinutesTextRequestTenantContext;
|
|
58
|
+
class MeetingFlashMinutesTextRequest extends $dara.Model {
|
|
59
|
+
static names() {
|
|
60
|
+
return {
|
|
61
|
+
tenantContext: 'TenantContext',
|
|
62
|
+
conferenceId: 'conferenceId',
|
|
63
|
+
maxResults: 'maxResults',
|
|
64
|
+
nextToken: 'nextToken',
|
|
65
|
+
};
|
|
66
|
+
}
|
|
67
|
+
static types() {
|
|
68
|
+
return {
|
|
69
|
+
tenantContext: MeetingFlashMinutesTextRequestTenantContext,
|
|
70
|
+
conferenceId: 'string',
|
|
71
|
+
maxResults: 'number',
|
|
72
|
+
nextToken: 'string',
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
validate() {
|
|
76
|
+
if (this.tenantContext && typeof this.tenantContext.validate === 'function') {
|
|
77
|
+
this.tenantContext.validate();
|
|
78
|
+
}
|
|
79
|
+
super.validate();
|
|
80
|
+
}
|
|
81
|
+
constructor(map) {
|
|
82
|
+
super(map);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
exports.MeetingFlashMinutesTextRequest = MeetingFlashMinutesTextRequest;
|
|
86
|
+
//# sourceMappingURL=MeetingFlashMinutesTextRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MeetingFlashMinutesTextRequest.js","sourceRoot":"","sources":["../../src/models/MeetingFlashMinutesTextRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,2CAA4C,SAAQ,KAAK,CAAC,KAAK;IAM1E,MAAM,CAAC,KAAK;QACV,OAAO;YACL,QAAQ,EAAE,UAAU;SACrB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,QAAQ,EAAE,QAAQ;SACnB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAzBD,kGAyBC;AAED,MAAa,8BAA+B,SAAQ,KAAK,CAAC,KAAK;IAoB7D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,aAAa,EAAE,eAAe;YAC9B,YAAY,EAAE,cAAc;YAC5B,UAAU,EAAE,YAAY;YACxB,SAAS,EAAE,WAAW;SACvB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,aAAa,EAAE,2CAA2C;YAC1D,YAAY,EAAE,QAAQ;YACtB,UAAU,EAAE,QAAQ;YACpB,SAAS,EAAE,QAAQ;SACpB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,aAAa,IAAI,OAAQ,IAAI,CAAC,aAAqB,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACnF,IAAI,CAAC,aAAqB,CAAC,QAAQ,EAAE,CAAC;QACzC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAhDD,wEAgDC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
import { MeetingFlashMinutesTextResponseBody } from "./MeetingFlashMinutesTextResponseBody";
|
|
3
|
+
export declare class MeetingFlashMinutesTextResponse extends $dara.Model {
|
|
4
|
+
headers?: {
|
|
5
|
+
[key: string]: string;
|
|
6
|
+
};
|
|
7
|
+
statusCode?: number;
|
|
8
|
+
body?: MeetingFlashMinutesTextResponseBody;
|
|
9
|
+
static names(): {
|
|
10
|
+
[key: string]: string;
|
|
11
|
+
};
|
|
12
|
+
static types(): {
|
|
13
|
+
[key: string]: any;
|
|
14
|
+
};
|
|
15
|
+
validate(): void;
|
|
16
|
+
constructor(map?: {
|
|
17
|
+
[key: string]: any;
|
|
18
|
+
});
|
|
19
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.MeetingFlashMinutesTextResponse = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
const MeetingFlashMinutesTextResponseBody_1 = require("./MeetingFlashMinutesTextResponseBody");
|
|
40
|
+
class MeetingFlashMinutesTextResponse extends $dara.Model {
|
|
41
|
+
static names() {
|
|
42
|
+
return {
|
|
43
|
+
headers: 'headers',
|
|
44
|
+
statusCode: 'statusCode',
|
|
45
|
+
body: 'body',
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
static types() {
|
|
49
|
+
return {
|
|
50
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
51
|
+
statusCode: 'number',
|
|
52
|
+
body: MeetingFlashMinutesTextResponseBody_1.MeetingFlashMinutesTextResponseBody,
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
validate() {
|
|
56
|
+
if (this.headers) {
|
|
57
|
+
$dara.Model.validateMap(this.headers);
|
|
58
|
+
}
|
|
59
|
+
if (this.body && typeof this.body.validate === 'function') {
|
|
60
|
+
this.body.validate();
|
|
61
|
+
}
|
|
62
|
+
super.validate();
|
|
63
|
+
}
|
|
64
|
+
constructor(map) {
|
|
65
|
+
super(map);
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
exports.MeetingFlashMinutesTextResponse = MeetingFlashMinutesTextResponse;
|
|
69
|
+
//# sourceMappingURL=MeetingFlashMinutesTextResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MeetingFlashMinutesTextResponse.js","sourceRoot":"","sources":["../../src/models/MeetingFlashMinutesTextResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,+FAA4F;AAG5F,MAAa,+BAAgC,SAAQ,KAAK,CAAC,KAAK;IAI9D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,QAAQ,EAAE;YACtE,UAAU,EAAE,QAAQ;YACpB,IAAI,EAAE,yEAAmC;SAC1C,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,OAAO,EAAE,CAAC;YAChB,KAAK,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACxC,CAAC;QACD,IAAG,IAAI,CAAC,IAAI,IAAI,OAAQ,IAAI,CAAC,IAAY,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACjE,IAAI,CAAC,IAAY,CAAC,QAAQ,EAAE,CAAC;QAChC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAjCD,0EAiCC"}
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class MeetingFlashMinutesTextResponseBodyParagraphListSentenceListWordList extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @example
|
|
5
|
+
* 7920000
|
|
6
|
+
*/
|
|
7
|
+
endTime?: number;
|
|
8
|
+
/**
|
|
9
|
+
* @example
|
|
10
|
+
* 7910000
|
|
11
|
+
*/
|
|
12
|
+
startTime?: number;
|
|
13
|
+
/**
|
|
14
|
+
* @example
|
|
15
|
+
* 单词
|
|
16
|
+
*/
|
|
17
|
+
word?: string;
|
|
18
|
+
static names(): {
|
|
19
|
+
[key: string]: string;
|
|
20
|
+
};
|
|
21
|
+
static types(): {
|
|
22
|
+
[key: string]: any;
|
|
23
|
+
};
|
|
24
|
+
validate(): void;
|
|
25
|
+
constructor(map?: {
|
|
26
|
+
[key: string]: any;
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
export declare class MeetingFlashMinutesTextResponseBodyParagraphListSentenceList extends $dara.Model {
|
|
30
|
+
/**
|
|
31
|
+
* @example
|
|
32
|
+
* 7920000
|
|
33
|
+
*/
|
|
34
|
+
endTime?: number;
|
|
35
|
+
/**
|
|
36
|
+
* @example
|
|
37
|
+
* 这里是小钉
|
|
38
|
+
*/
|
|
39
|
+
sentence?: string;
|
|
40
|
+
/**
|
|
41
|
+
* @example
|
|
42
|
+
* 7910000
|
|
43
|
+
*/
|
|
44
|
+
startTime?: number;
|
|
45
|
+
wordList?: MeetingFlashMinutesTextResponseBodyParagraphListSentenceListWordList[];
|
|
46
|
+
static names(): {
|
|
47
|
+
[key: string]: string;
|
|
48
|
+
};
|
|
49
|
+
static types(): {
|
|
50
|
+
[key: string]: any;
|
|
51
|
+
};
|
|
52
|
+
validate(): void;
|
|
53
|
+
constructor(map?: {
|
|
54
|
+
[key: string]: any;
|
|
55
|
+
});
|
|
56
|
+
}
|
|
57
|
+
export declare class MeetingFlashMinutesTextResponseBodyParagraphListSpeakerDisplay extends $dara.Model {
|
|
58
|
+
/**
|
|
59
|
+
* @example
|
|
60
|
+
* https://xxx
|
|
61
|
+
*/
|
|
62
|
+
avatarUrl?: string;
|
|
63
|
+
/**
|
|
64
|
+
* @example
|
|
65
|
+
* 小钉
|
|
66
|
+
*/
|
|
67
|
+
nickName?: string;
|
|
68
|
+
static names(): {
|
|
69
|
+
[key: string]: string;
|
|
70
|
+
};
|
|
71
|
+
static types(): {
|
|
72
|
+
[key: string]: any;
|
|
73
|
+
};
|
|
74
|
+
validate(): void;
|
|
75
|
+
constructor(map?: {
|
|
76
|
+
[key: string]: any;
|
|
77
|
+
});
|
|
78
|
+
}
|
|
79
|
+
export declare class MeetingFlashMinutesTextResponseBodyParagraphList extends $dara.Model {
|
|
80
|
+
/**
|
|
81
|
+
* @example
|
|
82
|
+
* 7920000
|
|
83
|
+
*/
|
|
84
|
+
endTime?: number;
|
|
85
|
+
/**
|
|
86
|
+
* @example
|
|
87
|
+
* 小钉
|
|
88
|
+
*/
|
|
89
|
+
nickName?: string;
|
|
90
|
+
/**
|
|
91
|
+
* @example
|
|
92
|
+
* 这里是小钉
|
|
93
|
+
*/
|
|
94
|
+
paragraph?: string;
|
|
95
|
+
sentenceList?: MeetingFlashMinutesTextResponseBodyParagraphListSentenceList[];
|
|
96
|
+
speakerDisplay?: MeetingFlashMinutesTextResponseBodyParagraphListSpeakerDisplay;
|
|
97
|
+
/**
|
|
98
|
+
* @example
|
|
99
|
+
* 7910000
|
|
100
|
+
*/
|
|
101
|
+
startTime?: number;
|
|
102
|
+
/**
|
|
103
|
+
* @example
|
|
104
|
+
* 012345
|
|
105
|
+
*/
|
|
106
|
+
userId?: string;
|
|
107
|
+
static names(): {
|
|
108
|
+
[key: string]: string;
|
|
109
|
+
};
|
|
110
|
+
static types(): {
|
|
111
|
+
[key: string]: any;
|
|
112
|
+
};
|
|
113
|
+
validate(): void;
|
|
114
|
+
constructor(map?: {
|
|
115
|
+
[key: string]: any;
|
|
116
|
+
});
|
|
117
|
+
}
|
|
118
|
+
export declare class MeetingFlashMinutesTextResponseBody extends $dara.Model {
|
|
119
|
+
hasNext?: boolean;
|
|
120
|
+
/**
|
|
121
|
+
* @example
|
|
122
|
+
* 1778490366045000_62XXX
|
|
123
|
+
*/
|
|
124
|
+
nextToken?: string;
|
|
125
|
+
paragraphList?: MeetingFlashMinutesTextResponseBodyParagraphList[];
|
|
126
|
+
/**
|
|
127
|
+
* @example
|
|
128
|
+
* 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
|
|
129
|
+
*/
|
|
130
|
+
requestId?: string;
|
|
131
|
+
/**
|
|
132
|
+
* @example
|
|
133
|
+
* 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
|
|
134
|
+
*/
|
|
135
|
+
vendorRequestId?: string;
|
|
136
|
+
/**
|
|
137
|
+
* @example
|
|
138
|
+
* dingtalk
|
|
139
|
+
*/
|
|
140
|
+
vendorType?: string;
|
|
141
|
+
static names(): {
|
|
142
|
+
[key: string]: string;
|
|
143
|
+
};
|
|
144
|
+
static types(): {
|
|
145
|
+
[key: string]: any;
|
|
146
|
+
};
|
|
147
|
+
validate(): void;
|
|
148
|
+
constructor(map?: {
|
|
149
|
+
[key: string]: any;
|
|
150
|
+
});
|
|
151
|
+
}
|
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.MeetingFlashMinutesTextResponseBody = exports.MeetingFlashMinutesTextResponseBodyParagraphList = exports.MeetingFlashMinutesTextResponseBodyParagraphListSpeakerDisplay = exports.MeetingFlashMinutesTextResponseBodyParagraphListSentenceList = exports.MeetingFlashMinutesTextResponseBodyParagraphListSentenceListWordList = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class MeetingFlashMinutesTextResponseBodyParagraphListSentenceListWordList extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
endTime: 'endTime',
|
|
43
|
+
startTime: 'startTime',
|
|
44
|
+
word: 'word',
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
static types() {
|
|
48
|
+
return {
|
|
49
|
+
endTime: 'number',
|
|
50
|
+
startTime: 'number',
|
|
51
|
+
word: 'string',
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
validate() {
|
|
55
|
+
super.validate();
|
|
56
|
+
}
|
|
57
|
+
constructor(map) {
|
|
58
|
+
super(map);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
exports.MeetingFlashMinutesTextResponseBodyParagraphListSentenceListWordList = MeetingFlashMinutesTextResponseBodyParagraphListSentenceListWordList;
|
|
62
|
+
class MeetingFlashMinutesTextResponseBodyParagraphListSentenceList extends $dara.Model {
|
|
63
|
+
static names() {
|
|
64
|
+
return {
|
|
65
|
+
endTime: 'endTime',
|
|
66
|
+
sentence: 'sentence',
|
|
67
|
+
startTime: 'startTime',
|
|
68
|
+
wordList: 'wordList',
|
|
69
|
+
};
|
|
70
|
+
}
|
|
71
|
+
static types() {
|
|
72
|
+
return {
|
|
73
|
+
endTime: 'number',
|
|
74
|
+
sentence: 'string',
|
|
75
|
+
startTime: 'number',
|
|
76
|
+
wordList: { 'type': 'array', 'itemType': MeetingFlashMinutesTextResponseBodyParagraphListSentenceListWordList },
|
|
77
|
+
};
|
|
78
|
+
}
|
|
79
|
+
validate() {
|
|
80
|
+
if (Array.isArray(this.wordList)) {
|
|
81
|
+
$dara.Model.validateArray(this.wordList);
|
|
82
|
+
}
|
|
83
|
+
super.validate();
|
|
84
|
+
}
|
|
85
|
+
constructor(map) {
|
|
86
|
+
super(map);
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
exports.MeetingFlashMinutesTextResponseBodyParagraphListSentenceList = MeetingFlashMinutesTextResponseBodyParagraphListSentenceList;
|
|
90
|
+
class MeetingFlashMinutesTextResponseBodyParagraphListSpeakerDisplay extends $dara.Model {
|
|
91
|
+
static names() {
|
|
92
|
+
return {
|
|
93
|
+
avatarUrl: 'avatarUrl',
|
|
94
|
+
nickName: 'nickName',
|
|
95
|
+
};
|
|
96
|
+
}
|
|
97
|
+
static types() {
|
|
98
|
+
return {
|
|
99
|
+
avatarUrl: 'string',
|
|
100
|
+
nickName: 'string',
|
|
101
|
+
};
|
|
102
|
+
}
|
|
103
|
+
validate() {
|
|
104
|
+
super.validate();
|
|
105
|
+
}
|
|
106
|
+
constructor(map) {
|
|
107
|
+
super(map);
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
exports.MeetingFlashMinutesTextResponseBodyParagraphListSpeakerDisplay = MeetingFlashMinutesTextResponseBodyParagraphListSpeakerDisplay;
|
|
111
|
+
class MeetingFlashMinutesTextResponseBodyParagraphList extends $dara.Model {
|
|
112
|
+
static names() {
|
|
113
|
+
return {
|
|
114
|
+
endTime: 'endTime',
|
|
115
|
+
nickName: 'nickName',
|
|
116
|
+
paragraph: 'paragraph',
|
|
117
|
+
sentenceList: 'sentenceList',
|
|
118
|
+
speakerDisplay: 'speakerDisplay',
|
|
119
|
+
startTime: 'startTime',
|
|
120
|
+
userId: 'userId',
|
|
121
|
+
};
|
|
122
|
+
}
|
|
123
|
+
static types() {
|
|
124
|
+
return {
|
|
125
|
+
endTime: 'number',
|
|
126
|
+
nickName: 'string',
|
|
127
|
+
paragraph: 'string',
|
|
128
|
+
sentenceList: { 'type': 'array', 'itemType': MeetingFlashMinutesTextResponseBodyParagraphListSentenceList },
|
|
129
|
+
speakerDisplay: MeetingFlashMinutesTextResponseBodyParagraphListSpeakerDisplay,
|
|
130
|
+
startTime: 'number',
|
|
131
|
+
userId: 'string',
|
|
132
|
+
};
|
|
133
|
+
}
|
|
134
|
+
validate() {
|
|
135
|
+
if (Array.isArray(this.sentenceList)) {
|
|
136
|
+
$dara.Model.validateArray(this.sentenceList);
|
|
137
|
+
}
|
|
138
|
+
if (this.speakerDisplay && typeof this.speakerDisplay.validate === 'function') {
|
|
139
|
+
this.speakerDisplay.validate();
|
|
140
|
+
}
|
|
141
|
+
super.validate();
|
|
142
|
+
}
|
|
143
|
+
constructor(map) {
|
|
144
|
+
super(map);
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
exports.MeetingFlashMinutesTextResponseBodyParagraphList = MeetingFlashMinutesTextResponseBodyParagraphList;
|
|
148
|
+
class MeetingFlashMinutesTextResponseBody extends $dara.Model {
|
|
149
|
+
static names() {
|
|
150
|
+
return {
|
|
151
|
+
hasNext: 'hasNext',
|
|
152
|
+
nextToken: 'nextToken',
|
|
153
|
+
paragraphList: 'paragraphList',
|
|
154
|
+
requestId: 'requestId',
|
|
155
|
+
vendorRequestId: 'vendorRequestId',
|
|
156
|
+
vendorType: 'vendorType',
|
|
157
|
+
};
|
|
158
|
+
}
|
|
159
|
+
static types() {
|
|
160
|
+
return {
|
|
161
|
+
hasNext: 'boolean',
|
|
162
|
+
nextToken: 'string',
|
|
163
|
+
paragraphList: { 'type': 'array', 'itemType': MeetingFlashMinutesTextResponseBodyParagraphList },
|
|
164
|
+
requestId: 'string',
|
|
165
|
+
vendorRequestId: 'string',
|
|
166
|
+
vendorType: 'string',
|
|
167
|
+
};
|
|
168
|
+
}
|
|
169
|
+
validate() {
|
|
170
|
+
if (Array.isArray(this.paragraphList)) {
|
|
171
|
+
$dara.Model.validateArray(this.paragraphList);
|
|
172
|
+
}
|
|
173
|
+
super.validate();
|
|
174
|
+
}
|
|
175
|
+
constructor(map) {
|
|
176
|
+
super(map);
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
exports.MeetingFlashMinutesTextResponseBody = MeetingFlashMinutesTextResponseBody;
|
|
180
|
+
//# sourceMappingURL=MeetingFlashMinutesTextResponseBody.js.map
|