@frontmcp/sdk 0.3.0 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (169) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +192 -164
  3. package/package.json +7 -4
  4. package/src/__test-utils__/fixtures/hook.fixtures.d.ts +46 -0
  5. package/src/__test-utils__/fixtures/hook.fixtures.js +114 -0
  6. package/src/__test-utils__/fixtures/hook.fixtures.js.map +1 -0
  7. package/src/__test-utils__/fixtures/index.d.ts +7 -0
  8. package/src/__test-utils__/fixtures/index.js +11 -0
  9. package/src/__test-utils__/fixtures/index.js.map +1 -0
  10. package/src/__test-utils__/fixtures/plugin.fixtures.d.ts +46 -0
  11. package/src/__test-utils__/fixtures/plugin.fixtures.js +127 -0
  12. package/src/__test-utils__/fixtures/plugin.fixtures.js.map +1 -0
  13. package/src/__test-utils__/fixtures/provider.fixtures.d.ts +69 -0
  14. package/src/__test-utils__/fixtures/provider.fixtures.js +131 -0
  15. package/src/__test-utils__/fixtures/provider.fixtures.js.map +1 -0
  16. package/src/__test-utils__/fixtures/scope.fixtures.d.ts +14 -0
  17. package/src/__test-utils__/fixtures/scope.fixtures.js +59 -0
  18. package/src/__test-utils__/fixtures/scope.fixtures.js.map +1 -0
  19. package/src/__test-utils__/fixtures/tool.fixtures.d.ts +36 -0
  20. package/src/__test-utils__/fixtures/tool.fixtures.js +91 -0
  21. package/src/__test-utils__/fixtures/tool.fixtures.js.map +1 -0
  22. package/src/__test-utils__/helpers/assertion.helpers.d.ts +45 -0
  23. package/src/__test-utils__/helpers/assertion.helpers.js +153 -0
  24. package/src/__test-utils__/helpers/assertion.helpers.js.map +1 -0
  25. package/src/__test-utils__/helpers/async.helpers.d.ts +48 -0
  26. package/src/__test-utils__/helpers/async.helpers.js +112 -0
  27. package/src/__test-utils__/helpers/async.helpers.js.map +1 -0
  28. package/src/__test-utils__/helpers/index.d.ts +6 -0
  29. package/src/__test-utils__/helpers/index.js +10 -0
  30. package/src/__test-utils__/helpers/index.js.map +1 -0
  31. package/src/__test-utils__/helpers/setup.helpers.d.ts +54 -0
  32. package/src/__test-utils__/helpers/setup.helpers.js +106 -0
  33. package/src/__test-utils__/helpers/setup.helpers.js.map +1 -0
  34. package/src/__test-utils__/index.d.ts +9 -0
  35. package/src/__test-utils__/index.js +14 -0
  36. package/src/__test-utils__/index.js.map +1 -0
  37. package/src/__test-utils__/mocks/flow-instance.mock.d.ts +50 -0
  38. package/src/__test-utils__/mocks/flow-instance.mock.js +72 -0
  39. package/src/__test-utils__/mocks/flow-instance.mock.js.map +1 -0
  40. package/src/__test-utils__/mocks/hook-registry.mock.d.ts +25 -0
  41. package/src/__test-utils__/mocks/hook-registry.mock.js +65 -0
  42. package/src/__test-utils__/mocks/hook-registry.mock.js.map +1 -0
  43. package/src/__test-utils__/mocks/index.d.ts +8 -0
  44. package/src/__test-utils__/mocks/index.js +12 -0
  45. package/src/__test-utils__/mocks/index.js.map +1 -0
  46. package/src/__test-utils__/mocks/plugin-registry.mock.d.ts +43 -0
  47. package/src/__test-utils__/mocks/plugin-registry.mock.js +70 -0
  48. package/src/__test-utils__/mocks/plugin-registry.mock.js.map +1 -0
  49. package/src/__test-utils__/mocks/provider-registry.mock.d.ts +39 -0
  50. package/src/__test-utils__/mocks/provider-registry.mock.js +72 -0
  51. package/src/__test-utils__/mocks/provider-registry.mock.js.map +1 -0
  52. package/src/__test-utils__/mocks/tool-registry.mock.d.ts +43 -0
  53. package/src/__test-utils__/mocks/tool-registry.mock.js +79 -0
  54. package/src/__test-utils__/mocks/tool-registry.mock.js.map +1 -0
  55. package/src/app/app.utils.js.map +1 -1
  56. package/src/app/instances/app.local.instance.js +8 -11
  57. package/src/app/instances/app.local.instance.js.map +1 -1
  58. package/src/auth/auth.registry.d.ts +2 -2
  59. package/src/auth/auth.registry.js +3 -3
  60. package/src/auth/auth.registry.js.map +1 -1
  61. package/src/auth/flows/oauth.authorize.flow.d.ts +8 -8
  62. package/src/auth/flows/oauth.register.flow.d.ts +4 -4
  63. package/src/auth/flows/oauth.token.flow.d.ts +4 -4
  64. package/src/auth/flows/well-known.jwks.flow.d.ts +12 -12
  65. package/src/auth/flows/well-known.oauth-authorization-server.flow.d.ts +8 -8
  66. package/src/auth/flows/well-known.prm.flow.d.ts +4 -4
  67. package/src/auth/instances/instance.local-primary-auth.d.ts +3 -2
  68. package/src/auth/instances/instance.local-primary-auth.js +4 -2
  69. package/src/auth/instances/instance.local-primary-auth.js.map +1 -1
  70. package/src/auth/instances/instance.remote-primary-auth.d.ts +3 -2
  71. package/src/auth/instances/instance.remote-primary-auth.js +3 -1
  72. package/src/auth/instances/instance.remote-primary-auth.js.map +1 -1
  73. package/src/auth/jwks/jwks.service.js +0 -1
  74. package/src/auth/jwks/jwks.service.js.map +1 -1
  75. package/src/common/decorators/tool.decorator.d.ts +97 -36
  76. package/src/common/decorators/tool.decorator.js +0 -1
  77. package/src/common/decorators/tool.decorator.js.map +1 -1
  78. package/src/common/entries/scope.entry.d.ts +1 -0
  79. package/src/common/entries/scope.entry.js +6 -0
  80. package/src/common/entries/scope.entry.js.map +1 -1
  81. package/src/common/entries/tool.entry.d.ts +54 -11
  82. package/src/common/entries/tool.entry.js +19 -0
  83. package/src/common/entries/tool.entry.js.map +1 -1
  84. package/src/common/interfaces/internal/registry.interface.d.ts +10 -2
  85. package/src/common/interfaces/internal/registry.interface.js.map +1 -1
  86. package/src/common/interfaces/plugin.interface.d.ts +1 -1
  87. package/src/common/interfaces/plugin.interface.js.map +1 -1
  88. package/src/common/interfaces/tool.interface.d.ts +12 -7
  89. package/src/common/interfaces/tool.interface.js +1 -1
  90. package/src/common/interfaces/tool.interface.js.map +1 -1
  91. package/src/common/metadata/front-mcp.metadata.d.ts +145 -145
  92. package/src/common/metadata/hook.metadata.d.ts +4 -2
  93. package/src/common/metadata/hook.metadata.js.map +1 -1
  94. package/src/common/metadata/prompt.metadata.d.ts +28 -28
  95. package/src/common/metadata/prompt.metadata.js.map +1 -1
  96. package/src/common/metadata/resource.metadata.d.ts +54 -54
  97. package/src/common/metadata/tool.metadata.d.ts +190 -7
  98. package/src/common/metadata/tool.metadata.js +41 -6
  99. package/src/common/metadata/tool.metadata.js.map +1 -1
  100. package/src/common/records/scope.record.d.ts +2 -2
  101. package/src/common/records/scope.record.js.map +1 -1
  102. package/src/common/schemas/http-output.schema.d.ts +106 -106
  103. package/src/common/tokens/tool.tokens.js.map +1 -1
  104. package/src/common/types/options/logging.options.d.ts +1 -2
  105. package/src/common/types/options/logging.options.js +1 -9
  106. package/src/common/types/options/logging.options.js.map +1 -1
  107. package/src/common/types/options/server-info.options.d.ts +19 -19
  108. package/src/errors/error-handler.d.ts +65 -0
  109. package/src/errors/error-handler.js +107 -0
  110. package/src/errors/error-handler.js.map +1 -0
  111. package/src/errors/index.d.ts +2 -0
  112. package/src/errors/index.js +26 -0
  113. package/src/errors/index.js.map +1 -0
  114. package/src/errors/mcp.error.d.ts +156 -0
  115. package/src/errors/mcp.error.js +243 -0
  116. package/src/errors/mcp.error.js.map +1 -0
  117. package/src/flows/flow.instance.js +7 -6
  118. package/src/flows/flow.instance.js.map +1 -1
  119. package/src/flows/flow.registry.js +1 -1
  120. package/src/flows/flow.registry.js.map +1 -1
  121. package/src/front-mcp/front-mcp.providers.d.ts +20 -20
  122. package/src/hooks/hook.registry.d.ts +5 -3
  123. package/src/hooks/hook.registry.js +13 -1
  124. package/src/hooks/hook.registry.js.map +1 -1
  125. package/src/plugin/plugin.registry.d.ts +7 -2
  126. package/src/plugin/plugin.registry.js +23 -11
  127. package/src/plugin/plugin.registry.js.map +1 -1
  128. package/src/prompt/prompt.registry.js +1 -0
  129. package/src/prompt/prompt.registry.js.map +1 -1
  130. package/src/resource/resource.registry.js +1 -0
  131. package/src/resource/resource.registry.js.map +1 -1
  132. package/src/scope/scope.instance.js +8 -2
  133. package/src/scope/scope.instance.js.map +1 -1
  134. package/src/scope/scope.registry.js +3 -2
  135. package/src/scope/scope.registry.js.map +1 -1
  136. package/src/scope/scope.utils.js +6 -4
  137. package/src/scope/scope.utils.js.map +1 -1
  138. package/src/store/adapters/store.memory.adapter.js +3 -1
  139. package/src/store/adapters/store.memory.adapter.js.map +1 -1
  140. package/src/tool/flows/call-tool.flow.d.ts +1012 -676
  141. package/src/tool/flows/call-tool.flow.js +94 -61
  142. package/src/tool/flows/call-tool.flow.js.map +1 -1
  143. package/src/tool/flows/tools-list.flow.d.ts +347 -590
  144. package/src/tool/flows/tools-list.flow.js +76 -49
  145. package/src/tool/flows/tools-list.flow.js.map +1 -1
  146. package/src/tool/tool.instance.d.ts +27 -8
  147. package/src/tool/tool.instance.js +40 -5
  148. package/src/tool/tool.instance.js.map +1 -1
  149. package/src/tool/tool.registry.js +19 -21
  150. package/src/tool/tool.registry.js.map +1 -1
  151. package/src/tool/tool.utils.d.ts +3 -2
  152. package/src/tool/tool.utils.js +377 -14
  153. package/src/tool/tool.utils.js.map +1 -1
  154. package/src/transport/adapters/transport.sse.adapter.js +2 -1
  155. package/src/transport/adapters/transport.sse.adapter.js.map +1 -1
  156. package/src/transport/adapters/transport.streamable-http.adapter.js.map +1 -1
  157. package/src/transport/flows/handle.sse.flow.js +6 -13
  158. package/src/transport/flows/handle.sse.flow.js.map +1 -1
  159. package/src/transport/flows/handle.streamable-http.flow.js +1 -0
  160. package/src/transport/flows/handle.streamable-http.flow.js.map +1 -1
  161. package/src/transport/mcp-handlers/call-tool-request.handler.d.ts +1 -1
  162. package/src/transport/mcp-handlers/call-tool-request.handler.js +10 -5
  163. package/src/transport/mcp-handlers/call-tool-request.handler.js.map +1 -1
  164. package/src/transport/mcp-handlers/index.d.ts +151 -268
  165. package/src/transport/mcp-handlers/list-tools-request.handler.d.ts +124 -216
  166. package/src/transport/transport.local.js +1 -0
  167. package/src/transport/transport.local.js.map +1 -1
  168. package/src/utils/string.utils.js +1 -1
  169. package/src/utils/string.utils.js.map +1 -1
