@forge/cli-shared 2.4.2 → 2.5.0-next.2
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/CHANGELOG.md +20 -0
- package/out/graphql/gateway.d.ts +1 -1
- package/out/graphql/gateway.d.ts.map +1 -1
- package/out/graphql/graphql-types.d.ts +267 -1
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/mutation-aware-graphql-client.d.ts +1 -1
- package/out/service/feature-flag-service.d.ts +35 -0
- package/out/service/feature-flag-service.d.ts.map +1 -0
- package/out/service/feature-flag-service.js +90 -0
- package/out/service/index.d.ts +1 -0
- package/out/service/index.d.ts.map +1 -1
- package/out/service/index.js +1 -0
- package/out/shared/error-handling.d.ts +1 -1
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/ui/logger.d.ts +1 -0
- package/out/ui/logger.d.ts.map +1 -1
- package/out/ui/logger.js +17 -1
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.5.0-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [e892d27d]
|
|
8
|
+
- @forge/manifest@3.8.0-next.1
|
|
9
|
+
|
|
10
|
+
## 2.5.0-next.1
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [74b6c3c]
|
|
15
|
+
- @forge/manifest@3.8.0-next.0
|
|
16
|
+
|
|
17
|
+
## 2.5.0-next.0
|
|
18
|
+
|
|
19
|
+
### Minor Changes
|
|
20
|
+
|
|
21
|
+
- 6d7a574: Add the ability to query feature flags in the CLI
|
|
22
|
+
|
|
3
23
|
## 2.4.2
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/out/graphql/gateway.d.ts
CHANGED
|
@@ -5,12 +5,12 @@ declare enum Environments {
|
|
|
5
5
|
STG = "staging",
|
|
6
6
|
PROD = "prod"
|
|
7
7
|
}
|
|
8
|
+
declare type EnvironmentOptions = Record<keyof typeof Environments, string>;
|
|
8
9
|
export declare enum CDNEnvironments {
|
|
9
10
|
DEV = "dev",
|
|
10
11
|
STG = "stg",
|
|
11
12
|
PROD = "prod"
|
|
12
13
|
}
|
|
13
|
-
declare type EnvironmentOptions = typeof Environments | typeof CDNEnvironments;
|
|
14
14
|
export declare const getEnvironment: (envOptions?: EnvironmentOptions) => string;
|
|
15
15
|
export {};
|
|
16
16
|
//# sourceMappingURL=gateway.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gateway.d.ts","sourceRoot":"","sources":["../../src/graphql/gateway.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,uBAAuB,sCAAsC,CAAC;AAE3E,eAAO,MAAM,iBAAiB,QAAO,MAEpC,CAAC;AAEF,aAAK,YAAY;IACf,GAAG,QAAQ;IACX,GAAG,YAAY;IACf,IAAI,SAAS;CACd;AAED,oBAAY,eAAe;IACzB,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,IAAI,SAAS;CACd;
|
|
1
|
+
{"version":3,"file":"gateway.d.ts","sourceRoot":"","sources":["../../src/graphql/gateway.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,uBAAuB,sCAAsC,CAAC;AAE3E,eAAO,MAAM,iBAAiB,QAAO,MAEpC,CAAC;AAEF,aAAK,YAAY;IACf,GAAG,QAAQ;IACX,GAAG,YAAY;IACf,IAAI,SAAS;CACd;AAED,aAAK,kBAAkB,GAAG,MAAM,CAAC,MAAM,OAAO,YAAY,EAAE,MAAM,CAAC,CAAC;AAEpE,oBAAY,eAAe;IACzB,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,IAAI,SAAS;CACd;AAED,eAAO,MAAM,cAAc,gBAAgB,kBAAkB,KAAkB,MAS9E,CAAC"}
|