@connectedxm/client 7.2.4 → 7.2.6
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.ts +3 -1
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -224,6 +224,7 @@ interface BaseSelf {
|
|
|
224
224
|
needsProfileCompletion: boolean;
|
|
225
225
|
internalRefId: string | null;
|
|
226
226
|
locale: string;
|
|
227
|
+
tierIds: string[];
|
|
227
228
|
}
|
|
228
229
|
interface Self extends Omit<Account, "_count"> {
|
|
229
230
|
email: string | null;
|
|
@@ -1955,7 +1956,8 @@ declare enum OrganizationModuleType {
|
|
|
1955
1956
|
invoices = "invoices",
|
|
1956
1957
|
announcements = "announcements",
|
|
1957
1958
|
bookings = "bookings",
|
|
1958
|
-
surveys = "surveys"
|
|
1959
|
+
surveys = "surveys",
|
|
1960
|
+
meetings = "meetings"
|
|
1959
1961
|
}
|
|
1960
1962
|
declare enum PaymentIntegrationType {
|
|
1961
1963
|
free = "free",
|
package/dist/index.js
CHANGED
|
@@ -8354,6 +8354,7 @@ var OrganizationModuleType = /* @__PURE__ */ ((OrganizationModuleType2) => {
|
|
|
8354
8354
|
OrganizationModuleType2["announcements"] = "announcements";
|
|
8355
8355
|
OrganizationModuleType2["bookings"] = "bookings";
|
|
8356
8356
|
OrganizationModuleType2["surveys"] = "surveys";
|
|
8357
|
+
OrganizationModuleType2["meetings"] = "meetings";
|
|
8357
8358
|
return OrganizationModuleType2;
|
|
8358
8359
|
})(OrganizationModuleType || {});
|
|
8359
8360
|
var PaymentIntegrationType = /* @__PURE__ */ ((PaymentIntegrationType2) => {
|