@aldb2b/common 1.0.277 → 1.0.278

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.
@@ -6581,6 +6581,11 @@
6581
6581
  "signature": "2388b17bfe1f2e511b4960ec098cf5db020cec29e4f50f8676f8aa64da10c581",
6582
6582
  "affectsGlobalScope": false
6583
6583
  },
6584
+ "../src/types/payment-method.enum.ts": {
6585
+ "version": "e1d07f0f645fc8f74ff2b9d2be21656e7297fdb0dea9a1829f14c0a62ca2c3ed",
6586
+ "signature": "10ffef3136117e236ce691a4a63e4ca5c04ed42daee30ad2a588c62ee2334892",
6587
+ "affectsGlobalScope": false
6588
+ },
6584
6589
  "../node_modules/@types/minimatch/index.d.ts": {
6585
6590
  "version": "95c22bc19835e28e2e524a4bb8898eb5f2107b640d7279a6d3aade261916bbf2",
6586
6591
  "signature": "95c22bc19835e28e2e524a4bb8898eb5f2107b640d7279a6d3aade261916bbf2",
@@ -18424,6 +18429,7 @@
18424
18429
  "../src/types/notification-type.enum.ts",
18425
18430
  "../src/types/onboarded-thru.enum.ts",
18426
18431
  "../src/types/operation-types.ts",
18432
+ "../src/types/payment-method.enum.ts",
18427
18433
  "../src/types/read-result.interface.ts",
18428
18434
  "../src/types/record-type.enum.ts",
18429
18435
  "../src/types/subscription-model.enum.ts",
@@ -0,0 +1,5 @@
1
+ export declare enum PaymentMethod {
2
+ MANUAL = "Manual",
3
+ STRIPE_DIRECT = "StripeDirect",
4
+ STRIPE_FUTURE = "StripeFuture"
5
+ }
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PaymentMethod = void 0;
4
+ var PaymentMethod;
5
+ (function (PaymentMethod) {
6
+ PaymentMethod["MANUAL"] = "Manual";
7
+ PaymentMethod["STRIPE_DIRECT"] = "StripeDirect";
8
+ PaymentMethod["STRIPE_FUTURE"] = "StripeFuture";
9
+ })(PaymentMethod = exports.PaymentMethod || (exports.PaymentMethod = {}));
10
+ //# sourceMappingURL=payment-method.enum.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"payment-method.enum.js","sourceRoot":"","sources":["../../src/types/payment-method.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,aAIX;AAJD,WAAY,aAAa;IACvB,kCAAiB,CAAA;IACjB,+CAA8B,CAAA;IAC9B,+CAA8B,CAAA;AAChC,CAAC,EAJW,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAIxB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aldb2b/common",
3
- "version": "1.0.277",
3
+ "version": "1.0.278",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",