@lokalise/connector-api-contracts 4.0.0 → 4.0.2
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.
|
@@ -102,50 +102,6 @@ export type MultiselectFilter = z.infer<typeof MULTISELECT_FILTER_SCHEMA>;
|
|
|
102
102
|
export type SelectFilter = z.infer<typeof SELECT_FILTER_SCHEMA>;
|
|
103
103
|
export type AsyncMultiselectFilter = z.infer<typeof ASYNC_MULTISELECT_FILTER_SCHEMA>;
|
|
104
104
|
export type DaterangeFilter = z.infer<typeof DATERANGE_FILTER_SCHEMA>;
|
|
105
|
-
export declare const FILTER_SCHEMA: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
106
|
-
id: z.ZodString;
|
|
107
|
-
query: z.ZodString;
|
|
108
|
-
type: z.ZodLiteral<"search">;
|
|
109
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
110
|
-
id: z.ZodString;
|
|
111
|
-
query: z.ZodString;
|
|
112
|
-
type: z.ZodLiteral<"multiselect">;
|
|
113
|
-
options: z.ZodArray<z.ZodObject<{
|
|
114
|
-
id: z.ZodString;
|
|
115
|
-
name: z.ZodString;
|
|
116
|
-
}, z.core.$strip>>;
|
|
117
|
-
defaultValue: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
118
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
119
|
-
id: z.ZodString;
|
|
120
|
-
query: z.ZodString;
|
|
121
|
-
type: z.ZodLiteral<"async-multiselect">;
|
|
122
|
-
constraintQuery: z.ZodOptional<z.ZodString>;
|
|
123
|
-
defaultValue: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
124
|
-
dependsOn: z.ZodOptional<z.ZodString>;
|
|
125
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
126
|
-
id: z.ZodString;
|
|
127
|
-
query: z.ZodString;
|
|
128
|
-
type: z.ZodLiteral<"select">;
|
|
129
|
-
options: z.ZodArray<z.ZodObject<{
|
|
130
|
-
id: z.ZodString;
|
|
131
|
-
name: z.ZodString;
|
|
132
|
-
}, z.core.$strip>>;
|
|
133
|
-
defaultValue: z.ZodOptional<z.ZodString>;
|
|
134
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
135
|
-
id: z.ZodString;
|
|
136
|
-
query: z.ZodString;
|
|
137
|
-
type: z.ZodLiteral<"async-select">;
|
|
138
|
-
constraintQuery: z.ZodOptional<z.ZodString>;
|
|
139
|
-
dependsOn: z.ZodOptional<z.ZodString>;
|
|
140
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
141
|
-
id: z.ZodString;
|
|
142
|
-
query: z.ZodString;
|
|
143
|
-
type: z.ZodLiteral<"daterange">;
|
|
144
|
-
defaultValue: z.ZodOptional<z.ZodObject<{
|
|
145
|
-
from: z.ZodString;
|
|
146
|
-
to: z.ZodString;
|
|
147
|
-
}, z.core.$strip>>;
|
|
148
|
-
}, z.core.$strip>], "type">>;
|
|
149
105
|
export type Filter = z.infer<typeof MANIFEST_FILTER_SCHEMA>;
|
|
150
106
|
export declare const SELECT_ENTRY: z.ZodObject<{
|
|
151
107
|
value: z.ZodString;
|
|
@@ -247,7 +203,47 @@ export declare const CAPABILITY_SCHEMA: z.ZodObject<{
|
|
|
247
203
|
data: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
248
204
|
}, z.core.$strip>;
|
|
249
205
|
export type Capability = z.infer<typeof CAPABILITY_SCHEMA>;
|
|
206
|
+
export declare const BASE_MANIFEST_COLUMN: z.ZodObject<{
|
|
207
|
+
id: z.ZodString;
|
|
208
|
+
}, z.core.$strip>;
|
|
209
|
+
export declare const PRIMARY_COLUMN: z.ZodObject<{
|
|
210
|
+
id: z.ZodString;
|
|
211
|
+
type: z.ZodLiteral<"primary">;
|
|
212
|
+
paths: z.ZodObject<{
|
|
213
|
+
title: z.ZodString;
|
|
214
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
215
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
216
|
+
}, z.core.$strip>;
|
|
217
|
+
}, z.core.$strip>;
|
|
218
|
+
export type PrimaryColumn = z.infer<typeof PRIMARY_COLUMN>;
|
|
219
|
+
export declare const TEXT_COLUMN: z.ZodObject<{
|
|
220
|
+
id: z.ZodString;
|
|
221
|
+
type: z.ZodLiteral<"text">;
|
|
222
|
+
paths: z.ZodObject<{
|
|
223
|
+
text: z.ZodString;
|
|
224
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
225
|
+
}, z.core.$strip>;
|
|
226
|
+
}, z.core.$strip>;
|
|
227
|
+
export type TextColumn = z.infer<typeof TEXT_COLUMN>;
|
|
228
|
+
export declare const MANIFEST_COLUMN: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
229
|
+
id: z.ZodString;
|
|
230
|
+
type: z.ZodLiteral<"primary">;
|
|
231
|
+
paths: z.ZodObject<{
|
|
232
|
+
title: z.ZodString;
|
|
233
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
234
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
235
|
+
}, z.core.$strip>;
|
|
236
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
237
|
+
id: z.ZodString;
|
|
238
|
+
type: z.ZodLiteral<"text">;
|
|
239
|
+
paths: z.ZodObject<{
|
|
240
|
+
text: z.ZodString;
|
|
241
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
242
|
+
}, z.core.$strip>;
|
|
243
|
+
}, z.core.$strip>], "type">;
|
|
244
|
+
export type ManifestColumn = z.infer<typeof MANIFEST_COLUMN>;
|
|
250
245
|
export declare const MANIFEST_SCHEMA: z.ZodObject<{
|
|
246
|
+
name: z.ZodString;
|
|
251
247
|
authentication: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
252
248
|
type: z.ZodLiteral<"oauth">;
|
|
253
249
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -270,7 +266,7 @@ export declare const MANIFEST_SCHEMA: z.ZodObject<{
|
|
|
270
266
|
type: z.ZodLiteral<"url">;
|
|
271
267
|
}, z.core.$strip>], "type">>;
|
|
272
268
|
}, z.core.$strip>], "type">;
|
|
273
|
-
filters: z.ZodArray<z.
|
|
269
|
+
filters: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
274
270
|
id: z.ZodString;
|
|
275
271
|
query: z.ZodString;
|
|
276
272
|
type: z.ZodLiteral<"search">;
|
|
@@ -313,14 +309,31 @@ export declare const MANIFEST_SCHEMA: z.ZodObject<{
|
|
|
313
309
|
from: z.ZodString;
|
|
314
310
|
to: z.ZodString;
|
|
315
311
|
}, z.core.$strip>>;
|
|
316
|
-
}, z.core.$strip>], "type"
|
|
312
|
+
}, z.core.$strip>], "type">>;
|
|
317
313
|
capabilities: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
318
314
|
version: z.ZodNumber;
|
|
319
315
|
data: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
320
316
|
}, z.core.$strip>>;
|
|
317
|
+
columns: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
318
|
+
id: z.ZodString;
|
|
319
|
+
type: z.ZodLiteral<"primary">;
|
|
320
|
+
paths: z.ZodObject<{
|
|
321
|
+
title: z.ZodString;
|
|
322
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
323
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
324
|
+
}, z.core.$strip>;
|
|
325
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
326
|
+
id: z.ZodString;
|
|
327
|
+
type: z.ZodLiteral<"text">;
|
|
328
|
+
paths: z.ZodObject<{
|
|
329
|
+
text: z.ZodString;
|
|
330
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
331
|
+
}, z.core.$strip>;
|
|
332
|
+
}, z.core.$strip>], "type">>;
|
|
321
333
|
}, z.core.$strip>;
|
|
322
334
|
export type Manifest = z.infer<typeof MANIFEST_SCHEMA>;
|
|
323
335
|
export declare const MANIFESTS_BY_MODE_SCHEMA: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
336
|
+
name: z.ZodString;
|
|
324
337
|
authentication: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
325
338
|
type: z.ZodLiteral<"oauth">;
|
|
326
339
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -343,7 +356,7 @@ export declare const MANIFESTS_BY_MODE_SCHEMA: z.ZodRecord<z.ZodString, z.ZodObj
|
|
|
343
356
|
type: z.ZodLiteral<"url">;
|
|
344
357
|
}, z.core.$strip>], "type">>;
|
|
345
358
|
}, z.core.$strip>], "type">;
|
|
346
|
-
filters: z.ZodArray<z.
|
|
359
|
+
filters: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
347
360
|
id: z.ZodString;
|
|
348
361
|
query: z.ZodString;
|
|
349
362
|
type: z.ZodLiteral<"search">;
|
|
@@ -386,14 +399,31 @@ export declare const MANIFESTS_BY_MODE_SCHEMA: z.ZodRecord<z.ZodString, z.ZodObj
|
|
|
386
399
|
from: z.ZodString;
|
|
387
400
|
to: z.ZodString;
|
|
388
401
|
}, z.core.$strip>>;
|
|
389
|
-
}, z.core.$strip>], "type"
|
|
402
|
+
}, z.core.$strip>], "type">>;
|
|
390
403
|
capabilities: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
391
404
|
version: z.ZodNumber;
|
|
392
405
|
data: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
393
406
|
}, z.core.$strip>>;
|
|
407
|
+
columns: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
408
|
+
id: z.ZodString;
|
|
409
|
+
type: z.ZodLiteral<"primary">;
|
|
410
|
+
paths: z.ZodObject<{
|
|
411
|
+
title: z.ZodString;
|
|
412
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
413
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
414
|
+
}, z.core.$strip>;
|
|
415
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
416
|
+
id: z.ZodString;
|
|
417
|
+
type: z.ZodLiteral<"text">;
|
|
418
|
+
paths: z.ZodObject<{
|
|
419
|
+
text: z.ZodString;
|
|
420
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
421
|
+
}, z.core.$strip>;
|
|
422
|
+
}, z.core.$strip>], "type">>;
|
|
394
423
|
}, z.core.$strip>>;
|
|
395
424
|
export type ManifestsByMode = z.infer<typeof MANIFESTS_BY_MODE_SCHEMA>;
|
|
396
425
|
export declare const getManifestContract: import("@lokalise/api-contracts").GetRouteDefinition<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
426
|
+
name: z.ZodString;
|
|
397
427
|
authentication: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
398
428
|
type: z.ZodLiteral<"oauth">;
|
|
399
429
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -416,7 +446,7 @@ export declare const getManifestContract: import("@lokalise/api-contracts").GetR
|
|
|
416
446
|
type: z.ZodLiteral<"url">;
|
|
417
447
|
}, z.core.$strip>], "type">>;
|
|
418
448
|
}, z.core.$strip>], "type">;
|
|
419
|
-
filters: z.ZodArray<z.
|
|
449
|
+
filters: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
420
450
|
id: z.ZodString;
|
|
421
451
|
query: z.ZodString;
|
|
422
452
|
type: z.ZodLiteral<"search">;
|
|
@@ -459,16 +489,33 @@ export declare const getManifestContract: import("@lokalise/api-contracts").GetR
|
|
|
459
489
|
from: z.ZodString;
|
|
460
490
|
to: z.ZodString;
|
|
461
491
|
}, z.core.$strip>>;
|
|
462
|
-
}, z.core.$strip>], "type"
|
|
492
|
+
}, z.core.$strip>], "type">>;
|
|
463
493
|
capabilities: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
464
494
|
version: z.ZodNumber;
|
|
465
495
|
data: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
466
496
|
}, z.core.$strip>>;
|
|
497
|
+
columns: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
498
|
+
id: z.ZodString;
|
|
499
|
+
type: z.ZodLiteral<"primary">;
|
|
500
|
+
paths: z.ZodObject<{
|
|
501
|
+
title: z.ZodString;
|
|
502
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
503
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
504
|
+
}, z.core.$strip>;
|
|
505
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
506
|
+
id: z.ZodString;
|
|
507
|
+
type: z.ZodLiteral<"text">;
|
|
508
|
+
paths: z.ZodObject<{
|
|
509
|
+
text: z.ZodString;
|
|
510
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
511
|
+
}, z.core.$strip>;
|
|
512
|
+
}, z.core.$strip>], "type">>;
|
|
467
513
|
}, z.core.$strip>>, undefined, undefined, z.ZodObject<{
|
|
468
514
|
'ce-config': z.ZodString;
|
|
469
515
|
"x-connector-id": z.ZodString;
|
|
470
516
|
}, z.core.$strip>, undefined, false, false, {
|
|
471
517
|
200: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
518
|
+
name: z.ZodString;
|
|
472
519
|
authentication: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
473
520
|
type: z.ZodLiteral<"oauth">;
|
|
474
521
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -491,7 +538,7 @@ export declare const getManifestContract: import("@lokalise/api-contracts").GetR
|
|
|
491
538
|
type: z.ZodLiteral<"url">;
|
|
492
539
|
}, z.core.$strip>], "type">>;
|
|
493
540
|
}, z.core.$strip>], "type">;
|
|
494
|
-
filters: z.ZodArray<z.
|
|
541
|
+
filters: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
495
542
|
id: z.ZodString;
|
|
496
543
|
query: z.ZodString;
|
|
497
544
|
type: z.ZodLiteral<"search">;
|
|
@@ -534,11 +581,27 @@ export declare const getManifestContract: import("@lokalise/api-contracts").GetR
|
|
|
534
581
|
from: z.ZodString;
|
|
535
582
|
to: z.ZodString;
|
|
536
583
|
}, z.core.$strip>>;
|
|
537
|
-
}, z.core.$strip>], "type"
|
|
584
|
+
}, z.core.$strip>], "type">>;
|
|
538
585
|
capabilities: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
539
586
|
version: z.ZodNumber;
|
|
540
587
|
data: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
541
588
|
}, z.core.$strip>>;
|
|
589
|
+
columns: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
590
|
+
id: z.ZodString;
|
|
591
|
+
type: z.ZodLiteral<"primary">;
|
|
592
|
+
paths: z.ZodObject<{
|
|
593
|
+
title: z.ZodString;
|
|
594
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
595
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
596
|
+
}, z.core.$strip>;
|
|
597
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
598
|
+
id: z.ZodString;
|
|
599
|
+
type: z.ZodLiteral<"text">;
|
|
600
|
+
paths: z.ZodObject<{
|
|
601
|
+
text: z.ZodString;
|
|
602
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
603
|
+
}, z.core.$strip>;
|
|
604
|
+
}, z.core.$strip>], "type">>;
|
|
542
605
|
}, z.core.$strip>>;
|
|
543
606
|
403: z.ZodUnion<readonly [z.ZodObject<{
|
|
544
607
|
statusCode: z.ZodNumber;
|
|
@@ -50,7 +50,6 @@ export const MANIFEST_FILTER_SCHEMA = z.discriminatedUnion('type', [
|
|
|
50
50
|
ASYNC_SELECT_FILTER_SCHEMA,
|
|
51
51
|
DATERANGE_FILTER_SCHEMA,
|
|
52
52
|
]);
|
|
53
|
-
export const FILTER_SCHEMA = z.array(MANIFEST_FILTER_SCHEMA);
|
|
54
53
|
export const SELECT_ENTRY = z.object({
|
|
55
54
|
value: z.string(),
|
|
56
55
|
label: z.string(),
|
|
@@ -89,10 +88,31 @@ export const CAPABILITY_SCHEMA = z.object({
|
|
|
89
88
|
version: z.number().int().positive(),
|
|
90
89
|
data: z.looseObject({}).optional(),
|
|
91
90
|
});
|
|
91
|
+
export const BASE_MANIFEST_COLUMN = z.object({
|
|
92
|
+
id: z.string(),
|
|
93
|
+
});
|
|
94
|
+
export const PRIMARY_COLUMN = BASE_MANIFEST_COLUMN.extend({
|
|
95
|
+
type: z.literal('primary'),
|
|
96
|
+
paths: z.object({
|
|
97
|
+
title: z.string(),
|
|
98
|
+
updatedAt: z.string().optional(),
|
|
99
|
+
icon: z.string().optional(),
|
|
100
|
+
}),
|
|
101
|
+
});
|
|
102
|
+
export const TEXT_COLUMN = BASE_MANIFEST_COLUMN.extend({
|
|
103
|
+
type: z.literal('text'),
|
|
104
|
+
paths: z.object({
|
|
105
|
+
text: z.string(),
|
|
106
|
+
icon: z.string().optional(),
|
|
107
|
+
}),
|
|
108
|
+
});
|
|
109
|
+
export const MANIFEST_COLUMN = z.discriminatedUnion('type', [PRIMARY_COLUMN, TEXT_COLUMN]);
|
|
92
110
|
export const MANIFEST_SCHEMA = z.object({
|
|
111
|
+
name: z.string(),
|
|
93
112
|
authentication: AUTHENTICATION_SCHEMA,
|
|
94
|
-
filters: z.array(
|
|
113
|
+
filters: z.array(MANIFEST_FILTER_SCHEMA),
|
|
95
114
|
capabilities: z.record(z.string(), CAPABILITY_SCHEMA),
|
|
115
|
+
columns: z.array(MANIFEST_COLUMN),
|
|
96
116
|
});
|
|
97
117
|
export const MANIFESTS_BY_MODE_SCHEMA = z.record(z.string(), MANIFEST_SCHEMA);
|
|
98
118
|
export const getManifestContract = buildGetRoute({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"manifestContracts.js","sourceRoot":"","sources":["../../src/contracts/manifestContracts.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAA;AACvD,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAA;AAC1B,OAAO,EACL,kCAAkC,EAClC,0CAA0C,GAC3C,MAAM,oBAAoB,CAAA;AAE3B,MAAM,CAAC,MAAM,6BAA6B,GAAG,CAAC,CAAC,MAAM,CAAC;IACpD,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAA;AAGF,MAAM,kBAAkB,GAAG,CAAC,CAAC,MAAM,CAAC;IAClC,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;CAClB,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,oBAAoB,GAAG,kBAAkB,CAAC,MAAM,CAAC;IAC5D,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC;CAC1B,CAAC,CAAA;AACF,MAAM,CAAC,MAAM,yBAAyB,GAAG,kBAAkB,CAAC,MAAM,CAAC;IACjE,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,aAAa,CAAC;IAC9B,OAAO,EAAE,CAAC,CAAC,KAAK,CAAC,6BAA6B,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;IACtD,YAAY,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;CAC7C,CAAC,CAAA;AACF,MAAM,CAAC,MAAM,oBAAoB,GAAG,kBAAkB,CAAC,MAAM,CAAC;IAC5D,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC;IACzB,OAAO,EAAE,CAAC,CAAC,KAAK,CAAC,6BAA6B,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;IACtD,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACpC,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,0BAA0B,GAAG,kBAAkB,CAAC,MAAM,CAAC;IAClE,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,cAAc,CAAC;IAC/B,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACtC,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACjC,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,+BAA+B,GAAG,kBAAkB,CAAC,MAAM,CAAC;IACvE,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,mBAAmB,CAAC;IACpC,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACtC,YAAY,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;IAC5C,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACjC,CAAC,CAAA;AACF,MAAM,CAAC,MAAM,uBAAuB,GAAG,kBAAkB,CAAC,MAAM,CAAC;IAC/D,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,WAAW,CAAC;IAC5B,YAAY,EAAE,CAAC;SACZ,MAAM,CAAC;QACN,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;QAChB,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;KACf,CAAC;SACD,QAAQ,EAAE;CACd,CAAC,CAAA;AACF,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,CAAC,kBAAkB,CAAC,MAAM,EAAE;IACjE,oBAAoB;IACpB,yBAAyB;IACzB,+BAA+B;IAC/B,oBAAoB;IACpB,0BAA0B;IAC1B,uBAAuB;CACxB,CAAC,CAAA;
|
|
1
|
+
{"version":3,"file":"manifestContracts.js","sourceRoot":"","sources":["../../src/contracts/manifestContracts.ts"],"names":[],"mappings":"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"}
|