@appshell/react 1.0.0-alpha.62 → 1.0.0-alpha.64
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.
|
@@ -45,6 +45,14 @@ export type ComparisonTarget = {
|
|
|
45
45
|
name: string;
|
|
46
46
|
dependencies: Record<string, string | undefined>;
|
|
47
47
|
};
|
|
48
|
+
/**
|
|
49
|
+
* Every key `appshell config set` accepts, kept adjacent to the type it must agree with.
|
|
50
|
+
*
|
|
51
|
+
* It used to live in the set handler, and adding `caFile` to CliConfig without touching it
|
|
52
|
+
* produced a setting the cli could read and refuse to write.
|
|
53
|
+
*/
|
|
54
|
+
export declare const CLI_SETTINGS: readonly ["registry", "application", "scopeId", "authIssuer", "clientId", "apiKey", "apiKeyHeader", "caFile"];
|
|
55
|
+
export type CliSetting = (typeof CLI_SETTINGS)[number];
|
|
48
56
|
export type CliConfig = Record<string, string> & {
|
|
49
57
|
apiKey: string;
|
|
50
58
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appshell/react",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.64",
|
|
4
4
|
"description": "React utilities for building micro-frontends with Appshell and Module Federation",
|
|
5
5
|
"main": "dist/main.js",
|
|
6
6
|
"types": "dist/types/react/src/index.d.ts",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"react": "^18.2.0",
|
|
35
35
|
"react-dom": "^18.2.0"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "a5f78645fe52142e016430a79b0af91e607e92ab",
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@appshell/runtime": "^1.0.0-alpha.
|
|
39
|
+
"@appshell/runtime": "^1.0.0-alpha.64"
|
|
40
40
|
}
|
|
41
41
|
}
|