@connectedxm/client 6.2.4 → 6.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 +9 -6
- package/dist/index.js +3 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -375,7 +375,7 @@ interface Event extends BaseEvent {
|
|
|
375
375
|
reservationDescription: string | null;
|
|
376
376
|
backgroundImage: BaseImage | null;
|
|
377
377
|
media: EventMediaItem[];
|
|
378
|
-
options:
|
|
378
|
+
options: Record<string, any> | null;
|
|
379
379
|
_count: {
|
|
380
380
|
activations: number;
|
|
381
381
|
sessions: number;
|
|
@@ -420,7 +420,8 @@ declare enum RegistrationQuestionType {
|
|
|
420
420
|
radio = "radio",
|
|
421
421
|
checkbox = "checkbox",
|
|
422
422
|
search = "search",
|
|
423
|
-
file = "file"
|
|
423
|
+
file = "file",
|
|
424
|
+
location = "location"
|
|
424
425
|
}
|
|
425
426
|
interface BaseRegistrationQuestion {
|
|
426
427
|
id: string;
|
|
@@ -902,7 +903,8 @@ declare enum EventSessionQuestionType {
|
|
|
902
903
|
checkbox = "checkbox",
|
|
903
904
|
search = "search",
|
|
904
905
|
file = "file",
|
|
905
|
-
quantity = "quantity"
|
|
906
|
+
quantity = "quantity",
|
|
907
|
+
location = "location"
|
|
906
908
|
}
|
|
907
909
|
interface BaseEventSessionQuestion {
|
|
908
910
|
id: string;
|
|
@@ -1982,7 +1984,7 @@ interface OrganizationConfig {
|
|
|
1982
1984
|
CURRENCY: string;
|
|
1983
1985
|
};
|
|
1984
1986
|
INTEGRATIONS: Integration[];
|
|
1985
|
-
OPTIONS:
|
|
1987
|
+
OPTIONS: Record<string, any> | null;
|
|
1986
1988
|
}
|
|
1987
1989
|
interface OrganizationModule {
|
|
1988
1990
|
requireAuth: boolean;
|
|
@@ -1990,7 +1992,7 @@ interface OrganizationModule {
|
|
|
1990
1992
|
enabledTiers: string[];
|
|
1991
1993
|
editable: boolean;
|
|
1992
1994
|
editableTiers: string[];
|
|
1993
|
-
options: Record<string,
|
|
1995
|
+
options: Record<string, any>;
|
|
1994
1996
|
}
|
|
1995
1997
|
interface OrganizationOAuth {
|
|
1996
1998
|
name: string;
|
|
@@ -2260,7 +2262,8 @@ declare enum SurveyQuestionType {
|
|
|
2260
2262
|
radio = "radio",
|
|
2261
2263
|
checkbox = "checkbox",
|
|
2262
2264
|
search = "search",
|
|
2263
|
-
file = "file"
|
|
2265
|
+
file = "file",
|
|
2266
|
+
location = "location"
|
|
2264
2267
|
}
|
|
2265
2268
|
interface BaseSurveyQuestion {
|
|
2266
2269
|
id: string;
|
package/dist/index.js
CHANGED
|
@@ -7574,6 +7574,7 @@ var RegistrationQuestionType = /* @__PURE__ */ ((RegistrationQuestionType2) => {
|
|
|
7574
7574
|
RegistrationQuestionType2["checkbox"] = "checkbox";
|
|
7575
7575
|
RegistrationQuestionType2["search"] = "search";
|
|
7576
7576
|
RegistrationQuestionType2["file"] = "file";
|
|
7577
|
+
RegistrationQuestionType2["location"] = "location";
|
|
7577
7578
|
return RegistrationQuestionType2;
|
|
7578
7579
|
})(RegistrationQuestionType || {});
|
|
7579
7580
|
var isRegistrationQuestion = (question) => {
|
|
@@ -7660,6 +7661,7 @@ var EventSessionQuestionType = /* @__PURE__ */ ((EventSessionQuestionType2) => {
|
|
|
7660
7661
|
EventSessionQuestionType2["search"] = "search";
|
|
7661
7662
|
EventSessionQuestionType2["file"] = "file";
|
|
7662
7663
|
EventSessionQuestionType2["quantity"] = "quantity";
|
|
7664
|
+
EventSessionQuestionType2["location"] = "location";
|
|
7663
7665
|
return EventSessionQuestionType2;
|
|
7664
7666
|
})(EventSessionQuestionType || {});
|
|
7665
7667
|
var isTypeEventPage = (page) => {
|
|
@@ -7889,6 +7891,7 @@ var SurveyQuestionType = /* @__PURE__ */ ((SurveyQuestionType2) => {
|
|
|
7889
7891
|
SurveyQuestionType2["checkbox"] = "checkbox";
|
|
7890
7892
|
SurveyQuestionType2["search"] = "search";
|
|
7891
7893
|
SurveyQuestionType2["file"] = "file";
|
|
7894
|
+
SurveyQuestionType2["location"] = "location";
|
|
7892
7895
|
return SurveyQuestionType2;
|
|
7893
7896
|
})(SurveyQuestionType || {});
|
|
7894
7897
|
|