@dxos/errors 0.8.4-main.84f28bd → 0.8.4-main.b97322e
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/lib/browser/index.mjs +19 -0
- package/dist/lib/browser/index.mjs.map +3 -3
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/node-esm/index.mjs +19 -0
- package/dist/lib/node-esm/index.mjs.map +3 -3
- package/dist/lib/node-esm/meta.json +1 -1
- package/dist/types/src/base.d.ts +35 -10
- package/dist/types/src/base.d.ts.map +1 -1
- package/dist/types/src/errors.d.ts +276 -30
- package/dist/types/src/errors.d.ts.map +1 -1
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/base.ts +27 -6
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
// src/base.ts
|
|
2
2
|
var BaseError = class _BaseError extends Error {
|
|
3
|
+
/**
|
|
4
|
+
* Primary way of defining new error classes.
|
|
5
|
+
*
|
|
6
|
+
* Expample:
|
|
7
|
+
*
|
|
8
|
+
* ```ts
|
|
9
|
+
* export class AiInputPreprocessingError extends BaseError.extend('AI_INPUT_PREPROCESSING_ERROR') {}
|
|
10
|
+
* ```
|
|
11
|
+
*/
|
|
3
12
|
static extend(code) {
|
|
4
13
|
return class extends _BaseError {
|
|
5
14
|
static {
|
|
@@ -8,6 +17,12 @@ var BaseError = class _BaseError extends Error {
|
|
|
8
17
|
static is(error) {
|
|
9
18
|
return typeof error === "object" && error !== null && "code" in error && error.code === code;
|
|
10
19
|
}
|
|
20
|
+
static wrap(message, options) {
|
|
21
|
+
return (error) => new this(message, {
|
|
22
|
+
...options,
|
|
23
|
+
cause: error
|
|
24
|
+
});
|
|
25
|
+
}
|
|
11
26
|
constructor(message, options) {
|
|
12
27
|
super(code, message, options);
|
|
13
28
|
}
|
|
@@ -27,6 +42,10 @@ var BaseError = class _BaseError extends Error {
|
|
|
27
42
|
get code() {
|
|
28
43
|
return this.#code;
|
|
29
44
|
}
|
|
45
|
+
// For effect error matching.
|
|
46
|
+
get _tag() {
|
|
47
|
+
return this.#code;
|
|
48
|
+
}
|
|
30
49
|
get context() {
|
|
31
50
|
return this.#context;
|
|
32
51
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/base.ts", "../../../src/errors.ts"],
|
|
4
|
-
"sourcesContent": ["//\n// Copyright 2025 DXOS.org\n//\n\nexport type BaseErrorOptions = {\n /**\n * The cause of the error.\n * An instance of Error.\n */\n cause?: unknown;\n\n /**\n * Structured details about the error.\n */\n context?: Record<string, unknown>;\n};\n\nexport class BaseError extends Error {\n static extend(code:
|
|
5
|
-
"mappings": ";
|
|
6
|
-
"names": ["BaseError", "Error", "extend", "code", "is", "error", "message", "options", "context", "Object", "setPrototypeOf", "prototype", "name", "TimeoutError", "BaseError", "extend", "AbortedError", "UnimplementedError", "ApiError", "SystemError", "InternalError"]
|
|
4
|
+
"sourcesContent": ["//\n// Copyright 2025 DXOS.org\n//\n\nexport type BaseErrorOptions = {\n /**\n * The cause of the error.\n * An instance of Error.\n */\n cause?: unknown;\n\n /**\n * Structured details about the error.\n */\n context?: Record<string, unknown>;\n};\n\n/**\n * Base class for all DXOS errors.\n */\nexport class BaseError<Code extends string = string> extends Error {\n /**\n * Primary way of defining new error classes.\n *\n * Expample:\n *\n * ```ts\n * export class AiInputPreprocessingError extends BaseError.extend('AI_INPUT_PREPROCESSING_ERROR') {}\n * ```\n */\n static extend<Code extends string>(code: Code) {\n return class extends BaseError<Code> {\n static code = code;\n\n static is(error: unknown): error is BaseError {\n return typeof error === 'object' && error !== null && 'code' in error && error.code === code;\n }\n\n static wrap(message: string, options?: Omit<BaseErrorOptions, 'cause'>) {\n return (error: unknown) => new this(message, { ...options, cause: error });\n }\n\n constructor(message: string, options?: BaseErrorOptions) {\n super(code, message, options);\n }\n };\n }\n\n #code: Code;\n #context: Record<string, unknown>;\n\n constructor(code: Code, message: string, options?: BaseErrorOptions) {\n super(message, options);\n\n this.#code = code;\n this.#context = options?.context ?? {};\n Object.setPrototypeOf(this, new.target.prototype);\n }\n\n override get name() {\n return this.#code;\n }\n\n get code(): Code {\n return this.#code;\n }\n\n // For effect error matching.\n get _tag(): Code {\n return this.#code;\n }\n\n get context() {\n return this.#context;\n }\n}\n", "//\n// Copyright 2025 DXOS.org\n//\n\nimport { BaseError } from './base';\n\nexport class TimeoutError extends BaseError.extend('TIMEOUT') {}\n\nexport class AbortedError extends BaseError.extend('ABORTED') {}\n\nexport class UnimplementedError extends BaseError.extend('UNIMPLEMENTED') {}\n\nexport class ApiError extends BaseError.extend('API_ERROR') {}\n\nexport class SystemError extends BaseError.extend('SYSTEM_ERROR') {}\n\nexport class InternalError extends BaseError.extend('INTERNAL_ERROR') {}\n"],
|
|
5
|
+
"mappings": ";AAoBO,IAAMA,YAAN,MAAMA,mBAAgDC,MAAAA;;;;;;;;;;EAU3D,OAAOC,OAA4BC,MAAY;AAC7C,WAAO,cAAcH,WAAAA;MACnB;aAAOG,OAAOA;;MAEd,OAAOC,GAAGC,OAAoC;AAC5C,eAAO,OAAOA,UAAU,YAAYA,UAAU,QAAQ,UAAUA,SAASA,MAAMF,SAASA;MAC1F;MAEA,OAAOG,KAAKC,SAAiBC,SAA2C;AACtE,eAAO,CAACH,UAAmB,IAAI,KAAKE,SAAS;UAAE,GAAGC;UAASC,OAAOJ;QAAM,CAAA;MAC1E;MAEA,YAAYE,SAAiBC,SAA4B;AACvD,cAAML,MAAMI,SAASC,OAAAA;MACvB;IACF;EACF;EAEA;EACA;EAEA,YAAYL,MAAYI,SAAiBC,SAA4B;AACnE,UAAMD,SAASC,OAAAA;AAEf,SAAK,QAAQL;AACb,SAAK,WAAWK,SAASE,WAAW,CAAC;AACrCC,WAAOC,eAAe,MAAM,WAAWC,SAAS;EAClD;EAEA,IAAaC,OAAO;AAClB,WAAO,KAAK;EACd;EAEA,IAAIX,OAAa;AACf,WAAO,KAAK;EACd;;EAGA,IAAIY,OAAa;AACf,WAAO,KAAK;EACd;EAEA,IAAIL,UAAU;AACZ,WAAO,KAAK;EACd;AACF;;;ACrEO,IAAMM,eAAN,cAA2BC,UAAUC,OAAO,SAAA,EAAA;AAAY;AAExD,IAAMC,eAAN,cAA2BF,UAAUC,OAAO,SAAA,EAAA;AAAY;AAExD,IAAME,qBAAN,cAAiCH,UAAUC,OAAO,eAAA,EAAA;AAAkB;AAEpE,IAAMG,WAAN,cAAuBJ,UAAUC,OAAO,WAAA,EAAA;AAAc;AAEtD,IAAMI,cAAN,cAA0BL,UAAUC,OAAO,cAAA,EAAA;AAAiB;AAE5D,IAAMK,gBAAN,cAA4BN,UAAUC,OAAO,gBAAA,EAAA;AAAmB;",
|
|
6
|
+
"names": ["BaseError", "Error", "extend", "code", "is", "error", "wrap", "message", "options", "cause", "context", "Object", "setPrototypeOf", "prototype", "name", "_tag", "TimeoutError", "BaseError", "extend", "AbortedError", "UnimplementedError", "ApiError", "SystemError", "InternalError"]
|
|
7
7
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"src/base.ts":{"bytes":
|
|
1
|
+
{"inputs":{"src/base.ts":{"bytes":5372,"imports":[],"format":"esm"},"src/errors.ts":{"bytes":2000,"imports":[{"path":"src/base.ts","kind":"import-statement","original":"./base"}],"format":"esm"},"src/index.ts":{"bytes":523,"imports":[{"path":"src/base.ts","kind":"import-statement","original":"./base"},{"path":"src/errors.ts","kind":"import-statement","original":"./errors"}],"format":"esm"}},"outputs":{"dist/lib/browser/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":3670},"dist/lib/browser/index.mjs":{"imports":[],"exports":["AbortedError","ApiError","BaseError","InternalError","SystemError","TimeoutError","UnimplementedError"],"entryPoint":"src/index.ts","inputs":{"src/base.ts":{"bytesInOutput":1166},"src/index.ts":{"bytesInOutput":0},"src/errors.ts":{"bytesInOutput":418}},"bytes":1774}}}
|
|
@@ -2,6 +2,15 @@ import { createRequire } from 'node:module';const require = createRequire(import
|
|
|
2
2
|
|
|
3
3
|
// src/base.ts
|
|
4
4
|
var BaseError = class _BaseError extends Error {
|
|
5
|
+
/**
|
|
6
|
+
* Primary way of defining new error classes.
|
|
7
|
+
*
|
|
8
|
+
* Expample:
|
|
9
|
+
*
|
|
10
|
+
* ```ts
|
|
11
|
+
* export class AiInputPreprocessingError extends BaseError.extend('AI_INPUT_PREPROCESSING_ERROR') {}
|
|
12
|
+
* ```
|
|
13
|
+
*/
|
|
5
14
|
static extend(code) {
|
|
6
15
|
return class extends _BaseError {
|
|
7
16
|
static {
|
|
@@ -10,6 +19,12 @@ var BaseError = class _BaseError extends Error {
|
|
|
10
19
|
static is(error) {
|
|
11
20
|
return typeof error === "object" && error !== null && "code" in error && error.code === code;
|
|
12
21
|
}
|
|
22
|
+
static wrap(message, options) {
|
|
23
|
+
return (error) => new this(message, {
|
|
24
|
+
...options,
|
|
25
|
+
cause: error
|
|
26
|
+
});
|
|
27
|
+
}
|
|
13
28
|
constructor(message, options) {
|
|
14
29
|
super(code, message, options);
|
|
15
30
|
}
|
|
@@ -29,6 +44,10 @@ var BaseError = class _BaseError extends Error {
|
|
|
29
44
|
get code() {
|
|
30
45
|
return this.#code;
|
|
31
46
|
}
|
|
47
|
+
// For effect error matching.
|
|
48
|
+
get _tag() {
|
|
49
|
+
return this.#code;
|
|
50
|
+
}
|
|
32
51
|
get context() {
|
|
33
52
|
return this.#context;
|
|
34
53
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/base.ts", "../../../src/errors.ts"],
|
|
4
|
-
"sourcesContent": ["//\n// Copyright 2025 DXOS.org\n//\n\nexport type BaseErrorOptions = {\n /**\n * The cause of the error.\n * An instance of Error.\n */\n cause?: unknown;\n\n /**\n * Structured details about the error.\n */\n context?: Record<string, unknown>;\n};\n\nexport class BaseError extends Error {\n static extend(code:
|
|
5
|
-
"mappings": ";;;
|
|
6
|
-
"names": ["BaseError", "Error", "extend", "code", "is", "error", "message", "options", "context", "Object", "setPrototypeOf", "prototype", "name", "TimeoutError", "BaseError", "extend", "AbortedError", "UnimplementedError", "ApiError", "SystemError", "InternalError"]
|
|
4
|
+
"sourcesContent": ["//\n// Copyright 2025 DXOS.org\n//\n\nexport type BaseErrorOptions = {\n /**\n * The cause of the error.\n * An instance of Error.\n */\n cause?: unknown;\n\n /**\n * Structured details about the error.\n */\n context?: Record<string, unknown>;\n};\n\n/**\n * Base class for all DXOS errors.\n */\nexport class BaseError<Code extends string = string> extends Error {\n /**\n * Primary way of defining new error classes.\n *\n * Expample:\n *\n * ```ts\n * export class AiInputPreprocessingError extends BaseError.extend('AI_INPUT_PREPROCESSING_ERROR') {}\n * ```\n */\n static extend<Code extends string>(code: Code) {\n return class extends BaseError<Code> {\n static code = code;\n\n static is(error: unknown): error is BaseError {\n return typeof error === 'object' && error !== null && 'code' in error && error.code === code;\n }\n\n static wrap(message: string, options?: Omit<BaseErrorOptions, 'cause'>) {\n return (error: unknown) => new this(message, { ...options, cause: error });\n }\n\n constructor(message: string, options?: BaseErrorOptions) {\n super(code, message, options);\n }\n };\n }\n\n #code: Code;\n #context: Record<string, unknown>;\n\n constructor(code: Code, message: string, options?: BaseErrorOptions) {\n super(message, options);\n\n this.#code = code;\n this.#context = options?.context ?? {};\n Object.setPrototypeOf(this, new.target.prototype);\n }\n\n override get name() {\n return this.#code;\n }\n\n get code(): Code {\n return this.#code;\n }\n\n // For effect error matching.\n get _tag(): Code {\n return this.#code;\n }\n\n get context() {\n return this.#context;\n }\n}\n", "//\n// Copyright 2025 DXOS.org\n//\n\nimport { BaseError } from './base';\n\nexport class TimeoutError extends BaseError.extend('TIMEOUT') {}\n\nexport class AbortedError extends BaseError.extend('ABORTED') {}\n\nexport class UnimplementedError extends BaseError.extend('UNIMPLEMENTED') {}\n\nexport class ApiError extends BaseError.extend('API_ERROR') {}\n\nexport class SystemError extends BaseError.extend('SYSTEM_ERROR') {}\n\nexport class InternalError extends BaseError.extend('INTERNAL_ERROR') {}\n"],
|
|
5
|
+
"mappings": ";;;AAoBO,IAAMA,YAAN,MAAMA,mBAAgDC,MAAAA;;;;;;;;;;EAU3D,OAAOC,OAA4BC,MAAY;AAC7C,WAAO,cAAcH,WAAAA;MACnB;aAAOG,OAAOA;;MAEd,OAAOC,GAAGC,OAAoC;AAC5C,eAAO,OAAOA,UAAU,YAAYA,UAAU,QAAQ,UAAUA,SAASA,MAAMF,SAASA;MAC1F;MAEA,OAAOG,KAAKC,SAAiBC,SAA2C;AACtE,eAAO,CAACH,UAAmB,IAAI,KAAKE,SAAS;UAAE,GAAGC;UAASC,OAAOJ;QAAM,CAAA;MAC1E;MAEA,YAAYE,SAAiBC,SAA4B;AACvD,cAAML,MAAMI,SAASC,OAAAA;MACvB;IACF;EACF;EAEA;EACA;EAEA,YAAYL,MAAYI,SAAiBC,SAA4B;AACnE,UAAMD,SAASC,OAAAA;AAEf,SAAK,QAAQL;AACb,SAAK,WAAWK,SAASE,WAAW,CAAC;AACrCC,WAAOC,eAAe,MAAM,WAAWC,SAAS;EAClD;EAEA,IAAaC,OAAO;AAClB,WAAO,KAAK;EACd;EAEA,IAAIX,OAAa;AACf,WAAO,KAAK;EACd;;EAGA,IAAIY,OAAa;AACf,WAAO,KAAK;EACd;EAEA,IAAIL,UAAU;AACZ,WAAO,KAAK;EACd;AACF;;;ACrEO,IAAMM,eAAN,cAA2BC,UAAUC,OAAO,SAAA,EAAA;AAAY;AAExD,IAAMC,eAAN,cAA2BF,UAAUC,OAAO,SAAA,EAAA;AAAY;AAExD,IAAME,qBAAN,cAAiCH,UAAUC,OAAO,eAAA,EAAA;AAAkB;AAEpE,IAAMG,WAAN,cAAuBJ,UAAUC,OAAO,WAAA,EAAA;AAAc;AAEtD,IAAMI,cAAN,cAA0BL,UAAUC,OAAO,cAAA,EAAA;AAAiB;AAE5D,IAAMK,gBAAN,cAA4BN,UAAUC,OAAO,gBAAA,EAAA;AAAmB;",
|
|
6
|
+
"names": ["BaseError", "Error", "extend", "code", "is", "error", "wrap", "message", "options", "cause", "context", "Object", "setPrototypeOf", "prototype", "name", "_tag", "TimeoutError", "BaseError", "extend", "AbortedError", "UnimplementedError", "ApiError", "SystemError", "InternalError"]
|
|
7
7
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"src/base.ts":{"bytes":
|
|
1
|
+
{"inputs":{"src/base.ts":{"bytes":5372,"imports":[],"format":"esm"},"src/errors.ts":{"bytes":2000,"imports":[{"path":"src/base.ts","kind":"import-statement","original":"./base"}],"format":"esm"},"src/index.ts":{"bytes":523,"imports":[{"path":"src/base.ts","kind":"import-statement","original":"./base"},{"path":"src/errors.ts","kind":"import-statement","original":"./errors"}],"format":"esm"}},"outputs":{"dist/lib/node-esm/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":3672},"dist/lib/node-esm/index.mjs":{"imports":[],"exports":["AbortedError","ApiError","BaseError","InternalError","SystemError","TimeoutError","UnimplementedError"],"entryPoint":"src/index.ts","inputs":{"src/base.ts":{"bytesInOutput":1166},"src/index.ts":{"bytesInOutput":0},"src/errors.ts":{"bytesInOutput":418}},"bytes":1867}}}
|
package/dist/types/src/base.d.ts
CHANGED
|
@@ -9,29 +9,54 @@ export type BaseErrorOptions = {
|
|
|
9
9
|
*/
|
|
10
10
|
context?: Record<string, unknown>;
|
|
11
11
|
};
|
|
12
|
-
|
|
12
|
+
/**
|
|
13
|
+
* Base class for all DXOS errors.
|
|
14
|
+
*/
|
|
15
|
+
export declare class BaseError<Code extends string = string> extends Error {
|
|
13
16
|
#private;
|
|
14
|
-
|
|
17
|
+
/**
|
|
18
|
+
* Primary way of defining new error classes.
|
|
19
|
+
*
|
|
20
|
+
* Expample:
|
|
21
|
+
*
|
|
22
|
+
* ```ts
|
|
23
|
+
* export class AiInputPreprocessingError extends BaseError.extend('AI_INPUT_PREPROCESSING_ERROR') {}
|
|
24
|
+
* ```
|
|
25
|
+
*/
|
|
26
|
+
static extend<Code extends string>(code: Code): {
|
|
15
27
|
new (message: string, options?: BaseErrorOptions): {
|
|
16
|
-
"__#1@#code":
|
|
28
|
+
"__#1@#code": Code;
|
|
17
29
|
"__#1@#context": Record<string, unknown>;
|
|
18
|
-
readonly name:
|
|
19
|
-
readonly code:
|
|
30
|
+
readonly name: Code;
|
|
31
|
+
readonly code: Code;
|
|
32
|
+
readonly _tag: Code;
|
|
20
33
|
readonly context: Record<string, unknown>;
|
|
21
34
|
message: string;
|
|
22
35
|
stack?: string;
|
|
23
36
|
cause?: unknown;
|
|
24
37
|
};
|
|
25
|
-
code:
|
|
38
|
+
code: Code;
|
|
26
39
|
is(error: unknown): error is BaseError;
|
|
27
|
-
|
|
40
|
+
wrap(message: string, options?: Omit<BaseErrorOptions, "cause">): (error: unknown) => {
|
|
41
|
+
"__#1@#code": Code;
|
|
42
|
+
"__#1@#context": Record<string, unknown>;
|
|
43
|
+
readonly name: Code;
|
|
44
|
+
readonly code: Code;
|
|
45
|
+
readonly _tag: Code;
|
|
46
|
+
readonly context: Record<string, unknown>;
|
|
47
|
+
message: string;
|
|
48
|
+
stack?: string;
|
|
49
|
+
cause?: unknown;
|
|
50
|
+
};
|
|
51
|
+
extend<Code extends string>(code: Code): /*elided*/ any;
|
|
28
52
|
captureStackTrace(targetObject: object, constructorOpt?: Function): void;
|
|
29
53
|
prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
|
|
30
54
|
stackTraceLimit: number;
|
|
31
55
|
};
|
|
32
|
-
constructor(code:
|
|
33
|
-
get name():
|
|
34
|
-
get code():
|
|
56
|
+
constructor(code: Code, message: string, options?: BaseErrorOptions);
|
|
57
|
+
get name(): Code;
|
|
58
|
+
get code(): Code;
|
|
59
|
+
get _tag(): Code;
|
|
35
60
|
get context(): Record<string, unknown>;
|
|
36
61
|
}
|
|
37
62
|
//# sourceMappingURL=base.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../src/base.ts"],"names":[],"mappings":"AAIA,MAAM,MAAM,gBAAgB,GAAG;IAC7B;;;OAGG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAEhB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CACnC,CAAC;AAEF,qBAAa,
|
|
1
|
+
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../src/base.ts"],"names":[],"mappings":"AAIA,MAAM,MAAM,gBAAgB,GAAG;IAC7B;;;OAGG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAEhB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CACnC,CAAC;AAEF;;GAEG;AACH,qBAAa,SAAS,CAAC,IAAI,SAAS,MAAM,GAAG,MAAM,CAAE,SAAQ,KAAK;;IAChE;;;;;;;;OAQG;IACH,MAAM,CAAC,MAAM,CAAC,IAAI,SAAS,MAAM,EAAE,IAAI,EAAE,IAAI;sBAYpB,MAAM,YAAY,gBAAgB;;6BAOjD,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;;;;;;;;kBAfZ,OAAO,GAAG,KAAK,IAAI,SAAS;sBAIxB,MAAM,YAAY,IAAI,CAAC,gBAAgB,EAAE,OAAO,CAAC,IAC5D,OAAO,OAAO;;6BAUlB,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;;;;;;;eAnBnB,IAAI,SAAS,MAAM,QAAQ,IAAI;;;;;gBAqBjC,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,gBAAgB;IAQnE,IAAa,IAAI,SAEhB;IAED,IAAI,IAAI,IAAI,IAAI,CAEf;IAGD,IAAI,IAAI,IAAI,IAAI,CAEf;IAED,IAAI,OAAO,4BAEV;CACF"}
|
|
@@ -1,18 +1,59 @@
|
|
|
1
1
|
import { BaseError } from './base';
|
|
2
2
|
declare const TimeoutError_base: {
|
|
3
3
|
new (message: string, options?: import("./base").BaseErrorOptions): {
|
|
4
|
-
"__#1@#code":
|
|
4
|
+
"__#1@#code": "TIMEOUT";
|
|
5
5
|
"__#1@#context": Record<string, unknown>;
|
|
6
|
-
readonly name:
|
|
7
|
-
readonly code:
|
|
6
|
+
readonly name: "TIMEOUT";
|
|
7
|
+
readonly code: "TIMEOUT";
|
|
8
|
+
readonly _tag: "TIMEOUT";
|
|
8
9
|
readonly context: Record<string, unknown>;
|
|
9
10
|
message: string;
|
|
10
11
|
stack?: string;
|
|
11
12
|
cause?: unknown;
|
|
12
13
|
};
|
|
13
|
-
code:
|
|
14
|
+
code: "TIMEOUT";
|
|
14
15
|
is(error: unknown): error is BaseError;
|
|
15
|
-
|
|
16
|
+
wrap(message: string, options?: Omit<import("./base").BaseErrorOptions, "cause">): (error: unknown) => {
|
|
17
|
+
"__#1@#code": "TIMEOUT";
|
|
18
|
+
"__#1@#context": Record<string, unknown>;
|
|
19
|
+
readonly name: "TIMEOUT";
|
|
20
|
+
readonly code: "TIMEOUT";
|
|
21
|
+
readonly _tag: "TIMEOUT";
|
|
22
|
+
readonly context: Record<string, unknown>;
|
|
23
|
+
message: string;
|
|
24
|
+
stack?: string;
|
|
25
|
+
cause?: unknown;
|
|
26
|
+
};
|
|
27
|
+
extend<Code extends string>(code: Code): {
|
|
28
|
+
new (message: string, options?: import("./base").BaseErrorOptions): {
|
|
29
|
+
"__#1@#code": Code;
|
|
30
|
+
"__#1@#context": Record<string, unknown>;
|
|
31
|
+
readonly name: Code;
|
|
32
|
+
readonly code: Code;
|
|
33
|
+
readonly _tag: Code;
|
|
34
|
+
readonly context: Record<string, unknown>;
|
|
35
|
+
message: string;
|
|
36
|
+
stack?: string;
|
|
37
|
+
cause?: unknown;
|
|
38
|
+
};
|
|
39
|
+
code: Code;
|
|
40
|
+
is(error: unknown): error is BaseError;
|
|
41
|
+
wrap(message: string, options?: Omit<import("./base").BaseErrorOptions, "cause">): (error: unknown) => {
|
|
42
|
+
"__#1@#code": Code;
|
|
43
|
+
"__#1@#context": Record<string, unknown>;
|
|
44
|
+
readonly name: Code;
|
|
45
|
+
readonly code: Code;
|
|
46
|
+
readonly _tag: Code;
|
|
47
|
+
readonly context: Record<string, unknown>;
|
|
48
|
+
message: string;
|
|
49
|
+
stack?: string;
|
|
50
|
+
cause?: unknown;
|
|
51
|
+
};
|
|
52
|
+
extend<Code extends string>(code: Code): /*elided*/ any;
|
|
53
|
+
captureStackTrace(targetObject: object, constructorOpt?: Function): void;
|
|
54
|
+
prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
|
|
55
|
+
stackTraceLimit: number;
|
|
56
|
+
};
|
|
16
57
|
captureStackTrace(targetObject: object, constructorOpt?: Function): void;
|
|
17
58
|
prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
|
|
18
59
|
stackTraceLimit: number;
|
|
@@ -21,18 +62,59 @@ export declare class TimeoutError extends TimeoutError_base {
|
|
|
21
62
|
}
|
|
22
63
|
declare const AbortedError_base: {
|
|
23
64
|
new (message: string, options?: import("./base").BaseErrorOptions): {
|
|
24
|
-
"__#1@#code":
|
|
65
|
+
"__#1@#code": "ABORTED";
|
|
25
66
|
"__#1@#context": Record<string, unknown>;
|
|
26
|
-
readonly name:
|
|
27
|
-
readonly code:
|
|
67
|
+
readonly name: "ABORTED";
|
|
68
|
+
readonly code: "ABORTED";
|
|
69
|
+
readonly _tag: "ABORTED";
|
|
28
70
|
readonly context: Record<string, unknown>;
|
|
29
71
|
message: string;
|
|
30
72
|
stack?: string;
|
|
31
73
|
cause?: unknown;
|
|
32
74
|
};
|
|
33
|
-
code:
|
|
75
|
+
code: "ABORTED";
|
|
34
76
|
is(error: unknown): error is BaseError;
|
|
35
|
-
|
|
77
|
+
wrap(message: string, options?: Omit<import("./base").BaseErrorOptions, "cause">): (error: unknown) => {
|
|
78
|
+
"__#1@#code": "ABORTED";
|
|
79
|
+
"__#1@#context": Record<string, unknown>;
|
|
80
|
+
readonly name: "ABORTED";
|
|
81
|
+
readonly code: "ABORTED";
|
|
82
|
+
readonly _tag: "ABORTED";
|
|
83
|
+
readonly context: Record<string, unknown>;
|
|
84
|
+
message: string;
|
|
85
|
+
stack?: string;
|
|
86
|
+
cause?: unknown;
|
|
87
|
+
};
|
|
88
|
+
extend<Code extends string>(code: Code): {
|
|
89
|
+
new (message: string, options?: import("./base").BaseErrorOptions): {
|
|
90
|
+
"__#1@#code": Code;
|
|
91
|
+
"__#1@#context": Record<string, unknown>;
|
|
92
|
+
readonly name: Code;
|
|
93
|
+
readonly code: Code;
|
|
94
|
+
readonly _tag: Code;
|
|
95
|
+
readonly context: Record<string, unknown>;
|
|
96
|
+
message: string;
|
|
97
|
+
stack?: string;
|
|
98
|
+
cause?: unknown;
|
|
99
|
+
};
|
|
100
|
+
code: Code;
|
|
101
|
+
is(error: unknown): error is BaseError;
|
|
102
|
+
wrap(message: string, options?: Omit<import("./base").BaseErrorOptions, "cause">): (error: unknown) => {
|
|
103
|
+
"__#1@#code": Code;
|
|
104
|
+
"__#1@#context": Record<string, unknown>;
|
|
105
|
+
readonly name: Code;
|
|
106
|
+
readonly code: Code;
|
|
107
|
+
readonly _tag: Code;
|
|
108
|
+
readonly context: Record<string, unknown>;
|
|
109
|
+
message: string;
|
|
110
|
+
stack?: string;
|
|
111
|
+
cause?: unknown;
|
|
112
|
+
};
|
|
113
|
+
extend<Code extends string>(code: Code): /*elided*/ any;
|
|
114
|
+
captureStackTrace(targetObject: object, constructorOpt?: Function): void;
|
|
115
|
+
prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
|
|
116
|
+
stackTraceLimit: number;
|
|
117
|
+
};
|
|
36
118
|
captureStackTrace(targetObject: object, constructorOpt?: Function): void;
|
|
37
119
|
prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
|
|
38
120
|
stackTraceLimit: number;
|
|
@@ -41,18 +123,59 @@ export declare class AbortedError extends AbortedError_base {
|
|
|
41
123
|
}
|
|
42
124
|
declare const UnimplementedError_base: {
|
|
43
125
|
new (message: string, options?: import("./base").BaseErrorOptions): {
|
|
44
|
-
"__#1@#code":
|
|
126
|
+
"__#1@#code": "UNIMPLEMENTED";
|
|
45
127
|
"__#1@#context": Record<string, unknown>;
|
|
46
|
-
readonly name:
|
|
47
|
-
readonly code:
|
|
128
|
+
readonly name: "UNIMPLEMENTED";
|
|
129
|
+
readonly code: "UNIMPLEMENTED";
|
|
130
|
+
readonly _tag: "UNIMPLEMENTED";
|
|
48
131
|
readonly context: Record<string, unknown>;
|
|
49
132
|
message: string;
|
|
50
133
|
stack?: string;
|
|
51
134
|
cause?: unknown;
|
|
52
135
|
};
|
|
53
|
-
code:
|
|
136
|
+
code: "UNIMPLEMENTED";
|
|
54
137
|
is(error: unknown): error is BaseError;
|
|
55
|
-
|
|
138
|
+
wrap(message: string, options?: Omit<import("./base").BaseErrorOptions, "cause">): (error: unknown) => {
|
|
139
|
+
"__#1@#code": "UNIMPLEMENTED";
|
|
140
|
+
"__#1@#context": Record<string, unknown>;
|
|
141
|
+
readonly name: "UNIMPLEMENTED";
|
|
142
|
+
readonly code: "UNIMPLEMENTED";
|
|
143
|
+
readonly _tag: "UNIMPLEMENTED";
|
|
144
|
+
readonly context: Record<string, unknown>;
|
|
145
|
+
message: string;
|
|
146
|
+
stack?: string;
|
|
147
|
+
cause?: unknown;
|
|
148
|
+
};
|
|
149
|
+
extend<Code extends string>(code: Code): {
|
|
150
|
+
new (message: string, options?: import("./base").BaseErrorOptions): {
|
|
151
|
+
"__#1@#code": Code;
|
|
152
|
+
"__#1@#context": Record<string, unknown>;
|
|
153
|
+
readonly name: Code;
|
|
154
|
+
readonly code: Code;
|
|
155
|
+
readonly _tag: Code;
|
|
156
|
+
readonly context: Record<string, unknown>;
|
|
157
|
+
message: string;
|
|
158
|
+
stack?: string;
|
|
159
|
+
cause?: unknown;
|
|
160
|
+
};
|
|
161
|
+
code: Code;
|
|
162
|
+
is(error: unknown): error is BaseError;
|
|
163
|
+
wrap(message: string, options?: Omit<import("./base").BaseErrorOptions, "cause">): (error: unknown) => {
|
|
164
|
+
"__#1@#code": Code;
|
|
165
|
+
"__#1@#context": Record<string, unknown>;
|
|
166
|
+
readonly name: Code;
|
|
167
|
+
readonly code: Code;
|
|
168
|
+
readonly _tag: Code;
|
|
169
|
+
readonly context: Record<string, unknown>;
|
|
170
|
+
message: string;
|
|
171
|
+
stack?: string;
|
|
172
|
+
cause?: unknown;
|
|
173
|
+
};
|
|
174
|
+
extend<Code extends string>(code: Code): /*elided*/ any;
|
|
175
|
+
captureStackTrace(targetObject: object, constructorOpt?: Function): void;
|
|
176
|
+
prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
|
|
177
|
+
stackTraceLimit: number;
|
|
178
|
+
};
|
|
56
179
|
captureStackTrace(targetObject: object, constructorOpt?: Function): void;
|
|
57
180
|
prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
|
|
58
181
|
stackTraceLimit: number;
|
|
@@ -61,18 +184,59 @@ export declare class UnimplementedError extends UnimplementedError_base {
|
|
|
61
184
|
}
|
|
62
185
|
declare const ApiError_base: {
|
|
63
186
|
new (message: string, options?: import("./base").BaseErrorOptions): {
|
|
64
|
-
"__#1@#code":
|
|
187
|
+
"__#1@#code": "API_ERROR";
|
|
65
188
|
"__#1@#context": Record<string, unknown>;
|
|
66
|
-
readonly name:
|
|
67
|
-
readonly code:
|
|
189
|
+
readonly name: "API_ERROR";
|
|
190
|
+
readonly code: "API_ERROR";
|
|
191
|
+
readonly _tag: "API_ERROR";
|
|
68
192
|
readonly context: Record<string, unknown>;
|
|
69
193
|
message: string;
|
|
70
194
|
stack?: string;
|
|
71
195
|
cause?: unknown;
|
|
72
196
|
};
|
|
73
|
-
code:
|
|
197
|
+
code: "API_ERROR";
|
|
74
198
|
is(error: unknown): error is BaseError;
|
|
75
|
-
|
|
199
|
+
wrap(message: string, options?: Omit<import("./base").BaseErrorOptions, "cause">): (error: unknown) => {
|
|
200
|
+
"__#1@#code": "API_ERROR";
|
|
201
|
+
"__#1@#context": Record<string, unknown>;
|
|
202
|
+
readonly name: "API_ERROR";
|
|
203
|
+
readonly code: "API_ERROR";
|
|
204
|
+
readonly _tag: "API_ERROR";
|
|
205
|
+
readonly context: Record<string, unknown>;
|
|
206
|
+
message: string;
|
|
207
|
+
stack?: string;
|
|
208
|
+
cause?: unknown;
|
|
209
|
+
};
|
|
210
|
+
extend<Code extends string>(code: Code): {
|
|
211
|
+
new (message: string, options?: import("./base").BaseErrorOptions): {
|
|
212
|
+
"__#1@#code": Code;
|
|
213
|
+
"__#1@#context": Record<string, unknown>;
|
|
214
|
+
readonly name: Code;
|
|
215
|
+
readonly code: Code;
|
|
216
|
+
readonly _tag: Code;
|
|
217
|
+
readonly context: Record<string, unknown>;
|
|
218
|
+
message: string;
|
|
219
|
+
stack?: string;
|
|
220
|
+
cause?: unknown;
|
|
221
|
+
};
|
|
222
|
+
code: Code;
|
|
223
|
+
is(error: unknown): error is BaseError;
|
|
224
|
+
wrap(message: string, options?: Omit<import("./base").BaseErrorOptions, "cause">): (error: unknown) => {
|
|
225
|
+
"__#1@#code": Code;
|
|
226
|
+
"__#1@#context": Record<string, unknown>;
|
|
227
|
+
readonly name: Code;
|
|
228
|
+
readonly code: Code;
|
|
229
|
+
readonly _tag: Code;
|
|
230
|
+
readonly context: Record<string, unknown>;
|
|
231
|
+
message: string;
|
|
232
|
+
stack?: string;
|
|
233
|
+
cause?: unknown;
|
|
234
|
+
};
|
|
235
|
+
extend<Code extends string>(code: Code): /*elided*/ any;
|
|
236
|
+
captureStackTrace(targetObject: object, constructorOpt?: Function): void;
|
|
237
|
+
prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
|
|
238
|
+
stackTraceLimit: number;
|
|
239
|
+
};
|
|
76
240
|
captureStackTrace(targetObject: object, constructorOpt?: Function): void;
|
|
77
241
|
prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
|
|
78
242
|
stackTraceLimit: number;
|
|
@@ -81,18 +245,59 @@ export declare class ApiError extends ApiError_base {
|
|
|
81
245
|
}
|
|
82
246
|
declare const SystemError_base: {
|
|
83
247
|
new (message: string, options?: import("./base").BaseErrorOptions): {
|
|
84
|
-
"__#1@#code":
|
|
248
|
+
"__#1@#code": "SYSTEM_ERROR";
|
|
85
249
|
"__#1@#context": Record<string, unknown>;
|
|
86
|
-
readonly name:
|
|
87
|
-
readonly code:
|
|
250
|
+
readonly name: "SYSTEM_ERROR";
|
|
251
|
+
readonly code: "SYSTEM_ERROR";
|
|
252
|
+
readonly _tag: "SYSTEM_ERROR";
|
|
88
253
|
readonly context: Record<string, unknown>;
|
|
89
254
|
message: string;
|
|
90
255
|
stack?: string;
|
|
91
256
|
cause?: unknown;
|
|
92
257
|
};
|
|
93
|
-
code:
|
|
258
|
+
code: "SYSTEM_ERROR";
|
|
94
259
|
is(error: unknown): error is BaseError;
|
|
95
|
-
|
|
260
|
+
wrap(message: string, options?: Omit<import("./base").BaseErrorOptions, "cause">): (error: unknown) => {
|
|
261
|
+
"__#1@#code": "SYSTEM_ERROR";
|
|
262
|
+
"__#1@#context": Record<string, unknown>;
|
|
263
|
+
readonly name: "SYSTEM_ERROR";
|
|
264
|
+
readonly code: "SYSTEM_ERROR";
|
|
265
|
+
readonly _tag: "SYSTEM_ERROR";
|
|
266
|
+
readonly context: Record<string, unknown>;
|
|
267
|
+
message: string;
|
|
268
|
+
stack?: string;
|
|
269
|
+
cause?: unknown;
|
|
270
|
+
};
|
|
271
|
+
extend<Code extends string>(code: Code): {
|
|
272
|
+
new (message: string, options?: import("./base").BaseErrorOptions): {
|
|
273
|
+
"__#1@#code": Code;
|
|
274
|
+
"__#1@#context": Record<string, unknown>;
|
|
275
|
+
readonly name: Code;
|
|
276
|
+
readonly code: Code;
|
|
277
|
+
readonly _tag: Code;
|
|
278
|
+
readonly context: Record<string, unknown>;
|
|
279
|
+
message: string;
|
|
280
|
+
stack?: string;
|
|
281
|
+
cause?: unknown;
|
|
282
|
+
};
|
|
283
|
+
code: Code;
|
|
284
|
+
is(error: unknown): error is BaseError;
|
|
285
|
+
wrap(message: string, options?: Omit<import("./base").BaseErrorOptions, "cause">): (error: unknown) => {
|
|
286
|
+
"__#1@#code": Code;
|
|
287
|
+
"__#1@#context": Record<string, unknown>;
|
|
288
|
+
readonly name: Code;
|
|
289
|
+
readonly code: Code;
|
|
290
|
+
readonly _tag: Code;
|
|
291
|
+
readonly context: Record<string, unknown>;
|
|
292
|
+
message: string;
|
|
293
|
+
stack?: string;
|
|
294
|
+
cause?: unknown;
|
|
295
|
+
};
|
|
296
|
+
extend<Code extends string>(code: Code): /*elided*/ any;
|
|
297
|
+
captureStackTrace(targetObject: object, constructorOpt?: Function): void;
|
|
298
|
+
prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
|
|
299
|
+
stackTraceLimit: number;
|
|
300
|
+
};
|
|
96
301
|
captureStackTrace(targetObject: object, constructorOpt?: Function): void;
|
|
97
302
|
prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
|
|
98
303
|
stackTraceLimit: number;
|
|
@@ -101,18 +306,59 @@ export declare class SystemError extends SystemError_base {
|
|
|
101
306
|
}
|
|
102
307
|
declare const InternalError_base: {
|
|
103
308
|
new (message: string, options?: import("./base").BaseErrorOptions): {
|
|
104
|
-
"__#1@#code":
|
|
309
|
+
"__#1@#code": "INTERNAL_ERROR";
|
|
105
310
|
"__#1@#context": Record<string, unknown>;
|
|
106
|
-
readonly name:
|
|
107
|
-
readonly code:
|
|
311
|
+
readonly name: "INTERNAL_ERROR";
|
|
312
|
+
readonly code: "INTERNAL_ERROR";
|
|
313
|
+
readonly _tag: "INTERNAL_ERROR";
|
|
108
314
|
readonly context: Record<string, unknown>;
|
|
109
315
|
message: string;
|
|
110
316
|
stack?: string;
|
|
111
317
|
cause?: unknown;
|
|
112
318
|
};
|
|
113
|
-
code:
|
|
319
|
+
code: "INTERNAL_ERROR";
|
|
114
320
|
is(error: unknown): error is BaseError;
|
|
115
|
-
|
|
321
|
+
wrap(message: string, options?: Omit<import("./base").BaseErrorOptions, "cause">): (error: unknown) => {
|
|
322
|
+
"__#1@#code": "INTERNAL_ERROR";
|
|
323
|
+
"__#1@#context": Record<string, unknown>;
|
|
324
|
+
readonly name: "INTERNAL_ERROR";
|
|
325
|
+
readonly code: "INTERNAL_ERROR";
|
|
326
|
+
readonly _tag: "INTERNAL_ERROR";
|
|
327
|
+
readonly context: Record<string, unknown>;
|
|
328
|
+
message: string;
|
|
329
|
+
stack?: string;
|
|
330
|
+
cause?: unknown;
|
|
331
|
+
};
|
|
332
|
+
extend<Code extends string>(code: Code): {
|
|
333
|
+
new (message: string, options?: import("./base").BaseErrorOptions): {
|
|
334
|
+
"__#1@#code": Code;
|
|
335
|
+
"__#1@#context": Record<string, unknown>;
|
|
336
|
+
readonly name: Code;
|
|
337
|
+
readonly code: Code;
|
|
338
|
+
readonly _tag: Code;
|
|
339
|
+
readonly context: Record<string, unknown>;
|
|
340
|
+
message: string;
|
|
341
|
+
stack?: string;
|
|
342
|
+
cause?: unknown;
|
|
343
|
+
};
|
|
344
|
+
code: Code;
|
|
345
|
+
is(error: unknown): error is BaseError;
|
|
346
|
+
wrap(message: string, options?: Omit<import("./base").BaseErrorOptions, "cause">): (error: unknown) => {
|
|
347
|
+
"__#1@#code": Code;
|
|
348
|
+
"__#1@#context": Record<string, unknown>;
|
|
349
|
+
readonly name: Code;
|
|
350
|
+
readonly code: Code;
|
|
351
|
+
readonly _tag: Code;
|
|
352
|
+
readonly context: Record<string, unknown>;
|
|
353
|
+
message: string;
|
|
354
|
+
stack?: string;
|
|
355
|
+
cause?: unknown;
|
|
356
|
+
};
|
|
357
|
+
extend<Code extends string>(code: Code): /*elided*/ any;
|
|
358
|
+
captureStackTrace(targetObject: object, constructorOpt?: Function): void;
|
|
359
|
+
prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
|
|
360
|
+
stackTraceLimit: number;
|
|
361
|
+
};
|
|
116
362
|
captureStackTrace(targetObject: object, constructorOpt?: Function): void;
|
|
117
363
|
prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
|
|
118
364
|
stackTraceLimit: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"errors.d.ts","sourceRoot":"","sources":["../../../src/errors.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,SAAS,EAAE,MAAM,QAAQ,CAAC
|
|
1
|
+
{"version":3,"file":"errors.d.ts","sourceRoot":"","sources":["../../../src/errors.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,SAAS,EAAE,MAAM,QAAQ,CAAC;;;;;;;;;;;;;;;wFAa6a,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;4FAAd,cAAc;;;;;;;;;;;;;;;;;;;;AAX9d,qBAAa,YAAa,SAAQ,iBAA2B;CAAG;;;;;;;;;;;;;;;wFAWgZ,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;4FAAd,cAAc;;;;;;;;;;;;;;;;;;;;AAT9d,qBAAa,YAAa,SAAQ,iBAA2B;CAAG;;;;;;;;;;;;;;;wFASgZ,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;4FAAd,cAAc;;;;;;;;;;;;;;;;;;;;AAP9d,qBAAa,kBAAmB,SAAQ,uBAAiC;CAAG;;;;;;;;;;;;;;;wFAOoY,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;4FAAd,cAAc;;;;;;;;;;;;;;;;;;;;AAL9d,qBAAa,QAAS,SAAQ,aAA6B;CAAG;;;;;;;;;;;;;;;wFAKkZ,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;4FAAd,cAAc;;;;;;;;;;;;;;;;;;;;AAH9d,qBAAa,WAAY,SAAQ,gBAAgC;CAAG;;;;;;;;;;;;;;;wFAG4Y,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;4FAAd,cAAc;;;;;;;;;;;;;;;;;;;;AAD9d,qBAAa,aAAc,SAAQ,kBAAkC;CAAG"}
|