@@ -27,7 +27,7 @@ export declare const HttpCookieSchema: z.ZodObject<{
27
27
  httpOnly: boolean;
28
28
  domain?: string | undefined;
29
29
  secure?: boolean | undefined;
30
- sameSite?: "lax" | "strict" | "none" | undefined;
30
+ sameSite?: "strict" | "lax" | "none" | undefined;
31
31
  maxAge?: number | undefined;
32
32
  expires?: Date | undefined;
33
33
  }, {
@@ -37,7 +37,7 @@ export declare const HttpCookieSchema: z.ZodObject<{
37
37
  domain?: string | undefined;
38
38
  httpOnly?: boolean | undefined;
39
39
  secure?: boolean | undefined;
40
- sameSite?: "lax" | "strict" | "none" | undefined;
40
+ sameSite?: "strict" | "lax" | "none" | undefined;
41
41
  maxAge?: number | undefined;
42
42
  expires?: Date | undefined;
43
43
  }>;
@@ -59,7 +59,7 @@ export declare const HttpCookies: z.ZodDefault<z.ZodArray<z.ZodObject<{
59
59
  httpOnly: boolean;
60
60
  domain?: string | undefined;
61
61
  secure?: boolean | undefined;
62
- sameSite?: "lax" | "strict" | "none" | undefined;
62
+ sameSite?: "strict" | "lax" | "none" | undefined;
63
63
  maxAge?: number | undefined;
64
64
  expires?: Date | undefined;
65
65
  }, {
@@ -69,7 +69,7 @@ export declare const HttpCookies: z.ZodDefault<z.ZodArray<z.ZodObject<{
69
69
  domain?: string | undefined;
70
70
  httpOnly?: boolean | undefined;
71
71
  secure?: boolean | undefined;
72
- sameSite?: "lax" | "strict" | "none" | undefined;
72
+ sameSite?: "strict" | "lax" | "none" | undefined;
73
73
  maxAge?: number | undefined;
74
74
  expires?: Date | undefined;
75
75
  }>, "many">>;
@@ -99,7 +99,7 @@ export declare const HttpRedirectSchema: z.ZodObject<{
99
99
  httpOnly: boolean;
100
100
  domain?: string | undefined;
101
101
  secure?: boolean | undefined;
102
- sameSite?: "lax" | "strict" | "none" | undefined;
102
+ sameSite?: "strict" | "lax" | "none" | undefined;
103
103
  maxAge?: number | undefined;
104
104
  expires?: Date | undefined;
105
105
  }, {
@@ -109,7 +109,7 @@ export declare const HttpRedirectSchema: z.ZodObject<{
109
109
  domain?: string | undefined;
110
110
  httpOnly?: boolean | undefined;
111
111
  secure?: boolean | undefined;
112
- sameSite?: "lax" | "strict" | "none" | undefined;
112
+ sameSite?: "strict" | "lax" | "none" | undefined;
113
113
  maxAge?: number | undefined;
114
114
  expires?: Date | undefined;
115
115
  }>, "many">>>;
@@ -125,7 +125,7 @@ export declare const HttpRedirectSchema: z.ZodObject<{
125
125
  httpOnly: boolean;
126
126
  domain?: string | undefined;
127
127
  secure?: boolean | undefined;
128
- sameSite?: "lax" | "strict" | "none" | undefined;
128
+ sameSite?: "strict" | "lax" | "none" | undefined;
129
129
  maxAge?: number | undefined;
130
130
  expires?: Date | undefined;
131
131
  }[] | undefined;
@@ -141,7 +141,7 @@ export declare const HttpRedirectSchema: z.ZodObject<{
141
141
  domain?: string | undefined;
142
142
  httpOnly?: boolean | undefined;
143
143
  secure?: boolean | undefined;
144
- sameSite?: "lax" | "strict" | "none" | undefined;
144
+ sameSite?: "strict" | "lax" | "none" | undefined;
145
145
  maxAge?: number | undefined;
146
146
  expires?: Date | undefined;
147
147
  }[] | undefined;
@@ -173,7 +173,7 @@ export declare const HttpJsonSchema: z.ZodObject<{
173
173
  httpOnly: boolean;
174
174
  domain?: string | undefined;
175
175
  secure?: boolean | undefined;
176
- sameSite?: "lax" | "strict" | "none" | undefined;
176
+ sameSite?: "strict" | "lax" | "none" | undefined;
177
177
  maxAge?: number | undefined;
178
178
  expires?: Date | undefined;
179
179
  }, {
@@ -183,7 +183,7 @@ export declare const HttpJsonSchema: z.ZodObject<{
183
183
  domain?: string | undefined;
184
184
  httpOnly?: boolean | undefined;
185
185
  secure?: boolean | undefined;
186
- sameSite?: "lax" | "strict" | "none" | undefined;
186
+ sameSite?: "strict" | "lax" | "none" | undefined;
187
187
  maxAge?: number | undefined;
188
188
  expires?: Date | undefined;
189
189
  }>, "many">>>;
@@ -200,7 +200,7 @@ export declare const HttpJsonSchema: z.ZodObject<{
200
200
  httpOnly: boolean;
201
201
  domain?: string | undefined;
202
202
  secure?: boolean | undefined;
203
- sameSite?: "lax" | "strict" | "none" | undefined;
203
+ sameSite?: "strict" | "lax" | "none" | undefined;
204
204
  maxAge?: number | undefined;
205
205
  expires?: Date | undefined;
206
206
  }[] | undefined;
@@ -216,7 +216,7 @@ export declare const HttpJsonSchema: z.ZodObject<{
216
216
  domain?: string | undefined;
217
217
  httpOnly?: boolean | undefined;
218
218
  secure?: boolean | undefined;
219
- sameSite?: "lax" | "strict" | "none" | undefined;
219
+ sameSite?: "strict" | "lax" | "none" | undefined;
220
220
  maxAge?: number | undefined;
221
221
  expires?: Date | undefined;
222
222
  }[] | undefined;
@@ -266,7 +266,7 @@ export declare const HttpTextSchema: z.ZodObject<{
266
266
  httpOnly: boolean;
267
267
  domain?: string | undefined;
268
268
  secure?: boolean | undefined;
269
- sameSite?: "lax" | "strict" | "none" | undefined;
269
+ sameSite?: "strict" | "lax" | "none" | undefined;
270
270
  maxAge?: number | undefined;
271
271
  expires?: Date | undefined;
272
272
  }, {
@@ -276,7 +276,7 @@ export declare const HttpTextSchema: z.ZodObject<{
276
276
  domain?: string | undefined;
277
277
  httpOnly?: boolean | undefined;
278
278
  secure?: boolean | undefined;
279
- sameSite?: "lax" | "strict" | "none" | undefined;
279
+ sameSite?: "strict" | "lax" | "none" | undefined;
280
280
  maxAge?: number | undefined;
281
281
  expires?: Date | undefined;
282
282
  }>, "many">>>;
@@ -293,7 +293,7 @@ export declare const HttpTextSchema: z.ZodObject<{
293
293
  httpOnly: boolean;
294
294
  domain?: string | undefined;
295
295
  secure?: boolean | undefined;
296
- sameSite?: "lax" | "strict" | "none" | undefined;
296
+ sameSite?: "strict" | "lax" | "none" | undefined;
297
297
  maxAge?: number | undefined;
298
298
  expires?: Date | undefined;
299
299
  }[] | undefined;
@@ -309,7 +309,7 @@ export declare const HttpTextSchema: z.ZodObject<{
309
309
  domain?: string | undefined;
310
310
  httpOnly?: boolean | undefined;
311
311
  secure?: boolean | undefined;
312
- sameSite?: "lax" | "strict" | "none" | undefined;
312
+ sameSite?: "strict" | "lax" | "none" | undefined;
313
313
  maxAge?: number | undefined;
314
314
  expires?: Date | undefined;
315
315
  }[] | undefined;
@@ -339,7 +339,7 @@ export declare const HttpHtmlSchema: z.ZodObject<{
339
339
  httpOnly: boolean;
340
340
  domain?: string | undefined;
341
341
  secure?: boolean | undefined;
342
- sameSite?: "lax" | "strict" | "none" | undefined;
342
+ sameSite?: "strict" | "lax" | "none" | undefined;
343
343
  maxAge?: number | undefined;
344
344
  expires?: Date | undefined;
345
345
  }, {
@@ -349,7 +349,7 @@ export declare const HttpHtmlSchema: z.ZodObject<{
349
349
  domain?: string | undefined;
350
350
  httpOnly?: boolean | undefined;
351
351
  secure?: boolean | undefined;
352
- sameSite?: "lax" | "strict" | "none" | undefined;
352
+ sameSite?: "strict" | "lax" | "none" | undefined;
353
353
  maxAge?: number | undefined;
354
354
  expires?: Date | undefined;
355
355
  }>, "many">>>;
@@ -369,7 +369,7 @@ export declare const HttpHtmlSchema: z.ZodObject<{
369
369
  httpOnly: boolean;
370
370
  domain?: string | undefined;
371
371
  secure?: boolean | undefined;
372
- sameSite?: "lax" | "strict" | "none" | undefined;
372
+ sameSite?: "strict" | "lax" | "none" | undefined;
373
373
  maxAge?: number | undefined;
374
374
  expires?: Date | undefined;
375
375
  }[] | undefined;
@@ -385,7 +385,7 @@ export declare const HttpHtmlSchema: z.ZodObject<{
385
385
  domain?: string | undefined;
386
386
  httpOnly?: boolean | undefined;
387
387
  secure?: boolean | undefined;
388
- sameSite?: "lax" | "strict" | "none" | undefined;
388
+ sameSite?: "strict" | "lax" | "none" | undefined;
389
389
  maxAge?: number | undefined;
390
390
  expires?: Date | undefined;
391
391
  }[] | undefined;
@@ -422,7 +422,7 @@ export declare const HttpBinarySchema: z.ZodObject<{
422
422
  httpOnly: boolean;
423
423
  domain?: string | undefined;
424
424
  secure?: boolean | undefined;
425
- sameSite?: "lax" | "strict" | "none" | undefined;
425
+ sameSite?: "strict" | "lax" | "none" | undefined;
426
426
  maxAge?: number | undefined;
427
427
  expires?: Date | undefined;
428
428
  }, {
@@ -432,7 +432,7 @@ export declare const HttpBinarySchema: z.ZodObject<{
432
432
  domain?: string | undefined;
433
433
  httpOnly?: boolean | undefined;
434
434
  secure?: boolean | undefined;
435
- sameSite?: "lax" | "strict" | "none" | undefined;
435
+ sameSite?: "strict" | "lax" | "none" | undefined;
436
436
  maxAge?: number | undefined;
437
437
  expires?: Date | undefined;
438
438
  }>, "many">>>;
@@ -451,7 +451,7 @@ export declare const HttpBinarySchema: z.ZodObject<{
451
451
  httpOnly: boolean;
452
452
  domain?: string | undefined;
453
453
  secure?: boolean | undefined;
454
- sameSite?: "lax" | "strict" | "none" | undefined;
454
+ sameSite?: "strict" | "lax" | "none" | undefined;
455
455
  maxAge?: number | undefined;
456
456
  expires?: Date | undefined;
457
457
  }[] | undefined;
@@ -469,7 +469,7 @@ export declare const HttpBinarySchema: z.ZodObject<{
469
469
  domain?: string | undefined;
470
470
  httpOnly?: boolean | undefined;
471
471
  secure?: boolean | undefined;
472
- sameSite?: "lax" | "strict" | "none" | undefined;
472
+ sameSite?: "strict" | "lax" | "none" | undefined;
473
473
  maxAge?: number | undefined;
474
474
  expires?: Date | undefined;
475
475
  }[] | undefined;
@@ -504,7 +504,7 @@ export declare const HttpImageSchema: z.ZodObject<{
504
504
  httpOnly: boolean;
505
505
  domain?: string | undefined;
506
506
  secure?: boolean | undefined;
507
- sameSite?: "lax" | "strict" | "none" | undefined;
507
+ sameSite?: "strict" | "lax" | "none" | undefined;
508
508
  maxAge?: number | undefined;
509
509
  expires?: Date | undefined;
510
510
  }, {
@@ -514,7 +514,7 @@ export declare const HttpImageSchema: z.ZodObject<{
514
514
  domain?: string | undefined;
515
515
  httpOnly?: boolean | undefined;
516
516
  secure?: boolean | undefined;
517
- sameSite?: "lax" | "strict" | "none" | undefined;
517
+ sameSite?: "strict" | "lax" | "none" | undefined;
518
518
  maxAge?: number | undefined;
519
519
  expires?: Date | undefined;
520
520
  }>, "many">>>;
@@ -536,7 +536,7 @@ export declare const HttpImageSchema: z.ZodObject<{
536
536
  httpOnly: boolean;
537
537
  domain?: string | undefined;
538
538
  secure?: boolean | undefined;
539
- sameSite?: "lax" | "strict" | "none" | undefined;
539
+ sameSite?: "strict" | "lax" | "none" | undefined;
540
540
  maxAge?: number | undefined;
541
541
  expires?: Date | undefined;
542
542
  }[] | undefined;
@@ -554,7 +554,7 @@ export declare const HttpImageSchema: z.ZodObject<{
554
554
  domain?: string | undefined;
555
555
  httpOnly?: boolean | undefined;
556
556
  secure?: boolean | undefined;
557
- sameSite?: "lax" | "strict" | "none" | undefined;
557
+ sameSite?: "strict" | "lax" | "none" | undefined;
558
558
  maxAge?: number | undefined;
559
559
  expires?: Date | undefined;
560
560
  }[] | undefined;
@@ -594,7 +594,7 @@ export declare const HttpStreamSchema: z.ZodObject<{
594
594
  httpOnly: boolean;
595
595
  domain?: string | undefined;
596
596
  secure?: boolean | undefined;
597
- sameSite?: "lax" | "strict" | "none" | undefined;
597
+ sameSite?: "strict" | "lax" | "none" | undefined;
598
598
  maxAge?: number | undefined;
599
599
  expires?: Date | undefined;
600
600
  }, {
@@ -604,7 +604,7 @@ export declare const HttpStreamSchema: z.ZodObject<{
604
604
  domain?: string | undefined;
605
605
  httpOnly?: boolean | undefined;
606
606
  secure?: boolean | undefined;
607
- sameSite?: "lax" | "strict" | "none" | undefined;
607
+ sameSite?: "strict" | "lax" | "none" | undefined;
608
608
  maxAge?: number | undefined;
609
609
  expires?: Date | undefined;
610
610
  }>, "many">>>;
@@ -622,7 +622,7 @@ export declare const HttpStreamSchema: z.ZodObject<{
622
622
  httpOnly: boolean;
623
623
  domain?: string | undefined;
624
624
  secure?: boolean | undefined;
625
- sameSite?: "lax" | "strict" | "none" | undefined;
625
+ sameSite?: "strict" | "lax" | "none" | undefined;
626
626
  maxAge?: number | undefined;
627
627
  expires?: Date | undefined;
628
628
  }[] | undefined;
@@ -640,7 +640,7 @@ export declare const HttpStreamSchema: z.ZodObject<{
640
640
  domain?: string | undefined;
641
641
  httpOnly?: boolean | undefined;
642
642
  secure?: boolean | undefined;
643
- sameSite?: "lax" | "strict" | "none" | undefined;
643
+ sameSite?: "strict" | "lax" | "none" | undefined;
644
644
  maxAge?: number | undefined;
645
645
  expires?: Date | undefined;
646
646
  }[] | undefined;
@@ -673,7 +673,7 @@ export declare const HttpSseSchema: z.ZodObject<{
673
673
  httpOnly: boolean;
674
674
  domain?: string | undefined;
675
675
  secure?: boolean | undefined;
676
- sameSite?: "lax" | "strict" | "none" | undefined;
676
+ sameSite?: "strict" | "lax" | "none" | undefined;
677
677
  maxAge?: number | undefined;
678
678
  expires?: Date | undefined;
679
679
  }, {
@@ -683,7 +683,7 @@ export declare const HttpSseSchema: z.ZodObject<{
683
683
  domain?: string | undefined;
684
684
  httpOnly?: boolean | undefined;
685
685
  secure?: boolean | undefined;
686
- sameSite?: "lax" | "strict" | "none" | undefined;
686
+ sameSite?: "strict" | "lax" | "none" | undefined;
687
687
  maxAge?: number | undefined;
688
688
  expires?: Date | undefined;
689
689
  }>, "many">>>;
@@ -704,7 +704,7 @@ export declare const HttpSseSchema: z.ZodObject<{
704
704
  httpOnly: boolean;
705
705
  domain?: string | undefined;
706
706
  secure?: boolean | undefined;
707
- sameSite?: "lax" | "strict" | "none" | undefined;
707
+ sameSite?: "strict" | "lax" | "none" | undefined;
708
708
  maxAge?: number | undefined;
709
709
  expires?: Date | undefined;
710
710
  }[] | undefined;
@@ -721,7 +721,7 @@ export declare const HttpSseSchema: z.ZodObject<{
721
721
  domain?: string | undefined;
722
722
  httpOnly?: boolean | undefined;
723
723
  secure?: boolean | undefined;
724
- sameSite?: "lax" | "strict" | "none" | undefined;
724
+ sameSite?: "strict" | "lax" | "none" | undefined;
725
725
  maxAge?: number | undefined;
726
726
  expires?: Date | undefined;
727
727
  }[] | undefined;
@@ -740,17 +740,17 @@ export declare const HttpJsonRpcSchema: z.ZodObject<{
740
740
  jsonrpc: z.ZodLiteral<"2.0">;
741
741
  id: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
742
742
  result: z.ZodObject<{
743
- _meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
743
+ _meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
744
744
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
745
- _meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
745
+ _meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
746
746
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
747
- _meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
747
+ _meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
748
748
  }, z.ZodTypeAny, "passthrough">>;
749
749
  }, "strict", z.ZodTypeAny, {
750
750
  jsonrpc: "2.0";
751
751
  id: string | number;
752
752
  result: {
753
- _meta?: z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
753
+ _meta?: Record<string, unknown> | undefined;
754
754
  } & {
755
755
  [k: string]: unknown;
756
756
  };
@@ -758,7 +758,7 @@ export declare const HttpJsonRpcSchema: z.ZodObject<{
758
758
  jsonrpc: "2.0";
759
759
  id: string | number;
760
760
  result: {
761
- _meta?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
761
+ _meta?: Record<string, unknown> | undefined;
762
762
  } & {
763
763
  [k: string]: unknown;
764
764
  };
@@ -814,7 +814,7 @@ export declare const HttpJsonRpcSchema: z.ZodObject<{
814
814
  httpOnly: boolean;
815
815
  domain?: string | undefined;
816
816
  secure?: boolean | undefined;
817
- sameSite?: "lax" | "strict" | "none" | undefined;
817
+ sameSite?: "strict" | "lax" | "none" | undefined;
818
818
  maxAge?: number | undefined;
819
819
  expires?: Date | undefined;
820
820
  }, {
@@ -824,7 +824,7 @@ export declare const HttpJsonRpcSchema: z.ZodObject<{
824
824
  domain?: string | undefined;
825
825
  httpOnly?: boolean | undefined;
826
826
  secure?: boolean | undefined;
827
- sameSite?: "lax" | "strict" | "none" | undefined;
827
+ sameSite?: "strict" | "lax" | "none" | undefined;
828
828
  maxAge?: number | undefined;
829
829
  expires?: Date | undefined;
830
830
  }>, "many">>>;
@@ -835,7 +835,7 @@ export declare const HttpJsonRpcSchema: z.ZodObject<{
835
835
  jsonrpc: "2.0";
836
836
  id: string | number;
837
837
  result: {
838
- _meta?: z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
838
+ _meta?: Record<string, unknown> | undefined;
839
839
  } & {
840
840
  [k: string]: unknown;
841
841
  };
@@ -857,7 +857,7 @@ export declare const HttpJsonRpcSchema: z.ZodObject<{
857
857
  httpOnly: boolean;
858
858
  domain?: string | undefined;
859
859
  secure?: boolean | undefined;
860
- sameSite?: "lax" | "strict" | "none" | undefined;
860
+ sameSite?: "strict" | "lax" | "none" | undefined;
861
861
  maxAge?: number | undefined;
862
862
  expires?: Date | undefined;
863
863
  }[] | undefined;
@@ -868,7 +868,7 @@ export declare const HttpJsonRpcSchema: z.ZodObject<{
868
868
  jsonrpc: "2.0";
869
869
  id: string | number;
870
870
  result: {
871
- _meta?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
871
+ _meta?: Record<string, unknown> | undefined;
872
872
  } & {
873
873
  [k: string]: unknown;
874
874
  };
@@ -889,7 +889,7 @@ export declare const HttpJsonRpcSchema: z.ZodObject<{
889
889
  domain?: string | undefined;
890
890
  httpOnly?: boolean | undefined;
891
891
  secure?: boolean | undefined;
892
- sameSite?: "lax" | "strict" | "none" | undefined;
892
+ sameSite?: "strict" | "lax" | "none" | undefined;
893
893
  maxAge?: number | undefined;
894
894
  expires?: Date | undefined;
895
895
  }[] | undefined;
@@ -928,7 +928,7 @@ export declare const HttpProblemSchema: z.ZodObject<{
928
928
  httpOnly: boolean;
929
929
  domain?: string | undefined;
930
930
  secure?: boolean | undefined;
931
- sameSite?: "lax" | "strict" | "none" | undefined;
931
+ sameSite?: "strict" | "lax" | "none" | undefined;
932
932
  maxAge?: number | undefined;
933
933
  expires?: Date | undefined;
934
934
  }, {
@@ -938,7 +938,7 @@ export declare const HttpProblemSchema: z.ZodObject<{
938
938
  domain?: string | undefined;
939
939
  httpOnly?: boolean | undefined;
940
940
  secure?: boolean | undefined;
941
- sameSite?: "lax" | "strict" | "none" | undefined;
941
+ sameSite?: "strict" | "lax" | "none" | undefined;
942
942
  maxAge?: number | undefined;
943
943
  expires?: Date | undefined;
944
944
  }>, "many">>>;
@@ -959,7 +959,7 @@ export declare const HttpProblemSchema: z.ZodObject<{
959
959
  httpOnly: boolean;
960
960
  domain?: string | undefined;
961
961
  secure?: boolean | undefined;
962
- sameSite?: "lax" | "strict" | "none" | undefined;
962
+ sameSite?: "strict" | "lax" | "none" | undefined;
963
963
  maxAge?: number | undefined;
964
964
  expires?: Date | undefined;
965
965
  }[] | undefined;
@@ -979,7 +979,7 @@ export declare const HttpProblemSchema: z.ZodObject<{
979
979
  domain?: string | undefined;
980
980
  httpOnly?: boolean | undefined;
981
981
  secure?: boolean | undefined;
982
- sameSite?: "lax" | "strict" | "none" | undefined;
982
+ sameSite?: "strict" | "lax" | "none" | undefined;
983
983
  maxAge?: number | undefined;
984
984
  expires?: Date | undefined;
985
985
  }[] | undefined;
@@ -1010,7 +1010,7 @@ export declare const HttpEmptySchema: z.ZodObject<{
1010
1010
  httpOnly: boolean;
1011
1011
  domain?: string | undefined;
1012
1012
  secure?: boolean | undefined;
1013
- sameSite?: "lax" | "strict" | "none" | undefined;
1013
+ sameSite?: "strict" | "lax" | "none" | undefined;
1014
1014
  maxAge?: number | undefined;
1015
1015
  expires?: Date | undefined;
1016
1016
  }, {
@@ -1020,7 +1020,7 @@ export declare const HttpEmptySchema: z.ZodObject<{
1020
1020
  domain?: string | undefined;
1021
1021
  httpOnly?: boolean | undefined;
1022
1022
  secure?: boolean | undefined;
1023
- sameSite?: "lax" | "strict" | "none" | undefined;
1023
+ sameSite?: "strict" | "lax" | "none" | undefined;
1024
1024
  maxAge?: number | undefined;
1025
1025
  expires?: Date | undefined;
1026
1026
  }>, "many">>>;
@@ -1035,7 +1035,7 @@ export declare const HttpEmptySchema: z.ZodObject<{
1035
1035
  httpOnly: boolean;
1036
1036
  domain?: string | undefined;
1037
1037
  secure?: boolean | undefined;
1038
- sameSite?: "lax" | "strict" | "none" | undefined;
1038
+ sameSite?: "strict" | "lax" | "none" | undefined;
1039
1039
  maxAge?: number | undefined;
1040
1040
  expires?: Date | undefined;
1041
1041
  }[] | undefined;
@@ -1050,7 +1050,7 @@ export declare const HttpEmptySchema: z.ZodObject<{
1050
1050
  domain?: string | undefined;
1051
1051
  httpOnly?: boolean | undefined;
1052
1052
  secure?: boolean | undefined;
1053
- sameSite?: "lax" | "strict" | "none" | undefined;
1053
+ sameSite?: "strict" | "lax" | "none" | undefined;
1054
1054
  maxAge?: number | undefined;
1055
1055
  expires?: Date | undefined;
1056
1056
  }[] | undefined;
@@ -1081,7 +1081,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1081
1081
  httpOnly: boolean;
1082
1082
  domain?: string | undefined;
1083
1083
  secure?: boolean | undefined;
1084
- sameSite?: "lax" | "strict" | "none" | undefined;
1084
+ sameSite?: "strict" | "lax" | "none" | undefined;
1085
1085
  maxAge?: number | undefined;
1086
1086
  expires?: Date | undefined;
1087
1087
  }, {
@@ -1091,7 +1091,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1091
1091
  domain?: string | undefined;
1092
1092
  httpOnly?: boolean | undefined;
1093
1093
  secure?: boolean | undefined;
1094
- sameSite?: "lax" | "strict" | "none" | undefined;
1094
+ sameSite?: "strict" | "lax" | "none" | undefined;
1095
1095
  maxAge?: number | undefined;
1096
1096
  expires?: Date | undefined;
1097
1097
  }>, "many">>>;
@@ -1107,7 +1107,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1107
1107
  httpOnly: boolean;
1108
1108
  domain?: string | undefined;
1109
1109
  secure?: boolean | undefined;
1110
- sameSite?: "lax" | "strict" | "none" | undefined;
1110
+ sameSite?: "strict" | "lax" | "none" | undefined;
1111
1111
  maxAge?: number | undefined;
1112
1112
  expires?: Date | undefined;
1113
1113
  }[] | undefined;
@@ -1123,7 +1123,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1123
1123
  domain?: string | undefined;
1124
1124
  httpOnly?: boolean | undefined;
1125
1125
  secure?: boolean | undefined;
1126
- sameSite?: "lax" | "strict" | "none" | undefined;
1126
+ sameSite?: "strict" | "lax" | "none" | undefined;
1127
1127
  maxAge?: number | undefined;
1128
1128
  expires?: Date | undefined;
1129
1129
  }[] | undefined;
@@ -1151,7 +1151,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1151
1151
  httpOnly: boolean;
1152
1152
  domain?: string | undefined;
1153
1153
  secure?: boolean | undefined;
1154
- sameSite?: "lax" | "strict" | "none" | undefined;
1154
+ sameSite?: "strict" | "lax" | "none" | undefined;
1155
1155
  maxAge?: number | undefined;
1156
1156
  expires?: Date | undefined;
1157
1157
  }, {
@@ -1161,7 +1161,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1161
1161
  domain?: string | undefined;
1162
1162
  httpOnly?: boolean | undefined;
1163
1163
  secure?: boolean | undefined;
1164
- sameSite?: "lax" | "strict" | "none" | undefined;
1164
+ sameSite?: "strict" | "lax" | "none" | undefined;
1165
1165
  maxAge?: number | undefined;
1166
1166
  expires?: Date | undefined;
1167
1167
  }>, "many">>>;
@@ -1178,7 +1178,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1178
1178
  httpOnly: boolean;
1179
1179
  domain?: string | undefined;
1180
1180
  secure?: boolean | undefined;
1181
- sameSite?: "lax" | "strict" | "none" | undefined;
1181
+ sameSite?: "strict" | "lax" | "none" | undefined;
1182
1182
  maxAge?: number | undefined;
1183
1183
  expires?: Date | undefined;
1184
1184
  }[] | undefined;
@@ -1194,7 +1194,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1194
1194
  domain?: string | undefined;
1195
1195
  httpOnly?: boolean | undefined;
1196
1196
  secure?: boolean | undefined;
1197
- sameSite?: "lax" | "strict" | "none" | undefined;
1197
+ sameSite?: "strict" | "lax" | "none" | undefined;
1198
1198
  maxAge?: number | undefined;
1199
1199
  expires?: Date | undefined;
1200
1200
  }[] | undefined;
@@ -1223,7 +1223,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1223
1223
  httpOnly: boolean;
1224
1224
  domain?: string | undefined;
1225
1225
  secure?: boolean | undefined;
1226
- sameSite?: "lax" | "strict" | "none" | undefined;
1226
+ sameSite?: "strict" | "lax" | "none" | undefined;
1227
1227
  maxAge?: number | undefined;
1228
1228
  expires?: Date | undefined;
1229
1229
  }, {
@@ -1233,7 +1233,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1233
1233
  domain?: string | undefined;
1234
1234
  httpOnly?: boolean | undefined;
1235
1235
  secure?: boolean | undefined;
1236
- sameSite?: "lax" | "strict" | "none" | undefined;
1236
+ sameSite?: "strict" | "lax" | "none" | undefined;
1237
1237
  maxAge?: number | undefined;
1238
1238
  expires?: Date | undefined;
1239
1239
  }>, "many">>>;
@@ -1250,7 +1250,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1250
1250
  httpOnly: boolean;
1251
1251
  domain?: string | undefined;
1252
1252
  secure?: boolean | undefined;
1253
- sameSite?: "lax" | "strict" | "none" | undefined;
1253
+ sameSite?: "strict" | "lax" | "none" | undefined;
1254
1254
  maxAge?: number | undefined;
1255
1255
  expires?: Date | undefined;
1256
1256
  }[] | undefined;
@@ -1266,7 +1266,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1266
1266
  domain?: string | undefined;
1267
1267
  httpOnly?: boolean | undefined;
1268
1268
  secure?: boolean | undefined;
1269
- sameSite?: "lax" | "strict" | "none" | undefined;
1269
+ sameSite?: "strict" | "lax" | "none" | undefined;
1270
1270
  maxAge?: number | undefined;
1271
1271
  expires?: Date | undefined;
1272
1272
  }[] | undefined;
@@ -1292,7 +1292,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1292
1292
  httpOnly: boolean;
1293
1293
  domain?: string | undefined;
1294
1294
  secure?: boolean | undefined;
1295
- sameSite?: "lax" | "strict" | "none" | undefined;
1295
+ sameSite?: "strict" | "lax" | "none" | undefined;
1296
1296
  maxAge?: number | undefined;
1297
1297
  expires?: Date | undefined;
1298
1298
  }, {
@@ -1302,7 +1302,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1302
1302
  domain?: string | undefined;
1303
1303
  httpOnly?: boolean | undefined;
1304
1304
  secure?: boolean | undefined;
1305
- sameSite?: "lax" | "strict" | "none" | undefined;
1305
+ sameSite?: "strict" | "lax" | "none" | undefined;
1306
1306
  maxAge?: number | undefined;
1307
1307
  expires?: Date | undefined;
1308
1308
  }>, "many">>>;
@@ -1322,7 +1322,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1322
1322
  httpOnly: boolean;
1323
1323
  domain?: string | undefined;
1324
1324
  secure?: boolean | undefined;
1325
- sameSite?: "lax" | "strict" | "none" | undefined;
1325
+ sameSite?: "strict" | "lax" | "none" | undefined;
1326
1326
  maxAge?: number | undefined;
1327
1327
  expires?: Date | undefined;
1328
1328
  }[] | undefined;
@@ -1338,7 +1338,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1338
1338
  domain?: string | undefined;
1339
1339
  httpOnly?: boolean | undefined;
1340
1340
  secure?: boolean | undefined;
1341
- sameSite?: "lax" | "strict" | "none" | undefined;
1341
+ sameSite?: "strict" | "lax" | "none" | undefined;
1342
1342
  maxAge?: number | undefined;
1343
1343
  expires?: Date | undefined;
1344
1344
  }[] | undefined;
@@ -1370,7 +1370,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1370
1370
  httpOnly: boolean;
1371
1371
  domain?: string | undefined;
1372
1372
  secure?: boolean | undefined;
1373
- sameSite?: "lax" | "strict" | "none" | undefined;
1373
+ sameSite?: "strict" | "lax" | "none" | undefined;
1374
1374
  maxAge?: number | undefined;
1375
1375
  expires?: Date | undefined;
1376
1376
  }, {
@@ -1380,7 +1380,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1380
1380
  domain?: string | undefined;
1381
1381
  httpOnly?: boolean | undefined;
1382
1382
  secure?: boolean | undefined;
1383
- sameSite?: "lax" | "strict" | "none" | undefined;
1383
+ sameSite?: "strict" | "lax" | "none" | undefined;
1384
1384
  maxAge?: number | undefined;
1385
1385
  expires?: Date | undefined;
1386
1386
  }>, "many">>>;
@@ -1399,7 +1399,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1399
1399
  httpOnly: boolean;
1400
1400
  domain?: string | undefined;
1401
1401
  secure?: boolean | undefined;
1402
- sameSite?: "lax" | "strict" | "none" | undefined;
1402
+ sameSite?: "strict" | "lax" | "none" | undefined;
1403
1403
  maxAge?: number | undefined;
1404
1404
  expires?: Date | undefined;
1405
1405
  }[] | undefined;
@@ -1417,7 +1417,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1417
1417
  domain?: string | undefined;
1418
1418
  httpOnly?: boolean | undefined;
1419
1419
  secure?: boolean | undefined;
1420
- sameSite?: "lax" | "strict" | "none" | undefined;
1420
+ sameSite?: "strict" | "lax" | "none" | undefined;
1421
1421
  maxAge?: number | undefined;
1422
1422
  expires?: Date | undefined;
1423
1423
  }[] | undefined;
@@ -1448,7 +1448,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1448
1448
  httpOnly: boolean;
1449
1449
  domain?: string | undefined;
1450
1450
  secure?: boolean | undefined;
1451
- sameSite?: "lax" | "strict" | "none" | undefined;
1451
+ sameSite?: "strict" | "lax" | "none" | undefined;
1452
1452
  maxAge?: number | undefined;
1453
1453
  expires?: Date | undefined;
1454
1454
  }, {
@@ -1458,7 +1458,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1458
1458
  domain?: string | undefined;
1459
1459
  httpOnly?: boolean | undefined;
1460
1460
  secure?: boolean | undefined;
1461
- sameSite?: "lax" | "strict" | "none" | undefined;
1461
+ sameSite?: "strict" | "lax" | "none" | undefined;
1462
1462
  maxAge?: number | undefined;
1463
1463
  expires?: Date | undefined;
1464
1464
  }>, "many">>>;
@@ -1480,7 +1480,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1480
1480
  httpOnly: boolean;
1481
1481
  domain?: string | undefined;
1482
1482
  secure?: boolean | undefined;
1483
- sameSite?: "lax" | "strict" | "none" | undefined;
1483
+ sameSite?: "strict" | "lax" | "none" | undefined;
1484
1484
  maxAge?: number | undefined;
1485
1485
  expires?: Date | undefined;
1486
1486
  }[] | undefined;
