@kya-os/contracts 1.5.2-canary.3 → 1.5.2-canary.5

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.
@@ -19,13 +19,13 @@ export declare const identityConfigSchema: z.ZodObject<{
19
19
  environment: z.ZodEnum<["development", "production"]>;
20
20
  storageLocation: z.ZodEnum<["cloudflare-kv", "file-system", "env-vars"]>;
21
21
  }, "strip", z.ZodTypeAny, {
22
- serverDid: string;
23
22
  environment: "development" | "production";
23
+ serverDid: string;
24
24
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
25
25
  agentDid?: string | undefined;
26
26
  }, {
27
- serverDid: string;
28
27
  environment: "development" | "production";
28
+ serverDid: string;
29
29
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
30
30
  agentDid?: string | undefined;
31
31
  }>;
@@ -39,11 +39,11 @@ export declare const proofingConfigSchema: z.ZodObject<{
39
39
  apiUrl: z.ZodString;
40
40
  apiKey: z.ZodOptional<z.ZodString>;
41
41
  }, "strip", z.ZodTypeAny, {
42
- type: "custom" | "agentshield" | "kta";
42
+ type: "custom" | "kta" | "agentshield";
43
43
  apiUrl: string;
44
44
  apiKey?: string | undefined;
45
45
  }, {
46
- type: "custom" | "agentshield" | "kta";
46
+ type: "custom" | "kta" | "agentshield";
47
47
  apiUrl: string;
48
48
  apiKey?: string | undefined;
49
49
  }>, "many">;
