@aws-cdk/toolkit-lib 0.1.3 → 0.1.4
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/CODE_REGISTRY.md +12 -9
- package/build-info.json +2 -2
- package/db.json.gz +0 -0
- package/lib/actions/bootstrap/index.d.ts +174 -0
- package/lib/actions/bootstrap/index.js +94 -0
- package/lib/actions/bootstrap/private/helpers.d.ts +5 -0
- package/lib/actions/bootstrap/private/helpers.js +23 -0
- package/lib/actions/bootstrap/private/index.d.ts +1 -0
- package/lib/actions/bootstrap/private/index.js +18 -0
- package/lib/actions/destroy/index.d.ts +1 -1
- package/lib/actions/destroy/index.js +1 -1
- package/lib/actions/index.d.ts +1 -0
- package/lib/actions/index.js +2 -1
- package/lib/actions/list/index.d.ts +4 -0
- package/lib/actions/list/index.js +1 -1
- package/lib/api/aws-cdk.d.ts +3 -6
- package/lib/api/aws-cdk.js +710 -252
- package/lib/api/aws-cdk.js.map +4 -4
- package/lib/api/bootstrap/bootstrap-template.yaml +707 -0
- package/lib/api/cloud-assembly/context.d.ts +9 -0
- package/lib/api/cloud-assembly/context.js +3 -0
- package/lib/api/cloud-assembly/private/context-aware-source.js +3 -3
- package/lib/api/cloud-assembly/private/prepare-source.d.ts +1 -1
- package/lib/api/cloud-assembly/private/prepare-source.js +4 -3
- package/lib/api/cloud-assembly/private/source-builder.js +3 -3
- package/lib/api/io/index.d.ts +1 -2
- package/lib/api/io/index.js +1 -17
- package/lib/api/io/private/codes.d.ts +39 -59
- package/lib/api/io/private/codes.js +55 -67
- package/lib/api/io/private/index.d.ts +0 -1
- package/lib/api/io/private/index.js +1 -2
- package/lib/api/io/private/level-priority.d.ts +1 -1
- package/lib/api/io/private/level-priority.js +1 -1
- package/lib/api/io/private/logger.d.ts +3 -12
- package/lib/api/io/private/logger.js +1 -22
- package/lib/api/io/private/messages.d.ts +7 -3
- package/lib/api/io/private/messages.js +1 -2
- package/lib/api/io/private/timer.d.ts +2 -2
- package/lib/api/io/private/timer.js +13 -13
- package/lib/api/shared-private.d.ts +1 -0
- package/lib/api/shared-private.js +82 -0
- package/lib/api/shared-private.js.map +7 -0
- package/lib/api/shared-public.d.ts +130 -1
- package/lib/api/shared-public.js.map +1 -1
- package/lib/private/util.d.ts +1 -0
- package/lib/private/util.js +715 -0
- package/lib/private/util.js.map +7 -0
- package/lib/toolkit/private/index.d.ts +10 -1
- package/lib/toolkit/private/index.js +18 -1
- package/lib/toolkit/toolkit.d.ts +7 -11
- package/lib/toolkit/toolkit.js +126 -99
- package/lib/util/concurrency.d.ts +5 -0
- package/lib/util/concurrency.js +11 -0
- package/package.json +11 -11
- package/lib/api/io/io-host.d.ts +0 -15
- package/lib/api/io/io-host.js +0 -3
- package/lib/api/io/io-message.d.ts +0 -59
- package/lib/api/io/io-message.js +0 -3
- package/lib/api/io/private/types.d.ts +0 -25
- package/lib/api/io/private/types.js +0 -3
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// lib/api/shared-private.ts
|
|
21
|
+
var shared_private_exports = {};
|
|
22
|
+
__export(shared_private_exports, {
|
|
23
|
+
debug: () => debug,
|
|
24
|
+
error: () => error,
|
|
25
|
+
info: () => info,
|
|
26
|
+
result: () => result,
|
|
27
|
+
trace: () => trace,
|
|
28
|
+
warn: () => warn,
|
|
29
|
+
withAction: () => withAction
|
|
30
|
+
});
|
|
31
|
+
module.exports = __toCommonJS(shared_private_exports);
|
|
32
|
+
|
|
33
|
+
// ../tmp-toolkit-helpers/src/api/io/private/action-aware.ts
|
|
34
|
+
function withAction(ioHost, action) {
|
|
35
|
+
return {
|
|
36
|
+
notify: async (msg) => {
|
|
37
|
+
await ioHost.notify({
|
|
38
|
+
...msg,
|
|
39
|
+
action
|
|
40
|
+
});
|
|
41
|
+
},
|
|
42
|
+
requestResponse: async (msg) => {
|
|
43
|
+
return ioHost.requestResponse({
|
|
44
|
+
...msg,
|
|
45
|
+
action
|
|
46
|
+
});
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
// ../tmp-toolkit-helpers/src/api/io/private/message-maker.ts
|
|
52
|
+
function generic(level, details) {
|
|
53
|
+
const msg = (message, data) => ({
|
|
54
|
+
time: /* @__PURE__ */ new Date(),
|
|
55
|
+
level,
|
|
56
|
+
code: details.code,
|
|
57
|
+
message,
|
|
58
|
+
data
|
|
59
|
+
});
|
|
60
|
+
return {
|
|
61
|
+
...details,
|
|
62
|
+
level,
|
|
63
|
+
msg
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
var trace = (details) => generic("trace", details);
|
|
67
|
+
var debug = (details) => generic("debug", details);
|
|
68
|
+
var info = (details) => generic("info", details);
|
|
69
|
+
var warn = (details) => generic("warn", details);
|
|
70
|
+
var error = (details) => generic("error", details);
|
|
71
|
+
var result = (details) => generic("result", details);
|
|
72
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
73
|
+
0 && (module.exports = {
|
|
74
|
+
debug,
|
|
75
|
+
error,
|
|
76
|
+
info,
|
|
77
|
+
result,
|
|
78
|
+
trace,
|
|
79
|
+
warn,
|
|
80
|
+
withAction
|
|
81
|
+
});
|
|
82
|
+
//# sourceMappingURL=shared-private.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["shared-private.ts", "../../../tmp-toolkit-helpers/src/api/io/private/action-aware.ts", "../../../tmp-toolkit-helpers/src/api/io/private/message-maker.ts"],
|
|
4
|
+
"sourcesContent": ["/* eslint-disable import/no-restricted-paths */\n\nexport * from '../../../tmp-toolkit-helpers/src/api/io/private';\n", "import { IIoHost } from '../io-host';\nimport { IoMessage, IoRequest } from '../io-message';\nimport { ToolkitAction } from '../toolkit-action';\n\nexport type Optional<T, K extends keyof T> = Pick<Partial<T>, K> & Omit<T, K>;\nexport type SimplifiedMessage<T> = Pick<IoMessage<T>, 'level' | 'code' | 'message' | 'data'>;\nexport type ActionLessMessage<T> = Omit<IoMessage<T>, 'action'>;\nexport type ActionLessRequest<T, U> = Omit<IoRequest<T, U>, 'action'>;\n\n/**\n * Helper type for IoHosts that are action aware\n */\nexport interface ActionAwareIoHost extends IIoHost {\n notify<T>(msg: ActionLessMessage<T>): Promise<void>;\n requestResponse<T, U>(msg: ActionLessRequest<T, U>): Promise<U>;\n}\n\n/**\n * An IoHost wrapper that adds the given action to an actionless message before\n * sending the message to the given IoHost\n */\nexport function withAction(ioHost: IIoHost, action: ToolkitAction): ActionAwareIoHost {\n return {\n notify: async <T>(msg: Omit<IoMessage<T>, 'action'>) => {\n await ioHost.notify({\n ...msg,\n action,\n });\n },\n requestResponse: async <T, U>(msg: Omit<IoRequest<T, U>, 'action'>) => {\n return ioHost.requestResponse({\n ...msg,\n action,\n });\n },\n };\n}\n", "import { IoMessageCode, IoMessageLevel } from '../io-message';\nimport { ActionLessMessage } from './action-aware';\n\n/**\n * Information for each IO Message Code.\n */\ninterface CodeInfo {\n /**\n * The message code.\n */\n code: IoMessageCode;\n\n /**\n * A brief description of the meaning of this IO Message.\n */\n description: string;\n\n /**\n * The name of the payload interface, if applicable.\n * Some Io Messages include a payload, with a specific interface. The name of\n * the interface is specified here so that it can be linked with the message\n * when documentation is generated.\n *\n * The interface _must_ be exposed directly from toolkit-lib, so that it will\n * have a documentation page generated (that can be linked to).\n */\n interface?: string;\n}\n\n/**\n * Information for each IO Message\n */\ninterface MessageInfo extends CodeInfo {\n /**\n * The message level\n */\n level: IoMessageLevel;\n}\n\n/**\n * An interface that can produce messages for a specific code.\n */\nexport interface IoMessageMaker<T> extends MessageInfo {\n /**\n * Create a message for this code, with or without payload.\n */\n msg: [T] extends [never] ? (message: string) => ActionLessMessage<never> : (message: string, data: T) => ActionLessMessage<T>;\n}\n\n/**\n * Produce an IoMessageMaker for the provided level and code info.\n */\nfunction generic<T = never>(level: IoMessageLevel, details: CodeInfo): IoMessageMaker<T> {\n const msg = (message: string, data: T) => ({\n time: new Date(),\n level,\n code: details.code,\n message: message,\n data: data,\n } as ActionLessMessage<T>);\n\n return {\n ...details,\n level,\n msg: msg as any,\n };\n}\n\n// Create `IoMessageMaker`s for a given level and type check that calls with payload are using the correct interface\ntype CodeInfoMaybeInterface<T> = [T] extends [never] ? Omit<CodeInfo, 'interface'> : Required<CodeInfo>;\n\nexport const trace = <T = never>(details: CodeInfoMaybeInterface<T>) => generic<T>('trace', details);\nexport const debug = <T = never>(details: CodeInfoMaybeInterface<T>) => generic<T>('debug', details);\nexport const info = <T = never>(details: CodeInfoMaybeInterface<T>) => generic<T>('info', details);\nexport const warn = <T = never>(details: CodeInfoMaybeInterface<T>) => generic<T>('warn', details);\nexport const error = <T = never>(details: CodeInfoMaybeInterface<T>) => generic<T>('error', details);\nexport const result = <T extends object>(details: Required<CodeInfo>) => generic<T extends object ? T : never>('result', details);\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACqBO,SAAS,WAAW,QAAiB,QAA0C;AACpF,SAAO;AAAA,IACL,QAAQ,OAAU,QAAsC;AACtD,YAAM,OAAO,OAAO;AAAA,QAClB,GAAG;AAAA,QACH;AAAA,MACF,CAAC;AAAA,IACH;AAAA,IACA,iBAAiB,OAAa,QAAyC;AACrE,aAAO,OAAO,gBAAgB;AAAA,QAC5B,GAAG;AAAA,QACH;AAAA,MACF,CAAC;AAAA,IACH;AAAA,EACF;AACF;;;ACgBA,SAAS,QAAmB,OAAuB,SAAsC;AACvF,QAAM,MAAM,CAAC,SAAiB,UAAa;AAAA,IACzC,MAAM,oBAAI,KAAK;AAAA,IACf;AAAA,IACA,MAAM,QAAQ;AAAA,IACd;AAAA,IACA;AAAA,EACF;AAEA,SAAO;AAAA,IACL,GAAG;AAAA,IACH;AAAA,IACA;AAAA,EACF;AACF;AAKO,IAAM,QAAQ,CAAY,YAAuC,QAAW,SAAS,OAAO;AAC5F,IAAM,QAAQ,CAAY,YAAuC,QAAW,SAAS,OAAO;AAC5F,IAAM,OAAO,CAAY,YAAuC,QAAW,QAAQ,OAAO;AAC1F,IAAM,OAAO,CAAY,YAAuC,QAAW,QAAQ,OAAO;AAC1F,IAAM,QAAQ,CAAY,YAAuC,QAAW,SAAS,OAAO;AAC5F,IAAM,SAAS,CAAmB,YAAgC,QAAsC,UAAU,OAAO;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
|
@@ -1 +1,130 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* The current action being performed by the CLI. 'none' represents the absence of an action.
|
|
3
|
+
*/
|
|
4
|
+
export type ToolkitAction = "assembly" | "bootstrap" | "synth" | "list" | "diff" | "deploy" | "rollback" | "watch" | "destroy" | "doctor" | "gc" | "import" | "metadata" | "init" | "migrate";
|
|
5
|
+
/**
|
|
6
|
+
* The reporting level of the message.
|
|
7
|
+
* All messages are always reported, it's up to the IoHost to decide what to log.
|
|
8
|
+
*/
|
|
9
|
+
export type IoMessageLevel = "error" | "result" | "warn" | "info" | "debug" | "trace";
|
|
10
|
+
/**
|
|
11
|
+
* A valid message code.
|
|
12
|
+
*/
|
|
13
|
+
export type IoMessageCode = `CDK_${string}_${"E" | "W" | "I"}${number}${number}${number}${number}`;
|
|
14
|
+
/**
|
|
15
|
+
* An IO message emitted.
|
|
16
|
+
*/
|
|
17
|
+
export interface IoMessage<T> {
|
|
18
|
+
/**
|
|
19
|
+
* The time the message was emitted.
|
|
20
|
+
*/
|
|
21
|
+
readonly time: Date;
|
|
22
|
+
/**
|
|
23
|
+
* The recommended log level of the message.
|
|
24
|
+
*
|
|
25
|
+
* This is an indicative level and should not be used to explicitly match messages, instead match the `code`.
|
|
26
|
+
* The level of a message may change without notice.
|
|
27
|
+
*/
|
|
28
|
+
readonly level: IoMessageLevel;
|
|
29
|
+
/**
|
|
30
|
+
* The action that triggered the message.
|
|
31
|
+
*/
|
|
32
|
+
readonly action: ToolkitAction;
|
|
33
|
+
/**
|
|
34
|
+
* A short message code uniquely identifying a message type using the format CDK_[CATEGORY]_[E/W/I][0000-9999].
|
|
35
|
+
*
|
|
36
|
+
* The level indicator follows these rules:
|
|
37
|
+
* - 'E' for error level messages
|
|
38
|
+
* - 'W' for warning level messages
|
|
39
|
+
* - 'I' for info/debug/trace level messages
|
|
40
|
+
*
|
|
41
|
+
* Codes ending in 000 0 are generic messages, while codes ending in 0001-9999 are specific to a particular message.
|
|
42
|
+
* The following are examples of valid and invalid message codes:
|
|
43
|
+
* ```ts
|
|
44
|
+
* 'CDK_ASSETS_I0000' // valid: generic assets info message
|
|
45
|
+
* 'CDK_TOOLKIT_E0002' // valid: specific toolkit error message
|
|
46
|
+
* 'CDK_SDK_W0023' // valid: specific sdk warning message
|
|
47
|
+
* ```
|
|
48
|
+
*
|
|
49
|
+
* @see https://github.com/aws/aws-cdk-cli/blob/main/packages/%40aws-cdk/toolkit-lib/CODE_REGISTRY.md
|
|
50
|
+
*/
|
|
51
|
+
readonly code: IoMessageCode;
|
|
52
|
+
/**
|
|
53
|
+
* The message text.
|
|
54
|
+
* This is safe to print to an end-user.
|
|
55
|
+
*/
|
|
56
|
+
readonly message: string;
|
|
57
|
+
/**
|
|
58
|
+
* The data attached to the message.
|
|
59
|
+
*/
|
|
60
|
+
readonly data?: T;
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* An IO request emitted.
|
|
64
|
+
*/
|
|
65
|
+
export interface IoRequest<T, U> extends IoMessage<T> {
|
|
66
|
+
/**
|
|
67
|
+
* The default response that will be used if no data is returned.
|
|
68
|
+
*/
|
|
69
|
+
readonly defaultResponse: U;
|
|
70
|
+
}
|
|
71
|
+
export interface IIoHost {
|
|
72
|
+
/**
|
|
73
|
+
* Notifies the host of a message.
|
|
74
|
+
* The caller waits until the notification completes.
|
|
75
|
+
*/
|
|
76
|
+
notify<T>(msg: IoMessage<T>): Promise<void>;
|
|
77
|
+
/**
|
|
78
|
+
* Notifies the host of a message that requires a response.
|
|
79
|
+
*
|
|
80
|
+
* If the host does not return a response the suggested
|
|
81
|
+
* default response from the input message will be used.
|
|
82
|
+
*/
|
|
83
|
+
requestResponse<T, U>(msg: IoRequest<T, U>): Promise<U>;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* Represents a general toolkit error in the AWS CDK Toolkit.
|
|
87
|
+
*/
|
|
88
|
+
export declare class ToolkitError extends Error {
|
|
89
|
+
/**
|
|
90
|
+
* Determines if a given error is an instance of ToolkitError.
|
|
91
|
+
*/
|
|
92
|
+
static isToolkitError(x: any): x is ToolkitError;
|
|
93
|
+
/**
|
|
94
|
+
* Determines if a given error is an instance of AuthenticationError.
|
|
95
|
+
*/
|
|
96
|
+
static isAuthenticationError(x: any): x is AuthenticationError;
|
|
97
|
+
/**
|
|
98
|
+
* Determines if a given error is an instance of AssemblyError.
|
|
99
|
+
*/
|
|
100
|
+
static isAssemblyError(x: any): x is AssemblyError;
|
|
101
|
+
/**
|
|
102
|
+
* Determines if a given error is an instance of AssemblyError.
|
|
103
|
+
*/
|
|
104
|
+
static isContextProviderError(x: any): x is ContextProviderError;
|
|
105
|
+
/**
|
|
106
|
+
* The type of the error, defaults to "toolkit".
|
|
107
|
+
*/
|
|
108
|
+
readonly type: string;
|
|
109
|
+
constructor(message: string, type?: string);
|
|
110
|
+
}
|
|
111
|
+
/**
|
|
112
|
+
* Represents an authentication-specific error in the AWS CDK Toolkit.
|
|
113
|
+
*/
|
|
114
|
+
export declare class AuthenticationError extends ToolkitError {
|
|
115
|
+
constructor(message: string);
|
|
116
|
+
}
|
|
117
|
+
/**
|
|
118
|
+
* Represents an authentication-specific error in the AWS CDK Toolkit.
|
|
119
|
+
*/
|
|
120
|
+
export declare class AssemblyError extends ToolkitError {
|
|
121
|
+
constructor(message: string);
|
|
122
|
+
}
|
|
123
|
+
/**
|
|
124
|
+
* Represents an error originating from a Context Provider
|
|
125
|
+
*/
|
|
126
|
+
export declare class ContextProviderError extends ToolkitError {
|
|
127
|
+
constructor(message: string);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["shared-public.ts", "../../../tmp-toolkit-helpers/src/api/toolkit-error.ts"],
|
|
4
|
-
"sourcesContent": ["/* eslint-disable import/no-restricted-paths */\n\
|
|
4
|
+
"sourcesContent": ["/* eslint-disable import/no-restricted-paths */\n\nexport * from '../../../tmp-toolkit-helpers/src/api';\n", "const TOOLKIT_ERROR_SYMBOL = Symbol.for('@aws-cdk/toolkit.ToolkitError');\nconst AUTHENTICATION_ERROR_SYMBOL = Symbol.for('@aws-cdk/toolkit.AuthenticationError');\nconst ASSEMBLY_ERROR_SYMBOL = Symbol.for('@aws-cdk/toolkit.AssemblyError');\nconst CONTEXT_PROVIDER_ERROR_SYMBOL = Symbol.for('@aws-cdk/toolkit.ContextProviderError');\n\n/**\n * Represents a general toolkit error in the AWS CDK Toolkit.\n */\nexport class ToolkitError extends Error {\n /**\n * Determines if a given error is an instance of ToolkitError.\n */\n public static isToolkitError(x: any): x is ToolkitError {\n return x !== null && typeof(x) === 'object' && TOOLKIT_ERROR_SYMBOL in x;\n }\n\n /**\n * Determines if a given error is an instance of AuthenticationError.\n */\n public static isAuthenticationError(x: any): x is AuthenticationError {\n return this.isToolkitError(x) && AUTHENTICATION_ERROR_SYMBOL in x;\n }\n\n /**\n * Determines if a given error is an instance of AssemblyError.\n */\n public static isAssemblyError(x: any): x is AssemblyError {\n return this.isToolkitError(x) && ASSEMBLY_ERROR_SYMBOL in x;\n }\n\n /**\n * Determines if a given error is an instance of AssemblyError.\n */\n public static isContextProviderError(x: any): x is ContextProviderError {\n return this.isToolkitError(x) && CONTEXT_PROVIDER_ERROR_SYMBOL in x;\n }\n\n /**\n * The type of the error, defaults to \"toolkit\".\n */\n public readonly type: string;\n\n constructor(message: string, type: string = 'toolkit') {\n super(message);\n Object.setPrototypeOf(this, ToolkitError.prototype);\n Object.defineProperty(this, TOOLKIT_ERROR_SYMBOL, { value: true });\n this.name = new.target.name;\n this.type = type;\n }\n}\n\n/**\n * Represents an authentication-specific error in the AWS CDK Toolkit.\n */\nexport class AuthenticationError extends ToolkitError {\n constructor(message: string) {\n super(message, 'authentication');\n Object.setPrototypeOf(this, AuthenticationError.prototype);\n Object.defineProperty(this, AUTHENTICATION_ERROR_SYMBOL, { value: true });\n }\n}\n\n/**\n * Represents an authentication-specific error in the AWS CDK Toolkit.\n */\nexport class AssemblyError extends ToolkitError {\n constructor(message: string) {\n super(message, 'assembly');\n Object.setPrototypeOf(this, AssemblyError.prototype);\n Object.defineProperty(this, ASSEMBLY_ERROR_SYMBOL, { value: true });\n }\n}\n\n/**\n * Represents an error originating from a Context Provider\n */\nexport class ContextProviderError extends ToolkitError {\n constructor(message: string) {\n super(message, 'context-provider');\n Object.setPrototypeOf(this, ContextProviderError.prototype);\n Object.defineProperty(this, CONTEXT_PROVIDER_ERROR_SYMBOL, { value: true });\n }\n}\n"],
|
|
5
5
|
"mappings": ";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA,IAAM,uBAAuB,OAAO,IAAI,+BAA+B;AACvE,IAAM,8BAA8B,OAAO,IAAI,sCAAsC;AACrF,IAAM,wBAAwB,OAAO,IAAI,gCAAgC;AACzE,IAAM,gCAAgC,OAAO,IAAI,uCAAuC;AAKjF,IAAM,eAAN,MAAM,sBAAqB,MAAM;AAAA;AAAA;AAAA;AAAA,EAItC,OAAc,eAAe,GAA2B;AACtD,WAAO,MAAM,QAAQ,OAAO,MAAO,YAAY,wBAAwB;AAAA,EACzE;AAAA;AAAA;AAAA;AAAA,EAKA,OAAc,sBAAsB,GAAkC;AACpE,WAAO,KAAK,eAAe,CAAC,KAAK,+BAA+B;AAAA,EAClE;AAAA;AAAA;AAAA;AAAA,EAKA,OAAc,gBAAgB,GAA4B;AACxD,WAAO,KAAK,eAAe,CAAC,KAAK,yBAAyB;AAAA,EAC5D;AAAA;AAAA;AAAA;AAAA,EAKA,OAAc,uBAAuB,GAAmC;AACtE,WAAO,KAAK,eAAe,CAAC,KAAK,iCAAiC;AAAA,EACpE;AAAA;AAAA;AAAA;AAAA,EAKgB;AAAA,EAEhB,YAAY,SAAiB,OAAe,WAAW;AACrD,UAAM,OAAO;AACb,WAAO,eAAe,MAAM,cAAa,SAAS;AAClD,WAAO,eAAe,MAAM,sBAAsB,EAAE,OAAO,KAAK,CAAC;AACjE,SAAK,OAAO,WAAW;AACvB,SAAK,OAAO;AAAA,EACd;AACF;AAKO,IAAM,sBAAN,MAAM,6BAA4B,aAAa;AAAA,EACpD,YAAY,SAAiB;AAC3B,UAAM,SAAS,gBAAgB;AAC/B,WAAO,eAAe,MAAM,qBAAoB,SAAS;AACzD,WAAO,eAAe,MAAM,6BAA6B,EAAE,OAAO,KAAK,CAAC;AAAA,EAC1E;AACF;AAKO,IAAM,gBAAN,MAAM,uBAAsB,aAAa;AAAA,EAC9C,YAAY,SAAiB;AAC3B,UAAM,SAAS,UAAU;AACzB,WAAO,eAAe,MAAM,eAAc,SAAS;AACnD,WAAO,eAAe,MAAM,uBAAuB,EAAE,OAAO,KAAK,CAAC;AAAA,EACpE;AACF;AAKO,IAAM,uBAAN,MAAM,8BAA6B,aAAa;AAAA,EACrD,YAAY,SAAiB;AAC3B,UAAM,SAAS,kBAAkB;AACjC,WAAO,eAAe,MAAM,sBAAqB,SAAS;AAC1D,WAAO,eAAe,MAAM,+BAA+B,EAAE,OAAO,KAAK,CAAC;AAAA,EAC5E;AACF;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../../../tmp-toolkit-helpers/src/util';
|