@rosthq/cli 0.7.156 → 0.7.157
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/acting-principal.d.ts +82 -0
- package/dist/acting-principal.d.ts.map +1 -0
- package/dist/acting-principal.test.d.ts +2 -0
- package/dist/acting-principal.test.d.ts.map +1 -0
- package/dist/commands/onboarding-preflight.d.ts +86 -0
- package/dist/commands/onboarding-preflight.d.ts.map +1 -0
- package/dist/commands/onboarding-preflight.test.d.ts +2 -0
- package/dist/commands/onboarding-preflight.test.d.ts.map +1 -0
- package/dist/commands/onboarding.d.ts +6 -1
- package/dist/commands/onboarding.d.ts.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +465 -31
- package/dist/index.js.map +4 -4
- package/package.json +1 -1
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const ACTING_PRINCIPAL_KINDS: readonly ["none", "unknown", "user_session", "implementation_bootstrap"];
|
|
3
|
+
export declare const actingPrincipalSchema: z.ZodObject<{
|
|
4
|
+
kind: z.ZodEnum<{
|
|
5
|
+
none: "none";
|
|
6
|
+
unknown: "unknown";
|
|
7
|
+
user_session: "user_session";
|
|
8
|
+
implementation_bootstrap: "implementation_bootstrap";
|
|
9
|
+
}>;
|
|
10
|
+
subject: z.ZodNullable<z.ZodString>;
|
|
11
|
+
email: z.ZodNullable<z.ZodString>;
|
|
12
|
+
tenant_id: z.ZodNullable<z.ZodString>;
|
|
13
|
+
tenant_name: z.ZodNullable<z.ZodString>;
|
|
14
|
+
role: z.ZodNullable<z.ZodString>;
|
|
15
|
+
source: z.ZodNullable<z.ZodString>;
|
|
16
|
+
principal_switch: z.ZodNullable<z.ZodString>;
|
|
17
|
+
note: z.ZodNullable<z.ZodString>;
|
|
18
|
+
}, z.core.$strict>;
|
|
19
|
+
export type ActingPrincipal = z.infer<typeof actingPrincipalSchema>;
|
|
20
|
+
/** The canonical `none` projection — no credential resolved at all. */
|
|
21
|
+
export declare function noneActingPrincipal(note?: string): ActingPrincipal;
|
|
22
|
+
/**
|
|
23
|
+
* Decode the self-describing identity claims out of a session's own JWT. This
|
|
24
|
+
* is a LOCAL read of a token the CLI already holds — never a network call and
|
|
25
|
+
* never a signature check (the server re-authenticates every request). It is
|
|
26
|
+
* used only to render whose authority a command acts under, so every failure
|
|
27
|
+
* mode resolves to nulls rather than throwing: a non-JWT test token, a token
|
|
28
|
+
* with no email claim, or malformed base64 all yield an unresolved identity,
|
|
29
|
+
* which the projection reports as `user_session` with a null email — never a
|
|
30
|
+
* fabricated one.
|
|
31
|
+
*/
|
|
32
|
+
export declare function decodeSessionIdentity(accessToken: string | undefined): {
|
|
33
|
+
email: string | null;
|
|
34
|
+
tenantId: string | null;
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* Project the acting principal for a resolved user session. `accessToken` is
|
|
38
|
+
* the session's JWT (decoded locally for the email/tenant); `source` is the
|
|
39
|
+
* token store's describe() string. Identity that does not decode stays null —
|
|
40
|
+
* the projection is `user_session` with a null email, distinct from `none`.
|
|
41
|
+
*/
|
|
42
|
+
export declare function userSessionActingPrincipal(params: {
|
|
43
|
+
accessToken: string | undefined;
|
|
44
|
+
source: string | null;
|
|
45
|
+
tenantName?: string | null;
|
|
46
|
+
}): ActingPrincipal;
|
|
47
|
+
/**
|
|
48
|
+
* Project the acting principal for the bounded implementation-run credential.
|
|
49
|
+
* The tenant id and run id are proven facts carried on the credential itself;
|
|
50
|
+
* `source` is the credential store's describe() string. `otherCredential`,
|
|
51
|
+
* when set, records that a competing credential (typically the caller's own
|
|
52
|
+
* logged-in user session) was also available and this bounded principal was
|
|
53
|
+
* selected over it — the explicit switch note the dual-credential control
|
|
54
|
+
* requires.
|
|
55
|
+
*/
|
|
56
|
+
export declare function implementationActingPrincipal(params: {
|
|
57
|
+
tenantId: string;
|
|
58
|
+
implementationRunId: string;
|
|
59
|
+
source: string | null;
|
|
60
|
+
otherCredential?: string | null;
|
|
61
|
+
}): ActingPrincipal;
|
|
62
|
+
/**
|
|
63
|
+
* The one-line human header rendered BEFORE a command's payload. It states
|
|
64
|
+
* whose authority the command acts under and never renders an unproven
|
|
65
|
+
* identity as a proven one: `none`/`unknown` say exactly that, and a user
|
|
66
|
+
* session whose JWT did not decode reports the credential without inventing an
|
|
67
|
+
* email.
|
|
68
|
+
*/
|
|
69
|
+
export declare function renderActingPrincipalHeader(principal: ActingPrincipal): string;
|
|
70
|
+
/**
|
|
71
|
+
* The stable --json envelope: the acting principal alongside the command's own
|
|
72
|
+
* result. Chosen over sibling-key injection because most --json command
|
|
73
|
+
* outputs are opaque to the CLI (it never inspects their shape), so a
|
|
74
|
+
* top-level envelope cannot collide with a result field and is uniform across
|
|
75
|
+
* every command. Documented in the PR so downstream consumers read
|
|
76
|
+
* `.output` for the former raw result.
|
|
77
|
+
*/
|
|
78
|
+
export declare function actingPrincipalEnvelope(principal: ActingPrincipal, output: unknown): {
|
|
79
|
+
acting_principal: ActingPrincipal;
|
|
80
|
+
output: unknown;
|
|
81
|
+
};
|
|
82
|
+
//# sourceMappingURL=acting-principal.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"acting-principal.d.ts","sourceRoot":"","sources":["../src/acting-principal.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AA0BxB,eAAO,MAAM,sBAAsB,0EAKzB,CAAC;AAEX,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;kBAuBvB,CAAC;AAEZ,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAcpE,uEAAuE;AACvE,wBAAgB,mBAAmB,CAAC,IAAI,CAAC,EAAE,MAAM,GAAG,eAAe,CAElE;AAED;;;;;;;;;GASG;AACH,wBAAgB,qBAAqB,CACnC,WAAW,EAAE,MAAM,GAAG,SAAS,GAC9B;IAAE,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAA;CAAE,CAgCnD;AAED;;;;;GAKG;AACH,wBAAgB,0BAA0B,CAAC,MAAM,EAAE;IACjD,WAAW,EAAE,MAAM,GAAG,SAAS,CAAC;IAChC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC5B,GAAG,eAAe,CAalB;AAED;;;;;;;;GAQG;AACH,wBAAgB,6BAA6B,CAAC,MAAM,EAAE;IACpD,QAAQ,EAAE,MAAM,CAAC;IACjB,mBAAmB,EAAE,MAAM,CAAC;IAC5B,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACjC,GAAG,eAAe,CAclB;AAYD;;;;;;GAMG;AACH,wBAAgB,2BAA2B,CAAC,SAAS,EAAE,eAAe,GAAG,MAAM,CAoB9E;AAED;;;;;;;GAOG;AACH,wBAAgB,uBAAuB,CACrC,SAAS,EAAE,eAAe,EAC1B,MAAM,EAAE,OAAO,GACd;IAAE,gBAAgB,EAAE,eAAe,CAAC;IAAC,MAAM,EAAE,OAAO,CAAA;CAAE,CAExD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"acting-principal.test.d.ts","sourceRoot":"","sources":["../src/acting-principal.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import { type ActingPrincipal } from "../acting-principal.js";
|
|
3
|
+
type CliIo = {
|
|
4
|
+
stdout: Pick<NodeJS.WriteStream, "write">;
|
|
5
|
+
stderr: Pick<NodeJS.WriteStream, "write">;
|
|
6
|
+
};
|
|
7
|
+
export type PreflightCheckStatus = "pass" | "fail" | "unknown";
|
|
8
|
+
export declare const preflightCheckSchema: z.ZodObject<{
|
|
9
|
+
name: z.ZodString;
|
|
10
|
+
status: z.ZodEnum<{
|
|
11
|
+
unknown: "unknown";
|
|
12
|
+
pass: "pass";
|
|
13
|
+
fail: "fail";
|
|
14
|
+
}>;
|
|
15
|
+
detail: z.ZodString;
|
|
16
|
+
}, z.core.$strict>;
|
|
17
|
+
export declare const preflightResultSchema: z.ZodObject<{
|
|
18
|
+
ok: z.ZodBoolean;
|
|
19
|
+
acting_principal: z.ZodObject<{
|
|
20
|
+
kind: z.ZodEnum<{
|
|
21
|
+
none: "none";
|
|
22
|
+
unknown: "unknown";
|
|
23
|
+
user_session: "user_session";
|
|
24
|
+
implementation_bootstrap: "implementation_bootstrap";
|
|
25
|
+
}>;
|
|
26
|
+
subject: z.ZodNullable<z.ZodString>;
|
|
27
|
+
email: z.ZodNullable<z.ZodString>;
|
|
28
|
+
tenant_id: z.ZodNullable<z.ZodString>;
|
|
29
|
+
tenant_name: z.ZodNullable<z.ZodString>;
|
|
30
|
+
role: z.ZodNullable<z.ZodString>;
|
|
31
|
+
source: z.ZodNullable<z.ZodString>;
|
|
32
|
+
principal_switch: z.ZodNullable<z.ZodString>;
|
|
33
|
+
note: z.ZodNullable<z.ZodString>;
|
|
34
|
+
}, z.core.$strict>;
|
|
35
|
+
checks: z.ZodArray<z.ZodObject<{
|
|
36
|
+
name: z.ZodString;
|
|
37
|
+
status: z.ZodEnum<{
|
|
38
|
+
unknown: "unknown";
|
|
39
|
+
pass: "pass";
|
|
40
|
+
fail: "fail";
|
|
41
|
+
}>;
|
|
42
|
+
detail: z.ZodString;
|
|
43
|
+
}, z.core.$strict>>;
|
|
44
|
+
}, z.core.$strict>;
|
|
45
|
+
export type PreflightCheck = z.infer<typeof preflightCheckSchema>;
|
|
46
|
+
export type PreflightResult = z.infer<typeof preflightResultSchema>;
|
|
47
|
+
/**
|
|
48
|
+
* The implementation-credential fact the preflight reports. `present` carries
|
|
49
|
+
* the expiry decision and the store the credential was read from (`stored_in`);
|
|
50
|
+
* `error` is a store read failure (never proof of absence).
|
|
51
|
+
*/
|
|
52
|
+
export type PreflightImplementationCredential = {
|
|
53
|
+
kind: "present";
|
|
54
|
+
expired: boolean;
|
|
55
|
+
storedIn: string;
|
|
56
|
+
} | {
|
|
57
|
+
kind: "absent";
|
|
58
|
+
} | {
|
|
59
|
+
kind: "error";
|
|
60
|
+
detail: string;
|
|
61
|
+
};
|
|
62
|
+
export type PreflightDeps = {
|
|
63
|
+
json: boolean;
|
|
64
|
+
principal: ActingPrincipal;
|
|
65
|
+
sessionRefreshError: string | null;
|
|
66
|
+
implementationCredential: PreflightImplementationCredential;
|
|
67
|
+
cliVersion: string | null;
|
|
68
|
+
fetchLatestVersion: () => Promise<string | null>;
|
|
69
|
+
probeDeployment: () => Promise<{
|
|
70
|
+
ok: boolean;
|
|
71
|
+
status: number | null;
|
|
72
|
+
detail: string;
|
|
73
|
+
}>;
|
|
74
|
+
readOnboardingState: (() => Promise<{
|
|
75
|
+
ok: boolean;
|
|
76
|
+
alreadyOnboarded: boolean;
|
|
77
|
+
detail: string;
|
|
78
|
+
}>) | null;
|
|
79
|
+
};
|
|
80
|
+
/**
|
|
81
|
+
* Run the preflight and render it. Returns 0 only when EVERY check passed; any
|
|
82
|
+
* `fail` or `unknown` returns 1 (unproven is not green).
|
|
83
|
+
*/
|
|
84
|
+
export declare function runOnboardingPreflight(io: CliIo, deps: PreflightDeps): Promise<number>;
|
|
85
|
+
export {};
|
|
86
|
+
//# sourceMappingURL=onboarding-preflight.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"onboarding-preflight.d.ts","sourceRoot":"","sources":["../../src/commands/onboarding-preflight.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAGL,KAAK,eAAe,EACrB,MAAM,wBAAwB,CAAC;AAEhC,KAAK,KAAK,GAAG;IACX,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC;IAC1C,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC;CAC3C,CAAC;AASF,MAAM,MAAM,oBAAoB,GAAG,MAAM,GAAG,MAAM,GAAG,SAAS,CAAC;AAE/D,eAAO,MAAM,oBAAoB;;;;;;;;kBAMtB,CAAC;AAEZ,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAMvB,CAAC;AAEZ,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAClE,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAEpE;;;;GAIG;AACH,MAAM,MAAM,iCAAiC,GACzC;IAAE,IAAI,EAAE,SAAS,CAAC;IAAC,OAAO,EAAE,OAAO,CAAC;IAAC,QAAQ,EAAE,MAAM,CAAA;CAAE,GACvD;IAAE,IAAI,EAAE,QAAQ,CAAA;CAAE,GAClB;IAAE,IAAI,EAAE,OAAO,CAAC;IAAC,MAAM,EAAE,MAAM,CAAA;CAAE,CAAC;AAEtC,MAAM,MAAM,aAAa,GAAG;IAC1B,IAAI,EAAE,OAAO,CAAC;IAEd,SAAS,EAAE,eAAe,CAAC;IAO3B,mBAAmB,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC,wBAAwB,EAAE,iCAAiC,CAAC;IAE5D,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAI1B,kBAAkB,EAAE,MAAM,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC;IAIjD,eAAe,EAAE,MAAM,OAAO,CAAC;QAAE,EAAE,EAAE,OAAO,CAAC;QAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAIvF,mBAAmB,EACf,CAAC,MAAM,OAAO,CAAC;QAAE,EAAE,EAAE,OAAO,CAAC;QAAC,gBAAgB,EAAE,OAAO,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC,GAC3E,IAAI,CAAC;CACV,CAAC;AAgIF;;;GAGG;AACH,wBAAsB,sBAAsB,CAAC,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,aAAa,GAAG,OAAO,CAAC,MAAM,CAAC,CA8B5F"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"onboarding-preflight.test.d.ts","sourceRoot":"","sources":["../../src/commands/onboarding-preflight.test.ts"],"names":[],"mappings":""}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { CommandClient } from "../command-client.js";
|
|
2
|
+
import { type ActingPrincipal } from "../acting-principal.js";
|
|
2
3
|
type CliIo = {
|
|
3
4
|
stdout: Pick<NodeJS.WriteStream, "write">;
|
|
4
5
|
stderr: Pick<NodeJS.WriteStream, "write">;
|
|
@@ -6,6 +7,7 @@ type CliIo = {
|
|
|
6
7
|
export type OnboardingDeps = {
|
|
7
8
|
makeClient(): Promise<CommandClient>;
|
|
8
9
|
readFile?: (path: string) => Promise<Buffer>;
|
|
10
|
+
actingPrincipal?: ActingPrincipal;
|
|
9
11
|
};
|
|
10
12
|
/**
|
|
11
13
|
* The largest source file this invocation can actually send: the smallest of the
|
|
@@ -48,9 +50,12 @@ export declare function runOnboarding(args: string[], io: CliIo, deps: Onboardin
|
|
|
48
50
|
* policy errors before shared rendering; the caller handles an intercepted
|
|
49
51
|
* outcome as terminal rather than retrying under an owner session.
|
|
50
52
|
*/
|
|
51
|
-
export declare function executeOnboardingInvocation(invocation: OnboardingInvocation, io: CliIo, client: CommandClient
|
|
53
|
+
export declare function executeOnboardingInvocation(invocation: OnboardingInvocation, io: CliIo, client: CommandClient, options?: {
|
|
54
|
+
actingPrincipal?: ActingPrincipal;
|
|
55
|
+
}): Promise<number>;
|
|
52
56
|
export declare function executeOnboardingInvocation(invocation: OnboardingInvocation, io: CliIo, client: CommandClient, options: {
|
|
53
57
|
onError: (error: unknown) => "handled" | "print";
|
|
58
|
+
actingPrincipal?: ActingPrincipal;
|
|
54
59
|
}): Promise<number | "fall-through">;
|
|
55
60
|
/**
|
|
56
61
|
* Resolve the local file reads a parsed invocation deferred: the source bytes
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"onboarding.d.ts","sourceRoot":"","sources":["../../src/commands/onboarding.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,aAAa,EAAsB,MAAM,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"onboarding.d.ts","sourceRoot":"","sources":["../../src/commands/onboarding.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,aAAa,EAAsB,MAAM,sBAAsB,CAAC;AACzE,OAAO,EAGL,KAAK,eAAe,EACrB,MAAM,wBAAwB,CAAC;AAMhC,KAAK,KAAK,GAAG;IACX,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC;IAC1C,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC;CAC3C,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG;IAI3B,UAAU,IAAI,OAAO,CAAC,aAAa,CAAC,CAAC;IAGrC,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,CAAC,CAAC;IAI7C,eAAe,CAAC,EAAE,eAAe,CAAC;CACnC,CAAC;AAkDF;;;;;;;;;;;;;;;;;;GAkBG;AACH,wBAAgB,0BAA0B,CACxC,aAAa,EAAE,MAAM,EACrB,YAAY,GAAE,MAAsC,GACnD,MAAM,CAMR;AAqBD,MAAM,MAAM,oBAAoB,GAAG;IACjC,SAAS,EACL,mBAAmB,GACnB,mBAAmB,GACnB,qBAAqB,GACrB,qBAAqB,GACrB,0BAA0B,GAC1B,kBAAkB,CAAC;IACvB,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAC9B,IAAI,EAAE,OAAO,CAAC;IACd,MAAM,EAAE,QAAQ,GAAG,QAAQ,GAAG,UAAU,GAAG,UAAU,GAAG,eAAe,GAAG,OAAO,GAAG,cAAc,CAAC;IAInG,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,qBAAa,oBAAqB,SAAQ,KAAK;gBACjC,OAAO,EAAE,MAAM;CAI5B;AAED,wBAAsB,aAAa,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,cAAc,GAAG,OAAO,CAAC,MAAM,CAAC,CAiBpG;AAED;;;;;;;;GAQG;AACH,wBAAsB,2BAA2B,CAC/C,UAAU,EAAE,oBAAoB,EAChC,EAAE,EAAE,KAAK,EACT,MAAM,EAAE,aAAa,EACrB,OAAO,CAAC,EAAE;IAAE,eAAe,CAAC,EAAE,eAAe,CAAA;CAAE,GAC9C,OAAO,CAAC,MAAM,CAAC,CAAC;AACnB,wBAAsB,2BAA2B,CAC/C,UAAU,EAAE,oBAAoB,EAChC,EAAE,EAAE,KAAK,EACT,MAAM,EAAE,aAAa,EACrB,OAAO,EAAE;IAAE,OAAO,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,SAAS,GAAG,OAAO,CAAC;IAAC,eAAe,CAAC,EAAE,eAAe,CAAA;CAAE,GAC/F,OAAO,CAAC,MAAM,GAAG,cAAc,CAAC,CAAC;AAiDpC;;;;;GAKG;AACH,wBAAsB,gCAAgC,CACpD,UAAU,EAAE,oBAAoB,EAChC,YAAY,GAAE,CAAC,IAAI,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,CAAY,GACzD,OAAO,CAAC,IAAI,CAAC,CAqEf;AAgDD,wBAAgB,yBAAyB,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,oBAAoB,CA+G9E;AA2FD,wBAAgB,eAAe,IAAI,MAAM,CAWxC;AAED,wBAAgB,sBAAsB,CACpC,MAAM,EAAE,oBAAoB,CAAC,QAAQ,CAAC,EACtC,MAAM,EAAE,OAAO,GACd,MAAM,CAoBR"}
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAMA,OAAO,EAAE,aAAa,EAAsB,MAAM,qBAAqB,CAAC;AAExE,OAAO,EAAE,gBAAgB,EAAE,yBAAyB,EAAE,MAAM,WAAW,CAAC;AACxE,OAAO,EAAoB,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AACzE,OAAO,EAAoB,KAAK,UAAU,EAAE,MAAM,kBAAkB,CAAC;AACrE,OAAO,EAGL,KAAK,6BAA6B,EACnC,MAAM,sCAAsC,CAAC;AAW9C,OAAO,EAKL,KAAK,+BAA+B,EACrC,MAAM,mCAAmC,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAMA,OAAO,EAAE,aAAa,EAAsB,MAAM,qBAAqB,CAAC;AAExE,OAAO,EAAE,gBAAgB,EAAE,yBAAyB,EAAE,MAAM,WAAW,CAAC;AACxE,OAAO,EAAoB,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AACzE,OAAO,EAAoB,KAAK,UAAU,EAAE,MAAM,kBAAkB,CAAC;AACrE,OAAO,EAGL,KAAK,6BAA6B,EACnC,MAAM,sCAAsC,CAAC;AAW9C,OAAO,EAKL,KAAK,+BAA+B,EACrC,MAAM,mCAAmC,CAAC;AAoD3C,KAAK,KAAK,GAAG;IACX,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC;IAC1C,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC;IAI1C,WAAW,CAAC,EAAE,OAAO,CAAC;IAOtB,OAAO,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,OAAO,CAAC,OAAO,CAAC,CAAC;CAClD,CAAC;AAoBF,KAAK,oCAAoC,GAAG,MAAM,6BAA6B,CAAC;AAwOhF,wBAAgB,mBAAmB,CACjC,KAAK,EAAE,MAAM,CAAC,cAAc,EAC5B,MAAM,EAAE,MAAM,CAAC,cAAc,GAC5B,CAAC,QAAQ,EAAE,MAAM,KAAK,OAAO,CAAC,OAAO,CAAC,CAUxC;AAuBD,KAAK,WAAW,GAAG;IACjB,KAAK,CAAC,EAAE,UAAU,CAAC;IACnB,EAAE,CAAC,EAAE,KAAK,CAAC;IACX,KAAK,CAAC,EAAE,OAAO,gBAAgB,CAAC;IAChC,WAAW,CAAC,EAAE,OAAO,mBAAmB,CAAC;IACzC,cAAc,CAAC,EAAE,OAAO,yBAAyB,CAAC;IAGlD,aAAa,CAAC,EAAE,OAAO,aAAa,CAAC;IAGrC,6BAA6B,CAAC,EAAE,oCAAoC,CAAC;IACrE,+BAA+B,CAAC,EAAE,MAAM,+BAA+B,CAAC;CACzE,CAAC;AAEF,wBAAsB,IAAI,CAAC,IAAI,WAAwB,EAAE,OAAO,GAAE,WAAgB,GAAG,OAAO,CAAC,MAAM,CAAC,CA2yBnG;AA8uBD,wBAAgB,eAAe,CAAC,SAAS,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,SAAS,GAAG,OAAO,CAUxF"}
|