@@ -1498,7 +1498,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1498
1498
  domain?: string | undefined;
1499
1499
  httpOnly?: boolean | undefined;
1500
1500
  secure?: boolean | undefined;
1501
- sameSite?: "lax" | "strict" | "none" | undefined;
1501
+ sameSite?: "strict" | "lax" | "none" | undefined;
1502
1502
  maxAge?: number | undefined;
1503
1503
  expires?: Date | undefined;
1504
1504
  }[] | undefined;
@@ -1531,7 +1531,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1531
1531
  httpOnly: boolean;
1532
1532
  domain?: string | undefined;
1533
1533
  secure?: boolean | undefined;
1534
- sameSite?: "lax" | "strict" | "none" | undefined;
1534
+ sameSite?: "strict" | "lax" | "none" | undefined;
1535
1535
  maxAge?: number | undefined;
1536
1536
  expires?: Date | undefined;
1537
1537
  }, {
@@ -1541,7 +1541,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1541
1541
  domain?: string | undefined;
1542
1542
  httpOnly?: boolean | undefined;
1543
1543
  secure?: boolean | undefined;
1544
- sameSite?: "lax" | "strict" | "none" | undefined;
1544
+ sameSite?: "strict" | "lax" | "none" | undefined;
1545
1545
  maxAge?: number | undefined;
1546
1546
  expires?: Date | undefined;
1547
1547
  }>, "many">>>;
