@connectedxm/admin 6.5.12 → 6.5.14
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/index.d.cts +19 -7
- package/dist/index.d.ts +19 -7
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -458,10 +458,11 @@ interface BaseActivity {
|
|
|
458
458
|
pinned: boolean;
|
|
459
459
|
giphyId: string | null;
|
|
460
460
|
imageId: string | null;
|
|
461
|
-
|
|
461
|
+
videoId: string | null;
|
|
462
462
|
account: BaseAccount;
|
|
463
463
|
entities: BaseActivityEntity[];
|
|
464
464
|
moderation: keyof typeof ModerationStatus | null;
|
|
465
|
+
meetingId: string | null;
|
|
465
466
|
eventId: string | null;
|
|
466
467
|
groupId: string | null;
|
|
467
468
|
contentId: string | null;
|
|
@@ -473,7 +474,9 @@ interface BaseActivity {
|
|
|
473
474
|
};
|
|
474
475
|
}
|
|
475
476
|
interface Activity extends BaseActivity {
|
|
477
|
+
image: BaseImage | null;
|
|
476
478
|
video: BaseVideo | null;
|
|
479
|
+
meeting: BaseMeeting | null;
|
|
477
480
|
group: BaseGroup | null;
|
|
478
481
|
event: BaseEvent | null;
|
|
479
482
|
content: BaseChannelContent | null;
|
|
@@ -1643,6 +1646,8 @@ interface Organization extends BaseOrganization {
|
|
|
1643
1646
|
meetingLivestreamAdminPreset: string;
|
|
1644
1647
|
meetingLivestreamGuestPreset: string;
|
|
1645
1648
|
options: object | null;
|
|
1649
|
+
autoResolveSupportTickets: boolean;
|
|
1650
|
+
autoResolveSupportTicketMessage: string | null;
|
|
1646
1651
|
}
|
|
1647
1652
|
interface OrganizationTrigger {
|
|
1648
1653
|
id: number;
|
|
@@ -2570,6 +2575,10 @@ interface BaseMeeting {
|
|
|
2570
2575
|
type: MeetingType;
|
|
2571
2576
|
}
|
|
2572
2577
|
interface Meeting extends BaseMeeting {
|
|
2578
|
+
event?: BaseEvent;
|
|
2579
|
+
session?: BaseEventSession;
|
|
2580
|
+
group?: BaseGroup;
|
|
2581
|
+
activity?: BaseActivity;
|
|
2573
2582
|
updated_at: string;
|
|
2574
2583
|
created_at: string;
|
|
2575
2584
|
preferred_region?: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
|
|
@@ -2578,12 +2587,6 @@ interface Meeting extends BaseMeeting {
|
|
|
2578
2587
|
live_stream_on_start: boolean;
|
|
2579
2588
|
persist_chat: boolean;
|
|
2580
2589
|
summarize_on_end: boolean;
|
|
2581
|
-
eventId?: string;
|
|
2582
|
-
event?: BaseEvent;
|
|
2583
|
-
sessionId?: string;
|
|
2584
|
-
session?: BaseEventSession;
|
|
2585
|
-
groupId?: string;
|
|
2586
|
-
group?: BaseGroup;
|
|
2587
2590
|
"ai_config.transcription.keywords": string[];
|
|
2588
2591
|
"ai_config.transcription.language": "en-US" | "en-IN" | "multi" | "de" | "hi" | "sv" | "ru" | "pl" | "el" | "fr" | "nl" | "tr" | "es" | "it" | "pt" | "pt-BR" | "ro" | "ko" | "id";
|
|
2589
2592
|
"ai_config.transcription.profanity_filter": boolean;
|
|
@@ -4184,6 +4187,7 @@ interface BaseStreamInput {
|
|
|
4184
4187
|
imageId: string | null;
|
|
4185
4188
|
image: BaseImage | null;
|
|
4186
4189
|
locale: string;
|
|
4190
|
+
webRTC: boolean;
|
|
4187
4191
|
}
|
|
4188
4192
|
interface StreamInput extends BaseStreamInput {
|
|
4189
4193
|
eventId: string | null;
|
|
@@ -4389,6 +4393,7 @@ interface ActivityCreateInputs {
|
|
|
4389
4393
|
groupId?: string | null;
|
|
4390
4394
|
contentId?: string | null;
|
|
4391
4395
|
commentedId?: string | null;
|
|
4396
|
+
meetingId?: string | null;
|
|
4392
4397
|
createdAt?: string | null;
|
|
4393
4398
|
}
|
|
4394
4399
|
interface ActivityUpdateInputs {
|
|
@@ -4400,6 +4405,7 @@ interface ActivityUpdateInputs {
|
|
|
4400
4405
|
pinned?: boolean;
|
|
4401
4406
|
imageId?: string | null;
|
|
4402
4407
|
videoId?: string | null;
|
|
4408
|
+
meetingId?: string | null;
|
|
4403
4409
|
createdAt?: string | null;
|
|
4404
4410
|
}
|
|
4405
4411
|
interface AdvertisementCreateInputs {
|
|
@@ -5428,6 +5434,8 @@ interface OrganizationUpdateInputs {
|
|
|
5428
5434
|
meetingLivestreamAdminPreset?: string;
|
|
5429
5435
|
meetingLivestreamGuestPreset?: string;
|
|
5430
5436
|
options?: object | null;
|
|
5437
|
+
autoResolveSupportTickets?: boolean;
|
|
5438
|
+
autoResolveSupportTicketMessage?: string | null;
|
|
5431
5439
|
}
|
|
5432
5440
|
interface PaymentIntentPurchaseMetadataInputs {
|
|
5433
5441
|
}
|
|
@@ -6443,6 +6451,7 @@ interface MeetingCreateInputs {
|
|
|
6443
6451
|
eventId?: string;
|
|
6444
6452
|
sessionId?: string;
|
|
6445
6453
|
groupId?: string;
|
|
6454
|
+
activityId?: string;
|
|
6446
6455
|
title: string | null;
|
|
6447
6456
|
preferred_region: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
|
|
6448
6457
|
record_on_start: boolean;
|
|
@@ -6461,6 +6470,7 @@ interface MeetingUpdateInputs {
|
|
|
6461
6470
|
eventId?: string;
|
|
6462
6471
|
sessionId?: string;
|
|
6463
6472
|
groupId?: string;
|
|
6473
|
+
activityId?: string;
|
|
6464
6474
|
title?: string | null;
|
|
6465
6475
|
preferred_region?: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
|
|
6466
6476
|
record_on_start?: boolean;
|
|
@@ -6678,6 +6688,7 @@ interface StreamInputCreateInputs {
|
|
|
6678
6688
|
imageId?: string | null;
|
|
6679
6689
|
public?: boolean;
|
|
6680
6690
|
locale?: string | null;
|
|
6691
|
+
webRTC?: boolean;
|
|
6681
6692
|
}
|
|
6682
6693
|
interface StreamInputUpdateInputs {
|
|
6683
6694
|
name?: string;
|
|
@@ -6691,6 +6702,7 @@ interface StreamInputUpdateInputs {
|
|
|
6691
6702
|
imageId?: string | null;
|
|
6692
6703
|
public?: boolean;
|
|
6693
6704
|
locale?: string | null;
|
|
6705
|
+
webRTC?: boolean;
|
|
6694
6706
|
}
|
|
6695
6707
|
interface StreamInputOutputCreateInputs {
|
|
6696
6708
|
enabled: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -458,10 +458,11 @@ interface BaseActivity {
|
|
|
458
458
|
pinned: boolean;
|
|
459
459
|
giphyId: string | null;
|
|
460
460
|
imageId: string | null;
|
|
461
|
-
|
|
461
|
+
videoId: string | null;
|
|
462
462
|
account: BaseAccount;
|
|
463
463
|
entities: BaseActivityEntity[];
|
|
464
464
|
moderation: keyof typeof ModerationStatus | null;
|
|
465
|
+
meetingId: string | null;
|
|
465
466
|
eventId: string | null;
|
|
466
467
|
groupId: string | null;
|
|
467
468
|
contentId: string | null;
|
|
@@ -473,7 +474,9 @@ interface BaseActivity {
|
|
|
473
474
|
};
|
|
474
475
|
}
|
|
475
476
|
interface Activity extends BaseActivity {
|
|
477
|
+
image: BaseImage | null;
|
|
476
478
|
video: BaseVideo | null;
|
|
479
|
+
meeting: BaseMeeting | null;
|
|
477
480
|
group: BaseGroup | null;
|
|
478
481
|
event: BaseEvent | null;
|
|
479
482
|
content: BaseChannelContent | null;
|
|
@@ -1643,6 +1646,8 @@ interface Organization extends BaseOrganization {
|
|
|
1643
1646
|
meetingLivestreamAdminPreset: string;
|
|
1644
1647
|
meetingLivestreamGuestPreset: string;
|
|
1645
1648
|
options: object | null;
|
|
1649
|
+
autoResolveSupportTickets: boolean;
|
|
1650
|
+
autoResolveSupportTicketMessage: string | null;
|
|
1646
1651
|
}
|
|
1647
1652
|
interface OrganizationTrigger {
|
|
1648
1653
|
id: number;
|
|
@@ -2570,6 +2575,10 @@ interface BaseMeeting {
|
|
|
2570
2575
|
type: MeetingType;
|
|
2571
2576
|
}
|
|
2572
2577
|
interface Meeting extends BaseMeeting {
|
|
2578
|
+
event?: BaseEvent;
|
|
2579
|
+
session?: BaseEventSession;
|
|
2580
|
+
group?: BaseGroup;
|
|
2581
|
+
activity?: BaseActivity;
|
|
2573
2582
|
updated_at: string;
|
|
2574
2583
|
created_at: string;
|
|
2575
2584
|
preferred_region?: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
|
|
@@ -2578,12 +2587,6 @@ interface Meeting extends BaseMeeting {
|
|
|
2578
2587
|
live_stream_on_start: boolean;
|
|
2579
2588
|
persist_chat: boolean;
|
|
2580
2589
|
summarize_on_end: boolean;
|
|
2581
|
-
eventId?: string;
|
|
2582
|
-
event?: BaseEvent;
|
|
2583
|
-
sessionId?: string;
|
|
2584
|
-
session?: BaseEventSession;
|
|
2585
|
-
groupId?: string;
|
|
2586
|
-
group?: BaseGroup;
|
|
2587
2590
|
"ai_config.transcription.keywords": string[];
|
|
2588
2591
|
"ai_config.transcription.language": "en-US" | "en-IN" | "multi" | "de" | "hi" | "sv" | "ru" | "pl" | "el" | "fr" | "nl" | "tr" | "es" | "it" | "pt" | "pt-BR" | "ro" | "ko" | "id";
|
|
2589
2592
|
"ai_config.transcription.profanity_filter": boolean;
|
|
@@ -4184,6 +4187,7 @@ interface BaseStreamInput {
|
|
|
4184
4187
|
imageId: string | null;
|
|
4185
4188
|
image: BaseImage | null;
|
|
4186
4189
|
locale: string;
|
|
4190
|
+
webRTC: boolean;
|
|
4187
4191
|
}
|
|
4188
4192
|
interface StreamInput extends BaseStreamInput {
|
|
4189
4193
|
eventId: string | null;
|
|
@@ -4389,6 +4393,7 @@ interface ActivityCreateInputs {
|
|
|
4389
4393
|
groupId?: string | null;
|
|
4390
4394
|
contentId?: string | null;
|
|
4391
4395
|
commentedId?: string | null;
|
|
4396
|
+
meetingId?: string | null;
|
|
4392
4397
|
createdAt?: string | null;
|
|
4393
4398
|
}
|
|
4394
4399
|
interface ActivityUpdateInputs {
|
|
@@ -4400,6 +4405,7 @@ interface ActivityUpdateInputs {
|
|
|
4400
4405
|
pinned?: boolean;
|
|
4401
4406
|
imageId?: string | null;
|
|
4402
4407
|
videoId?: string | null;
|
|
4408
|
+
meetingId?: string | null;
|
|
4403
4409
|
createdAt?: string | null;
|
|
4404
4410
|
}
|
|
4405
4411
|
interface AdvertisementCreateInputs {
|
|
@@ -5428,6 +5434,8 @@ interface OrganizationUpdateInputs {
|
|
|
5428
5434
|
meetingLivestreamAdminPreset?: string;
|
|
5429
5435
|
meetingLivestreamGuestPreset?: string;
|
|
5430
5436
|
options?: object | null;
|
|
5437
|
+
autoResolveSupportTickets?: boolean;
|
|
5438
|
+
autoResolveSupportTicketMessage?: string | null;
|
|
5431
5439
|
}
|
|
5432
5440
|
interface PaymentIntentPurchaseMetadataInputs {
|
|
5433
5441
|
}
|
|
@@ -6443,6 +6451,7 @@ interface MeetingCreateInputs {
|
|
|
6443
6451
|
eventId?: string;
|
|
6444
6452
|
sessionId?: string;
|
|
6445
6453
|
groupId?: string;
|
|
6454
|
+
activityId?: string;
|
|
6446
6455
|
title: string | null;
|
|
6447
6456
|
preferred_region: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
|
|
6448
6457
|
record_on_start: boolean;
|
|
@@ -6461,6 +6470,7 @@ interface MeetingUpdateInputs {
|
|
|
6461
6470
|
eventId?: string;
|
|
6462
6471
|
sessionId?: string;
|
|
6463
6472
|
groupId?: string;
|
|
6473
|
+
activityId?: string;
|
|
6464
6474
|
title?: string | null;
|
|
6465
6475
|
preferred_region?: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
|
|
6466
6476
|
record_on_start?: boolean;
|
|
@@ -6678,6 +6688,7 @@ interface StreamInputCreateInputs {
|
|
|
6678
6688
|
imageId?: string | null;
|
|
6679
6689
|
public?: boolean;
|
|
6680
6690
|
locale?: string | null;
|
|
6691
|
+
webRTC?: boolean;
|
|
6681
6692
|
}
|
|
6682
6693
|
interface StreamInputUpdateInputs {
|
|
6683
6694
|
name?: string;
|
|
@@ -6691,6 +6702,7 @@ interface StreamInputUpdateInputs {
|
|
|
6691
6702
|
imageId?: string | null;
|
|
6692
6703
|
public?: boolean;
|
|
6693
6704
|
locale?: string | null;
|
|
6705
|
+
webRTC?: boolean;
|
|
6694
6706
|
}
|
|
6695
6707
|
interface StreamInputOutputCreateInputs {
|
|
6696
6708
|
enabled: boolean;
|