@alicloud/aliding20230426 1.4.0 → 1.4.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 +26 -0
- package/dist/client.js +36 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +44 -0
package/dist/client.d.ts
CHANGED
|
@@ -2813,6 +2813,7 @@ export declare class GetEventResponseBody extends $tea.Model {
|
|
|
2813
2813
|
recurrence?: GetEventResponseBodyRecurrence;
|
|
2814
2814
|
reminders?: GetEventResponseBodyReminders[];
|
|
2815
2815
|
requestId?: string;
|
|
2816
|
+
richTextDescription?: GetEventResponseBodyRichTextDescription;
|
|
2816
2817
|
seriesMasterId?: string;
|
|
2817
2818
|
start?: GetEventResponseBodyStart;
|
|
2818
2819
|
status?: string;
|
|
@@ -9399,6 +9400,18 @@ export declare class GetEventResponseBodyReminders extends $tea.Model {
|
|
|
9399
9400
|
[key: string]: any;
|
|
9400
9401
|
});
|
|
9401
9402
|
}
|
|
9403
|
+
export declare class GetEventResponseBodyRichTextDescription extends $tea.Model {
|
|
9404
|
+
text?: string;
|
|
9405
|
+
static names(): {
|
|
9406
|
+
[key: string]: string;
|
|
9407
|
+
};
|
|
9408
|
+
static types(): {
|
|
9409
|
+
[key: string]: any;
|
|
9410
|
+
};
|
|
9411
|
+
constructor(map?: {
|
|
9412
|
+
[key: string]: any;
|
|
9413
|
+
});
|
|
9414
|
+
}
|
|
9402
9415
|
export declare class GetEventResponseBodyStart extends $tea.Model {
|
|
9403
9416
|
date?: string;
|
|
9404
9417
|
dateTime?: string;
|
|
@@ -10648,6 +10661,18 @@ export declare class ListEventsResponseBodyEventsReminders extends $tea.Model {
|
|
|
10648
10661
|
[key: string]: any;
|
|
10649
10662
|
});
|
|
10650
10663
|
}
|
|
10664
|
+
export declare class ListEventsResponseBodyEventsRichTextDescription extends $tea.Model {
|
|
10665
|
+
text?: string;
|
|
10666
|
+
static names(): {
|
|
10667
|
+
[key: string]: string;
|
|
10668
|
+
};
|
|
10669
|
+
static types(): {
|
|
10670
|
+
[key: string]: any;
|
|
10671
|
+
};
|
|
10672
|
+
constructor(map?: {
|
|
10673
|
+
[key: string]: any;
|
|
10674
|
+
});
|
|
10675
|
+
}
|
|
10651
10676
|
export declare class ListEventsResponseBodyEventsStart extends $tea.Model {
|
|
10652
10677
|
date?: string;
|
|
10653
10678
|
dateTime?: string;
|
|
@@ -10678,6 +10703,7 @@ export declare class ListEventsResponseBodyEvents extends $tea.Model {
|
|
|
10678
10703
|
originStart?: ListEventsResponseBodyEventsOriginStart;
|
|
10679
10704
|
recurrence?: ListEventsResponseBodyEventsRecurrence;
|
|
10680
10705
|
reminders?: ListEventsResponseBodyEventsReminders[];
|
|
10706
|
+
richTextDescription?: ListEventsResponseBodyEventsRichTextDescription;
|
|
10681
10707
|
seriesMasterId?: string;
|
|
10682
10708
|
start?: ListEventsResponseBodyEventsStart;
|
|
10683
10709
|
status?: string;
|
package/dist/client.js
CHANGED
|
@@ -3789,6 +3789,7 @@ class GetEventResponseBody extends $tea.Model {
|
|
|
3789
3789
|
recurrence: 'recurrence',
|
|
3790
3790
|
reminders: 'reminders',
|
|
3791
3791
|
requestId: 'requestId',
|
|
3792
|
+
richTextDescription: 'richTextDescription',
|
|
3792
3793
|
seriesMasterId: 'seriesMasterId',
|
|
3793
3794
|
start: 'start',
|
|
3794
3795
|
status: 'status',
|
|
@@ -3814,6 +3815,7 @@ class GetEventResponseBody extends $tea.Model {
|
|
|
3814
3815
|
recurrence: GetEventResponseBodyRecurrence,
|
|
3815
3816
|
reminders: { 'type': 'array', 'itemType': GetEventResponseBodyReminders },
|
|
3816
3817
|
requestId: 'string',
|
|
3818
|
+
richTextDescription: GetEventResponseBodyRichTextDescription,
|
|
3817
3819
|
seriesMasterId: 'string',
|
|
3818
3820
|
start: GetEventResponseBodyStart,
|
|
3819
3821
|
status: 'string',
|
|
@@ -12681,6 +12683,22 @@ class GetEventResponseBodyReminders extends $tea.Model {
|
|
|
12681
12683
|
}
|
|
12682
12684
|
}
|
|
12683
12685
|
exports.GetEventResponseBodyReminders = GetEventResponseBodyReminders;
|
|
12686
|
+
class GetEventResponseBodyRichTextDescription extends $tea.Model {
|
|
12687
|
+
constructor(map) {
|
|
12688
|
+
super(map);
|
|
12689
|
+
}
|
|
12690
|
+
static names() {
|
|
12691
|
+
return {
|
|
12692
|
+
text: 'Text',
|
|
12693
|
+
};
|
|
12694
|
+
}
|
|
12695
|
+
static types() {
|
|
12696
|
+
return {
|
|
12697
|
+
text: 'string',
|
|
12698
|
+
};
|
|
12699
|
+
}
|
|
12700
|
+
}
|
|
12701
|
+
exports.GetEventResponseBodyRichTextDescription = GetEventResponseBodyRichTextDescription;
|
|
12684
12702
|
class GetEventResponseBodyStart extends $tea.Model {
|
|
12685
12703
|
constructor(map) {
|
|
12686
12704
|
super(map);
|
|
@@ -14463,6 +14481,22 @@ class ListEventsResponseBodyEventsReminders extends $tea.Model {
|
|
|
14463
14481
|
}
|
|
14464
14482
|
}
|
|
14465
14483
|
exports.ListEventsResponseBodyEventsReminders = ListEventsResponseBodyEventsReminders;
|
|
14484
|
+
class ListEventsResponseBodyEventsRichTextDescription extends $tea.Model {
|
|
14485
|
+
constructor(map) {
|
|
14486
|
+
super(map);
|
|
14487
|
+
}
|
|
14488
|
+
static names() {
|
|
14489
|
+
return {
|
|
14490
|
+
text: 'Text',
|
|
14491
|
+
};
|
|
14492
|
+
}
|
|
14493
|
+
static types() {
|
|
14494
|
+
return {
|
|
14495
|
+
text: 'string',
|
|
14496
|
+
};
|
|
14497
|
+
}
|
|
14498
|
+
}
|
|
14499
|
+
exports.ListEventsResponseBodyEventsRichTextDescription = ListEventsResponseBodyEventsRichTextDescription;
|
|
14466
14500
|
class ListEventsResponseBodyEventsStart extends $tea.Model {
|
|
14467
14501
|
constructor(map) {
|
|
14468
14502
|
super(map);
|
|
@@ -14504,6 +14538,7 @@ class ListEventsResponseBodyEvents extends $tea.Model {
|
|
|
14504
14538
|
originStart: 'OriginStart',
|
|
14505
14539
|
recurrence: 'Recurrence',
|
|
14506
14540
|
reminders: 'Reminders',
|
|
14541
|
+
richTextDescription: 'RichTextDescription',
|
|
14507
14542
|
seriesMasterId: 'SeriesMasterId',
|
|
14508
14543
|
start: 'Start',
|
|
14509
14544
|
status: 'Status',
|
|
@@ -14528,6 +14563,7 @@ class ListEventsResponseBodyEvents extends $tea.Model {
|
|
|
14528
14563
|
originStart: ListEventsResponseBodyEventsOriginStart,
|
|
14529
14564
|
recurrence: ListEventsResponseBodyEventsRecurrence,
|
|
14530
14565
|
reminders: { 'type': 'array', 'itemType': ListEventsResponseBodyEventsReminders },
|
|
14566
|
+
richTextDescription: ListEventsResponseBodyEventsRichTextDescription,
|
|
14531
14567
|
seriesMasterId: 'string',
|
|
14532
14568
|
start: ListEventsResponseBodyEventsStart,
|
|
14533
14569
|
status: 'string',
|