@alicloud/aliding20230426 2.22.0 → 2.22.1
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 +10 -0
- package/dist/client.js +24 -7
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +18 -0
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -6982,6 +6982,11 @@ export class CreatePersonalTodoTaskRequest extends $tea.Model {
|
|
|
6982
6982
|
* [ "012345" ]
|
|
6983
6983
|
*/
|
|
6984
6984
|
participantIds?: string[];
|
|
6985
|
+
/**
|
|
6986
|
+
* @example
|
|
6987
|
+
* 1703750708595
|
|
6988
|
+
*/
|
|
6989
|
+
reminderTimeStamp?: number;
|
|
6985
6990
|
/**
|
|
6986
6991
|
* @remarks
|
|
6987
6992
|
* This parameter is required.
|
|
@@ -6998,6 +7003,7 @@ export class CreatePersonalTodoTaskRequest extends $tea.Model {
|
|
|
6998
7003
|
executorIds: 'ExecutorIds',
|
|
6999
7004
|
notifyConfigs: 'NotifyConfigs',
|
|
7000
7005
|
participantIds: 'ParticipantIds',
|
|
7006
|
+
reminderTimeStamp: 'ReminderTimeStamp',
|
|
7001
7007
|
subject: 'Subject',
|
|
7002
7008
|
tenantContext: 'TenantContext',
|
|
7003
7009
|
};
|
|
@@ -7010,6 +7016,7 @@ export class CreatePersonalTodoTaskRequest extends $tea.Model {
|
|
|
7010
7016
|
executorIds: { 'type': 'array', 'itemType': 'string' },
|
|
7011
7017
|
notifyConfigs: CreatePersonalTodoTaskRequestNotifyConfigs,
|
|
7012
7018
|
participantIds: { 'type': 'array', 'itemType': 'string' },
|
|
7019
|
+
reminderTimeStamp: 'number',
|
|
7013
7020
|
subject: 'string',
|
|
7014
7021
|
tenantContext: CreatePersonalTodoTaskRequestTenantContext,
|
|
7015
7022
|
};
|
|
@@ -7045,6 +7052,11 @@ export class CreatePersonalTodoTaskShrinkRequest extends $tea.Model {
|
|
|
7045
7052
|
* [ "012345" ]
|
|
7046
7053
|
*/
|
|
7047
7054
|
participantIdsShrink?: string;
|
|
7055
|
+
/**
|
|
7056
|
+
* @example
|
|
7057
|
+
* 1703750708595
|
|
7058
|
+
*/
|
|
7059
|
+
reminderTimeStamp?: number;
|
|
7048
7060
|
/**
|
|
7049
7061
|
* @remarks
|
|
7050
7062
|
* This parameter is required.
|
|
@@ -7061,6 +7073,7 @@ export class CreatePersonalTodoTaskShrinkRequest extends $tea.Model {
|
|
|
7061
7073
|
executorIdsShrink: 'ExecutorIds',
|
|
7062
7074
|
notifyConfigsShrink: 'NotifyConfigs',
|
|
7063
7075
|
participantIdsShrink: 'ParticipantIds',
|
|
7076
|
+
reminderTimeStamp: 'ReminderTimeStamp',
|
|
7064
7077
|
subject: 'Subject',
|
|
7065
7078
|
tenantContextShrink: 'TenantContext',
|
|
7066
7079
|
};
|
|
@@ -7073,6 +7086,7 @@ export class CreatePersonalTodoTaskShrinkRequest extends $tea.Model {
|
|
|
7073
7086
|
executorIdsShrink: 'string',
|
|
7074
7087
|
notifyConfigsShrink: 'string',
|
|
7075
7088
|
participantIdsShrink: 'string',
|
|
7089
|
+
reminderTimeStamp: 'number',
|
|
7076
7090
|
subject: 'string',
|
|
7077
7091
|
tenantContextShrink: 'string',
|
|
7078
7092
|
};
|
|
@@ -73196,6 +73210,10 @@ export default class Client extends OpenApi {
|
|
|
73196
73210
|
body["ParticipantIds"] = request.participantIdsShrink;
|
|
73197
73211
|
}
|
|
73198
73212
|
|
|
73213
|
+
if (!Util.isUnset(request.reminderTimeStamp)) {
|
|
73214
|
+
body["ReminderTimeStamp"] = request.reminderTimeStamp;
|
|
73215
|
+
}
|
|
73216
|
+
|
|
73199
73217
|
if (!Util.isUnset(request.subject)) {
|
|
73200
73218
|
body["Subject"] = request.subject;
|
|
73201
73219
|
}
|