@middlewr/contracts 0.0.28 → 0.0.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/api-keys.schema.d.ts +34 -2
- package/dist/cjs/api-keys.schema.d.ts.map +1 -1
- package/dist/cjs/common.schema.d.ts +4 -0
- package/dist/cjs/common.schema.d.ts.map +1 -1
- package/dist/cjs/index.d.ts +438 -4
- package/dist/cjs/index.d.ts.map +1 -1
- package/dist/cjs/index.js +61 -2
- package/dist/cjs/links.schema.d.ts +108 -0
- package/dist/cjs/links.schema.d.ts.map +1 -1
- package/dist/cjs/rules.schema.d.ts +54 -0
- package/dist/cjs/rules.schema.d.ts.map +1 -1
- package/dist/esm/api-keys.schema.d.ts +34 -2
- package/dist/esm/api-keys.schema.d.ts.map +1 -1
- package/dist/esm/common.schema.d.ts +4 -0
- package/dist/esm/common.schema.d.ts.map +1 -1
- package/dist/esm/index.d.ts +438 -4
- package/dist/esm/index.d.ts.map +1 -1
- package/dist/esm/index.js +57 -2
- package/dist/esm/links.schema.d.ts +108 -0
- package/dist/esm/links.schema.d.ts.map +1 -1
- package/dist/esm/rules.schema.d.ts +54 -0
- package/dist/esm/rules.schema.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/api-keys.schema.ts +13 -1
- package/src/common.schema.ts +5 -0
- package/src/index.ts +27 -1
- package/src/rules.schema.ts +41 -1
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const ApiKeySchema: z.ZodObject<{
|
|
3
3
|
id: z.ZodString;
|
|
4
|
-
|
|
4
|
+
owner_type: z.ZodEnum<{
|
|
5
|
+
user: "user";
|
|
6
|
+
workspace: "workspace";
|
|
7
|
+
}>;
|
|
8
|
+
owner_id: z.ZodString;
|
|
9
|
+
created_by_id: z.ZodNullable<z.ZodString>;
|
|
5
10
|
name: z.ZodString;
|
|
6
11
|
key_prefix: z.ZodString;
|
|
12
|
+
permissions: z.ZodNullable<z.ZodNumber>;
|
|
7
13
|
last_used_at: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
8
14
|
created_at: z.ZodCoercedDate<unknown>;
|
|
9
15
|
updated_at: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
@@ -13,9 +19,35 @@ export declare const CreateApiKeyInputSchema: z.ZodObject<{
|
|
|
13
19
|
}, z.core.$strip>;
|
|
14
20
|
export declare const CreateApiKeyResponseSchema: z.ZodObject<{
|
|
15
21
|
id: z.ZodString;
|
|
16
|
-
|
|
22
|
+
owner_type: z.ZodEnum<{
|
|
23
|
+
user: "user";
|
|
24
|
+
workspace: "workspace";
|
|
25
|
+
}>;
|
|
26
|
+
owner_id: z.ZodString;
|
|
27
|
+
created_by_id: z.ZodNullable<z.ZodString>;
|
|
17
28
|
name: z.ZodString;
|
|
18
29
|
key_prefix: z.ZodString;
|
|
30
|
+
permissions: z.ZodNullable<z.ZodNumber>;
|
|
31
|
+
last_used_at: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
32
|
+
created_at: z.ZodCoercedDate<unknown>;
|
|
33
|
+
updated_at: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
34
|
+
key: z.ZodString;
|
|
35
|
+
}, z.core.$strip>;
|
|
36
|
+
export declare const CreateWorkspaceApiKeyInputSchema: z.ZodObject<{
|
|
37
|
+
name: z.ZodString;
|
|
38
|
+
permissions: z.ZodNumber;
|
|
39
|
+
}, z.core.$strip>;
|
|
40
|
+
export declare const CreateWorkspaceApiKeyResponseSchema: z.ZodObject<{
|
|
41
|
+
id: z.ZodString;
|
|
42
|
+
owner_type: z.ZodEnum<{
|
|
43
|
+
user: "user";
|
|
44
|
+
workspace: "workspace";
|
|
45
|
+
}>;
|
|
46
|
+
owner_id: z.ZodString;
|
|
47
|
+
created_by_id: z.ZodNullable<z.ZodString>;
|
|
48
|
+
name: z.ZodString;
|
|
49
|
+
key_prefix: z.ZodString;
|
|
50
|
+
permissions: z.ZodNullable<z.ZodNumber>;
|
|
19
51
|
last_used_at: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
20
52
|
created_at: z.ZodCoercedDate<unknown>;
|
|
21
53
|
updated_at: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api-keys.schema.d.ts","sourceRoot":"","sources":["../../src/api-keys.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"api-keys.schema.d.ts","sourceRoot":"","sources":["../../src/api-keys.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,YAAY;;;;;;;;;;;;;;iBAWvB,CAAC;AAEH,eAAO,MAAM,uBAAuB;;iBAElC,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;iBAErC,CAAC;AAEH,eAAO,MAAM,gCAAgC;;;iBAG3C,CAAC;AAEH,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;iBAE9C,CAAC"}
|
|
@@ -28,6 +28,10 @@ export declare const UserIdParamSchema: z.ZodObject<{
|
|
|
28
28
|
export declare const ApiKeyIdParamSchema: z.ZodObject<{
|
|
29
29
|
api_key_id: z.ZodString;
|
|
30
30
|
}, z.core.$strip>;
|
|
31
|
+
export declare const WorkspaceApiKeyIdParamSchema: z.ZodObject<{
|
|
32
|
+
workspace_id: z.ZodString;
|
|
33
|
+
api_key_id: z.ZodString;
|
|
34
|
+
}, z.core.$strip>;
|
|
31
35
|
export declare const TokenParamSchema: z.ZodObject<{
|
|
32
36
|
token: z.ZodString;
|
|
33
37
|
}, z.core.$strip>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"common.schema.d.ts","sourceRoot":"","sources":["../../src/common.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,sBAAsB;;iBAEjC,CAAC;AAEH,eAAO,MAAM,iBAAiB;;;iBAG5B,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;iBAG3B,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;iBAG9B,CAAC;AAEH,eAAO,MAAM,uBAAuB;;;iBAGlC,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;iBAG9B,CAAC;AAEH,eAAO,MAAM,iBAAiB;;iBAE5B,CAAC;AAEH,eAAO,MAAM,mBAAmB;;iBAE9B,CAAC;AAEH,eAAO,MAAM,gBAAgB;;iBAE3B,CAAC"}
|
|
1
|
+
{"version":3,"file":"common.schema.d.ts","sourceRoot":"","sources":["../../src/common.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,sBAAsB;;iBAEjC,CAAC;AAEH,eAAO,MAAM,iBAAiB;;;iBAG5B,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;iBAG3B,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;iBAG9B,CAAC;AAEH,eAAO,MAAM,uBAAuB;;;iBAGlC,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;iBAG9B,CAAC;AAEH,eAAO,MAAM,iBAAiB;;iBAE5B,CAAC;AAEH,eAAO,MAAM,mBAAmB;;iBAE9B,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;iBAGvC,CAAC;AAEH,eAAO,MAAM,gBAAgB;;iBAE3B,CAAC"}
|
package/dist/cjs/index.d.ts
CHANGED
|
@@ -144,9 +144,15 @@ export declare const apiKeysContract: {
|
|
|
144
144
|
name: z.ZodString;
|
|
145
145
|
}, z.core.$strip>, z.ZodObject<{
|
|
146
146
|
id: z.ZodString;
|
|
147
|
-
|
|
147
|
+
owner_type: z.ZodEnum<{
|
|
148
|
+
user: "user";
|
|
149
|
+
workspace: "workspace";
|
|
150
|
+
}>;
|
|
151
|
+
owner_id: z.ZodString;
|
|
152
|
+
created_by_id: z.ZodNullable<z.ZodString>;
|
|
148
153
|
name: z.ZodString;
|
|
149
154
|
key_prefix: z.ZodString;
|
|
155
|
+
permissions: z.ZodNullable<z.ZodNumber>;
|
|
150
156
|
last_used_at: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
151
157
|
created_at: z.ZodCoercedDate<unknown>;
|
|
152
158
|
updated_at: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
@@ -154,9 +160,15 @@ export declare const apiKeysContract: {
|
|
|
154
160
|
}, z.core.$strip>, Record<never, never>, Record<never, never>>;
|
|
155
161
|
list: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, z.ZodArray<z.ZodObject<{
|
|
156
162
|
id: z.ZodString;
|
|
157
|
-
|
|
163
|
+
owner_type: z.ZodEnum<{
|
|
164
|
+
user: "user";
|
|
165
|
+
workspace: "workspace";
|
|
166
|
+
}>;
|
|
167
|
+
owner_id: z.ZodString;
|
|
168
|
+
created_by_id: z.ZodNullable<z.ZodString>;
|
|
158
169
|
name: z.ZodString;
|
|
159
170
|
key_prefix: z.ZodString;
|
|
171
|
+
permissions: z.ZodNullable<z.ZodNumber>;
|
|
160
172
|
last_used_at: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
161
173
|
created_at: z.ZodCoercedDate<unknown>;
|
|
162
174
|
updated_at: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
@@ -165,6 +177,49 @@ export declare const apiKeysContract: {
|
|
|
165
177
|
api_key_id: z.ZodString;
|
|
166
178
|
}, z.core.$strip>, z.ZodVoid, Record<never, never>, Record<never, never>>;
|
|
167
179
|
};
|
|
180
|
+
export declare const workspaceApiKeysContract: {
|
|
181
|
+
create: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
182
|
+
workspace_id: z.ZodString;
|
|
183
|
+
name: z.ZodString;
|
|
184
|
+
permissions: z.ZodNumber;
|
|
185
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
186
|
+
id: z.ZodString;
|
|
187
|
+
owner_type: z.ZodEnum<{
|
|
188
|
+
user: "user";
|
|
189
|
+
workspace: "workspace";
|
|
190
|
+
}>;
|
|
191
|
+
owner_id: z.ZodString;
|
|
192
|
+
created_by_id: z.ZodNullable<z.ZodString>;
|
|
193
|
+
name: z.ZodString;
|
|
194
|
+
key_prefix: z.ZodString;
|
|
195
|
+
permissions: z.ZodNullable<z.ZodNumber>;
|
|
196
|
+
last_used_at: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
197
|
+
created_at: z.ZodCoercedDate<unknown>;
|
|
198
|
+
updated_at: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
199
|
+
key: z.ZodString;
|
|
200
|
+
}, z.core.$strip>, Record<never, never>, Record<never, never>>;
|
|
201
|
+
list: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
202
|
+
workspace_id: z.ZodString;
|
|
203
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
204
|
+
id: z.ZodString;
|
|
205
|
+
owner_type: z.ZodEnum<{
|
|
206
|
+
user: "user";
|
|
207
|
+
workspace: "workspace";
|
|
208
|
+
}>;
|
|
209
|
+
owner_id: z.ZodString;
|
|
210
|
+
created_by_id: z.ZodNullable<z.ZodString>;
|
|
211
|
+
name: z.ZodString;
|
|
212
|
+
key_prefix: z.ZodString;
|
|
213
|
+
permissions: z.ZodNullable<z.ZodNumber>;
|
|
214
|
+
last_used_at: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
215
|
+
created_at: z.ZodCoercedDate<unknown>;
|
|
216
|
+
updated_at: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
217
|
+
}, z.core.$strip>>, Record<never, never>, Record<never, never>>;
|
|
218
|
+
delete: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
219
|
+
workspace_id: z.ZodString;
|
|
220
|
+
api_key_id: z.ZodString;
|
|
221
|
+
}, z.core.$strip>, z.ZodVoid, Record<never, never>, Record<never, never>>;
|
|
222
|
+
};
|
|
168
223
|
export declare const workspacesContract: {
|
|
169
224
|
create: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
170
225
|
name: z.ZodString;
|
|
@@ -431,6 +486,33 @@ export declare const linksContract: {
|
|
|
431
486
|
y: z.ZodNumber;
|
|
432
487
|
}, z.core.$strip>;
|
|
433
488
|
url: z.ZodString;
|
|
489
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
490
|
+
id: z.ZodString;
|
|
491
|
+
type: z.ZodLiteral<"transform">;
|
|
492
|
+
position: z.ZodObject<{
|
|
493
|
+
x: z.ZodNumber;
|
|
494
|
+
y: z.ZodNumber;
|
|
495
|
+
}, z.core.$strip>;
|
|
496
|
+
transforms: z.ZodObject<{
|
|
497
|
+
query_params: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
498
|
+
key: z.ZodString;
|
|
499
|
+
value: z.ZodString;
|
|
500
|
+
mode: z.ZodEnum<{
|
|
501
|
+
set: "set";
|
|
502
|
+
append: "append";
|
|
503
|
+
}>;
|
|
504
|
+
}, z.core.$strip>>>;
|
|
505
|
+
redirect_status: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<301>, z.ZodLiteral<302>, z.ZodLiteral<307>, z.ZodLiteral<308>]>>;
|
|
506
|
+
response_headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
507
|
+
key: z.ZodString;
|
|
508
|
+
value: z.ZodString;
|
|
509
|
+
mode: z.ZodEnum<{
|
|
510
|
+
set: "set";
|
|
511
|
+
append: "append";
|
|
512
|
+
}>;
|
|
513
|
+
}, z.core.$strip>>>;
|
|
514
|
+
}, z.core.$strip>;
|
|
515
|
+
next: z.ZodNullable<z.ZodString>;
|
|
434
516
|
}, z.core.$strip>], "type">>;
|
|
435
517
|
}, z.core.$strip>>>;
|
|
436
518
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -533,6 +615,33 @@ export declare const linksContract: {
|
|
|
533
615
|
y: z.ZodNumber;
|
|
534
616
|
}, z.core.$strip>;
|
|
535
617
|
url: z.ZodString;
|
|
618
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
619
|
+
id: z.ZodString;
|
|
620
|
+
type: z.ZodLiteral<"transform">;
|
|
621
|
+
position: z.ZodObject<{
|
|
622
|
+
x: z.ZodNumber;
|
|
623
|
+
y: z.ZodNumber;
|
|
624
|
+
}, z.core.$strip>;
|
|
625
|
+
transforms: z.ZodObject<{
|
|
626
|
+
query_params: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
627
|
+
key: z.ZodString;
|
|
628
|
+
value: z.ZodString;
|
|
629
|
+
mode: z.ZodEnum<{
|
|
630
|
+
set: "set";
|
|
631
|
+
append: "append";
|
|
632
|
+
}>;
|
|
633
|
+
}, z.core.$strip>>>;
|
|
634
|
+
redirect_status: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<301>, z.ZodLiteral<302>, z.ZodLiteral<307>, z.ZodLiteral<308>]>>;
|
|
635
|
+
response_headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
636
|
+
key: z.ZodString;
|
|
637
|
+
value: z.ZodString;
|
|
638
|
+
mode: z.ZodEnum<{
|
|
639
|
+
set: "set";
|
|
640
|
+
append: "append";
|
|
641
|
+
}>;
|
|
642
|
+
}, z.core.$strip>>>;
|
|
643
|
+
}, z.core.$strip>;
|
|
644
|
+
next: z.ZodNullable<z.ZodString>;
|
|
536
645
|
}, z.core.$strip>], "type">>;
|
|
537
646
|
}, z.core.$strip>>>;
|
|
538
647
|
tags: z.ZodArray<z.ZodObject<{
|
|
@@ -678,6 +787,33 @@ export declare const linksContract: {
|
|
|
678
787
|
y: z.ZodNumber;
|
|
679
788
|
}, z.core.$strip>;
|
|
680
789
|
url: z.ZodString;
|
|
790
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
791
|
+
id: z.ZodString;
|
|
792
|
+
type: z.ZodLiteral<"transform">;
|
|
793
|
+
position: z.ZodObject<{
|
|
794
|
+
x: z.ZodNumber;
|
|
795
|
+
y: z.ZodNumber;
|
|
796
|
+
}, z.core.$strip>;
|
|
797
|
+
transforms: z.ZodObject<{
|
|
798
|
+
query_params: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
799
|
+
key: z.ZodString;
|
|
800
|
+
value: z.ZodString;
|
|
801
|
+
mode: z.ZodEnum<{
|
|
802
|
+
set: "set";
|
|
803
|
+
append: "append";
|
|
804
|
+
}>;
|
|
805
|
+
}, z.core.$strip>>>;
|
|
806
|
+
redirect_status: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<301>, z.ZodLiteral<302>, z.ZodLiteral<307>, z.ZodLiteral<308>]>>;
|
|
807
|
+
response_headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
808
|
+
key: z.ZodString;
|
|
809
|
+
value: z.ZodString;
|
|
810
|
+
mode: z.ZodEnum<{
|
|
811
|
+
set: "set";
|
|
812
|
+
append: "append";
|
|
813
|
+
}>;
|
|
814
|
+
}, z.core.$strip>>>;
|
|
815
|
+
}, z.core.$strip>;
|
|
816
|
+
next: z.ZodNullable<z.ZodString>;
|
|
681
817
|
}, z.core.$strip>], "type">>;
|
|
682
818
|
}, z.core.$strip>>>;
|
|
683
819
|
tags: z.ZodArray<z.ZodObject<{
|
|
@@ -797,6 +933,33 @@ export declare const linksContract: {
|
|
|
797
933
|
y: z.ZodNumber;
|
|
798
934
|
}, z.core.$strip>;
|
|
799
935
|
url: z.ZodString;
|
|
936
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
937
|
+
id: z.ZodString;
|
|
938
|
+
type: z.ZodLiteral<"transform">;
|
|
939
|
+
position: z.ZodObject<{
|
|
940
|
+
x: z.ZodNumber;
|
|
941
|
+
y: z.ZodNumber;
|
|
942
|
+
}, z.core.$strip>;
|
|
943
|
+
transforms: z.ZodObject<{
|
|
944
|
+
query_params: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
945
|
+
key: z.ZodString;
|
|
946
|
+
value: z.ZodString;
|
|
947
|
+
mode: z.ZodEnum<{
|
|
948
|
+
set: "set";
|
|
949
|
+
append: "append";
|
|
950
|
+
}>;
|
|
951
|
+
}, z.core.$strip>>>;
|
|
952
|
+
redirect_status: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<301>, z.ZodLiteral<302>, z.ZodLiteral<307>, z.ZodLiteral<308>]>>;
|
|
953
|
+
response_headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
954
|
+
key: z.ZodString;
|
|
955
|
+
value: z.ZodString;
|
|
956
|
+
mode: z.ZodEnum<{
|
|
957
|
+
set: "set";
|
|
958
|
+
append: "append";
|
|
959
|
+
}>;
|
|
960
|
+
}, z.core.$strip>>>;
|
|
961
|
+
}, z.core.$strip>;
|
|
962
|
+
next: z.ZodNullable<z.ZodString>;
|
|
800
963
|
}, z.core.$strip>], "type">>;
|
|
801
964
|
}, z.core.$strip>>>;
|
|
802
965
|
tags: z.ZodArray<z.ZodObject<{
|
|
@@ -904,6 +1067,33 @@ export declare const linksContract: {
|
|
|
904
1067
|
y: z.ZodNumber;
|
|
905
1068
|
}, z.core.$strip>;
|
|
906
1069
|
url: z.ZodString;
|
|
1070
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1071
|
+
id: z.ZodString;
|
|
1072
|
+
type: z.ZodLiteral<"transform">;
|
|
1073
|
+
position: z.ZodObject<{
|
|
1074
|
+
x: z.ZodNumber;
|
|
1075
|
+
y: z.ZodNumber;
|
|
1076
|
+
}, z.core.$strip>;
|
|
1077
|
+
transforms: z.ZodObject<{
|
|
1078
|
+
query_params: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1079
|
+
key: z.ZodString;
|
|
1080
|
+
value: z.ZodString;
|
|
1081
|
+
mode: z.ZodEnum<{
|
|
1082
|
+
set: "set";
|
|
1083
|
+
append: "append";
|
|
1084
|
+
}>;
|
|
1085
|
+
}, z.core.$strip>>>;
|
|
1086
|
+
redirect_status: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<301>, z.ZodLiteral<302>, z.ZodLiteral<307>, z.ZodLiteral<308>]>>;
|
|
1087
|
+
response_headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1088
|
+
key: z.ZodString;
|
|
1089
|
+
value: z.ZodString;
|
|
1090
|
+
mode: z.ZodEnum<{
|
|
1091
|
+
set: "set";
|
|
1092
|
+
append: "append";
|
|
1093
|
+
}>;
|
|
1094
|
+
}, z.core.$strip>>>;
|
|
1095
|
+
}, z.core.$strip>;
|
|
1096
|
+
next: z.ZodNullable<z.ZodString>;
|
|
907
1097
|
}, z.core.$strip>], "type">>;
|
|
908
1098
|
}, z.core.$strip>>>;
|
|
909
1099
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -1006,6 +1196,33 @@ export declare const linksContract: {
|
|
|
1006
1196
|
y: z.ZodNumber;
|
|
1007
1197
|
}, z.core.$strip>;
|
|
1008
1198
|
url: z.ZodString;
|
|
1199
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1200
|
+
id: z.ZodString;
|
|
1201
|
+
type: z.ZodLiteral<"transform">;
|
|
1202
|
+
position: z.ZodObject<{
|
|
1203
|
+
x: z.ZodNumber;
|
|
1204
|
+
y: z.ZodNumber;
|
|
1205
|
+
}, z.core.$strip>;
|
|
1206
|
+
transforms: z.ZodObject<{
|
|
1207
|
+
query_params: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1208
|
+
key: z.ZodString;
|
|
1209
|
+
value: z.ZodString;
|
|
1210
|
+
mode: z.ZodEnum<{
|
|
1211
|
+
set: "set";
|
|
1212
|
+
append: "append";
|
|
1213
|
+
}>;
|
|
1214
|
+
}, z.core.$strip>>>;
|
|
1215
|
+
redirect_status: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<301>, z.ZodLiteral<302>, z.ZodLiteral<307>, z.ZodLiteral<308>]>>;
|
|
1216
|
+
response_headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1217
|
+
key: z.ZodString;
|
|
1218
|
+
value: z.ZodString;
|
|
1219
|
+
mode: z.ZodEnum<{
|
|
1220
|
+
set: "set";
|
|
1221
|
+
append: "append";
|
|
1222
|
+
}>;
|
|
1223
|
+
}, z.core.$strip>>>;
|
|
1224
|
+
}, z.core.$strip>;
|
|
1225
|
+
next: z.ZodNullable<z.ZodString>;
|
|
1009
1226
|
}, z.core.$strip>], "type">>;
|
|
1010
1227
|
}, z.core.$strip>>>;
|
|
1011
1228
|
tags: z.ZodArray<z.ZodObject<{
|
|
@@ -1387,9 +1604,15 @@ export declare const contract: {
|
|
|
1387
1604
|
name: z.ZodString;
|
|
1388
1605
|
}, z.core.$strip>, z.ZodObject<{
|
|
1389
1606
|
id: z.ZodString;
|
|
1390
|
-
|
|
1607
|
+
owner_type: z.ZodEnum<{
|
|
1608
|
+
user: "user";
|
|
1609
|
+
workspace: "workspace";
|
|
1610
|
+
}>;
|
|
1611
|
+
owner_id: z.ZodString;
|
|
1612
|
+
created_by_id: z.ZodNullable<z.ZodString>;
|
|
1391
1613
|
name: z.ZodString;
|
|
1392
1614
|
key_prefix: z.ZodString;
|
|
1615
|
+
permissions: z.ZodNullable<z.ZodNumber>;
|
|
1393
1616
|
last_used_at: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
1394
1617
|
created_at: z.ZodCoercedDate<unknown>;
|
|
1395
1618
|
updated_at: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
@@ -1397,9 +1620,15 @@ export declare const contract: {
|
|
|
1397
1620
|
}, z.core.$strip>, Record<never, never>, Record<never, never>>;
|
|
1398
1621
|
list: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, z.ZodArray<z.ZodObject<{
|
|
1399
1622
|
id: z.ZodString;
|
|
1400
|
-
|
|
1623
|
+
owner_type: z.ZodEnum<{
|
|
1624
|
+
user: "user";
|
|
1625
|
+
workspace: "workspace";
|
|
1626
|
+
}>;
|
|
1627
|
+
owner_id: z.ZodString;
|
|
1628
|
+
created_by_id: z.ZodNullable<z.ZodString>;
|
|
1401
1629
|
name: z.ZodString;
|
|
1402
1630
|
key_prefix: z.ZodString;
|
|
1631
|
+
permissions: z.ZodNullable<z.ZodNumber>;
|
|
1403
1632
|
last_used_at: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
1404
1633
|
created_at: z.ZodCoercedDate<unknown>;
|
|
1405
1634
|
updated_at: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
@@ -1408,6 +1637,49 @@ export declare const contract: {
|
|
|
1408
1637
|
api_key_id: z.ZodString;
|
|
1409
1638
|
}, z.core.$strip>, z.ZodVoid, Record<never, never>, Record<never, never>>;
|
|
1410
1639
|
};
|
|
1640
|
+
workspaceApiKeys: {
|
|
1641
|
+
create: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
1642
|
+
workspace_id: z.ZodString;
|
|
1643
|
+
name: z.ZodString;
|
|
1644
|
+
permissions: z.ZodNumber;
|
|
1645
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1646
|
+
id: z.ZodString;
|
|
1647
|
+
owner_type: z.ZodEnum<{
|
|
1648
|
+
user: "user";
|
|
1649
|
+
workspace: "workspace";
|
|
1650
|
+
}>;
|
|
1651
|
+
owner_id: z.ZodString;
|
|
1652
|
+
created_by_id: z.ZodNullable<z.ZodString>;
|
|
1653
|
+
name: z.ZodString;
|
|
1654
|
+
key_prefix: z.ZodString;
|
|
1655
|
+
permissions: z.ZodNullable<z.ZodNumber>;
|
|
1656
|
+
last_used_at: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
1657
|
+
created_at: z.ZodCoercedDate<unknown>;
|
|
1658
|
+
updated_at: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
1659
|
+
key: z.ZodString;
|
|
1660
|
+
}, z.core.$strip>, Record<never, never>, Record<never, never>>;
|
|
1661
|
+
list: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
1662
|
+
workspace_id: z.ZodString;
|
|
1663
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
1664
|
+
id: z.ZodString;
|
|
1665
|
+
owner_type: z.ZodEnum<{
|
|
1666
|
+
user: "user";
|
|
1667
|
+
workspace: "workspace";
|
|
1668
|
+
}>;
|
|
1669
|
+
owner_id: z.ZodString;
|
|
1670
|
+
created_by_id: z.ZodNullable<z.ZodString>;
|
|
1671
|
+
name: z.ZodString;
|
|
1672
|
+
key_prefix: z.ZodString;
|
|
1673
|
+
permissions: z.ZodNullable<z.ZodNumber>;
|
|
1674
|
+
last_used_at: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
1675
|
+
created_at: z.ZodCoercedDate<unknown>;
|
|
1676
|
+
updated_at: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
1677
|
+
}, z.core.$strip>>, Record<never, never>, Record<never, never>>;
|
|
1678
|
+
delete: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
1679
|
+
workspace_id: z.ZodString;
|
|
1680
|
+
api_key_id: z.ZodString;
|
|
1681
|
+
}, z.core.$strip>, z.ZodVoid, Record<never, never>, Record<never, never>>;
|
|
1682
|
+
};
|
|
1411
1683
|
workspaces: {
|
|
1412
1684
|
create: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
1413
1685
|
name: z.ZodString;
|
|
@@ -1674,6 +1946,33 @@ export declare const contract: {
|
|
|
1674
1946
|
y: z.ZodNumber;
|
|
1675
1947
|
}, z.core.$strip>;
|
|
1676
1948
|
url: z.ZodString;
|
|
1949
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1950
|
+
id: z.ZodString;
|
|
1951
|
+
type: z.ZodLiteral<"transform">;
|
|
1952
|
+
position: z.ZodObject<{
|
|
1953
|
+
x: z.ZodNumber;
|
|
1954
|
+
y: z.ZodNumber;
|
|
1955
|
+
}, z.core.$strip>;
|
|
1956
|
+
transforms: z.ZodObject<{
|
|
1957
|
+
query_params: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1958
|
+
key: z.ZodString;
|
|
1959
|
+
value: z.ZodString;
|
|
1960
|
+
mode: z.ZodEnum<{
|
|
1961
|
+
set: "set";
|
|
1962
|
+
append: "append";
|
|
1963
|
+
}>;
|
|
1964
|
+
}, z.core.$strip>>>;
|
|
1965
|
+
redirect_status: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<301>, z.ZodLiteral<302>, z.ZodLiteral<307>, z.ZodLiteral<308>]>>;
|
|
1966
|
+
response_headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1967
|
+
key: z.ZodString;
|
|
1968
|
+
value: z.ZodString;
|
|
1969
|
+
mode: z.ZodEnum<{
|
|
1970
|
+
set: "set";
|
|
1971
|
+
append: "append";
|
|
1972
|
+
}>;
|
|
1973
|
+
}, z.core.$strip>>>;
|
|
1974
|
+
}, z.core.$strip>;
|
|
1975
|
+
next: z.ZodNullable<z.ZodString>;
|
|
1677
1976
|
}, z.core.$strip>], "type">>;
|
|
1678
1977
|
}, z.core.$strip>>>;
|
|
1679
1978
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -1776,6 +2075,33 @@ export declare const contract: {
|
|
|
1776
2075
|
y: z.ZodNumber;
|
|
1777
2076
|
}, z.core.$strip>;
|
|
1778
2077
|
url: z.ZodString;
|
|
2078
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2079
|
+
id: z.ZodString;
|
|
2080
|
+
type: z.ZodLiteral<"transform">;
|
|
2081
|
+
position: z.ZodObject<{
|
|
2082
|
+
x: z.ZodNumber;
|
|
2083
|
+
y: z.ZodNumber;
|
|
2084
|
+
}, z.core.$strip>;
|
|
2085
|
+
transforms: z.ZodObject<{
|
|
2086
|
+
query_params: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2087
|
+
key: z.ZodString;
|
|
2088
|
+
value: z.ZodString;
|
|
2089
|
+
mode: z.ZodEnum<{
|
|
2090
|
+
set: "set";
|
|
2091
|
+
append: "append";
|
|
2092
|
+
}>;
|
|
2093
|
+
}, z.core.$strip>>>;
|
|
2094
|
+
redirect_status: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<301>, z.ZodLiteral<302>, z.ZodLiteral<307>, z.ZodLiteral<308>]>>;
|
|
2095
|
+
response_headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2096
|
+
key: z.ZodString;
|
|
2097
|
+
value: z.ZodString;
|
|
2098
|
+
mode: z.ZodEnum<{
|
|
2099
|
+
set: "set";
|
|
2100
|
+
append: "append";
|
|
2101
|
+
}>;
|
|
2102
|
+
}, z.core.$strip>>>;
|
|
2103
|
+
}, z.core.$strip>;
|
|
2104
|
+
next: z.ZodNullable<z.ZodString>;
|
|
1779
2105
|
}, z.core.$strip>], "type">>;
|
|
1780
2106
|
}, z.core.$strip>>>;
|
|
1781
2107
|
tags: z.ZodArray<z.ZodObject<{
|
|
@@ -1921,6 +2247,33 @@ export declare const contract: {
|
|
|
1921
2247
|
y: z.ZodNumber;
|
|
1922
2248
|
}, z.core.$strip>;
|
|
1923
2249
|
url: z.ZodString;
|
|
2250
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2251
|
+
id: z.ZodString;
|
|
2252
|
+
type: z.ZodLiteral<"transform">;
|
|
2253
|
+
position: z.ZodObject<{
|
|
2254
|
+
x: z.ZodNumber;
|
|
2255
|
+
y: z.ZodNumber;
|
|
2256
|
+
}, z.core.$strip>;
|
|
2257
|
+
transforms: z.ZodObject<{
|
|
2258
|
+
query_params: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2259
|
+
key: z.ZodString;
|
|
2260
|
+
value: z.ZodString;
|
|
2261
|
+
mode: z.ZodEnum<{
|
|
2262
|
+
set: "set";
|
|
2263
|
+
append: "append";
|
|
2264
|
+
}>;
|
|
2265
|
+
}, z.core.$strip>>>;
|
|
2266
|
+
redirect_status: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<301>, z.ZodLiteral<302>, z.ZodLiteral<307>, z.ZodLiteral<308>]>>;
|
|
2267
|
+
response_headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2268
|
+
key: z.ZodString;
|
|
2269
|
+
value: z.ZodString;
|
|
2270
|
+
mode: z.ZodEnum<{
|
|
2271
|
+
set: "set";
|
|
2272
|
+
append: "append";
|
|
2273
|
+
}>;
|
|
2274
|
+
}, z.core.$strip>>>;
|
|
2275
|
+
}, z.core.$strip>;
|
|
2276
|
+
next: z.ZodNullable<z.ZodString>;
|
|
1924
2277
|
}, z.core.$strip>], "type">>;
|
|
1925
2278
|
}, z.core.$strip>>>;
|
|
1926
2279
|
tags: z.ZodArray<z.ZodObject<{
|
|
@@ -2040,6 +2393,33 @@ export declare const contract: {
|
|
|
2040
2393
|
y: z.ZodNumber;
|
|
2041
2394
|
}, z.core.$strip>;
|
|
2042
2395
|
url: z.ZodString;
|
|
2396
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2397
|
+
id: z.ZodString;
|
|
2398
|
+
type: z.ZodLiteral<"transform">;
|
|
2399
|
+
position: z.ZodObject<{
|
|
2400
|
+
x: z.ZodNumber;
|
|
2401
|
+
y: z.ZodNumber;
|
|
2402
|
+
}, z.core.$strip>;
|
|
2403
|
+
transforms: z.ZodObject<{
|
|
2404
|
+
query_params: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2405
|
+
key: z.ZodString;
|
|
2406
|
+
value: z.ZodString;
|
|
2407
|
+
mode: z.ZodEnum<{
|
|
2408
|
+
set: "set";
|
|
2409
|
+
append: "append";
|
|
2410
|
+
}>;
|
|
2411
|
+
}, z.core.$strip>>>;
|
|
2412
|
+
redirect_status: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<301>, z.ZodLiteral<302>, z.ZodLiteral<307>, z.ZodLiteral<308>]>>;
|
|
2413
|
+
response_headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2414
|
+
key: z.ZodString;
|
|
2415
|
+
value: z.ZodString;
|
|
2416
|
+
mode: z.ZodEnum<{
|
|
2417
|
+
set: "set";
|
|
2418
|
+
append: "append";
|
|
2419
|
+
}>;
|
|
2420
|
+
}, z.core.$strip>>>;
|
|
2421
|
+
}, z.core.$strip>;
|
|
2422
|
+
next: z.ZodNullable<z.ZodString>;
|
|
2043
2423
|
}, z.core.$strip>], "type">>;
|
|
2044
2424
|
}, z.core.$strip>>>;
|
|
2045
2425
|
tags: z.ZodArray<z.ZodObject<{
|
|
@@ -2147,6 +2527,33 @@ export declare const contract: {
|
|
|
2147
2527
|
y: z.ZodNumber;
|
|
2148
2528
|
}, z.core.$strip>;
|
|
2149
2529
|
url: z.ZodString;
|
|
2530
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2531
|
+
id: z.ZodString;
|
|
2532
|
+
type: z.ZodLiteral<"transform">;
|
|
2533
|
+
position: z.ZodObject<{
|
|
2534
|
+
x: z.ZodNumber;
|
|
2535
|
+
y: z.ZodNumber;
|
|
2536
|
+
}, z.core.$strip>;
|
|
2537
|
+
transforms: z.ZodObject<{
|
|
2538
|
+
query_params: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2539
|
+
key: z.ZodString;
|
|
2540
|
+
value: z.ZodString;
|
|
2541
|
+
mode: z.ZodEnum<{
|
|
2542
|
+
set: "set";
|
|
2543
|
+
append: "append";
|
|
2544
|
+
}>;
|
|
2545
|
+
}, z.core.$strip>>>;
|
|
2546
|
+
redirect_status: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<301>, z.ZodLiteral<302>, z.ZodLiteral<307>, z.ZodLiteral<308>]>>;
|
|
2547
|
+
response_headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2548
|
+
key: z.ZodString;
|
|
2549
|
+
value: z.ZodString;
|
|
2550
|
+
mode: z.ZodEnum<{
|
|
2551
|
+
set: "set";
|
|
2552
|
+
append: "append";
|
|
2553
|
+
}>;
|
|
2554
|
+
}, z.core.$strip>>>;
|
|
2555
|
+
}, z.core.$strip>;
|
|
2556
|
+
next: z.ZodNullable<z.ZodString>;
|
|
2150
2557
|
}, z.core.$strip>], "type">>;
|
|
2151
2558
|
}, z.core.$strip>>>;
|
|
2152
2559
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -2249,6 +2656,33 @@ export declare const contract: {
|
|
|
2249
2656
|
y: z.ZodNumber;
|
|
2250
2657
|
}, z.core.$strip>;
|
|
2251
2658
|
url: z.ZodString;
|
|
2659
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2660
|
+
id: z.ZodString;
|
|
2661
|
+
type: z.ZodLiteral<"transform">;
|
|
2662
|
+
position: z.ZodObject<{
|
|
2663
|
+
x: z.ZodNumber;
|
|
2664
|
+
y: z.ZodNumber;
|
|
2665
|
+
}, z.core.$strip>;
|
|
2666
|
+
transforms: z.ZodObject<{
|
|
2667
|
+
query_params: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2668
|
+
key: z.ZodString;
|
|
2669
|
+
value: z.ZodString;
|
|
2670
|
+
mode: z.ZodEnum<{
|
|
2671
|
+
set: "set";
|
|
2672
|
+
append: "append";
|
|
2673
|
+
}>;
|
|
2674
|
+
}, z.core.$strip>>>;
|
|
2675
|
+
redirect_status: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<301>, z.ZodLiteral<302>, z.ZodLiteral<307>, z.ZodLiteral<308>]>>;
|
|
2676
|
+
response_headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2677
|
+
key: z.ZodString;
|
|
2678
|
+
value: z.ZodString;
|
|
2679
|
+
mode: z.ZodEnum<{
|
|
2680
|
+
set: "set";
|
|
2681
|
+
append: "append";
|
|
2682
|
+
}>;
|
|
2683
|
+
}, z.core.$strip>>>;
|
|
2684
|
+
}, z.core.$strip>;
|
|
2685
|
+
next: z.ZodNullable<z.ZodString>;
|
|
2252
2686
|
}, z.core.$strip>], "type">>;
|
|
2253
2687
|
}, z.core.$strip>>>;
|
|
2254
2688
|
tags: z.ZodArray<z.ZodObject<{
|
package/dist/cjs/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,gBAAgB,CAAC;AAE3D,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAWpB,CAAC;AAEF,MAAM,MAAM,QAAQ,GAAG,OAAO,QAAQ,CAAC;AACvC,MAAM,MAAM,MAAM,GAAG,oBAAoB,CAAC,QAAQ,CAAC,CAAC"}
|