@connectedxm/admin 1.4.1 → 1.4.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.d.mts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -758,7 +758,8 @@ declare enum BadgeFieldType {
|
|
|
758
758
|
attribute = "attribute",
|
|
759
759
|
question = "question",
|
|
760
760
|
tier = "tier",
|
|
761
|
-
ticket = "ticket"
|
|
761
|
+
ticket = "ticket",
|
|
762
|
+
pass = "pass"
|
|
762
763
|
}
|
|
763
764
|
declare enum BadgeFieldTransformation {
|
|
764
765
|
uppercase = "uppercase",
|
|
@@ -1356,6 +1357,7 @@ interface Organization extends BaseOrganization {
|
|
|
1356
1357
|
maxImageCount: number | null;
|
|
1357
1358
|
maxVideoMins: number | null;
|
|
1358
1359
|
locales: string[];
|
|
1360
|
+
googleServices: string | null;
|
|
1359
1361
|
}
|
|
1360
1362
|
interface OrganizationTrigger {
|
|
1361
1363
|
id: number;
|
|
@@ -3524,6 +3526,7 @@ interface OrganizationUpdateInputs {
|
|
|
3524
3526
|
appAdaptiveIconId?: string | null;
|
|
3525
3527
|
appSplashScreenId?: string | null;
|
|
3526
3528
|
locales?: string[] | null;
|
|
3529
|
+
googleServices?: string | null;
|
|
3527
3530
|
}
|
|
3528
3531
|
interface PaymentIntentPurchaseMetadataInputs {
|
|
3529
3532
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -758,7 +758,8 @@ declare enum BadgeFieldType {
|
|
|
758
758
|
attribute = "attribute",
|
|
759
759
|
question = "question",
|
|
760
760
|
tier = "tier",
|
|
761
|
-
ticket = "ticket"
|
|
761
|
+
ticket = "ticket",
|
|
762
|
+
pass = "pass"
|
|
762
763
|
}
|
|
763
764
|
declare enum BadgeFieldTransformation {
|
|
764
765
|
uppercase = "uppercase",
|
|
@@ -1356,6 +1357,7 @@ interface Organization extends BaseOrganization {
|
|
|
1356
1357
|
maxImageCount: number | null;
|
|
1357
1358
|
maxVideoMins: number | null;
|
|
1358
1359
|
locales: string[];
|
|
1360
|
+
googleServices: string | null;
|
|
1359
1361
|
}
|
|
1360
1362
|
interface OrganizationTrigger {
|
|
1361
1363
|
id: number;
|
|
@@ -3524,6 +3526,7 @@ interface OrganizationUpdateInputs {
|
|
|
3524
3526
|
appAdaptiveIconId?: string | null;
|
|
3525
3527
|
appSplashScreenId?: string | null;
|
|
3526
3528
|
locales?: string[] | null;
|
|
3529
|
+
googleServices?: string | null;
|
|
3527
3530
|
}
|
|
3528
3531
|
interface PaymentIntentPurchaseMetadataInputs {
|
|
3529
3532
|
}
|
package/dist/index.js
CHANGED
|
@@ -11224,6 +11224,7 @@ var BadgeFieldType = /* @__PURE__ */ ((BadgeFieldType2) => {
|
|
|
11224
11224
|
BadgeFieldType2["question"] = "question";
|
|
11225
11225
|
BadgeFieldType2["tier"] = "tier";
|
|
11226
11226
|
BadgeFieldType2["ticket"] = "ticket";
|
|
11227
|
+
BadgeFieldType2["pass"] = "pass";
|
|
11227
11228
|
return BadgeFieldType2;
|
|
11228
11229
|
})(BadgeFieldType || {});
|
|
11229
11230
|
var BadgeFieldTransformation = /* @__PURE__ */ ((BadgeFieldTransformation2) => {
|
package/dist/index.mjs
CHANGED
|
@@ -9097,6 +9097,7 @@ var BadgeFieldType = /* @__PURE__ */ ((BadgeFieldType2) => {
|
|
|
9097
9097
|
BadgeFieldType2["question"] = "question";
|
|
9098
9098
|
BadgeFieldType2["tier"] = "tier";
|
|
9099
9099
|
BadgeFieldType2["ticket"] = "ticket";
|
|
9100
|
+
BadgeFieldType2["pass"] = "pass";
|
|
9100
9101
|
return BadgeFieldType2;
|
|
9101
9102
|
})(BadgeFieldType || {});
|
|
9102
9103
|
var BadgeFieldTransformation = /* @__PURE__ */ ((BadgeFieldTransformation2) => {
|