@connectedxm/admin 3.3.11 → 3.3.12
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 +3 -0
- package/dist/index.d.cts +6 -3
- package/dist/index.d.ts +6 -3
- package/dist/index.js +3 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -16055,6 +16055,7 @@ var RegistrationQuestionType = /* @__PURE__ */ ((RegistrationQuestionType2) => {
|
|
|
16055
16055
|
RegistrationQuestionType2["checkbox"] = "checkbox";
|
|
16056
16056
|
RegistrationQuestionType2["search"] = "search";
|
|
16057
16057
|
RegistrationQuestionType2["file"] = "file";
|
|
16058
|
+
RegistrationQuestionType2["location"] = "location";
|
|
16058
16059
|
return RegistrationQuestionType2;
|
|
16059
16060
|
})(RegistrationQuestionType || {});
|
|
16060
16061
|
var OrganizationTriggerType = /* @__PURE__ */ ((OrganizationTriggerType2) => {
|
|
@@ -16318,6 +16319,7 @@ var EventSessionQuestionType = /* @__PURE__ */ ((EventSessionQuestionType2) => {
|
|
|
16318
16319
|
EventSessionQuestionType2["search"] = "search";
|
|
16319
16320
|
EventSessionQuestionType2["file"] = "file";
|
|
16320
16321
|
EventSessionQuestionType2["quantity"] = "quantity";
|
|
16322
|
+
EventSessionQuestionType2["location"] = "location";
|
|
16321
16323
|
return EventSessionQuestionType2;
|
|
16322
16324
|
})(EventSessionQuestionType || {});
|
|
16323
16325
|
var MembershipPriceType = /* @__PURE__ */ ((MembershipPriceType2) => {
|
|
@@ -16421,6 +16423,7 @@ var SurveyQuestionType = /* @__PURE__ */ ((SurveyQuestionType2) => {
|
|
|
16421
16423
|
SurveyQuestionType2["checkbox"] = "checkbox";
|
|
16422
16424
|
SurveyQuestionType2["search"] = "search";
|
|
16423
16425
|
SurveyQuestionType2["file"] = "file";
|
|
16426
|
+
SurveyQuestionType2["location"] = "location";
|
|
16424
16427
|
return SurveyQuestionType2;
|
|
16425
16428
|
})(SurveyQuestionType || {});
|
|
16426
16429
|
var CustomModulePosition = /* @__PURE__ */ ((CustomModulePosition2) => {
|
package/dist/index.d.cts
CHANGED
|
@@ -181,7 +181,8 @@ declare enum RegistrationQuestionType {
|
|
|
181
181
|
radio = "radio",
|
|
182
182
|
checkbox = "checkbox",
|
|
183
183
|
search = "search",
|
|
184
|
-
file = "file"
|
|
184
|
+
file = "file",
|
|
185
|
+
location = "location"
|
|
185
186
|
}
|
|
186
187
|
declare enum OrganizationTriggerType {
|
|
187
188
|
postAuth = "postAuth"
|
|
@@ -2164,7 +2165,8 @@ declare enum EventSessionQuestionType {
|
|
|
2164
2165
|
checkbox = "checkbox",
|
|
2165
2166
|
search = "search",
|
|
2166
2167
|
file = "file",
|
|
2167
|
-
quantity = "quantity"
|
|
2168
|
+
quantity = "quantity",
|
|
2169
|
+
location = "location"
|
|
2168
2170
|
}
|
|
2169
2171
|
interface BaseEventSessionQuestionChoice {
|
|
2170
2172
|
id: string;
|
|
@@ -3394,7 +3396,8 @@ declare enum SurveyQuestionType {
|
|
|
3394
3396
|
radio = "radio",
|
|
3395
3397
|
checkbox = "checkbox",
|
|
3396
3398
|
search = "search",
|
|
3397
|
-
file = "file"
|
|
3399
|
+
file = "file",
|
|
3400
|
+
location = "location"
|
|
3398
3401
|
}
|
|
3399
3402
|
interface BaseSurveyQuestionChoice {
|
|
3400
3403
|
id: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -181,7 +181,8 @@ declare enum RegistrationQuestionType {
|
|
|
181
181
|
radio = "radio",
|
|
182
182
|
checkbox = "checkbox",
|
|
183
183
|
search = "search",
|
|
184
|
-
file = "file"
|
|
184
|
+
file = "file",
|
|
185
|
+
location = "location"
|
|
185
186
|
}
|
|
186
187
|
declare enum OrganizationTriggerType {
|
|
187
188
|
postAuth = "postAuth"
|
|
@@ -2164,7 +2165,8 @@ declare enum EventSessionQuestionType {
|
|
|
2164
2165
|
checkbox = "checkbox",
|
|
2165
2166
|
search = "search",
|
|
2166
2167
|
file = "file",
|
|
2167
|
-
quantity = "quantity"
|
|
2168
|
+
quantity = "quantity",
|
|
2169
|
+
location = "location"
|
|
2168
2170
|
}
|
|
2169
2171
|
interface BaseEventSessionQuestionChoice {
|
|
2170
2172
|
id: string;
|
|
@@ -3394,7 +3396,8 @@ declare enum SurveyQuestionType {
|
|
|
3394
3396
|
radio = "radio",
|
|
3395
3397
|
checkbox = "checkbox",
|
|
3396
3398
|
search = "search",
|
|
3397
|
-
file = "file"
|
|
3399
|
+
file = "file",
|
|
3400
|
+
location = "location"
|
|
3398
3401
|
}
|
|
3399
3402
|
interface BaseSurveyQuestionChoice {
|
|
3400
3403
|
id: string;
|
package/dist/index.js
CHANGED
|
@@ -12931,6 +12931,7 @@ var RegistrationQuestionType = /* @__PURE__ */ ((RegistrationQuestionType2) => {
|
|
|
12931
12931
|
RegistrationQuestionType2["checkbox"] = "checkbox";
|
|
12932
12932
|
RegistrationQuestionType2["search"] = "search";
|
|
12933
12933
|
RegistrationQuestionType2["file"] = "file";
|
|
12934
|
+
RegistrationQuestionType2["location"] = "location";
|
|
12934
12935
|
return RegistrationQuestionType2;
|
|
12935
12936
|
})(RegistrationQuestionType || {});
|
|
12936
12937
|
var OrganizationTriggerType = /* @__PURE__ */ ((OrganizationTriggerType2) => {
|
|
@@ -13194,6 +13195,7 @@ var EventSessionQuestionType = /* @__PURE__ */ ((EventSessionQuestionType2) => {
|
|
|
13194
13195
|
EventSessionQuestionType2["search"] = "search";
|
|
13195
13196
|
EventSessionQuestionType2["file"] = "file";
|
|
13196
13197
|
EventSessionQuestionType2["quantity"] = "quantity";
|
|
13198
|
+
EventSessionQuestionType2["location"] = "location";
|
|
13197
13199
|
return EventSessionQuestionType2;
|
|
13198
13200
|
})(EventSessionQuestionType || {});
|
|
13199
13201
|
var MembershipPriceType = /* @__PURE__ */ ((MembershipPriceType2) => {
|
|
@@ -13297,6 +13299,7 @@ var SurveyQuestionType = /* @__PURE__ */ ((SurveyQuestionType2) => {
|
|
|
13297
13299
|
SurveyQuestionType2["checkbox"] = "checkbox";
|
|
13298
13300
|
SurveyQuestionType2["search"] = "search";
|
|
13299
13301
|
SurveyQuestionType2["file"] = "file";
|
|
13302
|
+
SurveyQuestionType2["location"] = "location";
|
|
13300
13303
|
return SurveyQuestionType2;
|
|
13301
13304
|
})(SurveyQuestionType || {});
|
|
13302
13305
|
var CustomModulePosition = /* @__PURE__ */ ((CustomModulePosition2) => {
|