@connectedxm/admin 6.0.1 → 6.0.3
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 +17 -2
- package/dist/index.d.ts +17 -2
- 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 {
|
|
@@ -1719,7 +1727,7 @@ interface Payment extends BasePayment {
|
|
|
1719
1727
|
deferredInvoices: BaseInvoice[];
|
|
1720
1728
|
integration: {
|
|
1721
1729
|
type: PaymentIntegrationType;
|
|
1722
|
-
};
|
|
1730
|
+
} | null;
|
|
1723
1731
|
event: BaseEvent | null;
|
|
1724
1732
|
registration: BaseEventAttendee | null;
|
|
1725
1733
|
passType: BaseEventPassType | null;
|
|
@@ -4977,6 +4985,7 @@ interface OrganizationMembershipUpdateInputs {
|
|
|
4977
4985
|
announcements: Omit<ModulePermissions, "superEnabled" | "enabled">;
|
|
4978
4986
|
surveys: Omit<ModulePermissions, "superEnabled" | "enabled">;
|
|
4979
4987
|
streams: Omit<ModulePermissions, "superEnabled" | "enabled">;
|
|
4988
|
+
meetings: Omit<ModulePermissions, "superEnabled" | "enabled">;
|
|
4980
4989
|
payments: Omit<ModulePermissions, "superEnabled" | "enabled">;
|
|
4981
4990
|
}
|
|
4982
4991
|
interface GroupTranslationUpdateInputs {
|
|
@@ -5128,6 +5137,12 @@ interface OrganizationUpdateInputs {
|
|
|
5128
5137
|
locales?: string[] | null;
|
|
5129
5138
|
inviteOnly?: boolean;
|
|
5130
5139
|
googleTagManagerId?: string | null;
|
|
5140
|
+
meetingGroupCallAdminPreset?: string;
|
|
5141
|
+
meetingGroupCallGuestPreset?: string;
|
|
5142
|
+
meetingWebinarAdminPreset?: string;
|
|
5143
|
+
meetingWebinarGuestPreset?: string;
|
|
5144
|
+
meetingLivestreamAdminPreset?: string;
|
|
5145
|
+
meetingLivestreamGuestPreset?: string;
|
|
5131
5146
|
options?: object | null;
|
|
5132
5147
|
}
|
|
5133
5148
|
interface PaymentIntentPurchaseMetadataInputs {
|
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 {
|
|
@@ -1719,7 +1727,7 @@ interface Payment extends BasePayment {
|
|
|
1719
1727
|
deferredInvoices: BaseInvoice[];
|
|
1720
1728
|
integration: {
|
|
1721
1729
|
type: PaymentIntegrationType;
|
|
1722
|
-
};
|
|
1730
|
+
} | null;
|
|
1723
1731
|
event: BaseEvent | null;
|
|
1724
1732
|
registration: BaseEventAttendee | null;
|
|
1725
1733
|
passType: BaseEventPassType | null;
|
|
@@ -4977,6 +4985,7 @@ interface OrganizationMembershipUpdateInputs {
|
|
|
4977
4985
|
announcements: Omit<ModulePermissions, "superEnabled" | "enabled">;
|
|
4978
4986
|
surveys: Omit<ModulePermissions, "superEnabled" | "enabled">;
|
|
4979
4987
|
streams: Omit<ModulePermissions, "superEnabled" | "enabled">;
|
|
4988
|
+
meetings: Omit<ModulePermissions, "superEnabled" | "enabled">;
|
|
4980
4989
|
payments: Omit<ModulePermissions, "superEnabled" | "enabled">;
|
|
4981
4990
|
}
|
|
4982
4991
|
interface GroupTranslationUpdateInputs {
|
|
@@ -5128,6 +5137,12 @@ interface OrganizationUpdateInputs {
|
|
|
5128
5137
|
locales?: string[] | null;
|
|
5129
5138
|
inviteOnly?: boolean;
|
|
5130
5139
|
googleTagManagerId?: string | null;
|
|
5140
|
+
meetingGroupCallAdminPreset?: string;
|
|
5141
|
+
meetingGroupCallGuestPreset?: string;
|
|
5142
|
+
meetingWebinarAdminPreset?: string;
|
|
5143
|
+
meetingWebinarGuestPreset?: string;
|
|
5144
|
+
meetingLivestreamAdminPreset?: string;
|
|
5145
|
+
meetingLivestreamGuestPreset?: string;
|
|
5131
5146
|
options?: object | null;
|
|
5132
5147
|
}
|
|
5133
5148
|
interface PaymentIntentPurchaseMetadataInputs {
|
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) => {
|