@powersync/management-types 0.0.0-dev.84a4b832

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.
Files changed (64) hide show
  1. package/LICENSE +67 -0
  2. package/README.md +88 -0
  3. package/dist/config/HostedConfig.d.ts +1318 -0
  4. package/dist/config/HostedConfig.js +101 -0
  5. package/dist/config/HostedConfig.js.map +1 -0
  6. package/dist/config/HostedSecret.d.ts +18 -0
  7. package/dist/config/HostedSecret.js +12 -0
  8. package/dist/config/HostedSecret.js.map +1 -0
  9. package/dist/config/connections/ConnectionType.d.ts +6 -0
  10. package/dist/config/connections/ConnectionType.js +8 -0
  11. package/dist/config/connections/ConnectionType.js.map +1 -0
  12. package/dist/config/connections/HostedDatabaseSourceConfig.d.ts +23 -0
  13. package/dist/config/connections/HostedDatabaseSourceConfig.js +18 -0
  14. package/dist/config/connections/HostedDatabaseSourceConfig.js.map +1 -0
  15. package/dist/config/connections/HostedMSSQLConnection.d.ts +308 -0
  16. package/dist/config/connections/HostedMSSQLConnection.js +41 -0
  17. package/dist/config/connections/HostedMSSQLConnection.js.map +1 -0
  18. package/dist/config/connections/HostedMongoConnection.d.ts +33 -0
  19. package/dist/config/connections/HostedMongoConnection.js +10 -0
  20. package/dist/config/connections/HostedMongoConnection.js.map +1 -0
  21. package/dist/config/connections/HostedMySQLConnection.d.ts +46 -0
  22. package/dist/config/connections/HostedMySQLConnection.js +16 -0
  23. package/dist/config/connections/HostedMySQLConnection.js.map +1 -0
  24. package/dist/config/connections/HostedPostgresConnection.d.ts +52 -0
  25. package/dist/config/connections/HostedPostgresConnection.js +21 -0
  26. package/dist/config/connections/HostedPostgresConnection.js.map +1 -0
  27. package/dist/errors.d.ts +11 -0
  28. package/dist/errors.js +14 -0
  29. package/dist/errors.js.map +1 -0
  30. package/dist/index.d.ts +13 -0
  31. package/dist/index.js +14 -0
  32. package/dist/index.js.map +1 -0
  33. package/dist/routes/dashboard-routes.d.ts +13 -0
  34. package/dist/routes/dashboard-routes.js +16 -0
  35. package/dist/routes/dashboard-routes.js.map +1 -0
  36. package/dist/routes/dev-routes.d.ts +602 -0
  37. package/dist/routes/dev-routes.js +97 -0
  38. package/dist/routes/dev-routes.js.map +1 -0
  39. package/dist/routes/general-routes.d.ts +78 -0
  40. package/dist/routes/general-routes.js +57 -0
  41. package/dist/routes/general-routes.js.map +1 -0
  42. package/dist/routes/index.d.ts +6 -0
  43. package/dist/routes/index.js +7 -0
  44. package/dist/routes/index.js.map +1 -0
  45. package/dist/routes/manage-routes.d.ts +1094 -0
  46. package/dist/routes/manage-routes.js +109 -0
  47. package/dist/routes/manage-routes.js.map +1 -0
  48. package/dist/routes/reporting-routes.d.ts +112 -0
  49. package/dist/routes/reporting-routes.js +61 -0
  50. package/dist/routes/reporting-routes.js.map +1 -0
  51. package/dist/routes/schema.d.ts +131 -0
  52. package/dist/routes/schema.js +71 -0
  53. package/dist/routes/schema.js.map +1 -0
  54. package/dist/scripts/compile-json-schema.d.ts +1 -0
  55. package/dist/scripts/compile-json-schema.js +15 -0
  56. package/dist/scripts/compile-json-schema.js.map +1 -0
  57. package/dist/shared.d.ts +17 -0
  58. package/dist/shared.js +17 -0
  59. package/dist/shared.js.map +1 -0
  60. package/dist/utils/pagination.d.ts +12 -0
  61. package/dist/utils/pagination.js +13 -0
  62. package/dist/utils/pagination.js.map +1 -0
  63. package/json-schema/powersync-config.json +880 -0
  64. package/package.json +43 -0
