@demind-inc/core 1.2.2 → 1.2.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.
@@ -60,6 +60,7 @@ export interface Subscription {
60
60
  };
61
61
  }
62
62
  export type StripeLookupkey = "beta_monthly" | "beta_yearly" | "basic_monthly" | "basic_yearly";
63
+ export declare const stripeLookupKeySet: Record<"beta" | "basic", StripeLookupkey[]>;
63
64
  export interface SubscriptionPrice {
64
65
  currency: string;
65
66
  amount: number;
@@ -1,2 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.stripeLookupKeySet = void 0;
4
+ exports.stripeLookupKeySet = {
5
+ beta: ["beta_monthly", "beta_yearly"],
6
+ basic: ["basic_monthly", "basic_yearly"],
7
+ };
@@ -72,6 +72,11 @@ export type StripeLookupkey =
72
72
  | "basic_monthly"
73
73
  | "basic_yearly";
74
74
 
75
+ export const stripeLookupKeySet: Record<"beta" | "basic", StripeLookupkey[]> = {
76
+ beta: ["beta_monthly", "beta_yearly"],
77
+ basic: ["basic_monthly", "basic_yearly"],
78
+ };
79
+
75
80
  export interface SubscriptionPrice {
76
81
  currency: string;
77
82
  amount: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {