@f-inverse/jammi-client 0.25.0 → 0.26.1
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 +2 -2
- package/dist/gen/jammi/v1/audit_pb.d.ts +1 -1
- package/dist/gen/jammi/v1/audit_pb.js +1 -1
- package/dist/gen/jammi/v1/catalog_pb.d.ts +1148 -0
- package/dist/gen/jammi/v1/catalog_pb.d.ts.map +1 -0
- package/dist/gen/jammi/v1/catalog_pb.js +320 -0
- package/dist/gen/jammi/v1/catalog_pb.js.map +1 -0
- package/dist/gen/jammi/v1/embedding_pb.d.ts +10 -265
- package/dist/gen/jammi/v1/embedding_pb.d.ts.map +1 -1
- package/dist/gen/jammi/v1/embedding_pb.js +18 -111
- package/dist/gen/jammi/v1/embedding_pb.js.map +1 -1
- package/dist/gen/jammi/v1/error_pb.d.ts +2 -2
- package/dist/gen/jammi/v1/eval_pb.d.ts +287 -1
- package/dist/gen/jammi/v1/eval_pb.d.ts.map +1 -1
- package/dist/gen/jammi/v1/eval_pb.js +82 -25
- package/dist/gen/jammi/v1/eval_pb.js.map +1 -1
- package/dist/gen/jammi/v1/inference_pb.d.ts +272 -1
- package/dist/gen/jammi/v1/inference_pb.d.ts.map +1 -1
- package/dist/gen/jammi/v1/inference_pb.js +61 -2
- package/dist/gen/jammi/v1/inference_pb.js.map +1 -1
- package/dist/gen/jammi/v1/pipeline_pb.d.ts +491 -0
- package/dist/gen/jammi/v1/pipeline_pb.d.ts.map +1 -0
- package/dist/gen/jammi/v1/pipeline_pb.js +154 -0
- package/dist/gen/jammi/v1/pipeline_pb.js.map +1 -0
- package/dist/gen/jammi/v1/training_pb.d.ts +1217 -0
- package/dist/gen/jammi/v1/training_pb.d.ts.map +1 -0
- package/dist/gen/jammi/v1/training_pb.js +388 -0
- package/dist/gen/jammi/v1/training_pb.js.map +1 -0
- package/dist/gen/jammi/v1/trigger_pb.d.ts +18 -215
- package/dist/gen/jammi/v1/trigger_pb.d.ts.map +1 -1
- package/dist/gen/jammi/v1/trigger_pb.js +11 -41
- package/dist/gen/jammi/v1/trigger_pb.js.map +1 -1
- package/dist/index.d.ts +11 -12
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +10 -13
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/dist/gen/jammi/v1/channel_pb.d.ts +0 -158
- package/dist/gen/jammi/v1/channel_pb.d.ts.map +0 -1
- package/dist/gen/jammi/v1/channel_pb.js +0 -87
- package/dist/gen/jammi/v1/channel_pb.js.map +0 -1
- package/dist/gen/jammi/v1/fine_tune_pb.d.ts +0 -706
- package/dist/gen/jammi/v1/fine_tune_pb.d.ts.map +0 -1
- package/dist/gen/jammi/v1/fine_tune_pb.js +0 -271
- package/dist/gen/jammi/v1/fine_tune_pb.js.map +0 -1
- package/dist/gen/jammi/v1/mutable_table_pb.d.ts +0 -183
- package/dist/gen/jammi/v1/mutable_table_pb.d.ts.map +0 -1
- package/dist/gen/jammi/v1/mutable_table_pb.js +0 -59
- package/dist/gen/jammi/v1/mutable_table_pb.js.map +0 -1
- package/dist/gen/jammi/v1/session_pb.d.ts +0 -167
- package/dist/gen/jammi/v1/session_pb.d.ts.map +0 -1
- package/dist/gen/jammi/v1/session_pb.js +0 -45
- package/dist/gen/jammi/v1/session_pb.js.map +0 -1
|
@@ -1,167 +0,0 @@
|
|
|
1
|
-
import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
-
import type { EmptySchema } from "@bufbuild/protobuf/wkt";
|
|
3
|
-
import type { Message } from "@bufbuild/protobuf";
|
|
4
|
-
/**
|
|
5
|
-
* Describes the file jammi/v1/session.proto.
|
|
6
|
-
*/
|
|
7
|
-
export declare const file_jammi_v1_session: GenFile;
|
|
8
|
-
/**
|
|
9
|
-
* The engine's self-description, returned by GetServerInfo. `version`,
|
|
10
|
-
* `features`, and `storage_backends` are compile-time facts about the running
|
|
11
|
-
* binary; `services` is the runtime tier handshake — which gRPC service tiers
|
|
12
|
-
* this particular deployment actually mounted. Together they let a client
|
|
13
|
-
* negotiate capability without probing each verb.
|
|
14
|
-
*
|
|
15
|
-
* @generated from message jammi.v1.session.ServerInfo
|
|
16
|
-
*/
|
|
17
|
-
export type ServerInfo = Message<"jammi.v1.session.ServerInfo"> & {
|
|
18
|
-
/**
|
|
19
|
-
* The engine version (the `jammi` workspace version, e.g. "0.17.0").
|
|
20
|
-
*
|
|
21
|
-
* @generated from field: string version = 1;
|
|
22
|
-
*/
|
|
23
|
-
version: string;
|
|
24
|
-
/**
|
|
25
|
-
* Engine capability feature flags compiled into this build (e.g. "postgres",
|
|
26
|
-
* "mysql", "jetstream-broker"), sorted.
|
|
27
|
-
*
|
|
28
|
-
* @generated from field: repeated string features = 2;
|
|
29
|
-
*/
|
|
30
|
-
features: string[];
|
|
31
|
-
/**
|
|
32
|
-
* Storage URL schemes this build can address (always "file" and "memory";
|
|
33
|
-
* cloud schemes appear when their driver feature is compiled in), sorted.
|
|
34
|
-
*
|
|
35
|
-
* @generated from field: repeated string storage_backends = 3;
|
|
36
|
-
*/
|
|
37
|
-
storageBackends: string[];
|
|
38
|
-
/**
|
|
39
|
-
* The gRPC service tiers this deployment mounted, sorted. The core tier
|
|
40
|
-
* (session/embedding/inference + introspection) is always present; the
|
|
41
|
-
* optional tiers ("train", "event", "eval") appear only when both their
|
|
42
|
-
* compile feature is present and the deployment's config enabled them. A
|
|
43
|
-
* client reads this to know which verbs are reachable on *this* server —
|
|
44
|
-
* reaching an unmounted tier returns a truthful "not enabled" error. The
|
|
45
|
-
* embedded (in-process, `file://`) engine mounts no gRPC services, so it
|
|
46
|
-
* reports an empty list.
|
|
47
|
-
*
|
|
48
|
-
* @generated from field: repeated string services = 4;
|
|
49
|
-
*/
|
|
50
|
-
services: string[];
|
|
51
|
-
};
|
|
52
|
-
/**
|
|
53
|
-
* Describes the message jammi.v1.session.ServerInfo.
|
|
54
|
-
* Use `create(ServerInfoSchema)` to create a new message.
|
|
55
|
-
*/
|
|
56
|
-
export declare const ServerInfoSchema: GenMessage<ServerInfo>;
|
|
57
|
-
/**
|
|
58
|
-
* A tenant identifier carried over the wire. UUID v4 / v7 string per ADR-00;
|
|
59
|
-
* the nil UUID is invalid and the engine rejects it at the TenantId newtype
|
|
60
|
-
* boundary.
|
|
61
|
-
*
|
|
62
|
-
* @generated from message jammi.v1.session.Tenant
|
|
63
|
-
*/
|
|
64
|
-
export type Tenant = Message<"jammi.v1.session.Tenant"> & {
|
|
65
|
-
/**
|
|
66
|
-
* UUID string. Empty string means "no tenant bound".
|
|
67
|
-
*
|
|
68
|
-
* @generated from field: string id = 1;
|
|
69
|
-
*/
|
|
70
|
-
id: string;
|
|
71
|
-
};
|
|
72
|
-
/**
|
|
73
|
-
* Describes the message jammi.v1.session.Tenant.
|
|
74
|
-
* Use `create(TenantSchema)` to create a new message.
|
|
75
|
-
*/
|
|
76
|
-
export declare const TenantSchema: GenMessage<Tenant>;
|
|
77
|
-
/**
|
|
78
|
-
* @generated from message jammi.v1.session.SetTenantRequest
|
|
79
|
-
*/
|
|
80
|
-
export type SetTenantRequest = Message<"jammi.v1.session.SetTenantRequest"> & {
|
|
81
|
-
/**
|
|
82
|
-
* @generated from field: jammi.v1.session.Tenant tenant = 1;
|
|
83
|
-
*/
|
|
84
|
-
tenant?: Tenant | undefined;
|
|
85
|
-
};
|
|
86
|
-
/**
|
|
87
|
-
* Describes the message jammi.v1.session.SetTenantRequest.
|
|
88
|
-
* Use `create(SetTenantRequestSchema)` to create a new message.
|
|
89
|
-
*/
|
|
90
|
-
export declare const SetTenantRequestSchema: GenMessage<SetTenantRequest>;
|
|
91
|
-
/**
|
|
92
|
-
* @generated from message jammi.v1.session.GetTenantResponse
|
|
93
|
-
*/
|
|
94
|
-
export type GetTenantResponse = Message<"jammi.v1.session.GetTenantResponse"> & {
|
|
95
|
-
/**
|
|
96
|
-
* @generated from field: jammi.v1.session.Tenant tenant = 1;
|
|
97
|
-
*/
|
|
98
|
-
tenant?: Tenant | undefined;
|
|
99
|
-
};
|
|
100
|
-
/**
|
|
101
|
-
* Describes the message jammi.v1.session.GetTenantResponse.
|
|
102
|
-
* Use `create(GetTenantResponseSchema)` to create a new message.
|
|
103
|
-
*/
|
|
104
|
-
export declare const GetTenantResponseSchema: GenMessage<GetTenantResponse>;
|
|
105
|
-
/**
|
|
106
|
-
* SessionService — primitive session-attribute and server-handshake surface
|
|
107
|
-
* for remote clients. Verb vocabulary is closed: SetTenant, GetTenant,
|
|
108
|
-
* ClearTenant, GetServerInfo. No domain-shaped verbs (per ADR-01 §3.2).
|
|
109
|
-
*
|
|
110
|
-
* The tenant trio is stateless w.r.t. the engine — calls update an in-process
|
|
111
|
-
* session table that the Tonic TenantInterceptor reads on every downstream
|
|
112
|
-
* gRPC / Flight SQL request and propagates to the engine via the request
|
|
113
|
-
* extension (TenantId). GetServerInfo is likewise engine-independent: it
|
|
114
|
-
* reports compile-time facts about the running binary, so it is mounted on
|
|
115
|
-
* this always-present service rather than behind the engine-gated services.
|
|
116
|
-
*
|
|
117
|
-
* @generated from service jammi.v1.session.SessionService
|
|
118
|
-
*/
|
|
119
|
-
export declare const SessionService: GenService<{
|
|
120
|
-
/**
|
|
121
|
-
* Bind a tenant for the calling session. Idempotent — calling twice with
|
|
122
|
-
* the same tenant is a no-op. Replacing an existing binding is allowed
|
|
123
|
-
* (the auth layer above the engine validates the caller is permitted).
|
|
124
|
-
*
|
|
125
|
-
* @generated from rpc jammi.v1.session.SessionService.SetTenant
|
|
126
|
-
*/
|
|
127
|
-
setTenant: {
|
|
128
|
-
methodKind: "unary";
|
|
129
|
-
input: typeof SetTenantRequestSchema;
|
|
130
|
-
output: typeof EmptySchema;
|
|
131
|
-
};
|
|
132
|
-
/**
|
|
133
|
-
* Return the tenant currently bound to the calling session, or an unset
|
|
134
|
-
* tenant if none is bound.
|
|
135
|
-
*
|
|
136
|
-
* @generated from rpc jammi.v1.session.SessionService.GetTenant
|
|
137
|
-
*/
|
|
138
|
-
getTenant: {
|
|
139
|
-
methodKind: "unary";
|
|
140
|
-
input: typeof EmptySchema;
|
|
141
|
-
output: typeof GetTenantResponseSchema;
|
|
142
|
-
};
|
|
143
|
-
/**
|
|
144
|
-
* Clear the tenant binding for the calling session. After this returns,
|
|
145
|
-
* subsequent requests on the same session see an unscoped tenant.
|
|
146
|
-
*
|
|
147
|
-
* @generated from rpc jammi.v1.session.SessionService.ClearTenant
|
|
148
|
-
*/
|
|
149
|
-
clearTenant: {
|
|
150
|
-
methodKind: "unary";
|
|
151
|
-
input: typeof EmptySchema;
|
|
152
|
-
output: typeof EmptySchema;
|
|
153
|
-
};
|
|
154
|
-
/**
|
|
155
|
-
* Capabilities handshake: the engine's version, the feature flags this
|
|
156
|
-
* build was compiled with, and the storage backends it can address. Static
|
|
157
|
-
* per build, tenant-agnostic, and engine-independent.
|
|
158
|
-
*
|
|
159
|
-
* @generated from rpc jammi.v1.session.SessionService.GetServerInfo
|
|
160
|
-
*/
|
|
161
|
-
getServerInfo: {
|
|
162
|
-
methodKind: "unary";
|
|
163
|
-
input: typeof EmptySchema;
|
|
164
|
-
output: typeof ServerInfoSchema;
|
|
165
|
-
};
|
|
166
|
-
}>;
|
|
167
|
-
//# sourceMappingURL=session_pb.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"session_pb.d.ts","sourceRoot":"","sources":["../../../../src/gen/jammi/v1/session_pb.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAEpF,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC;AAE1D,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,qBAAqB,EAAE,OAC2xB,CAAC;AAEh0B;;;;;;;;GAQG;AACH,MAAM,MAAM,UAAU,GAAG,OAAO,CAAC,6BAA6B,CAAC,GAAG;IAChE;;;;OAIG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;;;;OAKG;IACH,QAAQ,EAAE,MAAM,EAAE,CAAC;IAEnB;;;;;OAKG;IACH,eAAe,EAAE,MAAM,EAAE,CAAC;IAE1B;;;;;;;;;;;OAWG;IACH,QAAQ,EAAE,MAAM,EAAE,CAAC;CACpB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,gBAAgB,EAAE,UAAU,CAAC,UAAU,CACb,CAAC;AAExC;;;;;;GAMG;AACH,MAAM,MAAM,MAAM,GAAG,OAAO,CAAC,yBAAyB,CAAC,GAAG;IACxD;;;;OAIG;IACH,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,YAAY,EAAE,UAAU,CAAC,MAAM,CACL,CAAC;AAExC;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG,OAAO,CAAC,mCAAmC,CAAC,GAAG;IAC5E;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC7B,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,sBAAsB,EAAE,UAAU,CAAC,gBAAgB,CACzB,CAAC;AAExC;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG,OAAO,CAAC,oCAAoC,CAAC,GAAG;IAC9E;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC7B,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,uBAAuB,EAAE,UAAU,CAAC,iBAAiB,CAC3B,CAAC;AAExC;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,cAAc,EAAE,UAAU,CAAC;IACtC;;;;;;OAMG;IACH,SAAS,EAAE;QACT,UAAU,EAAE,OAAO,CAAC;QACpB,KAAK,EAAE,OAAO,sBAAsB,CAAC;QACrC,MAAM,EAAE,OAAO,WAAW,CAAC;KAC5B,CAAC;IACF;;;;;OAKG;IACH,SAAS,EAAE;QACT,UAAU,EAAE,OAAO,CAAC;QACpB,KAAK,EAAE,OAAO,WAAW,CAAC;QAC1B,MAAM,EAAE,OAAO,uBAAuB,CAAC;KACxC,CAAC;IACF;;;;;OAKG;IACH,WAAW,EAAE;QACX,UAAU,EAAE,OAAO,CAAC;QACpB,KAAK,EAAE,OAAO,WAAW,CAAC;QAC1B,MAAM,EAAE,OAAO,WAAW,CAAC;KAC5B,CAAC;IACF;;;;;;OAMG;IACH,aAAa,EAAE;QACb,UAAU,EAAE,OAAO,CAAC;QACpB,KAAK,EAAE,OAAO,WAAW,CAAC;QAC1B,MAAM,EAAE,OAAO,gBAAgB,CAAC;KACjC,CAAC;CACH,CACsC,CAAC"}
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
// @generated by protoc-gen-es v2.12.0 with parameter "target=ts"
|
|
2
|
-
// @generated from file jammi/v1/session.proto (package jammi.v1.session, syntax proto3)
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
import { fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv2";
|
|
5
|
-
import { file_google_protobuf_empty } from "@bufbuild/protobuf/wkt";
|
|
6
|
-
/**
|
|
7
|
-
* Describes the file jammi/v1/session.proto.
|
|
8
|
-
*/
|
|
9
|
-
export const file_jammi_v1_session = /*@__PURE__*/ fileDesc("ChZqYW1taS92MS9zZXNzaW9uLnByb3RvEhBqYW1taS52MS5zZXNzaW9uIlsKClNlcnZlckluZm8SDwoHdmVyc2lvbhgBIAEoCRIQCghmZWF0dXJlcxgCIAMoCRIYChBzdG9yYWdlX2JhY2tlbmRzGAMgAygJEhAKCHNlcnZpY2VzGAQgAygJIhQKBlRlbmFudBIKCgJpZBgBIAEoCSI8ChBTZXRUZW5hbnRSZXF1ZXN0EigKBnRlbmFudBgBIAEoCzIYLmphbW1pLnYxLnNlc3Npb24uVGVuYW50Ij0KEUdldFRlbmFudFJlc3BvbnNlEigKBnRlbmFudBgBIAEoCzIYLmphbW1pLnYxLnNlc3Npb24uVGVuYW50MqkCCg5TZXNzaW9uU2VydmljZRJHCglTZXRUZW5hbnQSIi5qYW1taS52MS5zZXNzaW9uLlNldFRlbmFudFJlcXVlc3QaFi5nb29nbGUucHJvdG9idWYuRW1wdHkSSAoJR2V0VGVuYW50EhYuZ29vZ2xlLnByb3RvYnVmLkVtcHR5GiMuamFtbWkudjEuc2Vzc2lvbi5HZXRUZW5hbnRSZXNwb25zZRI9CgtDbGVhclRlbmFudBIWLmdvb2dsZS5wcm90b2J1Zi5FbXB0eRoWLmdvb2dsZS5wcm90b2J1Zi5FbXB0eRJFCg1HZXRTZXJ2ZXJJbmZvEhYuZ29vZ2xlLnByb3RvYnVmLkVtcHR5GhwuamFtbWkudjEuc2Vzc2lvbi5TZXJ2ZXJJbmZvYgZwcm90bzM", [file_google_protobuf_empty]);
|
|
10
|
-
/**
|
|
11
|
-
* Describes the message jammi.v1.session.ServerInfo.
|
|
12
|
-
* Use `create(ServerInfoSchema)` to create a new message.
|
|
13
|
-
*/
|
|
14
|
-
export const ServerInfoSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_session, 0);
|
|
15
|
-
/**
|
|
16
|
-
* Describes the message jammi.v1.session.Tenant.
|
|
17
|
-
* Use `create(TenantSchema)` to create a new message.
|
|
18
|
-
*/
|
|
19
|
-
export const TenantSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_session, 1);
|
|
20
|
-
/**
|
|
21
|
-
* Describes the message jammi.v1.session.SetTenantRequest.
|
|
22
|
-
* Use `create(SetTenantRequestSchema)` to create a new message.
|
|
23
|
-
*/
|
|
24
|
-
export const SetTenantRequestSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_session, 2);
|
|
25
|
-
/**
|
|
26
|
-
* Describes the message jammi.v1.session.GetTenantResponse.
|
|
27
|
-
* Use `create(GetTenantResponseSchema)` to create a new message.
|
|
28
|
-
*/
|
|
29
|
-
export const GetTenantResponseSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_session, 3);
|
|
30
|
-
/**
|
|
31
|
-
* SessionService — primitive session-attribute and server-handshake surface
|
|
32
|
-
* for remote clients. Verb vocabulary is closed: SetTenant, GetTenant,
|
|
33
|
-
* ClearTenant, GetServerInfo. No domain-shaped verbs (per ADR-01 §3.2).
|
|
34
|
-
*
|
|
35
|
-
* The tenant trio is stateless w.r.t. the engine — calls update an in-process
|
|
36
|
-
* session table that the Tonic TenantInterceptor reads on every downstream
|
|
37
|
-
* gRPC / Flight SQL request and propagates to the engine via the request
|
|
38
|
-
* extension (TenantId). GetServerInfo is likewise engine-independent: it
|
|
39
|
-
* reports compile-time facts about the running binary, so it is mounted on
|
|
40
|
-
* this always-present service rather than behind the engine-gated services.
|
|
41
|
-
*
|
|
42
|
-
* @generated from service jammi.v1.session.SessionService
|
|
43
|
-
*/
|
|
44
|
-
export const SessionService = /*@__PURE__*/ serviceDesc(file_jammi_v1_session, 0);
|
|
45
|
-
//# sourceMappingURL=session_pb.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"session_pb.js","sourceRoot":"","sources":["../../../../src/gen/jammi/v1/session_pb.ts"],"names":[],"mappings":"AAAA,iEAAiE;AACjE,wFAAwF;AACxF,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAElF,OAAO,EAAE,0BAA0B,EAAE,MAAM,wBAAwB,CAAC;AAGpE;;GAEG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAAY,aAAa,CACzD,QAAQ,CAAC,qxBAAqxB,EAAE,CAAC,0BAA0B,CAAC,CAAC,CAAC;AAkDh0B;;;GAGG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAA2B,aAAa,CACnE,WAAW,CAAC,qBAAqB,EAAE,CAAC,CAAC,CAAC;AAkBxC;;;GAGG;AACH,MAAM,CAAC,MAAM,YAAY,GAAuB,aAAa,CAC3D,WAAW,CAAC,qBAAqB,EAAE,CAAC,CAAC,CAAC;AAYxC;;;GAGG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAiC,aAAa,CAC/E,WAAW,CAAC,qBAAqB,EAAE,CAAC,CAAC,CAAC;AAYxC;;;GAGG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAkC,aAAa,CACjF,WAAW,CAAC,qBAAqB,EAAE,CAAC,CAAC,CAAC;AAExC;;;;;;;;;;;;;GAaG;AACH,MAAM,CAAC,MAAM,cAAc,GA+CtB,aAAa,CAChB,WAAW,CAAC,qBAAqB,EAAE,CAAC,CAAC,CAAC"}
|