@@ -1559,7 +1559,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1559
1559
  httpOnly: boolean;
1560
1560
  domain?: string | undefined;
1561
1561
  secure?: boolean | undefined;
1562
- sameSite?: "lax" | "strict" | "none" | undefined;
1562
+ sameSite?: "strict" | "lax" | "none" | undefined;
1563
1563
  maxAge?: number | undefined;
1564
1564
  expires?: Date | undefined;
1565
1565
  }[] | undefined;
@@ -1577,7 +1577,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1577
1577
  domain?: string | undefined;
1578
1578
  httpOnly?: boolean | undefined;
1579
1579
  secure?: boolean | undefined;
1580
- sameSite?: "lax" | "strict" | "none" | undefined;
1580
+ sameSite?: "strict" | "lax" | "none" | undefined;
1581
1581
  maxAge?: number | undefined;
1582
1582
  expires?: Date | undefined;
1583
1583
  }[] | undefined;
@@ -1606,7 +1606,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1606
1606
  httpOnly: boolean;
1607
1607
  domain?: string | undefined;
1608
1608
  secure?: boolean | undefined;
1609
- sameSite?: "lax" | "strict" | "none" | undefined;
1609
+ sameSite?: "strict" | "lax" | "none" | undefined;
1610
1610
  maxAge?: number | undefined;
