@connectedxm/client 1.5.4 → 1.5.5

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 CHANGED
@@ -1746,7 +1746,8 @@ declare enum OrganizationModuleType {
1746
1746
  declare enum PaymentIntegrationType {
1747
1747
  stripe = "stripe",
1748
1748
  paypal = "paypal",
1749
- braintree = "braintree"
1749
+ braintree = "braintree",
1750
+ manual = "manual"
1750
1751
  }
1751
1752
  interface OrganizationConfig {
1752
1753
  ENVIRONMENT: "prod" | "staging";
@@ -2059,6 +2060,7 @@ interface EventSponsorship extends BaseEventSponsorship {
2059
2060
  }
2060
2061
  interface BaseSurvey {
2061
2062
  id: string;
2063
+ slug: string;
2062
2064
  name: string;
2063
2065
  }
2064
2066
  interface Survey extends BaseSurvey {
package/dist/index.d.ts CHANGED
@@ -1746,7 +1746,8 @@ declare enum OrganizationModuleType {
1746
1746
  declare enum PaymentIntegrationType {
1747
1747
  stripe = "stripe",
1748
1748
  paypal = "paypal",
1749
- braintree = "braintree"
1749
+ braintree = "braintree",
1750
+ manual = "manual"
1750
1751
  }
1751
1752
  interface OrganizationConfig {
1752
1753
  ENVIRONMENT: "prod" | "staging";
@@ -2059,6 +2060,7 @@ interface EventSponsorship extends BaseEventSponsorship {
2059
2060
  }
2060
2061
  interface BaseSurvey {
2061
2062
  id: string;
2063
+ slug: string;
2062
2064
  name: string;
2063
2065
  }
2064
2066
  interface Survey extends BaseSurvey {
package/dist/index.js CHANGED
@@ -1555,6 +1555,7 @@ var PaymentIntegrationType = /* @__PURE__ */ ((PaymentIntegrationType2) => {
1555
1555
  PaymentIntegrationType2["stripe"] = "stripe";
1556
1556
  PaymentIntegrationType2["paypal"] = "paypal";
1557
1557
  PaymentIntegrationType2["braintree"] = "braintree";
1558
+ PaymentIntegrationType2["manual"] = "manual";
1558
1559
  return PaymentIntegrationType2;
1559
1560
  })(PaymentIntegrationType || {});
1560
1561
  var DayOfWeek = /* @__PURE__ */ ((DayOfWeek2) => {
package/dist/index.mjs CHANGED
@@ -451,6 +451,7 @@ var PaymentIntegrationType = /* @__PURE__ */ ((PaymentIntegrationType2) => {
451
451
  PaymentIntegrationType2["stripe"] = "stripe";
452
452
  PaymentIntegrationType2["paypal"] = "paypal";
453
453
  PaymentIntegrationType2["braintree"] = "braintree";
454
+ PaymentIntegrationType2["manual"] = "manual";
454
455
  return PaymentIntegrationType2;
455
456
  })(PaymentIntegrationType || {});
456
457
  var DayOfWeek = /* @__PURE__ */ ((DayOfWeek2) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/client",
3
- "version": "1.5.4",
3
+ "version": "1.5.5",
4
4
  "description": "Client API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "repository": {