@perses-dev/core 0.51.0-beta.0 → 0.51.0-rc.0
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/model/index.js +1 -0
- package/dist/cjs/model/otlp/common/v1/common.js +17 -0
- package/dist/cjs/model/otlp/index.js +77 -0
- package/dist/cjs/model/otlp/resource/v1/resource.js +16 -0
- package/dist/cjs/model/otlp/trace/v1/trace.js +36 -0
- package/dist/cjs/model/trace-data.js +4 -23
- package/dist/cjs/model/units/time.js +3 -3
- package/dist/cjs/schema/secret.js +38 -1
- package/dist/model/index.d.ts +1 -0
- package/dist/model/index.d.ts.map +1 -1
- package/dist/model/index.js +1 -0
- package/dist/model/index.js.map +1 -1
- package/dist/model/otlp/common/v1/common.d.ts +19 -0
- package/dist/model/otlp/common/v1/common.d.ts.map +1 -0
- package/dist/model/otlp/common/v1/common.js +16 -0
- package/dist/model/otlp/common/v1/common.js.map +1 -0
- package/dist/model/otlp/index.d.ts +4 -0
- package/dist/model/otlp/index.d.ts.map +1 -0
- package/dist/model/otlp/index.js +17 -0
- package/dist/model/otlp/index.js.map +1 -0
- package/dist/model/otlp/resource/v1/resource.d.ts +5 -0
- package/dist/model/otlp/resource/v1/resource.d.ts.map +1 -0
- package/dist/model/otlp/resource/v1/resource.js +16 -0
- package/dist/model/otlp/resource/v1/resource.js.map +1 -0
- package/dist/model/otlp/trace/v1/trace.d.ts +38 -0
- package/dist/model/otlp/trace/v1/trace.d.ts.map +1 -0
- package/dist/model/otlp/trace/v1/trace.js +17 -0
- package/dist/model/otlp/trace/v1/trace.js.map +1 -0
- package/dist/model/secrets.d.ts +11 -1
- package/dist/model/secrets.d.ts.map +1 -1
- package/dist/model/secrets.js.map +1 -1
- package/dist/model/time-series-data.d.ts +2 -2
- package/dist/model/time-series-data.d.ts.map +1 -1
- package/dist/model/time-series-data.js.map +1 -1
- package/dist/model/time-series-queries.d.ts +7 -0
- package/dist/model/time-series-queries.d.ts.map +1 -1
- package/dist/model/time-series-queries.js.map +1 -1
- package/dist/model/time.js.map +1 -1
- package/dist/model/trace-data.d.ts +2 -61
- package/dist/model/trace-data.d.ts.map +1 -1
- package/dist/model/trace-data.js +0 -5
- package/dist/model/trace-data.js.map +1 -1
- package/dist/model/units/time.js +5 -3
- package/dist/model/units/time.js.map +1 -1
- package/dist/model/units/types.d.ts +1 -0
- package/dist/model/units/types.d.ts.map +1 -1
- package/dist/model/units/types.js.map +1 -1
- package/dist/model/units/units.js.map +1 -1
- package/dist/schema/secret.d.ts +457 -0
- package/dist/schema/secret.d.ts.map +1 -1
- package/dist/schema/secret.js +38 -1
- package/dist/schema/secret.js.map +1 -1
- package/dist/utils/fetch.js.map +1 -1
- package/dist/utils/panel-refs.js.map +1 -1
- package/dist/utils/regexp.js.map +1 -1
- package/dist/utils/text.js.map +1 -1
- package/package.json +5 -2
package/dist/schema/secret.d.ts
CHANGED
|
@@ -42,6 +42,47 @@ export declare const secretSpecSchema: z.ZodEffects<z.ZodObject<{
|
|
|
42
42
|
credentials?: string | undefined;
|
|
43
43
|
credentialsFile?: string | undefined;
|
|
44
44
|
}>>;
|
|
45
|
+
oauth: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
46
|
+
clientID: z.ZodString;
|
|
47
|
+
clientSecret: z.ZodOptional<z.ZodString>;
|
|
48
|
+
clientSecretFile: z.ZodOptional<z.ZodString>;
|
|
49
|
+
tokenURL: z.ZodString;
|
|
50
|
+
scopes: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
51
|
+
endpointParams: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>>;
|
|
52
|
+
authStyle: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>, z.ZodLiteral<2>]>>;
|
|
53
|
+
}, "strip", z.ZodTypeAny, {
|
|
54
|
+
scopes: string[];
|
|
55
|
+
clientID: string;
|
|
56
|
+
tokenURL: string;
|
|
57
|
+
clientSecret?: string | undefined;
|
|
58
|
+
clientSecretFile?: string | undefined;
|
|
59
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
60
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
61
|
+
}, {
|
|
62
|
+
clientID: string;
|
|
63
|
+
tokenURL: string;
|
|
64
|
+
scopes?: string[] | undefined;
|
|
65
|
+
clientSecret?: string | undefined;
|
|
66
|
+
clientSecretFile?: string | undefined;
|
|
67
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
68
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
69
|
+
}>, {
|
|
70
|
+
scopes: string[];
|
|
71
|
+
clientID: string;
|
|
72
|
+
tokenURL: string;
|
|
73
|
+
clientSecret?: string | undefined;
|
|
74
|
+
clientSecretFile?: string | undefined;
|
|
75
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
76
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
77
|
+
}, {
|
|
78
|
+
clientID: string;
|
|
79
|
+
tokenURL: string;
|
|
80
|
+
scopes?: string[] | undefined;
|
|
81
|
+
clientSecret?: string | undefined;
|
|
82
|
+
clientSecretFile?: string | undefined;
|
|
83
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
84
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
85
|
+
}>>;
|
|
45
86
|
tlsConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
46
87
|
ca: z.ZodOptional<z.ZodString>;
|
|
47
88
|
cert: z.ZodOptional<z.ZodString>;
|
|
@@ -99,6 +140,15 @@ export declare const secretSpecSchema: z.ZodEffects<z.ZodObject<{
|
|
|
99
140
|
credentials?: string | undefined;
|
|
100
141
|
credentialsFile?: string | undefined;
|
|
101
142
|
} | undefined;
|
|
143
|
+
oauth?: {
|
|
144
|
+
scopes: string[];
|
|
145
|
+
clientID: string;
|
|
146
|
+
tokenURL: string;
|
|
147
|
+
clientSecret?: string | undefined;
|
|
148
|
+
clientSecretFile?: string | undefined;
|
|
149
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
150
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
151
|
+
} | undefined;
|
|
102
152
|
tlsConfig?: {
|
|
103
153
|
insecureSkipVerify: boolean;
|
|
104
154
|
ca?: string | undefined;
|
|
@@ -120,6 +170,15 @@ export declare const secretSpecSchema: z.ZodEffects<z.ZodObject<{
|
|
|
120
170
|
credentials?: string | undefined;
|
|
121
171
|
credentialsFile?: string | undefined;
|
|
122
172
|
} | undefined;
|
|
173
|
+
oauth?: {
|
|
174
|
+
clientID: string;
|
|
175
|
+
tokenURL: string;
|
|
176
|
+
scopes?: string[] | undefined;
|
|
177
|
+
clientSecret?: string | undefined;
|
|
178
|
+
clientSecretFile?: string | undefined;
|
|
179
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
180
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
181
|
+
} | undefined;
|
|
123
182
|
tlsConfig?: {
|
|
124
183
|
insecureSkipVerify: boolean;
|
|
125
184
|
ca?: string | undefined;
|
|
@@ -141,6 +200,15 @@ export declare const secretSpecSchema: z.ZodEffects<z.ZodObject<{
|
|
|
141
200
|
credentials?: string | undefined;
|
|
142
201
|
credentialsFile?: string | undefined;
|
|
143
202
|
} | undefined;
|
|
203
|
+
oauth?: {
|
|
204
|
+
scopes: string[];
|
|
205
|
+
clientID: string;
|
|
206
|
+
tokenURL: string;
|
|
207
|
+
clientSecret?: string | undefined;
|
|
208
|
+
clientSecretFile?: string | undefined;
|
|
209
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
210
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
211
|
+
} | undefined;
|
|
144
212
|
tlsConfig?: {
|
|
145
213
|
insecureSkipVerify: boolean;
|
|
146
214
|
ca?: string | undefined;
|
|
@@ -162,6 +230,15 @@ export declare const secretSpecSchema: z.ZodEffects<z.ZodObject<{
|
|
|
162
230
|
credentials?: string | undefined;
|
|
163
231
|
credentialsFile?: string | undefined;
|
|
164
232
|
} | undefined;
|
|
233
|
+
oauth?: {
|
|
234
|
+
clientID: string;
|
|
235
|
+
tokenURL: string;
|
|
236
|
+
scopes?: string[] | undefined;
|
|
237
|
+
clientSecret?: string | undefined;
|
|
238
|
+
clientSecretFile?: string | undefined;
|
|
239
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
240
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
241
|
+
} | undefined;
|
|
165
242
|
tlsConfig?: {
|
|
166
243
|
insecureSkipVerify: boolean;
|
|
167
244
|
ca?: string | undefined;
|
|
@@ -229,6 +306,47 @@ export declare const secretSchema: z.ZodObject<{
|
|
|
229
306
|
credentials?: string | undefined;
|
|
230
307
|
credentialsFile?: string | undefined;
|
|
231
308
|
}>>;
|
|
309
|
+
oauth: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
310
|
+
clientID: z.ZodString;
|
|
311
|
+
clientSecret: z.ZodOptional<z.ZodString>;
|
|
312
|
+
clientSecretFile: z.ZodOptional<z.ZodString>;
|
|
313
|
+
tokenURL: z.ZodString;
|
|
314
|
+
scopes: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
315
|
+
endpointParams: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>>;
|
|
316
|
+
authStyle: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>, z.ZodLiteral<2>]>>;
|
|
317
|
+
}, "strip", z.ZodTypeAny, {
|
|
318
|
+
scopes: string[];
|
|
319
|
+
clientID: string;
|
|
320
|
+
tokenURL: string;
|
|
321
|
+
clientSecret?: string | undefined;
|
|
322
|
+
clientSecretFile?: string | undefined;
|
|
323
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
324
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
325
|
+
}, {
|
|
326
|
+
clientID: string;
|
|
327
|
+
tokenURL: string;
|
|
328
|
+
scopes?: string[] | undefined;
|
|
329
|
+
clientSecret?: string | undefined;
|
|
330
|
+
clientSecretFile?: string | undefined;
|
|
331
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
332
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
333
|
+
}>, {
|
|
334
|
+
scopes: string[];
|
|
335
|
+
clientID: string;
|
|
336
|
+
tokenURL: string;
|
|
337
|
+
clientSecret?: string | undefined;
|
|
338
|
+
clientSecretFile?: string | undefined;
|
|
339
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
340
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
341
|
+
}, {
|
|
342
|
+
clientID: string;
|
|
343
|
+
tokenURL: string;
|
|
344
|
+
scopes?: string[] | undefined;
|
|
345
|
+
clientSecret?: string | undefined;
|
|
346
|
+
clientSecretFile?: string | undefined;
|
|
347
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
348
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
349
|
+
}>>;
|
|
232
350
|
tlsConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
233
351
|
ca: z.ZodOptional<z.ZodString>;
|
|
234
352
|
cert: z.ZodOptional<z.ZodString>;
|
|
@@ -286,6 +404,15 @@ export declare const secretSchema: z.ZodObject<{
|
|
|
286
404
|
credentials?: string | undefined;
|
|
287
405
|
credentialsFile?: string | undefined;
|
|
288
406
|
} | undefined;
|
|
407
|
+
oauth?: {
|
|
408
|
+
scopes: string[];
|
|
409
|
+
clientID: string;
|
|
410
|
+
tokenURL: string;
|
|
411
|
+
clientSecret?: string | undefined;
|
|
412
|
+
clientSecretFile?: string | undefined;
|
|
413
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
414
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
415
|
+
} | undefined;
|
|
289
416
|
tlsConfig?: {
|
|
290
417
|
insecureSkipVerify: boolean;
|
|
291
418
|
ca?: string | undefined;
|
|
@@ -307,6 +434,15 @@ export declare const secretSchema: z.ZodObject<{
|
|
|
307
434
|
credentials?: string | undefined;
|
|
308
435
|
credentialsFile?: string | undefined;
|
|
309
436
|
} | undefined;
|
|
437
|
+
oauth?: {
|
|
438
|
+
clientID: string;
|
|
439
|
+
tokenURL: string;
|
|
440
|
+
scopes?: string[] | undefined;
|
|
441
|
+
clientSecret?: string | undefined;
|
|
442
|
+
clientSecretFile?: string | undefined;
|
|
443
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
444
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
445
|
+
} | undefined;
|
|
310
446
|
tlsConfig?: {
|
|
311
447
|
insecureSkipVerify: boolean;
|
|
312
448
|
ca?: string | undefined;
|
|
@@ -328,6 +464,15 @@ export declare const secretSchema: z.ZodObject<{
|
|
|
328
464
|
credentials?: string | undefined;
|
|
329
465
|
credentialsFile?: string | undefined;
|
|
330
466
|
} | undefined;
|
|
467
|
+
oauth?: {
|
|
468
|
+
scopes: string[];
|
|
469
|
+
clientID: string;
|
|
470
|
+
tokenURL: string;
|
|
471
|
+
clientSecret?: string | undefined;
|
|
472
|
+
clientSecretFile?: string | undefined;
|
|
473
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
474
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
475
|
+
} | undefined;
|
|
331
476
|
tlsConfig?: {
|
|
332
477
|
insecureSkipVerify: boolean;
|
|
333
478
|
ca?: string | undefined;
|
|
@@ -349,6 +494,15 @@ export declare const secretSchema: z.ZodObject<{
|
|
|
349
494
|
credentials?: string | undefined;
|
|
350
495
|
credentialsFile?: string | undefined;
|
|
351
496
|
} | undefined;
|
|
497
|
+
oauth?: {
|
|
498
|
+
clientID: string;
|
|
499
|
+
tokenURL: string;
|
|
500
|
+
scopes?: string[] | undefined;
|
|
501
|
+
clientSecret?: string | undefined;
|
|
502
|
+
clientSecretFile?: string | undefined;
|
|
503
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
504
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
505
|
+
} | undefined;
|
|
352
506
|
tlsConfig?: {
|
|
353
507
|
insecureSkipVerify: boolean;
|
|
354
508
|
ca?: string | undefined;
|
|
@@ -373,6 +527,15 @@ export declare const secretSchema: z.ZodObject<{
|
|
|
373
527
|
credentials?: string | undefined;
|
|
374
528
|
credentialsFile?: string | undefined;
|
|
375
529
|
} | undefined;
|
|
530
|
+
oauth?: {
|
|
531
|
+
scopes: string[];
|
|
532
|
+
clientID: string;
|
|
533
|
+
tokenURL: string;
|
|
534
|
+
clientSecret?: string | undefined;
|
|
535
|
+
clientSecretFile?: string | undefined;
|
|
536
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
537
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
538
|
+
} | undefined;
|
|
376
539
|
tlsConfig?: {
|
|
377
540
|
insecureSkipVerify: boolean;
|
|
378
541
|
ca?: string | undefined;
|
|
@@ -401,6 +564,15 @@ export declare const secretSchema: z.ZodObject<{
|
|
|
401
564
|
credentials?: string | undefined;
|
|
402
565
|
credentialsFile?: string | undefined;
|
|
403
566
|
} | undefined;
|
|
567
|
+
oauth?: {
|
|
568
|
+
clientID: string;
|
|
569
|
+
tokenURL: string;
|
|
570
|
+
scopes?: string[] | undefined;
|
|
571
|
+
clientSecret?: string | undefined;
|
|
572
|
+
clientSecretFile?: string | undefined;
|
|
573
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
574
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
575
|
+
} | undefined;
|
|
404
576
|
tlsConfig?: {
|
|
405
577
|
insecureSkipVerify: boolean;
|
|
406
578
|
ca?: string | undefined;
|
|
@@ -469,6 +641,47 @@ export declare const globalSecretSchema: z.ZodObject<{
|
|
|
469
641
|
credentials?: string | undefined;
|
|
470
642
|
credentialsFile?: string | undefined;
|
|
471
643
|
}>>;
|
|
644
|
+
oauth: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
645
|
+
clientID: z.ZodString;
|
|
646
|
+
clientSecret: z.ZodOptional<z.ZodString>;
|
|
647
|
+
clientSecretFile: z.ZodOptional<z.ZodString>;
|
|
648
|
+
tokenURL: z.ZodString;
|
|
649
|
+
scopes: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
650
|
+
endpointParams: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>>;
|
|
651
|
+
authStyle: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>, z.ZodLiteral<2>]>>;
|
|
652
|
+
}, "strip", z.ZodTypeAny, {
|
|
653
|
+
scopes: string[];
|
|
654
|
+
clientID: string;
|
|
655
|
+
tokenURL: string;
|
|
656
|
+
clientSecret?: string | undefined;
|
|
657
|
+
clientSecretFile?: string | undefined;
|
|
658
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
659
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
660
|
+
}, {
|
|
661
|
+
clientID: string;
|
|
662
|
+
tokenURL: string;
|
|
663
|
+
scopes?: string[] | undefined;
|
|
664
|
+
clientSecret?: string | undefined;
|
|
665
|
+
clientSecretFile?: string | undefined;
|
|
666
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
667
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
668
|
+
}>, {
|
|
669
|
+
scopes: string[];
|
|
670
|
+
clientID: string;
|
|
671
|
+
tokenURL: string;
|
|
672
|
+
clientSecret?: string | undefined;
|
|
673
|
+
clientSecretFile?: string | undefined;
|
|
674
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
675
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
676
|
+
}, {
|
|
677
|
+
clientID: string;
|
|
678
|
+
tokenURL: string;
|
|
679
|
+
scopes?: string[] | undefined;
|
|
680
|
+
clientSecret?: string | undefined;
|
|
681
|
+
clientSecretFile?: string | undefined;
|
|
682
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
683
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
684
|
+
}>>;
|
|
472
685
|
tlsConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
473
686
|
ca: z.ZodOptional<z.ZodString>;
|
|
474
687
|
cert: z.ZodOptional<z.ZodString>;
|
|
@@ -526,6 +739,15 @@ export declare const globalSecretSchema: z.ZodObject<{
|
|
|
526
739
|
credentials?: string | undefined;
|
|
527
740
|
credentialsFile?: string | undefined;
|
|
528
741
|
} | undefined;
|
|
742
|
+
oauth?: {
|
|
743
|
+
scopes: string[];
|
|
744
|
+
clientID: string;
|
|
745
|
+
tokenURL: string;
|
|
746
|
+
clientSecret?: string | undefined;
|
|
747
|
+
clientSecretFile?: string | undefined;
|
|
748
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
749
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
750
|
+
} | undefined;
|
|
529
751
|
tlsConfig?: {
|
|
530
752
|
insecureSkipVerify: boolean;
|
|
531
753
|
ca?: string | undefined;
|
|
@@ -547,6 +769,15 @@ export declare const globalSecretSchema: z.ZodObject<{
|
|
|
547
769
|
credentials?: string | undefined;
|
|
548
770
|
credentialsFile?: string | undefined;
|
|
549
771
|
} | undefined;
|
|
772
|
+
oauth?: {
|
|
773
|
+
clientID: string;
|
|
774
|
+
tokenURL: string;
|
|
775
|
+
scopes?: string[] | undefined;
|
|
776
|
+
clientSecret?: string | undefined;
|
|
777
|
+
clientSecretFile?: string | undefined;
|
|
778
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
779
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
780
|
+
} | undefined;
|
|
550
781
|
tlsConfig?: {
|
|
551
782
|
insecureSkipVerify: boolean;
|
|
552
783
|
ca?: string | undefined;
|
|
@@ -568,6 +799,15 @@ export declare const globalSecretSchema: z.ZodObject<{
|
|
|
568
799
|
credentials?: string | undefined;
|
|
569
800
|
credentialsFile?: string | undefined;
|
|
570
801
|
} | undefined;
|
|
802
|
+
oauth?: {
|
|
803
|
+
scopes: string[];
|
|
804
|
+
clientID: string;
|
|
805
|
+
tokenURL: string;
|
|
806
|
+
clientSecret?: string | undefined;
|
|
807
|
+
clientSecretFile?: string | undefined;
|
|
808
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
809
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
810
|
+
} | undefined;
|
|
571
811
|
tlsConfig?: {
|
|
572
812
|
insecureSkipVerify: boolean;
|
|
573
813
|
ca?: string | undefined;
|
|
@@ -589,6 +829,15 @@ export declare const globalSecretSchema: z.ZodObject<{
|
|
|
589
829
|
credentials?: string | undefined;
|
|
590
830
|
credentialsFile?: string | undefined;
|
|
591
831
|
} | undefined;
|
|
832
|
+
oauth?: {
|
|
833
|
+
clientID: string;
|
|
834
|
+
tokenURL: string;
|
|
835
|
+
scopes?: string[] | undefined;
|
|
836
|
+
clientSecret?: string | undefined;
|
|
837
|
+
clientSecretFile?: string | undefined;
|
|
838
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
839
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
840
|
+
} | undefined;
|
|
592
841
|
tlsConfig?: {
|
|
593
842
|
insecureSkipVerify: boolean;
|
|
594
843
|
ca?: string | undefined;
|
|
@@ -613,6 +862,15 @@ export declare const globalSecretSchema: z.ZodObject<{
|
|
|
613
862
|
credentials?: string | undefined;
|
|
614
863
|
credentialsFile?: string | undefined;
|
|
615
864
|
} | undefined;
|
|
865
|
+
oauth?: {
|
|
866
|
+
scopes: string[];
|
|
867
|
+
clientID: string;
|
|
868
|
+
tokenURL: string;
|
|
869
|
+
clientSecret?: string | undefined;
|
|
870
|
+
clientSecretFile?: string | undefined;
|
|
871
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
872
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
873
|
+
} | undefined;
|
|
616
874
|
tlsConfig?: {
|
|
617
875
|
insecureSkipVerify: boolean;
|
|
618
876
|
ca?: string | undefined;
|
|
@@ -640,6 +898,15 @@ export declare const globalSecretSchema: z.ZodObject<{
|
|
|
640
898
|
credentials?: string | undefined;
|
|
641
899
|
credentialsFile?: string | undefined;
|
|
642
900
|
} | undefined;
|
|
901
|
+
oauth?: {
|
|
902
|
+
clientID: string;
|
|
903
|
+
tokenURL: string;
|
|
904
|
+
scopes?: string[] | undefined;
|
|
905
|
+
clientSecret?: string | undefined;
|
|
906
|
+
clientSecretFile?: string | undefined;
|
|
907
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
908
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
909
|
+
} | undefined;
|
|
643
910
|
tlsConfig?: {
|
|
644
911
|
insecureSkipVerify: boolean;
|
|
645
912
|
ca?: string | undefined;
|
|
@@ -711,6 +978,47 @@ export declare const secretsEditorSchema: z.ZodDiscriminatedUnion<"kind", [z.Zod
|
|
|
711
978
|
credentials?: string | undefined;
|
|
712
979
|
credentialsFile?: string | undefined;
|
|
713
980
|
}>>;
|
|
981
|
+
oauth: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
982
|
+
clientID: z.ZodString;
|
|
983
|
+
clientSecret: z.ZodOptional<z.ZodString>;
|
|
984
|
+
clientSecretFile: z.ZodOptional<z.ZodString>;
|
|
985
|
+
tokenURL: z.ZodString;
|
|
986
|
+
scopes: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
987
|
+
endpointParams: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>>;
|
|
988
|
+
authStyle: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>, z.ZodLiteral<2>]>>;
|
|
989
|
+
}, "strip", z.ZodTypeAny, {
|
|
990
|
+
scopes: string[];
|
|
991
|
+
clientID: string;
|
|
992
|
+
tokenURL: string;
|
|
993
|
+
clientSecret?: string | undefined;
|
|
994
|
+
clientSecretFile?: string | undefined;
|
|
995
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
996
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
997
|
+
}, {
|
|
998
|
+
clientID: string;
|
|
999
|
+
tokenURL: string;
|
|
1000
|
+
scopes?: string[] | undefined;
|
|
1001
|
+
clientSecret?: string | undefined;
|
|
1002
|
+
clientSecretFile?: string | undefined;
|
|
1003
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
1004
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
1005
|
+
}>, {
|
|
1006
|
+
scopes: string[];
|
|
1007
|
+
clientID: string;
|
|
1008
|
+
tokenURL: string;
|
|
1009
|
+
clientSecret?: string | undefined;
|
|
1010
|
+
clientSecretFile?: string | undefined;
|
|
1011
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
1012
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
1013
|
+
}, {
|
|
1014
|
+
clientID: string;
|
|
1015
|
+
tokenURL: string;
|
|
1016
|
+
scopes?: string[] | undefined;
|
|
1017
|
+
clientSecret?: string | undefined;
|
|
1018
|
+
clientSecretFile?: string | undefined;
|
|
1019
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
1020
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
1021
|
+
}>>;
|
|
714
1022
|
tlsConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
715
1023
|
ca: z.ZodOptional<z.ZodString>;
|
|
716
1024
|
cert: z.ZodOptional<z.ZodString>;
|
|
@@ -768,6 +1076,15 @@ export declare const secretsEditorSchema: z.ZodDiscriminatedUnion<"kind", [z.Zod
|
|
|
768
1076
|
credentials?: string | undefined;
|
|
769
1077
|
credentialsFile?: string | undefined;
|
|
770
1078
|
} | undefined;
|
|
1079
|
+
oauth?: {
|
|
1080
|
+
scopes: string[];
|
|
1081
|
+
clientID: string;
|
|
1082
|
+
tokenURL: string;
|
|
1083
|
+
clientSecret?: string | undefined;
|
|
1084
|
+
clientSecretFile?: string | undefined;
|
|
1085
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
1086
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
1087
|
+
} | undefined;
|
|
771
1088
|
tlsConfig?: {
|
|
772
1089
|
insecureSkipVerify: boolean;
|
|
773
1090
|
ca?: string | undefined;
|
|
@@ -789,6 +1106,15 @@ export declare const secretsEditorSchema: z.ZodDiscriminatedUnion<"kind", [z.Zod
|
|
|
789
1106
|
credentials?: string | undefined;
|
|
790
1107
|
credentialsFile?: string | undefined;
|
|
791
1108
|
} | undefined;
|
|
1109
|
+
oauth?: {
|
|
1110
|
+
clientID: string;
|
|
1111
|
+
tokenURL: string;
|
|
1112
|
+
scopes?: string[] | undefined;
|
|
1113
|
+
clientSecret?: string | undefined;
|
|
1114
|
+
clientSecretFile?: string | undefined;
|
|
1115
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
1116
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
1117
|
+
} | undefined;
|
|
792
1118
|
tlsConfig?: {
|
|
793
1119
|
insecureSkipVerify: boolean;
|
|
794
1120
|
ca?: string | undefined;
|
|
@@ -810,6 +1136,15 @@ export declare const secretsEditorSchema: z.ZodDiscriminatedUnion<"kind", [z.Zod
|
|
|
810
1136
|
credentials?: string | undefined;
|
|
811
1137
|
credentialsFile?: string | undefined;
|
|
812
1138
|
} | undefined;
|
|
1139
|
+
oauth?: {
|
|
1140
|
+
scopes: string[];
|
|
1141
|
+
clientID: string;
|
|
1142
|
+
tokenURL: string;
|
|
1143
|
+
clientSecret?: string | undefined;
|
|
1144
|
+
clientSecretFile?: string | undefined;
|
|
1145
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
1146
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
1147
|
+
} | undefined;
|
|
813
1148
|
tlsConfig?: {
|
|
814
1149
|
insecureSkipVerify: boolean;
|
|
815
1150
|
ca?: string | undefined;
|
|
@@ -831,6 +1166,15 @@ export declare const secretsEditorSchema: z.ZodDiscriminatedUnion<"kind", [z.Zod
|
|
|
831
1166
|
credentials?: string | undefined;
|
|
832
1167
|
credentialsFile?: string | undefined;
|
|
833
1168
|
} | undefined;
|
|
1169
|
+
oauth?: {
|
|
1170
|
+
clientID: string;
|
|
1171
|
+
tokenURL: string;
|
|
1172
|
+
scopes?: string[] | undefined;
|
|
1173
|
+
clientSecret?: string | undefined;
|
|
1174
|
+
clientSecretFile?: string | undefined;
|
|
1175
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
1176
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
1177
|
+
} | undefined;
|
|
834
1178
|
tlsConfig?: {
|
|
835
1179
|
insecureSkipVerify: boolean;
|
|
836
1180
|
ca?: string | undefined;
|
|
@@ -855,6 +1199,15 @@ export declare const secretsEditorSchema: z.ZodDiscriminatedUnion<"kind", [z.Zod
|
|
|
855
1199
|
credentials?: string | undefined;
|
|
856
1200
|
credentialsFile?: string | undefined;
|
|
857
1201
|
} | undefined;
|
|
1202
|
+
oauth?: {
|
|
1203
|
+
scopes: string[];
|
|
1204
|
+
clientID: string;
|
|
1205
|
+
tokenURL: string;
|
|
1206
|
+
clientSecret?: string | undefined;
|
|
1207
|
+
clientSecretFile?: string | undefined;
|
|
1208
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
1209
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
1210
|
+
} | undefined;
|
|
858
1211
|
tlsConfig?: {
|
|
859
1212
|
insecureSkipVerify: boolean;
|
|
860
1213
|
ca?: string | undefined;
|
|
@@ -883,6 +1236,15 @@ export declare const secretsEditorSchema: z.ZodDiscriminatedUnion<"kind", [z.Zod
|
|
|
883
1236
|
credentials?: string | undefined;
|
|
884
1237
|
credentialsFile?: string | undefined;
|
|
885
1238
|
} | undefined;
|
|
1239
|
+
oauth?: {
|
|
1240
|
+
clientID: string;
|
|
1241
|
+
tokenURL: string;
|
|
1242
|
+
scopes?: string[] | undefined;
|
|
1243
|
+
clientSecret?: string | undefined;
|
|
1244
|
+
clientSecretFile?: string | undefined;
|
|
1245
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
1246
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
1247
|
+
} | undefined;
|
|
886
1248
|
tlsConfig?: {
|
|
887
1249
|
insecureSkipVerify: boolean;
|
|
888
1250
|
ca?: string | undefined;
|
|
@@ -950,6 +1312,47 @@ export declare const secretsEditorSchema: z.ZodDiscriminatedUnion<"kind", [z.Zod
|
|
|
950
1312
|
credentials?: string | undefined;
|
|
951
1313
|
credentialsFile?: string | undefined;
|
|
952
1314
|
}>>;
|
|
1315
|
+
oauth: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
1316
|
+
clientID: z.ZodString;
|
|
1317
|
+
clientSecret: z.ZodOptional<z.ZodString>;
|
|
1318
|
+
clientSecretFile: z.ZodOptional<z.ZodString>;
|
|
1319
|
+
tokenURL: z.ZodString;
|
|
1320
|
+
scopes: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1321
|
+
endpointParams: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>>;
|
|
1322
|
+
authStyle: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>, z.ZodLiteral<2>]>>;
|
|
1323
|
+
}, "strip", z.ZodTypeAny, {
|
|
1324
|
+
scopes: string[];
|
|
1325
|
+
clientID: string;
|
|
1326
|
+
tokenURL: string;
|
|
1327
|
+
clientSecret?: string | undefined;
|
|
1328
|
+
clientSecretFile?: string | undefined;
|
|
1329
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
1330
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
1331
|
+
}, {
|
|
1332
|
+
clientID: string;
|
|
1333
|
+
tokenURL: string;
|
|
1334
|
+
scopes?: string[] | undefined;
|
|
1335
|
+
clientSecret?: string | undefined;
|
|
1336
|
+
clientSecretFile?: string | undefined;
|
|
1337
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
1338
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
1339
|
+
}>, {
|
|
1340
|
+
scopes: string[];
|
|
1341
|
+
clientID: string;
|
|
1342
|
+
tokenURL: string;
|
|
1343
|
+
clientSecret?: string | undefined;
|
|
1344
|
+
clientSecretFile?: string | undefined;
|
|
1345
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
1346
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
1347
|
+
}, {
|
|
1348
|
+
clientID: string;
|
|
1349
|
+
tokenURL: string;
|
|
1350
|
+
scopes?: string[] | undefined;
|
|
1351
|
+
clientSecret?: string | undefined;
|
|
1352
|
+
clientSecretFile?: string | undefined;
|
|
1353
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
1354
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
1355
|
+
}>>;
|
|
953
1356
|
tlsConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
954
1357
|
ca: z.ZodOptional<z.ZodString>;
|
|
955
1358
|
cert: z.ZodOptional<z.ZodString>;
|
|
@@ -1007,6 +1410,15 @@ export declare const secretsEditorSchema: z.ZodDiscriminatedUnion<"kind", [z.Zod
|
|
|
1007
1410
|
credentials?: string | undefined;
|
|
1008
1411
|
credentialsFile?: string | undefined;
|
|
1009
1412
|
} | undefined;
|
|
1413
|
+
oauth?: {
|
|
1414
|
+
scopes: string[];
|
|
1415
|
+
clientID: string;
|
|
1416
|
+
tokenURL: string;
|
|
1417
|
+
clientSecret?: string | undefined;
|
|
1418
|
+
clientSecretFile?: string | undefined;
|
|
1419
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
1420
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
1421
|
+
} | undefined;
|
|
1010
1422
|
tlsConfig?: {
|
|
1011
1423
|
insecureSkipVerify: boolean;
|
|
1012
1424
|
ca?: string | undefined;
|
|
@@ -1028,6 +1440,15 @@ export declare const secretsEditorSchema: z.ZodDiscriminatedUnion<"kind", [z.Zod
|
|
|
1028
1440
|
credentials?: string | undefined;
|
|
1029
1441
|
credentialsFile?: string | undefined;
|
|
1030
1442
|
} | undefined;
|
|
1443
|
+
oauth?: {
|
|
1444
|
+
clientID: string;
|
|
1445
|
+
tokenURL: string;
|
|
1446
|
+
scopes?: string[] | undefined;
|
|
1447
|
+
clientSecret?: string | undefined;
|
|
1448
|
+
clientSecretFile?: string | undefined;
|
|
1449
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
1450
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
1451
|
+
} | undefined;
|
|
1031
1452
|
tlsConfig?: {
|
|
1032
1453
|
insecureSkipVerify: boolean;
|
|
1033
1454
|
ca?: string | undefined;
|
|
@@ -1049,6 +1470,15 @@ export declare const secretsEditorSchema: z.ZodDiscriminatedUnion<"kind", [z.Zod
|
|
|
1049
1470
|
credentials?: string | undefined;
|
|
1050
1471
|
credentialsFile?: string | undefined;
|
|
1051
1472
|
} | undefined;
|
|
1473
|
+
oauth?: {
|
|
1474
|
+
scopes: string[];
|
|
1475
|
+
clientID: string;
|
|
1476
|
+
tokenURL: string;
|
|
1477
|
+
clientSecret?: string | undefined;
|
|
1478
|
+
clientSecretFile?: string | undefined;
|
|
1479
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
1480
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
1481
|
+
} | undefined;
|
|
1052
1482
|
tlsConfig?: {
|
|
1053
1483
|
insecureSkipVerify: boolean;
|
|
1054
1484
|
ca?: string | undefined;
|
|
@@ -1070,6 +1500,15 @@ export declare const secretsEditorSchema: z.ZodDiscriminatedUnion<"kind", [z.Zod
|
|
|
1070
1500
|
credentials?: string | undefined;
|
|
1071
1501
|
credentialsFile?: string | undefined;
|
|
1072
1502
|
} | undefined;
|
|
1503
|
+
oauth?: {
|
|
1504
|
+
clientID: string;
|
|
1505
|
+
tokenURL: string;
|
|
1506
|
+
scopes?: string[] | undefined;
|
|
1507
|
+
clientSecret?: string | undefined;
|
|
1508
|
+
clientSecretFile?: string | undefined;
|
|
1509
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
1510
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
1511
|
+
} | undefined;
|
|
1073
1512
|
tlsConfig?: {
|
|
1074
1513
|
insecureSkipVerify: boolean;
|
|
1075
1514
|
ca?: string | undefined;
|
|
@@ -1094,6 +1533,15 @@ export declare const secretsEditorSchema: z.ZodDiscriminatedUnion<"kind", [z.Zod
|
|
|
1094
1533
|
credentials?: string | undefined;
|
|
1095
1534
|
credentialsFile?: string | undefined;
|
|
1096
1535
|
} | undefined;
|
|
1536
|
+
oauth?: {
|
|
1537
|
+
scopes: string[];
|
|
1538
|
+
clientID: string;
|
|
1539
|
+
tokenURL: string;
|
|
1540
|
+
clientSecret?: string | undefined;
|
|
1541
|
+
clientSecretFile?: string | undefined;
|
|
1542
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
1543
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
1544
|
+
} | undefined;
|
|
1097
1545
|
tlsConfig?: {
|
|
1098
1546
|
insecureSkipVerify: boolean;
|
|
1099
1547
|
ca?: string | undefined;
|
|
@@ -1121,6 +1569,15 @@ export declare const secretsEditorSchema: z.ZodDiscriminatedUnion<"kind", [z.Zod
|
|
|
1121
1569
|
credentials?: string | undefined;
|
|
1122
1570
|
credentialsFile?: string | undefined;
|
|
1123
1571
|
} | undefined;
|
|
1572
|
+
oauth?: {
|
|
1573
|
+
clientID: string;
|
|
1574
|
+
tokenURL: string;
|
|
1575
|
+
scopes?: string[] | undefined;
|
|
1576
|
+
clientSecret?: string | undefined;
|
|
1577
|
+
clientSecretFile?: string | undefined;
|
|
1578
|
+
endpointParams?: Record<string, string[]> | undefined;
|
|
1579
|
+
authStyle?: 0 | 1 | 2 | undefined;
|
|
1580
|
+
} | undefined;
|
|
1124
1581
|
tlsConfig?: {
|
|
1125
1582
|
insecureSkipVerify: boolean;
|
|
1126
1583
|
ca?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"secret.d.ts","sourceRoot":"","sources":["../../src/schema/secret.ts"],"names":[],"mappings":"AAaA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,gBAAgB
|
|
1
|
+
{"version":3,"file":"secret.d.ts","sourceRoot":"","sources":["../../src/schema/secret.ts"],"names":[],"mappings":"AAaA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiJzB,CAAC;AAEL,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAIvB,CAAC;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAI7B,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAAmE,CAAC;AAEpG,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC"}
|