@@ -63,7 +63,7 @@ export declare const proofingConfigSchema: z.ZodObject<{
63
63
  }, "strip", z.ZodTypeAny, {
64
64
  enabled: boolean;
65
65
  destinations: {
66
- type: "custom" | "agentshield" | "kta";
66
+ type: "custom" | "kta" | "agentshield";
67
67
  apiUrl: string;
68
68
  apiKey?: string | undefined;
69
69
  }[];
@@ -75,7 +75,7 @@ export declare const proofingConfigSchema: z.ZodObject<{
75
75
  }, {
76
76
  enabled: boolean;
77
77
  destinations: {
78
- type: "custom" | "agentshield" | "kta";
78
+ type: "custom" | "kta" | "agentshield";
79
79
  apiUrl: string;
80
80
  apiKey?: string | undefined;
81
81
  }[];
@@ -96,11 +96,11 @@ export declare const delegationConfigSchema: z.ZodObject<{
96
96
  apiUrl: z.ZodOptional<z.ZodString>;
97
97
  cacheTtl: z.ZodOptional<z.ZodNumber>;
98
98
  }, "strip", z.ZodTypeAny, {
99
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
99
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
100
100
  apiUrl?: string | undefined;
101
101
  cacheTtl?: number | undefined;
102
102
  }, {
103
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
103
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
104
104
  apiUrl?: string | undefined;
105
105
  cacheTtl?: number | undefined;
106
106
  }>;
@@ -124,7 +124,7 @@ export declare const delegationConfigSchema: z.ZodObject<{
124
124
  enabled: boolean;
125
125
  enforceStrictly: boolean;
126
126
  verifier: {
127
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
127
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
128
128
  apiUrl?: string | undefined;
129
129
  cacheTtl?: number | undefined;
130
130
  };
@@ -138,7 +138,7 @@ export declare const delegationConfigSchema: z.ZodObject<{
138
138
  enabled: boolean;
139
139
  enforceStrictly: boolean;
140
140
  verifier: {
141
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
141
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
142
142
  apiUrl?: string | undefined;
143
143
  cacheTtl?: number | undefined;
144
144
  };
@@ -251,10 +251,10 @@ export declare const cloudflarePlatformConfigSchema: z.ZodObject<{
251
251
  purpose: z.ZodEnum<["sessions", "delegations", "cache", "general"]>;
252
252
  }, "strip", z.ZodTypeAny, {
253
253
  name: string;
254
- purpose: "sessions" | "delegations" | "cache" | "general";
254
+ purpose: "cache" | "delegations" | "sessions" | "general";
255
255
  }, {
256
256
  name: string;
257
- purpose: "sessions" | "delegations" | "cache" | "general";
257
+ purpose: "cache" | "delegations" | "sessions" | "general";
258
258
  }>, "many">;
259
259
  environmentVariables: z.ZodArray<z.ZodObject<{
260
260
  name: z.ZodString;
@@ -262,12 +262,12 @@ export declare const cloudflarePlatformConfigSchema: z.ZodObject<{
262
262
  source: z.ZodEnum<["wrangler.toml", "secrets", ".dev.vars"]>;
263
263
  }, "strip", z.ZodTypeAny, {
264
264
  value: string;
265
- source: "wrangler.toml" | "secrets" | ".dev.vars";
266
265
  name: string;
266
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
267
267
  }, {
268
268
  value: string;
269
- source: "wrangler.toml" | "secrets" | ".dev.vars";
270
269
  name: string;
270
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
271
271
  }>, "many">;
272
272
  }, "strip", z.ZodTypeAny, {
273
273
  workers: {
@@ -276,12 +276,12 @@ export declare const cloudflarePlatformConfigSchema: z.ZodObject<{
276
276
  };
277
277
  kvNamespaces: {
278
278
  name: string;
279
- purpose: "sessions" | "delegations" | "cache" | "general";
279
+ purpose: "cache" | "delegations" | "sessions" | "general";
280
280
  }[];
281
281
  environmentVariables: {
282
282
  value: string;
283
- source: "wrangler.toml" | "secrets" | ".dev.vars";
284
283
  name: string;
284
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
285
285
  }[];
286
286
  }, {
287
287
  workers: {
@@ -290,12 +290,12 @@ export declare const cloudflarePlatformConfigSchema: z.ZodObject<{
290
290
  };
291
291
  kvNamespaces: {
292
292
  name: string;
293
- purpose: "sessions" | "delegations" | "cache" | "general";
293
+ purpose: "cache" | "delegations" | "sessions" | "general";
294
294
  }[];
295
295
  environmentVariables: {
296
296
  value: string;
297
- source: "wrangler.toml" | "secrets" | ".dev.vars";
298
297
  name: string;
298
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
299
299
  }[];
300
300
  }>;
301
301
  /**
@@ -308,15 +308,15 @@ export declare const nodePlatformConfigSchema: z.ZodObject<{
308
308
  cors: z.ZodDefault<z.ZodBoolean>;
309
309
  timeout: z.ZodDefault<z.ZodNumber>;
310
310
  }, "strip", z.ZodTypeAny, {
311
+ timeout: number;
311
312
  port: number;
312
313
  host: string;
313
314
  cors: boolean;
314
- timeout: number;
315
315
  }, {
316
+ timeout?: number | undefined;
316
317
  port?: number | undefined;
317
318
  host?: string | undefined;
318
319
  cors?: boolean | undefined;
319
- timeout?: number | undefined;
320
320
  }>;
321
321
  storage: z.ZodObject<{
322
322
  type: z.ZodEnum<["memory", "redis", "postgres", "mongodb"]>;
@@ -350,10 +350,10 @@ export declare const nodePlatformConfigSchema: z.ZodObject<{
350
350
  }>;
351
351
  }, "strip", z.ZodTypeAny, {
352
352
  server: {
353
+ timeout: number;
353
354
  port: number;
354
355
  host: string;
355
356
  cors: boolean;
356
- timeout: number;
357
357
  };
358
358
  storage: {
359
359
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -365,10 +365,10 @@ export declare const nodePlatformConfigSchema: z.ZodObject<{
365
365
  };
366
366
  }, {
367
367
  server: {
368
+ timeout?: number | undefined;
368
369
  port?: number | undefined;
369
370
  host?: string | undefined;
370
371
  cors?: boolean | undefined;
371
- timeout?: number | undefined;
372
372
  };
373
373
  storage: {
374
374
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -389,12 +389,12 @@ export declare const vercelPlatformConfigSchema: z.ZodObject<{
389
389
  source: z.ZodEnum<["vercel-dashboard", ".env.local"]>;
390
390
  }, "strip", z.ZodTypeAny, {
391
391
  value: string;
392
- source: "vercel-dashboard" | ".env.local";
393
392
  name: string;
393
+ source: "vercel-dashboard" | ".env.local";
394
394
  }, {
395
395
  value: string;
396
- source: "vercel-dashboard" | ".env.local";
397
396
  name: string;
397
+ source: "vercel-dashboard" | ".env.local";
398
398
  }>, "many">;
399
399
  edgeRuntime: z.ZodOptional<z.ZodObject<{
400
400
  maxDuration: z.ZodOptional<z.ZodNumber>;
@@ -409,8 +409,8 @@ export declare const vercelPlatformConfigSchema: z.ZodObject<{
409
409
  }, "strip", z.ZodTypeAny, {
410
410
  environmentVariables: {
411
411
  value: string;
412
- source: "vercel-dashboard" | ".env.local";
413
412
  name: string;
413
+ source: "vercel-dashboard" | ".env.local";
414
414
  }[];
415
415
  edgeRuntime?: {
416
416
  maxDuration?: number | undefined;
@@ -419,8 +419,8 @@ export declare const vercelPlatformConfigSchema: z.ZodObject<{
419
419
  }, {
420
420
  environmentVariables: {
421
421
  value: string;
422
- source: "vercel-dashboard" | ".env.local";
423
422
  name: string;
423
+ source: "vercel-dashboard" | ".env.local";
424
424
  }[];
425
425
  edgeRuntime?: {
426
426
  maxDuration?: number | undefined;
@@ -448,10 +448,10 @@ export declare const platformConfigSchema: z.ZodObject<{
448
448
  purpose: z.ZodEnum<["sessions", "delegations", "cache", "general"]>;
449
449
  }, "strip", z.ZodTypeAny, {
450
450
  name: string;
451
- purpose: "sessions" | "delegations" | "cache" | "general";
451
+ purpose: "cache" | "delegations" | "sessions" | "general";
452
452
  }, {
453
453
  name: string;
454
- purpose: "sessions" | "delegations" | "cache" | "general";
454
+ purpose: "cache" | "delegations" | "sessions" | "general";
455
455
  }>, "many">;
456
456
  environmentVariables: z.ZodArray<z.ZodObject<{
457
457
  name: z.ZodString;
@@ -459,12 +459,12 @@ export declare const platformConfigSchema: z.ZodObject<{
459
459
  source: z.ZodEnum<["wrangler.toml", "secrets", ".dev.vars"]>;
460
460
  }, "strip", z.ZodTypeAny, {
461
461
  value: string;
462
- source: "wrangler.toml" | "secrets" | ".dev.vars";
463
462
  name: string;
463
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
464
464
  }, {
465
465
  value: string;
466
- source: "wrangler.toml" | "secrets" | ".dev.vars";
467
466
  name: string;
467
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
468
468
  }>, "many">;
469
469
  }, "strip", z.ZodTypeAny, {
470
470
  workers: {
@@ -473,12 +473,12 @@ export declare const platformConfigSchema: z.ZodObject<{
473
473
  };
474
474
  kvNamespaces: {
475
475
  name: string;
476
- purpose: "sessions" | "delegations" | "cache" | "general";
476
+ purpose: "cache" | "delegations" | "sessions" | "general";
477
477
  }[];
478
478
  environmentVariables: {
479
479
  value: string;
480
- source: "wrangler.toml" | "secrets" | ".dev.vars";
481
480
  name: string;
481
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
482
482
  }[];
483
483
  }, {
484
484
  workers: {
@@ -487,12 +487,12 @@ export declare const platformConfigSchema: z.ZodObject<{
487
487
  };
488
488
  kvNamespaces: {
489
489
  name: string;
490
- purpose: "sessions" | "delegations" | "cache" | "general";
490
+ purpose: "cache" | "delegations" | "sessions" | "general";
491
491
  }[];
492
492
  environmentVariables: {
493
493
  value: string;
494
- source: "wrangler.toml" | "secrets" | ".dev.vars";
495
494
  name: string;
495
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
496
496
  }[];
497
497
  }>>;
498
498
  node: z.ZodOptional<z.ZodObject<{
@@ -502,15 +502,15 @@ export declare const platformConfigSchema: z.ZodObject<{
502
502
  cors: z.ZodDefault<z.ZodBoolean>;
503
503
  timeout: z.ZodDefault<z.ZodNumber>;
504
504
  }, "strip", z.ZodTypeAny, {
505
+ timeout: number;
505
506
  port: number;
506
507
  host: string;
507
508
  cors: boolean;
508
- timeout: number;
509
509
  }, {
510
+ timeout?: number | undefined;
510
511
  port?: number | undefined;
511
512
  host?: string | undefined;
512
513
  cors?: boolean | undefined;
513
- timeout?: number | undefined;
514
514
  }>;
515
515
  storage: z.ZodObject<{
516
516
  type: z.ZodEnum<["memory", "redis", "postgres", "mongodb"]>;
@@ -544,10 +544,10 @@ export declare const platformConfigSchema: z.ZodObject<{
544
544
  }>;
545
545
  }, "strip", z.ZodTypeAny, {
546
546
  server: {
547
+ timeout: number;
547
548
  port: number;
548
549
  host: string;
549
550
  cors: boolean;
550
- timeout: number;
551
551
  };
552
552
  storage: {
553
553
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -559,10 +559,10 @@ export declare const platformConfigSchema: z.ZodObject<{
559
559
  };
560
560
  }, {
561
561
  server: {
562
+ timeout?: number | undefined;
562
563
  port?: number | undefined;
563
564
  host?: string | undefined;
564
565
  cors?: boolean | undefined;
565
- timeout?: number | undefined;
566
566
  };
567
567
  storage: {
568
568
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -580,12 +580,12 @@ export declare const platformConfigSchema: z.ZodObject<{
580
580
  source: z.ZodEnum<["vercel-dashboard", ".env.local"]>;
581
581
  }, "strip", z.ZodTypeAny, {
582
582
  value: string;
583
- source: "vercel-dashboard" | ".env.local";
584
583
  name: string;
584
+ source: "vercel-dashboard" | ".env.local";
585
585
  }, {
586
586
  value: string;
587
- source: "vercel-dashboard" | ".env.local";
588
587
  name: string;
588
+ source: "vercel-dashboard" | ".env.local";
589
589
  }>, "many">;
590
590
  edgeRuntime: z.ZodOptional<z.ZodObject<{
591
591
  maxDuration: z.ZodOptional<z.ZodNumber>;
@@ -600,8 +600,8 @@ export declare const platformConfigSchema: z.ZodObject<{
600
600
  }, "strip", z.ZodTypeAny, {
601
601
  environmentVariables: {
602
602
  value: string;
603
- source: "vercel-dashboard" | ".env.local";
604
603
  name: string;
604
+ source: "vercel-dashboard" | ".env.local";
605
605
  }[];
606
606
  edgeRuntime?: {
607
607
  maxDuration?: number | undefined;
@@ -610,8 +610,8 @@ export declare const platformConfigSchema: z.ZodObject<{
610
610
  }, {
611
611
  environmentVariables: {
612
612
  value: string;
613
- source: "vercel-dashboard" | ".env.local";
614
613
  name: string;
614
+ source: "vercel-dashboard" | ".env.local";
615
615
  }[];
616
616
  edgeRuntime?: {
617
617
  maxDuration?: number | undefined;
@@ -627,20 +627,20 @@ export declare const platformConfigSchema: z.ZodObject<{
627
627
  };
628
628
  kvNamespaces: {
629
629
  name: string;
630
- purpose: "sessions" | "delegations" | "cache" | "general";
630
+ purpose: "cache" | "delegations" | "sessions" | "general";
631
631
  }[];
632
632
  environmentVariables: {
633
633
  value: string;
634
- source: "wrangler.toml" | "secrets" | ".dev.vars";
635
634
  name: string;
635
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
636
636
  }[];
637
637
  } | undefined;
638
638
  node?: {
639
639
  server: {
640
+ timeout: number;
640
641
  port: number;
641
642
  host: string;
642
643
  cors: boolean;
643
- timeout: number;
644
644
  };
645
645
  storage: {
646
646
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -654,8 +654,8 @@ export declare const platformConfigSchema: z.ZodObject<{
654
654
  vercel?: {
655
655
  environmentVariables: {
656
656
  value: string;
657
- source: "vercel-dashboard" | ".env.local";
658
657
  name: string;
658
+ source: "vercel-dashboard" | ".env.local";
659
659
  }[];
660
660
  edgeRuntime?: {
661
661
  maxDuration?: number | undefined;
@@ -671,20 +671,20 @@ export declare const platformConfigSchema: z.ZodObject<{
671
671
  };
672
672
  kvNamespaces: {
673
673
  name: string;
674
- purpose: "sessions" | "delegations" | "cache" | "general";
674
+ purpose: "cache" | "delegations" | "sessions" | "general";
675
675
  }[];
676
676
  environmentVariables: {
677
677
  value: string;
678
- source: "wrangler.toml" | "secrets" | ".dev.vars";
679
678
  name: string;
679
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
680
680
  }[];
681
681
  } | undefined;
682
682
  node?: {
683
683
  server: {
684
+ timeout?: number | undefined;
684
685
  port?: number | undefined;
685
686
  host?: string | undefined;
686
687
  cors?: boolean | undefined;
687
- timeout?: number | undefined;
688
688
  };
689
689
  storage: {
690
690
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -698,8 +698,8 @@ export declare const platformConfigSchema: z.ZodObject<{
698
698
  vercel?: {
699
699
  environmentVariables: {
700
700
  value: string;
701
- source: "vercel-dashboard" | ".env.local";
702
701
  name: string;
702
+ source: "vercel-dashboard" | ".env.local";
703
703
  }[];
704
704
  edgeRuntime?: {
705
705
  maxDuration?: number | undefined;
@@ -717,17 +717,17 @@ export declare const configMetadataSchema: z.ZodObject<{
717
717
  serverUrl: z.ZodOptional<z.ZodString>;
718
718
  deploymentStatus: z.ZodOptional<z.ZodEnum<["active", "inactive", "error"]>>;
719
719
  }, "strip", z.ZodTypeAny, {
720
- source: "code" | "dashboard" | "mixed";
721
720
  version: string;
722
721
  lastUpdated: string;
722
+ source: "code" | "dashboard" | "mixed";
723
723
  serverUrl?: string | undefined;
724
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
724
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
725
725
  }, {
726
- source: "code" | "dashboard" | "mixed";
727
726
  version: string;
728
727
  lastUpdated: string;
728
+ source: "code" | "dashboard" | "mixed";
729
729
  serverUrl?: string | undefined;
730
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
730
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
731
731
  }>;
732
732
  /**
733
733
  * Complete MCP-I Server Configuration schema
@@ -742,13 +742,13 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
742
742
  environment: z.ZodEnum<["development", "production"]>;
743
743
  storageLocation: z.ZodEnum<["cloudflare-kv", "file-system", "env-vars"]>;
744
744
  }, "strip", z.ZodTypeAny, {
745
- serverDid: string;
746
745
  environment: "development" | "production";
746
+ serverDid: string;
747
747
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
748
748
  agentDid?: string | undefined;
749
749
  }, {
750
- serverDid: string;
751
750
  environment: "development" | "production";
751
+ serverDid: string;
752
752
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
753
753
  agentDid?: string | undefined;
754
754
  }>;
@@ -759,11 +759,11 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
759
759
  apiUrl: z.ZodString;
760
760
  apiKey: z.ZodOptional<z.ZodString>;
761
761
  }, "strip", z.ZodTypeAny, {
762
- type: "custom" | "agentshield" | "kta";
762
+ type: "custom" | "kta" | "agentshield";
763
763
  apiUrl: string;
764
764
  apiKey?: string | undefined;
765
765
  }, {
766
- type: "custom" | "agentshield" | "kta";
766
+ type: "custom" | "kta" | "agentshield";
767
767
  apiUrl: string;
768
768
  apiKey?: string | undefined;
769
769
  }>, "many">;
@@ -783,7 +783,7 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
783
783
  }, "strip", z.ZodTypeAny, {
784
784
  enabled: boolean;
785
785
  destinations: {
786
- type: "custom" | "agentshield" | "kta";
786
+ type: "custom" | "kta" | "agentshield";
787
787
  apiUrl: string;
788
788
  apiKey?: string | undefined;
789
789
  }[];
@@ -795,7 +795,7 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
795
795
  }, {
796
796
  enabled: boolean;
797
797
  destinations: {
798
- type: "custom" | "agentshield" | "kta";
798
+ type: "custom" | "kta" | "agentshield";
799
799
  apiUrl: string;
800
800
  apiKey?: string | undefined;
801
801
  }[];
@@ -813,11 +813,11 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
813
813
  apiUrl: z.ZodOptional<z.ZodString>;
814
814
  cacheTtl: z.ZodOptional<z.ZodNumber>;
815
815
  }, "strip", z.ZodTypeAny, {
816
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
816
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
817
817
  apiUrl?: string | undefined;
818
818
  cacheTtl?: number | undefined;
819
819
  }, {
820
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
820
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
821
821
  apiUrl?: string | undefined;
822
822
  cacheTtl?: number | undefined;
823
823
  }>;
@@ -841,7 +841,7 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
841
841
  enabled: boolean;
842
842
  enforceStrictly: boolean;
843
843
  verifier: {
844
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
844
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
845
845
  apiUrl?: string | undefined;
846
846
  cacheTtl?: number | undefined;
847
847
  };
@@ -855,7 +855,7 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
855
855
  enabled: boolean;
856
856
  enforceStrictly: boolean;
857
857
  verifier: {
858
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
858
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
859
859
  apiUrl?: string | undefined;
860
860
  cacheTtl?: number | undefined;
861
861
  };
@@ -958,10 +958,10 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
958
958
  purpose: z.ZodEnum<["sessions", "delegations", "cache", "general"]>;
959
959
  }, "strip", z.ZodTypeAny, {
960
960
  name: string;
961
- purpose: "sessions" | "delegations" | "cache" | "general";
961
+ purpose: "cache" | "delegations" | "sessions" | "general";
962
962
  }, {
963
963
  name: string;
964
- purpose: "sessions" | "delegations" | "cache" | "general";
964
+ purpose: "cache" | "delegations" | "sessions" | "general";
965
965
  }>, "many">;
966
966
  environmentVariables: z.ZodArray<z.ZodObject<{
967
967
  name: z.ZodString;
@@ -969,12 +969,12 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
969
969
  source: z.ZodEnum<["wrangler.toml", "secrets", ".dev.vars"]>;
970
970
  }, "strip", z.ZodTypeAny, {
971
971
  value: string;
972
- source: "wrangler.toml" | "secrets" | ".dev.vars";
973
972
  name: string;
973
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
974
974
  }, {
975
975
  value: string;
976
- source: "wrangler.toml" | "secrets" | ".dev.vars";
977
976
  name: string;
977
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
978
978
  }>, "many">;
979
979
  }, "strip", z.ZodTypeAny, {
980
980
  workers: {
@@ -983,12 +983,12 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
983
983
  };
984
984
  kvNamespaces: {
985
985
  name: string;
986
- purpose: "sessions" | "delegations" | "cache" | "general";
986
+ purpose: "cache" | "delegations" | "sessions" | "general";
987
987
  }[];
988
988
  environmentVariables: {
989
989
  value: string;
990
- source: "wrangler.toml" | "secrets" | ".dev.vars";
991
990
  name: string;
991
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
992
992
  }[];
993
993
  }, {
994
994
  workers: {
@@ -997,12 +997,12 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
997
997
  };
998
998
  kvNamespaces: {
999
999
  name: string;
1000
- purpose: "sessions" | "delegations" | "cache" | "general";
1000
+ purpose: "cache" | "delegations" | "sessions" | "general";
1001
1001
  }[];
1002
1002
  environmentVariables: {
1003
1003
  value: string;
1004
- source: "wrangler.toml" | "secrets" | ".dev.vars";
1005
1004
  name: string;
1005
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
1006
1006
  }[];
1007
1007
  }>>;
1008
1008
  node: z.ZodOptional<z.ZodObject<{
@@ -1012,15 +1012,15 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
1012
1012
  cors: z.ZodDefault<z.ZodBoolean>;
1013
1013
  timeout: z.ZodDefault<z.ZodNumber>;
1014
1014
  }, "strip", z.ZodTypeAny, {
1015
+ timeout: number;
1015
1016
  port: number;
1016
1017
  host: string;
1017
1018
  cors: boolean;
1018
- timeout: number;
1019
1019
  }, {
1020
+ timeout?: number | undefined;
1020
1021
  port?: number | undefined;
1021
1022
  host?: string | undefined;
1022
1023
  cors?: boolean | undefined;
1023
- timeout?: number | undefined;
1024
1024
  }>;
1025
1025
  storage: z.ZodObject<{
1026
1026
  type: z.ZodEnum<["memory", "redis", "postgres", "mongodb"]>;
@@ -1054,10 +1054,10 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
1054
1054
  }>;
1055
1055
  }, "strip", z.ZodTypeAny, {
1056
1056
  server: {
1057
+ timeout: number;
1057
1058
  port: number;
1058
1059
  host: string;
1059
1060
  cors: boolean;
1060
- timeout: number;
1061
1061
  };
1062
1062
  storage: {
1063
1063
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -1069,10 +1069,10 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
1069
1069
  };
1070
1070
  }, {
1071
1071
  server: {
1072
+ timeout?: number | undefined;
1072
1073
  port?: number | undefined;
1073
1074
  host?: string | undefined;
1074
1075
  cors?: boolean | undefined;
1075
- timeout?: number | undefined;
1076
1076
  };
1077
1077
  storage: {
1078
1078
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -1090,12 +1090,12 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
1090
1090
  source: z.ZodEnum<["vercel-dashboard", ".env.local"]>;
1091
1091
  }, "strip", z.ZodTypeAny, {
1092
1092
  value: string;
1093
- source: "vercel-dashboard" | ".env.local";
1094
1093
  name: string;
1094
+ source: "vercel-dashboard" | ".env.local";
1095
1095
  }, {
1096
1096
  value: string;
1097
- source: "vercel-dashboard" | ".env.local";
1098
1097
  name: string;
1098
+ source: "vercel-dashboard" | ".env.local";
1099
1099
  }>, "many">;
1100
1100
  edgeRuntime: z.ZodOptional<z.ZodObject<{
1101
1101
  maxDuration: z.ZodOptional<z.ZodNumber>;
@@ -1110,8 +1110,8 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
1110
1110
  }, "strip", z.ZodTypeAny, {
1111
1111
  environmentVariables: {
1112
1112
  value: string;
1113
- source: "vercel-dashboard" | ".env.local";
1114
1113
  name: string;
1114
+ source: "vercel-dashboard" | ".env.local";
1115
1115
  }[];
1116
1116
  edgeRuntime?: {
1117
1117
  maxDuration?: number | undefined;
@@ -1120,8 +1120,8 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
1120
1120
  }, {
1121
1121
  environmentVariables: {
1122
1122
  value: string;
1123
- source: "vercel-dashboard" | ".env.local";
1124
1123
  name: string;
1124
+ source: "vercel-dashboard" | ".env.local";
1125
1125
  }[];
1126
1126
  edgeRuntime?: {
1127
1127
  maxDuration?: number | undefined;
@@ -1137,20 +1137,20 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
1137
1137
  };
1138
1138
  kvNamespaces: {
1139
1139
  name: string;
1140
- purpose: "sessions" | "delegations" | "cache" | "general";
1140
+ purpose: "cache" | "delegations" | "sessions" | "general";
1141
1141
  }[];
1142
1142
  environmentVariables: {
1143
1143
  value: string;
1144
- source: "wrangler.toml" | "secrets" | ".dev.vars";
1145
1144
  name: string;
1145
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
1146
1146
  }[];
1147
1147
  } | undefined;
1148
1148
  node?: {
1149
1149
  server: {
1150
+ timeout: number;
1150
1151
  port: number;
1151
1152
  host: string;
1152
1153
  cors: boolean;
1153
- timeout: number;
1154
1154
  };
1155
1155
  storage: {
1156
1156
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -1164,8 +1164,8 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
1164
1164
  vercel?: {
1165
1165
  environmentVariables: {
1166
1166
  value: string;
1167
- source: "vercel-dashboard" | ".env.local";
1168
1167
  name: string;
1168
+ source: "vercel-dashboard" | ".env.local";
1169
1169
  }[];
1170
1170
  edgeRuntime?: {
1171
1171
  maxDuration?: number | undefined;
@@ -1181,20 +1181,20 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
1181
1181
  };
1182
1182
  kvNamespaces: {
1183
1183
  name: string;
1184
- purpose: "sessions" | "delegations" | "cache" | "general";
1184
+ purpose: "cache" | "delegations" | "sessions" | "general";
1185
1185
  }[];
1186
1186
  environmentVariables: {
1187
1187
  value: string;
1188
- source: "wrangler.toml" | "secrets" | ".dev.vars";
1189
1188
  name: string;
1189
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
1190
1190
  }[];
1191
1191
  } | undefined;
1192
1192
  node?: {
1193
1193
  server: {
1194
+ timeout?: number | undefined;
1194
1195
  port?: number | undefined;
1195
1196
  host?: string | undefined;
1196
1197
  cors?: boolean | undefined;
1197
- timeout?: number | undefined;
1198
1198
  };
1199
1199
  storage: {
1200
1200
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -1208,8 +1208,8 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
1208
1208
  vercel?: {
1209
1209
  environmentVariables: {
1210
1210
  value: string;
1211
- source: "vercel-dashboard" | ".env.local";
1212
1211
  name: string;
1212
+ source: "vercel-dashboard" | ".env.local";
1213
1213
  }[];
1214
1214
  edgeRuntime?: {
1215
1215
  maxDuration?: number | undefined;
@@ -1224,31 +1224,36 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
1224
1224
  serverUrl: z.ZodOptional<z.ZodString>;
1225
1225
  deploymentStatus: z.ZodOptional<z.ZodEnum<["active", "inactive", "error"]>>;
1226
1226
  }, "strip", z.ZodTypeAny, {
1227
- source: "code" | "dashboard" | "mixed";
1228
1227
  version: string;
1229
1228
  lastUpdated: string;
1229
+ source: "code" | "dashboard" | "mixed";
1230
1230
  serverUrl?: string | undefined;
1231
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
1231
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
1232
1232
  }, {
1233
- source: "code" | "dashboard" | "mixed";
1234
1233
  version: string;
1235
1234
  lastUpdated: string;
1235
+ source: "code" | "dashboard" | "mixed";
1236
1236
  serverUrl?: string | undefined;
1237
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
1237
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
1238
1238
  }>;
1239
1239
  }, "strip", z.ZodTypeAny, {
1240
+ session: {
1241
+ ttlMinutes: number;
1242
+ timestampSkewSeconds: number;
1243
+ absoluteLifetime?: number | undefined;
1244
+ };
1240
1245
  metadata: {
1241
- source: "code" | "dashboard" | "mixed";
1242
1246
  version: string;
1243
1247
  lastUpdated: string;
1248
+ source: "code" | "dashboard" | "mixed";
1244
1249
  serverUrl?: string | undefined;
1245
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
1250
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
1246
1251
  };
1247
1252
  delegation: {
1248
1253
  enabled: boolean;
1249
1254
  enforceStrictly: boolean;
1250
1255
  verifier: {
1251
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
1256
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
1252
1257
  apiUrl?: string | undefined;
1253
1258
  cacheTtl?: number | undefined;
1254
1259
  };
@@ -1260,15 +1265,15 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
1260
1265
  };
1261
1266
  };
1262
1267
  identity: {
1263
- serverDid: string;
1264
1268
  environment: "development" | "production";
1269
+ serverDid: string;
1265
1270
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
1266
1271
  agentDid?: string | undefined;
1267
1272
  };
1268
1273
  proofing: {
1269
1274
  enabled: boolean;
1270
1275
  destinations: {
1271
- type: "custom" | "agentshield" | "kta";
1276
+ type: "custom" | "kta" | "agentshield";
1272
1277
  apiUrl: string;
1273
1278
  apiKey?: string | undefined;
1274
1279
  }[];
@@ -1295,11 +1300,6 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
1295
1300
  includeProofHashes: boolean;
1296
1301
  includePayloads: boolean;
1297
1302
  };
1298
- session: {
1299
- ttlMinutes: number;
1300
- timestampSkewSeconds: number;
1301
- absoluteLifetime?: number | undefined;
1302
- };
1303
1303
  platform: {
1304
1304
  type: "cloudflare" | "node" | "vercel";
1305
1305
  cloudflare?: {
@@ -1309,20 +1309,20 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
1309
1309
  };
1310
1310
  kvNamespaces: {
1311
1311
  name: string;
1312
- purpose: "sessions" | "delegations" | "cache" | "general";
1312
+ purpose: "cache" | "delegations" | "sessions" | "general";
1313
1313
  }[];
1314
1314
  environmentVariables: {
1315
1315
  value: string;
1316
- source: "wrangler.toml" | "secrets" | ".dev.vars";
1317
1316
  name: string;
1317
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
1318
1318
  }[];
1319
1319
  } | undefined;
1320
1320
  node?: {
1321
1321
  server: {
1322
+ timeout: number;
1322
1323
  port: number;
1323
1324
  host: string;
1324
1325
  cors: boolean;
1325
- timeout: number;
1326
1326
  };
1327
1327
  storage: {
1328
1328
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -1336,8 +1336,8 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
1336
1336
  vercel?: {
1337
1337
  environmentVariables: {
1338
1338
  value: string;
1339
- source: "vercel-dashboard" | ".env.local";
1340
1339
  name: string;
1340
+ source: "vercel-dashboard" | ".env.local";
1341
1341
  }[];
1342
1342
  edgeRuntime?: {
1343
1343
  maxDuration?: number | undefined;
@@ -1346,18 +1346,23 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
1346
1346
  } | undefined;
1347
1347
  };
1348
1348
  }, {
1349
+ session: {
1350
+ ttlMinutes?: number | undefined;
1351
+ timestampSkewSeconds?: number | undefined;
1352
+ absoluteLifetime?: number | undefined;
1353
+ };
1349
1354
  metadata: {
1350
- source: "code" | "dashboard" | "mixed";
1351
1355
  version: string;
1352
1356
  lastUpdated: string;
1357
+ source: "code" | "dashboard" | "mixed";
1353
1358
  serverUrl?: string | undefined;
1354
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
1359
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
1355
1360
  };
1356
1361
  delegation: {
1357
1362
  enabled: boolean;
1358
1363
  enforceStrictly: boolean;
1359
1364
  verifier: {
1360
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
1365
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
1361
1366
  apiUrl?: string | undefined;
1362
1367
  cacheTtl?: number | undefined;
1363
1368
  };
@@ -1369,15 +1374,15 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
1369
1374
  };
1370
1375
  };
1371
1376
  identity: {
1372
- serverDid: string;
1373
1377
  environment: "development" | "production";
1378
+ serverDid: string;
1374
1379
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
1375
1380
  agentDid?: string | undefined;
1376
1381
  };
1377
1382
  proofing: {
1378
1383
  enabled: boolean;
1379
1384
  destinations: {
1380
- type: "custom" | "agentshield" | "kta";
1385
+ type: "custom" | "kta" | "agentshield";
1381
1386
  apiUrl: string;
1382
1387
  apiKey?: string | undefined;
1383
1388
  }[];
@@ -1404,11 +1409,6 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
1404
1409
  includeProofHashes: boolean;
1405
1410
  includePayloads: boolean;
1406
1411
  };
1407
- session: {
1408
- ttlMinutes?: number | undefined;
1409
- timestampSkewSeconds?: number | undefined;
1410
- absoluteLifetime?: number | undefined;
1411
- };
1412
1412
  platform: {
1413
1413
  type: "cloudflare" | "node" | "vercel";
1414
1414
  cloudflare?: {
@@ -1418,20 +1418,20 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
1418
1418
  };
1419
1419
  kvNamespaces: {
1420
1420
  name: string;
1421
- purpose: "sessions" | "delegations" | "cache" | "general";
1421
+ purpose: "cache" | "delegations" | "sessions" | "general";
1422
1422
  }[];
1423
1423
  environmentVariables: {
1424
1424
  value: string;
1425
- source: "wrangler.toml" | "secrets" | ".dev.vars";
1426
1425
  name: string;
1426
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
1427
1427
  }[];
1428
1428
  } | undefined;
1429
1429
  node?: {
1430
1430
  server: {
1431
+ timeout?: number | undefined;
1431
1432
  port?: number | undefined;
1432
1433
  host?: string | undefined;
1433
1434
  cors?: boolean | undefined;
1434
- timeout?: number | undefined;
1435
1435
  };
1436
1436
  storage: {
1437
1437
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -1445,8 +1445,8 @@ export declare const mcpIServerConfigSchema: z.ZodObject<{
1445
1445
  vercel?: {
1446
1446
  environmentVariables: {
1447
1447
  value: string;
1448
- source: "vercel-dashboard" | ".env.local";
1449
1448
  name: string;
1449
+ source: "vercel-dashboard" | ".env.local";
1450
1450
  }[];
1451
1451
  edgeRuntime?: {
1452
1452
  maxDuration?: number | undefined;
@@ -1481,13 +1481,13 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
1481
1481
  environment: z.ZodEnum<["development", "production"]>;
1482
1482
  storageLocation: z.ZodEnum<["cloudflare-kv", "file-system", "env-vars"]>;
1483
1483
  }, "strip", z.ZodTypeAny, {
1484
- serverDid: string;
1485
1484
  environment: "development" | "production";
1485
+ serverDid: string;
1486
1486
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
1487
1487
  agentDid?: string | undefined;
1488
1488
  }, {
1489
- serverDid: string;
1490
1489
  environment: "development" | "production";
1490
+ serverDid: string;
1491
1491
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
1492
1492
  agentDid?: string | undefined;
1493
1493
  }>;
@@ -1498,11 +1498,11 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
1498
1498
  apiUrl: z.ZodString;
1499
1499
  apiKey: z.ZodOptional<z.ZodString>;
1500
1500
  }, "strip", z.ZodTypeAny, {
1501
- type: "custom" | "agentshield" | "kta";
1501
+ type: "custom" | "kta" | "agentshield";
1502
1502
  apiUrl: string;
1503
1503
  apiKey?: string | undefined;
1504
1504
  }, {
1505
- type: "custom" | "agentshield" | "kta";
1505
+ type: "custom" | "kta" | "agentshield";
1506
1506
  apiUrl: string;
1507
1507
  apiKey?: string | undefined;
1508
1508
  }>, "many">;
@@ -1522,7 +1522,7 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
1522
1522
  }, "strip", z.ZodTypeAny, {
1523
1523
  enabled: boolean;
1524
1524
  destinations: {
1525
- type: "custom" | "agentshield" | "kta";
1525
+ type: "custom" | "kta" | "agentshield";
1526
1526
  apiUrl: string;
1527
1527
  apiKey?: string | undefined;
1528
1528
  }[];
@@ -1534,7 +1534,7 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
1534
1534
  }, {
1535
1535
  enabled: boolean;
1536
1536
  destinations: {
1537
- type: "custom" | "agentshield" | "kta";
1537
+ type: "custom" | "kta" | "agentshield";
1538
1538
  apiUrl: string;
1539
1539
  apiKey?: string | undefined;
1540
1540
  }[];
@@ -1552,11 +1552,11 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
1552
1552
  apiUrl: z.ZodOptional<z.ZodString>;
1553
1553
  cacheTtl: z.ZodOptional<z.ZodNumber>;
1554
1554
  }, "strip", z.ZodTypeAny, {
1555
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
1555
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
1556
1556
  apiUrl?: string | undefined;
1557
1557
  cacheTtl?: number | undefined;
1558
1558
  }, {
1559
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
1559
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
1560
1560
  apiUrl?: string | undefined;
1561
1561
  cacheTtl?: number | undefined;
1562
1562
  }>;
@@ -1580,7 +1580,7 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
1580
1580
  enabled: boolean;
1581
1581
  enforceStrictly: boolean;
1582
1582
  verifier: {
1583
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
1583
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
1584
1584
  apiUrl?: string | undefined;
1585
1585
  cacheTtl?: number | undefined;
1586
1586
  };
@@ -1594,7 +1594,7 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
1594
1594
  enabled: boolean;
1595
1595
  enforceStrictly: boolean;
1596
1596
  verifier: {
1597
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
1597
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
1598
1598
  apiUrl?: string | undefined;
1599
1599
  cacheTtl?: number | undefined;
1600
1600
  };
@@ -1697,10 +1697,10 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
1697
1697
  purpose: z.ZodEnum<["sessions", "delegations", "cache", "general"]>;
1698
1698
  }, "strip", z.ZodTypeAny, {
1699
1699
  name: string;
1700
- purpose: "sessions" | "delegations" | "cache" | "general";
1700
+ purpose: "cache" | "delegations" | "sessions" | "general";
1701
1701
  }, {
1702
1702
  name: string;
1703
- purpose: "sessions" | "delegations" | "cache" | "general";
1703
+ purpose: "cache" | "delegations" | "sessions" | "general";
1704
1704
  }>, "many">;
1705
1705
  environmentVariables: z.ZodArray<z.ZodObject<{
1706
1706
  name: z.ZodString;
@@ -1708,12 +1708,12 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
1708
1708
  source: z.ZodEnum<["wrangler.toml", "secrets", ".dev.vars"]>;
1709
1709
  }, "strip", z.ZodTypeAny, {
1710
1710
  value: string;
1711
- source: "wrangler.toml" | "secrets" | ".dev.vars";
1712
1711
  name: string;
1712
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
1713
1713
  }, {
1714
1714
  value: string;
1715
- source: "wrangler.toml" | "secrets" | ".dev.vars";
1716
1715
  name: string;
1716
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
1717
1717
  }>, "many">;
1718
1718
  }, "strip", z.ZodTypeAny, {
1719
1719
  workers: {
@@ -1722,12 +1722,12 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
1722
1722
  };
1723
1723
  kvNamespaces: {
1724
1724
  name: string;
1725
- purpose: "sessions" | "delegations" | "cache" | "general";
1725
+ purpose: "cache" | "delegations" | "sessions" | "general";
1726
1726
  }[];
1727
1727
  environmentVariables: {
1728
1728
  value: string;
1729
- source: "wrangler.toml" | "secrets" | ".dev.vars";
1730
1729
  name: string;
1730
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
1731
1731
  }[];
1732
1732
  }, {
1733
1733
  workers: {
@@ -1736,12 +1736,12 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
1736
1736
  };
1737
1737
  kvNamespaces: {
1738
1738
  name: string;
1739
- purpose: "sessions" | "delegations" | "cache" | "general";
1739
+ purpose: "cache" | "delegations" | "sessions" | "general";
1740
1740
  }[];
1741
1741
  environmentVariables: {
1742
1742
  value: string;
1743
- source: "wrangler.toml" | "secrets" | ".dev.vars";
1744
1743
  name: string;
1744
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
1745
1745
  }[];
1746
1746
  }>>;
1747
1747
  node: z.ZodOptional<z.ZodObject<{
@@ -1751,15 +1751,15 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
1751
1751
  cors: z.ZodDefault<z.ZodBoolean>;
1752
1752
  timeout: z.ZodDefault<z.ZodNumber>;
1753
1753
  }, "strip", z.ZodTypeAny, {
1754
+ timeout: number;
1754
1755
  port: number;
1755
1756
  host: string;
1756
1757
  cors: boolean;
1757
- timeout: number;
1758
1758
  }, {
1759
+ timeout?: number | undefined;
1759
1760
  port?: number | undefined;
1760
1761
  host?: string | undefined;
1761
1762
  cors?: boolean | undefined;
1762
- timeout?: number | undefined;
1763
1763
  }>;
1764
1764
  storage: z.ZodObject<{
1765
1765
  type: z.ZodEnum<["memory", "redis", "postgres", "mongodb"]>;
@@ -1793,10 +1793,10 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
1793
1793
  }>;
1794
1794
  }, "strip", z.ZodTypeAny, {
1795
1795
  server: {
1796
+ timeout: number;
1796
1797
  port: number;
1797
1798
  host: string;
1798
1799
  cors: boolean;
1799
- timeout: number;
1800
1800
  };
1801
1801
  storage: {
1802
1802
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -1808,10 +1808,10 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
1808
1808
  };
1809
1809
  }, {
1810
1810
  server: {
1811
+ timeout?: number | undefined;
1811
1812
  port?: number | undefined;
1812
1813
  host?: string | undefined;
1813
1814
  cors?: boolean | undefined;
1814
- timeout?: number | undefined;
1815
1815
  };
1816
1816
  storage: {
1817
1817
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -1829,12 +1829,12 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
1829
1829
  source: z.ZodEnum<["vercel-dashboard", ".env.local"]>;
1830
1830
  }, "strip", z.ZodTypeAny, {
1831
1831
  value: string;
1832
- source: "vercel-dashboard" | ".env.local";
1833
1832
  name: string;
1833
+ source: "vercel-dashboard" | ".env.local";
1834
1834
  }, {
1835
1835
  value: string;
1836
- source: "vercel-dashboard" | ".env.local";
1837
1836
  name: string;
1837
+ source: "vercel-dashboard" | ".env.local";
1838
1838
  }>, "many">;
1839
1839
  edgeRuntime: z.ZodOptional<z.ZodObject<{
1840
1840
  maxDuration: z.ZodOptional<z.ZodNumber>;
@@ -1849,8 +1849,8 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
1849
1849
  }, "strip", z.ZodTypeAny, {
1850
1850
  environmentVariables: {
1851
1851
  value: string;
1852
- source: "vercel-dashboard" | ".env.local";
1853
1852
  name: string;
1853
+ source: "vercel-dashboard" | ".env.local";
1854
1854
  }[];
1855
1855
  edgeRuntime?: {
1856
1856
  maxDuration?: number | undefined;
@@ -1859,8 +1859,8 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
1859
1859
  }, {
1860
1860
  environmentVariables: {
1861
1861
  value: string;
1862
- source: "vercel-dashboard" | ".env.local";
1863
1862
  name: string;
1863
+ source: "vercel-dashboard" | ".env.local";
1864
1864
  }[];
1865
1865
  edgeRuntime?: {
1866
1866
  maxDuration?: number | undefined;
@@ -1876,20 +1876,20 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
1876
1876
  };
1877
1877
  kvNamespaces: {
1878
1878
  name: string;
1879
- purpose: "sessions" | "delegations" | "cache" | "general";
1879
+ purpose: "cache" | "delegations" | "sessions" | "general";
1880
1880
  }[];
1881
1881
  environmentVariables: {
1882
1882
  value: string;
1883
- source: "wrangler.toml" | "secrets" | ".dev.vars";
1884
1883
  name: string;
1884
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
1885
1885
  }[];
1886
1886
  } | undefined;
1887
1887
  node?: {
1888
1888
  server: {
1889
+ timeout: number;
1889
1890
  port: number;
1890
1891
  host: string;
1891
1892
  cors: boolean;
1892
- timeout: number;
1893
1893
  };
1894
1894
  storage: {
1895
1895
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -1903,8 +1903,8 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
1903
1903
  vercel?: {
1904
1904
  environmentVariables: {
1905
1905
  value: string;
1906
- source: "vercel-dashboard" | ".env.local";
1907
1906
  name: string;
1907
+ source: "vercel-dashboard" | ".env.local";
1908
1908
  }[];
1909
1909
  edgeRuntime?: {
1910
1910
  maxDuration?: number | undefined;
@@ -1920,20 +1920,20 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
1920
1920
  };
1921
1921
  kvNamespaces: {
1922
1922
  name: string;
1923
- purpose: "sessions" | "delegations" | "cache" | "general";
1923
+ purpose: "cache" | "delegations" | "sessions" | "general";
1924
1924
  }[];
1925
1925
  environmentVariables: {
1926
1926
  value: string;
1927
- source: "wrangler.toml" | "secrets" | ".dev.vars";
1928
1927
  name: string;
1928
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
1929
1929
  }[];
1930
1930
  } | undefined;
1931
1931
  node?: {
1932
1932
  server: {
1933
+ timeout?: number | undefined;
1933
1934
  port?: number | undefined;
1934
1935
  host?: string | undefined;
1935
1936
  cors?: boolean | undefined;
1936
- timeout?: number | undefined;
1937
1937
  };
1938
1938
  storage: {
1939
1939
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -1947,8 +1947,8 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
1947
1947
  vercel?: {
1948
1948
  environmentVariables: {
1949
1949
  value: string;
1950
- source: "vercel-dashboard" | ".env.local";
1951
1950
  name: string;
1951
+ source: "vercel-dashboard" | ".env.local";
1952
1952
  }[];
1953
1953
  edgeRuntime?: {
1954
1954
  maxDuration?: number | undefined;
@@ -1963,31 +1963,36 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
1963
1963
  serverUrl: z.ZodOptional<z.ZodString>;
1964
1964
  deploymentStatus: z.ZodOptional<z.ZodEnum<["active", "inactive", "error"]>>;
1965
1965
  }, "strip", z.ZodTypeAny, {
1966
- source: "code" | "dashboard" | "mixed";
1967
1966
  version: string;
1968
1967
  lastUpdated: string;
1968
+ source: "code" | "dashboard" | "mixed";
1969
1969
  serverUrl?: string | undefined;
1970
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
1970
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
1971
1971
  }, {
1972
- source: "code" | "dashboard" | "mixed";
1973
1972
  version: string;
1974
1973
  lastUpdated: string;
1974
+ source: "code" | "dashboard" | "mixed";
1975
1975
  serverUrl?: string | undefined;
1976
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
1976
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
1977
1977
  }>;
1978
1978
  }, "strip", z.ZodTypeAny, {
1979
+ session: {
1980
+ ttlMinutes: number;
1981
+ timestampSkewSeconds: number;
1982
+ absoluteLifetime?: number | undefined;
1983
+ };
1979
1984
  metadata: {
1980
- source: "code" | "dashboard" | "mixed";
1981
1985
  version: string;
1982
1986
  lastUpdated: string;
1987
+ source: "code" | "dashboard" | "mixed";
1983
1988
  serverUrl?: string | undefined;
1984
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
1989
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
1985
1990
  };
1986
1991
  delegation: {
1987
1992
  enabled: boolean;
1988
1993
  enforceStrictly: boolean;
1989
1994
  verifier: {
1990
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
1995
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
1991
1996
  apiUrl?: string | undefined;
1992
1997
  cacheTtl?: number | undefined;
1993
1998
  };
@@ -1999,15 +2004,15 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
1999
2004
  };
2000
2005
  };
2001
2006
  identity: {
2002
- serverDid: string;
2003
2007
  environment: "development" | "production";
2008
+ serverDid: string;
2004
2009
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
2005
2010
  agentDid?: string | undefined;
2006
2011
  };
2007
2012
  proofing: {
2008
2013
  enabled: boolean;
2009
2014
  destinations: {
2010
- type: "custom" | "agentshield" | "kta";
2015
+ type: "custom" | "kta" | "agentshield";
2011
2016
  apiUrl: string;
2012
2017
  apiKey?: string | undefined;
2013
2018
  }[];
@@ -2034,11 +2039,6 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
2034
2039
  includeProofHashes: boolean;
2035
2040
  includePayloads: boolean;
2036
2041
  };
2037
- session: {
2038
- ttlMinutes: number;
2039
- timestampSkewSeconds: number;
2040
- absoluteLifetime?: number | undefined;
2041
- };
2042
2042
  platform: {
2043
2043
  type: "cloudflare" | "node" | "vercel";
2044
2044
  cloudflare?: {
@@ -2048,20 +2048,20 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
2048
2048
  };
2049
2049
  kvNamespaces: {
2050
2050
  name: string;
2051
- purpose: "sessions" | "delegations" | "cache" | "general";
2051
+ purpose: "cache" | "delegations" | "sessions" | "general";
2052
2052
  }[];
2053
2053
  environmentVariables: {
2054
2054
  value: string;
2055
- source: "wrangler.toml" | "secrets" | ".dev.vars";
2056
2055
  name: string;
2056
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
2057
2057
  }[];
2058
2058
  } | undefined;
2059
2059
  node?: {
2060
2060
  server: {
2061
+ timeout: number;
2061
2062
  port: number;
2062
2063
  host: string;
2063
2064
  cors: boolean;
2064
- timeout: number;
2065
2065
  };
2066
2066
  storage: {
2067
2067
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -2075,8 +2075,8 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
2075
2075
  vercel?: {
2076
2076
  environmentVariables: {
2077
2077
  value: string;
2078
- source: "vercel-dashboard" | ".env.local";
2079
2078
  name: string;
2079
+ source: "vercel-dashboard" | ".env.local";
2080
2080
  }[];
2081
2081
  edgeRuntime?: {
2082
2082
  maxDuration?: number | undefined;
@@ -2085,18 +2085,23 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
2085
2085
  } | undefined;
2086
2086
  };
2087
2087
  }, {
2088
+ session: {
2089
+ ttlMinutes?: number | undefined;
2090
+ timestampSkewSeconds?: number | undefined;
2091
+ absoluteLifetime?: number | undefined;
2092
+ };
2088
2093
  metadata: {
2089
- source: "code" | "dashboard" | "mixed";
2090
2094
  version: string;
2091
2095
  lastUpdated: string;
2096
+ source: "code" | "dashboard" | "mixed";
2092
2097
  serverUrl?: string | undefined;
2093
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
2098
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
2094
2099
  };
2095
2100
  delegation: {
2096
2101
  enabled: boolean;
2097
2102
  enforceStrictly: boolean;
2098
2103
  verifier: {
2099
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
2104
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
2100
2105
  apiUrl?: string | undefined;
2101
2106
  cacheTtl?: number | undefined;
2102
2107
  };
@@ -2108,15 +2113,15 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
2108
2113
  };
2109
2114
  };
2110
2115
  identity: {
2111
- serverDid: string;
2112
2116
  environment: "development" | "production";
2117
+ serverDid: string;
2113
2118
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
2114
2119
  agentDid?: string | undefined;
2115
2120
  };
2116
2121
  proofing: {
2117
2122
  enabled: boolean;
2118
2123
  destinations: {
2119
- type: "custom" | "agentshield" | "kta";
2124
+ type: "custom" | "kta" | "agentshield";
2120
2125
  apiUrl: string;
2121
2126
  apiKey?: string | undefined;
2122
2127
  }[];
@@ -2143,11 +2148,6 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
2143
2148
  includeProofHashes: boolean;
2144
2149
  includePayloads: boolean;
2145
2150
  };
2146
- session: {
2147
- ttlMinutes?: number | undefined;
2148
- timestampSkewSeconds?: number | undefined;
2149
- absoluteLifetime?: number | undefined;
2150
- };
2151
2151
  platform: {
2152
2152
  type: "cloudflare" | "node" | "vercel";
2153
2153
  cloudflare?: {
@@ -2157,20 +2157,20 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
2157
2157
  };
2158
2158
  kvNamespaces: {
2159
2159
  name: string;
2160
- purpose: "sessions" | "delegations" | "cache" | "general";
2160
+ purpose: "cache" | "delegations" | "sessions" | "general";
2161
2161
  }[];
2162
2162
  environmentVariables: {
2163
2163
  value: string;
2164
- source: "wrangler.toml" | "secrets" | ".dev.vars";
2165
2164
  name: string;
2165
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
2166
2166
  }[];
2167
2167
  } | undefined;
2168
2168
  node?: {
2169
2169
  server: {
2170
+ timeout?: number | undefined;
2170
2171
  port?: number | undefined;
2171
2172
  host?: string | undefined;
2172
2173
  cors?: boolean | undefined;
2173
- timeout?: number | undefined;
2174
2174
  };
2175
2175
  storage: {
2176
2176
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -2184,8 +2184,8 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
2184
2184
  vercel?: {
2185
2185
  environmentVariables: {
2186
2186
  value: string;
2187
- source: "vercel-dashboard" | ".env.local";
2188
2187
  name: string;
2188
+ source: "vercel-dashboard" | ".env.local";
2189
2189
  }[];
2190
2190
  edgeRuntime?: {
2191
2191
  maxDuration?: number | undefined;
@@ -2196,18 +2196,23 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
2196
2196
  }>;
2197
2197
  }, "strip", z.ZodTypeAny, {
2198
2198
  config: {
2199
+ session: {
2200
+ ttlMinutes: number;
2201
+ timestampSkewSeconds: number;
2202
+ absoluteLifetime?: number | undefined;
2203
+ };
2199
2204
  metadata: {
2200
- source: "code" | "dashboard" | "mixed";
2201
2205
  version: string;
2202
2206
  lastUpdated: string;
2207
+ source: "code" | "dashboard" | "mixed";
2203
2208
  serverUrl?: string | undefined;
2204
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
2209
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
2205
2210
  };
2206
2211
  delegation: {
2207
2212
  enabled: boolean;
2208
2213
  enforceStrictly: boolean;
2209
2214
  verifier: {
2210
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
2215
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
2211
2216
  apiUrl?: string | undefined;
2212
2217
  cacheTtl?: number | undefined;
2213
2218
  };
@@ -2219,15 +2224,15 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
2219
2224
  };
2220
2225
  };
2221
2226
  identity: {
2222
- serverDid: string;
2223
2227
  environment: "development" | "production";
2228
+ serverDid: string;
2224
2229
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
2225
2230
  agentDid?: string | undefined;
2226
2231
  };
2227
2232
  proofing: {
2228
2233
  enabled: boolean;
2229
2234
  destinations: {
2230
- type: "custom" | "agentshield" | "kta";
2235
+ type: "custom" | "kta" | "agentshield";
2231
2236
  apiUrl: string;
2232
2237
  apiKey?: string | undefined;
2233
2238
  }[];
@@ -2254,11 +2259,6 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
2254
2259
  includeProofHashes: boolean;
2255
2260
  includePayloads: boolean;
2256
2261
  };
2257
- session: {
2258
- ttlMinutes: number;
2259
- timestampSkewSeconds: number;
2260
- absoluteLifetime?: number | undefined;
2261
- };
2262
2262
  platform: {
2263
2263
  type: "cloudflare" | "node" | "vercel";
2264
2264
  cloudflare?: {
@@ -2268,20 +2268,20 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
2268
2268
  };
2269
2269
  kvNamespaces: {
2270
2270
  name: string;
2271
- purpose: "sessions" | "delegations" | "cache" | "general";
2271
+ purpose: "cache" | "delegations" | "sessions" | "general";
2272
2272
  }[];
2273
2273
  environmentVariables: {
2274
2274
  value: string;
2275
- source: "wrangler.toml" | "secrets" | ".dev.vars";
2276
2275
  name: string;
2276
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
2277
2277
  }[];
2278
2278
  } | undefined;
2279
2279
  node?: {
2280
2280
  server: {
2281
+ timeout: number;
2281
2282
  port: number;
2282
2283
  host: string;
2283
2284
  cors: boolean;
2284
- timeout: number;
2285
2285
  };
2286
2286
  storage: {
2287
2287
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -2295,8 +2295,8 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
2295
2295
  vercel?: {
2296
2296
  environmentVariables: {
2297
2297
  value: string;
2298
- source: "vercel-dashboard" | ".env.local";
2299
2298
  name: string;
2299
+ source: "vercel-dashboard" | ".env.local";
2300
2300
  }[];
2301
2301
  edgeRuntime?: {
2302
2302
  maxDuration?: number | undefined;
@@ -2307,18 +2307,23 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
2307
2307
  };
2308
2308
  }, {
2309
2309
  config: {
2310
+ session: {
2311
+ ttlMinutes?: number | undefined;
2312
+ timestampSkewSeconds?: number | undefined;
2313
+ absoluteLifetime?: number | undefined;
2314
+ };
2310
2315
  metadata: {
2311
- source: "code" | "dashboard" | "mixed";
2312
2316
  version: string;
2313
2317
  lastUpdated: string;
2318
+ source: "code" | "dashboard" | "mixed";
2314
2319
  serverUrl?: string | undefined;
2315
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
2320
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
2316
2321
  };
2317
2322
  delegation: {
2318
2323
  enabled: boolean;
2319
2324
  enforceStrictly: boolean;
2320
2325
  verifier: {
2321
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
2326
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
2322
2327
  apiUrl?: string | undefined;
2323
2328
  cacheTtl?: number | undefined;
2324
2329
  };
@@ -2330,15 +2335,15 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
2330
2335
  };
2331
2336
  };
2332
2337
  identity: {
2333
- serverDid: string;
2334
2338
  environment: "development" | "production";
2339
+ serverDid: string;
2335
2340
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
2336
2341
  agentDid?: string | undefined;
2337
2342
  };
2338
2343
  proofing: {
2339
2344
  enabled: boolean;
2340
2345
  destinations: {
2341
- type: "custom" | "agentshield" | "kta";
2346
+ type: "custom" | "kta" | "agentshield";
2342
2347
  apiUrl: string;
2343
2348
  apiKey?: string | undefined;
2344
2349
  }[];
@@ -2365,11 +2370,6 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
2365
2370
  includeProofHashes: boolean;
2366
2371
  includePayloads: boolean;
2367
2372
  };
2368
- session: {
2369
- ttlMinutes?: number | undefined;
2370
- timestampSkewSeconds?: number | undefined;
2371
- absoluteLifetime?: number | undefined;
2372
- };
2373
2373
  platform: {
2374
2374
  type: "cloudflare" | "node" | "vercel";
2375
2375
  cloudflare?: {
@@ -2379,20 +2379,20 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
2379
2379
  };
2380
2380
  kvNamespaces: {
2381
2381
  name: string;
2382
- purpose: "sessions" | "delegations" | "cache" | "general";
2382
+ purpose: "cache" | "delegations" | "sessions" | "general";
2383
2383
  }[];
2384
2384
  environmentVariables: {
2385
2385
  value: string;
2386
- source: "wrangler.toml" | "secrets" | ".dev.vars";
2387
2386
  name: string;
2387
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
2388
2388
  }[];
2389
2389
  } | undefined;
2390
2390
  node?: {
2391
2391
  server: {
2392
+ timeout?: number | undefined;
2392
2393
  port?: number | undefined;
2393
2394
  host?: string | undefined;
2394
2395
  cors?: boolean | undefined;
2395
- timeout?: number | undefined;
2396
2396
  };
2397
2397
  storage: {
2398
2398
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -2406,8 +2406,8 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
2406
2406
  vercel?: {
2407
2407
  environmentVariables: {
2408
2408
  value: string;
2409
- source: "vercel-dashboard" | ".env.local";
2410
2409
  name: string;
2410
+ source: "vercel-dashboard" | ".env.local";
2411
2411
  }[];
2412
2412
  edgeRuntime?: {
2413
2413
  maxDuration?: number | undefined;
@@ -2431,18 +2431,23 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
2431
2431
  success: boolean;
2432
2432
  data: {
2433
2433
  config: {
2434
+ session: {
2435
+ ttlMinutes: number;
2436
+ timestampSkewSeconds: number;
2437
+ absoluteLifetime?: number | undefined;
2438
+ };
2434
2439
  metadata: {
2435
- source: "code" | "dashboard" | "mixed";
2436
2440
  version: string;
2437
2441
  lastUpdated: string;
2442
+ source: "code" | "dashboard" | "mixed";
2438
2443
  serverUrl?: string | undefined;
2439
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
2444
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
2440
2445
  };
2441
2446
  delegation: {
2442
2447
  enabled: boolean;
2443
2448
  enforceStrictly: boolean;
2444
2449
  verifier: {
2445
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
2450
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
2446
2451
  apiUrl?: string | undefined;
2447
2452
  cacheTtl?: number | undefined;
2448
2453
  };
@@ -2454,15 +2459,15 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
2454
2459
  };
2455
2460
  };
2456
2461
  identity: {
2457
- serverDid: string;
2458
2462
  environment: "development" | "production";
2463
+ serverDid: string;
2459
2464
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
2460
2465
  agentDid?: string | undefined;
2461
2466
  };
2462
2467
  proofing: {
2463
2468
  enabled: boolean;
2464
2469
  destinations: {
2465
- type: "custom" | "agentshield" | "kta";
2470
+ type: "custom" | "kta" | "agentshield";
2466
2471
  apiUrl: string;
2467
2472
  apiKey?: string | undefined;
2468
2473
  }[];
@@ -2489,11 +2494,6 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
2489
2494
  includeProofHashes: boolean;
2490
2495
  includePayloads: boolean;
2491
2496
  };
2492
- session: {
2493
- ttlMinutes: number;
2494
- timestampSkewSeconds: number;
2495
- absoluteLifetime?: number | undefined;
2496
- };
2497
2497
  platform: {
2498
2498
  type: "cloudflare" | "node" | "vercel";
2499
2499
  cloudflare?: {
@@ -2503,20 +2503,20 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
2503
2503
  };
2504
2504
  kvNamespaces: {
2505
2505
  name: string;
2506
- purpose: "sessions" | "delegations" | "cache" | "general";
2506
+ purpose: "cache" | "delegations" | "sessions" | "general";
2507
2507
  }[];
2508
2508
  environmentVariables: {
2509
2509
  value: string;
2510
- source: "wrangler.toml" | "secrets" | ".dev.vars";
2511
2510
  name: string;
2511
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
2512
2512
  }[];
2513
2513
  } | undefined;
2514
2514
  node?: {
2515
2515
  server: {
2516
+ timeout: number;
2516
2517
  port: number;
2517
2518
  host: string;
2518
2519
  cors: boolean;
2519
- timeout: number;
2520
2520
  };
2521
2521
  storage: {
2522
2522
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -2530,8 +2530,8 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
2530
2530
  vercel?: {
2531
2531
  environmentVariables: {
2532
2532
  value: string;
2533
- source: "vercel-dashboard" | ".env.local";
2534
2533
  name: string;
2534
+ source: "vercel-dashboard" | ".env.local";
2535
2535
  }[];
2536
2536
  edgeRuntime?: {
2537
2537
  maxDuration?: number | undefined;
@@ -2549,18 +2549,23 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
2549
2549
  success: boolean;
2550
2550
  data: {
2551
2551
  config: {
2552
+ session: {
2553
+ ttlMinutes?: number | undefined;
2554
+ timestampSkewSeconds?: number | undefined;
2555
+ absoluteLifetime?: number | undefined;
2556
+ };
2552
2557
  metadata: {
2553
- source: "code" | "dashboard" | "mixed";
2554
2558
  version: string;
2555
2559
  lastUpdated: string;
2560
+ source: "code" | "dashboard" | "mixed";
2556
2561
  serverUrl?: string | undefined;
2557
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
2562
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
2558
2563
  };
2559
2564
  delegation: {
2560
2565
  enabled: boolean;
2561
2566
  enforceStrictly: boolean;
2562
2567
  verifier: {
2563
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
2568
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
2564
2569
  apiUrl?: string | undefined;
2565
2570
  cacheTtl?: number | undefined;
2566
2571
  };
@@ -2572,15 +2577,15 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
2572
2577
  };
2573
2578
  };
2574
2579
  identity: {
2575
- serverDid: string;
2576
2580
  environment: "development" | "production";
2581
+ serverDid: string;
2577
2582
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
2578
2583
  agentDid?: string | undefined;
2579
2584
  };
2580
2585
  proofing: {
2581
2586
  enabled: boolean;
2582
2587
  destinations: {
2583
- type: "custom" | "agentshield" | "kta";
2588
+ type: "custom" | "kta" | "agentshield";
2584
2589
  apiUrl: string;
2585
2590
  apiKey?: string | undefined;
2586
2591
  }[];
@@ -2607,11 +2612,6 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
2607
2612
  includeProofHashes: boolean;
2608
2613
  includePayloads: boolean;
2609
2614
  };
2610
- session: {
2611
- ttlMinutes?: number | undefined;
2612
- timestampSkewSeconds?: number | undefined;
2613
- absoluteLifetime?: number | undefined;
2614
- };
2615
2615
  platform: {
2616
2616
  type: "cloudflare" | "node" | "vercel";
2617
2617
  cloudflare?: {
@@ -2621,20 +2621,20 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
2621
2621
  };
2622
2622
  kvNamespaces: {
2623
2623
  name: string;
2624
- purpose: "sessions" | "delegations" | "cache" | "general";
2624
+ purpose: "cache" | "delegations" | "sessions" | "general";
2625
2625
  }[];
2626
2626
  environmentVariables: {
2627
2627
  value: string;
2628
- source: "wrangler.toml" | "secrets" | ".dev.vars";
2629
2628
  name: string;
2629
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
2630
2630
  }[];
2631
2631
  } | undefined;
2632
2632
  node?: {
2633
2633
  server: {
2634
+ timeout?: number | undefined;
2634
2635
  port?: number | undefined;
2635
2636
  host?: string | undefined;
2636
2637
  cors?: boolean | undefined;
2637
- timeout?: number | undefined;
2638
2638
  };
2639
2639
  storage: {
2640
2640
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -2648,8 +2648,8 @@ export declare const getServerConfigResponseSchema: z.ZodObject<{
2648
2648
  vercel?: {
2649
2649
  environmentVariables: {
2650
2650
  value: string;
2651
- source: "vercel-dashboard" | ".env.local";
2652
2651
  name: string;
2652
+ source: "vercel-dashboard" | ".env.local";
2653
2653
  }[];
2654
2654
  edgeRuntime?: {
2655
2655
  maxDuration?: number | undefined;
@@ -2679,13 +2679,13 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
2679
2679
  environment: z.ZodEnum<["development", "production"]>;
2680
2680
  storageLocation: z.ZodEnum<["cloudflare-kv", "file-system", "env-vars"]>;
2681
2681
  }, "strip", z.ZodTypeAny, {
2682
- serverDid: string;
2683
2682
  environment: "development" | "production";
2683
+ serverDid: string;
2684
2684
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
2685
2685
  agentDid?: string | undefined;
2686
2686
  }, {
2687
- serverDid: string;
2688
2687
  environment: "development" | "production";
2688
+ serverDid: string;
2689
2689
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
2690
2690
  agentDid?: string | undefined;
2691
2691
  }>>;
@@ -2696,11 +2696,11 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
2696
2696
  apiUrl: z.ZodString;
2697
2697
  apiKey: z.ZodOptional<z.ZodString>;
2698
2698
  }, "strip", z.ZodTypeAny, {
2699
- type: "custom" | "agentshield" | "kta";
2699
+ type: "custom" | "kta" | "agentshield";
2700
2700
  apiUrl: string;
2701
2701
  apiKey?: string | undefined;
2702
2702
  }, {
2703
- type: "custom" | "agentshield" | "kta";
2703
+ type: "custom" | "kta" | "agentshield";
2704
2704
  apiUrl: string;
2705
2705
  apiKey?: string | undefined;
2706
2706
  }>, "many">;
@@ -2720,7 +2720,7 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
2720
2720
  }, "strip", z.ZodTypeAny, {
2721
2721
  enabled: boolean;
2722
2722
  destinations: {
2723
- type: "custom" | "agentshield" | "kta";
2723
+ type: "custom" | "kta" | "agentshield";
2724
2724
  apiUrl: string;
2725
2725
  apiKey?: string | undefined;
2726
2726
  }[];
@@ -2732,7 +2732,7 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
2732
2732
  }, {
2733
2733
  enabled: boolean;
2734
2734
  destinations: {
2735
- type: "custom" | "agentshield" | "kta";
2735
+ type: "custom" | "kta" | "agentshield";
2736
2736
  apiUrl: string;
2737
2737
  apiKey?: string | undefined;
2738
2738
  }[];
@@ -2750,11 +2750,11 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
2750
2750
  apiUrl: z.ZodOptional<z.ZodString>;
2751
2751
  cacheTtl: z.ZodOptional<z.ZodNumber>;
2752
2752
  }, "strip", z.ZodTypeAny, {
2753
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
2753
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
2754
2754
  apiUrl?: string | undefined;
2755
2755
  cacheTtl?: number | undefined;
2756
2756
  }, {
2757
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
2757
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
2758
2758
  apiUrl?: string | undefined;
2759
2759
  cacheTtl?: number | undefined;
2760
2760
  }>;
@@ -2778,7 +2778,7 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
2778
2778
  enabled: boolean;
2779
2779
  enforceStrictly: boolean;
2780
2780
  verifier: {
2781
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
2781
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
2782
2782
  apiUrl?: string | undefined;
2783
2783
  cacheTtl?: number | undefined;
2784
2784
  };
@@ -2792,7 +2792,7 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
2792
2792
  enabled: boolean;
2793
2793
  enforceStrictly: boolean;
2794
2794
  verifier: {
2795
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
2795
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
2796
2796
  apiUrl?: string | undefined;
2797
2797
  cacheTtl?: number | undefined;
2798
2798
  };
@@ -2895,10 +2895,10 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
2895
2895
  purpose: z.ZodEnum<["sessions", "delegations", "cache", "general"]>;
2896
2896
  }, "strip", z.ZodTypeAny, {
2897
2897
  name: string;
2898
- purpose: "sessions" | "delegations" | "cache" | "general";
2898
+ purpose: "cache" | "delegations" | "sessions" | "general";
2899
2899
  }, {
2900
2900
  name: string;
2901
- purpose: "sessions" | "delegations" | "cache" | "general";
2901
+ purpose: "cache" | "delegations" | "sessions" | "general";
2902
2902
  }>, "many">;
2903
2903
  environmentVariables: z.ZodArray<z.ZodObject<{
2904
2904
  name: z.ZodString;
@@ -2906,12 +2906,12 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
2906
2906
  source: z.ZodEnum<["wrangler.toml", "secrets", ".dev.vars"]>;
2907
2907
  }, "strip", z.ZodTypeAny, {
2908
2908
  value: string;
2909
- source: "wrangler.toml" | "secrets" | ".dev.vars";
2910
2909
  name: string;
2910
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
2911
2911
  }, {
2912
2912
  value: string;
2913
- source: "wrangler.toml" | "secrets" | ".dev.vars";
2914
2913
  name: string;
2914
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
2915
2915
  }>, "many">;
2916
2916
  }, "strip", z.ZodTypeAny, {
2917
2917
  workers: {
@@ -2920,12 +2920,12 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
2920
2920
  };
2921
2921
  kvNamespaces: {
2922
2922
  name: string;
2923
- purpose: "sessions" | "delegations" | "cache" | "general";
2923
+ purpose: "cache" | "delegations" | "sessions" | "general";
2924
2924
  }[];
2925
2925
  environmentVariables: {
2926
2926
  value: string;
2927
- source: "wrangler.toml" | "secrets" | ".dev.vars";
2928
2927
  name: string;
2928
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
2929
2929
  }[];
2930
2930
  }, {
2931
2931
  workers: {
@@ -2934,12 +2934,12 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
2934
2934
  };
2935
2935
  kvNamespaces: {
2936
2936
  name: string;
2937
- purpose: "sessions" | "delegations" | "cache" | "general";
2937
+ purpose: "cache" | "delegations" | "sessions" | "general";
2938
2938
  }[];
2939
2939
  environmentVariables: {
2940
2940
  value: string;
2941
- source: "wrangler.toml" | "secrets" | ".dev.vars";
2942
2941
  name: string;
2942
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
2943
2943
  }[];
2944
2944
  }>>;
2945
2945
  node: z.ZodOptional<z.ZodObject<{
@@ -2949,15 +2949,15 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
2949
2949
  cors: z.ZodDefault<z.ZodBoolean>;
2950
2950
  timeout: z.ZodDefault<z.ZodNumber>;
2951
2951
  }, "strip", z.ZodTypeAny, {
2952
+ timeout: number;
2952
2953
  port: number;
2953
2954
  host: string;
2954
2955
  cors: boolean;
2955
- timeout: number;
2956
2956
  }, {
2957
+ timeout?: number | undefined;
2957
2958
  port?: number | undefined;
2958
2959
  host?: string | undefined;
2959
2960
  cors?: boolean | undefined;
2960
- timeout?: number | undefined;
2961
2961
  }>;
2962
2962
  storage: z.ZodObject<{
2963
2963
  type: z.ZodEnum<["memory", "redis", "postgres", "mongodb"]>;
@@ -2991,10 +2991,10 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
2991
2991
  }>;
2992
2992
  }, "strip", z.ZodTypeAny, {
2993
2993
  server: {
2994
+ timeout: number;
2994
2995
  port: number;
2995
2996
  host: string;
2996
2997
  cors: boolean;
2997
- timeout: number;
2998
2998
  };
2999
2999
  storage: {
3000
3000
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -3006,10 +3006,10 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
3006
3006
  };
3007
3007
  }, {
3008
3008
  server: {
3009
+ timeout?: number | undefined;
3009
3010
  port?: number | undefined;
3010
3011
  host?: string | undefined;
3011
3012
  cors?: boolean | undefined;
3012
- timeout?: number | undefined;
3013
3013
  };
3014
3014
  storage: {
3015
3015
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -3027,12 +3027,12 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
3027
3027
  source: z.ZodEnum<["vercel-dashboard", ".env.local"]>;
3028
3028
  }, "strip", z.ZodTypeAny, {
3029
3029
  value: string;
3030
- source: "vercel-dashboard" | ".env.local";
3031
3030
  name: string;
3031
+ source: "vercel-dashboard" | ".env.local";
3032
3032
  }, {
3033
3033
  value: string;
3034
- source: "vercel-dashboard" | ".env.local";
3035
3034
  name: string;
3035
+ source: "vercel-dashboard" | ".env.local";
3036
3036
  }>, "many">;
3037
3037
  edgeRuntime: z.ZodOptional<z.ZodObject<{
3038
3038
  maxDuration: z.ZodOptional<z.ZodNumber>;
@@ -3047,8 +3047,8 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
3047
3047
  }, "strip", z.ZodTypeAny, {
3048
3048
  environmentVariables: {
3049
3049
  value: string;
3050
- source: "vercel-dashboard" | ".env.local";
3051
3050
  name: string;
3051
+ source: "vercel-dashboard" | ".env.local";
3052
3052
  }[];
3053
3053
  edgeRuntime?: {
3054
3054
  maxDuration?: number | undefined;
@@ -3057,8 +3057,8 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
3057
3057
  }, {
3058
3058
  environmentVariables: {
3059
3059
  value: string;
3060
- source: "vercel-dashboard" | ".env.local";
3061
3060
  name: string;
3061
+ source: "vercel-dashboard" | ".env.local";
3062
3062
  }[];
3063
3063
  edgeRuntime?: {
3064
3064
  maxDuration?: number | undefined;
@@ -3074,20 +3074,20 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
3074
3074
  };
3075
3075
  kvNamespaces: {
3076
3076
  name: string;
3077
- purpose: "sessions" | "delegations" | "cache" | "general";
3077
+ purpose: "cache" | "delegations" | "sessions" | "general";
3078
3078
  }[];
3079
3079
  environmentVariables: {
3080
3080
  value: string;
3081
- source: "wrangler.toml" | "secrets" | ".dev.vars";
3082
3081
  name: string;
3082
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
3083
3083
  }[];
3084
3084
  } | undefined;
3085
3085
  node?: {
3086
3086
  server: {
3087
+ timeout: number;
3087
3088
  port: number;
3088
3089
  host: string;
3089
3090
  cors: boolean;
3090
- timeout: number;
3091
3091
  };
3092
3092
  storage: {
3093
3093
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -3101,8 +3101,8 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
3101
3101
  vercel?: {
3102
3102
  environmentVariables: {
3103
3103
  value: string;
3104
- source: "vercel-dashboard" | ".env.local";
3105
3104
  name: string;
3105
+ source: "vercel-dashboard" | ".env.local";
3106
3106
  }[];
3107
3107
  edgeRuntime?: {
3108
3108
  maxDuration?: number | undefined;
@@ -3118,20 +3118,20 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
3118
3118
  };
3119
3119
  kvNamespaces: {
3120
3120
  name: string;
3121
- purpose: "sessions" | "delegations" | "cache" | "general";
3121
+ purpose: "cache" | "delegations" | "sessions" | "general";
3122
3122
  }[];
3123
3123
  environmentVariables: {
3124
3124
  value: string;
3125
- source: "wrangler.toml" | "secrets" | ".dev.vars";
3126
3125
  name: string;
3126
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
3127
3127
  }[];
3128
3128
  } | undefined;
3129
3129
  node?: {
3130
3130
  server: {
3131
+ timeout?: number | undefined;
3131
3132
  port?: number | undefined;
3132
3133
  host?: string | undefined;
3133
3134
  cors?: boolean | undefined;
3134
- timeout?: number | undefined;
3135
3135
  };
3136
3136
  storage: {
3137
3137
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -3145,8 +3145,8 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
3145
3145
  vercel?: {
3146
3146
  environmentVariables: {
3147
3147
  value: string;
3148
- source: "vercel-dashboard" | ".env.local";
3149
3148
  name: string;
3149
+ source: "vercel-dashboard" | ".env.local";
3150
3150
  }[];
3151
3151
  edgeRuntime?: {
3152
3152
  maxDuration?: number | undefined;
@@ -3161,31 +3161,36 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
3161
3161
  serverUrl: z.ZodOptional<z.ZodString>;
3162
3162
  deploymentStatus: z.ZodOptional<z.ZodEnum<["active", "inactive", "error"]>>;
3163
3163
  }, "strip", z.ZodTypeAny, {
3164
- source: "code" | "dashboard" | "mixed";
3165
3164
  version: string;
3166
3165
  lastUpdated: string;
3166
+ source: "code" | "dashboard" | "mixed";
3167
3167
  serverUrl?: string | undefined;
3168
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
3168
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
3169
3169
  }, {
3170
- source: "code" | "dashboard" | "mixed";
3171
3170
  version: string;
3172
3171
  lastUpdated: string;
3172
+ source: "code" | "dashboard" | "mixed";
3173
3173
  serverUrl?: string | undefined;
3174
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
3174
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
3175
3175
  }>>;
3176
3176
  }, "strip", z.ZodTypeAny, {
3177
+ session?: {
3178
+ ttlMinutes: number;
3179
+ timestampSkewSeconds: number;
3180
+ absoluteLifetime?: number | undefined;
3181
+ } | undefined;
3177
3182
  metadata?: {
3178
- source: "code" | "dashboard" | "mixed";
3179
3183
  version: string;
3180
3184
  lastUpdated: string;
3185
+ source: "code" | "dashboard" | "mixed";
3181
3186
  serverUrl?: string | undefined;
3182
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
3187
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
3183
3188
  } | undefined;
3184
3189
  delegation?: {
3185
3190
  enabled: boolean;
3186
3191
  enforceStrictly: boolean;
3187
3192
  verifier: {
3188
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
3193
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
3189
3194
  apiUrl?: string | undefined;
3190
3195
  cacheTtl?: number | undefined;
3191
3196
  };
@@ -3197,15 +3202,15 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
3197
3202
  };
3198
3203
  } | undefined;
3199
3204
  identity?: {
3200
- serverDid: string;
3201
3205
  environment: "development" | "production";
3206
+ serverDid: string;
3202
3207
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
3203
3208
  agentDid?: string | undefined;
3204
3209
  } | undefined;
3205
3210
  proofing?: {
3206
3211
  enabled: boolean;
3207
3212
  destinations: {
3208
- type: "custom" | "agentshield" | "kta";
3213
+ type: "custom" | "kta" | "agentshield";
3209
3214
  apiUrl: string;
3210
3215
  apiKey?: string | undefined;
3211
3216
  }[];
@@ -3232,11 +3237,6 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
3232
3237
  includeProofHashes: boolean;
3233
3238
  includePayloads: boolean;
3234
3239
  } | undefined;
3235
- session?: {
3236
- ttlMinutes: number;
3237
- timestampSkewSeconds: number;
3238
- absoluteLifetime?: number | undefined;
3239
- } | undefined;
3240
3240
  platform?: {
3241
3241
  type: "cloudflare" | "node" | "vercel";
3242
3242
  cloudflare?: {
@@ -3246,20 +3246,20 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
3246
3246
  };
3247
3247
  kvNamespaces: {
3248
3248
  name: string;
3249
- purpose: "sessions" | "delegations" | "cache" | "general";
3249
+ purpose: "cache" | "delegations" | "sessions" | "general";
3250
3250
  }[];
3251
3251
  environmentVariables: {
3252
3252
  value: string;
3253
- source: "wrangler.toml" | "secrets" | ".dev.vars";
3254
3253
  name: string;
3254
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
3255
3255
  }[];
3256
3256
  } | undefined;
3257
3257
  node?: {
3258
3258
  server: {
3259
+ timeout: number;
3259
3260
  port: number;
3260
3261
  host: string;
3261
3262
  cors: boolean;
3262
- timeout: number;
3263
3263
  };
3264
3264
  storage: {
3265
3265
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -3273,8 +3273,8 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
3273
3273
  vercel?: {
3274
3274
  environmentVariables: {
3275
3275
  value: string;
3276
- source: "vercel-dashboard" | ".env.local";
3277
3276
  name: string;
3277
+ source: "vercel-dashboard" | ".env.local";
3278
3278
  }[];
3279
3279
  edgeRuntime?: {
3280
3280
  maxDuration?: number | undefined;
@@ -3283,18 +3283,23 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
3283
3283
  } | undefined;
3284
3284
  } | undefined;
3285
3285
  }, {
3286
+ session?: {
3287
+ ttlMinutes?: number | undefined;
3288
+ timestampSkewSeconds?: number | undefined;
3289
+ absoluteLifetime?: number | undefined;
3290
+ } | undefined;
3286
3291
  metadata?: {
3287
- source: "code" | "dashboard" | "mixed";
3288
3292
  version: string;
3289
3293
  lastUpdated: string;
3294
+ source: "code" | "dashboard" | "mixed";
3290
3295
  serverUrl?: string | undefined;
3291
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
3296
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
3292
3297
  } | undefined;
3293
3298
  delegation?: {
3294
3299
  enabled: boolean;
3295
3300
  enforceStrictly: boolean;
3296
3301
  verifier: {
3297
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
3302
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
3298
3303
  apiUrl?: string | undefined;
3299
3304
  cacheTtl?: number | undefined;
3300
3305
  };
@@ -3306,15 +3311,15 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
3306
3311
  };
3307
3312
  } | undefined;
3308
3313
  identity?: {
3309
- serverDid: string;
3310
3314
  environment: "development" | "production";
3315
+ serverDid: string;
3311
3316
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
3312
3317
  agentDid?: string | undefined;
3313
3318
  } | undefined;
3314
3319
  proofing?: {
3315
3320
  enabled: boolean;
3316
3321
  destinations: {
3317
- type: "custom" | "agentshield" | "kta";
3322
+ type: "custom" | "kta" | "agentshield";
3318
3323
  apiUrl: string;
3319
3324
  apiKey?: string | undefined;
3320
3325
  }[];
@@ -3341,11 +3346,6 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
3341
3346
  includeProofHashes: boolean;
3342
3347
  includePayloads: boolean;
3343
3348
  } | undefined;
3344
- session?: {
3345
- ttlMinutes?: number | undefined;
3346
- timestampSkewSeconds?: number | undefined;
3347
- absoluteLifetime?: number | undefined;
3348
- } | undefined;
3349
3349
  platform?: {
3350
3350
  type: "cloudflare" | "node" | "vercel";
3351
3351
  cloudflare?: {
@@ -3355,20 +3355,20 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
3355
3355
  };
3356
3356
  kvNamespaces: {
3357
3357
  name: string;
3358
- purpose: "sessions" | "delegations" | "cache" | "general";
3358
+ purpose: "cache" | "delegations" | "sessions" | "general";
3359
3359
  }[];
3360
3360
  environmentVariables: {
3361
3361
  value: string;
3362
- source: "wrangler.toml" | "secrets" | ".dev.vars";
3363
3362
  name: string;
3363
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
3364
3364
  }[];
3365
3365
  } | undefined;
3366
3366
  node?: {
3367
3367
  server: {
3368
+ timeout?: number | undefined;
3368
3369
  port?: number | undefined;
3369
3370
  host?: string | undefined;
3370
3371
  cors?: boolean | undefined;
3371
- timeout?: number | undefined;
3372
3372
  };
3373
3373
  storage: {
3374
3374
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -3382,8 +3382,8 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
3382
3382
  vercel?: {
3383
3383
  environmentVariables: {
3384
3384
  value: string;
3385
- source: "vercel-dashboard" | ".env.local";
3386
3385
  name: string;
3386
+ source: "vercel-dashboard" | ".env.local";
3387
3387
  }[];
3388
3388
  edgeRuntime?: {
3389
3389
  maxDuration?: number | undefined;
@@ -3395,18 +3395,23 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
3395
3395
  }, "strip", z.ZodTypeAny, {
3396
3396
  projectId: string;
3397
3397
  config: {
3398
+ session?: {
3399
+ ttlMinutes: number;
3400
+ timestampSkewSeconds: number;
3401
+ absoluteLifetime?: number | undefined;
3402
+ } | undefined;
3398
3403
  metadata?: {
3399
- source: "code" | "dashboard" | "mixed";
3400
3404
  version: string;
3401
3405
  lastUpdated: string;
3406
+ source: "code" | "dashboard" | "mixed";
3402
3407
  serverUrl?: string | undefined;
3403
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
3408
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
3404
3409
  } | undefined;
3405
3410
  delegation?: {
3406
3411
  enabled: boolean;
3407
3412
  enforceStrictly: boolean;
3408
3413
  verifier: {
3409
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
3414
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
3410
3415
  apiUrl?: string | undefined;
3411
3416
  cacheTtl?: number | undefined;
3412
3417
  };
@@ -3418,15 +3423,15 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
3418
3423
  };
3419
3424
  } | undefined;
3420
3425
  identity?: {
3421
- serverDid: string;
3422
3426
  environment: "development" | "production";
3427
+ serverDid: string;
3423
3428
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
3424
3429
  agentDid?: string | undefined;
3425
3430
  } | undefined;
3426
3431
  proofing?: {
3427
3432
  enabled: boolean;
3428
3433
  destinations: {
3429
- type: "custom" | "agentshield" | "kta";
3434
+ type: "custom" | "kta" | "agentshield";
3430
3435
  apiUrl: string;
3431
3436
  apiKey?: string | undefined;
3432
3437
  }[];
@@ -3453,11 +3458,6 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
3453
3458
  includeProofHashes: boolean;
3454
3459
  includePayloads: boolean;
3455
3460
  } | undefined;
3456
- session?: {
3457
- ttlMinutes: number;
3458
- timestampSkewSeconds: number;
3459
- absoluteLifetime?: number | undefined;
3460
- } | undefined;
3461
3461
  platform?: {
3462
3462
  type: "cloudflare" | "node" | "vercel";
3463
3463
  cloudflare?: {
@@ -3467,20 +3467,20 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
3467
3467
  };
3468
3468
  kvNamespaces: {
3469
3469
  name: string;
3470
- purpose: "sessions" | "delegations" | "cache" | "general";
3470
+ purpose: "cache" | "delegations" | "sessions" | "general";
3471
3471
  }[];
3472
3472
  environmentVariables: {
3473
3473
  value: string;
3474
- source: "wrangler.toml" | "secrets" | ".dev.vars";
3475
3474
  name: string;
3475
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
3476
3476
  }[];
3477
3477
  } | undefined;
3478
3478
  node?: {
3479
3479
  server: {
3480
+ timeout: number;
3480
3481
  port: number;
3481
3482
  host: string;
3482
3483
  cors: boolean;
3483
- timeout: number;
3484
3484
  };
3485
3485
  storage: {
3486
3486
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -3494,8 +3494,8 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
3494
3494
  vercel?: {
3495
3495
  environmentVariables: {
3496
3496
  value: string;
3497
- source: "vercel-dashboard" | ".env.local";
3498
3497
  name: string;
3498
+ source: "vercel-dashboard" | ".env.local";
3499
3499
  }[];
3500
3500
  edgeRuntime?: {
3501
3501
  maxDuration?: number | undefined;
@@ -3507,18 +3507,23 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
3507
3507
  }, {
3508
3508
  projectId: string;
3509
3509
  config: {
3510
+ session?: {
3511
+ ttlMinutes?: number | undefined;
3512
+ timestampSkewSeconds?: number | undefined;
3513
+ absoluteLifetime?: number | undefined;
3514
+ } | undefined;
3510
3515
  metadata?: {
3511
- source: "code" | "dashboard" | "mixed";
3512
3516
  version: string;
3513
3517
  lastUpdated: string;
3518
+ source: "code" | "dashboard" | "mixed";
3514
3519
  serverUrl?: string | undefined;
3515
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
3520
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
3516
3521
  } | undefined;
3517
3522
  delegation?: {
3518
3523
  enabled: boolean;
3519
3524
  enforceStrictly: boolean;
3520
3525
  verifier: {
3521
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
3526
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
3522
3527
  apiUrl?: string | undefined;
3523
3528
  cacheTtl?: number | undefined;
3524
3529
  };
@@ -3530,15 +3535,15 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
3530
3535
  };
3531
3536
  } | undefined;
3532
3537
  identity?: {
3533
- serverDid: string;
3534
3538
  environment: "development" | "production";
3539
+ serverDid: string;
3535
3540
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
3536
3541
  agentDid?: string | undefined;
3537
3542
  } | undefined;
3538
3543
  proofing?: {
3539
3544
  enabled: boolean;
3540
3545
  destinations: {
3541
- type: "custom" | "agentshield" | "kta";
3546
+ type: "custom" | "kta" | "agentshield";
3542
3547
  apiUrl: string;
3543
3548
  apiKey?: string | undefined;
3544
3549
  }[];
@@ -3565,11 +3570,6 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
3565
3570
  includeProofHashes: boolean;
3566
3571
  includePayloads: boolean;
3567
3572
  } | undefined;
3568
- session?: {
3569
- ttlMinutes?: number | undefined;
3570
- timestampSkewSeconds?: number | undefined;
3571
- absoluteLifetime?: number | undefined;
3572
- } | undefined;
3573
3573
  platform?: {
3574
3574
  type: "cloudflare" | "node" | "vercel";
3575
3575
  cloudflare?: {
@@ -3579,20 +3579,20 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
3579
3579
  };
3580
3580
  kvNamespaces: {
3581
3581
  name: string;
3582
- purpose: "sessions" | "delegations" | "cache" | "general";
3582
+ purpose: "cache" | "delegations" | "sessions" | "general";
3583
3583
  }[];
3584
3584
  environmentVariables: {
3585
3585
  value: string;
3586
- source: "wrangler.toml" | "secrets" | ".dev.vars";
3587
3586
  name: string;
3587
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
3588
3588
  }[];
3589
3589
  } | undefined;
3590
3590
  node?: {
3591
3591
  server: {
3592
+ timeout?: number | undefined;
3592
3593
  port?: number | undefined;
3593
3594
  host?: string | undefined;
3594
3595
  cors?: boolean | undefined;
3595
- timeout?: number | undefined;
3596
3596
  };
3597
3597
  storage: {
3598
3598
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -3606,8 +3606,8 @@ export declare const updateServerConfigRequestSchema: z.ZodObject<{
3606
3606
  vercel?: {
3607
3607
  environmentVariables: {
3608
3608
  value: string;
3609
- source: "vercel-dashboard" | ".env.local";
3610
3609
  name: string;
3610
+ source: "vercel-dashboard" | ".env.local";
3611
3611
  }[];
3612
3612
  edgeRuntime?: {
3613
3613
  maxDuration?: number | undefined;
@@ -3633,13 +3633,13 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
3633
3633
  environment: z.ZodEnum<["development", "production"]>;
3634
3634
  storageLocation: z.ZodEnum<["cloudflare-kv", "file-system", "env-vars"]>;
3635
3635
  }, "strip", z.ZodTypeAny, {
3636
- serverDid: string;
3637
3636
  environment: "development" | "production";
3637
+ serverDid: string;
3638
3638
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
3639
3639
  agentDid?: string | undefined;
3640
3640
  }, {
3641
- serverDid: string;
3642
3641
  environment: "development" | "production";
3642
+ serverDid: string;
3643
3643
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
3644
3644
  agentDid?: string | undefined;
3645
3645
  }>;
@@ -3650,11 +3650,11 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
3650
3650
  apiUrl: z.ZodString;
3651
3651
  apiKey: z.ZodOptional<z.ZodString>;
3652
3652
  }, "strip", z.ZodTypeAny, {
3653
- type: "custom" | "agentshield" | "kta";
3653
+ type: "custom" | "kta" | "agentshield";
3654
3654
  apiUrl: string;
3655
3655
  apiKey?: string | undefined;
3656
3656
  }, {
3657
- type: "custom" | "agentshield" | "kta";
3657
+ type: "custom" | "kta" | "agentshield";
3658
3658
  apiUrl: string;
3659
3659
  apiKey?: string | undefined;
3660
3660
  }>, "many">;
@@ -3674,7 +3674,7 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
3674
3674
  }, "strip", z.ZodTypeAny, {
3675
3675
  enabled: boolean;
3676
3676
  destinations: {
3677
- type: "custom" | "agentshield" | "kta";
3677
+ type: "custom" | "kta" | "agentshield";
3678
3678
  apiUrl: string;
3679
3679
  apiKey?: string | undefined;
3680
3680
  }[];
@@ -3686,7 +3686,7 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
3686
3686
  }, {
3687
3687
  enabled: boolean;
3688
3688
  destinations: {
3689
- type: "custom" | "agentshield" | "kta";
3689
+ type: "custom" | "kta" | "agentshield";
3690
3690
  apiUrl: string;
3691
3691
  apiKey?: string | undefined;
3692
3692
  }[];
@@ -3704,11 +3704,11 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
3704
3704
  apiUrl: z.ZodOptional<z.ZodString>;
3705
3705
  cacheTtl: z.ZodOptional<z.ZodNumber>;
3706
3706
  }, "strip", z.ZodTypeAny, {
3707
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
3707
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
3708
3708
  apiUrl?: string | undefined;
3709
3709
  cacheTtl?: number | undefined;
3710
3710
  }, {
3711
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
3711
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
3712
3712
  apiUrl?: string | undefined;
3713
3713
  cacheTtl?: number | undefined;
3714
3714
  }>;
@@ -3732,7 +3732,7 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
3732
3732
  enabled: boolean;
3733
3733
  enforceStrictly: boolean;
3734
3734
  verifier: {
3735
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
3735
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
3736
3736
  apiUrl?: string | undefined;
3737
3737
  cacheTtl?: number | undefined;
3738
3738
  };
@@ -3746,7 +3746,7 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
3746
3746
  enabled: boolean;
3747
3747
  enforceStrictly: boolean;
3748
3748
  verifier: {
3749
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
3749
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
3750
3750
  apiUrl?: string | undefined;
3751
3751
  cacheTtl?: number | undefined;
3752
3752
  };
@@ -3849,10 +3849,10 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
3849
3849
  purpose: z.ZodEnum<["sessions", "delegations", "cache", "general"]>;
3850
3850
  }, "strip", z.ZodTypeAny, {
3851
3851
  name: string;
3852
- purpose: "sessions" | "delegations" | "cache" | "general";
3852
+ purpose: "cache" | "delegations" | "sessions" | "general";
3853
3853
  }, {
3854
3854
  name: string;
3855
- purpose: "sessions" | "delegations" | "cache" | "general";
3855
+ purpose: "cache" | "delegations" | "sessions" | "general";
3856
3856
  }>, "many">;
3857
3857
  environmentVariables: z.ZodArray<z.ZodObject<{
3858
3858
  name: z.ZodString;
@@ -3860,12 +3860,12 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
3860
3860
  source: z.ZodEnum<["wrangler.toml", "secrets", ".dev.vars"]>;
3861
3861
  }, "strip", z.ZodTypeAny, {
3862
3862
  value: string;
3863
- source: "wrangler.toml" | "secrets" | ".dev.vars";
3864
3863
  name: string;
3864
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
3865
3865
  }, {
3866
3866
  value: string;
3867
- source: "wrangler.toml" | "secrets" | ".dev.vars";
3868
3867
  name: string;
3868
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
3869
3869
  }>, "many">;
3870
3870
  }, "strip", z.ZodTypeAny, {
3871
3871
  workers: {
@@ -3874,12 +3874,12 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
3874
3874
  };
3875
3875
  kvNamespaces: {
3876
3876
  name: string;
3877
- purpose: "sessions" | "delegations" | "cache" | "general";
3877
+ purpose: "cache" | "delegations" | "sessions" | "general";
3878
3878
  }[];
3879
3879
  environmentVariables: {
3880
3880
  value: string;
3881
- source: "wrangler.toml" | "secrets" | ".dev.vars";
3882
3881
  name: string;
3882
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
3883
3883
  }[];
3884
3884
  }, {
3885
3885
  workers: {
@@ -3888,12 +3888,12 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
3888
3888
  };
3889
3889
  kvNamespaces: {
3890
3890
  name: string;
3891
- purpose: "sessions" | "delegations" | "cache" | "general";
3891
+ purpose: "cache" | "delegations" | "sessions" | "general";
3892
3892
  }[];
3893
3893
  environmentVariables: {
3894
3894
  value: string;
3895
- source: "wrangler.toml" | "secrets" | ".dev.vars";
3896
3895
  name: string;
3896
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
3897
3897
  }[];
3898
3898
  }>>;
3899
3899
  node: z.ZodOptional<z.ZodObject<{
@@ -3903,15 +3903,15 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
3903
3903
  cors: z.ZodDefault<z.ZodBoolean>;
3904
3904
  timeout: z.ZodDefault<z.ZodNumber>;
3905
3905
  }, "strip", z.ZodTypeAny, {
3906
+ timeout: number;
3906
3907
  port: number;
3907
3908
  host: string;
3908
3909
  cors: boolean;
3909
- timeout: number;
3910
3910
  }, {
3911
+ timeout?: number | undefined;
3911
3912
  port?: number | undefined;
3912
3913
  host?: string | undefined;
3913
3914
  cors?: boolean | undefined;
3914
- timeout?: number | undefined;
3915
3915
  }>;
3916
3916
  storage: z.ZodObject<{
3917
3917
  type: z.ZodEnum<["memory", "redis", "postgres", "mongodb"]>;
@@ -3945,10 +3945,10 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
3945
3945
  }>;
3946
3946
  }, "strip", z.ZodTypeAny, {
3947
3947
  server: {
3948
+ timeout: number;
3948
3949
  port: number;
3949
3950
  host: string;
3950
3951
  cors: boolean;
3951
- timeout: number;
3952
3952
  };
3953
3953
  storage: {
3954
3954
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -3960,10 +3960,10 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
3960
3960
  };
3961
3961
  }, {
3962
3962
  server: {
3963
+ timeout?: number | undefined;
3963
3964
  port?: number | undefined;
3964
3965
  host?: string | undefined;
3965
3966
  cors?: boolean | undefined;
3966
- timeout?: number | undefined;
3967
3967
  };
3968
3968
  storage: {
3969
3969
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -3981,12 +3981,12 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
3981
3981
  source: z.ZodEnum<["vercel-dashboard", ".env.local"]>;
3982
3982
  }, "strip", z.ZodTypeAny, {
3983
3983
  value: string;
3984
- source: "vercel-dashboard" | ".env.local";
3985
3984
  name: string;
3985
+ source: "vercel-dashboard" | ".env.local";
3986
3986
  }, {
3987
3987
  value: string;
3988
- source: "vercel-dashboard" | ".env.local";
3989
3988
  name: string;
3989
+ source: "vercel-dashboard" | ".env.local";
3990
3990
  }>, "many">;
3991
3991
  edgeRuntime: z.ZodOptional<z.ZodObject<{
3992
3992
  maxDuration: z.ZodOptional<z.ZodNumber>;
@@ -4001,8 +4001,8 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4001
4001
  }, "strip", z.ZodTypeAny, {
4002
4002
  environmentVariables: {
4003
4003
  value: string;
4004
- source: "vercel-dashboard" | ".env.local";
4005
4004
  name: string;
4005
+ source: "vercel-dashboard" | ".env.local";
4006
4006
  }[];
4007
4007
  edgeRuntime?: {
4008
4008
  maxDuration?: number | undefined;
@@ -4011,8 +4011,8 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4011
4011
  }, {
4012
4012
  environmentVariables: {
4013
4013
  value: string;
4014
- source: "vercel-dashboard" | ".env.local";
4015
4014
  name: string;
4015
+ source: "vercel-dashboard" | ".env.local";
4016
4016
  }[];
4017
4017
  edgeRuntime?: {
4018
4018
  maxDuration?: number | undefined;
@@ -4028,20 +4028,20 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4028
4028
  };
4029
4029
  kvNamespaces: {
4030
4030
  name: string;
4031
- purpose: "sessions" | "delegations" | "cache" | "general";
4031
+ purpose: "cache" | "delegations" | "sessions" | "general";
4032
4032
  }[];
4033
4033
  environmentVariables: {
4034
4034
  value: string;
4035
- source: "wrangler.toml" | "secrets" | ".dev.vars";
4036
4035
  name: string;
4036
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
4037
4037
  }[];
4038
4038
  } | undefined;
4039
4039
  node?: {
4040
4040
  server: {
4041
+ timeout: number;
4041
4042
  port: number;
4042
4043
  host: string;
4043
4044
  cors: boolean;
4044
- timeout: number;
4045
4045
  };
4046
4046
  storage: {
4047
4047
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -4055,8 +4055,8 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4055
4055
  vercel?: {
4056
4056
  environmentVariables: {
4057
4057
  value: string;
4058
- source: "vercel-dashboard" | ".env.local";
4059
4058
  name: string;
4059
+ source: "vercel-dashboard" | ".env.local";
4060
4060
  }[];
4061
4061
  edgeRuntime?: {
4062
4062
  maxDuration?: number | undefined;
@@ -4072,20 +4072,20 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4072
4072
  };
4073
4073
  kvNamespaces: {
4074
4074
  name: string;
4075
- purpose: "sessions" | "delegations" | "cache" | "general";
4075
+ purpose: "cache" | "delegations" | "sessions" | "general";
4076
4076
  }[];
4077
4077
  environmentVariables: {
4078
4078
  value: string;
4079
- source: "wrangler.toml" | "secrets" | ".dev.vars";
4080
4079
  name: string;
4080
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
4081
4081
  }[];
4082
4082
  } | undefined;
4083
4083
  node?: {
4084
4084
  server: {
4085
+ timeout?: number | undefined;
4085
4086
  port?: number | undefined;
4086
4087
  host?: string | undefined;
4087
4088
  cors?: boolean | undefined;
4088
- timeout?: number | undefined;
4089
4089
  };
4090
4090
  storage: {
4091
4091
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -4099,8 +4099,8 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4099
4099
  vercel?: {
4100
4100
  environmentVariables: {
4101
4101
  value: string;
4102
- source: "vercel-dashboard" | ".env.local";
4103
4102
  name: string;
4103
+ source: "vercel-dashboard" | ".env.local";
4104
4104
  }[];
4105
4105
  edgeRuntime?: {
4106
4106
  maxDuration?: number | undefined;
@@ -4115,31 +4115,36 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4115
4115
  serverUrl: z.ZodOptional<z.ZodString>;
4116
4116
  deploymentStatus: z.ZodOptional<z.ZodEnum<["active", "inactive", "error"]>>;
4117
4117
  }, "strip", z.ZodTypeAny, {
4118
- source: "code" | "dashboard" | "mixed";
4119
4118
  version: string;
4120
4119
  lastUpdated: string;
4120
+ source: "code" | "dashboard" | "mixed";
4121
4121
  serverUrl?: string | undefined;
4122
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
4122
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
4123
4123
  }, {
4124
- source: "code" | "dashboard" | "mixed";
4125
4124
  version: string;
4126
4125
  lastUpdated: string;
4126
+ source: "code" | "dashboard" | "mixed";
4127
4127
  serverUrl?: string | undefined;
4128
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
4128
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
4129
4129
  }>;
4130
4130
  }, "strip", z.ZodTypeAny, {
4131
+ session: {
4132
+ ttlMinutes: number;
4133
+ timestampSkewSeconds: number;
4134
+ absoluteLifetime?: number | undefined;
4135
+ };
4131
4136
  metadata: {
4132
- source: "code" | "dashboard" | "mixed";
4133
4137
  version: string;
4134
4138
  lastUpdated: string;
4139
+ source: "code" | "dashboard" | "mixed";
4135
4140
  serverUrl?: string | undefined;
4136
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
4141
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
4137
4142
  };
4138
4143
  delegation: {
4139
4144
  enabled: boolean;
4140
4145
  enforceStrictly: boolean;
4141
4146
  verifier: {
4142
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
4147
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
4143
4148
  apiUrl?: string | undefined;
4144
4149
  cacheTtl?: number | undefined;
4145
4150
  };
@@ -4151,15 +4156,15 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4151
4156
  };
4152
4157
  };
4153
4158
  identity: {
4154
- serverDid: string;
4155
4159
  environment: "development" | "production";
4160
+ serverDid: string;
4156
4161
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
4157
4162
  agentDid?: string | undefined;
4158
4163
  };
4159
4164
  proofing: {
4160
4165
  enabled: boolean;
4161
4166
  destinations: {
4162
- type: "custom" | "agentshield" | "kta";
4167
+ type: "custom" | "kta" | "agentshield";
4163
4168
  apiUrl: string;
4164
4169
  apiKey?: string | undefined;
4165
4170
  }[];
@@ -4186,11 +4191,6 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4186
4191
  includeProofHashes: boolean;
4187
4192
  includePayloads: boolean;
4188
4193
  };
4189
- session: {
4190
- ttlMinutes: number;
4191
- timestampSkewSeconds: number;
4192
- absoluteLifetime?: number | undefined;
4193
- };
4194
4194
  platform: {
4195
4195
  type: "cloudflare" | "node" | "vercel";
4196
4196
  cloudflare?: {
@@ -4200,20 +4200,20 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4200
4200
  };
4201
4201
  kvNamespaces: {
4202
4202
  name: string;
4203
- purpose: "sessions" | "delegations" | "cache" | "general";
4203
+ purpose: "cache" | "delegations" | "sessions" | "general";
4204
4204
  }[];
4205
4205
  environmentVariables: {
4206
4206
  value: string;
4207
- source: "wrangler.toml" | "secrets" | ".dev.vars";
4208
4207
  name: string;
4208
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
4209
4209
  }[];
4210
4210
  } | undefined;
4211
4211
  node?: {
4212
4212
  server: {
4213
+ timeout: number;
4213
4214
  port: number;
4214
4215
  host: string;
4215
4216
  cors: boolean;
4216
- timeout: number;
4217
4217
  };
4218
4218
  storage: {
4219
4219
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -4227,8 +4227,8 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4227
4227
  vercel?: {
4228
4228
  environmentVariables: {
4229
4229
  value: string;
4230
- source: "vercel-dashboard" | ".env.local";
4231
4230
  name: string;
4231
+ source: "vercel-dashboard" | ".env.local";
4232
4232
  }[];
4233
4233
  edgeRuntime?: {
4234
4234
  maxDuration?: number | undefined;
@@ -4237,18 +4237,23 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4237
4237
  } | undefined;
4238
4238
  };
4239
4239
  }, {
4240
+ session: {
4241
+ ttlMinutes?: number | undefined;
4242
+ timestampSkewSeconds?: number | undefined;
4243
+ absoluteLifetime?: number | undefined;
4244
+ };
4240
4245
  metadata: {
4241
- source: "code" | "dashboard" | "mixed";
4242
4246
  version: string;
4243
4247
  lastUpdated: string;
4248
+ source: "code" | "dashboard" | "mixed";
4244
4249
  serverUrl?: string | undefined;
4245
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
4250
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
4246
4251
  };
4247
4252
  delegation: {
4248
4253
  enabled: boolean;
4249
4254
  enforceStrictly: boolean;
4250
4255
  verifier: {
4251
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
4256
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
4252
4257
  apiUrl?: string | undefined;
4253
4258
  cacheTtl?: number | undefined;
4254
4259
  };
@@ -4260,15 +4265,15 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4260
4265
  };
4261
4266
  };
4262
4267
  identity: {
4263
- serverDid: string;
4264
4268
  environment: "development" | "production";
4269
+ serverDid: string;
4265
4270
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
4266
4271
  agentDid?: string | undefined;
4267
4272
  };
4268
4273
  proofing: {
4269
4274
  enabled: boolean;
4270
4275
  destinations: {
4271
- type: "custom" | "agentshield" | "kta";
4276
+ type: "custom" | "kta" | "agentshield";
4272
4277
  apiUrl: string;
4273
4278
  apiKey?: string | undefined;
4274
4279
  }[];
@@ -4295,11 +4300,6 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4295
4300
  includeProofHashes: boolean;
4296
4301
  includePayloads: boolean;
4297
4302
  };
4298
- session: {
4299
- ttlMinutes?: number | undefined;
4300
- timestampSkewSeconds?: number | undefined;
4301
- absoluteLifetime?: number | undefined;
4302
- };
4303
4303
  platform: {
4304
4304
  type: "cloudflare" | "node" | "vercel";
4305
4305
  cloudflare?: {
@@ -4309,20 +4309,20 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4309
4309
  };
4310
4310
  kvNamespaces: {
4311
4311
  name: string;
4312
- purpose: "sessions" | "delegations" | "cache" | "general";
4312
+ purpose: "cache" | "delegations" | "sessions" | "general";
4313
4313
  }[];
4314
4314
  environmentVariables: {
4315
4315
  value: string;
4316
- source: "wrangler.toml" | "secrets" | ".dev.vars";
4317
4316
  name: string;
4317
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
4318
4318
  }[];
4319
4319
  } | undefined;
4320
4320
  node?: {
4321
4321
  server: {
4322
+ timeout?: number | undefined;
4322
4323
  port?: number | undefined;
4323
4324
  host?: string | undefined;
4324
4325
  cors?: boolean | undefined;
4325
- timeout?: number | undefined;
4326
4326
  };
4327
4327
  storage: {
4328
4328
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -4336,8 +4336,8 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4336
4336
  vercel?: {
4337
4337
  environmentVariables: {
4338
4338
  value: string;
4339
- source: "vercel-dashboard" | ".env.local";
4340
4339
  name: string;
4340
+ source: "vercel-dashboard" | ".env.local";
4341
4341
  }[];
4342
4342
  edgeRuntime?: {
4343
4343
  maxDuration?: number | undefined;
@@ -4361,18 +4361,23 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4361
4361
  }>, "many">;
4362
4362
  }, "strip", z.ZodTypeAny, {
4363
4363
  config: {
4364
+ session: {
4365
+ ttlMinutes: number;
4366
+ timestampSkewSeconds: number;
4367
+ absoluteLifetime?: number | undefined;
4368
+ };
4364
4369
  metadata: {
4365
- source: "code" | "dashboard" | "mixed";
4366
4370
  version: string;
4367
4371
  lastUpdated: string;
4372
+ source: "code" | "dashboard" | "mixed";
4368
4373
  serverUrl?: string | undefined;
4369
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
4374
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
4370
4375
  };
4371
4376
  delegation: {
4372
4377
  enabled: boolean;
4373
4378
  enforceStrictly: boolean;
4374
4379
  verifier: {
4375
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
4380
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
4376
4381
  apiUrl?: string | undefined;
4377
4382
  cacheTtl?: number | undefined;
4378
4383
  };
@@ -4384,15 +4389,15 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4384
4389
  };
4385
4390
  };
4386
4391
  identity: {
4387
- serverDid: string;
4388
4392
  environment: "development" | "production";
4393
+ serverDid: string;
4389
4394
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
4390
4395
  agentDid?: string | undefined;
4391
4396
  };
4392
4397
  proofing: {
4393
4398
  enabled: boolean;
4394
4399
  destinations: {
4395
- type: "custom" | "agentshield" | "kta";
4400
+ type: "custom" | "kta" | "agentshield";
4396
4401
  apiUrl: string;
4397
4402
  apiKey?: string | undefined;
4398
4403
  }[];
@@ -4419,11 +4424,6 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4419
4424
  includeProofHashes: boolean;
4420
4425
  includePayloads: boolean;
4421
4426
  };
4422
- session: {
4423
- ttlMinutes: number;
4424
- timestampSkewSeconds: number;
4425
- absoluteLifetime?: number | undefined;
4426
- };
4427
4427
  platform: {
4428
4428
  type: "cloudflare" | "node" | "vercel";
4429
4429
  cloudflare?: {
@@ -4433,20 +4433,20 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4433
4433
  };
4434
4434
  kvNamespaces: {
4435
4435
  name: string;
4436
- purpose: "sessions" | "delegations" | "cache" | "general";
4436
+ purpose: "cache" | "delegations" | "sessions" | "general";
4437
4437
  }[];
4438
4438
  environmentVariables: {
4439
4439
  value: string;
4440
- source: "wrangler.toml" | "secrets" | ".dev.vars";
4441
4440
  name: string;
4441
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
4442
4442
  }[];
4443
4443
  } | undefined;
4444
4444
  node?: {
4445
4445
  server: {
4446
+ timeout: number;
4446
4447
  port: number;
4447
4448
  host: string;
4448
4449
  cors: boolean;
4449
- timeout: number;
4450
4450
  };
4451
4451
  storage: {
4452
4452
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -4460,8 +4460,8 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4460
4460
  vercel?: {
4461
4461
  environmentVariables: {
4462
4462
  value: string;
4463
- source: "vercel-dashboard" | ".env.local";
4464
4463
  name: string;
4464
+ source: "vercel-dashboard" | ".env.local";
4465
4465
  }[];
4466
4466
  edgeRuntime?: {
4467
4467
  maxDuration?: number | undefined;
@@ -4477,18 +4477,23 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4477
4477
  }[];
4478
4478
  }, {
4479
4479
  config: {
4480
+ session: {
4481
+ ttlMinutes?: number | undefined;
4482
+ timestampSkewSeconds?: number | undefined;
4483
+ absoluteLifetime?: number | undefined;
4484
+ };
4480
4485
  metadata: {
4481
- source: "code" | "dashboard" | "mixed";
4482
4486
  version: string;
4483
4487
  lastUpdated: string;
4488
+ source: "code" | "dashboard" | "mixed";
4484
4489
  serverUrl?: string | undefined;
4485
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
4490
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
4486
4491
  };
4487
4492
  delegation: {
4488
4493
  enabled: boolean;
4489
4494
  enforceStrictly: boolean;
4490
4495
  verifier: {
4491
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
4496
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
4492
4497
  apiUrl?: string | undefined;
4493
4498
  cacheTtl?: number | undefined;
4494
4499
  };
@@ -4500,15 +4505,15 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4500
4505
  };
4501
4506
  };
4502
4507
  identity: {
4503
- serverDid: string;
4504
4508
  environment: "development" | "production";
4509
+ serverDid: string;
4505
4510
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
4506
4511
  agentDid?: string | undefined;
4507
4512
  };
4508
4513
  proofing: {
4509
4514
  enabled: boolean;
4510
4515
  destinations: {
4511
- type: "custom" | "agentshield" | "kta";
4516
+ type: "custom" | "kta" | "agentshield";
4512
4517
  apiUrl: string;
4513
4518
  apiKey?: string | undefined;
4514
4519
  }[];
@@ -4535,11 +4540,6 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4535
4540
  includeProofHashes: boolean;
4536
4541
  includePayloads: boolean;
4537
4542
  };
4538
- session: {
4539
- ttlMinutes?: number | undefined;
4540
- timestampSkewSeconds?: number | undefined;
4541
- absoluteLifetime?: number | undefined;
4542
- };
4543
4543
  platform: {
4544
4544
  type: "cloudflare" | "node" | "vercel";
4545
4545
  cloudflare?: {
@@ -4549,20 +4549,20 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4549
4549
  };
4550
4550
  kvNamespaces: {
4551
4551
  name: string;
4552
- purpose: "sessions" | "delegations" | "cache" | "general";
4552
+ purpose: "cache" | "delegations" | "sessions" | "general";
4553
4553
  }[];
4554
4554
  environmentVariables: {
4555
4555
  value: string;
4556
- source: "wrangler.toml" | "secrets" | ".dev.vars";
4557
4556
  name: string;
4557
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
4558
4558
  }[];
4559
4559
  } | undefined;
4560
4560
  node?: {
4561
4561
  server: {
4562
+ timeout?: number | undefined;
4562
4563
  port?: number | undefined;
4563
4564
  host?: string | undefined;
4564
4565
  cors?: boolean | undefined;
4565
- timeout?: number | undefined;
4566
4566
  };
4567
4567
  storage: {
4568
4568
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -4576,8 +4576,8 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4576
4576
  vercel?: {
4577
4577
  environmentVariables: {
4578
4578
  value: string;
4579
- source: "vercel-dashboard" | ".env.local";
4580
4579
  name: string;
4580
+ source: "vercel-dashboard" | ".env.local";
4581
4581
  }[];
4582
4582
  edgeRuntime?: {
4583
4583
  maxDuration?: number | undefined;
@@ -4606,18 +4606,23 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4606
4606
  success: boolean;
4607
4607
  data: {
4608
4608
  config: {
4609
+ session: {
4610
+ ttlMinutes: number;
4611
+ timestampSkewSeconds: number;
4612
+ absoluteLifetime?: number | undefined;
4613
+ };
4609
4614
  metadata: {
4610
- source: "code" | "dashboard" | "mixed";
4611
4615
  version: string;
4612
4616
  lastUpdated: string;
4617
+ source: "code" | "dashboard" | "mixed";
4613
4618
  serverUrl?: string | undefined;
4614
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
4619
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
4615
4620
  };
4616
4621
  delegation: {
4617
4622
  enabled: boolean;
4618
4623
  enforceStrictly: boolean;
4619
4624
  verifier: {
4620
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
4625
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
4621
4626
  apiUrl?: string | undefined;
4622
4627
  cacheTtl?: number | undefined;
4623
4628
  };
@@ -4629,15 +4634,15 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4629
4634
  };
4630
4635
  };
4631
4636
  identity: {
4632
- serverDid: string;
4633
4637
  environment: "development" | "production";
4638
+ serverDid: string;
4634
4639
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
4635
4640
  agentDid?: string | undefined;
4636
4641
  };
4637
4642
  proofing: {
4638
4643
  enabled: boolean;
4639
4644
  destinations: {
4640
- type: "custom" | "agentshield" | "kta";
4645
+ type: "custom" | "kta" | "agentshield";
4641
4646
  apiUrl: string;
4642
4647
  apiKey?: string | undefined;
4643
4648
  }[];
@@ -4664,11 +4669,6 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4664
4669
  includeProofHashes: boolean;
4665
4670
  includePayloads: boolean;
4666
4671
  };
4667
- session: {
4668
- ttlMinutes: number;
4669
- timestampSkewSeconds: number;
4670
- absoluteLifetime?: number | undefined;
4671
- };
4672
4672
  platform: {
4673
4673
  type: "cloudflare" | "node" | "vercel";
4674
4674
  cloudflare?: {
@@ -4678,20 +4678,20 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4678
4678
  };
4679
4679
  kvNamespaces: {
4680
4680
  name: string;
4681
- purpose: "sessions" | "delegations" | "cache" | "general";
4681
+ purpose: "cache" | "delegations" | "sessions" | "general";
4682
4682
  }[];
4683
4683
  environmentVariables: {
4684
4684
  value: string;
4685
- source: "wrangler.toml" | "secrets" | ".dev.vars";
4686
4685
  name: string;
4686
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
4687
4687
  }[];
4688
4688
  } | undefined;
4689
4689
  node?: {
4690
4690
  server: {
4691
+ timeout: number;
4691
4692
  port: number;
4692
4693
  host: string;
4693
4694
  cors: boolean;
4694
- timeout: number;
4695
4695
  };
4696
4696
  storage: {
4697
4697
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -4705,8 +4705,8 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4705
4705
  vercel?: {
4706
4706
  environmentVariables: {
4707
4707
  value: string;
4708
- source: "vercel-dashboard" | ".env.local";
4709
4708
  name: string;
4709
+ source: "vercel-dashboard" | ".env.local";
4710
4710
  }[];
4711
4711
  edgeRuntime?: {
4712
4712
  maxDuration?: number | undefined;
@@ -4729,18 +4729,23 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4729
4729
  success: boolean;
4730
4730
  data: {
4731
4731
  config: {
4732
+ session: {
4733
+ ttlMinutes?: number | undefined;
4734
+ timestampSkewSeconds?: number | undefined;
4735
+ absoluteLifetime?: number | undefined;
4736
+ };
4732
4737
  metadata: {
4733
- source: "code" | "dashboard" | "mixed";
4734
4738
  version: string;
4735
4739
  lastUpdated: string;
4740
+ source: "code" | "dashboard" | "mixed";
4736
4741
  serverUrl?: string | undefined;
4737
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
4742
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
4738
4743
  };
4739
4744
  delegation: {
4740
4745
  enabled: boolean;
4741
4746
  enforceStrictly: boolean;
4742
4747
  verifier: {
4743
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
4748
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
4744
4749
  apiUrl?: string | undefined;
4745
4750
  cacheTtl?: number | undefined;
4746
4751
  };
@@ -4752,15 +4757,15 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4752
4757
  };
4753
4758
  };
4754
4759
  identity: {
4755
- serverDid: string;
4756
4760
  environment: "development" | "production";
4761
+ serverDid: string;
4757
4762
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
4758
4763
  agentDid?: string | undefined;
4759
4764
  };
4760
4765
  proofing: {
4761
4766
  enabled: boolean;
4762
4767
  destinations: {
4763
- type: "custom" | "agentshield" | "kta";
4768
+ type: "custom" | "kta" | "agentshield";
4764
4769
  apiUrl: string;
4765
4770
  apiKey?: string | undefined;
4766
4771
  }[];
@@ -4787,11 +4792,6 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4787
4792
  includeProofHashes: boolean;
4788
4793
  includePayloads: boolean;
4789
4794
  };
4790
- session: {
4791
- ttlMinutes?: number | undefined;
4792
- timestampSkewSeconds?: number | undefined;
4793
- absoluteLifetime?: number | undefined;
4794
- };
4795
4795
  platform: {
4796
4796
  type: "cloudflare" | "node" | "vercel";
4797
4797
  cloudflare?: {
@@ -4801,20 +4801,20 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4801
4801
  };
4802
4802
  kvNamespaces: {
4803
4803
  name: string;
4804
- purpose: "sessions" | "delegations" | "cache" | "general";
4804
+ purpose: "cache" | "delegations" | "sessions" | "general";
4805
4805
  }[];
4806
4806
  environmentVariables: {
4807
4807
  value: string;
4808
- source: "wrangler.toml" | "secrets" | ".dev.vars";
4809
4808
  name: string;
4809
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
4810
4810
  }[];
4811
4811
  } | undefined;
4812
4812
  node?: {
4813
4813
  server: {
4814
+ timeout?: number | undefined;
4814
4815
  port?: number | undefined;
4815
4816
  host?: string | undefined;
4816
4817
  cors?: boolean | undefined;
4817
- timeout?: number | undefined;
4818
4818
  };
4819
4819
  storage: {
4820
4820
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -4828,8 +4828,8 @@ export declare const updateServerConfigResponseSchema: z.ZodObject<{
4828
4828
  vercel?: {
4829
4829
  environmentVariables: {
4830
4830
  value: string;
4831
- source: "vercel-dashboard" | ".env.local";
4832
4831
  name: string;
4832
+ source: "vercel-dashboard" | ".env.local";
4833
4833
  }[];
4834
4834
  edgeRuntime?: {
4835
4835
  maxDuration?: number | undefined;
@@ -4864,13 +4864,13 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
4864
4864
  environment: z.ZodEnum<["development", "production"]>;
4865
4865
  storageLocation: z.ZodEnum<["cloudflare-kv", "file-system", "env-vars"]>;
4866
4866
  }, "strip", z.ZodTypeAny, {
4867
- serverDid: string;
4868
4867
  environment: "development" | "production";
4868
+ serverDid: string;
4869
4869
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
4870
4870
  agentDid?: string | undefined;
4871
4871
  }, {
4872
- serverDid: string;
4873
4872
  environment: "development" | "production";
4873
+ serverDid: string;
4874
4874
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
4875
4875
  agentDid?: string | undefined;
4876
4876
  }>>;
@@ -4881,11 +4881,11 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
4881
4881
  apiUrl: z.ZodString;
4882
4882
  apiKey: z.ZodOptional<z.ZodString>;
4883
4883
  }, "strip", z.ZodTypeAny, {
4884
- type: "custom" | "agentshield" | "kta";
4884
+ type: "custom" | "kta" | "agentshield";
4885
4885
  apiUrl: string;
4886
4886
  apiKey?: string | undefined;
4887
4887
  }, {
4888
- type: "custom" | "agentshield" | "kta";
4888
+ type: "custom" | "kta" | "agentshield";
4889
4889
  apiUrl: string;
4890
4890
  apiKey?: string | undefined;
4891
4891
  }>, "many">;
@@ -4905,7 +4905,7 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
4905
4905
  }, "strip", z.ZodTypeAny, {
4906
4906
  enabled: boolean;
4907
4907
  destinations: {
4908
- type: "custom" | "agentshield" | "kta";
4908
+ type: "custom" | "kta" | "agentshield";
4909
4909
  apiUrl: string;
4910
4910
  apiKey?: string | undefined;
4911
4911
  }[];
@@ -4917,7 +4917,7 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
4917
4917
  }, {
4918
4918
  enabled: boolean;
4919
4919
  destinations: {
4920
- type: "custom" | "agentshield" | "kta";
4920
+ type: "custom" | "kta" | "agentshield";
4921
4921
  apiUrl: string;
4922
4922
  apiKey?: string | undefined;
4923
4923
  }[];
@@ -4935,11 +4935,11 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
4935
4935
  apiUrl: z.ZodOptional<z.ZodString>;
4936
4936
  cacheTtl: z.ZodOptional<z.ZodNumber>;
4937
4937
  }, "strip", z.ZodTypeAny, {
4938
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
4938
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
4939
4939
  apiUrl?: string | undefined;
4940
4940
  cacheTtl?: number | undefined;
4941
4941
  }, {
4942
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
4942
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
4943
4943
  apiUrl?: string | undefined;
4944
4944
  cacheTtl?: number | undefined;
4945
4945
  }>;
@@ -4963,7 +4963,7 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
4963
4963
  enabled: boolean;
4964
4964
  enforceStrictly: boolean;
4965
4965
  verifier: {
4966
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
4966
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
4967
4967
  apiUrl?: string | undefined;
4968
4968
  cacheTtl?: number | undefined;
4969
4969
  };
@@ -4977,7 +4977,7 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
4977
4977
  enabled: boolean;
4978
4978
  enforceStrictly: boolean;
4979
4979
  verifier: {
4980
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
4980
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
4981
4981
  apiUrl?: string | undefined;
4982
4982
  cacheTtl?: number | undefined;
4983
4983
  };
@@ -5080,10 +5080,10 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5080
5080
  purpose: z.ZodEnum<["sessions", "delegations", "cache", "general"]>;
5081
5081
  }, "strip", z.ZodTypeAny, {
5082
5082
  name: string;
5083
- purpose: "sessions" | "delegations" | "cache" | "general";
5083
+ purpose: "cache" | "delegations" | "sessions" | "general";
5084
5084
  }, {
5085
5085
  name: string;
5086
- purpose: "sessions" | "delegations" | "cache" | "general";
5086
+ purpose: "cache" | "delegations" | "sessions" | "general";
5087
5087
  }>, "many">;
5088
5088
  environmentVariables: z.ZodArray<z.ZodObject<{
5089
5089
  name: z.ZodString;
@@ -5091,12 +5091,12 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5091
5091
  source: z.ZodEnum<["wrangler.toml", "secrets", ".dev.vars"]>;
5092
5092
  }, "strip", z.ZodTypeAny, {
5093
5093
  value: string;
5094
- source: "wrangler.toml" | "secrets" | ".dev.vars";
5095
5094
  name: string;
5095
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
5096
5096
  }, {
5097
5097
  value: string;
5098
- source: "wrangler.toml" | "secrets" | ".dev.vars";
5099
5098
  name: string;
5099
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
5100
5100
  }>, "many">;
5101
5101
  }, "strip", z.ZodTypeAny, {
5102
5102
  workers: {
@@ -5105,12 +5105,12 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5105
5105
  };
5106
5106
  kvNamespaces: {
5107
5107
  name: string;
5108
- purpose: "sessions" | "delegations" | "cache" | "general";
5108
+ purpose: "cache" | "delegations" | "sessions" | "general";
5109
5109
  }[];
5110
5110
  environmentVariables: {
5111
5111
  value: string;
5112
- source: "wrangler.toml" | "secrets" | ".dev.vars";
5113
5112
  name: string;
5113
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
5114
5114
  }[];
5115
5115
  }, {
5116
5116
  workers: {
@@ -5119,12 +5119,12 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5119
5119
  };
5120
5120
  kvNamespaces: {
5121
5121
  name: string;
5122
- purpose: "sessions" | "delegations" | "cache" | "general";
5122
+ purpose: "cache" | "delegations" | "sessions" | "general";
5123
5123
  }[];
5124
5124
  environmentVariables: {
5125
5125
  value: string;
5126
- source: "wrangler.toml" | "secrets" | ".dev.vars";
5127
5126
  name: string;
5127
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
5128
5128
  }[];
5129
5129
  }>>;
5130
5130
  node: z.ZodOptional<z.ZodObject<{
@@ -5134,15 +5134,15 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5134
5134
  cors: z.ZodDefault<z.ZodBoolean>;
5135
5135
  timeout: z.ZodDefault<z.ZodNumber>;
5136
5136
  }, "strip", z.ZodTypeAny, {
5137
+ timeout: number;
5137
5138
  port: number;
5138
5139
  host: string;
5139
5140
  cors: boolean;
5140
- timeout: number;
5141
5141
  }, {
5142
+ timeout?: number | undefined;
5142
5143
  port?: number | undefined;
5143
5144
  host?: string | undefined;
5144
5145
  cors?: boolean | undefined;
5145
- timeout?: number | undefined;
5146
5146
  }>;
5147
5147
  storage: z.ZodObject<{
5148
5148
  type: z.ZodEnum<["memory", "redis", "postgres", "mongodb"]>;
@@ -5176,10 +5176,10 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5176
5176
  }>;
5177
5177
  }, "strip", z.ZodTypeAny, {
5178
5178
  server: {
5179
+ timeout: number;
5179
5180
  port: number;
5180
5181
  host: string;
5181
5182
  cors: boolean;
5182
- timeout: number;
5183
5183
  };
5184
5184
  storage: {
5185
5185
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -5191,10 +5191,10 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5191
5191
  };
5192
5192
  }, {
5193
5193
  server: {
5194
+ timeout?: number | undefined;
5194
5195
  port?: number | undefined;
5195
5196
  host?: string | undefined;
5196
5197
  cors?: boolean | undefined;
5197
- timeout?: number | undefined;
5198
5198
  };
5199
5199
  storage: {
5200
5200
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -5212,12 +5212,12 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5212
5212
  source: z.ZodEnum<["vercel-dashboard", ".env.local"]>;
5213
5213
  }, "strip", z.ZodTypeAny, {
5214
5214
  value: string;
5215
- source: "vercel-dashboard" | ".env.local";
5216
5215
  name: string;
5216
+ source: "vercel-dashboard" | ".env.local";
5217
5217
  }, {
5218
5218
  value: string;
5219
- source: "vercel-dashboard" | ".env.local";
5220
5219
  name: string;
5220
+ source: "vercel-dashboard" | ".env.local";
5221
5221
  }>, "many">;
5222
5222
  edgeRuntime: z.ZodOptional<z.ZodObject<{
5223
5223
  maxDuration: z.ZodOptional<z.ZodNumber>;
@@ -5232,8 +5232,8 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5232
5232
  }, "strip", z.ZodTypeAny, {
5233
5233
  environmentVariables: {
5234
5234
  value: string;
5235
- source: "vercel-dashboard" | ".env.local";
5236
5235
  name: string;
5236
+ source: "vercel-dashboard" | ".env.local";
5237
5237
  }[];
5238
5238
  edgeRuntime?: {
5239
5239
  maxDuration?: number | undefined;
@@ -5242,8 +5242,8 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5242
5242
  }, {
5243
5243
  environmentVariables: {
5244
5244
  value: string;
5245
- source: "vercel-dashboard" | ".env.local";
5246
5245
  name: string;
5246
+ source: "vercel-dashboard" | ".env.local";
5247
5247
  }[];
5248
5248
  edgeRuntime?: {
5249
5249
  maxDuration?: number | undefined;
@@ -5259,20 +5259,20 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5259
5259
  };
5260
5260
  kvNamespaces: {
5261
5261
  name: string;
5262
- purpose: "sessions" | "delegations" | "cache" | "general";
5262
+ purpose: "cache" | "delegations" | "sessions" | "general";
5263
5263
  }[];
5264
5264
  environmentVariables: {
5265
5265
  value: string;
5266
- source: "wrangler.toml" | "secrets" | ".dev.vars";
5267
5266
  name: string;
5267
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
5268
5268
  }[];
5269
5269
  } | undefined;
5270
5270
  node?: {
5271
5271
  server: {
5272
+ timeout: number;
5272
5273
  port: number;
5273
5274
  host: string;
5274
5275
  cors: boolean;
5275
- timeout: number;
5276
5276
  };
5277
5277
  storage: {
5278
5278
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -5286,8 +5286,8 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5286
5286
  vercel?: {
5287
5287
  environmentVariables: {
5288
5288
  value: string;
5289
- source: "vercel-dashboard" | ".env.local";
5290
5289
  name: string;
5290
+ source: "vercel-dashboard" | ".env.local";
5291
5291
  }[];
5292
5292
  edgeRuntime?: {
5293
5293
  maxDuration?: number | undefined;
@@ -5303,20 +5303,20 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5303
5303
  };
5304
5304
  kvNamespaces: {
5305
5305
  name: string;
5306
- purpose: "sessions" | "delegations" | "cache" | "general";
5306
+ purpose: "cache" | "delegations" | "sessions" | "general";
5307
5307
  }[];
5308
5308
  environmentVariables: {
5309
5309
  value: string;
5310
- source: "wrangler.toml" | "secrets" | ".dev.vars";
5311
5310
  name: string;
5311
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
5312
5312
  }[];
5313
5313
  } | undefined;
5314
5314
  node?: {
5315
5315
  server: {
5316
+ timeout?: number | undefined;
5316
5317
  port?: number | undefined;
5317
5318
  host?: string | undefined;
5318
5319
  cors?: boolean | undefined;
5319
- timeout?: number | undefined;
5320
5320
  };
5321
5321
  storage: {
5322
5322
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -5330,8 +5330,8 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5330
5330
  vercel?: {
5331
5331
  environmentVariables: {
5332
5332
  value: string;
5333
- source: "vercel-dashboard" | ".env.local";
5334
5333
  name: string;
5334
+ source: "vercel-dashboard" | ".env.local";
5335
5335
  }[];
5336
5336
  edgeRuntime?: {
5337
5337
  maxDuration?: number | undefined;
@@ -5346,31 +5346,36 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5346
5346
  serverUrl: z.ZodOptional<z.ZodString>;
5347
5347
  deploymentStatus: z.ZodOptional<z.ZodEnum<["active", "inactive", "error"]>>;
5348
5348
  }, "strip", z.ZodTypeAny, {
5349
- source: "code" | "dashboard" | "mixed";
5350
5349
  version: string;
5351
5350
  lastUpdated: string;
5351
+ source: "code" | "dashboard" | "mixed";
5352
5352
  serverUrl?: string | undefined;
5353
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
5353
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
5354
5354
  }, {
5355
- source: "code" | "dashboard" | "mixed";
5356
5355
  version: string;
5357
5356
  lastUpdated: string;
5357
+ source: "code" | "dashboard" | "mixed";
5358
5358
  serverUrl?: string | undefined;
5359
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
5359
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
5360
5360
  }>>;
5361
5361
  }, "strip", z.ZodTypeAny, {
5362
+ session?: {
5363
+ ttlMinutes: number;
5364
+ timestampSkewSeconds: number;
5365
+ absoluteLifetime?: number | undefined;
5366
+ } | undefined;
5362
5367
  metadata?: {
5363
- source: "code" | "dashboard" | "mixed";
5364
5368
  version: string;
5365
5369
  lastUpdated: string;
5370
+ source: "code" | "dashboard" | "mixed";
5366
5371
  serverUrl?: string | undefined;
5367
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
5372
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
5368
5373
  } | undefined;
5369
5374
  delegation?: {
5370
5375
  enabled: boolean;
5371
5376
  enforceStrictly: boolean;
5372
5377
  verifier: {
5373
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
5378
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
5374
5379
  apiUrl?: string | undefined;
5375
5380
  cacheTtl?: number | undefined;
5376
5381
  };
@@ -5382,15 +5387,15 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5382
5387
  };
5383
5388
  } | undefined;
5384
5389
  identity?: {
5385
- serverDid: string;
5386
5390
  environment: "development" | "production";
5391
+ serverDid: string;
5387
5392
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
5388
5393
  agentDid?: string | undefined;
5389
5394
  } | undefined;
5390
5395
  proofing?: {
5391
5396
  enabled: boolean;
5392
5397
  destinations: {
5393
- type: "custom" | "agentshield" | "kta";
5398
+ type: "custom" | "kta" | "agentshield";
5394
5399
  apiUrl: string;
5395
5400
  apiKey?: string | undefined;
5396
5401
  }[];
@@ -5417,11 +5422,6 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5417
5422
  includeProofHashes: boolean;
5418
5423
  includePayloads: boolean;
5419
5424
  } | undefined;
5420
- session?: {
5421
- ttlMinutes: number;
5422
- timestampSkewSeconds: number;
5423
- absoluteLifetime?: number | undefined;
5424
- } | undefined;
5425
5425
  platform?: {
5426
5426
  type: "cloudflare" | "node" | "vercel";
5427
5427
  cloudflare?: {
@@ -5431,20 +5431,20 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5431
5431
  };
5432
5432
  kvNamespaces: {
5433
5433
  name: string;
5434
- purpose: "sessions" | "delegations" | "cache" | "general";
5434
+ purpose: "cache" | "delegations" | "sessions" | "general";
5435
5435
  }[];
5436
5436
  environmentVariables: {
5437
5437
  value: string;
5438
- source: "wrangler.toml" | "secrets" | ".dev.vars";
5439
5438
  name: string;
5439
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
5440
5440
  }[];
5441
5441
  } | undefined;
5442
5442
  node?: {
5443
5443
  server: {
5444
+ timeout: number;
5444
5445
  port: number;
5445
5446
  host: string;
5446
5447
  cors: boolean;
5447
- timeout: number;
5448
5448
  };
5449
5449
  storage: {
5450
5450
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -5458,8 +5458,8 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5458
5458
  vercel?: {
5459
5459
  environmentVariables: {
5460
5460
  value: string;
5461
- source: "vercel-dashboard" | ".env.local";
5462
5461
  name: string;
5462
+ source: "vercel-dashboard" | ".env.local";
5463
5463
  }[];
5464
5464
  edgeRuntime?: {
5465
5465
  maxDuration?: number | undefined;
@@ -5468,18 +5468,23 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5468
5468
  } | undefined;
5469
5469
  } | undefined;
5470
5470
  }, {
5471
+ session?: {
5472
+ ttlMinutes?: number | undefined;
5473
+ timestampSkewSeconds?: number | undefined;
5474
+ absoluteLifetime?: number | undefined;
5475
+ } | undefined;
5471
5476
  metadata?: {
5472
- source: "code" | "dashboard" | "mixed";
5473
5477
  version: string;
5474
5478
  lastUpdated: string;
5479
+ source: "code" | "dashboard" | "mixed";
5475
5480
  serverUrl?: string | undefined;
5476
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
5481
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
5477
5482
  } | undefined;
5478
5483
  delegation?: {
5479
5484
  enabled: boolean;
5480
5485
  enforceStrictly: boolean;
5481
5486
  verifier: {
5482
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
5487
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
5483
5488
  apiUrl?: string | undefined;
5484
5489
  cacheTtl?: number | undefined;
5485
5490
  };
@@ -5491,15 +5496,15 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5491
5496
  };
5492
5497
  } | undefined;
5493
5498
  identity?: {
5494
- serverDid: string;
5495
5499
  environment: "development" | "production";
5500
+ serverDid: string;
5496
5501
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
5497
5502
  agentDid?: string | undefined;
5498
5503
  } | undefined;
5499
5504
  proofing?: {
5500
5505
  enabled: boolean;
5501
5506
  destinations: {
5502
- type: "custom" | "agentshield" | "kta";
5507
+ type: "custom" | "kta" | "agentshield";
5503
5508
  apiUrl: string;
5504
5509
  apiKey?: string | undefined;
5505
5510
  }[];
@@ -5526,11 +5531,6 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5526
5531
  includeProofHashes: boolean;
5527
5532
  includePayloads: boolean;
5528
5533
  } | undefined;
5529
- session?: {
5530
- ttlMinutes?: number | undefined;
5531
- timestampSkewSeconds?: number | undefined;
5532
- absoluteLifetime?: number | undefined;
5533
- } | undefined;
5534
5534
  platform?: {
5535
5535
  type: "cloudflare" | "node" | "vercel";
5536
5536
  cloudflare?: {
@@ -5540,20 +5540,20 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5540
5540
  };
5541
5541
  kvNamespaces: {
5542
5542
  name: string;
5543
- purpose: "sessions" | "delegations" | "cache" | "general";
5543
+ purpose: "cache" | "delegations" | "sessions" | "general";
5544
5544
  }[];
5545
5545
  environmentVariables: {
5546
5546
  value: string;
5547
- source: "wrangler.toml" | "secrets" | ".dev.vars";
5548
5547
  name: string;
5548
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
5549
5549
  }[];
5550
5550
  } | undefined;
5551
5551
  node?: {
5552
5552
  server: {
5553
+ timeout?: number | undefined;
5553
5554
  port?: number | undefined;
5554
5555
  host?: string | undefined;
5555
5556
  cors?: boolean | undefined;
5556
- timeout?: number | undefined;
5557
5557
  };
5558
5558
  storage: {
5559
5559
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -5567,8 +5567,8 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5567
5567
  vercel?: {
5568
5568
  environmentVariables: {
5569
5569
  value: string;
5570
- source: "vercel-dashboard" | ".env.local";
5571
5570
  name: string;
5571
+ source: "vercel-dashboard" | ".env.local";
5572
5572
  }[];
5573
5573
  edgeRuntime?: {
5574
5574
  maxDuration?: number | undefined;
@@ -5580,18 +5580,23 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5580
5580
  }, "strip", z.ZodTypeAny, {
5581
5581
  projectId: string;
5582
5582
  config: {
5583
+ session?: {
5584
+ ttlMinutes: number;
5585
+ timestampSkewSeconds: number;
5586
+ absoluteLifetime?: number | undefined;
5587
+ } | undefined;
5583
5588
  metadata?: {
5584
- source: "code" | "dashboard" | "mixed";
5585
5589
  version: string;
5586
5590
  lastUpdated: string;
5591
+ source: "code" | "dashboard" | "mixed";
5587
5592
  serverUrl?: string | undefined;
5588
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
5593
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
5589
5594
  } | undefined;
5590
5595
  delegation?: {
5591
5596
  enabled: boolean;
5592
5597
  enforceStrictly: boolean;
5593
5598
  verifier: {
5594
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
5599
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
5595
5600
  apiUrl?: string | undefined;
5596
5601
  cacheTtl?: number | undefined;
5597
5602
  };
@@ -5603,15 +5608,15 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5603
5608
  };
5604
5609
  } | undefined;
5605
5610
  identity?: {
5606
- serverDid: string;
5607
5611
  environment: "development" | "production";
5612
+ serverDid: string;
5608
5613
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
5609
5614
  agentDid?: string | undefined;
5610
5615
  } | undefined;
5611
5616
  proofing?: {
5612
5617
  enabled: boolean;
5613
5618
  destinations: {
5614
- type: "custom" | "agentshield" | "kta";
5619
+ type: "custom" | "kta" | "agentshield";
5615
5620
  apiUrl: string;
5616
5621
  apiKey?: string | undefined;
5617
5622
  }[];
@@ -5638,11 +5643,6 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5638
5643
  includeProofHashes: boolean;
5639
5644
  includePayloads: boolean;
5640
5645
  } | undefined;
5641
- session?: {
5642
- ttlMinutes: number;
5643
- timestampSkewSeconds: number;
5644
- absoluteLifetime?: number | undefined;
5645
- } | undefined;
5646
5646
  platform?: {
5647
5647
  type: "cloudflare" | "node" | "vercel";
5648
5648
  cloudflare?: {
@@ -5652,20 +5652,20 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5652
5652
  };
5653
5653
  kvNamespaces: {
5654
5654
  name: string;
5655
- purpose: "sessions" | "delegations" | "cache" | "general";
5655
+ purpose: "cache" | "delegations" | "sessions" | "general";
5656
5656
  }[];
5657
5657
  environmentVariables: {
5658
5658
  value: string;
5659
- source: "wrangler.toml" | "secrets" | ".dev.vars";
5660
5659
  name: string;
5660
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
5661
5661
  }[];
5662
5662
  } | undefined;
5663
5663
  node?: {
5664
5664
  server: {
5665
+ timeout: number;
5665
5666
  port: number;
5666
5667
  host: string;
5667
5668
  cors: boolean;
5668
- timeout: number;
5669
5669
  };
5670
5670
  storage: {
5671
5671
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -5679,8 +5679,8 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5679
5679
  vercel?: {
5680
5680
  environmentVariables: {
5681
5681
  value: string;
5682
- source: "vercel-dashboard" | ".env.local";
5683
5682
  name: string;
5683
+ source: "vercel-dashboard" | ".env.local";
5684
5684
  }[];
5685
5685
  edgeRuntime?: {
5686
5686
  maxDuration?: number | undefined;
@@ -5692,18 +5692,23 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5692
5692
  }, {
5693
5693
  projectId: string;
5694
5694
  config: {
5695
+ session?: {
5696
+ ttlMinutes?: number | undefined;
5697
+ timestampSkewSeconds?: number | undefined;
5698
+ absoluteLifetime?: number | undefined;
5699
+ } | undefined;
5695
5700
  metadata?: {
5696
- source: "code" | "dashboard" | "mixed";
5697
5701
  version: string;
5698
5702
  lastUpdated: string;
5703
+ source: "code" | "dashboard" | "mixed";
5699
5704
  serverUrl?: string | undefined;
5700
- deploymentStatus?: "active" | "inactive" | "error" | undefined;
5705
+ deploymentStatus?: "error" | "active" | "inactive" | undefined;
5701
5706
  } | undefined;
5702
5707
  delegation?: {
5703
5708
  enabled: boolean;
5704
5709
  enforceStrictly: boolean;
5705
5710
  verifier: {
5706
- type: "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "custom" | "agentshield" | "kta";
5711
+ type: "custom" | "kta" | "memory" | "redis" | "dynamodb" | "cloudflare-kv" | "agentshield";
5707
5712
  apiUrl?: string | undefined;
5708
5713
  cacheTtl?: number | undefined;
5709
5714
  };
@@ -5715,15 +5720,15 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5715
5720
  };
5716
5721
  } | undefined;
5717
5722
  identity?: {
5718
- serverDid: string;
5719
5723
  environment: "development" | "production";
5724
+ serverDid: string;
5720
5725
  storageLocation: "cloudflare-kv" | "file-system" | "env-vars";
5721
5726
  agentDid?: string | undefined;
5722
5727
  } | undefined;
5723
5728
  proofing?: {
5724
5729
  enabled: boolean;
5725
5730
  destinations: {
5726
- type: "custom" | "agentshield" | "kta";
5731
+ type: "custom" | "kta" | "agentshield";
5727
5732
  apiUrl: string;
5728
5733
  apiKey?: string | undefined;
5729
5734
  }[];
@@ -5750,11 +5755,6 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5750
5755
  includeProofHashes: boolean;
5751
5756
  includePayloads: boolean;
5752
5757
  } | undefined;
5753
- session?: {
5754
- ttlMinutes?: number | undefined;
5755
- timestampSkewSeconds?: number | undefined;
5756
- absoluteLifetime?: number | undefined;
5757
- } | undefined;
5758
5758
  platform?: {
5759
5759
  type: "cloudflare" | "node" | "vercel";
5760
5760
  cloudflare?: {
@@ -5764,20 +5764,20 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5764
5764
  };
5765
5765
  kvNamespaces: {
5766
5766
  name: string;
5767
- purpose: "sessions" | "delegations" | "cache" | "general";
5767
+ purpose: "cache" | "delegations" | "sessions" | "general";
5768
5768
  }[];
5769
5769
  environmentVariables: {
5770
5770
  value: string;
5771
- source: "wrangler.toml" | "secrets" | ".dev.vars";
5772
5771
  name: string;
5772
+ source: "wrangler.toml" | "secrets" | ".dev.vars";
5773
5773
  }[];
5774
5774
  } | undefined;
5775
5775
  node?: {
5776
5776
  server: {
5777
+ timeout?: number | undefined;
5777
5778
  port?: number | undefined;
5778
5779
  host?: string | undefined;
5779
5780
  cors?: boolean | undefined;
5780
- timeout?: number | undefined;
5781
5781
  };
5782
5782
  storage: {
5783
5783
  type: "memory" | "redis" | "postgres" | "mongodb";
@@ -5791,8 +5791,8 @@ export declare const validateServerConfigRequestSchema: z.ZodObject<{
5791
5791
  vercel?: {
5792
5792
  environmentVariables: {
5793
5793
  value: string;
5794
- source: "vercel-dashboard" | ".env.local";
5795
5794
  name: string;
5795
+ source: "vercel-dashboard" | ".env.local";
5796
5796
  }[];
5797
5797
  edgeRuntime?: {
5798
5798
  maxDuration?: number | undefined;
@@ -5834,23 +5834,23 @@ export declare const validateServerConfigResponseSchema: z.ZodObject<{
5834
5834
  }>, "many">>;
5835
5835
  }, "strip", z.ZodTypeAny, {
5836
5836
  valid: boolean;
5837
- errors?: {
5838
- code: string;
5837
+ warnings?: {
5839
5838
  path: string;
5840
5839
  message: string;
5841
5840
  }[] | undefined;
5842
- warnings?: {
5841
+ errors?: {
5842
+ code: string;
5843
5843
  path: string;
5844
5844
  message: string;
5845
5845
  }[] | undefined;
5846
5846
  }, {
5847
5847
  valid: boolean;
5848
- errors?: {
5849
- code: string;
5848
+ warnings?: {
5850
5849
  path: string;
5851
5850
  message: string;
5852
5851
  }[] | undefined;
5853
- warnings?: {
5852
+ errors?: {
5853
+ code: string;
5854
5854
  path: string;
5855
5855
  message: string;
5856
5856
  }[] | undefined;
@@ -5869,12 +5869,12 @@ export declare const validateServerConfigResponseSchema: z.ZodObject<{
5869
5869
  success: boolean;
5870
5870
  data: {
5871
5871
  valid: boolean;
5872
- errors?: {
5873
- code: string;
5872
+ warnings?: {
5874
5873
  path: string;
5875
5874
  message: string;
5876
5875
  }[] | undefined;
5877
- warnings?: {
5876
+ errors?: {
5877
+ code: string;
5878
5878
  path: string;
5879
5879
  message: string;
5880
5880
  }[] | undefined;
@@ -5887,12 +5887,12 @@ export declare const validateServerConfigResponseSchema: z.ZodObject<{
5887
5887
  success: boolean;
5888
5888
  data: {
5889
5889
  valid: boolean;
5890
- errors?: {
5891
- code: string;
5890
+ warnings?: {
5892
5891
  path: string;
5893
5892
  message: string;
5894
5893
  }[] | undefined;
5895
- warnings?: {
5894
+ errors?: {
5895
+ code: string;
5896
5896
  path: string;
5897
5897
  message: string;
5898
5898
  }[] | undefined;
@@ -5902,4 +5902,3 @@ export declare const validateServerConfigResponseSchema: z.ZodObject<{
5902
5902
  requestId?: string | undefined;
5903
5903
  } | undefined;
5904
5904
  }>;
5905
- //# sourceMappingURL=schemas.d.ts.map