@grest-ts/context 0.0.5
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/LICENSE +21 -0
- package/README.md +130 -0
- package/dist/src/GGContext.d.ts +17 -0
- package/dist/src/GGContext.d.ts.map +1 -0
- package/dist/src/GGContext.js +42 -0
- package/dist/src/GGContext.js.map +1 -0
- package/dist/src/GGContextKey.d.ts +24 -0
- package/dist/src/GGContextKey.d.ts.map +1 -0
- package/dist/src/GGContextKey.js +46 -0
- package/dist/src/GGContextKey.js.map +1 -0
- package/dist/src/GGContextStorage.d.ts +5 -0
- package/dist/src/GGContextStorage.d.ts.map +1 -0
- package/dist/src/GGContextStorage.js +7 -0
- package/dist/src/GGContextStorage.js.map +1 -0
- package/dist/src/GGContextStore.d.ts +13 -0
- package/dist/src/GGContextStore.d.ts.map +1 -0
- package/dist/src/GGContextStore.js +34 -0
- package/dist/src/GGContextStore.js.map +1 -0
- package/dist/src/GG_ENV.d.ts +2 -0
- package/dist/src/GG_ENV.d.ts.map +1 -0
- package/dist/src/GG_ENV.js +2 -0
- package/dist/src/GG_ENV.js.map +1 -0
- package/dist/src/index-browser.d.ts +4 -0
- package/dist/src/index-browser.d.ts.map +1 -0
- package/dist/src/index-browser.js +4 -0
- package/dist/src/index-browser.js.map +1 -0
- package/dist/src/index-node.d.ts +4 -0
- package/dist/src/index-node.d.ts.map +1 -0
- package/dist/src/index-node.js +7 -0
- package/dist/src/index-node.js.map +1 -0
- package/dist/src/tsconfig.json +18 -0
- package/dist/tsconfig.publish.tsbuildinfo +1 -0
- package/package.json +62 -0
- package/src/GGContext.ts +57 -0
- package/src/GGContextKey.ts +62 -0
- package/src/GGContextStorage.ts +9 -0
- package/src/GGContextStore.ts +45 -0
- package/src/GG_ENV.ts +0 -0
- package/src/index-browser.ts +3 -0
- package/src/index-node.ts +7 -0
- package/src/tsconfig.json +18 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Grest Games OÜ
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
# Context Package (@grest-ts/context)
|
|
2
|
+
|
|
3
|
+
Request-scoped context storage using AsyncLocalStorage. Use this for short-lived data that exists during a single request, job, or message processing - such as tracing IDs, auth data, or request
|
|
4
|
+
metadata.
|
|
5
|
+
|
|
6
|
+
## When do you need it?
|
|
7
|
+
|
|
8
|
+
- **Framework level**: The framework uses GGContext to propagate request data like trace IDs, authentication, and request metadata through the call stack.
|
|
9
|
+
- **Your code**: Use it when you need to access request-specific data without passing it through every function.
|
|
10
|
+
|
|
11
|
+
Note: GGContext is for **request-scoped data** (short-lived). For long-lived services, use `GGLocator` instead.
|
|
12
|
+
|
|
13
|
+
## Basic usage example: Auth Context Through Services
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
// Define auth context key
|
|
17
|
+
const AuthUserKey = new GGContextKey("authUser", IsObject({id: IsString, role: IsString}))
|
|
18
|
+
|
|
19
|
+
// ServiceA - called by HTTP handler, auth is already set in context
|
|
20
|
+
class ServiceA {
|
|
21
|
+
async updateDocument(docId: string, content: string) {
|
|
22
|
+
// No need to pass user - ServiceB reads it from context
|
|
23
|
+
await serviceB.saveDocument(docId, content)
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
// ServiceB - deeper in the call chain
|
|
28
|
+
class ServiceB {
|
|
29
|
+
async saveDocument(docId: string, content: string) {
|
|
30
|
+
if (AuthUserKey.get()?.role !== "admin") throw new FORBIDDEN()
|
|
31
|
+
// ... save document
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Basic Usage
|
|
37
|
+
|
|
38
|
+
### Defining a Context Key
|
|
39
|
+
|
|
40
|
+
```typescript
|
|
41
|
+
import {GGContextKey} from "@grest-ts/context"
|
|
42
|
+
import {t} from "@grest-ts/schema"
|
|
43
|
+
|
|
44
|
+
const RequestIdKey = new GGContextKey("requestId", t.string())
|
|
45
|
+
|
|
46
|
+
// With default value
|
|
47
|
+
const DebugModeKey = new GGContextKey("debugMode", t.boolean(), {
|
|
48
|
+
defaultValue: false,
|
|
49
|
+
description: "Enable debug logging for this request"
|
|
50
|
+
})
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
### Setting and Accessing Context
|
|
54
|
+
|
|
55
|
+
```typescript
|
|
56
|
+
import {GGContext} from "@grest-ts/context"
|
|
57
|
+
|
|
58
|
+
new GGContext("request").run(() => {
|
|
59
|
+
|
|
60
|
+
// Set context value
|
|
61
|
+
RequestIdKey.set("req-123")
|
|
62
|
+
|
|
63
|
+
// Get context value (returns undefined if not set, or defaultValue if defined)
|
|
64
|
+
const requestId = RequestIdKey.get()
|
|
65
|
+
|
|
66
|
+
// Check if value exists
|
|
67
|
+
if (RequestIdKey.has()) { ...
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
// Assert value exists (throws if not set)
|
|
71
|
+
const id = RequestIdKey.assert()
|
|
72
|
+
|
|
73
|
+
// Delete value
|
|
74
|
+
RequestIdKey.delete()
|
|
75
|
+
|
|
76
|
+
})
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
### Using GGContextStore Static Helpers
|
|
80
|
+
|
|
81
|
+
```typescript
|
|
82
|
+
import {GGContextStore} from "@grest-ts/context"
|
|
83
|
+
|
|
84
|
+
// Check if context exists
|
|
85
|
+
if (GGContextStore.hasContext()) {
|
|
86
|
+
const ctx = GGContextStore.getContext()
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
// Safe access (returns undefined if no context)
|
|
90
|
+
const ctx = GGContextStore.tryGetContext()
|
|
91
|
+
|
|
92
|
+
// Branch from current context (child inherits parent values)
|
|
93
|
+
const childCtx = GGContextStore.branch("child-request")
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
## Context Branching
|
|
97
|
+
|
|
98
|
+
Child contexts inherit parent values but can override them:
|
|
99
|
+
|
|
100
|
+
```typescript
|
|
101
|
+
const parentCtx = new GGContext("parent")
|
|
102
|
+
parentCtx.run(() => {
|
|
103
|
+
RequestIdKey.set("req-123")
|
|
104
|
+
|
|
105
|
+
const childCtx = GGContextStore.branch("child")
|
|
106
|
+
childCtx.run(() => {
|
|
107
|
+
RequestIdKey.get() // "req-123" - inherited from parent
|
|
108
|
+
RequestIdKey.set("req-456") // Override in child
|
|
109
|
+
RequestIdKey.get() // "req-456"
|
|
110
|
+
})
|
|
111
|
+
|
|
112
|
+
RequestIdKey.get() // "req-123" - parent unchanged
|
|
113
|
+
})
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
## Async Context Helpers
|
|
117
|
+
|
|
118
|
+
Preserve context across async boundaries:
|
|
119
|
+
|
|
120
|
+
```typescript
|
|
121
|
+
GGContextStore.setTimeout(() => {
|
|
122
|
+
// Context is preserved here
|
|
123
|
+
RequestIdKey.get()
|
|
124
|
+
}, 1000)
|
|
125
|
+
|
|
126
|
+
GGContextStore.setInterval(() => { ...
|
|
127
|
+
}, 5000)
|
|
128
|
+
GGContextStore.setImmediate(() => { ...
|
|
129
|
+
})
|
|
130
|
+
```
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { GGContextKey } from "./GGContextKey";
|
|
2
|
+
export declare class GGContext {
|
|
3
|
+
readonly name: string;
|
|
4
|
+
private readonly parent;
|
|
5
|
+
private readonly values;
|
|
6
|
+
constructor(name: string, parent?: GGContext);
|
|
7
|
+
get<T>(token: GGContextKey<T>): T;
|
|
8
|
+
set<T>(token: GGContextKey<T>, value: T): this;
|
|
9
|
+
has<T>(token: GGContextKey<T>): boolean;
|
|
10
|
+
delete<T>(token: GGContextKey<T>): void;
|
|
11
|
+
setImmediate<R>(fn: () => R): NodeJS.Immediate;
|
|
12
|
+
setTimeout<R>(fn: () => R, timeout: number): NodeJS.Timeout;
|
|
13
|
+
setInterval<R>(fn: () => R, timeout: number): NodeJS.Timeout;
|
|
14
|
+
run<R>(fn: () => R): R;
|
|
15
|
+
reset(): void;
|
|
16
|
+
}
|
|
17
|
+
//# sourceMappingURL=GGContext.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GGContext.d.ts","sourceRoot":"","sources":["../../src/GGContext.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,gBAAgB,CAAC;AAGjD,qBAAa,SAAS;IAElB,SAAgB,IAAI,EAAE,MAAM,CAAA;IAC5B,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAuB;IAC9C,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAkB;gBAE7B,IAAI,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,SAAS;IAMrC,GAAG,CAAC,CAAC,EAAE,KAAK,EAAE,YAAY,CAAC,CAAC,CAAC,GAAG,CAAC;IAIjC,GAAG,CAAC,CAAC,EAAE,KAAK,EAAE,YAAY,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,GAAG,IAAI;IAK9C,GAAG,CAAC,CAAC,EAAE,KAAK,EAAE,YAAY,CAAC,CAAC,CAAC,GAAG,OAAO;IAIvC,MAAM,CAAC,CAAC,EAAE,KAAK,EAAE,YAAY,CAAC,CAAC,CAAC,GAAG,IAAI;IAMvC,YAAY,CAAC,CAAC,EAAE,EAAE,EAAE,MAAM,CAAC,GAAG,MAAM,CAAC,SAAS;IAI9C,UAAU,CAAC,CAAC,EAAE,EAAE,EAAE,MAAM,CAAC,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO;IAI3D,WAAW,CAAC,CAAC,EAAE,EAAE,EAAE,MAAM,CAAC,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO;IAM5D,GAAG,CAAC,CAAC,EAAE,EAAE,EAAE,MAAM,CAAC,GAAG,CAAC;IAItB,KAAK,IAAI,IAAI;CAIvB"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { GG_CONTEXT_STORAGE } from "./GGContextStore.js";
|
|
2
|
+
export class GGContext {
|
|
3
|
+
name;
|
|
4
|
+
parent;
|
|
5
|
+
values;
|
|
6
|
+
constructor(name, parent) {
|
|
7
|
+
this.name = name;
|
|
8
|
+
this.parent = parent;
|
|
9
|
+
this.values = new Map();
|
|
10
|
+
}
|
|
11
|
+
get(token) {
|
|
12
|
+
return this.values.get(token.name) ?? this.parent?.get(token);
|
|
13
|
+
}
|
|
14
|
+
set(token, value) {
|
|
15
|
+
this.values.set(token.name, value);
|
|
16
|
+
return this;
|
|
17
|
+
}
|
|
18
|
+
has(token) {
|
|
19
|
+
return this.values.has(token.name) || this.parent?.has(token);
|
|
20
|
+
}
|
|
21
|
+
delete(token) {
|
|
22
|
+
this.values.delete(token.name);
|
|
23
|
+
}
|
|
24
|
+
// -----------
|
|
25
|
+
setImmediate(fn) {
|
|
26
|
+
return setImmediate(() => this.run(fn));
|
|
27
|
+
}
|
|
28
|
+
setTimeout(fn, timeout) {
|
|
29
|
+
return setTimeout(() => this.run(fn), timeout);
|
|
30
|
+
}
|
|
31
|
+
setInterval(fn, timeout) {
|
|
32
|
+
return setInterval(() => this.run(fn), timeout);
|
|
33
|
+
}
|
|
34
|
+
// -----------
|
|
35
|
+
run(fn) {
|
|
36
|
+
return GG_CONTEXT_STORAGE.run(this, fn);
|
|
37
|
+
}
|
|
38
|
+
reset() {
|
|
39
|
+
this.values.clear();
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
//# sourceMappingURL=GGContext.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GGContext.js","sourceRoot":"","sources":["../../src/GGContext.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,kBAAkB,EAAC,MAAM,kBAAkB,CAAC;AAEpD,MAAM,OAAO,SAAS;IAEF,IAAI,CAAQ;IACX,MAAM,CAAuB;IAC7B,MAAM,CAAkB;IAEzC,YAAY,IAAY,EAAE,MAAkB;QACxC,IAAI,CAAC,IAAI,GAAG,IAAI,CAAA;QAChB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAA;QACpB,IAAI,CAAC,MAAM,GAAG,IAAI,GAAG,EAAE,CAAC;IAC5B,CAAC;IAEM,GAAG,CAAI,KAAsB;QAChC,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,MAAM,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC;IAClE,CAAC;IAEM,GAAG,CAAI,KAAsB,EAAE,KAAQ;QAC1C,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;QACnC,OAAO,IAAI,CAAC;IAChB,CAAC;IAEM,GAAG,CAAI,KAAsB;QAChC,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,MAAM,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC;IAClE,CAAC;IAEM,MAAM,CAAI,KAAsB;QACnC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,CAAA;IAClC,CAAC;IAED,cAAc;IAEP,YAAY,CAAI,EAAW;QAC9B,OAAO,YAAY,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAA;IAC3C,CAAC;IAEM,UAAU,CAAI,EAAW,EAAE,OAAe;QAC7C,OAAO,UAAU,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,OAAO,CAAC,CAAA;IAClD,CAAC;IAEM,WAAW,CAAI,EAAW,EAAE,OAAe;QAC9C,OAAO,WAAW,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,OAAO,CAAC,CAAA;IACnD,CAAC;IAED,cAAc;IAEP,GAAG,CAAI,EAAW;QACrB,OAAO,kBAAkB,CAAC,GAAG,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC;IAC5C,CAAC;IAEM,KAAK;QACR,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;IACxB,CAAC;CAEJ"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { GGCodec, GGSchema } from "@grest-ts/schema";
|
|
2
|
+
export interface GGContextMeta<T> {
|
|
3
|
+
description?: string;
|
|
4
|
+
defaultValue?: T;
|
|
5
|
+
}
|
|
6
|
+
export declare class GGContextKey<Type> {
|
|
7
|
+
readonly name: string;
|
|
8
|
+
readonly schema: GGSchema<Type>;
|
|
9
|
+
readonly description?: string;
|
|
10
|
+
readonly defaultValue?: Type;
|
|
11
|
+
private codecs;
|
|
12
|
+
constructor(name: string, schema: GGSchema<Type>, meta?: GGContextMeta<Type>);
|
|
13
|
+
get(): Type | undefined;
|
|
14
|
+
has(): boolean;
|
|
15
|
+
set(value: Type): void;
|
|
16
|
+
delete(): void;
|
|
17
|
+
/**
|
|
18
|
+
* Asserts that context value for this key exists. If not, throws Error.
|
|
19
|
+
*/
|
|
20
|
+
assert(): Type;
|
|
21
|
+
addCodec(type: string, codec: GGCodec<any, Type>): void;
|
|
22
|
+
getCodec(type: string): GGCodec<any, Type> | undefined;
|
|
23
|
+
}
|
|
24
|
+
//# sourceMappingURL=GGContextKey.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GGContextKey.d.ts","sourceRoot":"","sources":["../../src/GGContextKey.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,OAAO,EAAE,QAAQ,EAAC,MAAM,kBAAkB,CAAC;AAEnD,MAAM,WAAW,aAAa,CAAC,CAAC;IAC5B,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,YAAY,CAAC,EAAE,CAAC,CAAA;CACnB;AAED,qBAAa,YAAY,CAAC,IAAI;IAE1B,SAAgB,IAAI,EAAE,MAAM,CAAA;IAC5B,SAAgB,MAAM,EAAE,QAAQ,CAAC,IAAI,CAAC,CAAA;IACtC,SAAgB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpC,SAAgB,YAAY,CAAC,EAAE,IAAI,CAAA;IACnC,OAAO,CAAC,MAAM,CAAiC;gBAEnC,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,CAAC,IAAI,CAAC,EAAE,IAAI,CAAC,EAAE,aAAa,CAAC,IAAI,CAAC;IAOrE,GAAG,IAAI,IAAI,GAAG,SAAS;IAIvB,GAAG,IAAI,OAAO;IAId,GAAG,CAAC,KAAK,EAAE,IAAI,GAAG,IAAI;IAItB,MAAM,IAAI,IAAI;IAIrB;;OAEG;IACI,MAAM,IAAI,IAAI;IASd,QAAQ,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,OAAO,CAAC,GAAG,EAAE,IAAI,CAAC,GAAG,IAAI;IAOvD,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,GAAG,EAAE,IAAI,CAAC,GAAG,SAAS;CAGhE"}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { GGContextStore } from "./GGContextStore.js";
|
|
2
|
+
export class GGContextKey {
|
|
3
|
+
name;
|
|
4
|
+
schema;
|
|
5
|
+
description;
|
|
6
|
+
defaultValue;
|
|
7
|
+
codecs;
|
|
8
|
+
constructor(name, schema, meta) {
|
|
9
|
+
this.name = name;
|
|
10
|
+
this.schema = schema;
|
|
11
|
+
this.description = meta?.description;
|
|
12
|
+
this.defaultValue = meta?.defaultValue;
|
|
13
|
+
}
|
|
14
|
+
get() {
|
|
15
|
+
return GGContextStore.tryGetContext()?.get(this) ?? this.defaultValue;
|
|
16
|
+
}
|
|
17
|
+
has() {
|
|
18
|
+
return GGContextStore.tryGetContext()?.has(this) ?? false;
|
|
19
|
+
}
|
|
20
|
+
set(value) {
|
|
21
|
+
GGContextStore.getContext().set(this, value);
|
|
22
|
+
}
|
|
23
|
+
delete() {
|
|
24
|
+
GGContextStore.getContext().delete(this);
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Asserts that context value for this key exists. If not, throws Error.
|
|
28
|
+
*/
|
|
29
|
+
assert() {
|
|
30
|
+
if (!this.has()) {
|
|
31
|
+
throw new Error(`Context named '${this.name}' is required, but not defined!`);
|
|
32
|
+
}
|
|
33
|
+
return this.get();
|
|
34
|
+
}
|
|
35
|
+
// ---------------------------------------------
|
|
36
|
+
addCodec(type, codec) {
|
|
37
|
+
if (!this.codecs) {
|
|
38
|
+
this.codecs = new Map();
|
|
39
|
+
}
|
|
40
|
+
this.codecs.set(type, codec);
|
|
41
|
+
}
|
|
42
|
+
getCodec(type) {
|
|
43
|
+
return this.codecs?.get(type);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
//# sourceMappingURL=GGContextKey.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GGContextKey.js","sourceRoot":"","sources":["../../src/GGContextKey.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,cAAc,EAAC,MAAM,kBAAkB,CAAC;AAQhD,MAAM,OAAO,YAAY;IAEL,IAAI,CAAQ;IACZ,MAAM,CAAgB;IACtB,WAAW,CAAS;IACpB,YAAY,CAAO;IAC3B,MAAM,CAAiC;IAE/C,YAAY,IAAY,EAAE,MAAsB,EAAE,IAA0B;QACxE,IAAI,CAAC,IAAI,GAAG,IAAI,CAAA;QAChB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,WAAW,GAAG,IAAI,EAAE,WAAW,CAAA;QACpC,IAAI,CAAC,YAAY,GAAG,IAAI,EAAE,YAAY,CAAA;IAC1C,CAAC;IAEM,GAAG;QACN,OAAO,cAAc,CAAC,aAAa,EAAE,EAAE,GAAG,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,YAAY,CAAA;IACzE,CAAC;IAEM,GAAG;QACN,OAAO,cAAc,CAAC,aAAa,EAAE,EAAE,GAAG,CAAC,IAAI,CAAC,IAAI,KAAK,CAAA;IAC7D,CAAC;IAEM,GAAG,CAAC,KAAW;QAClB,cAAc,CAAC,UAAU,EAAE,CAAC,GAAG,CAAC,IAAI,EAAE,KAAK,CAAC,CAAA;IAChD,CAAC;IAEM,MAAM;QACT,cAAc,CAAC,UAAU,EAAE,CAAC,MAAM,CAAC,IAAI,CAAC,CAAA;IAC5C,CAAC;IAED;;OAEG;IACI,MAAM;QACT,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE,EAAE,CAAC;YACd,MAAM,IAAI,KAAK,CAAC,kBAAkB,IAAI,CAAC,IAAI,iCAAiC,CAAC,CAAC;QAClF,CAAC;QACD,OAAO,IAAI,CAAC,GAAG,EAAE,CAAA;IACrB,CAAC;IAED,gDAAgD;IAEzC,QAAQ,CAAC,IAAY,EAAE,KAAyB;QACnD,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;YACf,IAAI,CAAC,MAAM,GAAG,IAAI,GAAG,EAAE,CAAA;QAC3B,CAAC;QACD,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,EAAE,KAAK,CAAC,CAAA;IAChC,CAAC;IAEM,QAAQ,CAAC,IAAY;QACxB,OAAO,IAAI,CAAC,MAAM,EAAE,GAAG,CAAC,IAAI,CAAC,CAAA;IACjC,CAAC;CACJ"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { GGContext } from "./GGContext";
|
|
2
|
+
import { type IAsyncStorage } from "@grest-ts/common";
|
|
3
|
+
export declare let GG_CONTEXT_STORAGE: IAsyncStorage<GGContext>;
|
|
4
|
+
export declare function _initContextStorage(storage: IAsyncStorage<GGContext>): void;
|
|
5
|
+
//# sourceMappingURL=GGContextStorage.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GGContextStorage.d.ts","sourceRoot":"","sources":["../../src/GGContextStorage.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,SAAS,EAAC,MAAM,aAAa,CAAC;AAC3C,OAAO,EAAsB,KAAK,aAAa,EAAC,MAAM,kBAAkB,CAAC;AAGzE,eAAO,IAAI,kBAAkB,EAAE,aAAa,CAAC,SAAS,CAA6B,CAAC;AAEpF,wBAAgB,mBAAmB,CAAC,OAAO,EAAE,aAAa,CAAC,SAAS,CAAC,GAAG,IAAI,CAE3E"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { BrowserAsyncStorage } from "@grest-ts/common";
|
|
2
|
+
// Browser-safe by default. Node.js entry replaces with real AsyncLocalStorage.
|
|
3
|
+
export let GG_CONTEXT_STORAGE = new BrowserAsyncStorage();
|
|
4
|
+
export function _initContextStorage(storage) {
|
|
5
|
+
GG_CONTEXT_STORAGE = storage;
|
|
6
|
+
}
|
|
7
|
+
//# sourceMappingURL=GGContextStorage.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GGContextStorage.js","sourceRoot":"","sources":["../../src/GGContextStorage.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,mBAAmB,EAAqB,MAAM,kBAAkB,CAAC;AAEzE,+EAA+E;AAC/E,MAAM,CAAC,IAAI,kBAAkB,GAA6B,IAAI,mBAAmB,EAAE,CAAC;AAEpF,MAAM,UAAU,mBAAmB,CAAC,OAAiC;IACjE,kBAAkB,GAAG,OAAO,CAAC;AACjC,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { GGContext } from "./GGContext";
|
|
2
|
+
import { GG_CONTEXT_STORAGE } from "./GGContextStorage";
|
|
3
|
+
export { GG_CONTEXT_STORAGE };
|
|
4
|
+
export declare class GGContextStore {
|
|
5
|
+
static hasContext(): boolean;
|
|
6
|
+
static getContext(): GGContext;
|
|
7
|
+
static tryGetContext(): GGContext | undefined;
|
|
8
|
+
static branch(name: string): GGContext;
|
|
9
|
+
static setImmediate<R>(fn: () => R): NodeJS.Immediate;
|
|
10
|
+
static setTimeout<R>(fn: () => R, timeout: number): NodeJS.Timeout;
|
|
11
|
+
static setInterval<R>(fn: () => R, timeout: number): NodeJS.Timeout;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=GGContextStore.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GGContextStore.d.ts","sourceRoot":"","sources":["../../src/GGContextStore.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAC,MAAM,aAAa,CAAC;AACtC,OAAO,EAAC,kBAAkB,EAAC,MAAM,oBAAoB,CAAC;AAEtD,OAAO,EAAC,kBAAkB,EAAC,CAAC;AAE5B,qBAAa,cAAc;WAGT,UAAU,IAAI,OAAO;WAIrB,UAAU,IAAI,SAAS;WAQvB,aAAa,IAAI,SAAS,GAAG,SAAS;IAIpD,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,SAAS;WAQxB,YAAY,CAAC,CAAC,EAAE,EAAE,EAAE,MAAM,CAAC,GAAG,MAAM,CAAC,SAAS;WAI9C,UAAU,CAAC,CAAC,EAAE,EAAE,EAAE,MAAM,CAAC,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO;WAI3D,WAAW,CAAC,CAAC,EAAE,EAAE,EAAE,MAAM,CAAC,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO;CAI7E"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { GGContext } from "./GGContext.js";
|
|
2
|
+
import { GG_CONTEXT_STORAGE } from "./GGContextStorage.js";
|
|
3
|
+
export { GG_CONTEXT_STORAGE };
|
|
4
|
+
export class GGContextStore {
|
|
5
|
+
static hasContext() {
|
|
6
|
+
return GG_CONTEXT_STORAGE.getStore() !== undefined;
|
|
7
|
+
}
|
|
8
|
+
static getContext() {
|
|
9
|
+
const level = GG_CONTEXT_STORAGE.getStore();
|
|
10
|
+
if (!level) {
|
|
11
|
+
throw new Error(`No GGContextScope found! Make sure you have entered GGContext scope.`);
|
|
12
|
+
}
|
|
13
|
+
return level;
|
|
14
|
+
}
|
|
15
|
+
static tryGetContext() {
|
|
16
|
+
return GG_CONTEXT_STORAGE.getStore();
|
|
17
|
+
}
|
|
18
|
+
static branch(name) {
|
|
19
|
+
return new GGContext(name, GGContextStore.getContext());
|
|
20
|
+
}
|
|
21
|
+
// ----------------------------------------------------
|
|
22
|
+
// Helper functions to make life easier :)
|
|
23
|
+
// ----------------------------------------------------
|
|
24
|
+
static setImmediate(fn) {
|
|
25
|
+
return this.getContext().setImmediate(fn);
|
|
26
|
+
}
|
|
27
|
+
static setTimeout(fn, timeout) {
|
|
28
|
+
return this.getContext().setTimeout(fn, timeout);
|
|
29
|
+
}
|
|
30
|
+
static setInterval(fn, timeout) {
|
|
31
|
+
return this.getContext().setInterval(fn, timeout);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
//# sourceMappingURL=GGContextStore.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GGContextStore.js","sourceRoot":"","sources":["../../src/GGContextStore.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAC,MAAM,aAAa,CAAC;AACtC,OAAO,EAAC,kBAAkB,EAAC,MAAM,oBAAoB,CAAC;AAEtD,OAAO,EAAC,kBAAkB,EAAC,CAAC;AAE5B,MAAM,OAAO,cAAc;IAGhB,MAAM,CAAC,UAAU;QACpB,OAAO,kBAAkB,CAAC,QAAQ,EAAE,KAAK,SAAS,CAAC;IACvD,CAAC;IAEM,MAAM,CAAC,UAAU;QACpB,MAAM,KAAK,GAAG,kBAAkB,CAAC,QAAQ,EAAE,CAAC;QAC5C,IAAI,CAAC,KAAK,EAAE,CAAC;YACT,MAAM,IAAI,KAAK,CAAC,sEAAsE,CAAC,CAAC;QAC5F,CAAC;QACD,OAAO,KAAK,CAAC;IACjB,CAAC;IAEM,MAAM,CAAC,aAAa;QACvB,OAAO,kBAAkB,CAAC,QAAQ,EAAE,CAAC;IACzC,CAAC;IAED,MAAM,CAAC,MAAM,CAAC,IAAY;QACtB,OAAO,IAAI,SAAS,CAAC,IAAI,EAAE,cAAc,CAAC,UAAU,EAAE,CAAC,CAAC;IAC5D,CAAC;IAED,uDAAuD;IACvD,0CAA0C;IAC1C,uDAAuD;IAEhD,MAAM,CAAC,YAAY,CAAI,EAAW;QACrC,OAAO,IAAI,CAAC,UAAU,EAAE,CAAC,YAAY,CAAC,EAAE,CAAC,CAAC;IAC9C,CAAC;IAEM,MAAM,CAAC,UAAU,CAAI,EAAW,EAAE,OAAe;QACpD,OAAO,IAAI,CAAC,UAAU,EAAE,CAAC,UAAU,CAAC,EAAE,EAAE,OAAO,CAAC,CAAC;IACrD,CAAC;IAEM,MAAM,CAAC,WAAW,CAAI,EAAW,EAAE,OAAe;QACrD,OAAO,IAAI,CAAC,UAAU,EAAE,CAAC,WAAW,CAAC,EAAE,EAAE,OAAO,CAAC,CAAC;IACtD,CAAC;CAEJ"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GG_ENV.d.ts","sourceRoot":"","sources":["../../src/GG_ENV.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GG_ENV.js","sourceRoot":"","sources":["../../src/GG_ENV.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-browser.d.ts","sourceRoot":"","sources":["../../src/index-browser.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-browser.js","sourceRoot":"","sources":["../../src/index-browser.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-node.d.ts","sourceRoot":"","sources":["../../src/index-node.ts"],"names":[],"mappings":"AAIA,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { AsyncLocalStorage } from "node:async_hooks";
|
|
2
|
+
import { _initContextStorage } from "./GGContextStorage.js";
|
|
3
|
+
_initContextStorage(new AsyncLocalStorage());
|
|
4
|
+
export * from "./GGContext.js";
|
|
5
|
+
export * from "./GGContextKey.js";
|
|
6
|
+
export * from "./GGContextStore.js";
|
|
7
|
+
//# sourceMappingURL=index-node.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-node.js","sourceRoot":"","sources":["../../src/index-node.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,iBAAiB,EAAC,MAAM,kBAAkB,CAAC;AACnD,OAAO,EAAC,mBAAmB,EAAC,MAAM,oBAAoB,CAAC;AACvD,mBAAmB,CAAC,IAAI,iBAAiB,EAAE,CAAC,CAAC;AAE7C,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"//": "THIS FILE IS GENERATED - DO NOT EDIT",
|
|
3
|
+
"extends": "../../../tsconfig.base.json",
|
|
4
|
+
"compilerOptions": {
|
|
5
|
+
"rootDir": ".",
|
|
6
|
+
"lib": [
|
|
7
|
+
"ES2022",
|
|
8
|
+
"DOM"
|
|
9
|
+
],
|
|
10
|
+
"types": [
|
|
11
|
+
"node",
|
|
12
|
+
"vitest/globals"
|
|
13
|
+
]
|
|
14
|
+
},
|
|
15
|
+
"include": [
|
|
16
|
+
"**/*"
|
|
17
|
+
]
|
|
18
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../common/src/deepfreeze.ts","../../common/src/deepclone.ts","../../common/src/withtimeout.ts","../../common/src/ggerror.ts","../../common/src/unreachablecode.ts","../../common/src/types.ts","../../common/src/http.ts","../../common/src/secret.ts","../../common/src/sleep.ts","../../common/src/environment.ts","../../common/src/ggasyncstorage.ts","../../../node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@nodelib/fs.stat/out/types/index.d.ts","../../../node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts","../../../node_modules/@nodelib/fs.stat/out/settings.d.ts","../../../node_modules/@nodelib/fs.stat/out/providers/async.d.ts","../../../node_modules/@nodelib/fs.stat/out/index.d.ts","../../../node_modules/@nodelib/fs.scandir/out/types/index.d.ts","../../../node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts","../../../node_modules/@nodelib/fs.scandir/out/settings.d.ts","../../../node_modules/@nodelib/fs.scandir/out/providers/async.d.ts","../../../node_modules/@nodelib/fs.scandir/out/index.d.ts","../../../node_modules/@nodelib/fs.walk/out/types/index.d.ts","../../../node_modules/@nodelib/fs.walk/out/settings.d.ts","../../../node_modules/@nodelib/fs.walk/out/readers/reader.d.ts","../../../node_modules/@nodelib/fs.walk/out/readers/async.d.ts","../../../node_modules/@nodelib/fs.walk/out/providers/async.d.ts","../../../node_modules/@nodelib/fs.walk/out/index.d.ts","../../../node_modules/fast-glob/out/types/index.d.ts","../../../node_modules/fast-glob/out/settings.d.ts","../../../node_modules/fast-glob/out/managers/tasks.d.ts","../../../node_modules/fast-glob/out/index.d.ts","../../common/src/ggextensiondiscovery.ts","../../common/src/index-node.ts","../src/ggcontextstorage.ts","../src/ggcontextstore.ts","../../schema/schema/src/issue/ggissueregistry.ts","../../schema/schema/src/issue/ggissuekey.ts","../../schema/schema/src/issue/ggissueslist.ts","../../schema/schema/src/executor/aot/utils/compilerstate.ts","../../schema/schema/src/executor/aot/utils/helpers.ts","../../schema/schema/src/executor/standard/impl/code_is.ts","../../schema/schema/src/executor/aot/impl/aot_is.ts","../../schema/schema/src/executor/aot/impl/aot_clean.ts","../../schema/schema/src/executor/aot/impl/aot_stringify.ts","../../schema/schema/src/issue/issues/ggissueinvalid.ts","../../schema/schema/src/issue/issues/ggrangeissue.ts","../../schema/schema/src/errors.ts","../../schema/schema/src/executor/aot/impl/aot_validate.ts","../../schema/schema/src/executor/aot/impl/aot_coerce.ts","../../schema/schema/src/executor/aot/impl/aot_parse.ts","../../schema/schema/src/executor/aot/aotexecutor.ts","../../schema/schema/src/issue/types.ts","../../schema/schema/src/contract/ok.ts","../../schema/schema/src/contract/error.ts","../../schema/schema/src/ggtransform.ts","../../schema/schema/src/ggcodec.ts","../../schema/schema/src/ggschema.ts","../../schema/schema/src/definition.ts","../../schema/schema/src/executor/executorstrategy.ts","../../schema/schema/src/executor/standard/impl/code_clean.ts","../../schema/schema/src/executor/standard/impl/code_validate.ts","../../schema/schema/src/executor/standard/impl/code_parse.ts","../../schema/schema/src/executor/standard/impl/code_stringify.ts","../../schema/schema/src/executor/standard/standardexecutor.ts","../../schema/schema/src/schemas/isarray.ts","../../schema/schema/src/schemas/isliteral.ts","../../schema/schema/src/schemas/isobject.ts","../../schema/schema/src/schemas/isstring.ts","../../schema/schema/src/schemas/isany.ts","../../schema/schema/src/contract/standarderrors.ts","../../schema/schema/src/contract/ggpromise.ts","../../schema/schema/src/contract/ggcontractexecutor.ts","../../schema/schema/src/contract/ggcontractclass.ts","../../schema/schema/src/contract/ggcontractfunction.ts","../../schema/schema/src/executor/aot/typecompiler.ts","../../schema/schema/src/schemas/isnumber.ts","../../schema/schema/src/schemas/isboolean.ts","../../schema/schema/src/schemas/isbit.ts","../../schema/schema/src/schemas/isunion.ts","../../schema/schema/src/schemas/isunknown.ts","../../schema/schema/src/schemas/isenum.ts","../../schema/schema/src/schemas/isdiscriminated.ts","../../schema/schema/src/schemas/isrecord.ts","../../schema/schema/src/schemas/istuple.ts","../../schema/schema/src/custom/isdate.ts","../../schema/schema/src/custom/isdatetime.ts","../../schema/schema/src/custom/isint.ts","../../schema/schema/src/custom/islatitude.ts","../../schema/schema/src/custom/islongitude.ts","../../schema/schema/src/custom/isemail.ts","../../schema/schema/src/custom/ispassword.ts","../../schema/schema/src/custom/islanguage.ts","../../schema/schema/src/custom/iscountry.ts","../../schema/schema/src/custom/islocale.ts","../../schema/schema/src/index-node.ts","../src/ggcontextkey.ts","../src/ggcontext.ts","../src/gg_env.ts","../src/index-browser.ts","../src/index-node.ts"],"fileIdsList":[[75,124,141,142,179,180],[75,124,141,142,180,181,182,183],[75,124,141,142,174,180,182],[75,124,141,142,179,181],[75,124,136,141,142,174],[75,124,136,141,142,174,175],[75,124,141,142,175,176,177,178],[75,124,141,142,175,177],[75,124,141,142,176],[75,124,141,142,156,174,184,185,186,189],[75,124,141,142,185,186,188],[75,124,135,141,142,174,184,185,186,187],[75,124,141,142,186],[75,124,141,142,184,185],[75,124,141,142,174,184],[75,121,122,124,141,142],[75,123,124,141,142],[124,141,142],[75,124,129,141,142,159],[75,124,125,130,135,141,142,144,156,167],[75,124,125,126,135,141,142,144],[75,124,141,142],[70,71,72,75,124,141,142],[75,124,127,141,142,168],[75,124,128,129,136,141,142,145],[75,124,129,141,142,156,164],[75,124,130,132,135,141,142,144],[75,123,124,131,141,142],[75,124,132,133,141,142],[75,124,134,135,141,142],[75,123,124,135,141,142],[75,124,135,136,137,141,142,156,167],[75,124,135,136,137,141,142,151,156,159],[75,117,124,132,135,138,141,142,144,156,167],[75,124,135,136,138,139,141,142,144,156,164,167],[75,124,138,140,141,142,156,164,167],[73,74,75,76,77,78,79,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[75,124,135,141,142],[75,124,141,142,143,167],[75,124,132,135,141,142,144,156],[75,124,141,142,145],[75,124,141,142,146],[75,123,124,141,142,147],[75,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[75,124,141,142,149],[75,124,141,142,150],[75,124,135,141,142,151,152],[75,124,141,142,151,153,168,170],[75,124,136,141,142],[75,124,135,141,142,156,157,159],[75,124,141,142,158,159],[75,124,141,142,156,157],[75,124,141,142,159],[75,124,141,142,160],[75,121,124,141,142,156,161,167],[75,124,135,141,142,162,163],[75,124,141,142,162,163],[75,124,129,141,142,144,156,164],[75,124,141,142,165],[75,124,141,142,144,166],[75,124,138,141,142,150,167],[75,124,129,141,142,168],[75,124,141,142,156,169],[75,124,141,142,143,170],[75,124,141,142,171],[75,117,124,141,142],[75,117,124,135,137,141,142,147,156,159,167,169,170,172],[75,124,141,142,156,173],[75,124,141,142,174,191,192,193],[75,124,141,142,191,192],[75,124,141,142,191],[75,124,141,142,174,190],[75,89,93,124,141,142,167],[75,89,124,141,142,156,167],[75,84,124,141,142],[75,86,89,124,141,142,164,167],[75,124,141,142,144,164],[75,124,141,142,174],[75,84,124,141,142,174],[75,86,89,124,141,142,144,167],[75,81,82,85,88,124,135,141,142,156,167],[75,89,96,124,141,142],[75,81,87,124,141,142],[75,89,110,111,124,141,142],[75,85,89,124,141,142,159,167,174],[75,110,124,141,142,174],[75,83,84,124,141,142,174],[75,89,124,141,142],[75,83,84,85,86,87,88,89,90,91,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,111,112,113,114,115,116,124,141,142],[75,89,104,124,141,142],[75,89,96,97,124,141,142],[75,87,89,97,98,124,141,142],[75,88,124,141,142],[75,81,84,89,124,141,142],[75,89,93,97,98,124,141,142],[75,93,124,141,142],[75,87,89,92,124,141,142,167],[75,81,86,89,96,124,141,142],[75,124,141,142,156],[75,84,89,110,124,141,142,172,174],[75,124,136,141,142,146,167,194],[59,60,61,62,63,64,65,66,67,68,69,75,124,141,142,195],[75,124,141,142,198,259],[75,124,141,142,198,258],[75,124,141,142,196,260],[75,124,141,142,197,260],[75,124,141,142,198,259,260],[75,123,124,141,142,197,198,259,260],[75,124,141,142,216,220],[75,124,141,142,217,220,233,234,235],[75,124,141,142,216,217,220,233,234,236],[75,124,141,142,234,235,236],[75,124,141,142,216,217],[75,124,141,142,217,228,230,231,232],[75,124,141,142,208,231],[75,124,141,142,239],[75,124,141,142,201,208,220,221],[75,124,141,142,200,201,220],[75,124,141,142,208,209],[75,124,141,142,205,206,207,213,222],[75,124,141,142,202,203,220,221],[75,124,141,142,202,203,204,220,221],[75,124,141,142,201,205,206,211,212,220,221],[75,124,141,142,200,201,202,203,204,210,220,221],[75,124,136,141,142,205,206,207,211,220],[75,124,141,142,220],[75,124,141,142,201,220,221],[75,124,141,142,204,221],[75,124,141,142,221],[75,124,141,142,200,201,221,223,224],[75,124,141,142,221,223],[75,124,141,142,200,201,204,210,221],[75,124,141,142,204,221,222,223,225,226],[75,124,141,142,218,220],[75,124,141,142,200,201,214,215,218,219,221,222],[75,124,141,142,215,217,220],[75,124,141,142,199,200,201,208,209,214,215,216,217,218,219,220,221,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257],[75,124,141,142,199,201],[75,124,141,142,200],[75,124,141,142,208],[75,124,141,142,220,221],[75,124,141,142,229],[75,124,141,142,220,221,229],[75,124,141,142,208,220,221]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},"472816436c6db76434485c6257583dc150a2017733cd2e9aca9d91904584c040","fa5a1bbd7930a3aa8dbbd8ce19e89603df3daca14f080e1b7ad815d3f42408d3","e4542756b59d74ff2c036478942546e5937d35808eae08b6ae934164a7f2b97e","f369191ac0c4224b491791d2b711e0d8a29eaae730578a13c63016ee71feddb0","6fc71745fb086db4de247f9f62c7e1932d5c7c6f9d6a593feee7d76f0f2a5010","1f083bc5e8f2791b54ae5ebf69380dace5da834ecb9d37864dbe046aff3796cd","af392737db53a482cfda4c6ad3c013a62a806fe7be9e31c3b00ba3977ac39f75","565b2d44f499b7041ab79933ac8a041bdad5629dd4aec003bea4ba02a5ca1098","a527c423aeb061ecf2d971a6e3bf624880c0408bcf72a97dacf82013235e6731","ade68182d7a12c48e460596b96462aa18372bd505e8c21577445b0dc2343b6ee","04a4003ab34c3db124058179940c00f366f871d87ff1d318f13720c0b6269499",{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"808069bba06b6768b62fd22429b53362e7af342da4a236ed2d2e1c89fcca3b4a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true,"impliedFormat":1},{"version":"f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fa06ada475b910e2106c98c68b10483dc8811d0c14a8a8dd36efb2672485b29","impliedFormat":1},{"version":"33e5e9aba62c3193d10d1d33ae1fa75c46a1171cf76fef750777377d53b0303f","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"6a0cd27e5dc2cfbe039e731cf879d12b0e2dded06d1b1dedad07f7712de0d7f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f5c844119c43e51ce777c509267f14d6aaf31eafb2c2b002ca35584cd13b29","impliedFormat":1},{"version":"e60477649d6ad21542bd2dc7e3d9ff6853d0797ba9f689ba2f6653818999c264","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4c829ab315f57c5442c6667b53769975acbf92003a66aef19bce151987675bd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"b2ade7657e2db96d18315694789eff2ddd3d8aea7215b181f8a0b303277cc579","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"4d631b81fa2f07a0e63a9a143d6a82c25c5f051298651a9b69176ba28930756d","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"41670ee38943d9cbb4924e436f56fc19ee94232bc96108562de1a734af20dc2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c906fb15bd2aabc9ed1e3f44eb6a8661199d6c320b3aa196b826121552cb3695","impliedFormat":1},{"version":"22295e8103f1d6d8ea4b5d6211e43421fe4564e34d0dd8e09e520e452d89e659","impliedFormat":1},{"version":"f949f7f6c7802a338039cfc2156d1fe285cdd1e092c64437ebe15ae8edc854e0","impliedFormat":1},{"version":"6b4e081d55ac24fc8a4631d5dd77fe249fa25900abd7d046abb87d90e3b45645","impliedFormat":1},{"version":"a10f0e1854f3316d7ee437b79649e5a6ae3ae14ffe6322b02d4987071a95362e","impliedFormat":1},{"version":"e208f73ef6a980104304b0d2ca5f6bf1b85de6009d2c7e404028b875020fa8f2","impliedFormat":1},{"version":"d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc","impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"83e63d6ccf8ec004a3bb6d58b9bb0104f60e002754b1e968024b320730cc5311","impliedFormat":1},{"version":"24826ed94a78d5c64bd857570fdbd96229ad41b5cb654c08d75a9845e3ab7dde","impliedFormat":1},{"version":"8b479a130ccb62e98f11f136d3ac80f2984fdc07616516d29881f3061f2dd472","impliedFormat":1},{"version":"928af3d90454bf656a52a48679f199f64c1435247d6189d1caf4c68f2eaf921f","affectsGlobalScope":true,"impliedFormat":1},{"version":"d2bc7425ef40526650d6db7e072c1ff4a51101c3ac2cc4b666623b19496a6e27","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"a3fc63c0d7b031693f665f5494412ba4b551fe644ededccc0ab5922401079c95","impliedFormat":1},{"version":"f27524f4bef4b6519c604bdb23bf4465bddcccbf3f003abb901acbd0d7404d99","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"6b039f55681caaf111d5eb84d292b9bee9e0131d0db1ad0871eef0964f533c73","affectsGlobalScope":true,"impliedFormat":1},{"version":"18fd40412d102c5564136f29735e5d1c3b455b8a37f920da79561f1fde068208","impliedFormat":1},{"version":"c8d3e5a18ba35629954e48c4cc8f11dc88224650067a172685c736b27a34a4dc","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"0dba70b3fb0dcd713fda33c2df64fa6751fff6460e536971cee917260fb17882","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"5b7aa3c4c1a5d81b411e8cb302b45507fea9358d3569196b27eb1a27ae3a90ef","affectsGlobalScope":true,"impliedFormat":1},{"version":"5987a903da92c7462e0b35704ce7da94d7fdc4b89a984871c0e2b87a8aae9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea08a0345023ade2b47fbff5a76d0d0ed8bff10bc9d22b83f40858a8e941501c","impliedFormat":1},{"version":"47613031a5a31510831304405af561b0ffaedb734437c595256bb61a90f9311b","impliedFormat":1},{"version":"ae062ce7d9510060c5d7e7952ae379224fb3f8f2dd74e88959878af2057c143b","impliedFormat":1},{"version":"8a1a0d0a4a06a8d278947fcb66bf684f117bf147f89b06e50662d79a53be3e9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"9f663c2f91127ef7024e8ca4b3b4383ff2770e5f826696005de382282794b127","impliedFormat":1},{"version":"9f55299850d4f0921e79b6bf344b47c420ce0f507b9dcf593e532b09ea7eeea1","impliedFormat":1},{"version":"46324183533e34fad2461b51174132e8e0e4b3ac1ceb5032e4952992739d1eab","impliedFormat":1},{"version":"d3fa0530dfb1df408f0abd76486de39def69ca47683d4a3529b2d22fce27c693","impliedFormat":1},{"version":"d9be977c415df16e4defe4995caeca96e637eeef9d216d0d90cdba6fc617e97e","impliedFormat":1},{"version":"98e0c2b48d855a844099123e8ec20fe383ecd1c5877f3895b048656befe268d0","impliedFormat":1},{"version":"ff53802a97b7d11ab3c4395aa052baa14cd12d2b1ed236b520a833fdd2a15003","impliedFormat":1},{"version":"fce9262f840a74118112caf685b725e1cc86cd2b0927311511113d90d87cc61e","impliedFormat":1},{"version":"d7a7cac49af2a3bfc208fe68831fbfa569864f74a7f31cc3a607f641e6c583fd","impliedFormat":1},{"version":"9a80e3322d08274f0e41b77923c91fe67b2c8a5134a5278c2cb60a330441554e","impliedFormat":1},{"version":"2460af41191009298d931c592fb6d4151beea320f1f25b73605e2211e53e4e88","impliedFormat":1},{"version":"2f87ea988d84d1c617afdeba9d151435473ab24cd5fc456510c8db26d8bd1581","impliedFormat":1},{"version":"b7336c1c536e3deaedbda956739c6250ac2d0dd171730c42cb57b10368f38a14","impliedFormat":1},{"version":"6fb67d664aaab2f1d1ad4613b58548aecb4b4703b9e4c5dba6b865b31bd14722","impliedFormat":1},{"version":"4414644199b1a047b4234965e07d189781a92b578707c79c3933918d67cd9d85","impliedFormat":1},{"version":"04a4b38c6a1682059eac00e7d0948d99c46642b57003d61d0fe9ccc9df442887","impliedFormat":1},{"version":"f12ea658b060da1752c65ae4f1e4c248587f6cd4cb4acabbf79a110b6b02ff75","impliedFormat":1},{"version":"011b2857871a878d5eae463bedc4b3dd14755dc3a67d5d10f8fbb7823d119294","impliedFormat":1},{"version":"d406b797d7b2aff9f8bd6c023acfaa5a5fc415bfbf01975e23d415d3f54857af","impliedFormat":1},{"version":"7d71b2d1a537fe41760a16441cd95d98fcb59ddf9c714aba2fecba961ab253b6","impliedFormat":1},{"version":"a9bd8a2bbd03a72054cbdf0cd2a77fabea4e3ae591dd02b8f58bda0c34e50c1c","impliedFormat":1},{"version":"386cc88a3bdee8bc651ead59f8afc9dc5729fc933549bbd217409eabad05ba3e","impliedFormat":1},"3db191719d15341432d04b4bec0767f2e52c3bf7a3b10c1869604b312ec167b3","1c558f5e6f4eeab86fff25eaa83643725ae793810f98aaf0513ed187e0157231",{"version":"e634cfd449f6d80a1ac4196bf412ed10e233cd25142d4c639fa19e19736dfb58","signature":"133bdbd8a4eb5f05d83e097f7b421af0ec8c044119f1fc9de4f580467f5cd93d"},{"version":"7a9eefe55f30724d62070a7ff23762953f23ca943f91e0a2794a294de9c6889a","signature":"8418bfe68b439d51a8a421f34f5a0e94ca0455632871b3e122c4187477a276c2"},"6dda9ed335e808d3e6c6c7913580d52cfe7b83ad7a407c30707a84ce09dbbc8d","e4f962359a5de05815e5514290f8395064286792e6797ec6d9640fa264a96816","c1cbe74128ce47317c607d3d37acdedd34517129ba52466a1f9be9e91126a153","71f6312bca202aeecf96fce2be0b540bce15ef57344cf3ca6d6b2f944bb78f76","c5d9678a302aa17e65268bf175dde4351c67a4efc63a004037852f56ee0d9537","55ab129057e401989e77e23e594c7db73d53bbfc16a89f5f9d89779976c2350d","e4b823394a10cc111c315a09b5597cb7a6411f9453ad94002a20c0033bedce6d","4af14b11b64207604b6436bfb69ea48f1c06ec49c416e07c2929a4498348f35d","ee60d55c961fe4a8fe611b264724751135a2d10f64a545a168b2ea31ec9a2710","b86c3de7f1457e96e2647f5bad29fe02165bfb48d45195912e340ce850e4b825","9614071786bdbaab336355260b20dcb079c98a4d2bdf4c7b93b971de5442f55a","fd1c37e48ed750d9b732614bec90c00c1bad40b82290dce1b399e2ef629a8ff9","78af30bd752fdc6a380c34a7d265628cf005a485c63ac07461d9f474be60cf04","c997d867e37f77fbe74923a7da826b110ef3622434fb78a16e42ebbc0e9dd5d3","7fcbd87fdac44071981d53dfd3c9486dec3e8e681faa0e8b242eb02e697505b3","eef5d49efa58f87fc8adf58af6a973229ccbf15d02c41c9c36abdd8e1acde27a","58b32bad22d6299f71b97f88711785722bb9ac07aa322b0f79b5dfb7c938cdf9","d0f90e162407dbdfb8972aaff199aff270701d2ef379822fe3d03b0137716154","3d02fb0fa562d47079043b4ce46f3f6a45c27484e19368cc79b536c9d669a3d4","cf50774c14be53de14f7e4d911fe69b87ec7648d1192f9a08f3add88a7e3959f","668de9ba46248ff77c8c42f0348c20869aff68b6914496462297fad61d83cda7","0ee6b2fad2a4ca64df11f45b9df701d7c64e742e1a72ccb9803aa7dd744c01f5","a7f5400a5c42d5c7acfd8ddd6c0d4667c7f49da74d3248b73ba9fe62920dfd86","6f55f7f113a67ae113fc7d998712bb21358e1377c7cf5927b76132f8cafd9f63","d743e9a3d80a405c55e249202037f7f462cbffb7c88074ecd2b22fc413f654e1","35104d0632ad6d2bcdea723ff70ee6aaa98b26c4edbdd1d932a61ba0caa40bd7","1eba2f2bab1412fa111c23280faa78a7e48c6c8dbf3ffc69efce33f80d81579f","760a6e6528fe846a7d6886f22c6cb6562a2749ce21649adda208f3bd50d1681f","6d6b50963f410f5ae1a3c8acd5f26a6243c4fd20c1108c2c39fcd29c924615b4","0d71d05f34f326f74f9e80035024874fb2248d35ec0dc2566a23c13b35be08b2","35b7415675495780cc215f86364ff7cb3cc7f6ccda935d0cb12fb24e40ae0b19","973ca4c71f41c7b69a1b96e0baed13d5a672f3b567ed72a993a64d04325cc47b","9caf37688cb1bf9c6ba02914afd3f8a362386eacfed3643d85544e957e8e5220","06f0c719153c13f3b5402828c27d2b06b768d0d018ee212121ba7bff104606d9","79b5337a12f42549a8434edb08ee2c519c9b38d1fa4615a25b00aab03d58340a","63f63054c8763e1f2eeff9f968d326f61582390b5b10d0f00a6d4451857b59b2","781eb690d5fe95b306ae404c36fb7729096f7de38f99b656d6669e921fcde4e9","1b9370a466bb1c2463a87fd017195959769994c02abf9c0f84eee56300b93b45","6634f2625deba5d4c035686fbbb6f41f05a8126d493e000ff494b463174b366e","c1d6d7b43436f5bff3dbc5b0b7e44dc499be5ea0b3dda5039a4be11ca698b494","da5239dff4eb02eb436ff45bc5bd7d2ddf606f22f7695c930df30b1c30fc45db","561790d37729ad9fcbda96cb56aa6b3e61ea1ba252f5e180b842b6243dc3f280","33f445524ca27f21c97501361ca8de8510028d8aca61a1bf969fcdab900f26f2","dbc92439171fb41df4c1f17e5d2b320942a7841db3bce2fae6c65c61d6c77ab5","51d9d9249aa7a5f70b80964125dac09e16831d632b55cb5463df1c4a2e00b7e8","c4f1819b3684e55a1d95cddbba72290a001823b2fdd5270a08a89ad32264bd0a","f8036ce871bd1365c6a062691c8f4ceeb421542e1338295482b6a87fbdb0d6ed","4efe99bfb1cb83d27367383d1a5172452d0443213bca41fe353ae8d50d6eece8","42a989d547ed70afb6f1087a11d5c22f91d73ce8633b6cb1a1ed2cb229c982a2","0a0c4cd99890dffd0c1b218f330c4ef39fd73354799147f832ad9ce2bf6d54c3","53095cb747500235b66215127e40722d137e5da07074e3d9cf5171e2c3058082","0569c219196e3b2b5995a3011be70f2005f4c412c73da9f01d7990c7cf32763a","04d001bf26b5faa883b2e94c9f24d81e7b40fe1f4dad9f34e91441d483a1d408","a922c76e71ae3873d4f61352f91fbfb184444bf46e68760323e3a6d546fdef4c","b4531771b1b3e3780d0b32dab9a734a538a77a1dc634e97a06aec2393655a709","b7b3395362937b230c2c2dfc7b2d7563070a832cd764d2c0ddf11119657f0469","bb4a632288522e1da530da4990d6e3e01c9a8d2aa68f307f120adb435b9a340a","6a3a277d27350eeea0c263905a156f67e894011bebccf9cb39cf30fd493b638f","8c2912684c31e117d0c249add0f5b2717046249653db137053e2dca56204a046","0422f739f406d5387be11ae697b7026042de1394d0cb00ef6de49f8a74f46f8c",{"version":"1de0dc87b09b3c11d27f9e5fdf676cff3e203cda24e0a76f40dc20e3b3838005","signature":"d7b2b2aefa560f7a89243a7ab8c72b95efd84e3506dc4a4d0e4de8141f9fcac4"},{"version":"705daa5505e9d37a40b14358b7fe64770e49e97ea8b82ddb8a5878802f6a8f9d","signature":"9b84106c216f9a718edf77faf6831aacecc00f5b7c98d27a5c8ef83c1811606a"},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"d2bc15cd513eadfc71d4757a586eaafbfac1ebaf474ce025ad1063a2a3836ce1","signature":"963896778fcf430a5910192dd4ee62410dfc8c67433ea9af050d01f1cdba9cc6"},{"version":"2f718a9f89b40192ceadc7aeea5bf3f03830e9e0b75b8b5c1203a65f62d779d1","signature":"963896778fcf430a5910192dd4ee62410dfc8c67433ea9af050d01f1cdba9cc6"}],"root":[197,198,[259,263]],"options":{"allowJs":false,"checkJs":false,"composite":false,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":99,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":false,"outDir":"./","rootDir":"..","skipLibCheck":true,"sourceMap":true,"target":9},"referencedMap":[[181,1],[184,2],[183,3],[182,4],[180,5],[176,6],[179,7],[178,8],[177,9],[175,5],[190,10],[189,11],[188,12],[187,13],[186,14],[185,15],[121,16],[122,16],[123,17],[75,18],[124,19],[125,20],[126,21],[70,22],[73,23],[71,22],[72,22],[127,24],[128,25],[129,26],[130,27],[131,28],[132,29],[133,29],[134,30],[135,31],[136,32],[137,33],[76,22],[74,22],[138,34],[139,35],[140,36],[174,37],[141,38],[142,22],[143,39],[144,40],[145,41],[146,42],[147,43],[148,44],[149,45],[150,46],[151,47],[152,47],[153,48],[154,22],[155,49],[156,50],[158,51],[157,52],[159,53],[160,54],[161,55],[162,56],[163,57],[164,58],[165,59],[166,60],[167,61],[168,62],[169,63],[170,64],[171,65],[77,22],[78,22],[79,22],[118,66],[119,22],[120,22],[172,67],[173,68],[80,22],[194,69],[193,70],[192,71],[191,72],[57,22],[58,22],[10,22],[12,22],[11,22],[2,22],[13,22],[14,22],[15,22],[16,22],[17,22],[18,22],[19,22],[20,22],[3,22],[21,22],[22,22],[4,22],[23,22],[27,22],[24,22],[25,22],[26,22],[28,22],[29,22],[30,22],[5,22],[31,22],[32,22],[33,22],[34,22],[6,22],[38,22],[35,22],[36,22],[37,22],[39,22],[7,22],[40,22],[45,22],[46,22],[41,22],[42,22],[43,22],[44,22],[8,22],[50,22],[47,22],[48,22],[49,22],[51,22],[9,22],[52,22],[53,22],[54,22],[56,22],[55,22],[1,22],[96,73],[106,74],[95,73],[116,75],[87,76],[86,77],[115,78],[109,79],[114,80],[89,81],[103,82],[88,83],[112,84],[84,85],[83,78],[113,86],[85,87],[90,88],[91,22],[94,88],[81,22],[117,89],[107,90],[98,91],[99,92],[101,93],[97,94],[100,95],[110,78],[92,96],[93,97],[102,98],[82,99],[105,90],[104,88],[108,22],[111,100],[60,22],[59,22],[68,22],[69,22],[62,22],[195,101],[65,22],[196,102],[66,22],[67,22],[64,22],[63,22],[61,22],[261,22],[260,103],[259,104],[197,105],[198,106],[262,107],[263,108],[217,109],[236,110],[235,111],[237,112],[234,113],[216,22],[233,114],[256,115],[248,115],[249,115],[253,115],[250,116],[255,115],[251,116],[257,115],[252,116],[254,117],[221,118],[210,119],[214,120],[206,121],[212,122],[205,122],[213,123],[207,121],[211,124],[238,125],[202,126],[203,22],[222,127],[223,128],[204,129],[225,130],[226,131],[224,132],[227,133],[219,134],[220,135],[218,136],[258,137],[200,138],[199,139],[201,139],[208,139],[209,140],[215,22],[232,141],[228,141],[241,141],[240,141],[245,141],[244,142],[229,141],[239,141],[230,143],[246,141],[231,144],[247,141],[242,141],[243,141]],"semanticDiagnosticsPerFile":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263],"checkPending":true,"version":"5.9.3"}
|
package/package.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@grest-ts/context",
|
|
3
|
+
"version": "0.0.5",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"description": "Hierarchical async context",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"browser": {
|
|
10
|
+
"types": "./dist/src/index-browser.d.ts",
|
|
11
|
+
"import": "./dist/src/index-browser.js"
|
|
12
|
+
},
|
|
13
|
+
"default": {
|
|
14
|
+
"types": "./dist/src/index-node.d.ts",
|
|
15
|
+
"import": "./dist/src/index-node.js"
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist",
|
|
21
|
+
"src"
|
|
22
|
+
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"typecheck": "tsc --noEmit -p src",
|
|
25
|
+
"test": "vitest run",
|
|
26
|
+
"test:coverage": "vitest run --coverage",
|
|
27
|
+
"test:coverage:html": "vitest run --coverage --reporter=html"
|
|
28
|
+
},
|
|
29
|
+
"publishConfig": {
|
|
30
|
+
"access": "public"
|
|
31
|
+
},
|
|
32
|
+
"repository": {
|
|
33
|
+
"type": "git",
|
|
34
|
+
"url": "https://github.com/grest-ts/grest-ts.git",
|
|
35
|
+
"directory": "packages/context"
|
|
36
|
+
},
|
|
37
|
+
"homepage": "https://github.com/grest-ts/grest-ts/tree/master/packages/context",
|
|
38
|
+
"bugs": {
|
|
39
|
+
"url": "https://github.com/grest-ts/grest-ts/issues"
|
|
40
|
+
},
|
|
41
|
+
"keywords": [
|
|
42
|
+
"typescript",
|
|
43
|
+
"framework",
|
|
44
|
+
"contract",
|
|
45
|
+
"api",
|
|
46
|
+
"microservices",
|
|
47
|
+
"testing",
|
|
48
|
+
"context",
|
|
49
|
+
"async-context",
|
|
50
|
+
"dependency-injection"
|
|
51
|
+
],
|
|
52
|
+
"engines": {
|
|
53
|
+
"node": ">=22"
|
|
54
|
+
},
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"@grest-ts/common": "0.0.5",
|
|
57
|
+
"@grest-ts/schema": "0.0.5"
|
|
58
|
+
},
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"@grest-ts/x-packager": "0.0.5"
|
|
61
|
+
}
|
|
62
|
+
}
|
package/src/GGContext.ts
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import type {GGContextKey} from "./GGContextKey";
|
|
2
|
+
import {GG_CONTEXT_STORAGE} from "./GGContextStore";
|
|
3
|
+
|
|
4
|
+
export class GGContext {
|
|
5
|
+
|
|
6
|
+
public readonly name: string
|
|
7
|
+
private readonly parent: GGContext | undefined
|
|
8
|
+
private readonly values: Map<string, any>
|
|
9
|
+
|
|
10
|
+
constructor(name: string, parent?: GGContext) {
|
|
11
|
+
this.name = name
|
|
12
|
+
this.parent = parent
|
|
13
|
+
this.values = new Map();
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
public get<T>(token: GGContextKey<T>): T {
|
|
17
|
+
return this.values.get(token.name) ?? this.parent?.get(token);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
public set<T>(token: GGContextKey<T>, value: T): this {
|
|
21
|
+
this.values.set(token.name, value);
|
|
22
|
+
return this;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
public has<T>(token: GGContextKey<T>): boolean {
|
|
26
|
+
return this.values.has(token.name) || this.parent?.has(token);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
public delete<T>(token: GGContextKey<T>): void {
|
|
30
|
+
this.values.delete(token.name)
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
// -----------
|
|
34
|
+
|
|
35
|
+
public setImmediate<R>(fn: () => R): NodeJS.Immediate {
|
|
36
|
+
return setImmediate(() => this.run(fn))
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
public setTimeout<R>(fn: () => R, timeout: number): NodeJS.Timeout {
|
|
40
|
+
return setTimeout(() => this.run(fn), timeout)
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
public setInterval<R>(fn: () => R, timeout: number): NodeJS.Timeout {
|
|
44
|
+
return setInterval(() => this.run(fn), timeout)
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
// -----------
|
|
48
|
+
|
|
49
|
+
public run<R>(fn: () => R): R {
|
|
50
|
+
return GG_CONTEXT_STORAGE.run(this, fn);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
public reset(): void {
|
|
54
|
+
this.values.clear();
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import {GGContextStore} from "./GGContextStore";
|
|
2
|
+
import {GGCodec, GGSchema} from "@grest-ts/schema";
|
|
3
|
+
|
|
4
|
+
export interface GGContextMeta<T> {
|
|
5
|
+
description?: string
|
|
6
|
+
defaultValue?: T
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export class GGContextKey<Type> {
|
|
10
|
+
|
|
11
|
+
public readonly name: string
|
|
12
|
+
public readonly schema: GGSchema<Type>
|
|
13
|
+
public readonly description?: string
|
|
14
|
+
public readonly defaultValue?: Type
|
|
15
|
+
private codecs: Map<string, GGCodec<any, Type>>
|
|
16
|
+
|
|
17
|
+
constructor(name: string, schema: GGSchema<Type>, meta?: GGContextMeta<Type>) {
|
|
18
|
+
this.name = name
|
|
19
|
+
this.schema = schema;
|
|
20
|
+
this.description = meta?.description
|
|
21
|
+
this.defaultValue = meta?.defaultValue
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
public get(): Type | undefined {
|
|
25
|
+
return GGContextStore.tryGetContext()?.get(this) ?? this.defaultValue
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
public has(): boolean {
|
|
29
|
+
return GGContextStore.tryGetContext()?.has(this) ?? false
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
public set(value: Type): void {
|
|
33
|
+
GGContextStore.getContext().set(this, value)
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
public delete(): void {
|
|
37
|
+
GGContextStore.getContext().delete(this)
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* Asserts that context value for this key exists. If not, throws Error.
|
|
42
|
+
*/
|
|
43
|
+
public assert(): Type {
|
|
44
|
+
if (!this.has()) {
|
|
45
|
+
throw new Error(`Context named '${this.name}' is required, but not defined!`);
|
|
46
|
+
}
|
|
47
|
+
return this.get()
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
// ---------------------------------------------
|
|
51
|
+
|
|
52
|
+
public addCodec(type: string, codec: GGCodec<any, Type>): void {
|
|
53
|
+
if (!this.codecs) {
|
|
54
|
+
this.codecs = new Map()
|
|
55
|
+
}
|
|
56
|
+
this.codecs.set(type, codec)
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
public getCodec(type: string): GGCodec<any, Type> | undefined {
|
|
60
|
+
return this.codecs?.get(type)
|
|
61
|
+
}
|
|
62
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type {GGContext} from "./GGContext";
|
|
2
|
+
import {BrowserAsyncStorage, type IAsyncStorage} from "@grest-ts/common";
|
|
3
|
+
|
|
4
|
+
// Browser-safe by default. Node.js entry replaces with real AsyncLocalStorage.
|
|
5
|
+
export let GG_CONTEXT_STORAGE: IAsyncStorage<GGContext> = new BrowserAsyncStorage();
|
|
6
|
+
|
|
7
|
+
export function _initContextStorage(storage: IAsyncStorage<GGContext>): void {
|
|
8
|
+
GG_CONTEXT_STORAGE = storage;
|
|
9
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import {GGContext} from "./GGContext";
|
|
2
|
+
import {GG_CONTEXT_STORAGE} from "./GGContextStorage";
|
|
3
|
+
|
|
4
|
+
export {GG_CONTEXT_STORAGE};
|
|
5
|
+
|
|
6
|
+
export class GGContextStore {
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
public static hasContext(): boolean {
|
|
10
|
+
return GG_CONTEXT_STORAGE.getStore() !== undefined;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
public static getContext(): GGContext {
|
|
14
|
+
const level = GG_CONTEXT_STORAGE.getStore();
|
|
15
|
+
if (!level) {
|
|
16
|
+
throw new Error(`No GGContextScope found! Make sure you have entered GGContext scope.`);
|
|
17
|
+
}
|
|
18
|
+
return level;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
public static tryGetContext(): GGContext | undefined {
|
|
22
|
+
return GG_CONTEXT_STORAGE.getStore();
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
static branch(name: string): GGContext {
|
|
26
|
+
return new GGContext(name, GGContextStore.getContext());
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
// ----------------------------------------------------
|
|
30
|
+
// Helper functions to make life easier :)
|
|
31
|
+
// ----------------------------------------------------
|
|
32
|
+
|
|
33
|
+
public static setImmediate<R>(fn: () => R): NodeJS.Immediate {
|
|
34
|
+
return this.getContext().setImmediate(fn);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
public static setTimeout<R>(fn: () => R, timeout: number): NodeJS.Timeout {
|
|
38
|
+
return this.getContext().setTimeout(fn, timeout);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
public static setInterval<R>(fn: () => R, timeout: number): NodeJS.Timeout {
|
|
42
|
+
return this.getContext().setInterval(fn, timeout);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
}
|
package/src/GG_ENV.ts
ADDED
|
File without changes
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"//": "THIS FILE IS GENERATED - DO NOT EDIT",
|
|
3
|
+
"extends": "../../../tsconfig.base.json",
|
|
4
|
+
"compilerOptions": {
|
|
5
|
+
"rootDir": ".",
|
|
6
|
+
"lib": [
|
|
7
|
+
"ES2022",
|
|
8
|
+
"DOM"
|
|
9
|
+
],
|
|
10
|
+
"types": [
|
|
11
|
+
"node",
|
|
12
|
+
"vitest/globals"
|
|
13
|
+
]
|
|
14
|
+
},
|
|
15
|
+
"include": [
|
|
16
|
+
"**/*"
|
|
17
|
+
]
|
|
18
|
+
}
|