@alicloud/aliding20230426 2.22.0 → 2.23.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 +665 -0
- package/dist/client.js +715 -37
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1422 -318
package/dist/client.d.ts
CHANGED
|
@@ -4813,6 +4813,11 @@ export declare class CreatePersonalTodoTaskRequest extends $tea.Model {
|
|
|
4813
4813
|
* [ "012345" ]
|
|
4814
4814
|
*/
|
|
4815
4815
|
participantIds?: string[];
|
|
4816
|
+
/**
|
|
4817
|
+
* @example
|
|
4818
|
+
* 1703750708595
|
|
4819
|
+
*/
|
|
4820
|
+
reminderTimeStamp?: number;
|
|
4816
4821
|
/**
|
|
4817
4822
|
* @remarks
|
|
4818
4823
|
* This parameter is required.
|
|
@@ -4857,6 +4862,11 @@ export declare class CreatePersonalTodoTaskShrinkRequest extends $tea.Model {
|
|
|
4857
4862
|
* [ "012345" ]
|
|
4858
4863
|
*/
|
|
4859
4864
|
participantIdsShrink?: string;
|
|
4865
|
+
/**
|
|
4866
|
+
* @example
|
|
4867
|
+
* 1703750708595
|
|
4868
|
+
*/
|
|
4869
|
+
reminderTimeStamp?: number;
|
|
4860
4870
|
/**
|
|
4861
4871
|
* @remarks
|
|
4862
4872
|
* This parameter is required.
|
|
@@ -5332,6 +5342,7 @@ export declare class CreateScheduleConferenceRequest extends $tea.Model {
|
|
|
5332
5342
|
* 1687928400000L
|
|
5333
5343
|
*/
|
|
5334
5344
|
endTime?: number;
|
|
5345
|
+
scheduleConfSettingModel?: CreateScheduleConferenceRequestScheduleConfSettingModel;
|
|
5335
5346
|
/**
|
|
5336
5347
|
* @remarks
|
|
5337
5348
|
* This parameter is required.
|
|
@@ -5368,6 +5379,7 @@ export declare class CreateScheduleConferenceShrinkRequest extends $tea.Model {
|
|
|
5368
5379
|
* 1687928400000L
|
|
5369
5380
|
*/
|
|
5370
5381
|
endTime?: number;
|
|
5382
|
+
scheduleConfSettingModelShrink?: string;
|
|
5371
5383
|
/**
|
|
5372
5384
|
* @remarks
|
|
5373
5385
|
* This parameter is required.
|
|
@@ -14228,6 +14240,135 @@ export declare class GetOrgLiveListResponse extends $tea.Model {
|
|
|
14228
14240
|
[key: string]: any;
|
|
14229
14241
|
});
|
|
14230
14242
|
}
|
|
14243
|
+
export declare class GetOrgOrWebOpenDocContentTaskIdHeaders extends $tea.Model {
|
|
14244
|
+
commonHeaders?: {
|
|
14245
|
+
[key: string]: string;
|
|
14246
|
+
};
|
|
14247
|
+
accountContext?: GetOrgOrWebOpenDocContentTaskIdHeadersAccountContext;
|
|
14248
|
+
static names(): {
|
|
14249
|
+
[key: string]: string;
|
|
14250
|
+
};
|
|
14251
|
+
static types(): {
|
|
14252
|
+
[key: string]: any;
|
|
14253
|
+
};
|
|
14254
|
+
constructor(map?: {
|
|
14255
|
+
[key: string]: any;
|
|
14256
|
+
});
|
|
14257
|
+
}
|
|
14258
|
+
export declare class GetOrgOrWebOpenDocContentTaskIdShrinkHeaders extends $tea.Model {
|
|
14259
|
+
commonHeaders?: {
|
|
14260
|
+
[key: string]: string;
|
|
14261
|
+
};
|
|
14262
|
+
accountContextShrink?: string;
|
|
14263
|
+
static names(): {
|
|
14264
|
+
[key: string]: string;
|
|
14265
|
+
};
|
|
14266
|
+
static types(): {
|
|
14267
|
+
[key: string]: any;
|
|
14268
|
+
};
|
|
14269
|
+
constructor(map?: {
|
|
14270
|
+
[key: string]: any;
|
|
14271
|
+
});
|
|
14272
|
+
}
|
|
14273
|
+
export declare class GetOrgOrWebOpenDocContentTaskIdRequest extends $tea.Model {
|
|
14274
|
+
/**
|
|
14275
|
+
* @remarks
|
|
14276
|
+
* This parameter is required.
|
|
14277
|
+
*
|
|
14278
|
+
* @example
|
|
14279
|
+
* 20eMKjyp810mMdK4Hz4B5BA6JxAZB1Gv
|
|
14280
|
+
*/
|
|
14281
|
+
dentryUuid?: string;
|
|
14282
|
+
generateCp?: boolean;
|
|
14283
|
+
/**
|
|
14284
|
+
* @example
|
|
14285
|
+
* markdown
|
|
14286
|
+
*/
|
|
14287
|
+
targetFormat?: string;
|
|
14288
|
+
tenantContext?: GetOrgOrWebOpenDocContentTaskIdRequestTenantContext;
|
|
14289
|
+
static names(): {
|
|
14290
|
+
[key: string]: string;
|
|
14291
|
+
};
|
|
14292
|
+
static types(): {
|
|
14293
|
+
[key: string]: any;
|
|
14294
|
+
};
|
|
14295
|
+
constructor(map?: {
|
|
14296
|
+
[key: string]: any;
|
|
14297
|
+
});
|
|
14298
|
+
}
|
|
14299
|
+
export declare class GetOrgOrWebOpenDocContentTaskIdShrinkRequest extends $tea.Model {
|
|
14300
|
+
/**
|
|
14301
|
+
* @remarks
|
|
14302
|
+
* This parameter is required.
|
|
14303
|
+
*
|
|
14304
|
+
* @example
|
|
14305
|
+
* 20eMKjyp810mMdK4Hz4B5BA6JxAZB1Gv
|
|
14306
|
+
*/
|
|
14307
|
+
dentryUuid?: string;
|
|
14308
|
+
generateCp?: boolean;
|
|
14309
|
+
/**
|
|
14310
|
+
* @example
|
|
14311
|
+
* markdown
|
|
14312
|
+
*/
|
|
14313
|
+
targetFormat?: string;
|
|
14314
|
+
tenantContextShrink?: string;
|
|
14315
|
+
static names(): {
|
|
14316
|
+
[key: string]: string;
|
|
14317
|
+
};
|
|
14318
|
+
static types(): {
|
|
14319
|
+
[key: string]: any;
|
|
14320
|
+
};
|
|
14321
|
+
constructor(map?: {
|
|
14322
|
+
[key: string]: any;
|
|
14323
|
+
});
|
|
14324
|
+
}
|
|
14325
|
+
export declare class GetOrgOrWebOpenDocContentTaskIdResponseBody extends $tea.Model {
|
|
14326
|
+
/**
|
|
14327
|
+
* @example
|
|
14328
|
+
* 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
|
|
14329
|
+
*/
|
|
14330
|
+
requestId?: string;
|
|
14331
|
+
/**
|
|
14332
|
+
* @example
|
|
14333
|
+
* 158740210521
|
|
14334
|
+
*/
|
|
14335
|
+
taskId?: number;
|
|
14336
|
+
/**
|
|
14337
|
+
* @example
|
|
14338
|
+
* 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
|
|
14339
|
+
*/
|
|
14340
|
+
vendorRequestId?: string;
|
|
14341
|
+
/**
|
|
14342
|
+
* @example
|
|
14343
|
+
* dingtalk
|
|
14344
|
+
*/
|
|
14345
|
+
vendorType?: string;
|
|
14346
|
+
static names(): {
|
|
14347
|
+
[key: string]: string;
|
|
14348
|
+
};
|
|
14349
|
+
static types(): {
|
|
14350
|
+
[key: string]: any;
|
|
14351
|
+
};
|
|
14352
|
+
constructor(map?: {
|
|
14353
|
+
[key: string]: any;
|
|
14354
|
+
});
|
|
14355
|
+
}
|
|
14356
|
+
export declare class GetOrgOrWebOpenDocContentTaskIdResponse extends $tea.Model {
|
|
14357
|
+
headers?: {
|
|
14358
|
+
[key: string]: string;
|
|
14359
|
+
};
|
|
14360
|
+
statusCode?: number;
|
|
14361
|
+
body?: GetOrgOrWebOpenDocContentTaskIdResponseBody;
|
|
14362
|
+
static names(): {
|
|
14363
|
+
[key: string]: string;
|
|
14364
|
+
};
|
|
14365
|
+
static types(): {
|
|
14366
|
+
[key: string]: any;
|
|
14367
|
+
};
|
|
14368
|
+
constructor(map?: {
|
|
14369
|
+
[key: string]: any;
|
|
14370
|
+
});
|
|
14371
|
+
}
|
|
14231
14372
|
export declare class GetProcessDefinitionHeaders extends $tea.Model {
|
|
14232
14373
|
commonHeaders?: {
|
|
14233
14374
|
[key: string]: string;
|
|
@@ -20922,6 +21063,169 @@ export declare class QueryConferenceInfoResponse extends $tea.Model {
|
|
|
20922
21063
|
[key: string]: any;
|
|
20923
21064
|
});
|
|
20924
21065
|
}
|
|
21066
|
+
export declare class QueryConferenceInfoByRoomCodeHeaders extends $tea.Model {
|
|
21067
|
+
commonHeaders?: {
|
|
21068
|
+
[key: string]: string;
|
|
21069
|
+
};
|
|
21070
|
+
accountContext?: QueryConferenceInfoByRoomCodeHeadersAccountContext;
|
|
21071
|
+
static names(): {
|
|
21072
|
+
[key: string]: string;
|
|
21073
|
+
};
|
|
21074
|
+
static types(): {
|
|
21075
|
+
[key: string]: any;
|
|
21076
|
+
};
|
|
21077
|
+
constructor(map?: {
|
|
21078
|
+
[key: string]: any;
|
|
21079
|
+
});
|
|
21080
|
+
}
|
|
21081
|
+
export declare class QueryConferenceInfoByRoomCodeShrinkHeaders extends $tea.Model {
|
|
21082
|
+
commonHeaders?: {
|
|
21083
|
+
[key: string]: string;
|
|
21084
|
+
};
|
|
21085
|
+
accountContextShrink?: string;
|
|
21086
|
+
static names(): {
|
|
21087
|
+
[key: string]: string;
|
|
21088
|
+
};
|
|
21089
|
+
static types(): {
|
|
21090
|
+
[key: string]: any;
|
|
21091
|
+
};
|
|
21092
|
+
constructor(map?: {
|
|
21093
|
+
[key: string]: any;
|
|
21094
|
+
});
|
|
21095
|
+
}
|
|
21096
|
+
export declare class QueryConferenceInfoByRoomCodeRequest extends $tea.Model {
|
|
21097
|
+
tenantContext?: QueryConferenceInfoByRoomCodeRequestTenantContext;
|
|
21098
|
+
/**
|
|
21099
|
+
* @example
|
|
21100
|
+
* 20
|
|
21101
|
+
*/
|
|
21102
|
+
maxResults?: number;
|
|
21103
|
+
/**
|
|
21104
|
+
* @remarks
|
|
21105
|
+
* This parameter is required.
|
|
21106
|
+
*
|
|
21107
|
+
* @example
|
|
21108
|
+
* 0
|
|
21109
|
+
*/
|
|
21110
|
+
nextToken?: string;
|
|
21111
|
+
/**
|
|
21112
|
+
* @remarks
|
|
21113
|
+
* This parameter is required.
|
|
21114
|
+
*
|
|
21115
|
+
* @example
|
|
21116
|
+
* 583 480 813
|
|
21117
|
+
*/
|
|
21118
|
+
roomCode?: string;
|
|
21119
|
+
static names(): {
|
|
21120
|
+
[key: string]: string;
|
|
21121
|
+
};
|
|
21122
|
+
static types(): {
|
|
21123
|
+
[key: string]: any;
|
|
21124
|
+
};
|
|
21125
|
+
constructor(map?: {
|
|
21126
|
+
[key: string]: any;
|
|
21127
|
+
});
|
|
21128
|
+
}
|
|
21129
|
+
export declare class QueryConferenceInfoByRoomCodeShrinkRequest extends $tea.Model {
|
|
21130
|
+
tenantContextShrink?: string;
|
|
21131
|
+
/**
|
|
21132
|
+
* @example
|
|
21133
|
+
* 20
|
|
21134
|
+
*/
|
|
21135
|
+
maxResults?: number;
|
|
21136
|
+
/**
|
|
21137
|
+
* @remarks
|
|
21138
|
+
* This parameter is required.
|
|
21139
|
+
*
|
|
21140
|
+
* @example
|
|
21141
|
+
* 0
|
|
21142
|
+
*/
|
|
21143
|
+
nextToken?: string;
|
|
21144
|
+
/**
|
|
21145
|
+
* @remarks
|
|
21146
|
+
* This parameter is required.
|
|
21147
|
+
*
|
|
21148
|
+
* @example
|
|
21149
|
+
* 583 480 813
|
|
21150
|
+
*/
|
|
21151
|
+
roomCode?: string;
|
|
21152
|
+
static names(): {
|
|
21153
|
+
[key: string]: string;
|
|
21154
|
+
};
|
|
21155
|
+
static types(): {
|
|
21156
|
+
[key: string]: any;
|
|
21157
|
+
};
|
|
21158
|
+
constructor(map?: {
|
|
21159
|
+
[key: string]: any;
|
|
21160
|
+
});
|
|
21161
|
+
}
|
|
21162
|
+
export declare class QueryConferenceInfoByRoomCodeResponseBody extends $tea.Model {
|
|
21163
|
+
/**
|
|
21164
|
+
* @example
|
|
21165
|
+
* []
|
|
21166
|
+
*/
|
|
21167
|
+
conferenceList?: QueryConferenceInfoByRoomCodeResponseBodyConferenceList[];
|
|
21168
|
+
/**
|
|
21169
|
+
* @example
|
|
21170
|
+
* 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
|
|
21171
|
+
*/
|
|
21172
|
+
dingtalkRequestId?: string;
|
|
21173
|
+
/**
|
|
21174
|
+
* @example
|
|
21175
|
+
* true
|
|
21176
|
+
*/
|
|
21177
|
+
hasMore?: boolean;
|
|
21178
|
+
/**
|
|
21179
|
+
* @example
|
|
21180
|
+
* 1296
|
|
21181
|
+
*/
|
|
21182
|
+
nextToken?: string;
|
|
21183
|
+
/**
|
|
21184
|
+
* @example
|
|
21185
|
+
* 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
|
|
21186
|
+
*/
|
|
21187
|
+
requestId?: string;
|
|
21188
|
+
/**
|
|
21189
|
+
* @example
|
|
21190
|
+
* 20
|
|
21191
|
+
*/
|
|
21192
|
+
totalCount?: number;
|
|
21193
|
+
/**
|
|
21194
|
+
* @example
|
|
21195
|
+
* 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
|
|
21196
|
+
*/
|
|
21197
|
+
vendorRequestId?: string;
|
|
21198
|
+
/**
|
|
21199
|
+
* @example
|
|
21200
|
+
* dingtalk
|
|
21201
|
+
*/
|
|
21202
|
+
vendorType?: string;
|
|
21203
|
+
static names(): {
|
|
21204
|
+
[key: string]: string;
|
|
21205
|
+
};
|
|
21206
|
+
static types(): {
|
|
21207
|
+
[key: string]: any;
|
|
21208
|
+
};
|
|
21209
|
+
constructor(map?: {
|
|
21210
|
+
[key: string]: any;
|
|
21211
|
+
});
|
|
21212
|
+
}
|
|
21213
|
+
export declare class QueryConferenceInfoByRoomCodeResponse extends $tea.Model {
|
|
21214
|
+
headers?: {
|
|
21215
|
+
[key: string]: string;
|
|
21216
|
+
};
|
|
21217
|
+
statusCode?: number;
|
|
21218
|
+
body?: QueryConferenceInfoByRoomCodeResponseBody;
|
|
21219
|
+
static names(): {
|
|
21220
|
+
[key: string]: string;
|
|
21221
|
+
};
|
|
21222
|
+
static types(): {
|
|
21223
|
+
[key: string]: any;
|
|
21224
|
+
};
|
|
21225
|
+
constructor(map?: {
|
|
21226
|
+
[key: string]: any;
|
|
21227
|
+
});
|
|
21228
|
+
}
|
|
20925
21229
|
export declare class QueryConferenceMembersHeaders extends $tea.Model {
|
|
20926
21230
|
commonHeaders?: {
|
|
20927
21231
|
[key: string]: string;
|
|
@@ -33620,6 +33924,145 @@ export declare class CreateScheduleConferenceHeadersAccountContext extends $tea.
|
|
|
33620
33924
|
[key: string]: any;
|
|
33621
33925
|
});
|
|
33622
33926
|
}
|
|
33927
|
+
export declare class CreateScheduleConferenceRequestScheduleConfSettingModelMoziConfOpenRecordSetting extends $tea.Model {
|
|
33928
|
+
isFollowHost?: boolean;
|
|
33929
|
+
/**
|
|
33930
|
+
* @example
|
|
33931
|
+
* grid
|
|
33932
|
+
*/
|
|
33933
|
+
mode?: string;
|
|
33934
|
+
/**
|
|
33935
|
+
* @example
|
|
33936
|
+
* 0
|
|
33937
|
+
*/
|
|
33938
|
+
recordAutoStart?: number;
|
|
33939
|
+
/**
|
|
33940
|
+
* @example
|
|
33941
|
+
* 0
|
|
33942
|
+
*/
|
|
33943
|
+
recordAutoStartType?: number;
|
|
33944
|
+
static names(): {
|
|
33945
|
+
[key: string]: string;
|
|
33946
|
+
};
|
|
33947
|
+
static types(): {
|
|
33948
|
+
[key: string]: any;
|
|
33949
|
+
};
|
|
33950
|
+
constructor(map?: {
|
|
33951
|
+
[key: string]: any;
|
|
33952
|
+
});
|
|
33953
|
+
}
|
|
33954
|
+
export declare class CreateScheduleConferenceRequestScheduleConfSettingModelMoziConfVirtualExtraSettingMoziConfExtensionAppSettings extends $tea.Model {
|
|
33955
|
+
/**
|
|
33956
|
+
* @example
|
|
33957
|
+
* 0
|
|
33958
|
+
*/
|
|
33959
|
+
autoOpenMode?: number;
|
|
33960
|
+
/**
|
|
33961
|
+
* @example
|
|
33962
|
+
* xxx
|
|
33963
|
+
*/
|
|
33964
|
+
coolAppCode?: string;
|
|
33965
|
+
/**
|
|
33966
|
+
* @example
|
|
33967
|
+
* xxx
|
|
33968
|
+
*/
|
|
33969
|
+
extensionAppBizData?: string;
|
|
33970
|
+
static names(): {
|
|
33971
|
+
[key: string]: string;
|
|
33972
|
+
};
|
|
33973
|
+
static types(): {
|
|
33974
|
+
[key: string]: any;
|
|
33975
|
+
};
|
|
33976
|
+
constructor(map?: {
|
|
33977
|
+
[key: string]: any;
|
|
33978
|
+
});
|
|
33979
|
+
}
|
|
33980
|
+
export declare class CreateScheduleConferenceRequestScheduleConfSettingModelMoziConfVirtualExtraSetting extends $tea.Model {
|
|
33981
|
+
/**
|
|
33982
|
+
* @example
|
|
33983
|
+
* 2iPOLbpUNMLzB5LuwggiiqiPwiEiE
|
|
33984
|
+
*/
|
|
33985
|
+
cloudRecordOwnerUserId?: string;
|
|
33986
|
+
/**
|
|
33987
|
+
* @example
|
|
33988
|
+
* 0
|
|
33989
|
+
*/
|
|
33990
|
+
enableChat?: number;
|
|
33991
|
+
enableWebAnonymousJoin?: boolean;
|
|
33992
|
+
/**
|
|
33993
|
+
* @example
|
|
33994
|
+
* 0
|
|
33995
|
+
*/
|
|
33996
|
+
joinBeforeHost?: number;
|
|
33997
|
+
/**
|
|
33998
|
+
* @example
|
|
33999
|
+
* 0
|
|
34000
|
+
*/
|
|
34001
|
+
lockMediaStatusMicMute?: number;
|
|
34002
|
+
/**
|
|
34003
|
+
* @example
|
|
34004
|
+
* 0
|
|
34005
|
+
*/
|
|
34006
|
+
lockNick?: number;
|
|
34007
|
+
minutesOwnerUserId?: string;
|
|
34008
|
+
moziConfExtensionAppSettings?: CreateScheduleConferenceRequestScheduleConfSettingModelMoziConfVirtualExtraSettingMoziConfExtensionAppSettings[];
|
|
34009
|
+
pushAllMeetingRecords?: boolean;
|
|
34010
|
+
pushCloudRecordCard?: boolean;
|
|
34011
|
+
pushMinutesCard?: boolean;
|
|
34012
|
+
/**
|
|
34013
|
+
* @example
|
|
34014
|
+
* 1
|
|
34015
|
+
*/
|
|
34016
|
+
waitingRoom?: number;
|
|
34017
|
+
static names(): {
|
|
34018
|
+
[key: string]: string;
|
|
34019
|
+
};
|
|
34020
|
+
static types(): {
|
|
34021
|
+
[key: string]: any;
|
|
34022
|
+
};
|
|
34023
|
+
constructor(map?: {
|
|
34024
|
+
[key: string]: any;
|
|
34025
|
+
});
|
|
34026
|
+
}
|
|
34027
|
+
export declare class CreateScheduleConferenceRequestScheduleConfSettingModel extends $tea.Model {
|
|
34028
|
+
cohostUserIds?: string[];
|
|
34029
|
+
/**
|
|
34030
|
+
* @example
|
|
34031
|
+
* dingc02f685fa06381c44ac5d6980864d335
|
|
34032
|
+
*/
|
|
34033
|
+
confAllowedCorpId?: string;
|
|
34034
|
+
/**
|
|
34035
|
+
* @example
|
|
34036
|
+
* 2iPOLbpUNMLzB5LuwggiiqiPwiEiE
|
|
34037
|
+
*/
|
|
34038
|
+
hostUserId?: string;
|
|
34039
|
+
/**
|
|
34040
|
+
* @example
|
|
34041
|
+
* 0
|
|
34042
|
+
*/
|
|
34043
|
+
lockRoom?: number;
|
|
34044
|
+
moziConfOpenRecordSetting?: CreateScheduleConferenceRequestScheduleConfSettingModelMoziConfOpenRecordSetting;
|
|
34045
|
+
moziConfVirtualExtraSetting?: CreateScheduleConferenceRequestScheduleConfSettingModelMoziConfVirtualExtraSetting;
|
|
34046
|
+
/**
|
|
34047
|
+
* @example
|
|
34048
|
+
* 1
|
|
34049
|
+
*/
|
|
34050
|
+
muteOnJoin?: number;
|
|
34051
|
+
/**
|
|
34052
|
+
* @example
|
|
34053
|
+
* 0
|
|
34054
|
+
*/
|
|
34055
|
+
screenShareForbidden?: number;
|
|
34056
|
+
static names(): {
|
|
34057
|
+
[key: string]: string;
|
|
34058
|
+
};
|
|
34059
|
+
static types(): {
|
|
34060
|
+
[key: string]: any;
|
|
34061
|
+
};
|
|
34062
|
+
constructor(map?: {
|
|
34063
|
+
[key: string]: any;
|
|
34064
|
+
});
|
|
34065
|
+
}
|
|
33623
34066
|
export declare class CreateScheduleConferenceRequestTenantContext extends $tea.Model {
|
|
33624
34067
|
/**
|
|
33625
34068
|
* @example
|
|
@@ -38404,6 +38847,7 @@ export declare class GetOrgLiveListResponseBodyResultNewLiveLiveList extends $te
|
|
|
38404
38847
|
* nickName
|
|
38405
38848
|
*/
|
|
38406
38849
|
anchorNickname?: string;
|
|
38850
|
+
anchorUnionId?: string;
|
|
38407
38851
|
/**
|
|
38408
38852
|
* @example
|
|
38409
38853
|
* ersqqdddf
|
|
@@ -38486,6 +38930,7 @@ export declare class GetOrgLiveListResponseBodyResultUpdateLiveLiveList extends
|
|
|
38486
38930
|
* nickName
|
|
38487
38931
|
*/
|
|
38488
38932
|
anchorNickname?: string;
|
|
38933
|
+
anchorUnionId?: string;
|
|
38489
38934
|
/**
|
|
38490
38935
|
* @example
|
|
38491
38936
|
* 012345
|
|
@@ -38578,6 +39023,41 @@ export declare class GetOrgLiveListResponseBodyResult extends $tea.Model {
|
|
|
38578
39023
|
[key: string]: any;
|
|
38579
39024
|
});
|
|
38580
39025
|
}
|
|
39026
|
+
export declare class GetOrgOrWebOpenDocContentTaskIdHeadersAccountContext extends $tea.Model {
|
|
39027
|
+
/**
|
|
39028
|
+
* @remarks
|
|
39029
|
+
* This parameter is required.
|
|
39030
|
+
*
|
|
39031
|
+
* @example
|
|
39032
|
+
* 012345
|
|
39033
|
+
*/
|
|
39034
|
+
accountId?: string;
|
|
39035
|
+
static names(): {
|
|
39036
|
+
[key: string]: string;
|
|
39037
|
+
};
|
|
39038
|
+
static types(): {
|
|
39039
|
+
[key: string]: any;
|
|
39040
|
+
};
|
|
39041
|
+
constructor(map?: {
|
|
39042
|
+
[key: string]: any;
|
|
39043
|
+
});
|
|
39044
|
+
}
|
|
39045
|
+
export declare class GetOrgOrWebOpenDocContentTaskIdRequestTenantContext extends $tea.Model {
|
|
39046
|
+
/**
|
|
39047
|
+
* @example
|
|
39048
|
+
* xxxxxx
|
|
39049
|
+
*/
|
|
39050
|
+
tenantId?: string;
|
|
39051
|
+
static names(): {
|
|
39052
|
+
[key: string]: string;
|
|
39053
|
+
};
|
|
39054
|
+
static types(): {
|
|
39055
|
+
[key: string]: any;
|
|
39056
|
+
};
|
|
39057
|
+
constructor(map?: {
|
|
39058
|
+
[key: string]: any;
|
|
39059
|
+
});
|
|
39060
|
+
}
|
|
38581
39061
|
export declare class GetProcessDefinitionHeadersAccountContext extends $tea.Model {
|
|
38582
39062
|
/**
|
|
38583
39063
|
* @remarks
|
|
@@ -44145,6 +44625,104 @@ export declare class QueryConferenceInfoResponseBodyConfInfo extends $tea.Model
|
|
|
44145
44625
|
[key: string]: any;
|
|
44146
44626
|
});
|
|
44147
44627
|
}
|
|
44628
|
+
export declare class QueryConferenceInfoByRoomCodeHeadersAccountContext extends $tea.Model {
|
|
44629
|
+
/**
|
|
44630
|
+
* @remarks
|
|
44631
|
+
* This parameter is required.
|
|
44632
|
+
*
|
|
44633
|
+
* @example
|
|
44634
|
+
* 012345
|
|
44635
|
+
*/
|
|
44636
|
+
accountId?: string;
|
|
44637
|
+
static names(): {
|
|
44638
|
+
[key: string]: string;
|
|
44639
|
+
};
|
|
44640
|
+
static types(): {
|
|
44641
|
+
[key: string]: any;
|
|
44642
|
+
};
|
|
44643
|
+
constructor(map?: {
|
|
44644
|
+
[key: string]: any;
|
|
44645
|
+
});
|
|
44646
|
+
}
|
|
44647
|
+
export declare class QueryConferenceInfoByRoomCodeRequestTenantContext extends $tea.Model {
|
|
44648
|
+
/**
|
|
44649
|
+
* @example
|
|
44650
|
+
* xxxxxx
|
|
44651
|
+
*/
|
|
44652
|
+
tenantId?: string;
|
|
44653
|
+
static names(): {
|
|
44654
|
+
[key: string]: string;
|
|
44655
|
+
};
|
|
44656
|
+
static types(): {
|
|
44657
|
+
[key: string]: any;
|
|
44658
|
+
};
|
|
44659
|
+
constructor(map?: {
|
|
44660
|
+
[key: string]: any;
|
|
44661
|
+
});
|
|
44662
|
+
}
|
|
44663
|
+
export declare class QueryConferenceInfoByRoomCodeResponseBodyConferenceList extends $tea.Model {
|
|
44664
|
+
/**
|
|
44665
|
+
* @example
|
|
44666
|
+
* 3
|
|
44667
|
+
*/
|
|
44668
|
+
bizType?: string;
|
|
44669
|
+
/**
|
|
44670
|
+
* @example
|
|
44671
|
+
* 1000
|
|
44672
|
+
*/
|
|
44673
|
+
confDuration?: number;
|
|
44674
|
+
/**
|
|
44675
|
+
* @example
|
|
44676
|
+
* 636cf59f2b032f014ae32902
|
|
44677
|
+
*/
|
|
44678
|
+
conferenceId?: string;
|
|
44679
|
+
/**
|
|
44680
|
+
* @example
|
|
44681
|
+
* 527079
|
|
44682
|
+
*/
|
|
44683
|
+
creatorId?: string;
|
|
44684
|
+
creatorNick?: string;
|
|
44685
|
+
/**
|
|
44686
|
+
* @example
|
|
44687
|
+
* 1668087732000
|
|
44688
|
+
*/
|
|
44689
|
+
endTime?: number;
|
|
44690
|
+
/**
|
|
44691
|
+
* @example
|
|
44692
|
+
* https//:xxx
|
|
44693
|
+
*/
|
|
44694
|
+
externalLinkUrl?: string;
|
|
44695
|
+
/**
|
|
44696
|
+
* @example
|
|
44697
|
+
* 123456789
|
|
44698
|
+
*/
|
|
44699
|
+
roomCode?: string;
|
|
44700
|
+
/**
|
|
44701
|
+
* @example
|
|
44702
|
+
* 2d79cbde-b9d8-4256-9788-78b05834944e
|
|
44703
|
+
*/
|
|
44704
|
+
scheduleConferenceId?: string;
|
|
44705
|
+
/**
|
|
44706
|
+
* @example
|
|
44707
|
+
* 1668087731000
|
|
44708
|
+
*/
|
|
44709
|
+
startTime?: number;
|
|
44710
|
+
/**
|
|
44711
|
+
* @example
|
|
44712
|
+
* 2
|
|
44713
|
+
*/
|
|
44714
|
+
status?: number;
|
|
44715
|
+
title?: string;
|
|
44716
|
+
static names(): {
|
|
44717
|
+
[key: string]: string;
|
|
44718
|
+
};
|
|
44719
|
+
static types(): {
|
|
44720
|
+
[key: string]: any;
|
|
44721
|
+
};
|
|
44722
|
+
constructor(map?: {
|
|
44723
|
+
[key: string]: any;
|
|
44724
|
+
});
|
|
44725
|
+
}
|
|
44148
44726
|
export declare class QueryConferenceMembersHeadersAccountContext extends $tea.Model {
|
|
44149
44727
|
/**
|
|
44150
44728
|
* @remarks
|
|
@@ -48181,6 +48759,59 @@ export declare class UpdateScheduleConfSettingsHeadersAccountContext extends $te
|
|
|
48181
48759
|
[key: string]: any;
|
|
48182
48760
|
});
|
|
48183
48761
|
}
|
|
48762
|
+
export declare class UpdateScheduleConfSettingsRequestScheduleConfSettingModelMoziConfOpenRecordSetting extends $tea.Model {
|
|
48763
|
+
isFollowHost?: boolean;
|
|
48764
|
+
/**
|
|
48765
|
+
* @example
|
|
48766
|
+
* grid
|
|
48767
|
+
*/
|
|
48768
|
+
mode?: string;
|
|
48769
|
+
/**
|
|
48770
|
+
* @example
|
|
48771
|
+
* 0
|
|
48772
|
+
*/
|
|
48773
|
+
recordAutoStart?: number;
|
|
48774
|
+
/**
|
|
48775
|
+
* @example
|
|
48776
|
+
* 0
|
|
48777
|
+
*/
|
|
48778
|
+
recordAutoStartType?: number;
|
|
48779
|
+
static names(): {
|
|
48780
|
+
[key: string]: string;
|
|
48781
|
+
};
|
|
48782
|
+
static types(): {
|
|
48783
|
+
[key: string]: any;
|
|
48784
|
+
};
|
|
48785
|
+
constructor(map?: {
|
|
48786
|
+
[key: string]: any;
|
|
48787
|
+
});
|
|
48788
|
+
}
|
|
48789
|
+
export declare class UpdateScheduleConfSettingsRequestScheduleConfSettingModelMoziConfVirtualExtraSettingMoziConfExtensionAppSettings extends $tea.Model {
|
|
48790
|
+
/**
|
|
48791
|
+
* @example
|
|
48792
|
+
* 0
|
|
48793
|
+
*/
|
|
48794
|
+
autoOpenMode?: number;
|
|
48795
|
+
/**
|
|
48796
|
+
* @example
|
|
48797
|
+
* xxxx
|
|
48798
|
+
*/
|
|
48799
|
+
coolAppCode?: string;
|
|
48800
|
+
/**
|
|
48801
|
+
* @example
|
|
48802
|
+
* xxx
|
|
48803
|
+
*/
|
|
48804
|
+
extensionAppBizData?: string;
|
|
48805
|
+
static names(): {
|
|
48806
|
+
[key: string]: string;
|
|
48807
|
+
};
|
|
48808
|
+
static types(): {
|
|
48809
|
+
[key: string]: any;
|
|
48810
|
+
};
|
|
48811
|
+
constructor(map?: {
|
|
48812
|
+
[key: string]: any;
|
|
48813
|
+
});
|
|
48814
|
+
}
|
|
48184
48815
|
export declare class UpdateScheduleConfSettingsRequestScheduleConfSettingModelMoziConfVirtualExtraSetting extends $tea.Model {
|
|
48185
48816
|
cloudRecordOwnerUserId?: string;
|
|
48186
48817
|
/**
|
|
@@ -48205,6 +48836,7 @@ export declare class UpdateScheduleConfSettingsRequestScheduleConfSettingModelMo
|
|
|
48205
48836
|
*/
|
|
48206
48837
|
lockNick?: number;
|
|
48207
48838
|
minutesOwnerUserId?: string;
|
|
48839
|
+
moziConfExtensionAppSettings?: UpdateScheduleConfSettingsRequestScheduleConfSettingModelMoziConfVirtualExtraSettingMoziConfExtensionAppSettings[];
|
|
48208
48840
|
pushAllMeetingRecords?: boolean;
|
|
48209
48841
|
pushCloudRecordCard?: boolean;
|
|
48210
48842
|
pushMinutesCard?: boolean;
|
|
@@ -48240,6 +48872,7 @@ export declare class UpdateScheduleConfSettingsRequestScheduleConfSettingModel e
|
|
|
48240
48872
|
* 1
|
|
48241
48873
|
*/
|
|
48242
48874
|
lockRoom?: number;
|
|
48875
|
+
moziConfOpenRecordSetting?: UpdateScheduleConfSettingsRequestScheduleConfSettingModelMoziConfOpenRecordSetting;
|
|
48243
48876
|
moziConfVirtualExtraSetting?: UpdateScheduleConfSettingsRequestScheduleConfSettingModelMoziConfVirtualExtraSetting;
|
|
48244
48877
|
/**
|
|
48245
48878
|
* @example
|
|
@@ -50346,6 +50979,22 @@ export default class Client extends OpenApi {
|
|
|
50346
50979
|
* @returns GetOrgLiveListResponse
|
|
50347
50980
|
*/
|
|
50348
50981
|
getOrgLiveList(request: GetOrgLiveListRequest): Promise<GetOrgLiveListResponse>;
|
|
50982
|
+
/**
|
|
50983
|
+
* 委托权限获取组织或者互联网公开文档内容taskId
|
|
50984
|
+
*
|
|
50985
|
+
* @param tmpReq - GetOrgOrWebOpenDocContentTaskIdRequest
|
|
50986
|
+
* @param tmpHeader - GetOrgOrWebOpenDocContentTaskIdHeaders
|
|
50987
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
50988
|
+
* @returns GetOrgOrWebOpenDocContentTaskIdResponse
|
|
50989
|
+
*/
|
|
50990
|
+
getOrgOrWebOpenDocContentTaskIdWithOptions(tmpReq: GetOrgOrWebOpenDocContentTaskIdRequest, tmpHeader: GetOrgOrWebOpenDocContentTaskIdHeaders, runtime: $Util.RuntimeOptions): Promise<GetOrgOrWebOpenDocContentTaskIdResponse>;
|
|
50991
|
+
/**
|
|
50992
|
+
* 委托权限获取组织或者互联网公开文档内容taskId
|
|
50993
|
+
*
|
|
50994
|
+
* @param request - GetOrgOrWebOpenDocContentTaskIdRequest
|
|
50995
|
+
* @returns GetOrgOrWebOpenDocContentTaskIdResponse
|
|
50996
|
+
*/
|
|
50997
|
+
getOrgOrWebOpenDocContentTaskId(request: GetOrgOrWebOpenDocContentTaskIdRequest): Promise<GetOrgOrWebOpenDocContentTaskIdResponse>;
|
|
50349
50998
|
/**
|
|
50350
50999
|
* 获取流程定义
|
|
50351
51000
|
*
|
|
@@ -51098,6 +51747,22 @@ export default class Client extends OpenApi {
|
|
|
51098
51747
|
* @returns QueryConferenceInfoResponse
|
|
51099
51748
|
*/
|
|
51100
51749
|
queryConferenceInfo(request: QueryConferenceInfoRequest): Promise<QueryConferenceInfoResponse>;
|
|
51750
|
+
/**
|
|
51751
|
+
* 根据会议码查询视频会议信息
|
|
51752
|
+
*
|
|
51753
|
+
* @param tmpReq - QueryConferenceInfoByRoomCodeRequest
|
|
51754
|
+
* @param tmpHeader - QueryConferenceInfoByRoomCodeHeaders
|
|
51755
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
51756
|
+
* @returns QueryConferenceInfoByRoomCodeResponse
|
|
51757
|
+
*/
|
|
51758
|
+
queryConferenceInfoByRoomCodeWithOptions(tmpReq: QueryConferenceInfoByRoomCodeRequest, tmpHeader: QueryConferenceInfoByRoomCodeHeaders, runtime: $Util.RuntimeOptions): Promise<QueryConferenceInfoByRoomCodeResponse>;
|
|
51759
|
+
/**
|
|
51760
|
+
* 根据会议码查询视频会议信息
|
|
51761
|
+
*
|
|
51762
|
+
* @param request - QueryConferenceInfoByRoomCodeRequest
|
|
51763
|
+
* @returns QueryConferenceInfoByRoomCodeResponse
|
|
51764
|
+
*/
|
|
51765
|
+
queryConferenceInfoByRoomCode(request: QueryConferenceInfoByRoomCodeRequest): Promise<QueryConferenceInfoByRoomCodeResponse>;
|
|
51101
51766
|
/**
|
|
51102
51767
|
* 查询视频会议成员
|
|
51103
51768
|
*
|