@connectedxm/admin 6.0.2 → 6.0.4
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.cjs +1 -0
- package/dist/index.d.cts +16 -7
- package/dist/index.d.ts +16 -7
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3352,6 +3352,7 @@ var OrganizationModuleType = /* @__PURE__ */ ((OrganizationModuleType2) => {
|
|
|
3352
3352
|
OrganizationModuleType2["advertisements"] = "advertisements";
|
|
3353
3353
|
OrganizationModuleType2["invoices"] = "invoices";
|
|
3354
3354
|
OrganizationModuleType2["streams"] = "streams";
|
|
3355
|
+
OrganizationModuleType2["meetings"] = "meetings";
|
|
3355
3356
|
return OrganizationModuleType2;
|
|
3356
3357
|
})(OrganizationModuleType || {});
|
|
3357
3358
|
var LocationQuestionOption = /* @__PURE__ */ ((LocationQuestionOption2) => {
|
package/dist/index.d.cts
CHANGED
|
@@ -39,7 +39,8 @@ declare enum OrganizationModuleType {
|
|
|
39
39
|
interests = "interests",
|
|
40
40
|
advertisements = "advertisements",
|
|
41
41
|
invoices = "invoices",
|
|
42
|
-
streams = "streams"
|
|
42
|
+
streams = "streams",
|
|
43
|
+
meetings = "meetings"
|
|
43
44
|
}
|
|
44
45
|
declare enum LocationQuestionOption {
|
|
45
46
|
country = "country",
|
|
@@ -1482,6 +1483,7 @@ interface OrganizationMembership {
|
|
|
1482
1483
|
surveys: ModulePermissions;
|
|
1483
1484
|
searchlists: ModulePermissions;
|
|
1484
1485
|
streams: ModulePermissions;
|
|
1486
|
+
meetings: ModulePermissions;
|
|
1485
1487
|
payments: ModulePermissions;
|
|
1486
1488
|
}
|
|
1487
1489
|
interface BaseOrganization {
|
|
@@ -1558,6 +1560,12 @@ interface Organization extends BaseOrganization {
|
|
|
1558
1560
|
locales: string[];
|
|
1559
1561
|
inviteOnly: boolean;
|
|
1560
1562
|
googleTagManagerId: string | null;
|
|
1563
|
+
meetingGroupCallAdminPreset: string;
|
|
1564
|
+
meetingGroupCallGuestPreset: string;
|
|
1565
|
+
meetingWebinarAdminPreset: string;
|
|
1566
|
+
meetingWebinarGuestPreset: string;
|
|
1567
|
+
meetingLivestreamAdminPreset: string;
|
|
1568
|
+
meetingLivestreamGuestPreset: string;
|
|
1561
1569
|
options: object | null;
|
|
1562
1570
|
}
|
|
1563
1571
|
interface OrganizationTrigger {
|
|
@@ -2479,8 +2487,6 @@ interface BaseMeeting {
|
|
|
2479
2487
|
id: string;
|
|
2480
2488
|
title: string;
|
|
2481
2489
|
type: MeetingType;
|
|
2482
|
-
host_preset: string;
|
|
2483
|
-
guest_preset: string;
|
|
2484
2490
|
}
|
|
2485
2491
|
interface Meeting extends BaseMeeting {
|
|
2486
2492
|
updated_at: string;
|
|
@@ -4977,6 +4983,7 @@ interface OrganizationMembershipUpdateInputs {
|
|
|
4977
4983
|
announcements: Omit<ModulePermissions, "superEnabled" | "enabled">;
|
|
4978
4984
|
surveys: Omit<ModulePermissions, "superEnabled" | "enabled">;
|
|
4979
4985
|
streams: Omit<ModulePermissions, "superEnabled" | "enabled">;
|
|
4986
|
+
meetings: Omit<ModulePermissions, "superEnabled" | "enabled">;
|
|
4980
4987
|
payments: Omit<ModulePermissions, "superEnabled" | "enabled">;
|
|
4981
4988
|
}
|
|
4982
4989
|
interface GroupTranslationUpdateInputs {
|
|
@@ -5128,6 +5135,12 @@ interface OrganizationUpdateInputs {
|
|
|
5128
5135
|
locales?: string[] | null;
|
|
5129
5136
|
inviteOnly?: boolean;
|
|
5130
5137
|
googleTagManagerId?: string | null;
|
|
5138
|
+
meetingGroupCallAdminPreset?: string;
|
|
5139
|
+
meetingGroupCallGuestPreset?: string;
|
|
5140
|
+
meetingWebinarAdminPreset?: string;
|
|
5141
|
+
meetingWebinarGuestPreset?: string;
|
|
5142
|
+
meetingLivestreamAdminPreset?: string;
|
|
5143
|
+
meetingLivestreamGuestPreset?: string;
|
|
5131
5144
|
options?: object | null;
|
|
5132
5145
|
}
|
|
5133
5146
|
interface PaymentIntentPurchaseMetadataInputs {
|
|
@@ -6131,8 +6144,6 @@ interface MeetingCreateInputs {
|
|
|
6131
6144
|
eventId?: string;
|
|
6132
6145
|
sessionId?: string;
|
|
6133
6146
|
groupId?: string;
|
|
6134
|
-
host_preset: string;
|
|
6135
|
-
guest_preset: string;
|
|
6136
6147
|
title: string | null;
|
|
6137
6148
|
preferred_region: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
|
|
6138
6149
|
record_on_start: boolean;
|
|
@@ -6151,8 +6162,6 @@ interface MeetingUpdateInputs {
|
|
|
6151
6162
|
eventId?: string;
|
|
6152
6163
|
sessionId?: string;
|
|
6153
6164
|
groupId?: string;
|
|
6154
|
-
host_preset?: string;
|
|
6155
|
-
guest_preset?: string;
|
|
6156
6165
|
title?: string | null;
|
|
6157
6166
|
preferred_region?: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
|
|
6158
6167
|
record_on_start?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -39,7 +39,8 @@ declare enum OrganizationModuleType {
|
|
|
39
39
|
interests = "interests",
|
|
40
40
|
advertisements = "advertisements",
|
|
41
41
|
invoices = "invoices",
|
|
42
|
-
streams = "streams"
|
|
42
|
+
streams = "streams",
|
|
43
|
+
meetings = "meetings"
|
|
43
44
|
}
|
|
44
45
|
declare enum LocationQuestionOption {
|
|
45
46
|
country = "country",
|
|
@@ -1482,6 +1483,7 @@ interface OrganizationMembership {
|
|
|
1482
1483
|
surveys: ModulePermissions;
|
|
1483
1484
|
searchlists: ModulePermissions;
|
|
1484
1485
|
streams: ModulePermissions;
|
|
1486
|
+
meetings: ModulePermissions;
|
|
1485
1487
|
payments: ModulePermissions;
|
|
1486
1488
|
}
|
|
1487
1489
|
interface BaseOrganization {
|
|
@@ -1558,6 +1560,12 @@ interface Organization extends BaseOrganization {
|
|
|
1558
1560
|
locales: string[];
|
|
1559
1561
|
inviteOnly: boolean;
|
|
1560
1562
|
googleTagManagerId: string | null;
|
|
1563
|
+
meetingGroupCallAdminPreset: string;
|
|
1564
|
+
meetingGroupCallGuestPreset: string;
|
|
1565
|
+
meetingWebinarAdminPreset: string;
|
|
1566
|
+
meetingWebinarGuestPreset: string;
|
|
1567
|
+
meetingLivestreamAdminPreset: string;
|
|
1568
|
+
meetingLivestreamGuestPreset: string;
|
|
1561
1569
|
options: object | null;
|
|
1562
1570
|
}
|
|
1563
1571
|
interface OrganizationTrigger {
|
|
@@ -2479,8 +2487,6 @@ interface BaseMeeting {
|
|
|
2479
2487
|
id: string;
|
|
2480
2488
|
title: string;
|
|
2481
2489
|
type: MeetingType;
|
|
2482
|
-
host_preset: string;
|
|
2483
|
-
guest_preset: string;
|
|
2484
2490
|
}
|
|
2485
2491
|
interface Meeting extends BaseMeeting {
|
|
2486
2492
|
updated_at: string;
|
|
@@ -4977,6 +4983,7 @@ interface OrganizationMembershipUpdateInputs {
|
|
|
4977
4983
|
announcements: Omit<ModulePermissions, "superEnabled" | "enabled">;
|
|
4978
4984
|
surveys: Omit<ModulePermissions, "superEnabled" | "enabled">;
|
|
4979
4985
|
streams: Omit<ModulePermissions, "superEnabled" | "enabled">;
|
|
4986
|
+
meetings: Omit<ModulePermissions, "superEnabled" | "enabled">;
|
|
4980
4987
|
payments: Omit<ModulePermissions, "superEnabled" | "enabled">;
|
|
4981
4988
|
}
|
|
4982
4989
|
interface GroupTranslationUpdateInputs {
|
|
@@ -5128,6 +5135,12 @@ interface OrganizationUpdateInputs {
|
|
|
5128
5135
|
locales?: string[] | null;
|
|
5129
5136
|
inviteOnly?: boolean;
|
|
5130
5137
|
googleTagManagerId?: string | null;
|
|
5138
|
+
meetingGroupCallAdminPreset?: string;
|
|
5139
|
+
meetingGroupCallGuestPreset?: string;
|
|
5140
|
+
meetingWebinarAdminPreset?: string;
|
|
5141
|
+
meetingWebinarGuestPreset?: string;
|
|
5142
|
+
meetingLivestreamAdminPreset?: string;
|
|
5143
|
+
meetingLivestreamGuestPreset?: string;
|
|
5131
5144
|
options?: object | null;
|
|
5132
5145
|
}
|
|
5133
5146
|
interface PaymentIntentPurchaseMetadataInputs {
|
|
@@ -6131,8 +6144,6 @@ interface MeetingCreateInputs {
|
|
|
6131
6144
|
eventId?: string;
|
|
6132
6145
|
sessionId?: string;
|
|
6133
6146
|
groupId?: string;
|
|
6134
|
-
host_preset: string;
|
|
6135
|
-
guest_preset: string;
|
|
6136
6147
|
title: string | null;
|
|
6137
6148
|
preferred_region: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
|
|
6138
6149
|
record_on_start: boolean;
|
|
@@ -6151,8 +6162,6 @@ interface MeetingUpdateInputs {
|
|
|
6151
6162
|
eventId?: string;
|
|
6152
6163
|
sessionId?: string;
|
|
6153
6164
|
groupId?: string;
|
|
6154
|
-
host_preset?: string;
|
|
6155
|
-
guest_preset?: string;
|
|
6156
6165
|
title?: string | null;
|
|
6157
6166
|
preferred_region?: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
|
|
6158
6167
|
record_on_start?: boolean;
|
package/dist/index.js
CHANGED
|
@@ -100,6 +100,7 @@ var OrganizationModuleType = /* @__PURE__ */ ((OrganizationModuleType2) => {
|
|
|
100
100
|
OrganizationModuleType2["advertisements"] = "advertisements";
|
|
101
101
|
OrganizationModuleType2["invoices"] = "invoices";
|
|
102
102
|
OrganizationModuleType2["streams"] = "streams";
|
|
103
|
+
OrganizationModuleType2["meetings"] = "meetings";
|
|
103
104
|
return OrganizationModuleType2;
|
|
104
105
|
})(OrganizationModuleType || {});
|
|
105
106
|
var LocationQuestionOption = /* @__PURE__ */ ((LocationQuestionOption2) => {
|