@shware/purchase 1.5.0 → 1.5.1

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
@@ -23,17 +23,26 @@ __export(index_exports, {
23
23
  ALL_PLATFORMS: () => import_subscription.ALL_PLATFORMS,
24
24
  ALL_SUBSCRIPTION_STATUS: () => import_subscription.ALL_SUBSCRIPTION_STATUS,
25
25
  AVAILABLE_STATUS: () => import_subscription.AVAILABLE_STATUS,
26
+ AppStoreConfig: () => import_config.AppStoreConfig,
27
+ GooglePlayConfig: () => import_config2.GooglePlayConfig,
26
28
  Platform: () => import_subscription.Platform,
29
+ StripeConfig: () => import_config3.StripeConfig,
27
30
  SubscriptionStatus: () => import_subscription.SubscriptionStatus
28
31
  });
29
32
  module.exports = __toCommonJS(index_exports);
30
33
  var import_subscription = require("./subscription/index.cjs");
34
+ var import_config = require("./app-store/config.cjs");
35
+ var import_config2 = require("./google-play/config.cjs");
36
+ var import_config3 = require("./stripe/config.cjs");
31
37
  // Annotate the CommonJS export names for ESM import in node:
32
38
  0 && (module.exports = {
33
39
  ALL_PLATFORMS,
34
40
  ALL_SUBSCRIPTION_STATUS,
35
41
  AVAILABLE_STATUS,
42
+ AppStoreConfig,
43
+ GooglePlayConfig,
36
44
  Platform,
45
+ StripeConfig,
37
46
  SubscriptionStatus
38
47
  });
39
48
  //# sourceMappingURL=index.cjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"sourcesContent":["export {\n Platform,\n SubscriptionStatus,\n ALL_PLATFORMS,\n AVAILABLE_STATUS,\n ALL_SUBSCRIPTION_STATUS,\n} from './subscription/index';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,0BAMO;","names":[]}
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["export {\n Platform,\n SubscriptionStatus,\n ALL_PLATFORMS,\n AVAILABLE_STATUS,\n ALL_SUBSCRIPTION_STATUS,\n} from './subscription/index';\n\nexport { AppStoreConfig } from './app-store/config';\nexport { GooglePlayConfig } from './google-play/config';\nexport { StripeConfig } from './stripe/config';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,0BAMO;AAEP,oBAA+B;AAC/B,IAAAA,iBAAiC;AACjC,IAAAA,iBAA6B;","names":["import_config"]}
package/dist/index.d.cts CHANGED
@@ -1 +1,6 @@
1
1
  export { ALL_PLATFORMS, ALL_SUBSCRIPTION_STATUS, AVAILABLE_STATUS, Platform, SubscriptionStatus } from './subscription/index.cjs';
2
+ export { AppStoreConfig } from './app-store/config.cjs';
3
+ export { GooglePlayConfig } from './google-play/config.cjs';
4
+ export { StripeConfig } from './stripe/config.cjs';
5
+ import './types.cjs';
6
+ import 'ms';
package/dist/index.d.ts CHANGED
@@ -1 +1,6 @@
1
1
  export { ALL_PLATFORMS, ALL_SUBSCRIPTION_STATUS, AVAILABLE_STATUS, Platform, SubscriptionStatus } from './subscription/index.js';
2
+ export { AppStoreConfig } from './app-store/config.js';
3
+ export { GooglePlayConfig } from './google-play/config.js';
4
+ export { StripeConfig } from './stripe/config.js';
5
+ import './types.js';
6
+ import 'ms';
package/dist/index.mjs CHANGED
@@ -6,11 +6,17 @@ import {
6
6
  AVAILABLE_STATUS,
7
7
  ALL_SUBSCRIPTION_STATUS
8
8
  } from "./subscription/index.mjs";
9
+ import { AppStoreConfig } from "./app-store/config.mjs";
10
+ import { GooglePlayConfig } from "./google-play/config.mjs";
11
+ import { StripeConfig } from "./stripe/config.mjs";
9
12
  export {
10
13
  ALL_PLATFORMS,
11
14
  ALL_SUBSCRIPTION_STATUS,
12
15
  AVAILABLE_STATUS,
16
+ AppStoreConfig,
17
+ GooglePlayConfig,
13
18
  Platform,
19
+ StripeConfig,
14
20
  SubscriptionStatus
15
21
  };
16
22
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"sourcesContent":["export {\n Platform,\n SubscriptionStatus,\n ALL_PLATFORMS,\n AVAILABLE_STATUS,\n ALL_SUBSCRIPTION_STATUS,\n} from './subscription/index';\n"],"mappings":";AAAA;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;","names":[]}
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["export {\n Platform,\n SubscriptionStatus,\n ALL_PLATFORMS,\n AVAILABLE_STATUS,\n ALL_SUBSCRIPTION_STATUS,\n} from './subscription/index';\n\nexport { AppStoreConfig } from './app-store/config';\nexport { GooglePlayConfig } from './google-play/config';\nexport { StripeConfig } from './stripe/config';\n"],"mappings":";AAAA;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;AAEP,SAAS,sBAAsB;AAC/B,SAAS,wBAAwB;AACjC,SAAS,oBAAoB;","names":[]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shware/purchase",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "repository": {