1611
1611
  expires?: Date | undefined;
1612
1612
  }, {
@@ -1616,7 +1616,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1616
1616
  domain?: string | undefined;
1617
1617
  httpOnly?: boolean | undefined;
1618
1618
  secure?: boolean | undefined;
1619
- sameSite?: "lax" | "strict" | "none" | undefined;
1619
+ sameSite?: "strict" | "lax" | "none" | undefined;
1620
1620
  maxAge?: number | undefined;
1621
1621
  expires?: Date | undefined;
1622
1622
  }>, "many">>>;
@@ -1637,7 +1637,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1637
1637
  httpOnly: boolean;
1638
1638
  domain?: string | undefined;
1639
1639
  secure?: boolean | undefined;
1640
- sameSite?: "lax" | "strict" | "none" | undefined;
1640
+ sameSite?: "strict" | "lax" | "none" | undefined;
1641
1641
  maxAge?: number | undefined;
1642
1642
  expires?: Date | undefined;
1643
1643
  }[] | undefined;
@@ -1654,7 +1654,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1654
1654
  domain?: string | undefined;
1655
1655
  httpOnly?: boolean | undefined;
1656
1656
  secure?: boolean | undefined;
1657
- sameSite?: "lax" | "strict" | "none" | undefined;
1657
+ sameSite?: "strict" | "lax" | "none" | undefined;
1658
1658
  maxAge?: number | undefined;
