@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 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.
package/dist/client.js CHANGED
@@ -15,13 +15,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
15
15
  }) : function(o, v) {
16
16
  o["default"] = v;
17
17
  });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
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
+ })();
25
35
  var __importDefault = (this && this.__importDefault) || function (mod) {
26
36
  return (mod && mod.__esModule) ? mod : { "default": mod };
27
37
  };
@@ -4195,6 +4205,7 @@ class CreatePersonalTodoTaskRequest extends $tea.Model {
4195
4205
  executorIds: 'ExecutorIds',
4196
4206
  notifyConfigs: 'NotifyConfigs',
4197
4207
  participantIds: 'ParticipantIds',
4208
+ reminderTimeStamp: 'ReminderTimeStamp',
4198
4209
  subject: 'Subject',
4199
4210
  tenantContext: 'TenantContext',
4200
4211
  };
@@ -4206,6 +4217,7 @@ class CreatePersonalTodoTaskRequest extends $tea.Model {
4206
4217
  executorIds: { 'type': 'array', 'itemType': 'string' },
4207
4218
  notifyConfigs: CreatePersonalTodoTaskRequestNotifyConfigs,
4208
4219
  participantIds: { 'type': 'array', 'itemType': 'string' },
4220
+ reminderTimeStamp: 'number',
4209
4221
  subject: 'string',
4210
4222
  tenantContext: CreatePersonalTodoTaskRequestTenantContext,
4211
4223
  };
@@ -4223,6 +4235,7 @@ class CreatePersonalTodoTaskShrinkRequest extends $tea.Model {
4223
4235
  executorIdsShrink: 'ExecutorIds',
4224
4236
  notifyConfigsShrink: 'NotifyConfigs',
4225
4237
  participantIdsShrink: 'ParticipantIds',
4238
+ reminderTimeStamp: 'ReminderTimeStamp',
4226
4239
  subject: 'Subject',
4227
4240
  tenantContextShrink: 'TenantContext',
4228
4241
  };
@@ -4234,6 +4247,7 @@ class CreatePersonalTodoTaskShrinkRequest extends $tea.Model {
4234
4247
  executorIdsShrink: 'string',
4235
4248
  notifyConfigsShrink: 'string',
4236
4249
  participantIdsShrink: 'string',
4250
+ reminderTimeStamp: 'number',
4237
4251
  subject: 'string',
4238
4252
  tenantContextShrink: 'string',
4239
4253
  };
@@ -43879,6 +43893,9 @@ class Client extends openapi_client_1.default {
43879
43893
  if (!tea_util_1.default.isUnset(request.participantIdsShrink)) {
43880
43894
  body["ParticipantIds"] = request.participantIdsShrink;
43881
43895
  }
43896
+ if (!tea_util_1.default.isUnset(request.reminderTimeStamp)) {
43897
+ body["ReminderTimeStamp"] = request.reminderTimeStamp;
43898
+ }
43882
43899
  if (!tea_util_1.default.isUnset(request.subject)) {
43883
43900
  body["Subject"] = request.subject;
43884
43901
  }