@alicloud/aliding20230426 1.4.0 → 2.0.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 +28 -1
- package/dist/client.js +39 -1
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +49 -2
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;
|
|
@@ -5471,8 +5472,9 @@ export declare class QueryLiveInfoResponseBody extends $tea.Model {
|
|
|
5471
5472
|
duration?: number;
|
|
5472
5473
|
endTime?: number;
|
|
5473
5474
|
introduction?: string;
|
|
5474
|
-
liveId?:
|
|
5475
|
+
liveId?: string;
|
|
5475
5476
|
livePlayUrl?: string;
|
|
5477
|
+
liveStatus?: number;
|
|
5476
5478
|
playbackDuration?: number;
|
|
5477
5479
|
requestId?: string;
|
|
5478
5480
|
startTime?: number;
|
|
@@ -9399,6 +9401,18 @@ export declare class GetEventResponseBodyReminders extends $tea.Model {
|
|
|
9399
9401
|
[key: string]: any;
|
|
9400
9402
|
});
|
|
9401
9403
|
}
|
|
9404
|
+
export declare class GetEventResponseBodyRichTextDescription extends $tea.Model {
|
|
9405
|
+
text?: string;
|
|
9406
|
+
static names(): {
|
|
9407
|
+
[key: string]: string;
|
|
9408
|
+
};
|
|
9409
|
+
static types(): {
|
|
9410
|
+
[key: string]: any;
|
|
9411
|
+
};
|
|
9412
|
+
constructor(map?: {
|
|
9413
|
+
[key: string]: any;
|
|
9414
|
+
});
|
|
9415
|
+
}
|
|
9402
9416
|
export declare class GetEventResponseBodyStart extends $tea.Model {
|
|
9403
9417
|
date?: string;
|
|
9404
9418
|
dateTime?: string;
|
|
@@ -10648,6 +10662,18 @@ export declare class ListEventsResponseBodyEventsReminders extends $tea.Model {
|
|
|
10648
10662
|
[key: string]: any;
|
|
10649
10663
|
});
|
|
10650
10664
|
}
|
|
10665
|
+
export declare class ListEventsResponseBodyEventsRichTextDescription extends $tea.Model {
|
|
10666
|
+
text?: string;
|
|
10667
|
+
static names(): {
|
|
10668
|
+
[key: string]: string;
|
|
10669
|
+
};
|
|
10670
|
+
static types(): {
|
|
10671
|
+
[key: string]: any;
|
|
10672
|
+
};
|
|
10673
|
+
constructor(map?: {
|
|
10674
|
+
[key: string]: any;
|
|
10675
|
+
});
|
|
10676
|
+
}
|
|
10651
10677
|
export declare class ListEventsResponseBodyEventsStart extends $tea.Model {
|
|
10652
10678
|
date?: string;
|
|
10653
10679
|
dateTime?: string;
|
|
@@ -10678,6 +10704,7 @@ export declare class ListEventsResponseBodyEvents extends $tea.Model {
|
|
|
10678
10704
|
originStart?: ListEventsResponseBodyEventsOriginStart;
|
|
10679
10705
|
recurrence?: ListEventsResponseBodyEventsRecurrence;
|
|
10680
10706
|
reminders?: ListEventsResponseBodyEventsReminders[];
|
|
10707
|
+
richTextDescription?: ListEventsResponseBodyEventsRichTextDescription;
|
|
10681
10708
|
seriesMasterId?: string;
|
|
10682
10709
|
start?: ListEventsResponseBodyEventsStart;
|
|
10683
10710
|
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',
|
|
@@ -7379,6 +7381,7 @@ class QueryLiveInfoResponseBody extends $tea.Model {
|
|
|
7379
7381
|
introduction: 'introduction',
|
|
7380
7382
|
liveId: 'liveId',
|
|
7381
7383
|
livePlayUrl: 'livePlayUrl',
|
|
7384
|
+
liveStatus: 'liveStatus',
|
|
7382
7385
|
playbackDuration: 'playbackDuration',
|
|
7383
7386
|
requestId: 'requestId',
|
|
7384
7387
|
startTime: 'startTime',
|
|
@@ -7393,8 +7396,9 @@ class QueryLiveInfoResponseBody extends $tea.Model {
|
|
|
7393
7396
|
duration: 'number',
|
|
7394
7397
|
endTime: 'number',
|
|
7395
7398
|
introduction: 'string',
|
|
7396
|
-
liveId: '
|
|
7399
|
+
liveId: 'string',
|
|
7397
7400
|
livePlayUrl: 'string',
|
|
7401
|
+
liveStatus: 'number',
|
|
7398
7402
|
playbackDuration: 'number',
|
|
7399
7403
|
requestId: 'string',
|
|
7400
7404
|
startTime: 'number',
|
|
@@ -12681,6 +12685,22 @@ class GetEventResponseBodyReminders extends $tea.Model {
|
|
|
12681
12685
|
}
|
|
12682
12686
|
}
|
|
12683
12687
|
exports.GetEventResponseBodyReminders = GetEventResponseBodyReminders;
|
|
12688
|
+
class GetEventResponseBodyRichTextDescription extends $tea.Model {
|
|
12689
|
+
constructor(map) {
|
|
12690
|
+
super(map);
|
|
12691
|
+
}
|
|
12692
|
+
static names() {
|
|
12693
|
+
return {
|
|
12694
|
+
text: 'Text',
|
|
12695
|
+
};
|
|
12696
|
+
}
|
|
12697
|
+
static types() {
|
|
12698
|
+
return {
|
|
12699
|
+
text: 'string',
|
|
12700
|
+
};
|
|
12701
|
+
}
|
|
12702
|
+
}
|
|
12703
|
+
exports.GetEventResponseBodyRichTextDescription = GetEventResponseBodyRichTextDescription;
|
|
12684
12704
|
class GetEventResponseBodyStart extends $tea.Model {
|
|
12685
12705
|
constructor(map) {
|
|
12686
12706
|
super(map);
|
|
@@ -14463,6 +14483,22 @@ class ListEventsResponseBodyEventsReminders extends $tea.Model {
|
|
|
14463
14483
|
}
|
|
14464
14484
|
}
|
|
14465
14485
|
exports.ListEventsResponseBodyEventsReminders = ListEventsResponseBodyEventsReminders;
|
|
14486
|
+
class ListEventsResponseBodyEventsRichTextDescription extends $tea.Model {
|
|
14487
|
+
constructor(map) {
|
|
14488
|
+
super(map);
|
|
14489
|
+
}
|
|
14490
|
+
static names() {
|
|
14491
|
+
return {
|
|
14492
|
+
text: 'Text',
|
|
14493
|
+
};
|
|
14494
|
+
}
|
|
14495
|
+
static types() {
|
|
14496
|
+
return {
|
|
14497
|
+
text: 'string',
|
|
14498
|
+
};
|
|
14499
|
+
}
|
|
14500
|
+
}
|
|
14501
|
+
exports.ListEventsResponseBodyEventsRichTextDescription = ListEventsResponseBodyEventsRichTextDescription;
|
|
14466
14502
|
class ListEventsResponseBodyEventsStart extends $tea.Model {
|
|
14467
14503
|
constructor(map) {
|
|
14468
14504
|
super(map);
|
|
@@ -14504,6 +14540,7 @@ class ListEventsResponseBodyEvents extends $tea.Model {
|
|
|
14504
14540
|
originStart: 'OriginStart',
|
|
14505
14541
|
recurrence: 'Recurrence',
|
|
14506
14542
|
reminders: 'Reminders',
|
|
14543
|
+
richTextDescription: 'RichTextDescription',
|
|
14507
14544
|
seriesMasterId: 'SeriesMasterId',
|
|
14508
14545
|
start: 'Start',
|
|
14509
14546
|
status: 'Status',
|
|
@@ -14528,6 +14565,7 @@ class ListEventsResponseBodyEvents extends $tea.Model {
|
|
|
14528
14565
|
originStart: ListEventsResponseBodyEventsOriginStart,
|
|
14529
14566
|
recurrence: ListEventsResponseBodyEventsRecurrence,
|
|
14530
14567
|
reminders: { 'type': 'array', 'itemType': ListEventsResponseBodyEventsReminders },
|
|
14568
|
+
richTextDescription: ListEventsResponseBodyEventsRichTextDescription,
|
|
14531
14569
|
seriesMasterId: 'string',
|
|
14532
14570
|
start: ListEventsResponseBodyEventsStart,
|
|
14533
14571
|
status: 'string',
|