1659
1659
  expires?: Date | undefined;
1660
1660
  }[] | undefined;
@@ -1669,17 +1669,17 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1669
1669
  jsonrpc: z.ZodLiteral<"2.0">;
1670
1670
  id: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
1671
1671
  result: z.ZodObject<{
1672
- _meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
1672
+ _meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1673
1673
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1674
- _meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
1674
+ _meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1675
1675
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1676
- _meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
1676
+ _meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1677
1677
  }, z.ZodTypeAny, "passthrough">>;
1678
1678
  }, "strict", z.ZodTypeAny, {
1679
1679
  jsonrpc: "2.0";
1680
1680
  id: string | number;
1681
1681
  result: {
1682
- _meta?: z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1682
+ _meta?: Record<string, unknown> | undefined;
1683
1683
  } & {
1684
1684
  [k: string]: unknown;
1685
1685
  };
@@ -1687,7 +1687,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1687
1687
  jsonrpc: "2.0";
1688
1688
  id: string | number;
1689
1689
  result: {
1690
- _meta?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1690
+ _meta?: Record<string, unknown> | undefined;
1691
1691
  } & {
1692
1692
  [k: string]: unknown;
1693
1693
  };
@@ -1743,7 +1743,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1743
1743
  httpOnly: boolean;
1744
1744
  domain?: string | undefined;
1745
1745
  secure?: boolean | undefined;
1746
- sameSite?: "lax" | "strict" | "none" | undefined;
1746
+ sameSite?: "strict" | "lax" | "none" | undefined;
1747
1747
  maxAge?: number | undefined;
1748
1748
  expires?: Date | undefined;
1749
1749
  }, {
@@ -1753,7 +1753,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1753
1753
  domain?: string | undefined;
1754
1754
  httpOnly?: boolean | undefined;
1755
1755
  secure?: boolean | undefined;
1756
- sameSite?: "lax" | "strict" | "none" | undefined;
1756
+ sameSite?: "strict" | "lax" | "none" | undefined;
1757
1757
  maxAge?: number | undefined;
1758
1758
  expires?: Date | undefined;
1759
1759
  }>, "many">>>;