@@ -0,0 +1,880 @@
1
+ {
2
+ "definitions": {},
3
+ "type": "object",
4
+ "properties": {
5
+ "region": {
6
+ "description": "Deployment region for the hosted service (e.g., \"us\" or \"eu\").",
7
+ "type": "string"
8
+ },
9
+ "replication": {
10
+ "type": "object",
11
+ "properties": {
12
+ "connections": {
13
+ "description": "Array of data source connections used for replication.",
14
+ "type": "array",
15
+ "items": {
16
+ "anyOf": [
17
+ {
18
+ "type": "object",
19
+ "properties": {
20
+ "type": {
21
+ "type": "string",
22
+ "const": "postgresql"
23
+ },
24
+ "name": {
25
+ "type": "string"
26
+ },
27
+ "id": {
28
+ "type": "string"
29
+ },
30
+ "tag": {
31
+ "type": "string"
32
+ },
33
+ "username": {
34
+ "type": "string"
35
+ },
36
+ "password": {
37
+ "anyOf": [
38
+ {
39
+ "type": "object",
40
+ "properties": {
41
+ "secret_ref": {
42
+ "type": "string"
43
+ }
44
+ },
45
+ "additionalProperties": true,
46
+ "required": [
47
+ "secret_ref"
48
+ ]
49
+ },
50
+ {
51
+ "type": "object",
52
+ "properties": {
53
+ "secret": {
54
+ "type": "string"
55
+ }
56
+ },
57
+ "additionalProperties": true,
58
+ "required": [
59
+ "secret"
60
+ ]
61
+ }
62
+ ]
63
+ },
64
+ "database": {
65
+ "type": "string"
66
+ },
67
+ "uri": {
68
+ "type": "string"
69
+ },
70
+ "hostname": {
71
+ "type": "string"
72
+ },
73
+ "port": {
74
+ "type": "number"
75
+ },
76
+ "sslmode": {
77
+ "anyOf": [
78
+ {
79
+ "type": "string",
80
+ "const": "verify-full"
81
+ },
82
+ {
83
+ "type": "string",
84
+ "const": "verify-ca"
85
+ }
86
+ ]
87
+ },
88
+ "cacert": {
89
+ "type": "string"
90
+ },
91
+ "client_certificate": {
92
+ "type": "string"
93
+ },
94
+ "client_private_key": {
95
+ "anyOf": [
96
+ {
97
+ "type": "object",
98
+ "properties": {
99
+ "secret_ref": {
100
+ "type": "string"
101
+ }
102
+ },
103
+ "additionalProperties": true,
104
+ "required": [
105
+ "secret_ref"
106
+ ]
107
+ },
108
+ {
109
+ "type": "object",
110
+ "properties": {
111
+ "secret": {
112
+ "type": "string"
113
+ }
114
+ },
115
+ "additionalProperties": true,
116
+ "required": [
117
+ "secret"
118
+ ]
119
+ }
120
+ ]
121
+ },
122
+ "vpc_endpoint_hostname": {
123
+ "type": "string"
124
+ },
125
+ "debug_api": {
126
+ "type": "boolean"
127
+ }
128
+ },
129
+ "additionalProperties": true,
130
+ "required": [
131
+ "type"
132
+ ]
133
+ },
134
+ {
135
+ "type": "object",
136
+ "properties": {
137
+ "type": {
138
+ "type": "string",
139
+ "const": "mongodb"
140
+ },
141
+ "name": {
142
+ "type": "string"
143
+ },
144
+ "id": {
145
+ "type": "string"
146
+ },
147
+ "tag": {
148
+ "type": "string"
149
+ },
150
+ "username": {
151
+ "type": "string"
152
+ },
153
+ "password": {
154
+ "anyOf": [
155
+ {
156
+ "type": "object",
157
+ "properties": {
158
+ "secret_ref": {
159
+ "type": "string"
160
+ }
161
+ },
162
+ "additionalProperties": true,
163
+ "required": [
164
+ "secret_ref"
165
+ ]
166
+ },
167
+ {
168
+ "type": "object",
169
+ "properties": {
170
+ "secret": {
171
+ "type": "string"
172
+ }
173
+ },
174
+ "additionalProperties": true,
175
+ "required": [
176
+ "secret"
177
+ ]
178
+ }
179
+ ]
180
+ },
181
+ "database": {
182
+ "type": "string"
183
+ },
184
+ "uri": {
185
+ "type": "string"
186
+ },
187
+ "post_images": {
188
+ "anyOf": [
189
+ {
190
+ "type": "string",
191
+ "const": "off"
192
+ },
193
+ {
194
+ "type": "string",
195
+ "const": "auto_configure"
196
+ },
197
+ {
198
+ "type": "string",
199
+ "const": "read_only"
200
+ }
201
+ ]
202
+ },
203
+ "vpc_endpoint_hostname": {
204
+ "type": "string"
205
+ }
206
+ },
207
+ "additionalProperties": true,
208
+ "required": [
209
+ "type",
210
+ "uri"
211
+ ]
212
+ },
213
+ {
214
+ "type": "object",
215
+ "properties": {
216
+ "type": {
217
+ "type": "string",
218
+ "const": "mysql"
219
+ },
220
+ "name": {
221
+ "type": "string"
222
+ },
223
+ "id": {
224
+ "type": "string"
225
+ },
226
+ "tag": {
227
+ "type": "string"
228
+ },
229
+ "username": {
230
+ "type": "string"
231
+ },
232
+ "password": {
233
+ "anyOf": [
234
+ {
235
+ "type": "object",
236
+ "properties": {
237
+ "secret_ref": {
238
+ "type": "string"
239
+ }
240
+ },
241
+ "additionalProperties": true,
242
+ "required": [
243
+ "secret_ref"
244
+ ]
245
+ },
246
+ {
247
+ "type": "object",
248
+ "properties": {
249
+ "secret": {
250
+ "type": "string"
251
+ }
252
+ },
253
+ "additionalProperties": true,
254
+ "required": [
255
+ "secret"
256
+ ]
257
+ }
258
+ ]
259
+ },
260
+ "database": {
261
+ "type": "string"
262
+ },
263
+ "uri": {
264
+ "type": "string"
265
+ },
266
+ "hostname": {
267
+ "type": "string"
268
+ },
269
+ "port": {
270
+ "type": "number"
271
+ },
272
+ "client_certificate": {
273
+ "type": "string"
274
+ },
275
+ "client_private_key": {
276
+ "anyOf": [
277
+ {
278
+ "type": "object",
279
+ "properties": {
280
+ "secret_ref": {
281
+ "type": "string"
282
+ }
283
+ },
284
+ "additionalProperties": true,
285
+ "required": [
286
+ "secret_ref"
287
+ ]
288
+ },
289
+ {
290
+ "type": "object",
291
+ "properties": {
292
+ "secret": {
293
+ "type": "string"
294
+ }
295
+ },
296
+ "additionalProperties": true,
297
+ "required": [
298
+ "secret"
299
+ ]
300
+ }
301
+ ]
302
+ },
303
+ "debug_api": {
304
+ "type": "boolean"
305
+ }
306
+ },
307
+ "additionalProperties": true,
308
+ "required": [
309
+ "type"
310
+ ]
311
+ },
312
+ {
313
+ "type": "object",
314
+ "properties": {
315
+ "type": {
316
+ "type": "string",
317
+ "const": "mssql"
318
+ },
319
+ "name": {
320
+ "type": "string"
321
+ },
322
+ "id": {
323
+ "type": "string"
324
+ },
325
+ "tag": {
326
+ "type": "string"
327
+ },
328
+ "username": {
329
+ "type": "string"
330
+ },
331
+ "password": {
332
+ "anyOf": [
333
+ {
334
+ "type": "object",
335
+ "properties": {
336
+ "secret_ref": {
337
+ "type": "string"
338
+ }
339
+ },
340
+ "additionalProperties": true,
341
+ "required": [
342
+ "secret_ref"
343
+ ]
344
+ },
345
+ {
346
+ "type": "object",
347
+ "properties": {
348
+ "secret": {
349
+ "type": "string"
350
+ }
351
+ },
352
+ "additionalProperties": true,
353
+ "required": [
354
+ "secret"
355
+ ]
356
+ }
357
+ ]
358
+ },
359
+ "database": {
360
+ "type": "string"
361
+ },
362
+ "uri": {
363
+ "type": "string"
364
+ },
365
+ "hostname": {
366
+ "type": "string"
367
+ },
368
+ "port": {
369
+ "type": "number"
370
+ },
371
+ "schema": {
372
+ "type": "string"
373
+ },
374
+ "authentication": {
375
+ "anyOf": [
376
+ {
377
+ "type": "object",
378
+ "properties": {
379
+ "type": {
380
+ "type": "string",
381
+ "const": "default"
382
+ },
383
+ "options": {
384
+ "type": "object",
385
+ "properties": {
386
+ "password": {
387
+ "anyOf": [
388
+ {
389
+ "type": "object",
390
+ "properties": {
391
+ "secret_ref": {
392
+ "type": "string"
393
+ }
394
+ },
395
+ "additionalProperties": true,
396
+ "required": [
397
+ "secret_ref"
398
+ ]
399
+ },
400
+ {
401
+ "type": "object",
402
+ "properties": {
403
+ "secret": {
404
+ "type": "string"
405
+ }
406
+ },
407
+ "additionalProperties": true,
408
+ "required": [
409
+ "secret"
410
+ ]
411
+ }
412
+ ]
413
+ }
414
+ },
415
+ "additionalProperties": true,
416
+ "required": [
417
+ "password"
418
+ ]
419
+ }
420
+ },
421
+ "additionalProperties": true,
422
+ "required": [
423
+ "type",
424
+ "options"
425
+ ]
426
+ },
427
+ {
428
+ "type": "object",
429
+ "properties": {
430
+ "type": {
431
+ "type": "string",
432
+ "const": "azure-active-directory-password"
433
+ },
434
+ "options": {
435
+ "type": "object",
436
+ "properties": {
437
+ "password": {
438
+ "anyOf": [
439
+ {
440
+ "type": "object",
441
+ "properties": {
442
+ "secret_ref": {
443
+ "type": "string"
444
+ }
445
+ },
446
+ "additionalProperties": true,
447
+ "required": [
448
+ "secret_ref"
449
+ ]
450
+ },
451
+ {
452
+ "type": "object",
453
+ "properties": {
454
+ "secret": {
455
+ "type": "string"
456
+ }
457
+ },
458
+ "additionalProperties": true,
459
+ "required": [
460
+ "secret"
461
+ ]
462
+ }
463
+ ]
464
+ }
465
+ },
466
+ "additionalProperties": true,
467
+ "required": [
468
+ "password"
469
+ ]
470
+ }
471
+ },
472
+ "additionalProperties": true,
473
+ "required": [
474
+ "type",
475
+ "options"
476
+ ]
477
+ },
478
+ {
479
+ "type": "object",
480
+ "properties": {
481
+ "type": {
482
+ "type": "string",
483
+ "const": "azure-active-directory-service-principal-secret"
484
+ },
485
+ "options": {
486
+ "type": "object",
487
+ "properties": {
488
+ "clientSecret": {
489
+ "anyOf": [
490
+ {
491
+ "type": "object",
492
+ "properties": {
493
+ "secret_ref": {
494
+ "type": "string"
495
+ }
496
+ },
497
+ "additionalProperties": true,
498
+ "required": [
499
+ "secret_ref"
500
+ ]
501
+ },
502
+ {
503
+ "type": "object",
504
+ "properties": {
505
+ "secret": {
506
+ "type": "string"
507
+ }
508
+ },
509
+ "additionalProperties": true,
510
+ "required": [
511
+ "secret"
512
+ ]
513
+ }
514
+ ]
515
+ }
516
+ },
517
+ "additionalProperties": true,
518
+ "required": [
519
+ "clientSecret"
520
+ ]
521
+ }
522
+ },
523
+ "additionalProperties": true,
524
+ "required": [
525
+ "type",
526
+ "options"
527
+ ]
528
+ }
529
+ ]
530
+ },
531
+ "additionalConfig": {
532
+ "type": "object",
533
+ "properties": {
534
+ "pollingIntervalMs": {
535
+ "type": "number"
536
+ },
537
+ "pollingBatchSize": {
538
+ "type": "number"
539
+ },
540
+ "trustServerCertificate": {
541
+ "type": "boolean"
542
+ }
543
+ },
544
+ "additionalProperties": true,
545
+ "required": []
546
+ },
547
+ "debug_api": {
548
+ "type": "boolean"
549
+ }
550
+ },
551
+ "additionalProperties": true,
552
+ "required": [
553
+ "type"
554
+ ]
555
+ }
556
+ ]
557
+ }
558
+ }
559
+ },
560
+ "additionalProperties": true,
561
+ "required": []
562
+ },
563
+ "client_auth": {
564
+ "type": "object",
565
+ "properties": {
566
+ "jwks_uri": {
567
+ "description": "URI pointing to a JWKS endpoint for client authentication.",
568
+ "type": "string"
569
+ },
570
+ "jwks": {
571
+ "description": "Inline JWKS configuration for client authentication.",
572
+ "type": "object",
573
+ "properties": {
574
+ "keys": {
575
+ "description": "An array of JSON Web Keys (JWKs).",
576
+ "type": "array",
577
+ "items": {
578
+ "anyOf": [
579
+ {
580
+ "description": "JSON Web Key (JWK) representation of an RSA key.",
581
+ "type": "object",
582
+ "properties": {
583
+ "kty": {
584
+ "description": "Key type identifier, must be \"RSA\" for RSA keys.",
585
+ "type": "string",
586
+ "const": "RSA"
587
+ },
588
+ "kid": {
589
+ "description": "Key ID, a unique identifier for the key.",
590
+ "type": "string"
591
+ },
592
+ "n": {
593
+ "description": "RSA modulus, Base64 URL encoded.",
594
+ "type": "string"
595
+ },
596
+ "e": {
597
+ "description": "RSA exponent, Base64 URL encoded.",
598
+ "type": "string"
599
+ },
600
+ "alg": {
601
+ "description": "The algorithm intended for use with this key (RS256, RS384, or RS512).",
602
+ "anyOf": [
603
+ {
604
+ "type": "string",
605
+ "const": "RS256"
606
+ },
607
+ {
608
+ "type": "string",
609
+ "const": "RS384"
610
+ },
611
+ {
612
+ "type": "string",
613
+ "const": "RS512"
614
+ }
615
+ ]
616
+ },
617
+ "use": {
618
+ "description": "The intended use of the key (e.g., \"sig\" for signature).",
619
+ "type": "string"
620
+ }
621
+ },
622
+ "additionalProperties": true,
623
+ "required": [
624
+ "kty",
625
+ "kid",
626
+ "n",
627
+ "e"
628
+ ]
629
+ },
630
+ {
631
+ "type": "object",
632
+ "properties": {
633
+ "kty": {
634
+ "description": "Key type identifier, must be \"oct\" for HMAC keys.",
635
+ "type": "string",
636
+ "const": "oct"
637
+ },
638
+ "kid": {
639
+ "description": "Key ID. Undefined kid indicates it can match any JWT, with or without a kid. Use a kid wherever possible.",
640
+ "type": "string"
641
+ },
642
+ "k": {
643
+ "description": "The HMAC key value, Base64 URL encoded (may be a secret reference).",
644
+ "anyOf": [
645
+ {
646
+ "type": "object",
647
+ "properties": {
648
+ "secret_ref": {
649
+ "type": "string"
650
+ }
651
+ },
652
+ "additionalProperties": true,
653
+ "required": [
654
+ "secret_ref"
655
+ ]
656
+ },
657
+ {
658
+ "type": "object",
659
+ "properties": {
660
+ "secret": {
661
+ "type": "string"
662
+ }
663
+ },
664
+ "additionalProperties": true,
665
+ "required": [
666
+ "secret"
667
+ ]
668
+ }
669
+ ]
670
+ },
671
+ "alg": {
672
+ "description": "The algorithm intended for use with this key (HS256, HS384, or HS512).",
673
+ "anyOf": [
674
+ {
675
+ "type": "string",
676
+ "const": "HS256"
677
+ },
678
+ {
679
+ "type": "string",
680
+ "const": "HS384"
681
+ },
682
+ {
683
+ "type": "string",
684
+ "const": "HS512"
685
+ }
686
+ ]
687
+ },
688
+ "use": {
689
+ "description": "The intended use of the key (e.g., \"sig\" for signature).",
690
+ "type": "string"
691
+ }
692
+ },
693
+ "additionalProperties": true,
694
+ "required": [
695
+ "kty",
696
+ "kid",
697
+ "k",
698
+ "alg"
699
+ ]
700
+ },
701
+ {
702
+ "description": "JSON Web Key (JWK) representation of an Octet Key Pair (OKP) key used with Edwards-curve Digital Signature Algorithm.",
703
+ "type": "object",
704
+ "properties": {
705
+ "kty": {
706
+ "description": "Key type identifier, must be \"OKP\" for Octet Key Pair keys.",
707
+ "type": "string",
708
+ "const": "OKP"
709
+ },
710
+ "kid": {
711
+ "description": "Key ID, a unique identifier for the key.",
712
+ "type": "string"
713
+ },
714
+ "crv": {
715
+ "description": "The cryptographic curve used with this key. Only Ed25519 and Ed448 are supported.",
716
+ "anyOf": [
717
+ {
718
+ "type": "string",
719
+ "const": "Ed25519"
720
+ },
721
+ {
722
+ "type": "string",
723
+ "const": "Ed448"
724
+ }
725
+ ]
726
+ },
727
+ "x": {
728
+ "description": "The public key, Base64 URL encoded.",
729
+ "type": "string"
730
+ },
731
+ "alg": {
732
+ "description": "The algorithm intended for use with this key (EdDSA).",
733
+ "type": "string",
734
+ "const": "EdDSA"
735
+ },
736
+ "use": {
737
+ "description": "The intended use of the key (e.g., \"sig\" for signature).",
738
+ "type": "string"
739
+ }
740
+ },
741
+ "additionalProperties": true,
742
+ "required": [
743
+ "kty",
744
+ "crv",
745
+ "x",
746
+ "alg"
747
+ ]
748
+ },
749
+ {
750
+ "description": "JSON Web Key (JWK) representation of an Elliptic Curve key.",
751
+ "type": "object",
752
+ "properties": {
753
+ "kty": {
754
+ "description": "Key type identifier, must be \"EC\" for Elliptic Curve keys.",
755
+ "type": "string",
756
+ "const": "EC"
757
+ },
758
+ "kid": {
759
+ "description": "Key ID, a unique identifier for the key.",
760
+ "type": "string"
761
+ },
762
+ "crv": {
763
+ "description": "The cryptographic curve used with this key (P-256, P-384, or P-512).",
764
+ "anyOf": [
765
+ {
766
+ "type": "string",
767
+ "const": "P-256"
768
+ },
769
+ {
770
+ "type": "string",
771
+ "const": "P-384"
772
+ },
773
+ {
774
+ "type": "string",
775
+ "const": "P-512"
776
+ }
777
+ ]
778
+ },
779
+ "x": {
780
+ "description": "The x coordinate for the Elliptic Curve point, Base64 URL encoded.",
781
+ "type": "string"
782
+ },
783
+ "y": {
784
+ "description": "The y coordinate for the Elliptic Curve point, Base64 URL encoded.",
785
+ "type": "string"
786
+ },
787
+ "alg": {
788
+ "description": "The algorithm intended for use with this key (ES256, ES384, or ES512).",
789
+ "anyOf": [
790
+ {
791
+ "type": "string",
792
+ "const": "ES256"
793
+ },
794
+ {
795
+ "type": "string",
796
+ "const": "ES384"
797
+ },
798
+ {
799
+ "type": "string",
800
+ "const": "ES512"
801
+ }
802
+ ]
803
+ },
804
+ "use": {
805
+ "description": "The intended use of the key (e.g., \"sig\" for signature).",
806
+ "type": "string"
807
+ }
808
+ },
809
+ "additionalProperties": true,
810
+ "required": [
811
+ "kty",
812
+ "crv",
813
+ "x",
814
+ "y",
815
+ "alg"
816
+ ]
817
+ }
818
+ ]
819
+ }
820
+ }
821
+ },
822
+ "additionalProperties": true,
823
+ "required": [
824
+ "keys"
825
+ ]
826
+ },
827
+ "supabase": {
828
+ "description": "Enables Supabase authentication integration.",
829
+ "type": "boolean"
830
+ },
831
+ "supabase_jwt_secret": {
832
+ "description": "JWT secret for Supabase authentication (may be a secret reference).",
833
+ "anyOf": [
834
+ {
835
+ "type": "object",
836
+ "properties": {
837
+ "secret_ref": {
838
+ "type": "string"
839
+ }
840
+ },
841
+ "additionalProperties": true,
842
+ "required": [
843
+ "secret_ref"
844
+ ]
845
+ },
846
+ {
847
+ "type": "object",
848
+ "properties": {
849
+ "secret": {
850
+ "type": "string"
851
+ }
852
+ },
853
+ "additionalProperties": true,
854
+ "required": [
855
+ "secret"
856
+ ]
857
+ }
858
+ ]
859
+ },
860
+ "additional_audiences": {
861
+ "description": "Additional valid audiences for JWT validation.",
862
+ "type": "array",
863
+ "items": {
864
+ "type": "string"
865
+ }
866
+ },
867
+ "allow_temporary_tokens": {
868
+ "description": "When true, allows temporary tokens for development or testing.",
869
+ "type": "boolean"
870
+ }
871
+ },
872
+ "additionalProperties": true,
873
+ "required": []
874
+ }
875
+ },
876
+ "additionalProperties": true,
877
+ "required": [
878
+ "region"
879
+ ]
880
+ }