@alicloud/aliding20230426 2.1.0 → 2.1.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 +5 -0
- package/dist/client.js +19 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +27 -0
package/dist/client.d.ts
CHANGED
|
@@ -38,6 +38,8 @@ export declare class AddAttendeeRequest extends $tea.Model {
|
|
|
38
38
|
attendeesToAdd?: AddAttendeeRequestAttendeesToAdd[];
|
|
39
39
|
calendarId?: string;
|
|
40
40
|
eventId?: string;
|
|
41
|
+
chatNotification?: boolean;
|
|
42
|
+
pushNotification?: boolean;
|
|
41
43
|
static names(): {
|
|
42
44
|
[key: string]: string;
|
|
43
45
|
};
|
|
@@ -52,6 +54,8 @@ export declare class AddAttendeeShrinkRequest extends $tea.Model {
|
|
|
52
54
|
attendeesToAddShrink?: string;
|
|
53
55
|
calendarId?: string;
|
|
54
56
|
eventId?: string;
|
|
57
|
+
chatNotification?: boolean;
|
|
58
|
+
pushNotification?: boolean;
|
|
55
59
|
static names(): {
|
|
56
60
|
[key: string]: string;
|
|
57
61
|
};
|
|
@@ -2362,6 +2366,7 @@ export declare class DeleteEventShrinkHeaders extends $tea.Model {
|
|
|
2362
2366
|
export declare class DeleteEventRequest extends $tea.Model {
|
|
2363
2367
|
calendarId?: string;
|
|
2364
2368
|
eventId?: string;
|
|
2369
|
+
pushNotification?: boolean;
|
|
2365
2370
|
static names(): {
|
|
2366
2371
|
[key: string]: string;
|
|
2367
2372
|
};
|
package/dist/client.js
CHANGED
|
@@ -64,6 +64,8 @@ class AddAttendeeRequest extends $tea.Model {
|
|
|
64
64
|
attendeesToAdd: 'AttendeesToAdd',
|
|
65
65
|
calendarId: 'CalendarId',
|
|
66
66
|
eventId: 'EventId',
|
|
67
|
+
chatNotification: 'chatNotification',
|
|
68
|
+
pushNotification: 'pushNotification',
|
|
67
69
|
};
|
|
68
70
|
}
|
|
69
71
|
static types() {
|
|
@@ -71,6 +73,8 @@ class AddAttendeeRequest extends $tea.Model {
|
|
|
71
73
|
attendeesToAdd: { 'type': 'array', 'itemType': AddAttendeeRequestAttendeesToAdd },
|
|
72
74
|
calendarId: 'string',
|
|
73
75
|
eventId: 'string',
|
|
76
|
+
chatNotification: 'boolean',
|
|
77
|
+
pushNotification: 'boolean',
|
|
74
78
|
};
|
|
75
79
|
}
|
|
76
80
|
}
|
|
@@ -84,6 +88,8 @@ class AddAttendeeShrinkRequest extends $tea.Model {
|
|
|
84
88
|
attendeesToAddShrink: 'AttendeesToAdd',
|
|
85
89
|
calendarId: 'CalendarId',
|
|
86
90
|
eventId: 'EventId',
|
|
91
|
+
chatNotification: 'chatNotification',
|
|
92
|
+
pushNotification: 'pushNotification',
|
|
87
93
|
};
|
|
88
94
|
}
|
|
89
95
|
static types() {
|
|
@@ -91,6 +97,8 @@ class AddAttendeeShrinkRequest extends $tea.Model {
|
|
|
91
97
|
attendeesToAddShrink: 'string',
|
|
92
98
|
calendarId: 'string',
|
|
93
99
|
eventId: 'string',
|
|
100
|
+
chatNotification: 'boolean',
|
|
101
|
+
pushNotification: 'boolean',
|
|
94
102
|
};
|
|
95
103
|
}
|
|
96
104
|
}
|
|
@@ -3221,12 +3229,14 @@ class DeleteEventRequest extends $tea.Model {
|
|
|
3221
3229
|
return {
|
|
3222
3230
|
calendarId: 'CalendarId',
|
|
3223
3231
|
eventId: 'EventId',
|
|
3232
|
+
pushNotification: 'pushNotification',
|
|
3224
3233
|
};
|
|
3225
3234
|
}
|
|
3226
3235
|
static types() {
|
|
3227
3236
|
return {
|
|
3228
3237
|
calendarId: 'string',
|
|
3229
3238
|
eventId: 'string',
|
|
3239
|
+
pushNotification: 'boolean',
|
|
3230
3240
|
};
|
|
3231
3241
|
}
|
|
3232
3242
|
}
|
|
@@ -20771,6 +20781,12 @@ class Client extends openapi_client_1.default {
|
|
|
20771
20781
|
if (!tea_util_1.default.isUnset(request.eventId)) {
|
|
20772
20782
|
body["EventId"] = request.eventId;
|
|
20773
20783
|
}
|
|
20784
|
+
if (!tea_util_1.default.isUnset(request.chatNotification)) {
|
|
20785
|
+
body["chatNotification"] = request.chatNotification;
|
|
20786
|
+
}
|
|
20787
|
+
if (!tea_util_1.default.isUnset(request.pushNotification)) {
|
|
20788
|
+
body["pushNotification"] = request.pushNotification;
|
|
20789
|
+
}
|
|
20774
20790
|
let realHeaders = {};
|
|
20775
20791
|
if (!tea_util_1.default.isUnset(headers.commonHeaders)) {
|
|
20776
20792
|
realHeaders = headers.commonHeaders;
|
|
@@ -22297,6 +22313,9 @@ class Client extends openapi_client_1.default {
|
|
|
22297
22313
|
if (!tea_util_1.default.isUnset(request.eventId)) {
|
|
22298
22314
|
body["EventId"] = request.eventId;
|
|
22299
22315
|
}
|
|
22316
|
+
if (!tea_util_1.default.isUnset(request.pushNotification)) {
|
|
22317
|
+
body["pushNotification"] = request.pushNotification;
|
|
22318
|
+
}
|
|
22300
22319
|
let realHeaders = {};
|
|
22301
22320
|
if (!tea_util_1.default.isUnset(headers.commonHeaders)) {
|
|
22302
22321
|
realHeaders = headers.commonHeaders;
|