@takeshape/util 11.132.2 → 11.133.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.
@@ -63,7 +63,6 @@ export type Entitlements = {
63
63
  apiRequests: number;
64
64
  apiRateLimit: number;
65
65
  contentEntries: number;
66
- deployTargets: number;
67
66
  webhooks: boolean;
68
67
  locales: number;
69
68
  importFromCSV: boolean;
@@ -77,6 +76,7 @@ export type Entitlements = {
77
76
  bandwidth?: number;
78
77
  apiCdn?: boolean;
79
78
  guards?: number;
79
+ staticSites?: number;
80
80
  };
81
81
  export declare const DEFAULT_ENTITLEMENTS: Required<Entitlements>;
82
82
  export type Plan = {
@@ -137,7 +137,7 @@ export type BillingUsage = {
137
137
  workflows: number;
138
138
  contentEntries: number;
139
139
  locales: number;
140
- deployTargets: number;
140
+ staticSites: number;
141
141
  roles: number;
142
142
  apiRequests: number;
143
143
  guards: number;
@@ -5,7 +5,6 @@ export const DEFAULT_ENTITLEMENTS = {
5
5
  apiRequests: 10000,
6
6
  apiRateLimit: 5,
7
7
  contentEntries: 500,
8
- deployTargets: 1,
9
8
  roles: 5,
10
9
  workflows: 0,
11
10
  locales: 2,
@@ -15,7 +14,8 @@ export const DEFAULT_ENTITLEMENTS = {
15
14
  minScheduleTriggerInterval: DEFAULT_MIN_SCHEDULE_TRIGGER_INTERVAL,
16
15
  bandwidth: 5,
17
16
  apiCdn: false,
18
- guards: 0
17
+ guards: 0,
18
+ staticSites: 0
19
19
  };
20
20
  export function isStripeProductObject(product) {
21
21
  return Boolean(product && typeof product !== 'string' && product.object === 'product' && !product.deleted);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@takeshape/util",
3
- "version": "11.132.2",
3
+ "version": "11.133.1",
4
4
  "description": "Shared utilities",
5
5
  "homepage": "https://www.takeshape.io",
6
6
  "repository": {
@@ -45,8 +45,8 @@
45
45
  "tiny-invariant": "1.3.3",
46
46
  "uint8array-extras": "1.4.0",
47
47
  "url-parse": "1.5.3",
48
- "@takeshape/prism": "11.132.2",
49
- "@takeshape/routing": "11.132.2"
48
+ "@takeshape/prism": "11.133.1",
49
+ "@takeshape/routing": "11.133.1"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@types/classnames": "2.2.11",