@@ -1764,7 +1764,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1764
1764
  jsonrpc: "2.0";
1765
1765
  id: string | number;
1766
1766
  result: {
1767
- _meta?: z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1767
+ _meta?: Record<string, unknown> | undefined;
1768
1768
  } & {
1769
1769
  [k: string]: unknown;
1770
1770
  };
@@ -1786,7 +1786,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1786
1786
  httpOnly: boolean;
1787
1787
  domain?: string | undefined;
1788
1788
  secure?: boolean | undefined;
1789
- sameSite?: "lax" | "strict" | "none" | undefined;
1789
+ sameSite?: "strict" | "lax" | "none" | undefined;
1790
1790
  maxAge?: number | undefined;
1791
1791
  expires?: Date | undefined;
1792
1792
  }[] | undefined;
@@ -1797,7 +1797,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1797
1797
  jsonrpc: "2.0";
1798
1798
  id: string | number;
1799
1799
  result: {
1800
- _meta?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1800
+ _meta?: Record<string, unknown> | undefined;
1801
1801
  } & {
1802
1802
  [k: string]: unknown;
1803
1803
  };
@@ -1818,7 +1818,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1818
1818
  domain?: string | undefined;
1819
1819
  httpOnly?: boolean | undefined;
1820
1820
  secure?: boolean | undefined;
