@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/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -4737,6 +4737,7 @@ export class GetEventResponseBody extends $tea.Model {
|
|
|
4737
4737
|
recurrence?: GetEventResponseBodyRecurrence;
|
|
4738
4738
|
reminders?: GetEventResponseBodyReminders[];
|
|
4739
4739
|
requestId?: string;
|
|
4740
|
+
richTextDescription?: GetEventResponseBodyRichTextDescription;
|
|
4740
4741
|
seriesMasterId?: string;
|
|
4741
4742
|
start?: GetEventResponseBodyStart;
|
|
4742
4743
|
status?: string;
|
|
@@ -4760,6 +4761,7 @@ export class GetEventResponseBody extends $tea.Model {
|
|
|
4760
4761
|
recurrence: 'recurrence',
|
|
4761
4762
|
reminders: 'reminders',
|
|
4762
4763
|
requestId: 'requestId',
|
|
4764
|
+
richTextDescription: 'richTextDescription',
|
|
4763
4765
|
seriesMasterId: 'seriesMasterId',
|
|
4764
4766
|
start: 'start',
|
|
4765
4767
|
status: 'status',
|
|
@@ -4786,6 +4788,7 @@ export class GetEventResponseBody extends $tea.Model {
|
|
|
4786
4788
|
recurrence: GetEventResponseBodyRecurrence,
|
|
4787
4789
|
reminders: { 'type': 'array', 'itemType': GetEventResponseBodyReminders },
|
|
4788
4790
|
requestId: 'string',
|
|
4791
|
+
richTextDescription: GetEventResponseBodyRichTextDescription,
|
|
4789
4792
|
seriesMasterId: 'string',
|
|
4790
4793
|
start: GetEventResponseBodyStart,
|
|
4791
4794
|
status: 'string',
|
|
@@ -9265,8 +9268,9 @@ export class QueryLiveInfoResponseBody extends $tea.Model {
|
|
|
9265
9268
|
duration?: number;
|
|
9266
9269
|
endTime?: number;
|
|
9267
9270
|
introduction?: string;
|
|
9268
|
-
liveId?:
|
|
9271
|
+
liveId?: string;
|
|
9269
9272
|
livePlayUrl?: string;
|
|
9273
|
+
liveStatus?: number;
|
|
9270
9274
|
playbackDuration?: number;
|
|
9271
9275
|
requestId?: string;
|
|
9272
9276
|
startTime?: number;
|
|
@@ -9281,6 +9285,7 @@ export class QueryLiveInfoResponseBody extends $tea.Model {
|
|
|
9281
9285
|
introduction: 'introduction',
|
|
9282
9286
|
liveId: 'liveId',
|
|
9283
9287
|
livePlayUrl: 'livePlayUrl',
|
|
9288
|
+
liveStatus: 'liveStatus',
|
|
9284
9289
|
playbackDuration: 'playbackDuration',
|
|
9285
9290
|
requestId: 'requestId',
|
|
9286
9291
|
startTime: 'startTime',
|
|
@@ -9296,8 +9301,9 @@ export class QueryLiveInfoResponseBody extends $tea.Model {
|
|
|
9296
9301
|
duration: 'number',
|
|
9297
9302
|
endTime: 'number',
|
|
9298
9303
|
introduction: 'string',
|
|
9299
|
-
liveId: '
|
|
9304
|
+
liveId: 'string',
|
|
9300
9305
|
livePlayUrl: 'string',
|
|
9306
|
+
liveStatus: 'number',
|
|
9301
9307
|
playbackDuration: 'number',
|
|
9302
9308
|
requestId: 'string',
|
|
9303
9309
|
startTime: 'number',
|
|
@@ -15851,6 +15857,25 @@ export class GetEventResponseBodyReminders extends $tea.Model {
|
|
|
15851
15857
|
}
|
|
15852
15858
|
}
|
|
15853
15859
|
|
|
15860
|
+
export class GetEventResponseBodyRichTextDescription extends $tea.Model {
|
|
15861
|
+
text?: string;
|
|
15862
|
+
static names(): { [key: string]: string } {
|
|
15863
|
+
return {
|
|
15864
|
+
text: 'Text',
|
|
15865
|
+
};
|
|
15866
|
+
}
|
|
15867
|
+
|
|
15868
|
+
static types(): { [key: string]: any } {
|
|
15869
|
+
return {
|
|
15870
|
+
text: 'string',
|
|
15871
|
+
};
|
|
15872
|
+
}
|
|
15873
|
+
|
|
15874
|
+
constructor(map?: { [key: string]: any }) {
|
|
15875
|
+
super(map);
|
|
15876
|
+
}
|
|
15877
|
+
}
|
|
15878
|
+
|
|
15854
15879
|
export class GetEventResponseBodyStart extends $tea.Model {
|
|
15855
15880
|
date?: string;
|
|
15856
15881
|
dateTime?: string;
|
|
@@ -18079,6 +18104,25 @@ export class ListEventsResponseBodyEventsReminders extends $tea.Model {
|
|
|
18079
18104
|
}
|
|
18080
18105
|
}
|
|
18081
18106
|
|
|
18107
|
+
export class ListEventsResponseBodyEventsRichTextDescription extends $tea.Model {
|
|
18108
|
+
text?: string;
|
|
18109
|
+
static names(): { [key: string]: string } {
|
|
18110
|
+
return {
|
|
18111
|
+
text: 'Text',
|
|
18112
|
+
};
|
|
18113
|
+
}
|
|
18114
|
+
|
|
18115
|
+
static types(): { [key: string]: any } {
|
|
18116
|
+
return {
|
|
18117
|
+
text: 'string',
|
|
18118
|
+
};
|
|
18119
|
+
}
|
|
18120
|
+
|
|
18121
|
+
constructor(map?: { [key: string]: any }) {
|
|
18122
|
+
super(map);
|
|
18123
|
+
}
|
|
18124
|
+
}
|
|
18125
|
+
|
|
18082
18126
|
export class ListEventsResponseBodyEventsStart extends $tea.Model {
|
|
18083
18127
|
date?: string;
|
|
18084
18128
|
dateTime?: string;
|
|
@@ -18120,6 +18164,7 @@ export class ListEventsResponseBodyEvents extends $tea.Model {
|
|
|
18120
18164
|
originStart?: ListEventsResponseBodyEventsOriginStart;
|
|
18121
18165
|
recurrence?: ListEventsResponseBodyEventsRecurrence;
|
|
18122
18166
|
reminders?: ListEventsResponseBodyEventsReminders[];
|
|
18167
|
+
richTextDescription?: ListEventsResponseBodyEventsRichTextDescription;
|
|
18123
18168
|
seriesMasterId?: string;
|
|
18124
18169
|
start?: ListEventsResponseBodyEventsStart;
|
|
18125
18170
|
status?: string;
|
|
@@ -18142,6 +18187,7 @@ export class ListEventsResponseBodyEvents extends $tea.Model {
|
|
|
18142
18187
|
originStart: 'OriginStart',
|
|
18143
18188
|
recurrence: 'Recurrence',
|
|
18144
18189
|
reminders: 'Reminders',
|
|
18190
|
+
richTextDescription: 'RichTextDescription',
|
|
18145
18191
|
seriesMasterId: 'SeriesMasterId',
|
|
18146
18192
|
start: 'Start',
|
|
18147
18193
|
status: 'Status',
|
|
@@ -18167,6 +18213,7 @@ export class ListEventsResponseBodyEvents extends $tea.Model {
|
|
|
18167
18213
|
originStart: ListEventsResponseBodyEventsOriginStart,
|
|
18168
18214
|
recurrence: ListEventsResponseBodyEventsRecurrence,
|
|
18169
18215
|
reminders: { 'type': 'array', 'itemType': ListEventsResponseBodyEventsReminders },
|
|
18216
|
+
richTextDescription: ListEventsResponseBodyEventsRichTextDescription,
|
|
18170
18217
|
seriesMasterId: 'string',
|
|
18171
18218
|
start: ListEventsResponseBodyEventsStart,
|
|
18172
18219
|
status: 'string',
|