@dazl/internal-api-client 1.24.1 → 1.25.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.
|
@@ -8,5 +8,11 @@ export interface FeatureToggleConfig {
|
|
|
8
8
|
canClose: boolean;
|
|
9
9
|
owner: string;
|
|
10
10
|
}
|
|
11
|
-
export declare const featureTogglesConfig:
|
|
11
|
+
export declare const featureTogglesConfig: {
|
|
12
|
+
"dev-panels": {
|
|
13
|
+
scope: "SiteAndEditor";
|
|
14
|
+
canClose: true;
|
|
15
|
+
owner: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
12
18
|
//# sourceMappingURL=feature-toggles-config.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"feature-toggles-config.d.ts","sourceRoot":"","sources":["../src/feature-toggles-config.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,MAAM,MAAM,WAAW,GAAG,iBAAiB,GAAG,eAAe,CAAC;AAE9D,MAAM,WAAW,mBAAmB;IAClC,KAAK,EAAE,WAAW,CAAC;IACnB,QAAQ,EAAE,OAAO,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC;CACf;AAED,eAAO,MAAM,oBAAoB,
|
|
1
|
+
{"version":3,"file":"feature-toggles-config.d.ts","sourceRoot":"","sources":["../src/feature-toggles-config.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,MAAM,MAAM,WAAW,GAAG,iBAAiB,GAAG,eAAe,CAAC;AAE9D,MAAM,WAAW,mBAAmB;IAClC,KAAK,EAAE,WAAW,CAAC;IACnB,QAAQ,EAAE,OAAO,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC;CACf;AAED,eAAO,MAAM,oBAAoB;;;;;;CAMc,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"feature-toggles-config.js","sourceRoot":"","sources":["../src/feature-toggles-config.ts"],"names":[],"mappings":"AAYA,MAAM,CAAC,MAAM,oBAAoB,
|
|
1
|
+
{"version":3,"file":"feature-toggles-config.js","sourceRoot":"","sources":["../src/feature-toggles-config.ts"],"names":[],"mappings":"AAYA,MAAM,CAAC,MAAM,oBAAoB,GAAG;IAClC,YAAY,EAAE;QACZ,KAAK,EAAE,eAAe;QACtB,QAAQ,EAAE,IAAI;QACd,KAAK,EAAE,QAAQ;KAChB;CAC4C,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dazl/internal-api-client",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.25.1",
|
|
4
4
|
"description": "Type-safe SDK for Dazl Internal APIs, generated from OpenAPI specifications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -42,6 +42,6 @@
|
|
|
42
42
|
"directory": "sdk"
|
|
43
43
|
},
|
|
44
44
|
"publishConfig": {
|
|
45
|
-
"access": "
|
|
45
|
+
"access": "public"
|
|
46
46
|
}
|
|
47
47
|
}
|
|
@@ -10,10 +10,10 @@ export interface FeatureToggleConfig {
|
|
|
10
10
|
owner: string;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
export const featureTogglesConfig
|
|
14
|
-
|
|
13
|
+
export const featureTogglesConfig = {
|
|
14
|
+
"dev-panels": {
|
|
15
15
|
scope: "SiteAndEditor",
|
|
16
16
|
canClose: true,
|
|
17
|
-
owner: "
|
|
17
|
+
owner: "alissa",
|
|
18
18
|
},
|
|
19
|
-
}
|
|
19
|
+
} satisfies Record<string, FeatureToggleConfig>;
|