1821
- sameSite?: "lax" | "strict" | "none" | undefined;
1821
+ sameSite?: "strict" | "lax" | "none" | undefined;
1822
1822
  maxAge?: number | undefined;
1823
1823
  expires?: Date | undefined;
1824
1824
  }[] | undefined;
@@ -1853,7 +1853,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1853
1853
  httpOnly: boolean;
1854
1854
  domain?: string | undefined;
1855
1855
  secure?: boolean | undefined;
1856
- sameSite?: "lax" | "strict" | "none" | undefined;
1856
+ sameSite?: "strict" | "lax" | "none" | undefined;
1857
1857
  maxAge?: number | undefined;
1858
1858
  expires?: Date | undefined;
1859
1859
  }, {
@@ -1863,7 +1863,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1863
1863
  domain?: string | undefined;
1864
1864
  httpOnly?: boolean | undefined;
1865
1865
  secure?: boolean | undefined;
1866
- sameSite?: "lax" | "strict" | "none" | undefined;
1866
+ sameSite?: "strict" | "lax" | "none" | undefined;
1867
1867
  maxAge?: number | undefined;
1868
1868
  expires?: Date | undefined;
1869
1869
  }>, "many">>>;
@@ -1884,7 +1884,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1884
1884
  httpOnly: boolean;
1885
1885
  domain?: string | undefined;
1886
1886
  secure?: boolean | undefined;
1887
- sameSite?: "lax" | "strict" | "none" | undefined;
1887
+ sameSite?: "strict" | "lax" | "none" | undefined;
1888
1888
  maxAge?: number | undefined;
1889
1889
  expires?: Date | undefined;
1890
1890
  }[] | undefined;
@@ -1904,7 +1904,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1904
1904
  domain?: string | undefined;
1905
1905
  httpOnly?: boolean | undefined;
1906
1906
  secure?: boolean | undefined;
1907
- sameSite?: "lax" | "strict" | "none" | undefined;
1907
+ sameSite?: "strict" | "lax" | "none" | undefined;
1908
1908
  maxAge?: number | undefined;
1909
1909
  expires?: Date | undefined;
1910
1910
  }[] | undefined;
@@ -1931,7 +1931,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1931
1931
  httpOnly: boolean;
1932
1932
  domain?: string | undefined;
1933
1933
  secure?: boolean | undefined;
1934
- sameSite?: "lax" | "strict" | "none" | undefined;
1934
+ sameSite?: "strict" | "lax" | "none" | undefined;
1935
1935
  maxAge?: number | undefined;
1936
1936
  expires?: Date | undefined;
1937
1937
  }, {
@@ -1941,7 +1941,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1941
1941
  domain?: string | undefined;
1942
1942
  httpOnly?: boolean | undefined;
1943
1943
  secure?: boolean | undefined;
1944
- sameSite?: "lax" | "strict" | "none" | undefined;
1944
+ sameSite?: "strict" | "lax" | "none" | undefined;
1945
1945
  maxAge?: number | undefined;
1946
1946
  expires?: Date | undefined;
1947
1947
  }>, "many">>>;
@@ -1956,7 +1956,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1956
1956
  httpOnly: boolean;
1957
1957
  domain?: string | undefined;
1958
1958
  secure?: boolean | undefined;
1959
- sameSite?: "lax" | "strict" | "none" | undefined;
1959
+ sameSite?: "strict" | "lax" | "none" | undefined;
1960
1960
  maxAge?: number | undefined;
1961
1961
  expires?: Date | undefined;
1962
1962
  }[] | undefined;
@@ -1971,7 +1971,7 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
1971
1971
  domain?: string | undefined;
1972
1972
  httpOnly?: boolean | undefined;
1973
1973
  secure?: boolean | undefined;
1974
- sameSite?: "lax" | "strict" | "none" | undefined;
1974
+ sameSite?: "strict" | "lax" | "none" | undefined;
1975
1975
  maxAge?: number | undefined;
1976
1976
  expires?: Date | undefined;
1977
1977
  }[] | undefined;