arky-sdk 0.3.75 → 0.3.76

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 CHANGED
@@ -1,5 +1,13 @@
1
1
  'use strict';
2
2
 
3
+ // src/types/index.ts
4
+ var PaymentMethodType = /* @__PURE__ */ ((PaymentMethodType2) => {
5
+ PaymentMethodType2["Cash"] = "CASH";
6
+ PaymentMethodType2["CreditCard"] = "CREDIT_CARD";
7
+ PaymentMethodType2["Free"] = "FREE";
8
+ return PaymentMethodType2;
9
+ })(PaymentMethodType || {});
10
+
3
11
  // src/utils/errors.ts
4
12
  var convertServerErrorToRequestError = (serverError, renameRules) => {
5
13
  return {
@@ -1778,6 +1786,7 @@ async function createArkySDK(config) {
1778
1786
  return sdk;
1779
1787
  }
1780
1788
 
1789
+ exports.PaymentMethodType = PaymentMethodType;
1781
1790
  exports.SDK_VERSION = SDK_VERSION;
1782
1791
  exports.SUPPORTED_FRAMEWORKS = SUPPORTED_FRAMEWORKS;
1783
1792
  exports.createArkySDK = createArkySDK;