@effect/sql-pg 4.0.0-beta.7 → 4.0.0-beta.70
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/README.md +1 -1
- package/dist/PgClient.d.ts +108 -36
- package/dist/PgClient.d.ts.map +1 -1
- package/dist/PgClient.js +412 -194
- package/dist/PgClient.js.map +1 -1
- package/dist/PgMigrator.d.ts +37 -9
- package/dist/PgMigrator.d.ts.map +1 -1
- package/dist/PgMigrator.js +77 -60
- package/dist/PgMigrator.js.map +1 -1
- package/dist/index.d.ts +40 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +40 -3
- package/dist/index.js.map +1 -1
- package/package.json +9 -9
- package/src/PgClient.ts +619 -267
- package/src/PgMigrator.ts +103 -65
- package/src/index.ts +40 -3
package/README.md
CHANGED
package/dist/PgClient.d.ts
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import * as Config from "effect/Config";
|
|
2
|
+
import * as Context from "effect/Context";
|
|
2
3
|
import * as Duration from "effect/Duration";
|
|
3
4
|
import * as Effect from "effect/Effect";
|
|
4
5
|
import * as Layer from "effect/Layer";
|
|
5
6
|
import * as Redacted from "effect/Redacted";
|
|
6
7
|
import * as Scope from "effect/Scope";
|
|
7
|
-
import * as ServiceMap from "effect/ServiceMap";
|
|
8
8
|
import * as Stream from "effect/Stream";
|
|
9
9
|
import * as Reactivity from "effect/unstable/reactivity/Reactivity";
|
|
10
10
|
import * as Client from "effect/unstable/sql/SqlClient";
|
|
11
|
+
import type * as SqlConnection from "effect/unstable/sql/SqlConnection";
|
|
11
12
|
import { SqlError } from "effect/unstable/sql/SqlError";
|
|
12
13
|
import type { Custom, Fragment } from "effect/unstable/sql/Statement";
|
|
13
14
|
import * as Statement from "effect/unstable/sql/Statement";
|
|
@@ -15,18 +16,24 @@ import type { Duplex } from "node:stream";
|
|
|
15
16
|
import type { ConnectionOptions } from "node:tls";
|
|
16
17
|
import * as Pg from "pg";
|
|
17
18
|
/**
|
|
18
|
-
*
|
|
19
|
-
*
|
|
19
|
+
* Runtime type identifier used to mark `PgClient` values.
|
|
20
|
+
*
|
|
21
|
+
* @category type IDs
|
|
22
|
+
* @since 4.0.0
|
|
20
23
|
*/
|
|
21
24
|
export declare const TypeId: TypeId;
|
|
22
25
|
/**
|
|
23
|
-
*
|
|
24
|
-
*
|
|
26
|
+
* Type-level identifier used to mark `PgClient` values.
|
|
27
|
+
*
|
|
28
|
+
* @category type IDs
|
|
29
|
+
* @since 4.0.0
|
|
25
30
|
*/
|
|
26
31
|
export type TypeId = "~@effect/sql-pg/PgClient";
|
|
27
32
|
/**
|
|
33
|
+
* PostgreSQL client service, extending `SqlClient` with JSON parameter fragments and LISTEN/NOTIFY helpers.
|
|
34
|
+
*
|
|
28
35
|
* @category models
|
|
29
|
-
* @since
|
|
36
|
+
* @since 4.0.0
|
|
30
37
|
*/
|
|
31
38
|
export interface PgClient extends Client.SqlClient {
|
|
32
39
|
readonly [TypeId]: TypeId;
|
|
@@ -36,13 +43,17 @@ export interface PgClient extends Client.SqlClient {
|
|
|
36
43
|
readonly notify: (channel: string, payload: string) => Effect.Effect<void, SqlError>;
|
|
37
44
|
}
|
|
38
45
|
/**
|
|
46
|
+
* Context tag used to access the `PgClient` service.
|
|
47
|
+
*
|
|
39
48
|
* @category tags
|
|
40
|
-
* @since
|
|
49
|
+
* @since 4.0.0
|
|
41
50
|
*/
|
|
42
|
-
export declare const PgClient:
|
|
51
|
+
export declare const PgClient: Context.Service<PgClient, PgClient>;
|
|
43
52
|
/**
|
|
53
|
+
* Configuration for a PostgreSQL client, including connection, TLS, custom stream, application name, type parser, JSON transform, and query/result name transform options.
|
|
54
|
+
*
|
|
44
55
|
* @category constructors
|
|
45
|
-
* @since
|
|
56
|
+
* @since 4.0.0
|
|
46
57
|
*/
|
|
47
58
|
export interface PgClientConfig {
|
|
48
59
|
readonly url?: Redacted.Redacted | undefined;
|
|
@@ -53,12 +64,8 @@ export interface PgClientConfig {
|
|
|
53
64
|
readonly database?: string | undefined;
|
|
54
65
|
readonly username?: string | undefined;
|
|
55
66
|
readonly password?: Redacted.Redacted | undefined;
|
|
56
|
-
readonly stream?: (() => Duplex) | undefined;
|
|
57
|
-
readonly idleTimeout?: Duration.Input | undefined;
|
|
58
67
|
readonly connectTimeout?: Duration.Input | undefined;
|
|
59
|
-
readonly
|
|
60
|
-
readonly minConnections?: number | undefined;
|
|
61
|
-
readonly connectionTTL?: Duration.Input | undefined;
|
|
68
|
+
readonly stream?: (() => Duplex) | undefined;
|
|
62
69
|
readonly applicationName?: string | undefined;
|
|
63
70
|
readonly spanAttributes?: Record<string, unknown> | undefined;
|
|
64
71
|
readonly transformResultNames?: ((str: string) => string) | undefined;
|
|
@@ -67,13 +74,41 @@ export interface PgClientConfig {
|
|
|
67
74
|
readonly types?: Pg.CustomTypesConfig | undefined;
|
|
68
75
|
}
|
|
69
76
|
/**
|
|
77
|
+
* PostgreSQL pool configuration, extending `PgClientConfig` with idle timeout, pool size, and connection lifetime settings.
|
|
78
|
+
*
|
|
70
79
|
* @category constructors
|
|
71
|
-
* @since
|
|
80
|
+
* @since 4.0.0
|
|
72
81
|
*/
|
|
73
|
-
export
|
|
82
|
+
export interface PgPoolConfig extends PgClientConfig {
|
|
83
|
+
readonly idleTimeout?: Duration.Input | undefined;
|
|
84
|
+
readonly maxConnections?: number | undefined;
|
|
85
|
+
readonly minConnections?: number | undefined;
|
|
86
|
+
readonly connectionTTL?: Duration.Input | undefined;
|
|
87
|
+
}
|
|
74
88
|
/**
|
|
89
|
+
* Creates a scoped PostgreSQL client backed by a managed `pg` connection pool.
|
|
90
|
+
*
|
|
75
91
|
* @category constructors
|
|
76
|
-
* @since
|
|
92
|
+
* @since 4.0.0
|
|
93
|
+
*/
|
|
94
|
+
export declare const make: (options: PgPoolConfig) => Effect.Effect<PgClient, SqlError, Scope.Scope | Reactivity.Reactivity>;
|
|
95
|
+
/**
|
|
96
|
+
* Creates a scoped PostgreSQL client backed by a managed single `pg` client, optionally acquiring a separate client for streaming and LISTEN operations.
|
|
97
|
+
*
|
|
98
|
+
* @category constructors
|
|
99
|
+
* @since 4.0.0
|
|
100
|
+
*/
|
|
101
|
+
export declare const makeClient: (options: PgClientConfig & {
|
|
102
|
+
/**
|
|
103
|
+
* Whether to acquire a separate client for each sql.stream / sql.listen
|
|
104
|
+
*/
|
|
105
|
+
readonly acquireForStream?: boolean | undefined;
|
|
106
|
+
}) => Effect.Effect<PgClient, SqlError, Scope.Scope | Reactivity.Reactivity>;
|
|
107
|
+
/**
|
|
108
|
+
* Builds a PostgreSQL client from a scoped `pg` pool acquisition effect, deriving transaction, streaming, and LISTEN/NOTIFY support from that pool.
|
|
109
|
+
*
|
|
110
|
+
* @category constructors
|
|
111
|
+
* @since 4.0.0
|
|
77
112
|
*/
|
|
78
113
|
export declare const fromPool: (options: {
|
|
79
114
|
readonly acquire: Effect.Effect<Pg.Pool, SqlError, Scope.Scope>;
|
|
@@ -85,47 +120,84 @@ export declare const fromPool: (options: {
|
|
|
85
120
|
readonly types?: Pg.CustomTypesConfig | undefined;
|
|
86
121
|
}) => Effect.Effect<PgClient, SqlError, Scope.Scope | Reactivity.Reactivity>;
|
|
87
122
|
/**
|
|
123
|
+
* Builds a PostgreSQL client from a scoped `pg` client acquisition effect, serializing access when sharing the client and optionally using separate clients for streams and LISTEN.
|
|
124
|
+
*
|
|
125
|
+
* @category constructors
|
|
126
|
+
* @since 4.0.0
|
|
127
|
+
*/
|
|
128
|
+
export declare const fromClient: (options: {
|
|
129
|
+
readonly acquire: Effect.Effect<Pg.Client, SqlError, Scope.Scope>;
|
|
130
|
+
/**
|
|
131
|
+
* Whether to acquire a separate client for each sql.stream / sql.listen.
|
|
132
|
+
*/
|
|
133
|
+
readonly acquireForStream: boolean;
|
|
134
|
+
readonly applicationName?: string | undefined;
|
|
135
|
+
readonly spanAttributes?: Record<string, unknown> | undefined;
|
|
136
|
+
readonly transformResultNames?: ((str: string) => string) | undefined;
|
|
137
|
+
readonly transformQueryNames?: ((str: string) => string) | undefined;
|
|
138
|
+
readonly transformJson?: boolean | undefined;
|
|
139
|
+
readonly types?: Pg.CustomTypesConfig | undefined;
|
|
140
|
+
}) => Effect.Effect<PgClient, SqlError, Scope.Scope | Reactivity.Reactivity>;
|
|
141
|
+
/**
|
|
142
|
+
* Low-level constructor for a `PgClient` from SQL connection acquirers, a LISTEN acquirer, client configuration, and transformation options.
|
|
143
|
+
*
|
|
144
|
+
* @category constructors
|
|
145
|
+
* @since 4.0.0
|
|
146
|
+
*/
|
|
147
|
+
export declare const makeWith: (options: {
|
|
148
|
+
readonly acquirer: SqlConnection.Acquirer;
|
|
149
|
+
readonly transactionAcquirer: SqlConnection.Acquirer;
|
|
150
|
+
readonly listenAcquirer: Effect.Effect<Pg.ClientBase, SqlError, Scope.Scope>;
|
|
151
|
+
readonly config: PgClientConfig;
|
|
152
|
+
readonly spanAttributes?: Record<string, unknown> | undefined;
|
|
153
|
+
readonly transformResultNames?: ((str: string) => string) | undefined;
|
|
154
|
+
readonly transformQueryNames?: ((str: string) => string) | undefined;
|
|
155
|
+
readonly transformJson?: boolean | undefined;
|
|
156
|
+
}) => Effect.Effect<PgClient, SqlError, Scope.Scope | Reactivity.Reactivity>;
|
|
157
|
+
/**
|
|
158
|
+
* Creates a layer from an effect that acquires a `PgClient`, providing both `PgClient` and `SqlClient`.
|
|
159
|
+
*
|
|
88
160
|
* @category layers
|
|
89
|
-
* @since
|
|
161
|
+
* @since 4.0.0
|
|
90
162
|
*/
|
|
91
|
-
export declare const
|
|
163
|
+
export declare const layerFrom: <E, R>(acquire: Effect.Effect<PgClient, E, R>) => Layer.Layer<PgClient | Client.SqlClient, E, Exclude<R, Scope.Scope | Reactivity.Reactivity>>;
|
|
92
164
|
/**
|
|
165
|
+
* Creates a layer from a `Config`-wrapped PostgreSQL pool configuration, providing both `PgClient` and `SqlClient`.
|
|
166
|
+
*
|
|
93
167
|
* @category layers
|
|
94
|
-
* @since
|
|
168
|
+
* @since 4.0.0
|
|
95
169
|
*/
|
|
96
|
-
export declare const
|
|
170
|
+
export declare const layerConfig: (config: Config.Wrap<PgPoolConfig>) => Layer.Layer<PgClient | Client.SqlClient, Config.ConfigError | SqlError>;
|
|
97
171
|
/**
|
|
172
|
+
* Creates a layer from a concrete PostgreSQL pool configuration, providing both `PgClient` and `SqlClient`.
|
|
173
|
+
*
|
|
98
174
|
* @category layers
|
|
99
|
-
* @since
|
|
175
|
+
* @since 4.0.0
|
|
100
176
|
*/
|
|
101
|
-
export declare const
|
|
102
|
-
readonly acquire: Effect.Effect<Pg.Pool, SqlError, Scope.Scope>;
|
|
103
|
-
readonly applicationName?: string | undefined;
|
|
104
|
-
readonly spanAttributes?: Record<string, unknown> | undefined;
|
|
105
|
-
readonly transformResultNames?: ((str: string) => string) | undefined;
|
|
106
|
-
readonly transformQueryNames?: ((str: string) => string) | undefined;
|
|
107
|
-
readonly transformJson?: boolean | undefined;
|
|
108
|
-
readonly types?: Pg.CustomTypesConfig | undefined;
|
|
109
|
-
}) => Layer.Layer<PgClient | Client.SqlClient, SqlError>;
|
|
177
|
+
export declare const layer: (config: PgPoolConfig) => Layer.Layer<PgClient | Client.SqlClient, SqlError>;
|
|
110
178
|
/**
|
|
111
|
-
*
|
|
112
|
-
*
|
|
179
|
+
* Creates the PostgreSQL statement compiler, using `$1` placeholders, double-quoted identifiers, PostgreSQL returning clauses, and optional JSON value transformation.
|
|
180
|
+
*
|
|
181
|
+
* @category constructors
|
|
182
|
+
* @since 4.0.0
|
|
113
183
|
*/
|
|
114
184
|
export declare const makeCompiler: (transform?: (_: string) => string, transformJson?: boolean) => Statement.Compiler;
|
|
115
185
|
/**
|
|
186
|
+
* PostgreSQL-specific custom statement fragments supported by the compiler, currently JSON parameter fragments.
|
|
187
|
+
*
|
|
116
188
|
* @category custom types
|
|
117
|
-
* @since
|
|
189
|
+
* @since 4.0.0
|
|
118
190
|
*/
|
|
119
191
|
export type PgCustom = PgJson;
|
|
120
192
|
/**
|
|
121
193
|
* @category custom types
|
|
122
|
-
* @since
|
|
194
|
+
* @since 4.0.0
|
|
123
195
|
*/
|
|
124
196
|
interface PgJson extends Custom<"PgJson", unknown> {
|
|
125
197
|
}
|
|
126
198
|
/**
|
|
127
199
|
* @category custom types
|
|
128
|
-
* @since
|
|
200
|
+
* @since 4.0.0
|
|
129
201
|
*/
|
|
130
202
|
declare const PgJson: (paramA: unknown, paramB: void, paramC: void) => PgJson;
|
|
131
203
|
export {};
|
package/dist/PgClient.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PgClient.d.ts","sourceRoot":"","sources":["../src/PgClient.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"PgClient.d.ts","sourceRoot":"","sources":["../src/PgClient.ts"],"names":[],"mappings":"AAuBA,OAAO,KAAK,MAAM,MAAM,eAAe,CAAA;AACvC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAA;AACzC,OAAO,KAAK,QAAQ,MAAM,iBAAiB,CAAA;AAC3C,OAAO,KAAK,MAAM,MAAM,eAAe,CAAA;AAEvC,OAAO,KAAK,KAAK,MAAM,cAAc,CAAA;AAKrC,OAAO,KAAK,QAAQ,MAAM,iBAAiB,CAAA;AAC3C,OAAO,KAAK,KAAK,MAAM,cAAc,CAAA;AAErC,OAAO,KAAK,MAAM,MAAM,eAAe,CAAA;AACvC,OAAO,KAAK,UAAU,MAAM,uCAAuC,CAAA;AACnE,OAAO,KAAK,MAAM,MAAM,+BAA+B,CAAA;AAEvD,OAAO,KAAK,KAAK,aAAa,MAAM,mCAAmC,CAAA;AACvE,OAAO,EAQL,QAAQ,EAKT,MAAM,8BAA8B,CAAA;AACrC,OAAO,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAA;AACrE,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAA;AAC1D,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,aAAa,CAAA;AACzC,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAA;AACjD,OAAO,KAAK,EAAE,MAAM,IAAI,CAAA;AAIxB;;;;;GAKG;AACH,eAAO,MAAM,MAAM,EAAE,MAAmC,CAAA;AAExD;;;;;GAKG;AACH,MAAM,MAAM,MAAM,GAAG,0BAA0B,CAAA;AAE/C;;;;;GAKG;AACH,MAAM,WAAW,QAAS,SAAQ,MAAM,CAAC,SAAS;IAChD,QAAQ,CAAC,CAAC,MAAM,CAAC,EAAE,MAAM,CAAA;IACzB,QAAQ,CAAC,MAAM,EAAE,cAAc,CAAA;IAC/B,QAAQ,CAAC,IAAI,EAAE,CAAC,CAAC,EAAE,OAAO,KAAK,QAAQ,CAAA;IACvC,QAAQ,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,MAAM,CAAC,MAAM,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAA;IACrE,QAAQ,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,KAAK,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAA;CACrF;AAED;;;;;GAKG;AACH,eAAO,MAAM,QAAQ,qCAAuD,CAAA;AAE5E;;;;;GAKG;AACH,MAAM,WAAW,cAAc;IAC7B,QAAQ,CAAC,GAAG,CAAC,EAAE,QAAQ,CAAC,QAAQ,GAAG,SAAS,CAAA;IAE5C,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;IAClC,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;IAClC,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;IAClC,QAAQ,CAAC,GAAG,CAAC,EAAE,OAAO,GAAG,iBAAiB,GAAG,SAAS,CAAA;IACtD,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;IACtC,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;IACtC,QAAQ,CAAC,QAAQ,CAAC,EAAE,QAAQ,CAAC,QAAQ,GAAG,SAAS,CAAA;IAEjD,QAAQ,CAAC,cAAc,CAAC,EAAE,QAAQ,CAAC,KAAK,GAAG,SAAS,CAAA;IAEpD,QAAQ,CAAC,MAAM,CAAC,EAAE,CAAC,MAAM,MAAM,CAAC,GAAG,SAAS,CAAA;IAE5C,QAAQ,CAAC,eAAe,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;IAC7C,QAAQ,CAAC,cAAc,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,CAAA;IAE7D,QAAQ,CAAC,oBAAoB,CAAC,EAAE,CAAC,CAAC,GAAG,EAAE,MAAM,KAAK,MAAM,CAAC,GAAG,SAAS,CAAA;IACrE,QAAQ,CAAC,mBAAmB,CAAC,EAAE,CAAC,CAAC,GAAG,EAAE,MAAM,KAAK,MAAM,CAAC,GAAG,SAAS,CAAA;IACpE,QAAQ,CAAC,aAAa,CAAC,EAAE,OAAO,GAAG,SAAS,CAAA;IAC5C,QAAQ,CAAC,KAAK,CAAC,EAAE,EAAE,CAAC,iBAAiB,GAAG,SAAS,CAAA;CAClD;AAED;;;;;GAKG;AACH,MAAM,WAAW,YAAa,SAAQ,cAAc;IAClD,QAAQ,CAAC,WAAW,CAAC,EAAE,QAAQ,CAAC,KAAK,GAAG,SAAS,CAAA;IAEjD,QAAQ,CAAC,cAAc,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;IAC5C,QAAQ,CAAC,cAAc,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;IAC5C,QAAQ,CAAC,aAAa,CAAC,EAAE,QAAQ,CAAC,KAAK,GAAG,SAAS,CAAA;CACpD;AAED;;;;;GAKG;AACH,eAAO,MAAM,IAAI,GAAI,SAAS,YAAY,KAAG,MAAM,CAAC,MAAM,CAAC,QAAQ,EAAE,QAAQ,EAAE,KAAK,CAAC,KAAK,GAAG,UAAU,CAAC,UAAU,CA0D9G,CAAA;AAEJ;;;;;GAKG;AACH,eAAO,MAAM,UAAU,GACrB,SAAS,cAAc,GAAG;IACxB;;OAEG;IACH,QAAQ,CAAC,gBAAgB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAA;CAChD,KACA,MAAM,CAAC,MAAM,CAAC,QAAQ,EAAE,QAAQ,EAAE,KAAK,CAAC,KAAK,GAAG,UAAU,CAAC,UAAU,CA6CpE,CAAA;AAEJ;;;;;GAKG;AACH,eAAO,MAAM,QAAQ;sBAEC,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,IAAI,EAAE,QAAQ,EAAE,KAAK,CAAC,KAAK,CAAC;+BAEpC,MAAM,GAAG,SAAS;8BACnB,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;oCAE7B,CAAC,CAAC,GAAG,EAAE,MAAM,KAAK,MAAM,CAAC,GAAG,SAAS;mCACtC,CAAC,CAAC,GAAG,EAAE,MAAM,KAAK,MAAM,CAAC,GAAG,SAAS;6BAC3C,OAAO,GAAG,SAAS;qBAC3B,EAAE,CAAC,iBAAiB,GAAG,SAAS;4EA0LnD,CAAA;AAEF;;;;;GAKG;AACH,eAAO,MAAM,UAAU;sBAED,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,MAAM,EAAE,QAAQ,EAAE,KAAK,CAAC,KAAK,CAAC;IAEjE;;OAEG;+BACwB,OAAO;+BAEP,MAAM,GAAG,SAAS;8BACnB,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;oCAE7B,CAAC,CAAC,GAAG,EAAE,MAAM,KAAK,MAAM,CAAC,GAAG,SAAS;mCACtC,CAAC,CAAC,GAAG,EAAE,MAAM,KAAK,MAAM,CAAC,GAAG,SAAS;6BAC3C,OAAO,GAAG,SAAS;qBAC3B,EAAE,CAAC,iBAAiB,GAAG,SAAS;4EAqDnD,CAAA;AAEF;;;;;GAKG;AACH,eAAO,MAAM,QAAQ;uBAEE,aAAa,CAAC,QAAQ;kCACX,aAAa,CAAC,QAAQ;6BAC3B,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,UAAU,EAAE,QAAQ,EAAE,KAAK,CAAC,KAAK,CAAC;qBAE3D,cAAc;8BACL,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;oCAE7B,CAAC,CAAC,GAAG,EAAE,MAAM,KAAK,MAAM,CAAC,GAAG,SAAS;mCACtC,CAAC,CAAC,GAAG,EAAE,MAAM,KAAK,MAAM,CAAC,GAAG,SAAS;6BAC3C,OAAO,GAAG,SAAS;4EA6D9C,CAAA;AA0IF;;;;;GAKG;AACH,eAAO,MAAM,SAAS,GAAI,CAAC,EAAE,CAAC,EAC5B,SAAS,MAAM,CAAC,MAAM,CAAC,QAAQ,EAAE,CAAC,EAAE,CAAC,CAAC,KACrC,KAAK,CAAC,KAAK,CAAC,QAAQ,GAAG,MAAM,CAAC,SAAS,EAAE,CAAC,EAAE,OAAO,CAAC,CAAC,EAAE,KAAK,CAAC,KAAK,GAAG,UAAU,CAAC,UAAU,CAAC,CAM9C,CAAA;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,WAAW,EAAE,CACxB,MAAM,EAAE,MAAM,CAAC,IAAI,CAAC,YAAY,CAAC,KAC9B,KAAK,CAAC,KAAK,CAAC,QAAQ,GAAG,MAAM,CAAC,SAAS,EAAE,MAAM,CAAC,WAAW,GAAG,QAAQ,CAMvE,CAAA;AAEJ;;;;;GAKG;AACH,eAAO,MAAM,KAAK,GAChB,QAAQ,YAAY,KACnB,KAAK,CAAC,KAAK,CAAC,QAAQ,GAAG,MAAM,CAAC,SAAS,EAAE,QAAQ,CAA4B,CAAA;AAEhF;;;;;GAKG;AACH,eAAO,MAAM,YAAY,GACvB,YAAY,CAAC,CAAC,EAAE,MAAM,KAAK,MAAM,EACjC,uBAAoB,KACnB,SAAS,CAAC,QAsCZ,CAAA;AAID;;;;;GAKG;AACH,MAAM,MAAM,QAAQ,GAAG,MAAM,CAAA;AAE7B;;;GAGG;AACH,UAAU,MAAO,SAAQ,MAAM,CAAC,QAAQ,EAAE,OAAO,CAAC;CAAG;AACrD;;;GAGG;AACH,QAAA,MAAM,MAAM,yDAAqC,CAAA"}
|