@selleragent/sa-admin 0.2.1 → 0.3.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.
- package/dist/.tsbuildinfo +1 -1
- package/dist/auth.d.ts +5 -1
- package/dist/auth.d.ts.map +1 -1
- package/dist/auth.js +81 -3
- package/dist/auth.js.map +1 -1
- package/dist/cli.js +122 -5
- package/dist/cli.js.map +1 -1
- package/dist/help.d.ts.map +1 -1
- package/dist/help.js +15 -4
- package/dist/help.js.map +1 -1
- package/dist/project.d.ts +1 -1
- package/dist/rollout.d.ts +4 -4
- package/package.json +3 -3
package/dist/rollout.d.ts
CHANGED
|
@@ -127,7 +127,7 @@ export declare function listRecordedRollouts(input: {
|
|
|
127
127
|
}[];
|
|
128
128
|
details: Record<string, unknown>;
|
|
129
129
|
}[];
|
|
130
|
-
authMode: "public" | "auth_registry" | "bootstrap";
|
|
130
|
+
authMode: "public" | "auth_registry" | "bootstrap" | "deploy_token";
|
|
131
131
|
}>;
|
|
132
132
|
export declare function inspectRecordedRollout(input: {
|
|
133
133
|
context: SaAdminContext;
|
|
@@ -162,7 +162,7 @@ export declare function inspectRecordedRollout(input: {
|
|
|
162
162
|
}[];
|
|
163
163
|
details: Record<string, unknown>;
|
|
164
164
|
} | null;
|
|
165
|
-
authMode: "public" | "auth_registry" | "bootstrap";
|
|
165
|
+
authMode: "public" | "auth_registry" | "bootstrap" | "deploy_token";
|
|
166
166
|
}>;
|
|
167
167
|
export declare function runRolloutVerify(input: {
|
|
168
168
|
context: SaAdminContext;
|
|
@@ -176,7 +176,7 @@ export declare function inspectReleaseVerdict(input: {
|
|
|
176
176
|
verificationId?: string | null;
|
|
177
177
|
rolloutId?: string | null;
|
|
178
178
|
}): Promise<{
|
|
179
|
-
authMode: "public" | "auth_registry" | "bootstrap";
|
|
179
|
+
authMode: "public" | "auth_registry" | "bootstrap" | "deploy_token";
|
|
180
180
|
verdict: {
|
|
181
181
|
verificationId: string;
|
|
182
182
|
verdict: "accepted" | "accepted_with_warnings" | "rollback_recommended";
|
|
@@ -193,7 +193,7 @@ export declare function inspectReleaseEvidence(input: {
|
|
|
193
193
|
verificationId?: string | null;
|
|
194
194
|
rolloutId?: string | null;
|
|
195
195
|
}): Promise<{
|
|
196
|
-
authMode: "public" | "auth_registry" | "bootstrap";
|
|
196
|
+
authMode: "public" | "auth_registry" | "bootstrap" | "deploy_token";
|
|
197
197
|
verification: {
|
|
198
198
|
verificationId: string;
|
|
199
199
|
rolloutId: string | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@selleragent/sa-admin",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"bin": {
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"node": ">=20"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@selleragent/api-contract": "0.
|
|
32
|
-
"@selleragent/client-sdk": "0.
|
|
31
|
+
"@selleragent/api-contract": "0.3.0",
|
|
32
|
+
"@selleragent/client-sdk": "0.3.0",
|
|
33
33
|
"@selleragent/shared": "0.1.0"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|