@periskope/types 0.6.173 → 0.6.174

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/types.d.ts CHANGED
@@ -89,6 +89,9 @@ export type OrgMetadata = {
89
89
  [id: string]: number;
90
90
  };
91
91
  };
92
+ rules?: {
93
+ limit?: number;
94
+ };
92
95
  };
93
96
  type AccessScopes = {
94
97
  feature_flags: Record<string, boolean>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@periskope/types",
3
- "version": "0.6.173",
3
+ "version": "0.6.174",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/types.ts CHANGED
@@ -106,6 +106,9 @@ export type OrgMetadata = {
106
106
  [id: string]: number;
107
107
  };
108
108
  };
109
+ rules?: {
110
+ limit?: number;
111
+ }
109
112
  };
110
113
 
111
114
  type AccessScopes = {