@0xsquid/squid-types 0.1.117 → 0.1.118

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.
@@ -0,0 +1,12 @@
1
+ export declare enum FeatureFlagType {
2
+ MaintenanceMode = "maintenance",
3
+ Bitcoin = "bitcoin",
4
+ Solana = "solana",
5
+ Chainflip = "chainflip",
6
+ Coral = "coral"
7
+ }
8
+ export interface FeatureFlag {
9
+ feature: FeatureFlagType;
10
+ allowedIntegrators: string[];
11
+ enabled: boolean;
12
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.FeatureFlagType = void 0;
4
+ var FeatureFlagType;
5
+ (function (FeatureFlagType) {
6
+ FeatureFlagType["MaintenanceMode"] = "maintenance";
7
+ FeatureFlagType["Bitcoin"] = "bitcoin";
8
+ FeatureFlagType["Solana"] = "solana";
9
+ FeatureFlagType["Chainflip"] = "chainflip";
10
+ FeatureFlagType["Coral"] = "coral";
11
+ })(FeatureFlagType || (exports.FeatureFlagType = FeatureFlagType = {}));
12
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/featureFlag/index.ts"],"names":[],"mappings":";;;AAAA,IAAY,eAMX;AAND,WAAY,eAAe;IACzB,kDAA+B,CAAA;IAC/B,sCAAmB,CAAA;IACnB,oCAAiB,CAAA;IACjB,0CAAuB,CAAA;IACvB,kCAAe,CAAA;AACjB,CAAC,EANW,eAAe,+BAAf,eAAe,QAM1B"}
package/dist/index.d.ts CHANGED
@@ -13,3 +13,4 @@ export * from "./path";
13
13
  export * from "./compliance";
14
14
  export * from "./rfq";
15
15
  export * from "./gas";
16
+ export * from "./featureFlag";
package/dist/index.js CHANGED
@@ -29,4 +29,5 @@ __exportStar(require("./path"), exports);
29
29
  __exportStar(require("./compliance"), exports);
30
30
  __exportStar(require("./rfq"), exports);
31
31
  __exportStar(require("./gas"), exports);
32
+ __exportStar(require("./featureFlag"), exports);
32
33
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAyB;AACzB,4CAA0B;AAC1B,0CAAwB;AACxB,2CAAyB;AACzB,2CAAyB;AACzB,yCAAuB;AACvB,0CAAwB;AACxB,2CAAyB;AACzB,0CAAwB;AACxB,2CAAyB;AACzB,6CAA2B;AAC3B,yCAAuB;AACvB,+CAA6B;AAC7B,wCAAsB;AACtB,wCAAsB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAyB;AACzB,4CAA0B;AAC1B,0CAAwB;AACxB,2CAAyB;AACzB,2CAAyB;AACzB,yCAAuB;AACvB,0CAAwB;AACxB,2CAAyB;AACzB,0CAAwB;AACxB,2CAAyB;AACzB,6CAA2B;AAC3B,yCAAuB;AACvB,+CAA6B;AAC7B,wCAAsB;AACtB,wCAAsB;AACtB,gDAA8B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@0xsquid/squid-types",
3
- "version": "0.1.117",
3
+ "version": "0.1.118",
4
4
  "description": "JS and TS types relating to 0xsquid related projects.",
5
5
  "main": "dist/index.js",
6
6
  "types": "./dist/index.d.ts",