opensteer 0.6.1 → 0.6.3

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.
@@ -3,7 +3,6 @@ import 'playwright';
3
3
 
4
4
  interface StoredMachineCloudCredential {
5
5
  baseUrl: string;
6
- siteUrl: string;
7
6
  scope: string[];
8
7
  accessToken: string;
9
8
  refreshToken: string;
@@ -12,7 +11,6 @@ interface StoredMachineCloudCredential {
12
11
  }
13
12
  interface WriteMachineCloudCredentialArgs {
14
13
  baseUrl: string;
15
- siteUrl: string;
16
14
  scope: string[];
17
15
  accessToken: string;
18
16
  refreshToken: string;
@@ -21,7 +19,6 @@ interface WriteMachineCloudCredentialArgs {
21
19
  }
22
20
  interface CloudCredentialStoreTarget {
23
21
  baseUrl: string;
24
- siteUrl: string;
25
22
  }
26
23
 
27
24
  type AuthFetchFn = (input: string, init?: RequestInit) => Promise<Response>;
@@ -39,7 +36,6 @@ interface EnsuredCloudAuthContext {
39
36
  source: 'flag' | 'env' | 'saved';
40
37
  kind: 'api-key' | 'access-token';
41
38
  baseUrl: string;
42
- siteUrl: string;
43
39
  }
44
40
  interface EnsureCloudCredentialsOptions {
45
41
  commandName: string;
@@ -48,7 +44,6 @@ interface EnsureCloudCredentialsOptions {
48
44
  apiKeyFlag?: string;
49
45
  accessTokenFlag?: string;
50
46
  baseUrl?: string;
51
- siteUrl?: string;
52
47
  interactive?: boolean;
53
48
  autoLoginIfNeeded?: boolean;
54
49
  writeProgress?: (message: string) => void;
@@ -86,7 +81,6 @@ interface AuthCliDeps {
86
81
  }
87
82
  interface AuthCommonArgs {
88
83
  baseUrl?: string;
89
- siteUrl?: string;
90
84
  json?: boolean;
91
85
  }
92
86
  interface AuthLoginArgs extends AuthCommonArgs {
@@ -3,7 +3,6 @@ import 'playwright';
3
3
 
4
4
  interface StoredMachineCloudCredential {
5
5
  baseUrl: string;
6
- siteUrl: string;
7
6
  scope: string[];
8
7
  accessToken: string;
9
8
  refreshToken: string;
@@ -12,7 +11,6 @@ interface StoredMachineCloudCredential {
12
11
  }
13
12
  interface WriteMachineCloudCredentialArgs {
14
13
  baseUrl: string;
15
- siteUrl: string;
16
14
  scope: string[];
17
15
  accessToken: string;
18
16
  refreshToken: string;
@@ -21,7 +19,6 @@ interface WriteMachineCloudCredentialArgs {
21
19
  }
22
20
  interface CloudCredentialStoreTarget {
23
21
  baseUrl: string;
24
- siteUrl: string;
25
22
  }
26
23
 
27
24
  type AuthFetchFn = (input: string, init?: RequestInit) => Promise<Response>;
@@ -39,7 +36,6 @@ interface EnsuredCloudAuthContext {
39
36
  source: 'flag' | 'env' | 'saved';
40
37
  kind: 'api-key' | 'access-token';
41
38
  baseUrl: string;
42
- siteUrl: string;
43
39
  }
44
40
  interface EnsureCloudCredentialsOptions {
45
41
  commandName: string;
@@ -48,7 +44,6 @@ interface EnsureCloudCredentialsOptions {
48
44
  apiKeyFlag?: string;
49
45
  accessTokenFlag?: string;
50
46
  baseUrl?: string;
51
- siteUrl?: string;
52
47
  interactive?: boolean;
53
48
  autoLoginIfNeeded?: boolean;
54
49
  writeProgress?: (message: string) => void;
@@ -86,7 +81,6 @@ interface AuthCliDeps {
86
81
  }
87
82
  interface AuthCommonArgs {
88
83
  baseUrl?: string;
89
- siteUrl?: string;
90
84
  json?: boolean;
91
85
  }
92
86
  interface AuthLoginArgs extends AuthCommonArgs {
package/dist/cli/auth.js CHANGED
@@ -4,8 +4,8 @@ import {
4
4
  isCloudModeEnabledForRootDir,
5
5
  parseOpensteerAuthArgs,
6
6
  runOpensteerAuthCli
7
- } from "../chunk-3FNI7JUU.js";
8
- import "../chunk-WDRMHPWL.js";
7
+ } from "../chunk-SCNX4NN3.js";
8
+ import "../chunk-KE35RQOJ.js";
9
9
  export {
10
10
  ensureCloudCredentialsForCommand,
11
11
  ensureCloudCredentialsForOpenCommand,