opensteer 0.6.6 → 0.6.8
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/browser-profile-client-CGXc0-P9.d.cts +228 -0
- package/dist/browser-profile-client-DHLzMf-K.d.ts +228 -0
- package/dist/{chunk-H27BERRF.js → chunk-C6AJL5XU.js} +7828 -7641
- package/dist/{chunk-KPPOTU3D.js → chunk-LTREUXLO.js} +140 -12
- package/dist/{chunk-6B6LOYU3.js → chunk-O4HVMKX2.js} +1 -1
- package/dist/{chunk-54KNQTOL.js → chunk-UQYVMJOZ.js} +27 -12
- package/dist/cli/auth.cjs +108 -11
- package/dist/cli/auth.d.cts +1 -1
- package/dist/cli/auth.d.ts +1 -1
- package/dist/cli/auth.js +2 -2
- package/dist/cli/profile.cjs +472 -186
- package/dist/cli/profile.d.cts +2 -2
- package/dist/cli/profile.d.ts +2 -2
- package/dist/cli/profile.js +4 -4
- package/dist/cli/server.cjs +453 -167
- package/dist/cli/server.js +2 -2
- package/dist/index.cjs +482 -165
- package/dist/index.d.cts +48 -5
- package/dist/index.d.ts +48 -5
- package/dist/index.js +34 -5
- package/dist/{types-BWItZPl_.d.cts → types-Cr10igF3.d.cts} +1 -1
- package/dist/{types-BWItZPl_.d.ts → types-Cr10igF3.d.ts} +1 -1
- package/package.json +1 -1
- package/dist/browser-profile-client-D6PuRefA.d.cts +0 -168
- package/dist/browser-profile-client-OUHaODro.d.ts +0 -168
package/dist/cli/profile.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Cookie } from 'playwright';
|
|
2
|
-
import { O as OpensteerAuthScheme, a as OpensteerConfig, C as CookieParam } from '../types-
|
|
3
|
-
import { B as BrowserProfileStatus, a as BrowserProfileListRequest, b as BrowserProfileListResponse, c as BrowserProfileCreateRequest, d as BrowserProfileDescriptor } from '../browser-profile-client-
|
|
2
|
+
import { O as OpensteerAuthScheme, a as OpensteerConfig, C as CookieParam } from '../types-Cr10igF3.cjs';
|
|
3
|
+
import { B as BrowserProfileStatus, a as BrowserProfileListRequest, b as BrowserProfileListResponse, c as BrowserProfileCreateRequest, d as BrowserProfileDescriptor } from '../browser-profile-client-CGXc0-P9.cjs';
|
|
4
4
|
|
|
5
5
|
type ParsedProfileArgs = {
|
|
6
6
|
mode: 'help';
|
package/dist/cli/profile.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Cookie } from 'playwright';
|
|
2
|
-
import { O as OpensteerAuthScheme, a as OpensteerConfig, C as CookieParam } from '../types-
|
|
3
|
-
import { B as BrowserProfileStatus, a as BrowserProfileListRequest, b as BrowserProfileListResponse, c as BrowserProfileCreateRequest, d as BrowserProfileDescriptor } from '../browser-profile-client-
|
|
2
|
+
import { O as OpensteerAuthScheme, a as OpensteerConfig, C as CookieParam } from '../types-Cr10igF3.js';
|
|
3
|
+
import { B as BrowserProfileStatus, a as BrowserProfileListRequest, b as BrowserProfileListResponse, c as BrowserProfileCreateRequest, d as BrowserProfileDescriptor } from '../browser-profile-client-DHLzMf-K.js';
|
|
4
4
|
|
|
5
5
|
type ParsedProfileArgs = {
|
|
6
6
|
mode: 'help';
|
package/dist/cli/profile.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import {
|
|
2
2
|
BrowserProfileClient
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-O4HVMKX2.js";
|
|
4
4
|
import {
|
|
5
5
|
createKeychainStore,
|
|
6
6
|
ensureCloudCredentialsForCommand
|
|
7
|
-
} from "../chunk-
|
|
7
|
+
} from "../chunk-UQYVMJOZ.js";
|
|
8
8
|
import {
|
|
9
9
|
Opensteer
|
|
10
|
-
} from "../chunk-
|
|
10
|
+
} from "../chunk-C6AJL5XU.js";
|
|
11
11
|
import {
|
|
12
12
|
resolveConfigWithEnv
|
|
13
|
-
} from "../chunk-
|
|
13
|
+
} from "../chunk-LTREUXLO.js";
|
|
14
14
|
import {
|
|
15
15
|
expandHome
|
|
16
16
|
} from "../chunk-K5CL76MG.js";
|