@halliday-sdk/payments 2.1.0 → 2.2.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.
@@ -48,12 +48,40 @@ declare const WindowType: z.ZodEnum<{
48
48
  MODAL: "MODAL";
49
49
  }>;
50
50
  type WindowType = z.infer<typeof WindowType>;
51
+ declare const TextMode: z.ZodEnum<{
52
+ DEFAULT: "DEFAULT";
53
+ ALL_UPPERCASE: "ALL_UPPERCASE";
54
+ }>;
55
+ type TextMode = z.infer<typeof TextMode>;
56
+ declare const PaymentCategoryGrouping: z.ZodEnum<{
57
+ ATTACHED: "ATTACHED";
58
+ BUTTON: "BUTTON";
59
+ }>;
60
+ type PaymentCategoryGrouping = z.infer<typeof PaymentCategoryGrouping>;
61
+ declare const BorderStyle: z.ZodEnum<{
62
+ SQUARE: "SQUARE";
63
+ DEFAULT: "DEFAULT";
64
+ }>;
65
+ type BorderStyle = z.infer<typeof BorderStyle>;
51
66
  declare const CustomStyles: z.ZodObject<{
52
67
  primaryColor: z.ZodOptional<z.ZodString>;
53
68
  backgroundColor: z.ZodOptional<z.ZodString>;
54
69
  borderColor: z.ZodOptional<z.ZodString>;
55
70
  textColor: z.ZodOptional<z.ZodString>;
56
71
  textSecondaryColor: z.ZodOptional<z.ZodString>;
72
+ accentColor: z.ZodOptional<z.ZodString>;
73
+ borderStyle: z.ZodOptional<z.ZodEnum<{
74
+ SQUARE: "SQUARE";
75
+ DEFAULT: "DEFAULT";
76
+ }>>;
77
+ textMode: z.ZodOptional<z.ZodEnum<{
78
+ DEFAULT: "DEFAULT";
79
+ ALL_UPPERCASE: "ALL_UPPERCASE";
80
+ }>>;
81
+ paymentCategoryGrouping: z.ZodOptional<z.ZodEnum<{
82
+ ATTACHED: "ATTACHED";
83
+ BUTTON: "BUTTON";
84
+ }>>;
57
85
  logo: z.ZodOptional<z.ZodObject<{
58
86
  src: z.ZodURL;
59
87
  alt: z.ZodString;
@@ -64,6 +92,17 @@ declare const CustomStyles: z.ZodObject<{
64
92
  type CustomStyles = z.infer<typeof CustomStyles>;
65
93
  declare const OrderStatus: z.ZodAny;
66
94
  type OrderStatus = z.infer<typeof OrderStatus>;
95
+ declare const PaymentCategoryOrder: z.ZodArray<z.ZodEnum<{
96
+ wallet: "wallet";
97
+ exchange: "exchange";
98
+ cash: "cash";
99
+ }>>;
100
+ type PaymentCategoryOrder = z.infer<typeof PaymentCategoryOrder>;
101
+ declare const FontName: z.ZodEnum<{
102
+ haffer: "haffer";
103
+ "wudoo-mono": "wudoo-mono";
104
+ }>;
105
+ type FontName = z.infer<typeof FontName>;
67
106
  type SignMessage = (input: {
68
107
  message: string;
69
108
  ownerAddress?: Address;
@@ -89,6 +128,11 @@ declare const PaymentsWidgetSDKParamsWithoutRolesAndFunctions: z.ZodObject<{
89
128
  sandbox: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
90
129
  inputs: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
91
130
  outputs: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
131
+ features: z.ZodOptional<z.ZodArray<z.ZodEnum<{
132
+ BETA_EDGES: "BETA_EDGES";
133
+ ORG_BETA_EDGES: "ORG_BETA_EDGES";
134
+ ORG_EDGES: "ORG_EDGES";
135
+ }>>>;
92
136
  apiKey: z.ZodString;
93
137
  destinationAddress: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
94
138
  widgetVersion: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
@@ -101,6 +145,19 @@ declare const PaymentsWidgetSDKParamsWithoutRolesAndFunctions: z.ZodObject<{
101
145
  borderColor: z.ZodOptional<z.ZodString>;
102
146
  textColor: z.ZodOptional<z.ZodString>;
103
147
  textSecondaryColor: z.ZodOptional<z.ZodString>;
148
+ accentColor: z.ZodOptional<z.ZodString>;
149
+ borderStyle: z.ZodOptional<z.ZodEnum<{
150
+ SQUARE: "SQUARE";
151
+ DEFAULT: "DEFAULT";
152
+ }>>;
153
+ textMode: z.ZodOptional<z.ZodEnum<{
154
+ DEFAULT: "DEFAULT";
155
+ ALL_UPPERCASE: "ALL_UPPERCASE";
156
+ }>>;
157
+ paymentCategoryGrouping: z.ZodOptional<z.ZodEnum<{
158
+ ATTACHED: "ATTACHED";
159
+ BUTTON: "BUTTON";
160
+ }>>;
104
161
  logo: z.ZodOptional<z.ZodObject<{
105
162
  src: z.ZodURL;
106
163
  alt: z.ZodString;
@@ -120,6 +177,15 @@ declare const PaymentsWidgetSDKParamsWithoutRolesAndFunctions: z.ZodObject<{
120
177
  secondaryRedirectUrl: z.ZodOptional<z.ZodURL>;
121
178
  secondaryCtaText: z.ZodOptional<z.ZodString>;
122
179
  }, z.core.$strip>>;
180
+ paymentCategoryOrder: z.ZodOptional<z.ZodArray<z.ZodEnum<{
181
+ wallet: "wallet";
182
+ exchange: "exchange";
183
+ cash: "cash";
184
+ }>>>;
185
+ fontName: z.ZodOptional<z.ZodEnum<{
186
+ haffer: "haffer";
187
+ "wudoo-mono": "wudoo-mono";
188
+ }>>;
123
189
  }, z.core.$strip>;
124
190
  declare const PaymentsWidgetSDKParams: z.ZodObject<{
125
191
  customStyles: z.ZodOptional<z.ZodObject<{
@@ -128,6 +194,19 @@ declare const PaymentsWidgetSDKParams: z.ZodObject<{
128
194
  borderColor: z.ZodOptional<z.ZodString>;
129
195
  textColor: z.ZodOptional<z.ZodString>;
130
196
  textSecondaryColor: z.ZodOptional<z.ZodString>;
197
+ accentColor: z.ZodOptional<z.ZodString>;
198
+ borderStyle: z.ZodOptional<z.ZodEnum<{
199
+ SQUARE: "SQUARE";
200
+ DEFAULT: "DEFAULT";
201
+ }>>;
202
+ textMode: z.ZodOptional<z.ZodEnum<{
203
+ DEFAULT: "DEFAULT";
204
+ ALL_UPPERCASE: "ALL_UPPERCASE";
205
+ }>>;
206
+ paymentCategoryGrouping: z.ZodOptional<z.ZodEnum<{
207
+ ATTACHED: "ATTACHED";
208
+ BUTTON: "BUTTON";
209
+ }>>;
131
210
  logo: z.ZodOptional<z.ZodObject<{
132
211
  src: z.ZodURL;
133
212
  alt: z.ZodString;
@@ -160,6 +239,20 @@ declare const PaymentsWidgetSDKParams: z.ZodObject<{
160
239
  sendTransaction: z.ZodOptional<z.ZodAny>;
161
240
  signTypedData: z.ZodOptional<z.ZodAny>;
162
241
  }, z.core.$strip>>;
242
+ features: z.ZodOptional<z.ZodArray<z.ZodEnum<{
243
+ BETA_EDGES: "BETA_EDGES";
244
+ ORG_BETA_EDGES: "ORG_BETA_EDGES";
245
+ ORG_EDGES: "ORG_EDGES";
246
+ }>>>;
247
+ paymentCategoryOrder: z.ZodOptional<z.ZodArray<z.ZodEnum<{
248
+ wallet: "wallet";
249
+ exchange: "exchange";
250
+ cash: "cash";
251
+ }>>>;
252
+ fontName: z.ZodOptional<z.ZodEnum<{
253
+ haffer: "haffer";
254
+ "wudoo-mono": "wudoo-mono";
255
+ }>>;
163
256
  onramps: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>>;
164
257
  offramps: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>>;
165
258
  sandbox: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
@@ -206,6 +299,11 @@ declare const PaymentsWidgetQueryParams: z.ZodObject<{
206
299
  sandbox: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
207
300
  inputs: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
208
301
  outputs: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
302
+ features: z.ZodOptional<z.ZodArray<z.ZodEnum<{
303
+ BETA_EDGES: "BETA_EDGES";
304
+ ORG_BETA_EDGES: "ORG_BETA_EDGES";
305
+ ORG_EDGES: "ORG_EDGES";
306
+ }>>>;
209
307
  apiKey: z.ZodString;
210
308
  destinationAddress: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
211
309
  widgetVersion: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
@@ -218,6 +316,19 @@ declare const PaymentsWidgetQueryParams: z.ZodObject<{
218
316
  borderColor: z.ZodOptional<z.ZodString>;
219
317
  textColor: z.ZodOptional<z.ZodString>;
220
318
  textSecondaryColor: z.ZodOptional<z.ZodString>;
319
+ accentColor: z.ZodOptional<z.ZodString>;
320
+ borderStyle: z.ZodOptional<z.ZodEnum<{
321
+ SQUARE: "SQUARE";
322
+ DEFAULT: "DEFAULT";
323
+ }>>;
324
+ textMode: z.ZodOptional<z.ZodEnum<{
325
+ DEFAULT: "DEFAULT";
326
+ ALL_UPPERCASE: "ALL_UPPERCASE";
327
+ }>>;
328
+ paymentCategoryGrouping: z.ZodOptional<z.ZodEnum<{
329
+ ATTACHED: "ATTACHED";
330
+ BUTTON: "BUTTON";
331
+ }>>;
221
332
  logo: z.ZodOptional<z.ZodObject<{
222
333
  src: z.ZodURL;
223
334
  alt: z.ZodString;
@@ -237,6 +348,15 @@ declare const PaymentsWidgetQueryParams: z.ZodObject<{
237
348
  secondaryRedirectUrl: z.ZodOptional<z.ZodURL>;
238
349
  secondaryCtaText: z.ZodOptional<z.ZodString>;
239
350
  }, z.core.$strip>>;
351
+ paymentCategoryOrder: z.ZodOptional<z.ZodArray<z.ZodEnum<{
352
+ wallet: "wallet";
353
+ exchange: "exchange";
354
+ cash: "cash";
355
+ }>>>;
356
+ fontName: z.ZodOptional<z.ZodEnum<{
357
+ haffer: "haffer";
358
+ "wudoo-mono": "wudoo-mono";
359
+ }>>;
240
360
  }, z.core.$strip>;
241
361
  type PaymentsWidgetQueryParams = z.infer<typeof PaymentsWidgetQueryParams>;
242
362
  declare enum MessageType {
@@ -340,6 +460,8 @@ type MessageResponse = {
340
460
  *
341
461
  * @param {Role=} params.owner {{@link Role}} (optional) The owner that would have full access to payments workflow.
342
462
  * @param {Role=} params.funder {{@link Role}} (optional) The funder that initiates the funding.
463
+ * @param {PaymentCategoryOrder=} params.paymentCategoryOrder {{@link PaymentCategoryOrder}} (optional) On the quote page, these are three displayed paymentcategories (empty or three elements).
464
+ * @param {FontName=} params.fontName {{@link FontName}} (optional) The font name to use in the widget (haffer or wudoo-mono). Defaults to haffer.
343
465
  *
344
466
  * @param {StatusCallback=} params.statusCallback {{@link StatusCallback}} (optional) Callback to receive status events.
345
467
  */
@@ -369,5 +491,5 @@ declare const getPaymentsWidgetUrl: (params: PaymentsWidgetQueryParams & {
369
491
  windowOrigin?: string;
370
492
  }) => string;
371
493
 
372
- export { AppMode, CustomStyles, MessageType, OrderStatus, PaymentsWidgetQueryParams, PaymentsWidgetSDKParams, WindowType, deserializeQueryParams, getPaymentsWidgetUrl, openHallidayPayments, serializeQueryParams };
494
+ export { AppMode, BorderStyle, CustomStyles, FontName, MessageType, OrderStatus, PaymentCategoryGrouping, PaymentCategoryOrder, PaymentsWidgetQueryParams, PaymentsWidgetSDKParams, TextMode, WindowType, deserializeQueryParams, getPaymentsWidgetUrl, openHallidayPayments, serializeQueryParams };
373
495
  export type { Message, MessageResponse };
@@ -1,2 +1,2 @@
1
- const e="https://app.halliday.xyz",t=/^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$/;function n(e,t,n){function o(n,o){var i;Object.defineProperty(n,"_zod",{value:n._zod??{},enumerable:!1}),(i=n._zod).traits??(i.traits=new Set),n._zod.traits.add(e),t(n,o);for(const e in s.prototype)Object.defineProperty(n,e,{value:s.prototype[e].bind(n)});n._zod.constr=s,n._zod.def=o}const i=n?.Parent??Object;class r extends i{}function s(e){var t;const i=n?.Parent?new r:this;o(i,e),(t=i._zod).deferred??(t.deferred=[]);for(const e of i._zod.deferred)e();return i}return Object.defineProperty(r,"name",{value:e}),Object.defineProperty(s,"init",{value:o}),Object.defineProperty(s,Symbol.hasInstance,{value:t=>!!(n?.Parent&&t instanceof n.Parent)||t?._zod?.traits?.has(e)}),Object.defineProperty(s,"name",{value:e}),s}class o extends Error{constructor(){super("Encountered Promise during synchronous parse. Use .parseAsync() instead.")}}const i={};function r(e){return i}function s(e,t){return"bigint"==typeof t?t.toString():t}function a(e){return{get value(){{const t=e();return Object.defineProperty(this,"value",{value:t}),t}}}}function u(e){return null==e}function c(e){const t=e.startsWith("^")?1:0,n=e.endsWith("$")?e.length-1:e.length;return e.slice(t,n)}function d(e,t,n){Object.defineProperty(e,t,{get(){{const o=n();return e[t]=o,o}},set(n){Object.defineProperty(e,t,{value:n})},configurable:!0})}function l(e,t,n){Object.defineProperty(e,t,{value:n,writable:!0,enumerable:!0,configurable:!0})}function p(e=10){const t="abcdefghijklmnopqrstuvwxyz";let n="";for(let o=0;o<e;o++)n+=t[Math.floor(26*Math.random())];return n}function f(e){return JSON.stringify(e)}function h(e){return"object"==typeof e&&null!==e&&!Array.isArray(e)}const m=a((()=>{try{return new Function(""),!0}catch(e){return!1}}));function _(e){return"object"==typeof e&&null!==e&&(Object.getPrototypeOf(e)===Object.prototype||null===Object.getPrototypeOf(e))}const v=new Set(["string","number","symbol"]);function g(e){return e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function y(e,t,n){const o=new e._zod.constr(t??e._zod.def);return t&&!n?.parent||(o._zod.parent=e),o}function w(e){const t=e;if(!t)return{};if("string"==typeof t)return{error:()=>t};if(void 0!==t?.message){if(void 0!==t?.error)throw new Error("Cannot specify both `message` and `error` params");t.error=t.message}return delete t.message,"string"==typeof t.error?{...t,error:()=>t.error}:t}const z={safeint:[Number.MIN_SAFE_INTEGER,Number.MAX_SAFE_INTEGER],int32:[-2147483648,2147483647],uint32:[0,4294967295],float32:[-34028234663852886e22,34028234663852886e22],float64:[-Number.MAX_VALUE,Number.MAX_VALUE]};function b(e,t=0){for(let n=t;n<e.issues.length;n++)if(!0!==e.issues[n].continue)return!0;return!1}function k(e,t){return t.map((t=>{var n;return(n=t).path??(n.path=[]),t.path.unshift(e),t}))}function E(e){return"string"==typeof e?e:e?.message}function I(e,t,n){const o={...e,path:e.path??[]};if(!e.message){const i=E(e.inst?._zod.def?.error?.(e))??E(t?.error?.(e))??E(n.customError?.(e))??E(n.localeError?.(e))??"Invalid input";o.message=i}return delete o.inst,delete o.continue,t?.reportInput||delete o.input,o}function $(e){return Array.isArray(e)?"array":"string"==typeof e?"string":"unknown"}function A(...e){const[t,n,o]=e;return"string"==typeof t?{message:t,code:"custom",input:n,inst:o}:{...t}}const T=(e,t)=>{e.name="$ZodError",Object.defineProperty(e,"_zod",{value:e._zod,enumerable:!1}),Object.defineProperty(e,"issues",{value:t,enumerable:!1}),Object.defineProperty(e,"message",{get:()=>JSON.stringify(t,s,2),enumerable:!0})},x=n("$ZodError",T),O=n("$ZodError",T,{Parent:Error});const P=e=>(t,n,i,s)=>{const a=i?Object.assign(i,{async:!1}):{async:!1},u=t._zod.run({value:n,issues:[]},a);if(u instanceof Promise)throw new o;if(u.issues.length){const t=new(s?.Err??e)(u.issues.map((e=>I(e,a,r()))));throw Error.captureStackTrace(t,s?.callee),t}return u.value},N=e=>async(t,n,o,i)=>{const s=o?Object.assign(o,{async:!0}):{async:!0};let a=t._zod.run({value:n,issues:[]},s);if(a instanceof Promise&&(a=await a),a.issues.length){const t=new(i?.Err??e)(a.issues.map((e=>I(e,s,r()))));throw Error.captureStackTrace(t,i?.callee),t}return a.value},Z=e=>(t,n,i)=>{const s=i?{...i,async:!1}:{async:!1},a=t._zod.run({value:n,issues:[]},s);if(a instanceof Promise)throw new o;return a.issues.length?{success:!1,error:new(e??x)(a.issues.map((e=>I(e,s,r()))))}:{success:!0,data:a.value}},S=Z(O),D=e=>async(t,n,o)=>{const i=o?Object.assign(o,{async:!0}):{async:!0};let s=t._zod.run({value:n,issues:[]},i);return s instanceof Promise&&(s=await s),s.issues.length?{success:!1,error:new e(s.issues.map((e=>I(e,i,r()))))}:{success:!0,data:s.value}},R=D(O),C=/^[cC][^\s-]{8,}$/,F=/^[0-9a-z]+$/,U=/^[0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{26}$/,j=/^[0-9a-vA-V]{20}$/,L=/^[A-Za-z0-9]{27}$/,M=/^[a-zA-Z0-9_-]{21}$/,V=/^P(?:(\d+W)|(?!.*W)(?=\d|T\d)(\d+Y)?(\d+M)?(\d+D)?(T(?=\d)(\d+H)?(\d+M)?(\d+([.,]\d+)?S)?)?)$/,W=/^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})$/,B=e=>e?new RegExp(`^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-${e}[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12})$`):/^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000)$/,G=/^(?!\.)(?!.*\.\.)([A-Za-z0-9_'+\-\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\-]*\.)+[A-Za-z]{2,}$/;const q=/^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])$/,H=/^(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|::|([0-9a-fA-F]{1,4})?::([0-9a-fA-F]{1,4}:?){0,6})$/,Y=/^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\/([0-9]|[1-2][0-9]|3[0-2])$/,K=/^(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|::|([0-9a-fA-F]{1,4})?::([0-9a-fA-F]{1,4}:?){0,6})\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/,J=/^$|^(?:[0-9a-zA-Z+/]{4})*(?:(?:[0-9a-zA-Z+/]{2}==)|(?:[0-9a-zA-Z+/]{3}=))?$/,X=/^[A-Za-z0-9_-]*$/,Q=/^([a-zA-Z0-9-]+\.)*[a-zA-Z0-9-]+$/,ee=/^\+(?:[0-9]){6,14}[0-9]$/,te="((\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-((0[13578]|1[02])-(0[1-9]|[12]\\d|3[01])|(0[469]|11)-(0[1-9]|[12]\\d|30)|(02)-(0[1-9]|1\\d|2[0-8])))",ne=new RegExp(`^${te}$`);function oe(e){let t="([01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d";return e.precision?t=`${t}\\.\\d{${e.precision}}`:null==e.precision&&(t=`${t}(\\.\\d+)?`),t}const ie=/^\d+n?$/,re=/^\d+$/,se=/^-?\d+(?:\.\d+)?/i,ae=/true|false/i,ue=/^[^A-Z]*$/,ce=/^[^a-z]*$/,de=n("$ZodCheck",((e,t)=>{var n;e._zod??(e._zod={}),e._zod.def=t,(n=e._zod).onattach??(n.onattach=[])})),le={number:"number",bigint:"bigint",object:"date"},pe=n("$ZodCheckLessThan",((e,t)=>{de.init(e,t);const n=le[typeof t.value];e._zod.onattach.push((e=>{const n=e._zod.bag,o=(t.inclusive?n.maximum:n.exclusiveMaximum)??Number.POSITIVE_INFINITY;t.value<o&&(t.inclusive?n.maximum=t.value:n.exclusiveMaximum=t.value)})),e._zod.check=o=>{(t.inclusive?o.value<=t.value:o.value<t.value)||o.issues.push({origin:n,code:"too_big",maximum:t.value,input:o.value,inclusive:t.inclusive,inst:e,continue:!t.abort})}})),fe=n("$ZodCheckGreaterThan",((e,t)=>{de.init(e,t);const n=le[typeof t.value];e._zod.onattach.push((e=>{const n=e._zod.bag,o=(t.inclusive?n.minimum:n.exclusiveMinimum)??Number.NEGATIVE_INFINITY;t.value>o&&(t.inclusive?n.minimum=t.value:n.exclusiveMinimum=t.value)})),e._zod.check=o=>{(t.inclusive?o.value>=t.value:o.value>t.value)||o.issues.push({origin:n,code:"too_small",minimum:t.value,input:o.value,inclusive:t.inclusive,inst:e,continue:!t.abort})}})),he=n("$ZodCheckMultipleOf",((e,t)=>{de.init(e,t),e._zod.onattach.push((e=>{var n;(n=e._zod.bag).multipleOf??(n.multipleOf=t.value)})),e._zod.check=n=>{if(typeof n.value!=typeof t.value)throw new Error("Cannot mix number and bigint in multiple_of check.");("bigint"==typeof n.value?n.value%t.value===BigInt(0):0===function(e,t){const n=(e.toString().split(".")[1]||"").length,o=(t.toString().split(".")[1]||"").length,i=n>o?n:o;return Number.parseInt(e.toFixed(i).replace(".",""))%Number.parseInt(t.toFixed(i).replace(".",""))/10**i}(n.value,t.value))||n.issues.push({origin:typeof n.value,code:"not_multiple_of",divisor:t.value,input:n.value,inst:e,continue:!t.abort})}})),me=n("$ZodCheckNumberFormat",((e,t)=>{de.init(e,t),t.format=t.format||"float64";const n=t.format?.includes("int"),o=n?"int":"number",[i,r]=z[t.format];e._zod.onattach.push((e=>{const o=e._zod.bag;o.format=t.format,o.minimum=i,o.maximum=r,n&&(o.pattern=re)})),e._zod.check=s=>{const a=s.value;if(n){if(!Number.isInteger(a))return void s.issues.push({expected:o,format:t.format,code:"invalid_type",input:a,inst:e});if(!Number.isSafeInteger(a))return void(a>0?s.issues.push({input:a,code:"too_big",maximum:Number.MAX_SAFE_INTEGER,note:"Integers must be within the safe integer range.",inst:e,origin:o,continue:!t.abort}):s.issues.push({input:a,code:"too_small",minimum:Number.MIN_SAFE_INTEGER,note:"Integers must be within the safe integer range.",inst:e,origin:o,continue:!t.abort}))}a<i&&s.issues.push({origin:"number",input:a,code:"too_small",minimum:i,inclusive:!0,inst:e,continue:!t.abort}),a>r&&s.issues.push({origin:"number",input:a,code:"too_big",maximum:r,inst:e})}})),_e=n("$ZodCheckMaxLength",((e,t)=>{de.init(e,t),e._zod.when=e=>{const t=e.value;return!u(t)&&void 0!==t.length},e._zod.onattach.push((e=>{const n=e._zod.bag.maximum??Number.POSITIVE_INFINITY;t.maximum<n&&(e._zod.bag.maximum=t.maximum)})),e._zod.check=n=>{const o=n.value;if(o.length<=t.maximum)return;const i=$(o);n.issues.push({origin:i,code:"too_big",maximum:t.maximum,input:o,inst:e,continue:!t.abort})}})),ve=n("$ZodCheckMinLength",((e,t)=>{de.init(e,t),e._zod.when=e=>{const t=e.value;return!u(t)&&void 0!==t.length},e._zod.onattach.push((e=>{const n=e._zod.bag.minimum??Number.NEGATIVE_INFINITY;t.minimum>n&&(e._zod.bag.minimum=t.minimum)})),e._zod.check=n=>{const o=n.value;if(o.length>=t.minimum)return;const i=$(o);n.issues.push({origin:i,code:"too_small",minimum:t.minimum,input:o,inst:e,continue:!t.abort})}})),ge=n("$ZodCheckLengthEquals",((e,t)=>{de.init(e,t),e._zod.when=e=>{const t=e.value;return!u(t)&&void 0!==t.length},e._zod.onattach.push((e=>{const n=e._zod.bag;n.minimum=t.length,n.maximum=t.length,n.length=t.length})),e._zod.check=n=>{const o=n.value,i=o.length;if(i===t.length)return;const r=$(o),s=i>t.length;n.issues.push({origin:r,...s?{code:"too_big",maximum:t.length}:{code:"too_small",minimum:t.length},input:n.value,inst:e,continue:!t.abort})}})),ye=n("$ZodCheckStringFormat",((e,t)=>{var n;de.init(e,t),e._zod.onattach.push((e=>{const n=e._zod.bag;n.format=t.format,t.pattern&&(n.patterns??(n.patterns=new Set),n.patterns.add(t.pattern))})),(n=e._zod).check??(n.check=n=>{if(!t.pattern)throw new Error("Not implemented.");t.pattern.lastIndex=0,t.pattern.test(n.value)||n.issues.push({origin:"string",code:"invalid_format",format:t.format,input:n.value,...t.pattern?{pattern:t.pattern.toString()}:{},inst:e,continue:!t.abort})})})),we=n("$ZodCheckRegex",((e,t)=>{ye.init(e,t),e._zod.check=n=>{t.pattern.lastIndex=0,t.pattern.test(n.value)||n.issues.push({origin:"string",code:"invalid_format",format:"regex",input:n.value,pattern:t.pattern.toString(),inst:e,continue:!t.abort})}})),ze=n("$ZodCheckLowerCase",((e,t)=>{t.pattern??(t.pattern=ue),ye.init(e,t)})),be=n("$ZodCheckUpperCase",((e,t)=>{t.pattern??(t.pattern=ce),ye.init(e,t)})),ke=n("$ZodCheckIncludes",((e,t)=>{de.init(e,t);const n=g(t.includes),o=new RegExp("number"==typeof t.position?`^.{${t.position}}${n}`:n);t.pattern=o,e._zod.onattach.push((e=>{const t=e._zod.bag;t.patterns??(t.patterns=new Set),t.patterns.add(o)})),e._zod.check=n=>{n.value.includes(t.includes,t.position)||n.issues.push({origin:"string",code:"invalid_format",format:"includes",includes:t.includes,input:n.value,inst:e,continue:!t.abort})}})),Ee=n("$ZodCheckStartsWith",((e,t)=>{de.init(e,t);const n=new RegExp(`^${g(t.prefix)}.*`);t.pattern??(t.pattern=n),e._zod.onattach.push((e=>{const t=e._zod.bag;t.patterns??(t.patterns=new Set),t.patterns.add(n)})),e._zod.check=n=>{n.value.startsWith(t.prefix)||n.issues.push({origin:"string",code:"invalid_format",format:"starts_with",prefix:t.prefix,input:n.value,inst:e,continue:!t.abort})}})),Ie=n("$ZodCheckEndsWith",((e,t)=>{de.init(e,t);const n=new RegExp(`.*${g(t.suffix)}$`);t.pattern??(t.pattern=n),e._zod.onattach.push((e=>{const t=e._zod.bag;t.patterns??(t.patterns=new Set),t.patterns.add(n)})),e._zod.check=n=>{n.value.endsWith(t.suffix)||n.issues.push({origin:"string",code:"invalid_format",format:"ends_with",suffix:t.suffix,input:n.value,inst:e,continue:!t.abort})}})),$e=n("$ZodCheckOverwrite",((e,t)=>{de.init(e,t),e._zod.check=e=>{e.value=t.tx(e.value)}}));class Ae{constructor(e=[]){this.content=[],this.indent=0,this&&(this.args=e)}indented(e){this.indent+=1,e(this),this.indent-=1}write(e){if("function"==typeof e)return e(this,{execution:"sync"}),void e(this,{execution:"async"});const t=e.split("\n").filter((e=>e)),n=Math.min(...t.map((e=>e.length-e.trimStart().length))),o=t.map((e=>e.slice(n))).map((e=>" ".repeat(2*this.indent)+e));for(const e of o)this.content.push(e)}compile(){const e=Function,t=this?.args;return new e(...t,[...(this?.content??[""]).map((e=>` ${e}`))].join("\n"))}}const Te={major:4,minor:0,patch:0},xe=n("$ZodType",((e,t)=>{var n;e??(e={}),e._zod.id=t.type+"_"+p(10),e._zod.def=t,e._zod.bag=e._zod.bag||{},e._zod.version=Te;const i=[...e._zod.def.checks??[]];e._zod.traits.has("$ZodCheck")&&i.unshift(e);for(const t of i)for(const n of t._zod.onattach)n(e);if(0===i.length)(n=e._zod).deferred??(n.deferred=[]),e._zod.deferred?.push((()=>{e._zod.run=e._zod.parse}));else{const t=(e,t,n)=>{let i,r=b(e);for(const s of t){if(s._zod.when){if(!s._zod.when(e))continue}else if(r)continue;const t=e.issues.length,a=s._zod.check(e);if(a instanceof Promise&&!1===n?.async)throw new o;if(i||a instanceof Promise)i=(i??Promise.resolve()).then((async()=>{await a;e.issues.length!==t&&(r||(r=b(e,t)))}));else{if(e.issues.length===t)continue;r||(r=b(e,t))}}return i?i.then((()=>e)):e};e._zod.run=(n,r)=>{const s=e._zod.parse(n,r);if(s instanceof Promise){if(!1===r.async)throw new o;return s.then((e=>t(e,i,r)))}return t(s,i,r)}}e["~standard"]={validate:t=>{try{const n=S(e,t);return n.success?{value:n.data}:{issues:n.error?.issues}}catch(n){return R(e,t).then((e=>e.success?{value:e.data}:{issues:e.error?.issues}))}},vendor:"zod",version:1}})),Oe=n("$ZodString",((e,t)=>{var n;xe.init(e,t),e._zod.pattern=[...e?._zod.bag?.patterns??[]].pop()??(n=e._zod.bag,new RegExp(`^${n?`[\\s\\S]{${n?.minimum??0},${n?.maximum??""}}`:"[\\s\\S]*"}$`)),e._zod.parse=(n,o)=>{if(t.coerce)try{n.value=String(n.value)}catch(o){}return"string"==typeof n.value||n.issues.push({expected:"string",code:"invalid_type",input:n.value,inst:e}),n}})),Pe=n("$ZodStringFormat",((e,t)=>{ye.init(e,t),Oe.init(e,t)})),Ne=n("$ZodGUID",((e,t)=>{t.pattern??(t.pattern=W),Pe.init(e,t)})),Ze=n("$ZodUUID",((e,t)=>{if(t.version){const e={v1:1,v2:2,v3:3,v4:4,v5:5,v6:6,v7:7,v8:8}[t.version];if(void 0===e)throw new Error(`Invalid UUID version: "${t.version}"`);t.pattern??(t.pattern=B(e))}else t.pattern??(t.pattern=B());Pe.init(e,t)})),Se=n("$ZodEmail",((e,t)=>{t.pattern??(t.pattern=G),Pe.init(e,t)})),De=n("$ZodURL",((e,t)=>{Pe.init(e,t),e._zod.check=n=>{try{const o=new URL(n.value);return t.hostname&&(t.hostname.lastIndex=0,t.hostname.test(o.hostname)||n.issues.push({code:"invalid_format",format:"url",note:"Invalid hostname",pattern:Q.source,input:n.value,inst:e})),void(t.protocol&&(t.protocol.lastIndex=0,t.protocol.test(o.protocol.endsWith(":")?o.protocol.slice(0,-1):o.protocol)||n.issues.push({code:"invalid_format",format:"url",note:"Invalid protocol",pattern:t.protocol.source,input:n.value,inst:e})))}catch(t){n.issues.push({code:"invalid_format",format:"url",input:n.value,inst:e})}}})),Re=n("$ZodEmoji",((e,t)=>{t.pattern??(t.pattern=new RegExp("^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$","u")),Pe.init(e,t)})),Ce=n("$ZodNanoID",((e,t)=>{t.pattern??(t.pattern=M),Pe.init(e,t)})),Fe=n("$ZodCUID",((e,t)=>{t.pattern??(t.pattern=C),Pe.init(e,t)})),Ue=n("$ZodCUID2",((e,t)=>{t.pattern??(t.pattern=F),Pe.init(e,t)})),je=n("$ZodULID",((e,t)=>{t.pattern??(t.pattern=U),Pe.init(e,t)})),Le=n("$ZodXID",((e,t)=>{t.pattern??(t.pattern=j),Pe.init(e,t)})),Me=n("$ZodKSUID",((e,t)=>{t.pattern??(t.pattern=L),Pe.init(e,t)})),Ve=n("$ZodISODateTime",((e,t)=>{t.pattern??(t.pattern=function(e){let t=`${te}T${oe(e)}`;const n=[];return n.push(e.local?"Z?":"Z"),e.offset&&n.push("([+-]\\d{2}:?\\d{2})"),t=`${t}(${n.join("|")})`,new RegExp(`^${t}$`)}(t)),Pe.init(e,t)})),We=n("$ZodISODate",((e,t)=>{t.pattern??(t.pattern=ne),Pe.init(e,t)})),Be=n("$ZodISOTime",((e,t)=>{t.pattern??(t.pattern=new RegExp(`^${oe(t)}$`)),Pe.init(e,t)})),Ge=n("$ZodISODuration",((e,t)=>{t.pattern??(t.pattern=V),Pe.init(e,t)})),qe=n("$ZodIPv4",((e,t)=>{t.pattern??(t.pattern=q),Pe.init(e,t),e._zod.onattach.push((e=>{e._zod.bag.format="ipv4"}))})),He=n("$ZodIPv6",((e,t)=>{t.pattern??(t.pattern=H),Pe.init(e,t),e._zod.onattach.push((e=>{e._zod.bag.format="ipv6"})),e._zod.check=t=>{try{new URL(`http://[${t.value}]`)}catch{t.issues.push({code:"invalid_format",format:"ipv6",input:t.value,inst:e})}}})),Ye=n("$ZodCIDRv4",((e,t)=>{t.pattern??(t.pattern=Y),Pe.init(e,t)})),Ke=n("$ZodCIDRv6",((e,t)=>{t.pattern??(t.pattern=K),Pe.init(e,t),e._zod.check=t=>{const[n,o]=t.value.split("/");try{if(!o)throw new Error;const e=Number(o);if(`${e}`!==o)throw new Error;if(e<0||e>128)throw new Error;new URL(`http://[${n}]`)}catch{t.issues.push({code:"invalid_format",format:"cidrv6",input:t.value,inst:e})}}}));function Je(e){if(""===e)return!0;if(e.length%4!=0)return!1;try{return atob(e),!0}catch{return!1}}const Xe=n("$ZodBase64",((e,t)=>{t.pattern??(t.pattern=J),Pe.init(e,t),e._zod.onattach.push((e=>{e._zod.bag.contentEncoding="base64"})),e._zod.check=t=>{Je(t.value)||t.issues.push({code:"invalid_format",format:"base64",input:t.value,inst:e})}}));const Qe=n("$ZodBase64URL",((e,t)=>{t.pattern??(t.pattern=X),Pe.init(e,t),e._zod.onattach.push((e=>{e._zod.bag.contentEncoding="base64url"})),e._zod.check=t=>{(function(e){if(!X.test(e))return!1;const t=e.replace(/[-_]/g,(e=>"-"===e?"+":"/"));return Je(t.padEnd(4*Math.ceil(t.length/4),"="))})(t.value)||t.issues.push({code:"invalid_format",format:"base64url",input:t.value,inst:e})}})),et=n("$ZodE164",((e,t)=>{t.pattern??(t.pattern=ee),Pe.init(e,t)}));const tt=n("$ZodJWT",((e,t)=>{Pe.init(e,t),e._zod.check=n=>{(function(e,t=null){try{const n=e.split(".");if(3!==n.length)return!1;const[o]=n,i=JSON.parse(atob(o));return!("typ"in i&&"JWT"!==i?.typ||!i.alg||t&&(!("alg"in i)||i.alg!==t))}catch{return!1}})(n.value,t.alg)||n.issues.push({code:"invalid_format",format:"jwt",input:n.value,inst:e})}})),nt=n("$ZodNumber",((e,t)=>{xe.init(e,t),e._zod.pattern=e._zod.bag.pattern??se,e._zod.parse=(n,o)=>{if(t.coerce)try{n.value=Number(n.value)}catch(e){}const i=n.value;if("number"==typeof i&&!Number.isNaN(i)&&Number.isFinite(i))return n;const r="number"==typeof i?Number.isNaN(i)?"NaN":Number.isFinite(i)?void 0:"Infinity":void 0;return n.issues.push({expected:"number",code:"invalid_type",input:i,inst:e,...r?{received:r}:{}}),n}})),ot=n("$ZodNumber",((e,t)=>{me.init(e,t),nt.init(e,t)})),it=n("$ZodBoolean",((e,t)=>{xe.init(e,t),e._zod.pattern=ae,e._zod.parse=(n,o)=>{if(t.coerce)try{n.value=Boolean(n.value)}catch(e){}const i=n.value;return"boolean"==typeof i||n.issues.push({expected:"boolean",code:"invalid_type",input:i,inst:e}),n}})),rt=n("$ZodBigInt",((e,t)=>{xe.init(e,t),e._zod.pattern=ie,e._zod.parse=(n,o)=>{if(t.coerce)try{n.value=BigInt(n.value)}catch(e){}const{value:i}=n;return"bigint"==typeof i||n.issues.push({expected:"bigint",code:"invalid_type",input:i,inst:e}),n}})),st=n("$ZodAny",((e,t)=>{xe.init(e,t),e._zod.parse=e=>e})),at=n("$ZodUnknown",((e,t)=>{xe.init(e,t),e._zod.parse=e=>e})),ut=n("$ZodNever",((e,t)=>{xe.init(e,t),e._zod.parse=(t,n)=>(t.issues.push({expected:"never",code:"invalid_type",input:t.value,inst:e}),t)}));function ct(e,t,n){e.issues.length&&t.issues.push(...k(n,e.issues)),t.value[n]=e.value}const dt=n("$ZodArray",((e,t)=>{xe.init(e,t),e._zod.parse=(n,o)=>{const i=n.value;if(!Array.isArray(i))return n.issues.push({expected:"array",code:"invalid_type",input:i,inst:e}),n;n.value=Array(i.length);const r=[];for(let e=0;e<i.length;e++){const s=i[e],a=t.element._zod.run({value:s,issues:[]},o);a instanceof Promise?r.push(a.then((t=>ct(t,n,e)))):ct(a,n,e)}return r.length?Promise.all(r).then((()=>n)):n}}));function lt(e,t,n){e.issues.length&&t.issues.push(...k(n,e.issues)),t.value[n]=e.value}function pt(e,t,n,o){e.issues.length?void 0===o[n]?t.value[n]=n in o?void 0:e.value:t.issues.push(...k(n,e.issues)):void 0===e.value?n in o&&(t.value[n]=void 0):t.value[n]=e.value}const ft=n("$ZodObject",((e,t)=>{xe.init(e,t);const n=a((()=>{const e=Object.keys(t.shape);for(const n of e)if(!(t.shape[n]instanceof xe))throw new Error(`Invalid element at key "${n}": expected a Zod schema`);const n=(o=t.shape,Object.keys(o).filter((e=>"optional"===o[e]._zod.optin&&"optional"===o[e]._zod.optout)));var o;return{shape:t.shape,keys:e,keySet:new Set(e),numKeys:e.length,optionalKeys:new Set(n)}}));d(e._zod,"propValues",(()=>{const e=t.shape,n={};for(const t in e){const o=e[t]._zod;if(o.values){n[t]??(n[t]=new Set);for(const e of o.values)n[t].add(e)}}return n}));let o;const r=h,s=!i.jitless,u=s&&m.value,{catchall:c}=t;let l;e._zod.parse=(i,a)=>{l??(l=n.value);const d=i.value;if(!r(d))return i.issues.push({expected:"object",code:"invalid_type",input:d,inst:e}),i;const h=[];if(s&&u&&!1===a?.async&&!0!==a.jitless)o||(o=(e=>{const t=new Ae(["shape","payload","ctx"]),{keys:o,optionalKeys:i}=n.value,r=e=>{const t=f(e);return`shape[${t}]._zod.run({ value: input[${t}], issues: [] }, ctx)`};t.write("const input = payload.value;");const s=Object.create(null);for(const e of o)s[e]=p(15);t.write("const newResult = {}");for(const e of o)if(i.has(e)){const n=s[e];t.write(`const ${n} = ${r(e)};`);const o=f(e);t.write(`\n if (${n}.issues.length) {\n if (input[${o}] === undefined) {\n if (${o} in input) {\n newResult[${o}] = undefined;\n }\n } else {\n payload.issues = payload.issues.concat(\n ${n}.issues.map((iss) => ({\n ...iss,\n path: iss.path ? [${o}, ...iss.path] : [${o}],\n }))\n );\n }\n } else if (${n}.value === undefined) {\n if (${o} in input) newResult[${o}] = undefined;\n } else {\n newResult[${o}] = ${n}.value;\n }\n `)}else{const n=s[e];t.write(`const ${n} = ${r(e)};`),t.write(`\n if (${n}.issues.length) payload.issues = payload.issues.concat(${n}.issues.map(iss => ({\n ...iss,\n path: iss.path ? [${f(e)}, ...iss.path] : [${f(e)}]\n })));`),t.write(`newResult[${f(e)}] = ${n}.value`)}t.write("payload.value = newResult;"),t.write("return payload;");const a=t.compile();return(t,n)=>a(e,t,n)})(t.shape)),i=o(i,a);else{i.value={};const e=l.shape;for(const t of l.keys){const n=e[t],o=n._zod.run({value:d[t],issues:[]},a),r="optional"===n._zod.optin&&"optional"===n._zod.optout;o instanceof Promise?h.push(o.then((e=>r?pt(e,i,t,d):lt(e,i,t)))):r?pt(o,i,t,d):lt(o,i,t)}}if(!c)return h.length?Promise.all(h).then((()=>i)):i;const m=[],_=l.keySet,v=c._zod,g=v.def.type;for(const e of Object.keys(d)){if(_.has(e))continue;if("never"===g){m.push(e);continue}const t=v.run({value:d[e],issues:[]},a);t instanceof Promise?h.push(t.then((t=>lt(t,i,e)))):lt(t,i,e)}return m.length&&i.issues.push({code:"unrecognized_keys",keys:m,input:d,inst:e}),h.length?Promise.all(h).then((()=>i)):i}}));function ht(e,t,n,o){for(const n of e)if(0===n.issues.length)return t.value=n.value,t;return t.issues.push({code:"invalid_union",input:t.value,inst:n,errors:e.map((e=>e.issues.map((e=>I(e,o,r())))))}),t}const mt=n("$ZodUnion",((e,t)=>{xe.init(e,t),d(e._zod,"values",(()=>{if(t.options.every((e=>e._zod.values)))return new Set(t.options.flatMap((e=>Array.from(e._zod.values))))})),d(e._zod,"pattern",(()=>{if(t.options.every((e=>e._zod.pattern))){const e=t.options.map((e=>e._zod.pattern));return new RegExp(`^(${e.map((e=>c(e.source))).join("|")})$`)}})),e._zod.parse=(n,o)=>{let i=!1;const r=[];for(const e of t.options){const t=e._zod.run({value:n.value,issues:[]},o);if(t instanceof Promise)r.push(t),i=!0;else{if(0===t.issues.length)return t;r.push(t)}}return i?Promise.all(r).then((t=>ht(t,n,e,o))):ht(r,n,e,o)}})),_t=n("$ZodDiscriminatedUnion",((e,t)=>{mt.init(e,t);const n=e._zod.parse;d(e._zod,"propValues",(()=>{const e={};for(const n of t.options){const o=n._zod.propValues;if(!o||0===Object.keys(o).length)throw new Error(`Invalid discriminated union option at index "${t.options.indexOf(n)}"`);for(const[t,n]of Object.entries(o)){e[t]||(e[t]=new Set);for(const o of n)e[t].add(o)}}return e}));const o=a((()=>{const e=t.options,n=new Map;for(const o of e){const e=o._zod.propValues[t.discriminator];if(!e||0===e.size)throw new Error(`Invalid discriminated union option at index "${t.options.indexOf(o)}"`);for(const t of e){if(n.has(t))throw new Error(`Duplicate discriminator value "${String(t)}"`);n.set(t,o)}}return n}));e._zod.parse=(i,r)=>{const s=i.value;if(!h(s))return i.issues.push({code:"invalid_type",expected:"object",input:s,inst:e}),i;const a=o.value.get(s?.[t.discriminator]);return a?a._zod.run(i,r):t.unionFallback?n(i,r):(i.issues.push({code:"invalid_union",errors:[],note:"No matching discriminator",input:s,path:[t.discriminator],inst:e}),i)}})),vt=n("$ZodIntersection",((e,t)=>{xe.init(e,t),e._zod.parse=(e,n)=>{const{value:o}=e,i=t.left._zod.run({value:o,issues:[]},n),r=t.right._zod.run({value:o,issues:[]},n);return i instanceof Promise||r instanceof Promise?Promise.all([i,r]).then((([t,n])=>yt(e,t,n))):yt(e,i,r)}}));function gt(e,t){if(e===t)return{valid:!0,data:e};if(e instanceof Date&&t instanceof Date&&+e==+t)return{valid:!0,data:e};if(_(e)&&_(t)){const n=Object.keys(t),o=Object.keys(e).filter((e=>-1!==n.indexOf(e))),i={...e,...t};for(const n of o){const o=gt(e[n],t[n]);if(!o.valid)return{valid:!1,mergeErrorPath:[n,...o.mergeErrorPath]};i[n]=o.data}return{valid:!0,data:i}}if(Array.isArray(e)&&Array.isArray(t)){if(e.length!==t.length)return{valid:!1,mergeErrorPath:[]};const n=[];for(let o=0;o<e.length;o++){const i=gt(e[o],t[o]);if(!i.valid)return{valid:!1,mergeErrorPath:[o,...i.mergeErrorPath]};n.push(i.data)}return{valid:!0,data:n}}return{valid:!1,mergeErrorPath:[]}}function yt(e,t,n){if(t.issues.length&&e.issues.push(...t.issues),n.issues.length&&e.issues.push(...n.issues),b(e))return e;const o=gt(t.value,n.value);if(!o.valid)throw new Error(`Unmergable intersection. Error path: ${JSON.stringify(o.mergeErrorPath)}`);return e.value=o.data,e}const wt=n("$ZodRecord",((e,t)=>{xe.init(e,t),e._zod.parse=(n,o)=>{const i=n.value;if(!_(i))return n.issues.push({expected:"record",code:"invalid_type",input:i,inst:e}),n;const s=[];if(t.keyType._zod.values){const r=t.keyType._zod.values;n.value={};for(const e of r)if("string"==typeof e||"number"==typeof e||"symbol"==typeof e){const r=t.valueType._zod.run({value:i[e],issues:[]},o);r instanceof Promise?s.push(r.then((t=>{t.issues.length&&n.issues.push(...k(e,t.issues)),n.value[e]=t.value}))):(r.issues.length&&n.issues.push(...k(e,r.issues)),n.value[e]=r.value)}let a;for(const e in i)r.has(e)||(a=a??[],a.push(e));a&&a.length>0&&n.issues.push({code:"unrecognized_keys",input:i,inst:e,keys:a})}else{n.value={};for(const a of Reflect.ownKeys(i)){if("__proto__"===a)continue;const u=t.keyType._zod.run({value:a,issues:[]},o);if(u instanceof Promise)throw new Error("Async schemas not supported in object keys currently");if(u.issues.length){n.issues.push({origin:"record",code:"invalid_key",issues:u.issues.map((e=>I(e,o,r()))),input:a,path:[a],inst:e}),n.value[u.value]=u.value;continue}const c=t.valueType._zod.run({value:i[a],issues:[]},o);c instanceof Promise?s.push(c.then((e=>{e.issues.length&&n.issues.push(...k(a,e.issues)),n.value[u.value]=e.value}))):(c.issues.length&&n.issues.push(...k(a,c.issues)),n.value[u.value]=c.value)}}return s.length?Promise.all(s).then((()=>n)):n}})),zt=n("$ZodEnum",((e,t)=>{xe.init(e,t);const n=function(e){const t=Object.values(e).filter((e=>"number"==typeof e));return Object.entries(e).filter((([e,n])=>-1===t.indexOf(+e))).map((([e,t])=>t))}(t.entries);e._zod.values=new Set(n),e._zod.pattern=new RegExp(`^(${n.filter((e=>v.has(typeof e))).map((e=>"string"==typeof e?g(e):e.toString())).join("|")})$`),e._zod.parse=(t,o)=>{const i=t.value;return e._zod.values.has(i)||t.issues.push({code:"invalid_value",values:n,input:i,inst:e}),t}})),bt=n("$ZodLiteral",((e,t)=>{xe.init(e,t),e._zod.values=new Set(t.values),e._zod.pattern=new RegExp(`^(${t.values.map((e=>"string"==typeof e?g(e):e?e.toString():String(e))).join("|")})$`),e._zod.parse=(n,o)=>{const i=n.value;return e._zod.values.has(i)||n.issues.push({code:"invalid_value",values:t.values,input:i,inst:e}),n}})),kt=n("$ZodTransform",((e,t)=>{xe.init(e,t),e._zod.parse=(e,n)=>{const i=t.transform(e.value,e);if(n.async){return(i instanceof Promise?i:Promise.resolve(i)).then((t=>(e.value=t,e)))}if(i instanceof Promise)throw new o;return e.value=i,e}})),Et=n("$ZodOptional",((e,t)=>{xe.init(e,t),e._zod.optin="optional",e._zod.optout="optional",d(e._zod,"values",(()=>t.innerType._zod.values?new Set([...t.innerType._zod.values,void 0]):void 0)),d(e._zod,"pattern",(()=>{const e=t.innerType._zod.pattern;return e?new RegExp(`^(${c(e.source)})?$`):void 0})),e._zod.parse=(e,n)=>void 0===e.value?e:t.innerType._zod.run(e,n)})),It=n("$ZodNullable",((e,t)=>{xe.init(e,t),d(e._zod,"optin",(()=>t.innerType._zod.optin)),d(e._zod,"optout",(()=>t.innerType._zod.optout)),d(e._zod,"pattern",(()=>{const e=t.innerType._zod.pattern;return e?new RegExp(`^(${c(e.source)}|null)$`):void 0})),d(e._zod,"values",(()=>t.innerType._zod.values?new Set([...t.innerType._zod.values,null]):void 0)),e._zod.parse=(e,n)=>null===e.value?e:t.innerType._zod.run(e,n)})),$t=n("$ZodDefault",((e,t)=>{xe.init(e,t),e._zod.optin="optional",d(e._zod,"values",(()=>t.innerType._zod.values)),e._zod.parse=(e,n)=>{if(void 0===e.value)return e.value=t.defaultValue,e;const o=t.innerType._zod.run(e,n);return o instanceof Promise?o.then((e=>At(e,t))):At(o,t)}}));function At(e,t){return void 0===e.value&&(e.value=t.defaultValue),e}const Tt=n("$ZodPrefault",((e,t)=>{xe.init(e,t),e._zod.optin="optional",d(e._zod,"values",(()=>t.innerType._zod.values)),e._zod.parse=(e,n)=>(void 0===e.value&&(e.value=t.defaultValue),t.innerType._zod.run(e,n))})),xt=n("$ZodNonOptional",((e,t)=>{xe.init(e,t),d(e._zod,"values",(()=>{const e=t.innerType._zod.values;return e?new Set([...e].filter((e=>void 0!==e))):void 0})),e._zod.parse=(n,o)=>{const i=t.innerType._zod.run(n,o);return i instanceof Promise?i.then((t=>Ot(t,e))):Ot(i,e)}}));function Ot(e,t){return e.issues.length||void 0!==e.value||e.issues.push({code:"invalid_type",expected:"nonoptional",input:e.value,inst:t}),e}const Pt=n("$ZodCatch",((e,t)=>{xe.init(e,t),d(e._zod,"optin",(()=>t.innerType._zod.optin)),d(e._zod,"optout",(()=>t.innerType._zod.optout)),d(e._zod,"values",(()=>t.innerType._zod.values)),e._zod.parse=(e,n)=>{const o=t.innerType._zod.run(e,n);return o instanceof Promise?o.then((o=>(e.value=o.value,o.issues.length&&(e.value=t.catchValue({...e,error:{issues:o.issues.map((e=>I(e,n,r())))},input:e.value}),e.issues=[]),e))):(e.value=o.value,o.issues.length&&(e.value=t.catchValue({...e,error:{issues:o.issues.map((e=>I(e,n,r())))},input:e.value}),e.issues=[]),e)}})),Nt=n("$ZodPipe",((e,t)=>{xe.init(e,t),d(e._zod,"values",(()=>t.in._zod.values)),d(e._zod,"optin",(()=>t.in._zod.optin)),d(e._zod,"optout",(()=>t.out._zod.optout)),e._zod.parse=(e,n)=>{const o=t.in._zod.run(e,n);return o instanceof Promise?o.then((e=>Zt(e,t,n))):Zt(o,t,n)}}));function Zt(e,t,n){return b(e)?e:t.out._zod.run({value:e.value,issues:e.issues},n)}const St=n("$ZodReadonly",((e,t)=>{xe.init(e,t),d(e._zod,"propValues",(()=>t.innerType._zod.propValues)),d(e._zod,"optin",(()=>t.innerType._zod.optin)),d(e._zod,"optout",(()=>t.innerType._zod.optout)),e._zod.parse=(e,n)=>{const o=t.innerType._zod.run(e,n);return o instanceof Promise?o.then(Dt):Dt(o)}}));function Dt(e){return e.value=Object.freeze(e.value),e}const Rt=n("$ZodCustom",((e,t)=>{de.init(e,t),xe.init(e,t),e._zod.parse=(e,t)=>e,e._zod.check=n=>{const o=n.value,i=t.fn(o);if(i instanceof Promise)return i.then((t=>Ct(t,n,o,e)));Ct(i,n,o,e)}}));function Ct(e,t,n,o){if(!e){const e={code:"custom",input:n,inst:o,path:[...o._zod.def.path??[]],continue:!o._zod.def.abort};o._zod.def.params&&(e.params=o._zod.def.params),t.issues.push(A(e))}}class Ft{constructor(){this._map=new WeakMap,this._idmap=new Map}add(e,...t){const n=t[0];if(this._map.set(e,n),n&&"object"==typeof n&&"id"in n){if(this._idmap.has(n.id))throw new Error(`ID ${n.id} already exists in the registry`);this._idmap.set(n.id,e)}return this}remove(e){return this._map.delete(e),this}get(e){const t=e._zod.parent;if(t){const n={...this.get(t)??{}};return delete n.id,{...n,...this._map.get(e)}}return this._map.get(e)}has(e){return this._map.has(e)}}function Ut(){return new Ft}const jt=Ut();function Lt(e,t){return new e({type:"string",format:"guid",check:"string_format",abort:!1,...w(t)})}function Mt(e,t){return new e({type:"string",format:"url",check:"string_format",abort:!1,...w(t)})}function Vt(e,t){return new e({type:"string",format:"ipv4",check:"string_format",abort:!1,...w(t)})}function Wt(e,t){return new e({type:"string",format:"ipv6",check:"string_format",abort:!1,...w(t)})}function Bt(e,t){return new pe({check:"less_than",...w(t),value:e,inclusive:!1})}function Gt(e,t){return new pe({check:"less_than",...w(t),value:e,inclusive:!0})}function qt(e,t){return new fe({check:"greater_than",...w(t),value:e,inclusive:!1})}function Ht(e,t){return new fe({check:"greater_than",...w(t),value:e,inclusive:!0})}function Yt(e,t){return new he({check:"multiple_of",...w(t),value:e})}function Kt(e,t){return new _e({check:"max_length",...w(t),maximum:e})}function Jt(e,t){return new ve({check:"min_length",...w(t),minimum:e})}function Xt(e,t){return new ge({check:"length_equals",...w(t),length:e})}function Qt(e){return new $e({check:"overwrite",tx:e})}const en=n("ZodISODateTime",((e,t)=>{Ve.init(e,t),wn.init(e,t)}));function tn(e){return function(e,t){return new e({type:"string",format:"datetime",check:"string_format",offset:!1,local:!1,precision:null,...w(t)})}(en,e)}const nn=n("ZodISODate",((e,t)=>{We.init(e,t),wn.init(e,t)}));function on(e){return function(e,t){return new e({type:"string",format:"date",check:"string_format",...w(t)})}(nn,e)}const rn=n("ZodISOTime",((e,t)=>{Be.init(e,t),wn.init(e,t)}));function sn(e){return function(e,t){return new e({type:"string",format:"time",check:"string_format",precision:null,...w(t)})}(rn,e)}const an=n("ZodISODuration",((e,t)=>{Ge.init(e,t),wn.init(e,t)}));function un(e){return function(e,t){return new e({type:"string",format:"duration",check:"string_format",...w(t)})}(an,e)}const cn=(e,t)=>{x.init(e,t),e.name="ZodError",Object.defineProperties(e,{format:{value:t=>function(e,t){const n=t||function(e){return e.message},o={_errors:[]},i=e=>{for(const t of e.issues)if("invalid_union"===t.code&&t.errors.length)t.errors.map((e=>i({issues:e})));else if("invalid_key"===t.code)i({issues:t.issues});else if("invalid_element"===t.code)i({issues:t.issues});else if(0===t.path.length)o._errors.push(n(t));else{let e=o,i=0;for(;i<t.path.length;){const o=t.path[i];i===t.path.length-1?(e[o]=e[o]||{_errors:[]},e[o]._errors.push(n(t))):e[o]=e[o]||{_errors:[]},e=e[o],i++}}};return i(e),o}(e,t)},flatten:{value:t=>function(e,t=e=>e.message){const n={},o=[];for(const i of e.issues)i.path.length>0?(n[i.path[0]]=n[i.path[0]]||[],n[i.path[0]].push(t(i))):o.push(t(i));return{formErrors:o,fieldErrors:n}}(e,t)},addIssue:{value:t=>e.issues.push(t)},addIssues:{value:t=>e.issues.push(...t)},isEmpty:{get:()=>0===e.issues.length}})},dn=n("ZodError",cn),ln=n("ZodError",cn,{Parent:Error}),pn=P(ln),fn=N(ln),hn=Z(ln),mn=D(ln),_n=n("ZodType",((e,t)=>(xe.init(e,t),e.def=t,Object.defineProperty(e,"_def",{value:t}),e.check=(...n)=>e.clone({...t,checks:[...t.checks??[],...n.map((e=>"function"==typeof e?{_zod:{check:e,def:{check:"custom"},onattach:[]}}:e))]}),e.clone=(t,n)=>y(e,t,n),e.brand=()=>e,e.register=(t,n)=>(t.add(e,n),e),e.parse=(t,n)=>pn(e,t,n,{callee:e.parse}),e.safeParse=(t,n)=>hn(e,t,n),e.parseAsync=async(t,n)=>fn(e,t,n,{callee:e.parseAsync}),e.safeParseAsync=async(t,n)=>mn(e,t,n),e.spa=e.safeParseAsync,e.refine=(t,n)=>e.check(function(e,t={}){return function(e,t,n){return new e({type:"custom",check:"custom",fn:t,...w(n)})}(Oo,e,t)}(t,n)),e.superRefine=t=>e.check(function(e,t){const n=function(e,t){const n=new de({check:"custom",...w(t)});return n._zod.check=e,n}((t=>(t.addIssue=e=>{if("string"==typeof e)t.issues.push(A(e,t.value,n._zod.def));else{const o=e;o.fatal&&(o.continue=!1),o.code??(o.code="custom"),o.input??(o.input=t.value),o.inst??(o.inst=n),o.continue??(o.continue=!n._zod.def.abort),t.issues.push(A(o))}},e(t.value,t))),t);return n}(t)),e.overwrite=t=>e.check(Qt(t)),e.optional=()=>wo(e),e.nullable=()=>bo(e),e.nullish=()=>wo(bo(e)),e.nonoptional=t=>function(e,t){return new Io({type:"nonoptional",innerType:e,...w(t)})}(e,t),e.array=()=>no(e),e.or=t=>so([e,t]),e.and=t=>new co({type:"intersection",left:e,right:t}),e.transform=t=>To(e,go(t)),e.default=t=>{return n=t,new ko({type:"default",innerType:e,get defaultValue(){return"function"==typeof n?n():n}});var n},e.prefault=t=>{return n=t,new Eo({type:"prefault",innerType:e,get defaultValue(){return"function"==typeof n?n():n}});var n},e.catch=t=>{return new $o({type:"catch",innerType:e,catchValue:"function"==typeof(n=t)?n:()=>n});var n},e.pipe=t=>To(e,t),e.readonly=()=>new xo({type:"readonly",innerType:e}),e.describe=t=>{const n=e.clone();return jt.add(n,{description:t}),n},Object.defineProperty(e,"description",{get:()=>jt.get(e)?.description,configurable:!0}),e.meta=(...t)=>{if(0===t.length)return jt.get(e);const n=e.clone();return jt.add(n,t[0]),n},e.isOptional=()=>e.safeParse(void 0).success,e.isNullable=()=>e.safeParse(null).success,e))),vn=n("_ZodString",((e,t)=>{Oe.init(e,t),_n.init(e,t);const n=e._zod.bag;e.format=n.format??null,e.minLength=n.minimum??null,e.maxLength=n.maximum??null,e.regex=(...t)=>e.check(function(e,t){return new we({check:"string_format",format:"regex",...w(t),pattern:e})}(...t)),e.includes=(...t)=>e.check(function(e,t){return new ke({check:"string_format",format:"includes",...w(t),includes:e})}(...t)),e.startsWith=(...t)=>e.check(function(e,t){return new Ee({check:"string_format",format:"starts_with",...w(t),prefix:e})}(...t)),e.endsWith=(...t)=>e.check(function(e,t){return new Ie({check:"string_format",format:"ends_with",...w(t),suffix:e})}(...t)),e.min=(...t)=>e.check(Jt(...t)),e.max=(...t)=>e.check(Kt(...t)),e.length=(...t)=>e.check(Xt(...t)),e.nonempty=(...t)=>e.check(Jt(1,...t)),e.lowercase=t=>e.check(function(e){return new ze({check:"string_format",format:"lowercase",...w(e)})}(t)),e.uppercase=t=>e.check(function(e){return new be({check:"string_format",format:"uppercase",...w(e)})}(t)),e.trim=()=>e.check(Qt((e=>e.trim()))),e.normalize=(...t)=>e.check(function(e){return Qt((t=>t.normalize(e)))}(...t)),e.toLowerCase=()=>e.check(Qt((e=>e.toLowerCase()))),e.toUpperCase=()=>e.check(Qt((e=>e.toUpperCase())))})),gn=n("ZodString",((e,t)=>{Oe.init(e,t),vn.init(e,t),e.email=t=>e.check(function(e,t){return new e({type:"string",format:"email",check:"string_format",abort:!1,...w(t)})}(zn,t)),e.url=t=>e.check(Mt(En,t)),e.jwt=t=>e.check(function(e,t){return new e({type:"string",format:"jwt",check:"string_format",abort:!1,...w(t)})}(jn,t)),e.emoji=t=>e.check(function(e,t){return new e({type:"string",format:"emoji",check:"string_format",abort:!1,...w(t)})}($n,t)),e.guid=t=>e.check(Lt(bn,t)),e.uuid=t=>e.check(function(e,t){return new e({type:"string",format:"uuid",check:"string_format",abort:!1,...w(t)})}(kn,t)),e.uuidv4=t=>e.check(function(e,t){return new e({type:"string",format:"uuid",check:"string_format",abort:!1,version:"v4",...w(t)})}(kn,t)),e.uuidv6=t=>e.check(function(e,t){return new e({type:"string",format:"uuid",check:"string_format",abort:!1,version:"v6",...w(t)})}(kn,t)),e.uuidv7=t=>e.check(function(e,t){return new e({type:"string",format:"uuid",check:"string_format",abort:!1,version:"v7",...w(t)})}(kn,t)),e.nanoid=t=>e.check(function(e,t){return new e({type:"string",format:"nanoid",check:"string_format",abort:!1,...w(t)})}(An,t)),e.guid=t=>e.check(Lt(bn,t)),e.cuid=t=>e.check(function(e,t){return new e({type:"string",format:"cuid",check:"string_format",abort:!1,...w(t)})}(Tn,t)),e.cuid2=t=>e.check(function(e,t){return new e({type:"string",format:"cuid2",check:"string_format",abort:!1,...w(t)})}(xn,t)),e.ulid=t=>e.check(function(e,t){return new e({type:"string",format:"ulid",check:"string_format",abort:!1,...w(t)})}(On,t)),e.base64=t=>e.check(function(e,t){return new e({type:"string",format:"base64",check:"string_format",abort:!1,...w(t)})}(Cn,t)),e.base64url=t=>e.check(function(e,t){return new e({type:"string",format:"base64url",check:"string_format",abort:!1,...w(t)})}(Fn,t)),e.xid=t=>e.check(function(e,t){return new e({type:"string",format:"xid",check:"string_format",abort:!1,...w(t)})}(Pn,t)),e.ksuid=t=>e.check(function(e,t){return new e({type:"string",format:"ksuid",check:"string_format",abort:!1,...w(t)})}(Nn,t)),e.ipv4=t=>e.check(Vt(Zn,t)),e.ipv6=t=>e.check(Wt(Sn,t)),e.cidrv4=t=>e.check(function(e,t){return new e({type:"string",format:"cidrv4",check:"string_format",abort:!1,...w(t)})}(Dn,t)),e.cidrv6=t=>e.check(function(e,t){return new e({type:"string",format:"cidrv6",check:"string_format",abort:!1,...w(t)})}(Rn,t)),e.e164=t=>e.check(function(e,t){return new e({type:"string",format:"e164",check:"string_format",abort:!1,...w(t)})}(Un,t)),e.datetime=t=>e.check(tn(t)),e.date=t=>e.check(on(t)),e.time=t=>e.check(sn(t)),e.duration=t=>e.check(un(t))}));function yn(e){return function(e,t){return new e({type:"string",...w(t)})}(gn,e)}const wn=n("ZodStringFormat",((e,t)=>{Pe.init(e,t),vn.init(e,t)})),zn=n("ZodEmail",((e,t)=>{Se.init(e,t),wn.init(e,t)})),bn=n("ZodGUID",((e,t)=>{Ne.init(e,t),wn.init(e,t)})),kn=n("ZodUUID",((e,t)=>{Ze.init(e,t),wn.init(e,t)})),En=n("ZodURL",((e,t)=>{De.init(e,t),wn.init(e,t)}));function In(e){return Mt(En,e)}const $n=n("ZodEmoji",((e,t)=>{Re.init(e,t),wn.init(e,t)})),An=n("ZodNanoID",((e,t)=>{Ce.init(e,t),wn.init(e,t)})),Tn=n("ZodCUID",((e,t)=>{Fe.init(e,t),wn.init(e,t)})),xn=n("ZodCUID2",((e,t)=>{Ue.init(e,t),wn.init(e,t)})),On=n("ZodULID",((e,t)=>{je.init(e,t),wn.init(e,t)})),Pn=n("ZodXID",((e,t)=>{Le.init(e,t),wn.init(e,t)})),Nn=n("ZodKSUID",((e,t)=>{Me.init(e,t),wn.init(e,t)})),Zn=n("ZodIPv4",((e,t)=>{qe.init(e,t),wn.init(e,t)}));const Sn=n("ZodIPv6",((e,t)=>{He.init(e,t),wn.init(e,t)}));const Dn=n("ZodCIDRv4",((e,t)=>{Ye.init(e,t),wn.init(e,t)})),Rn=n("ZodCIDRv6",((e,t)=>{Ke.init(e,t),wn.init(e,t)})),Cn=n("ZodBase64",((e,t)=>{Xe.init(e,t),wn.init(e,t)})),Fn=n("ZodBase64URL",((e,t)=>{Qe.init(e,t),wn.init(e,t)})),Un=n("ZodE164",((e,t)=>{et.init(e,t),wn.init(e,t)})),jn=n("ZodJWT",((e,t)=>{tt.init(e,t),wn.init(e,t)})),Ln=n("ZodNumber",((e,t)=>{nt.init(e,t),_n.init(e,t),e.gt=(t,n)=>e.check(qt(t,n)),e.gte=(t,n)=>e.check(Ht(t,n)),e.min=(t,n)=>e.check(Ht(t,n)),e.lt=(t,n)=>e.check(Bt(t,n)),e.lte=(t,n)=>e.check(Gt(t,n)),e.max=(t,n)=>e.check(Gt(t,n)),e.int=t=>e.check(Wn(t)),e.safe=t=>e.check(Wn(t)),e.positive=t=>e.check(qt(0,t)),e.nonnegative=t=>e.check(Ht(0,t)),e.negative=t=>e.check(Bt(0,t)),e.nonpositive=t=>e.check(Gt(0,t)),e.multipleOf=(t,n)=>e.check(Yt(t,n)),e.step=(t,n)=>e.check(Yt(t,n)),e.finite=()=>e;const n=e._zod.bag;e.minValue=Math.max(n.minimum??Number.NEGATIVE_INFINITY,n.exclusiveMinimum??Number.NEGATIVE_INFINITY)??null,e.maxValue=Math.min(n.maximum??Number.POSITIVE_INFINITY,n.exclusiveMaximum??Number.POSITIVE_INFINITY)??null,e.isInt=(n.format??"").includes("int")||Number.isSafeInteger(n.multipleOf??.5),e.isFinite=!0,e.format=n.format??null}));function Mn(e){return function(e,t){return new e({type:"number",checks:[],...w(t)})}(Ln,e)}const Vn=n("ZodNumberFormat",((e,t)=>{ot.init(e,t),Ln.init(e,t)}));function Wn(e){return function(e,t){return new e({type:"number",check:"number_format",abort:!1,format:"safeint",...w(t)})}(Vn,e)}const Bn=n("ZodBoolean",((e,t)=>{it.init(e,t),_n.init(e,t)}));function Gn(e){return function(e,t){return new e({type:"boolean",...w(t)})}(Bn,e)}const qn=n("ZodBigInt",((e,t)=>{rt.init(e,t),_n.init(e,t),e.gte=(t,n)=>e.check(Ht(t,n)),e.min=(t,n)=>e.check(Ht(t,n)),e.gt=(t,n)=>e.check(qt(t,n)),e.gte=(t,n)=>e.check(Ht(t,n)),e.min=(t,n)=>e.check(Ht(t,n)),e.lt=(t,n)=>e.check(Bt(t,n)),e.lte=(t,n)=>e.check(Gt(t,n)),e.max=(t,n)=>e.check(Gt(t,n)),e.positive=t=>e.check(qt(BigInt(0),t)),e.negative=t=>e.check(Bt(BigInt(0),t)),e.nonpositive=t=>e.check(Gt(BigInt(0),t)),e.nonnegative=t=>e.check(Ht(BigInt(0),t)),e.multipleOf=(t,n)=>e.check(Yt(t,n));const n=e._zod.bag;e.minValue=n.minimum??null,e.maxValue=n.maximum??null,e.format=n.format??null}));function Hn(e){return function(e,t){return new e({type:"bigint",...w(t)})}(qn,e)}const Yn=n("ZodAny",((e,t)=>{st.init(e,t),_n.init(e,t)}));function Kn(){return new Yn({type:"any"})}const Jn=n("ZodUnknown",((e,t)=>{at.init(e,t),_n.init(e,t)}));function Xn(){return new Jn({type:"unknown"})}const Qn=n("ZodNever",((e,t)=>{ut.init(e,t),_n.init(e,t)}));function eo(e){return function(e,t){return new e({type:"never",...w(t)})}(Qn,e)}const to=n("ZodArray",((e,t)=>{dt.init(e,t),_n.init(e,t),e.element=t.element,e.min=(t,n)=>e.check(Jt(t,n)),e.nonempty=t=>e.check(Jt(1,t)),e.max=(t,n)=>e.check(Kt(t,n)),e.length=(t,n)=>e.check(Xt(t,n)),e.unwrap=()=>e.element}));function no(e,t){return function(e,t,n){return new e({type:"array",element:t,...w(n)})}(to,e,t)}const oo=n("ZodObject",((e,t)=>{ft.init(e,t),_n.init(e,t),d(e,"shape",(()=>Object.fromEntries(Object.entries(e._zod.def.shape)))),e.keyof=()=>ho(Object.keys(e._zod.def.shape)),e.catchall=t=>e.clone({...e._zod.def,catchall:t}),e.passthrough=()=>e.clone({...e._zod.def,catchall:Xn()}),e.loose=()=>e.clone({...e._zod.def,catchall:Xn()}),e.strict=()=>e.clone({...e._zod.def,catchall:eo()}),e.strip=()=>e.clone({...e._zod.def,catchall:void 0}),e.extend=t=>function(e,t){const n={...e._zod.def,get shape(){const n={...e._zod.def.shape,...t};return l(this,"shape",n),n},checks:[]};return y(e,n)}(e,t),e.merge=t=>{return o=t,y(n=e,{...n._zod.def,get shape(){const e={...n._zod.def.shape,...o._zod.def.shape};return l(this,"shape",e),e},catchall:o._zod.def.catchall,checks:[]});var n,o},e.pick=t=>function(e,t){const n={},o=e._zod.def;for(const e in t){if(!(e in o.shape))throw new Error(`Unrecognized key: "${e}"`);t[e]&&(n[e]=o.shape[e])}return y(e,{...e._zod.def,shape:n,checks:[]})}(e,t),e.omit=t=>function(e,t){const n={...e._zod.def.shape},o=e._zod.def;for(const e in t){if(!(e in o.shape))throw new Error(`Unrecognized key: "${e}"`);t[e]&&delete n[e]}return y(e,{...e._zod.def,shape:n,checks:[]})}(e,t),e.partial=(...t)=>function(e,t,n){const o=t._zod.def.shape,i={...o};if(n)for(const t in n){if(!(t in o))throw new Error(`Unrecognized key: "${t}"`);n[t]&&(i[t]=e?new e({type:"optional",innerType:o[t]}):o[t])}else for(const t in o)i[t]=e?new e({type:"optional",innerType:o[t]}):o[t];return y(t,{...t._zod.def,shape:i,checks:[]})}(yo,e,t[0]),e.required=(...t)=>function(e,t,n){const o=t._zod.def.shape,i={...o};if(n)for(const t in n){if(!(t in i))throw new Error(`Unrecognized key: "${t}"`);n[t]&&(i[t]=new e({type:"nonoptional",innerType:o[t]}))}else for(const t in o)i[t]=new e({type:"nonoptional",innerType:o[t]});return y(t,{...t._zod.def,shape:i,checks:[]})}(Io,e,t[0])}));function io(e,t){const n={type:"object",get shape(){return l(this,"shape",{...e}),this.shape},...w(t)};return new oo(n)}const ro=n("ZodUnion",((e,t)=>{mt.init(e,t),_n.init(e,t),e.options=t.options}));function so(e,t){return new ro({type:"union",options:e,...w(t)})}const ao=n("ZodDiscriminatedUnion",((e,t)=>{ro.init(e,t),_t.init(e,t)}));function uo(e,t,n){return new ao({type:"union",options:t,discriminator:e,...w(n)})}const co=n("ZodIntersection",((e,t)=>{vt.init(e,t),_n.init(e,t)}));const lo=n("ZodRecord",((e,t)=>{wt.init(e,t),_n.init(e,t),e.keyType=t.keyType,e.valueType=t.valueType}));function po(e,t,n){return new lo({type:"record",keyType:e,valueType:t,...w(n)})}const fo=n("ZodEnum",((e,t)=>{zt.init(e,t),_n.init(e,t),e.enum=t.entries,e.options=Object.values(t.entries);const n=new Set(Object.keys(t.entries));e.extract=(e,o)=>{const i={};for(const o of e){if(!n.has(o))throw new Error(`Key ${o} not found in enum`);i[o]=t.entries[o]}return new fo({...t,checks:[],...w(o),entries:i})},e.exclude=(e,o)=>{const i={...t.entries};for(const t of e){if(!n.has(t))throw new Error(`Key ${t} not found in enum`);delete i[t]}return new fo({...t,checks:[],...w(o),entries:i})}}));function ho(e,t){const n=Array.isArray(e)?Object.fromEntries(e.map((e=>[e,e]))):e;return new fo({type:"enum",entries:n,...w(t)})}const mo=n("ZodLiteral",((e,t)=>{bt.init(e,t),_n.init(e,t),e.values=new Set(t.values),Object.defineProperty(e,"value",{get(){if(t.values.length>1)throw new Error("This schema contains multiple valid literal values. Use `.values` instead.");return t.values[0]}})}));function _o(e,t){return new mo({type:"literal",values:Array.isArray(e)?e:[e],...w(t)})}const vo=n("ZodTransform",((e,t)=>{kt.init(e,t),_n.init(e,t),e._zod.parse=(n,o)=>{n.addIssue=o=>{if("string"==typeof o)n.issues.push(A(o,n.value,t));else{const t=o;t.fatal&&(t.continue=!1),t.code??(t.code="custom"),t.input??(t.input=n.value),t.inst??(t.inst=e),t.continue??(t.continue=!0),n.issues.push(A(t))}};const i=t.transform(n.value,n);return i instanceof Promise?i.then((e=>(n.value=e,n))):(n.value=i,n)}}));function go(e){return new vo({type:"transform",transform:e})}const yo=n("ZodOptional",((e,t)=>{Et.init(e,t),_n.init(e,t),e.unwrap=()=>e._zod.def.innerType}));function wo(e){return new yo({type:"optional",innerType:e})}const zo=n("ZodNullable",((e,t)=>{It.init(e,t),_n.init(e,t),e.unwrap=()=>e._zod.def.innerType}));function bo(e){return new zo({type:"nullable",innerType:e})}const ko=n("ZodDefault",((e,t)=>{$t.init(e,t),_n.init(e,t),e.unwrap=()=>e._zod.def.innerType,e.removeDefault=e.unwrap}));const Eo=n("ZodPrefault",((e,t)=>{Tt.init(e,t),_n.init(e,t),e.unwrap=()=>e._zod.def.innerType}));const Io=n("ZodNonOptional",((e,t)=>{xt.init(e,t),_n.init(e,t),e.unwrap=()=>e._zod.def.innerType}));const $o=n("ZodCatch",((e,t)=>{Pt.init(e,t),_n.init(e,t),e.unwrap=()=>e._zod.def.innerType,e.removeCatch=e.unwrap}));const Ao=n("ZodPipe",((e,t)=>{Nt.init(e,t),_n.init(e,t),e.in=t.in,e.out=t.out}));function To(e,t){return new Ao({type:"pipe",in:e,out:t})}const xo=n("ZodReadonly",((e,t)=>{St.init(e,t),_n.init(e,t)}));const Oo=n("ZodCustom",((e,t)=>{Rt.init(e,t),_n.init(e,t)}));const Po=yn().refine((e=>/^(0|[1-9]\d*)(\.\d+)?$/.test(e)),{message:"Invalid amount"}),No=/^(0x|0x[a-fA-F0-9]{40})$/,Zo=yn().refine((e=>No.test(e)),{message:"Invalid EVM token address"}),So=Zo.refine((e=>"0x"!==e),{message:"Invalid EVM address"}),Do=/^[1-9A-HJ-NP-Za-km-z]{32,44}$/,Ro=/^So[1-2]{41}$/,Co=yn().refine((e=>Do.test(e)||Ro.test(e)),{message:"Invalid Solana token address"}),Fo=so([So,yn().refine((e=>Do.test(e)),{message:"Invalid Solana address"})]),Uo=yn().refine((e=>/^[a-zA-Z_]{3,}$/.test(e)),{message:"Invalid fiat"}),jo=io({issuer:yn(),name:yn(),alias:yn().optional(),symbol:yn(),decimals:Mn()}),Lo=yn(),Mo=yn().regex(/^[a-zA-Z]\w{1,7}$/,{message:"Must be a short alpha-numeric symbol"}),Vo=Mn().min(0).max(18),Wo=yn().url(),Bo=yn(),Go=io({chain:yn(),address:Zo}),qo=io({chain:_o("solana"),address:Co}),Ho=io({chain:yn(),address:yn()}),Yo=so([Go,qo,Ho]),Ko=yn().refine((e=>{const[t,n]=e.split(":");return Yo.safeParse({chain:t,address:n}).success}),{message:"Invalid token"}),Jo=io({name:Lo,symbol:Mo,decimals:Vo,alias:Mo.optional(),image_url:Wo.optional(),coingecko_id:Bo.optional(),wrapper:Mo.optional(),is_native:Gn().optional()}),Xo=so([Go.extend(Jo.shape),qo.extend(Jo.shape),Ho.extend(Jo.shape)]),Qo=so([Ko,Uo]);so([Xo,jo]),uo("type",[io({type:_o("chain"),chain:yn()}),io({type:_o("issuer"),issuer:yn()})]);const ei=yn().transform((e=>e.toLowerCase()));var ti,ni;ti=e=>"string"==typeof e?e.toUpperCase():e,ni=ho(["ONRAMP","OFFRAMP"]),To(go(ti),ni),io({to:So,from:So.optional(),nonce:Mn().optional(),gasLimit:Hn().optional(),gasPrice:Hn().optional(),maxPriorityFeePerGas:Hn().optional(),maxFeePerGas:Hn().optional(),data:yn().optional(),value:Hn().optional(),chainId:Mn()}),io({transactionHash:yn().optional(),blockHash:yn().optional(),blockNumber:Mn().optional(),from:So.optional(),to:So.optional(),rawReceipt:Kn()});so([io({chain_id:Hn(),network:yn(),native_currency:io({name:yn(),symbol:yn(),decimals:Mn()}),rpc:yn(),image:yn(),is_testnet:Gn(),explorer:yn()}),io({chain_id:Hn(),network:yn()})]);const oi=ho(["CREDIT_CARD","DEBIT_CARD","ACH","FIAT_BALANCE","TOKEN_BALANCE","APPLE_PAY","PAYPAL","VENMO","REVOLUT","GOOGLE_PAY","SEPA","FASTER_PAYMENTS","PIX","UPI","WIRE"]),ii=yn().refine((e=>t.test(e)),{message:"Invalid payment ID"}),ri=io({onramps:no(ei).optional(),offramps:no(ei).optional(),sandbox:Gn().optional().default(!1)}),si=ri.extend({inputs:no(Qo).optional(),outputs:no(Qo)});so([si,ri.extend({inputs:no(Qo),outputs:no(Qo).optional()})]);const ai=io({asset:Qo,amount:Po}),ui=io({token:Ko,amount:Po}),ci=yn(),di=so([Vt(Zn,li),function(e){return Wt(Sn,e)}()]);var li;const pi=io({price_currency:Uo,onramps:no(ei).optional(),onramp_methods:no(oi).optional(),customer_ip_address:yn().optional(),customer_id:yn().optional(),parent_payment_id:ii.optional()}),fi=uo("kind",[io({kind:_o("FIXED_INPUT"),fixed_input_amount:ai,output_asset:Qo})]),hi=pi.extend({request:fi}),mi=ho(["USER","DEST","HALLIDAY","SPW","REV_SHARE","BRIDGE"]),_i=io({asset:Qo,property:ho(["APPROVAL","BALANCE"])}),vi=io({account:mi,resource:_i}),gi=so([_o("COMPLETE"),_o("UNREACHABLE"),_o("FAILED")]),yi=so([gi,_o("PENDING")]),wi=ho(["PENDING","COMPLETE","FAILED","EXPIRED","WITHDRAWN","TAINTED"]),zi=io({consume:no(vi),produce:no(vi)}),bi=vi.extend({amount:Po}),ki=zi.extend({consume:no(bi),produce:no(bi)}),Ei=po(Qo,yn()),Ii=uo("kind",[io({kind:so([_o("amount"),_o("amount-downstream")]),given:yn(),limits:io({min:yn().optional(),max:yn().optional()}),source:yn(),message:yn()}),io({kind:_o("geolocation"),message:yn()}),io({kind:_o("provider"),message:yn()}),io({kind:_o("other"),message:yn()}),io({kind:_o("unknown"),message:yn()})]),$i=io({service_ids:no(yn()),latency_seconds:Mn(),issues:no(Ii).optional()}),Ai=io({type:so([_o("USER_FUND"),_o("ONCHAIN_STEP"),_o("ONRAMP")]),net_effect:ki,pieces_info:no(io({type:so([_o("onramp"),_o("poll"),_o("bridge"),_o("rev_share"),_o("transfer_out"),_o("convert")])})),step_index:Mn().optional()}),Ti=io({payment_id:yn(),output_amount:io({asset:Qo,amount:yn()}),onramp:ei.optional(),onramp_method:oi.optional(),fees:io({total_fees:yn(),conversion_fees:yn(),network_fees:yn(),business_fees:yn(),currency_symbol:Uo}),route:no(Ai)}),xi=Ai.extend({status:yi,transaction_hash:yn().optional()}),Oi=Ti.omit({payment_id:!0}).partial({output_amount:!0,onramp:!0,onramp_method:!0,fees:!0}).extend({route:no(xi)});io({quote_request:hi,quotes:no(Ti),current_prices:Ei,price_currency:Uo,state_token:yn(),quoted_at:yn(),accept_by:yn(),failures:no($i)}),io({payment_id:ii,state_token:yn(),owner_address:Fo,destination_address:Fo,client_redirect_url:yn().optional()});const Pi=io({deposit_token:Ko,deposit_chain:yn(),deposit_amount:Po,deposit_address:Fo}),Ni=io({type:ho(["ONRAMP","TRANSFER_IN"]),payment_id:ii,funding_page_url:In(),deposit_info:no(Pi)}),Zi=io({payment_id:ii,status:wi,funded:Gn(),created_at:yn(),updated_at:yn(),initiate_fund_by:yn(),completed_at:yn().optional(),quote_request:hi,quoted:Ti.omit({payment_id:!0}),fulfilled:Oi,current_prices:Ei,price_currency:Uo,customer_id:yn().optional(),processing_addresses:no(io({address:Fo,chain:yn()})),owner_address:Fo,destination_address:Fo,next_instruction:Ni.optional(),parent_payment_id:ii.optional()});io({payment_id:ii,redirect_url:yn().optional()}),io({funding_page_onramp_url:yn(),client_redirect_url:yn().optional(),client_secret:yn().optional()}),io({id_query:yn().optional(),pagination_key:yn().optional(),dest_address:Fo.optional(),owner_address:Fo.optional(),limit:Mn().int().positive().optional(),category:ho(["ALL","NEW_OR_FUNDED"]).optional()}),io({payment_statuses:no(Zi),next_pagination_key:yn().nullable()}),io({payment_id:ii.optional(),custom_queries:no(io({address:Fo,token:so([Ko,Yo])})).optional()}).refine((e=>!(!e.payment_id&&!e.custom_queries?.length)),{message:"payment_id or custom_queries is required"}),io({balance_results:no(io({address:Fo,token:Ko,value:uo("kind",[io({kind:_o("amount"),amount:Po}),io({kind:_o("error")})])}))}),io({fiat:Uo,tokens:no(Ko)});const Si=yn(),Di=io({payment_id:ii,token_amounts:no(ui),recipient_address:Fo});io({payment_id:ii,withdraw_authorization:Si}),Di.extend({owner_signature:ci}),io({payment_id:ii,transaction_hash:yn()});const Ri=ho(["EMBED","POPUP","MODAL"]),Ci=yn().refine((e=>/^(#[0-9A-Fa-f]{3,8}|rgb\(\d{1,3},\s*\d{1,3},\s*\d{1,3}\)|rgba\(\d{1,3},\s*\d{1,3},\s*\d{1,3}(\s*,\s*(0(\.\d+)?|1(\.0+)?))\))$/.test(e)),{message:"Invalid CSS color value"}),Fi=io({src:In(),alt:yn(),width:Mn().positive(),height:Mn().positive()}),Ui=io({primaryColor:Ci.optional(),backgroundColor:Ci.optional(),borderColor:Ci.optional(),textColor:Ci.optional(),textSecondaryColor:Ci.optional(),logo:Fi.optional()}),ji=Kn(),Li=io({address:Fo,signMessage:Kn().refine((e=>"function"==typeof e)).optional(),sendTransaction:Kn().refine((e=>"function"==typeof e)).optional(),signTypedData:Kn().refine((e=>"function"==typeof e)).optional()}),Mi=io({redirectUrl:In(),ctaText:yn(),secondaryRedirectUrl:In().optional(),secondaryCtaText:yn().optional()}).refine((e=>!(e.secondaryRedirectUrl&&!e.secondaryCtaText||!e.secondaryRedirectUrl&&e.secondaryCtaText)),{message:"secondaryCtaText and secondaryRedirectUrl must be provided together."}),Vi=io({apiKey:yn().nonempty(),destinationAddress:Fo.optional(),widgetVersion:ho(["1","2"]).default("2").optional(),...si.shape,customStyles:Ui.optional(),targetElementId:yn().optional(),windowType:Ri.default(Ri.enum.POPUP).optional(),redirects:Mi.optional(),statusCallback:Kn().refine((e=>"function"==typeof e)).optional(),owner:Li.optional(),funder:Li.optional()}).refine((e=>!("EMBED"===e.windowType&&!e.targetElementId)),{message:"targetElementId is required when windowType is EMBED"}),Wi=Vi.omit({owner:!0,funder:!0,statusCallback:!0}),Bi=yn().regex(/^(https:\/\/(?:[\w-]+\.)*halliday\.xyz(?:\/.*)?|http:\/\/localhost(?::\d+)?(?:\/.*)?|https:\/\/localhost(?::\d+)?(?:\/.*)?)$/,"Invalid API baseUrl"),Gi=po(yn(),Gn()),qi=io({dangerouslyOverrideHallidayDomainName:In().optional(),dangerouslyOverrideApiBaseUrl:Bi.optional(),dangerouslyOverrideIPAddress:di.optional(),dangerouslyOverrideFeatureFlags:Gi.optional()}),Hi=ho(["FULL","MODAL","OVERLAY"]),Yi=io({appMode:Hi.optional(),apiBaseUrl:Bi.optional(),hasOwner:Gn(),hasTxHandler:Gn(),hostOrigin:In().nullable(),ipAddress:di.optional(),featureFlags:Gi.optional()}),Ki=io({...Wi.shape,...Yi.shape,ownerAddress:Fo.optional(),funderAddress:Fo.optional()});var Ji;!function(e){e.ACTION_TRANSACTION="ACTION_TRANSACTION",e.EVENT_ORDER_STATUS="EVENT_ORDER_STATUS",e.EVENT_WINDOW_CLOSE="EVENT_WINDOW_CLOSE",e.ACTION_SIGN_MESSAGE="ACTION_SIGN_MESSAGE",e.ACTION_PROVIDER_WIDGET="ACTION_PROVIDER_WIDGET",e.ACTION_SIGN_TYPED_DATA="ACTION_SIGN_TYPED_DATA"}(Ji||(Ji={}));const Xi=e=>{const t=Ki.parse(e);return btoa(JSON.stringify(t))},Qi=e=>Ki.parse(JSON.parse(atob(e))),er=t=>{const{windowOrigin:n=e,...o}=t,i=Xi(o),r=o.widgetVersion;if(r)try{return`${n}/v${parseInt(r)}/payments/quote?data=${i}`}catch(e){console.error("Error parsing widget version",e)}return`${n}/payments/quote?data=${i}`},tr=async({apiKey:e,baseURL:t,workflowId:n})=>{let o;for(let i=1;i<=3;i++)try{const o=await fetch(`${t}/quotes/status?workflow_id=${n}`,{headers:{Authorization:`Bearer ${e}`}});if(!o.ok)throw new Error(`HTTP error! status: ${o.status}`);return await o.json()}catch(e){if(o=e instanceof Error?e:new Error(String(e)),3===i)throw o;const t=1e3*Math.pow(2,i);await new Promise((e=>setTimeout(e,t)))}throw o},nr=e=>{e instanceof dn?e.issues.forEach((e=>{console.error("Validation Error",{path:e.path.join("."),message:e.message})})):console.error("openHallidayPayments Error",{error:e})},or=(()=>{let t=null,n=null,o=[];const i=()=>{o.forEach((e=>{window.removeEventListener("message",e)})),o=[]};return{openWidget:async(r,...s)=>{const a=s[999]||{};let u,c;try{u=Vi.parse(r)}catch(e){throw nr(e),e}try{c=qi.parse(a)}catch(e){throw nr(e),e}const{dangerouslyOverrideHallidayDomainName:d,dangerouslyOverrideApiBaseUrl:l,dangerouslyOverrideIPAddress:p,dangerouslyOverrideFeatureFlags:f}=c,{owner:h,statusCallback:m,funder:_,windowType:v}=u,g=d||e,y=h?.signMessage,w=h?.signTypedData,z=_?.sendTransaction||h?.sendTransaction,b=h?.address,k=_?.address,E=Fo.safeParse(b).success&&"function"==typeof w,I=Fo.safeParse(k).success&&"function"==typeof z;let $=null,A="FULL";try{$=window.origin,"MODAL"===v&&(A=(()=>{if("undefined"==typeof navigator)return!1;const e=navigator;let t=!1;e.userAgentData&&"boolean"==typeof e.userAgentData.mobile&&(t=e.userAgentData.mobile);const n=navigator.userAgent||navigator.vendor||window.opera||"";return t||/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini|mobile|tablet/i.test(n)})()?"OVERLAY":"MODAL")}catch(e){}i();const T=[e=>{if(e.origin!==g||e.source!==t)return;const{type:n}=e.data||{};n===Ji.EVENT_WINDOW_CLOSE&&i()}];if(E){const e=async e=>{if(e.origin!==g||e.source!==t)return;const{type:n,payload:o}=e.data||{};if(n===Ji.ACTION_SIGN_MESSAGE){const{messageId:e,message:i,ownerAddress:r}=o;try{let o;if("function"!=typeof y)throw new Error("No signMessage function provided");o=await y({message:i,ownerAddress:r}),t?.postMessage({type:n,payload:{messageId:e,signature:o}},g)}catch(o){console.error("Error signing message",o),t?.postMessage({type:n,payload:{messageId:e,error:o instanceof Error?o.message:o}},g)}}else if(n===Ji.ACTION_SIGN_TYPED_DATA){const{messageId:e,typedData:i,ownerAddress:r}=o;try{let o;if("function"!=typeof w)throw new Error("No signTypedData function provided");o=await w({typedData:i,ownerAddress:r}),t?.postMessage({type:n,payload:{messageId:e,signature:o}},g)}catch(o){console.error("Error signing typed data",o),t?.postMessage({type:n,payload:{messageId:e,error:o instanceof Error?o.message:o}},g)}}};T.push(e)}if(I){const e=async e=>{if(e.origin!==g||e.source!==t)return;const{type:n,payload:o}=e.data||{};if(n===Ji.ACTION_TRANSACTION){const{messageId:e,chainConfig:i,transaction:r}=o;try{let o;if("function"!=typeof z)throw new Error("No sendTransaction function provided");o=await z(r,i),t?.postMessage({type:n,payload:{messageId:e,txReceipt:o}},g)}catch(o){console.error("Error handling transaction",o),t?.postMessage({type:n,payload:{messageId:e,error:o instanceof Error?o.message:o}},g)}}};T.push(e)}if(m){const e=e=>{if(e.origin!==g||e.source!==t)return;const{type:n,payload:o}=e.data||{};n===Ji.EVENT_ORDER_STATUS&&m({type:n,payload:o})};T.push(e)}var x;T.push((async e=>{if(e.origin!==g||e.source!==t)return;const{type:o,payload:i}=e.data||{};if(o===Ji.ACTION_PROVIDER_WIDGET&&t){const{url:e,redirectUrl:o,providerWidgetMode:r,workflowId:s}=i||{};if(!(e&&o&&r&&s))throw new Error("Invalid provider widget payload");let a=null;if("REDIRECT"===r)t.location=e,a=t;else{if("POPUP"!==r)throw new Error("Invalid provider widget mode");n=(e=>{const t=window.innerWidth/2-240;return window.open(e,"Provider Widget",`popup left=${t} top=70 width=480 height=638`)})(e),a=n}if(await(async({apiKey:e,baseURL:t,window:n,workflowId:o})=>{for(;!n.closed;){let n;try{n=await tr({apiKey:e,baseURL:t,workflowId:o})}catch(e){console.error("Error fetching payment status",e);break}const i=n.fulfilled.route.find((e=>"ONRAMP"===e.type)),r=i?.status;if("COMPLETE"===r)break;await new Promise((e=>setTimeout(e,5e3)))}})({apiKey:u.apiKey,baseURL:l||"https://v2.prod.halliday.xyz",workflowId:s,window:a}),a?.closed)return;"REDIRECT"===r?t.location=o:"POPUP"===r&&(n?.close(),n=null)}})),t=(e=>{const t=window.innerWidth/2-240,{windowType:n="POPUP",targetElementId:o,windowOrigin:i}=e,r=er(e);let s;if("EMBED"===n){const e=document.getElementById(o);if(!e)throw new Error(`Element with id ${o} not found`);const t=document.createElement("iframe");t.id="halliday-payments-embed",t.src=r,t.style.width="480px",t.style.height="638px",t.style.maxWidth="100%",t.style.maxHeight="100%",e.innerHTML="",e.appendChild(t);const n=t=>{if(t.origin!==i||t.source!==s)return;const{type:o}=t.data||{};o===Ji.EVENT_WINDOW_CLOSE&&(window.removeEventListener("message",n),e.innerHTML="")};window.addEventListener("message",n),s=t.contentWindow}else if("MODAL"===n){let e=document.getElementById("halliday-payments-modal");(e?e.src:null)===r?e.style.display="block":(e&&e.remove(),e=document.createElement("iframe"),e.id="halliday-payments-modal",e.src=r,e.style.position="fixed",e.style.top="0",e.style.left="0",e.style.width="100dvw",e.style.height="100dvh",e.style.border="none",e.style.zIndex="1000",e.setAttribute("scrolling","no"),document.body.appendChild(e));const t=e=>{if(e.origin!==i||e.source!==s)return;const{type:n}=e.data||{};if(n===Ji.EVENT_WINDOW_CLOSE){window.removeEventListener("message",t);const e=document.getElementById("halliday-payments-modal");e&&(e.style.display="none")}};window.addEventListener("message",t),s=e.contentWindow}else s=window.open(r,"Halliday Payments",`popup left=${t} top=70 width=480 height=638`);return s})({...u,sandbox:u.sandbox||!1,hasOwner:E,hasTxHandler:I,windowOrigin:g,apiBaseUrl:l,hostOrigin:$,ownerAddress:b,funderAddress:k,ipAddress:p,featureFlags:f,appMode:A}),(x=T).forEach((e=>{window.addEventListener("message",e)})),o=x}}})();async function ir(e,...t){try{return or.openWidget(e,...t)}catch(e){throw nr(e),e}}export{Hi as AppMode,Ui as CustomStyles,Ji as MessageType,ji as OrderStatus,Ki as PaymentsWidgetQueryParams,Vi as PaymentsWidgetSDKParams,Qi as deserializeQueryParams,er as getPaymentsWidgetUrl,ir as openHallidayPayments,Xi as serializeQueryParams};
1
+ const e="https://app.halliday.xyz",t=/^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$/;function n(e,t,n){function o(n,o){var i;Object.defineProperty(n,"_zod",{value:n._zod??{},enumerable:!1}),(i=n._zod).traits??(i.traits=new Set),n._zod.traits.add(e),t(n,o);for(const e in s.prototype)Object.defineProperty(n,e,{value:s.prototype[e].bind(n)});n._zod.constr=s,n._zod.def=o}const i=n?.Parent??Object;class r extends i{}function s(e){var t;const i=n?.Parent?new r:this;o(i,e),(t=i._zod).deferred??(t.deferred=[]);for(const e of i._zod.deferred)e();return i}return Object.defineProperty(r,"name",{value:e}),Object.defineProperty(s,"init",{value:o}),Object.defineProperty(s,Symbol.hasInstance,{value:t=>!!(n?.Parent&&t instanceof n.Parent)||t?._zod?.traits?.has(e)}),Object.defineProperty(s,"name",{value:e}),s}class o extends Error{constructor(){super("Encountered Promise during synchronous parse. Use .parseAsync() instead.")}}const i={};function r(e){return i}function s(e,t){return"bigint"==typeof t?t.toString():t}function a(e){return{get value(){{const t=e();return Object.defineProperty(this,"value",{value:t}),t}}}}function u(e){return null==e}function c(e){const t=e.startsWith("^")?1:0,n=e.endsWith("$")?e.length-1:e.length;return e.slice(t,n)}function d(e,t,n){Object.defineProperty(e,t,{get(){{const o=n();return e[t]=o,o}},set(n){Object.defineProperty(e,t,{value:n})},configurable:!0})}function l(e,t,n){Object.defineProperty(e,t,{value:n,writable:!0,enumerable:!0,configurable:!0})}function p(e=10){const t="abcdefghijklmnopqrstuvwxyz";let n="";for(let o=0;o<e;o++)n+=t[Math.floor(26*Math.random())];return n}function f(e){return JSON.stringify(e)}function h(e){return"object"==typeof e&&null!==e&&!Array.isArray(e)}const m=a((()=>{try{return new Function(""),!0}catch(e){return!1}}));function _(e){return"object"==typeof e&&null!==e&&(Object.getPrototypeOf(e)===Object.prototype||null===Object.getPrototypeOf(e))}const v=new Set(["string","number","symbol"]);function g(e){return e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function y(e,t,n){const o=new e._zod.constr(t??e._zod.def);return t&&!n?.parent||(o._zod.parent=e),o}function w(e){const t=e;if(!t)return{};if("string"==typeof t)return{error:()=>t};if(void 0!==t?.message){if(void 0!==t?.error)throw new Error("Cannot specify both `message` and `error` params");t.error=t.message}return delete t.message,"string"==typeof t.error?{...t,error:()=>t.error}:t}const z={safeint:[Number.MIN_SAFE_INTEGER,Number.MAX_SAFE_INTEGER],int32:[-2147483648,2147483647],uint32:[0,4294967295],float32:[-34028234663852886e22,34028234663852886e22],float64:[-Number.MAX_VALUE,Number.MAX_VALUE]};function b(e,t=0){for(let n=t;n<e.issues.length;n++)if(!0!==e.issues[n].continue)return!0;return!1}function k(e,t){return t.map((t=>{var n;return(n=t).path??(n.path=[]),t.path.unshift(e),t}))}function E(e){return"string"==typeof e?e:e?.message}function I(e,t,n){const o={...e,path:e.path??[]};if(!e.message){const i=E(e.inst?._zod.def?.error?.(e))??E(t?.error?.(e))??E(n.customError?.(e))??E(n.localeError?.(e))??"Invalid input";o.message=i}return delete o.inst,delete o.continue,t?.reportInput||delete o.input,o}function A(e){return Array.isArray(e)?"array":"string"==typeof e?"string":"unknown"}function $(...e){const[t,n,o]=e;return"string"==typeof t?{message:t,code:"custom",input:n,inst:o}:{...t}}const T=(e,t)=>{e.name="$ZodError",Object.defineProperty(e,"_zod",{value:e._zod,enumerable:!1}),Object.defineProperty(e,"issues",{value:t,enumerable:!1}),Object.defineProperty(e,"message",{get:()=>JSON.stringify(t,s,2),enumerable:!0})},O=n("$ZodError",T),x=n("$ZodError",T,{Parent:Error});const N=e=>(t,n,i,s)=>{const a=i?Object.assign(i,{async:!1}):{async:!1},u=t._zod.run({value:n,issues:[]},a);if(u instanceof Promise)throw new o;if(u.issues.length){const t=new(s?.Err??e)(u.issues.map((e=>I(e,a,r()))));throw Error.captureStackTrace(t,s?.callee),t}return u.value},P=e=>async(t,n,o,i)=>{const s=o?Object.assign(o,{async:!0}):{async:!0};let a=t._zod.run({value:n,issues:[]},s);if(a instanceof Promise&&(a=await a),a.issues.length){const t=new(i?.Err??e)(a.issues.map((e=>I(e,s,r()))));throw Error.captureStackTrace(t,i?.callee),t}return a.value},Z=e=>(t,n,i)=>{const s=i?{...i,async:!1}:{async:!1},a=t._zod.run({value:n,issues:[]},s);if(a instanceof Promise)throw new o;return a.issues.length?{success:!1,error:new(e??O)(a.issues.map((e=>I(e,s,r()))))}:{success:!0,data:a.value}},S=Z(x),D=e=>async(t,n,o)=>{const i=o?Object.assign(o,{async:!0}):{async:!0};let s=t._zod.run({value:n,issues:[]},i);return s instanceof Promise&&(s=await s),s.issues.length?{success:!1,error:new e(s.issues.map((e=>I(e,i,r()))))}:{success:!0,data:s.value}},R=D(x),C=/^[cC][^\s-]{8,}$/,U=/^[0-9a-z]+$/,F=/^[0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{26}$/,L=/^[0-9a-vA-V]{20}$/,j=/^[A-Za-z0-9]{27}$/,M=/^[a-zA-Z0-9_-]{21}$/,V=/^P(?:(\d+W)|(?!.*W)(?=\d|T\d)(\d+Y)?(\d+M)?(\d+D)?(T(?=\d)(\d+H)?(\d+M)?(\d+([.,]\d+)?S)?)?)$/,W=/^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})$/,B=e=>e?new RegExp(`^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-${e}[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12})$`):/^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000)$/,G=/^(?!\.)(?!.*\.\.)([A-Za-z0-9_'+\-\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\-]*\.)+[A-Za-z]{2,}$/;const H=/^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])$/,q=/^(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|::|([0-9a-fA-F]{1,4})?::([0-9a-fA-F]{1,4}:?){0,6})$/,Y=/^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\/([0-9]|[1-2][0-9]|3[0-2])$/,K=/^(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|::|([0-9a-fA-F]{1,4})?::([0-9a-fA-F]{1,4}:?){0,6})\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/,J=/^$|^(?:[0-9a-zA-Z+/]{4})*(?:(?:[0-9a-zA-Z+/]{2}==)|(?:[0-9a-zA-Z+/]{3}=))?$/,X=/^[A-Za-z0-9_-]*$/,Q=/^([a-zA-Z0-9-]+\.)*[a-zA-Z0-9-]+$/,ee=/^\+(?:[0-9]){6,14}[0-9]$/,te="((\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-((0[13578]|1[02])-(0[1-9]|[12]\\d|3[01])|(0[469]|11)-(0[1-9]|[12]\\d|30)|(02)-(0[1-9]|1\\d|2[0-8])))",ne=new RegExp(`^${te}$`);function oe(e){let t="([01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d";return e.precision?t=`${t}\\.\\d{${e.precision}}`:null==e.precision&&(t=`${t}(\\.\\d+)?`),t}const ie=/^\d+n?$/,re=/^\d+$/,se=/^-?\d+(?:\.\d+)?/i,ae=/true|false/i,ue=/^[^A-Z]*$/,ce=/^[^a-z]*$/,de=n("$ZodCheck",((e,t)=>{var n;e._zod??(e._zod={}),e._zod.def=t,(n=e._zod).onattach??(n.onattach=[])})),le={number:"number",bigint:"bigint",object:"date"},pe=n("$ZodCheckLessThan",((e,t)=>{de.init(e,t);const n=le[typeof t.value];e._zod.onattach.push((e=>{const n=e._zod.bag,o=(t.inclusive?n.maximum:n.exclusiveMaximum)??Number.POSITIVE_INFINITY;t.value<o&&(t.inclusive?n.maximum=t.value:n.exclusiveMaximum=t.value)})),e._zod.check=o=>{(t.inclusive?o.value<=t.value:o.value<t.value)||o.issues.push({origin:n,code:"too_big",maximum:t.value,input:o.value,inclusive:t.inclusive,inst:e,continue:!t.abort})}})),fe=n("$ZodCheckGreaterThan",((e,t)=>{de.init(e,t);const n=le[typeof t.value];e._zod.onattach.push((e=>{const n=e._zod.bag,o=(t.inclusive?n.minimum:n.exclusiveMinimum)??Number.NEGATIVE_INFINITY;t.value>o&&(t.inclusive?n.minimum=t.value:n.exclusiveMinimum=t.value)})),e._zod.check=o=>{(t.inclusive?o.value>=t.value:o.value>t.value)||o.issues.push({origin:n,code:"too_small",minimum:t.value,input:o.value,inclusive:t.inclusive,inst:e,continue:!t.abort})}})),he=n("$ZodCheckMultipleOf",((e,t)=>{de.init(e,t),e._zod.onattach.push((e=>{var n;(n=e._zod.bag).multipleOf??(n.multipleOf=t.value)})),e._zod.check=n=>{if(typeof n.value!=typeof t.value)throw new Error("Cannot mix number and bigint in multiple_of check.");("bigint"==typeof n.value?n.value%t.value===BigInt(0):0===function(e,t){const n=(e.toString().split(".")[1]||"").length,o=(t.toString().split(".")[1]||"").length,i=n>o?n:o;return Number.parseInt(e.toFixed(i).replace(".",""))%Number.parseInt(t.toFixed(i).replace(".",""))/10**i}(n.value,t.value))||n.issues.push({origin:typeof n.value,code:"not_multiple_of",divisor:t.value,input:n.value,inst:e,continue:!t.abort})}})),me=n("$ZodCheckNumberFormat",((e,t)=>{de.init(e,t),t.format=t.format||"float64";const n=t.format?.includes("int"),o=n?"int":"number",[i,r]=z[t.format];e._zod.onattach.push((e=>{const o=e._zod.bag;o.format=t.format,o.minimum=i,o.maximum=r,n&&(o.pattern=re)})),e._zod.check=s=>{const a=s.value;if(n){if(!Number.isInteger(a))return void s.issues.push({expected:o,format:t.format,code:"invalid_type",input:a,inst:e});if(!Number.isSafeInteger(a))return void(a>0?s.issues.push({input:a,code:"too_big",maximum:Number.MAX_SAFE_INTEGER,note:"Integers must be within the safe integer range.",inst:e,origin:o,continue:!t.abort}):s.issues.push({input:a,code:"too_small",minimum:Number.MIN_SAFE_INTEGER,note:"Integers must be within the safe integer range.",inst:e,origin:o,continue:!t.abort}))}a<i&&s.issues.push({origin:"number",input:a,code:"too_small",minimum:i,inclusive:!0,inst:e,continue:!t.abort}),a>r&&s.issues.push({origin:"number",input:a,code:"too_big",maximum:r,inst:e})}})),_e=n("$ZodCheckMaxLength",((e,t)=>{de.init(e,t),e._zod.when=e=>{const t=e.value;return!u(t)&&void 0!==t.length},e._zod.onattach.push((e=>{const n=e._zod.bag.maximum??Number.POSITIVE_INFINITY;t.maximum<n&&(e._zod.bag.maximum=t.maximum)})),e._zod.check=n=>{const o=n.value;if(o.length<=t.maximum)return;const i=A(o);n.issues.push({origin:i,code:"too_big",maximum:t.maximum,input:o,inst:e,continue:!t.abort})}})),ve=n("$ZodCheckMinLength",((e,t)=>{de.init(e,t),e._zod.when=e=>{const t=e.value;return!u(t)&&void 0!==t.length},e._zod.onattach.push((e=>{const n=e._zod.bag.minimum??Number.NEGATIVE_INFINITY;t.minimum>n&&(e._zod.bag.minimum=t.minimum)})),e._zod.check=n=>{const o=n.value;if(o.length>=t.minimum)return;const i=A(o);n.issues.push({origin:i,code:"too_small",minimum:t.minimum,input:o,inst:e,continue:!t.abort})}})),ge=n("$ZodCheckLengthEquals",((e,t)=>{de.init(e,t),e._zod.when=e=>{const t=e.value;return!u(t)&&void 0!==t.length},e._zod.onattach.push((e=>{const n=e._zod.bag;n.minimum=t.length,n.maximum=t.length,n.length=t.length})),e._zod.check=n=>{const o=n.value,i=o.length;if(i===t.length)return;const r=A(o),s=i>t.length;n.issues.push({origin:r,...s?{code:"too_big",maximum:t.length}:{code:"too_small",minimum:t.length},input:n.value,inst:e,continue:!t.abort})}})),ye=n("$ZodCheckStringFormat",((e,t)=>{var n;de.init(e,t),e._zod.onattach.push((e=>{const n=e._zod.bag;n.format=t.format,t.pattern&&(n.patterns??(n.patterns=new Set),n.patterns.add(t.pattern))})),(n=e._zod).check??(n.check=n=>{if(!t.pattern)throw new Error("Not implemented.");t.pattern.lastIndex=0,t.pattern.test(n.value)||n.issues.push({origin:"string",code:"invalid_format",format:t.format,input:n.value,...t.pattern?{pattern:t.pattern.toString()}:{},inst:e,continue:!t.abort})})})),we=n("$ZodCheckRegex",((e,t)=>{ye.init(e,t),e._zod.check=n=>{t.pattern.lastIndex=0,t.pattern.test(n.value)||n.issues.push({origin:"string",code:"invalid_format",format:"regex",input:n.value,pattern:t.pattern.toString(),inst:e,continue:!t.abort})}})),ze=n("$ZodCheckLowerCase",((e,t)=>{t.pattern??(t.pattern=ue),ye.init(e,t)})),be=n("$ZodCheckUpperCase",((e,t)=>{t.pattern??(t.pattern=ce),ye.init(e,t)})),ke=n("$ZodCheckIncludes",((e,t)=>{de.init(e,t);const n=g(t.includes),o=new RegExp("number"==typeof t.position?`^.{${t.position}}${n}`:n);t.pattern=o,e._zod.onattach.push((e=>{const t=e._zod.bag;t.patterns??(t.patterns=new Set),t.patterns.add(o)})),e._zod.check=n=>{n.value.includes(t.includes,t.position)||n.issues.push({origin:"string",code:"invalid_format",format:"includes",includes:t.includes,input:n.value,inst:e,continue:!t.abort})}})),Ee=n("$ZodCheckStartsWith",((e,t)=>{de.init(e,t);const n=new RegExp(`^${g(t.prefix)}.*`);t.pattern??(t.pattern=n),e._zod.onattach.push((e=>{const t=e._zod.bag;t.patterns??(t.patterns=new Set),t.patterns.add(n)})),e._zod.check=n=>{n.value.startsWith(t.prefix)||n.issues.push({origin:"string",code:"invalid_format",format:"starts_with",prefix:t.prefix,input:n.value,inst:e,continue:!t.abort})}})),Ie=n("$ZodCheckEndsWith",((e,t)=>{de.init(e,t);const n=new RegExp(`.*${g(t.suffix)}$`);t.pattern??(t.pattern=n),e._zod.onattach.push((e=>{const t=e._zod.bag;t.patterns??(t.patterns=new Set),t.patterns.add(n)})),e._zod.check=n=>{n.value.endsWith(t.suffix)||n.issues.push({origin:"string",code:"invalid_format",format:"ends_with",suffix:t.suffix,input:n.value,inst:e,continue:!t.abort})}})),Ae=n("$ZodCheckOverwrite",((e,t)=>{de.init(e,t),e._zod.check=e=>{e.value=t.tx(e.value)}}));class $e{constructor(e=[]){this.content=[],this.indent=0,this&&(this.args=e)}indented(e){this.indent+=1,e(this),this.indent-=1}write(e){if("function"==typeof e)return e(this,{execution:"sync"}),void e(this,{execution:"async"});const t=e.split("\n").filter((e=>e)),n=Math.min(...t.map((e=>e.length-e.trimStart().length))),o=t.map((e=>e.slice(n))).map((e=>" ".repeat(2*this.indent)+e));for(const e of o)this.content.push(e)}compile(){const e=Function,t=this?.args;return new e(...t,[...(this?.content??[""]).map((e=>` ${e}`))].join("\n"))}}const Te={major:4,minor:0,patch:0},Oe=n("$ZodType",((e,t)=>{var n;e??(e={}),e._zod.id=t.type+"_"+p(10),e._zod.def=t,e._zod.bag=e._zod.bag||{},e._zod.version=Te;const i=[...e._zod.def.checks??[]];e._zod.traits.has("$ZodCheck")&&i.unshift(e);for(const t of i)for(const n of t._zod.onattach)n(e);if(0===i.length)(n=e._zod).deferred??(n.deferred=[]),e._zod.deferred?.push((()=>{e._zod.run=e._zod.parse}));else{const t=(e,t,n)=>{let i,r=b(e);for(const s of t){if(s._zod.when){if(!s._zod.when(e))continue}else if(r)continue;const t=e.issues.length,a=s._zod.check(e);if(a instanceof Promise&&!1===n?.async)throw new o;if(i||a instanceof Promise)i=(i??Promise.resolve()).then((async()=>{await a;e.issues.length!==t&&(r||(r=b(e,t)))}));else{if(e.issues.length===t)continue;r||(r=b(e,t))}}return i?i.then((()=>e)):e};e._zod.run=(n,r)=>{const s=e._zod.parse(n,r);if(s instanceof Promise){if(!1===r.async)throw new o;return s.then((e=>t(e,i,r)))}return t(s,i,r)}}e["~standard"]={validate:t=>{try{const n=S(e,t);return n.success?{value:n.data}:{issues:n.error?.issues}}catch(n){return R(e,t).then((e=>e.success?{value:e.data}:{issues:e.error?.issues}))}},vendor:"zod",version:1}})),xe=n("$ZodString",((e,t)=>{var n;Oe.init(e,t),e._zod.pattern=[...e?._zod.bag?.patterns??[]].pop()??(n=e._zod.bag,new RegExp(`^${n?`[\\s\\S]{${n?.minimum??0},${n?.maximum??""}}`:"[\\s\\S]*"}$`)),e._zod.parse=(n,o)=>{if(t.coerce)try{n.value=String(n.value)}catch(o){}return"string"==typeof n.value||n.issues.push({expected:"string",code:"invalid_type",input:n.value,inst:e}),n}})),Ne=n("$ZodStringFormat",((e,t)=>{ye.init(e,t),xe.init(e,t)})),Pe=n("$ZodGUID",((e,t)=>{t.pattern??(t.pattern=W),Ne.init(e,t)})),Ze=n("$ZodUUID",((e,t)=>{if(t.version){const e={v1:1,v2:2,v3:3,v4:4,v5:5,v6:6,v7:7,v8:8}[t.version];if(void 0===e)throw new Error(`Invalid UUID version: "${t.version}"`);t.pattern??(t.pattern=B(e))}else t.pattern??(t.pattern=B());Ne.init(e,t)})),Se=n("$ZodEmail",((e,t)=>{t.pattern??(t.pattern=G),Ne.init(e,t)})),De=n("$ZodURL",((e,t)=>{Ne.init(e,t),e._zod.check=n=>{try{const o=new URL(n.value);return t.hostname&&(t.hostname.lastIndex=0,t.hostname.test(o.hostname)||n.issues.push({code:"invalid_format",format:"url",note:"Invalid hostname",pattern:Q.source,input:n.value,inst:e})),void(t.protocol&&(t.protocol.lastIndex=0,t.protocol.test(o.protocol.endsWith(":")?o.protocol.slice(0,-1):o.protocol)||n.issues.push({code:"invalid_format",format:"url",note:"Invalid protocol",pattern:t.protocol.source,input:n.value,inst:e})))}catch(t){n.issues.push({code:"invalid_format",format:"url",input:n.value,inst:e})}}})),Re=n("$ZodEmoji",((e,t)=>{t.pattern??(t.pattern=new RegExp("^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$","u")),Ne.init(e,t)})),Ce=n("$ZodNanoID",((e,t)=>{t.pattern??(t.pattern=M),Ne.init(e,t)})),Ue=n("$ZodCUID",((e,t)=>{t.pattern??(t.pattern=C),Ne.init(e,t)})),Fe=n("$ZodCUID2",((e,t)=>{t.pattern??(t.pattern=U),Ne.init(e,t)})),Le=n("$ZodULID",((e,t)=>{t.pattern??(t.pattern=F),Ne.init(e,t)})),je=n("$ZodXID",((e,t)=>{t.pattern??(t.pattern=L),Ne.init(e,t)})),Me=n("$ZodKSUID",((e,t)=>{t.pattern??(t.pattern=j),Ne.init(e,t)})),Ve=n("$ZodISODateTime",((e,t)=>{t.pattern??(t.pattern=function(e){let t=`${te}T${oe(e)}`;const n=[];return n.push(e.local?"Z?":"Z"),e.offset&&n.push("([+-]\\d{2}:?\\d{2})"),t=`${t}(${n.join("|")})`,new RegExp(`^${t}$`)}(t)),Ne.init(e,t)})),We=n("$ZodISODate",((e,t)=>{t.pattern??(t.pattern=ne),Ne.init(e,t)})),Be=n("$ZodISOTime",((e,t)=>{t.pattern??(t.pattern=new RegExp(`^${oe(t)}$`)),Ne.init(e,t)})),Ge=n("$ZodISODuration",((e,t)=>{t.pattern??(t.pattern=V),Ne.init(e,t)})),He=n("$ZodIPv4",((e,t)=>{t.pattern??(t.pattern=H),Ne.init(e,t),e._zod.onattach.push((e=>{e._zod.bag.format="ipv4"}))})),qe=n("$ZodIPv6",((e,t)=>{t.pattern??(t.pattern=q),Ne.init(e,t),e._zod.onattach.push((e=>{e._zod.bag.format="ipv6"})),e._zod.check=t=>{try{new URL(`http://[${t.value}]`)}catch{t.issues.push({code:"invalid_format",format:"ipv6",input:t.value,inst:e})}}})),Ye=n("$ZodCIDRv4",((e,t)=>{t.pattern??(t.pattern=Y),Ne.init(e,t)})),Ke=n("$ZodCIDRv6",((e,t)=>{t.pattern??(t.pattern=K),Ne.init(e,t),e._zod.check=t=>{const[n,o]=t.value.split("/");try{if(!o)throw new Error;const e=Number(o);if(`${e}`!==o)throw new Error;if(e<0||e>128)throw new Error;new URL(`http://[${n}]`)}catch{t.issues.push({code:"invalid_format",format:"cidrv6",input:t.value,inst:e})}}}));function Je(e){if(""===e)return!0;if(e.length%4!=0)return!1;try{return atob(e),!0}catch{return!1}}const Xe=n("$ZodBase64",((e,t)=>{t.pattern??(t.pattern=J),Ne.init(e,t),e._zod.onattach.push((e=>{e._zod.bag.contentEncoding="base64"})),e._zod.check=t=>{Je(t.value)||t.issues.push({code:"invalid_format",format:"base64",input:t.value,inst:e})}}));const Qe=n("$ZodBase64URL",((e,t)=>{t.pattern??(t.pattern=X),Ne.init(e,t),e._zod.onattach.push((e=>{e._zod.bag.contentEncoding="base64url"})),e._zod.check=t=>{(function(e){if(!X.test(e))return!1;const t=e.replace(/[-_]/g,(e=>"-"===e?"+":"/"));return Je(t.padEnd(4*Math.ceil(t.length/4),"="))})(t.value)||t.issues.push({code:"invalid_format",format:"base64url",input:t.value,inst:e})}})),et=n("$ZodE164",((e,t)=>{t.pattern??(t.pattern=ee),Ne.init(e,t)}));const tt=n("$ZodJWT",((e,t)=>{Ne.init(e,t),e._zod.check=n=>{(function(e,t=null){try{const n=e.split(".");if(3!==n.length)return!1;const[o]=n,i=JSON.parse(atob(o));return!("typ"in i&&"JWT"!==i?.typ||!i.alg||t&&(!("alg"in i)||i.alg!==t))}catch{return!1}})(n.value,t.alg)||n.issues.push({code:"invalid_format",format:"jwt",input:n.value,inst:e})}})),nt=n("$ZodNumber",((e,t)=>{Oe.init(e,t),e._zod.pattern=e._zod.bag.pattern??se,e._zod.parse=(n,o)=>{if(t.coerce)try{n.value=Number(n.value)}catch(e){}const i=n.value;if("number"==typeof i&&!Number.isNaN(i)&&Number.isFinite(i))return n;const r="number"==typeof i?Number.isNaN(i)?"NaN":Number.isFinite(i)?void 0:"Infinity":void 0;return n.issues.push({expected:"number",code:"invalid_type",input:i,inst:e,...r?{received:r}:{}}),n}})),ot=n("$ZodNumber",((e,t)=>{me.init(e,t),nt.init(e,t)})),it=n("$ZodBoolean",((e,t)=>{Oe.init(e,t),e._zod.pattern=ae,e._zod.parse=(n,o)=>{if(t.coerce)try{n.value=Boolean(n.value)}catch(e){}const i=n.value;return"boolean"==typeof i||n.issues.push({expected:"boolean",code:"invalid_type",input:i,inst:e}),n}})),rt=n("$ZodBigInt",((e,t)=>{Oe.init(e,t),e._zod.pattern=ie,e._zod.parse=(n,o)=>{if(t.coerce)try{n.value=BigInt(n.value)}catch(e){}const{value:i}=n;return"bigint"==typeof i||n.issues.push({expected:"bigint",code:"invalid_type",input:i,inst:e}),n}})),st=n("$ZodAny",((e,t)=>{Oe.init(e,t),e._zod.parse=e=>e})),at=n("$ZodUnknown",((e,t)=>{Oe.init(e,t),e._zod.parse=e=>e})),ut=n("$ZodNever",((e,t)=>{Oe.init(e,t),e._zod.parse=(t,n)=>(t.issues.push({expected:"never",code:"invalid_type",input:t.value,inst:e}),t)}));function ct(e,t,n){e.issues.length&&t.issues.push(...k(n,e.issues)),t.value[n]=e.value}const dt=n("$ZodArray",((e,t)=>{Oe.init(e,t),e._zod.parse=(n,o)=>{const i=n.value;if(!Array.isArray(i))return n.issues.push({expected:"array",code:"invalid_type",input:i,inst:e}),n;n.value=Array(i.length);const r=[];for(let e=0;e<i.length;e++){const s=i[e],a=t.element._zod.run({value:s,issues:[]},o);a instanceof Promise?r.push(a.then((t=>ct(t,n,e)))):ct(a,n,e)}return r.length?Promise.all(r).then((()=>n)):n}}));function lt(e,t,n){e.issues.length&&t.issues.push(...k(n,e.issues)),t.value[n]=e.value}function pt(e,t,n,o){e.issues.length?void 0===o[n]?t.value[n]=n in o?void 0:e.value:t.issues.push(...k(n,e.issues)):void 0===e.value?n in o&&(t.value[n]=void 0):t.value[n]=e.value}const ft=n("$ZodObject",((e,t)=>{Oe.init(e,t);const n=a((()=>{const e=Object.keys(t.shape);for(const n of e)if(!(t.shape[n]instanceof Oe))throw new Error(`Invalid element at key "${n}": expected a Zod schema`);const n=(o=t.shape,Object.keys(o).filter((e=>"optional"===o[e]._zod.optin&&"optional"===o[e]._zod.optout)));var o;return{shape:t.shape,keys:e,keySet:new Set(e),numKeys:e.length,optionalKeys:new Set(n)}}));d(e._zod,"propValues",(()=>{const e=t.shape,n={};for(const t in e){const o=e[t]._zod;if(o.values){n[t]??(n[t]=new Set);for(const e of o.values)n[t].add(e)}}return n}));let o;const r=h,s=!i.jitless,u=s&&m.value,{catchall:c}=t;let l;e._zod.parse=(i,a)=>{l??(l=n.value);const d=i.value;if(!r(d))return i.issues.push({expected:"object",code:"invalid_type",input:d,inst:e}),i;const h=[];if(s&&u&&!1===a?.async&&!0!==a.jitless)o||(o=(e=>{const t=new $e(["shape","payload","ctx"]),{keys:o,optionalKeys:i}=n.value,r=e=>{const t=f(e);return`shape[${t}]._zod.run({ value: input[${t}], issues: [] }, ctx)`};t.write("const input = payload.value;");const s=Object.create(null);for(const e of o)s[e]=p(15);t.write("const newResult = {}");for(const e of o)if(i.has(e)){const n=s[e];t.write(`const ${n} = ${r(e)};`);const o=f(e);t.write(`\n if (${n}.issues.length) {\n if (input[${o}] === undefined) {\n if (${o} in input) {\n newResult[${o}] = undefined;\n }\n } else {\n payload.issues = payload.issues.concat(\n ${n}.issues.map((iss) => ({\n ...iss,\n path: iss.path ? [${o}, ...iss.path] : [${o}],\n }))\n );\n }\n } else if (${n}.value === undefined) {\n if (${o} in input) newResult[${o}] = undefined;\n } else {\n newResult[${o}] = ${n}.value;\n }\n `)}else{const n=s[e];t.write(`const ${n} = ${r(e)};`),t.write(`\n if (${n}.issues.length) payload.issues = payload.issues.concat(${n}.issues.map(iss => ({\n ...iss,\n path: iss.path ? [${f(e)}, ...iss.path] : [${f(e)}]\n })));`),t.write(`newResult[${f(e)}] = ${n}.value`)}t.write("payload.value = newResult;"),t.write("return payload;");const a=t.compile();return(t,n)=>a(e,t,n)})(t.shape)),i=o(i,a);else{i.value={};const e=l.shape;for(const t of l.keys){const n=e[t],o=n._zod.run({value:d[t],issues:[]},a),r="optional"===n._zod.optin&&"optional"===n._zod.optout;o instanceof Promise?h.push(o.then((e=>r?pt(e,i,t,d):lt(e,i,t)))):r?pt(o,i,t,d):lt(o,i,t)}}if(!c)return h.length?Promise.all(h).then((()=>i)):i;const m=[],_=l.keySet,v=c._zod,g=v.def.type;for(const e of Object.keys(d)){if(_.has(e))continue;if("never"===g){m.push(e);continue}const t=v.run({value:d[e],issues:[]},a);t instanceof Promise?h.push(t.then((t=>lt(t,i,e)))):lt(t,i,e)}return m.length&&i.issues.push({code:"unrecognized_keys",keys:m,input:d,inst:e}),h.length?Promise.all(h).then((()=>i)):i}}));function ht(e,t,n,o){for(const n of e)if(0===n.issues.length)return t.value=n.value,t;return t.issues.push({code:"invalid_union",input:t.value,inst:n,errors:e.map((e=>e.issues.map((e=>I(e,o,r())))))}),t}const mt=n("$ZodUnion",((e,t)=>{Oe.init(e,t),d(e._zod,"values",(()=>{if(t.options.every((e=>e._zod.values)))return new Set(t.options.flatMap((e=>Array.from(e._zod.values))))})),d(e._zod,"pattern",(()=>{if(t.options.every((e=>e._zod.pattern))){const e=t.options.map((e=>e._zod.pattern));return new RegExp(`^(${e.map((e=>c(e.source))).join("|")})$`)}})),e._zod.parse=(n,o)=>{let i=!1;const r=[];for(const e of t.options){const t=e._zod.run({value:n.value,issues:[]},o);if(t instanceof Promise)r.push(t),i=!0;else{if(0===t.issues.length)return t;r.push(t)}}return i?Promise.all(r).then((t=>ht(t,n,e,o))):ht(r,n,e,o)}})),_t=n("$ZodDiscriminatedUnion",((e,t)=>{mt.init(e,t);const n=e._zod.parse;d(e._zod,"propValues",(()=>{const e={};for(const n of t.options){const o=n._zod.propValues;if(!o||0===Object.keys(o).length)throw new Error(`Invalid discriminated union option at index "${t.options.indexOf(n)}"`);for(const[t,n]of Object.entries(o)){e[t]||(e[t]=new Set);for(const o of n)e[t].add(o)}}return e}));const o=a((()=>{const e=t.options,n=new Map;for(const o of e){const e=o._zod.propValues[t.discriminator];if(!e||0===e.size)throw new Error(`Invalid discriminated union option at index "${t.options.indexOf(o)}"`);for(const t of e){if(n.has(t))throw new Error(`Duplicate discriminator value "${String(t)}"`);n.set(t,o)}}return n}));e._zod.parse=(i,r)=>{const s=i.value;if(!h(s))return i.issues.push({code:"invalid_type",expected:"object",input:s,inst:e}),i;const a=o.value.get(s?.[t.discriminator]);return a?a._zod.run(i,r):t.unionFallback?n(i,r):(i.issues.push({code:"invalid_union",errors:[],note:"No matching discriminator",input:s,path:[t.discriminator],inst:e}),i)}})),vt=n("$ZodIntersection",((e,t)=>{Oe.init(e,t),e._zod.parse=(e,n)=>{const{value:o}=e,i=t.left._zod.run({value:o,issues:[]},n),r=t.right._zod.run({value:o,issues:[]},n);return i instanceof Promise||r instanceof Promise?Promise.all([i,r]).then((([t,n])=>yt(e,t,n))):yt(e,i,r)}}));function gt(e,t){if(e===t)return{valid:!0,data:e};if(e instanceof Date&&t instanceof Date&&+e==+t)return{valid:!0,data:e};if(_(e)&&_(t)){const n=Object.keys(t),o=Object.keys(e).filter((e=>-1!==n.indexOf(e))),i={...e,...t};for(const n of o){const o=gt(e[n],t[n]);if(!o.valid)return{valid:!1,mergeErrorPath:[n,...o.mergeErrorPath]};i[n]=o.data}return{valid:!0,data:i}}if(Array.isArray(e)&&Array.isArray(t)){if(e.length!==t.length)return{valid:!1,mergeErrorPath:[]};const n=[];for(let o=0;o<e.length;o++){const i=gt(e[o],t[o]);if(!i.valid)return{valid:!1,mergeErrorPath:[o,...i.mergeErrorPath]};n.push(i.data)}return{valid:!0,data:n}}return{valid:!1,mergeErrorPath:[]}}function yt(e,t,n){if(t.issues.length&&e.issues.push(...t.issues),n.issues.length&&e.issues.push(...n.issues),b(e))return e;const o=gt(t.value,n.value);if(!o.valid)throw new Error(`Unmergable intersection. Error path: ${JSON.stringify(o.mergeErrorPath)}`);return e.value=o.data,e}const wt=n("$ZodRecord",((e,t)=>{Oe.init(e,t),e._zod.parse=(n,o)=>{const i=n.value;if(!_(i))return n.issues.push({expected:"record",code:"invalid_type",input:i,inst:e}),n;const s=[];if(t.keyType._zod.values){const r=t.keyType._zod.values;n.value={};for(const e of r)if("string"==typeof e||"number"==typeof e||"symbol"==typeof e){const r=t.valueType._zod.run({value:i[e],issues:[]},o);r instanceof Promise?s.push(r.then((t=>{t.issues.length&&n.issues.push(...k(e,t.issues)),n.value[e]=t.value}))):(r.issues.length&&n.issues.push(...k(e,r.issues)),n.value[e]=r.value)}let a;for(const e in i)r.has(e)||(a=a??[],a.push(e));a&&a.length>0&&n.issues.push({code:"unrecognized_keys",input:i,inst:e,keys:a})}else{n.value={};for(const a of Reflect.ownKeys(i)){if("__proto__"===a)continue;const u=t.keyType._zod.run({value:a,issues:[]},o);if(u instanceof Promise)throw new Error("Async schemas not supported in object keys currently");if(u.issues.length){n.issues.push({origin:"record",code:"invalid_key",issues:u.issues.map((e=>I(e,o,r()))),input:a,path:[a],inst:e}),n.value[u.value]=u.value;continue}const c=t.valueType._zod.run({value:i[a],issues:[]},o);c instanceof Promise?s.push(c.then((e=>{e.issues.length&&n.issues.push(...k(a,e.issues)),n.value[u.value]=e.value}))):(c.issues.length&&n.issues.push(...k(a,c.issues)),n.value[u.value]=c.value)}}return s.length?Promise.all(s).then((()=>n)):n}})),zt=n("$ZodEnum",((e,t)=>{Oe.init(e,t);const n=function(e){const t=Object.values(e).filter((e=>"number"==typeof e));return Object.entries(e).filter((([e,n])=>-1===t.indexOf(+e))).map((([e,t])=>t))}(t.entries);e._zod.values=new Set(n),e._zod.pattern=new RegExp(`^(${n.filter((e=>v.has(typeof e))).map((e=>"string"==typeof e?g(e):e.toString())).join("|")})$`),e._zod.parse=(t,o)=>{const i=t.value;return e._zod.values.has(i)||t.issues.push({code:"invalid_value",values:n,input:i,inst:e}),t}})),bt=n("$ZodLiteral",((e,t)=>{Oe.init(e,t),e._zod.values=new Set(t.values),e._zod.pattern=new RegExp(`^(${t.values.map((e=>"string"==typeof e?g(e):e?e.toString():String(e))).join("|")})$`),e._zod.parse=(n,o)=>{const i=n.value;return e._zod.values.has(i)||n.issues.push({code:"invalid_value",values:t.values,input:i,inst:e}),n}})),kt=n("$ZodTransform",((e,t)=>{Oe.init(e,t),e._zod.parse=(e,n)=>{const i=t.transform(e.value,e);if(n.async){return(i instanceof Promise?i:Promise.resolve(i)).then((t=>(e.value=t,e)))}if(i instanceof Promise)throw new o;return e.value=i,e}})),Et=n("$ZodOptional",((e,t)=>{Oe.init(e,t),e._zod.optin="optional",e._zod.optout="optional",d(e._zod,"values",(()=>t.innerType._zod.values?new Set([...t.innerType._zod.values,void 0]):void 0)),d(e._zod,"pattern",(()=>{const e=t.innerType._zod.pattern;return e?new RegExp(`^(${c(e.source)})?$`):void 0})),e._zod.parse=(e,n)=>void 0===e.value?e:t.innerType._zod.run(e,n)})),It=n("$ZodNullable",((e,t)=>{Oe.init(e,t),d(e._zod,"optin",(()=>t.innerType._zod.optin)),d(e._zod,"optout",(()=>t.innerType._zod.optout)),d(e._zod,"pattern",(()=>{const e=t.innerType._zod.pattern;return e?new RegExp(`^(${c(e.source)}|null)$`):void 0})),d(e._zod,"values",(()=>t.innerType._zod.values?new Set([...t.innerType._zod.values,null]):void 0)),e._zod.parse=(e,n)=>null===e.value?e:t.innerType._zod.run(e,n)})),At=n("$ZodDefault",((e,t)=>{Oe.init(e,t),e._zod.optin="optional",d(e._zod,"values",(()=>t.innerType._zod.values)),e._zod.parse=(e,n)=>{if(void 0===e.value)return e.value=t.defaultValue,e;const o=t.innerType._zod.run(e,n);return o instanceof Promise?o.then((e=>$t(e,t))):$t(o,t)}}));function $t(e,t){return void 0===e.value&&(e.value=t.defaultValue),e}const Tt=n("$ZodPrefault",((e,t)=>{Oe.init(e,t),e._zod.optin="optional",d(e._zod,"values",(()=>t.innerType._zod.values)),e._zod.parse=(e,n)=>(void 0===e.value&&(e.value=t.defaultValue),t.innerType._zod.run(e,n))})),Ot=n("$ZodNonOptional",((e,t)=>{Oe.init(e,t),d(e._zod,"values",(()=>{const e=t.innerType._zod.values;return e?new Set([...e].filter((e=>void 0!==e))):void 0})),e._zod.parse=(n,o)=>{const i=t.innerType._zod.run(n,o);return i instanceof Promise?i.then((t=>xt(t,e))):xt(i,e)}}));function xt(e,t){return e.issues.length||void 0!==e.value||e.issues.push({code:"invalid_type",expected:"nonoptional",input:e.value,inst:t}),e}const Nt=n("$ZodCatch",((e,t)=>{Oe.init(e,t),d(e._zod,"optin",(()=>t.innerType._zod.optin)),d(e._zod,"optout",(()=>t.innerType._zod.optout)),d(e._zod,"values",(()=>t.innerType._zod.values)),e._zod.parse=(e,n)=>{const o=t.innerType._zod.run(e,n);return o instanceof Promise?o.then((o=>(e.value=o.value,o.issues.length&&(e.value=t.catchValue({...e,error:{issues:o.issues.map((e=>I(e,n,r())))},input:e.value}),e.issues=[]),e))):(e.value=o.value,o.issues.length&&(e.value=t.catchValue({...e,error:{issues:o.issues.map((e=>I(e,n,r())))},input:e.value}),e.issues=[]),e)}})),Pt=n("$ZodPipe",((e,t)=>{Oe.init(e,t),d(e._zod,"values",(()=>t.in._zod.values)),d(e._zod,"optin",(()=>t.in._zod.optin)),d(e._zod,"optout",(()=>t.out._zod.optout)),e._zod.parse=(e,n)=>{const o=t.in._zod.run(e,n);return o instanceof Promise?o.then((e=>Zt(e,t,n))):Zt(o,t,n)}}));function Zt(e,t,n){return b(e)?e:t.out._zod.run({value:e.value,issues:e.issues},n)}const St=n("$ZodReadonly",((e,t)=>{Oe.init(e,t),d(e._zod,"propValues",(()=>t.innerType._zod.propValues)),d(e._zod,"optin",(()=>t.innerType._zod.optin)),d(e._zod,"optout",(()=>t.innerType._zod.optout)),e._zod.parse=(e,n)=>{const o=t.innerType._zod.run(e,n);return o instanceof Promise?o.then(Dt):Dt(o)}}));function Dt(e){return e.value=Object.freeze(e.value),e}const Rt=n("$ZodCustom",((e,t)=>{de.init(e,t),Oe.init(e,t),e._zod.parse=(e,t)=>e,e._zod.check=n=>{const o=n.value,i=t.fn(o);if(i instanceof Promise)return i.then((t=>Ct(t,n,o,e)));Ct(i,n,o,e)}}));function Ct(e,t,n,o){if(!e){const e={code:"custom",input:n,inst:o,path:[...o._zod.def.path??[]],continue:!o._zod.def.abort};o._zod.def.params&&(e.params=o._zod.def.params),t.issues.push($(e))}}class Ut{constructor(){this._map=new WeakMap,this._idmap=new Map}add(e,...t){const n=t[0];if(this._map.set(e,n),n&&"object"==typeof n&&"id"in n){if(this._idmap.has(n.id))throw new Error(`ID ${n.id} already exists in the registry`);this._idmap.set(n.id,e)}return this}remove(e){return this._map.delete(e),this}get(e){const t=e._zod.parent;if(t){const n={...this.get(t)??{}};return delete n.id,{...n,...this._map.get(e)}}return this._map.get(e)}has(e){return this._map.has(e)}}function Ft(){return new Ut}const Lt=Ft();function jt(e,t){return new e({type:"string",format:"guid",check:"string_format",abort:!1,...w(t)})}function Mt(e,t){return new e({type:"string",format:"url",check:"string_format",abort:!1,...w(t)})}function Vt(e,t){return new e({type:"string",format:"ipv4",check:"string_format",abort:!1,...w(t)})}function Wt(e,t){return new e({type:"string",format:"ipv6",check:"string_format",abort:!1,...w(t)})}function Bt(e,t){return new pe({check:"less_than",...w(t),value:e,inclusive:!1})}function Gt(e,t){return new pe({check:"less_than",...w(t),value:e,inclusive:!0})}function Ht(e,t){return new fe({check:"greater_than",...w(t),value:e,inclusive:!1})}function qt(e,t){return new fe({check:"greater_than",...w(t),value:e,inclusive:!0})}function Yt(e,t){return new he({check:"multiple_of",...w(t),value:e})}function Kt(e,t){return new _e({check:"max_length",...w(t),maximum:e})}function Jt(e,t){return new ve({check:"min_length",...w(t),minimum:e})}function Xt(e,t){return new ge({check:"length_equals",...w(t),length:e})}function Qt(e){return new Ae({check:"overwrite",tx:e})}const en=n("ZodISODateTime",((e,t)=>{Ve.init(e,t),wn.init(e,t)}));function tn(e){return function(e,t){return new e({type:"string",format:"datetime",check:"string_format",offset:!1,local:!1,precision:null,...w(t)})}(en,e)}const nn=n("ZodISODate",((e,t)=>{We.init(e,t),wn.init(e,t)}));function on(e){return function(e,t){return new e({type:"string",format:"date",check:"string_format",...w(t)})}(nn,e)}const rn=n("ZodISOTime",((e,t)=>{Be.init(e,t),wn.init(e,t)}));function sn(e){return function(e,t){return new e({type:"string",format:"time",check:"string_format",precision:null,...w(t)})}(rn,e)}const an=n("ZodISODuration",((e,t)=>{Ge.init(e,t),wn.init(e,t)}));function un(e){return function(e,t){return new e({type:"string",format:"duration",check:"string_format",...w(t)})}(an,e)}const cn=(e,t)=>{O.init(e,t),e.name="ZodError",Object.defineProperties(e,{format:{value:t=>function(e,t){const n=t||function(e){return e.message},o={_errors:[]},i=e=>{for(const t of e.issues)if("invalid_union"===t.code&&t.errors.length)t.errors.map((e=>i({issues:e})));else if("invalid_key"===t.code)i({issues:t.issues});else if("invalid_element"===t.code)i({issues:t.issues});else if(0===t.path.length)o._errors.push(n(t));else{let e=o,i=0;for(;i<t.path.length;){const o=t.path[i];i===t.path.length-1?(e[o]=e[o]||{_errors:[]},e[o]._errors.push(n(t))):e[o]=e[o]||{_errors:[]},e=e[o],i++}}};return i(e),o}(e,t)},flatten:{value:t=>function(e,t=e=>e.message){const n={},o=[];for(const i of e.issues)i.path.length>0?(n[i.path[0]]=n[i.path[0]]||[],n[i.path[0]].push(t(i))):o.push(t(i));return{formErrors:o,fieldErrors:n}}(e,t)},addIssue:{value:t=>e.issues.push(t)},addIssues:{value:t=>e.issues.push(...t)},isEmpty:{get:()=>0===e.issues.length}})},dn=n("ZodError",cn),ln=n("ZodError",cn,{Parent:Error}),pn=N(ln),fn=P(ln),hn=Z(ln),mn=D(ln),_n=n("ZodType",((e,t)=>(Oe.init(e,t),e.def=t,Object.defineProperty(e,"_def",{value:t}),e.check=(...n)=>e.clone({...t,checks:[...t.checks??[],...n.map((e=>"function"==typeof e?{_zod:{check:e,def:{check:"custom"},onattach:[]}}:e))]}),e.clone=(t,n)=>y(e,t,n),e.brand=()=>e,e.register=(t,n)=>(t.add(e,n),e),e.parse=(t,n)=>pn(e,t,n,{callee:e.parse}),e.safeParse=(t,n)=>hn(e,t,n),e.parseAsync=async(t,n)=>fn(e,t,n,{callee:e.parseAsync}),e.safeParseAsync=async(t,n)=>mn(e,t,n),e.spa=e.safeParseAsync,e.refine=(t,n)=>e.check(function(e,t={}){return function(e,t,n){return new e({type:"custom",check:"custom",fn:t,...w(n)})}(xo,e,t)}(t,n)),e.superRefine=t=>e.check(function(e,t){const n=function(e,t){const n=new de({check:"custom",...w(t)});return n._zod.check=e,n}((t=>(t.addIssue=e=>{if("string"==typeof e)t.issues.push($(e,t.value,n._zod.def));else{const o=e;o.fatal&&(o.continue=!1),o.code??(o.code="custom"),o.input??(o.input=t.value),o.inst??(o.inst=n),o.continue??(o.continue=!n._zod.def.abort),t.issues.push($(o))}},e(t.value,t))),t);return n}(t)),e.overwrite=t=>e.check(Qt(t)),e.optional=()=>wo(e),e.nullable=()=>bo(e),e.nullish=()=>wo(bo(e)),e.nonoptional=t=>function(e,t){return new Io({type:"nonoptional",innerType:e,...w(t)})}(e,t),e.array=()=>no(e),e.or=t=>so([e,t]),e.and=t=>new co({type:"intersection",left:e,right:t}),e.transform=t=>To(e,go(t)),e.default=t=>{return n=t,new ko({type:"default",innerType:e,get defaultValue(){return"function"==typeof n?n():n}});var n},e.prefault=t=>{return n=t,new Eo({type:"prefault",innerType:e,get defaultValue(){return"function"==typeof n?n():n}});var n},e.catch=t=>{return new Ao({type:"catch",innerType:e,catchValue:"function"==typeof(n=t)?n:()=>n});var n},e.pipe=t=>To(e,t),e.readonly=()=>new Oo({type:"readonly",innerType:e}),e.describe=t=>{const n=e.clone();return Lt.add(n,{description:t}),n},Object.defineProperty(e,"description",{get:()=>Lt.get(e)?.description,configurable:!0}),e.meta=(...t)=>{if(0===t.length)return Lt.get(e);const n=e.clone();return Lt.add(n,t[0]),n},e.isOptional=()=>e.safeParse(void 0).success,e.isNullable=()=>e.safeParse(null).success,e))),vn=n("_ZodString",((e,t)=>{xe.init(e,t),_n.init(e,t);const n=e._zod.bag;e.format=n.format??null,e.minLength=n.minimum??null,e.maxLength=n.maximum??null,e.regex=(...t)=>e.check(function(e,t){return new we({check:"string_format",format:"regex",...w(t),pattern:e})}(...t)),e.includes=(...t)=>e.check(function(e,t){return new ke({check:"string_format",format:"includes",...w(t),includes:e})}(...t)),e.startsWith=(...t)=>e.check(function(e,t){return new Ee({check:"string_format",format:"starts_with",...w(t),prefix:e})}(...t)),e.endsWith=(...t)=>e.check(function(e,t){return new Ie({check:"string_format",format:"ends_with",...w(t),suffix:e})}(...t)),e.min=(...t)=>e.check(Jt(...t)),e.max=(...t)=>e.check(Kt(...t)),e.length=(...t)=>e.check(Xt(...t)),e.nonempty=(...t)=>e.check(Jt(1,...t)),e.lowercase=t=>e.check(function(e){return new ze({check:"string_format",format:"lowercase",...w(e)})}(t)),e.uppercase=t=>e.check(function(e){return new be({check:"string_format",format:"uppercase",...w(e)})}(t)),e.trim=()=>e.check(Qt((e=>e.trim()))),e.normalize=(...t)=>e.check(function(e){return Qt((t=>t.normalize(e)))}(...t)),e.toLowerCase=()=>e.check(Qt((e=>e.toLowerCase()))),e.toUpperCase=()=>e.check(Qt((e=>e.toUpperCase())))})),gn=n("ZodString",((e,t)=>{xe.init(e,t),vn.init(e,t),e.email=t=>e.check(function(e,t){return new e({type:"string",format:"email",check:"string_format",abort:!1,...w(t)})}(zn,t)),e.url=t=>e.check(Mt(En,t)),e.jwt=t=>e.check(function(e,t){return new e({type:"string",format:"jwt",check:"string_format",abort:!1,...w(t)})}(Ln,t)),e.emoji=t=>e.check(function(e,t){return new e({type:"string",format:"emoji",check:"string_format",abort:!1,...w(t)})}(An,t)),e.guid=t=>e.check(jt(bn,t)),e.uuid=t=>e.check(function(e,t){return new e({type:"string",format:"uuid",check:"string_format",abort:!1,...w(t)})}(kn,t)),e.uuidv4=t=>e.check(function(e,t){return new e({type:"string",format:"uuid",check:"string_format",abort:!1,version:"v4",...w(t)})}(kn,t)),e.uuidv6=t=>e.check(function(e,t){return new e({type:"string",format:"uuid",check:"string_format",abort:!1,version:"v6",...w(t)})}(kn,t)),e.uuidv7=t=>e.check(function(e,t){return new e({type:"string",format:"uuid",check:"string_format",abort:!1,version:"v7",...w(t)})}(kn,t)),e.nanoid=t=>e.check(function(e,t){return new e({type:"string",format:"nanoid",check:"string_format",abort:!1,...w(t)})}($n,t)),e.guid=t=>e.check(jt(bn,t)),e.cuid=t=>e.check(function(e,t){return new e({type:"string",format:"cuid",check:"string_format",abort:!1,...w(t)})}(Tn,t)),e.cuid2=t=>e.check(function(e,t){return new e({type:"string",format:"cuid2",check:"string_format",abort:!1,...w(t)})}(On,t)),e.ulid=t=>e.check(function(e,t){return new e({type:"string",format:"ulid",check:"string_format",abort:!1,...w(t)})}(xn,t)),e.base64=t=>e.check(function(e,t){return new e({type:"string",format:"base64",check:"string_format",abort:!1,...w(t)})}(Cn,t)),e.base64url=t=>e.check(function(e,t){return new e({type:"string",format:"base64url",check:"string_format",abort:!1,...w(t)})}(Un,t)),e.xid=t=>e.check(function(e,t){return new e({type:"string",format:"xid",check:"string_format",abort:!1,...w(t)})}(Nn,t)),e.ksuid=t=>e.check(function(e,t){return new e({type:"string",format:"ksuid",check:"string_format",abort:!1,...w(t)})}(Pn,t)),e.ipv4=t=>e.check(Vt(Zn,t)),e.ipv6=t=>e.check(Wt(Sn,t)),e.cidrv4=t=>e.check(function(e,t){return new e({type:"string",format:"cidrv4",check:"string_format",abort:!1,...w(t)})}(Dn,t)),e.cidrv6=t=>e.check(function(e,t){return new e({type:"string",format:"cidrv6",check:"string_format",abort:!1,...w(t)})}(Rn,t)),e.e164=t=>e.check(function(e,t){return new e({type:"string",format:"e164",check:"string_format",abort:!1,...w(t)})}(Fn,t)),e.datetime=t=>e.check(tn(t)),e.date=t=>e.check(on(t)),e.time=t=>e.check(sn(t)),e.duration=t=>e.check(un(t))}));function yn(e){return function(e,t){return new e({type:"string",...w(t)})}(gn,e)}const wn=n("ZodStringFormat",((e,t)=>{Ne.init(e,t),vn.init(e,t)})),zn=n("ZodEmail",((e,t)=>{Se.init(e,t),wn.init(e,t)})),bn=n("ZodGUID",((e,t)=>{Pe.init(e,t),wn.init(e,t)})),kn=n("ZodUUID",((e,t)=>{Ze.init(e,t),wn.init(e,t)})),En=n("ZodURL",((e,t)=>{De.init(e,t),wn.init(e,t)}));function In(e){return Mt(En,e)}const An=n("ZodEmoji",((e,t)=>{Re.init(e,t),wn.init(e,t)})),$n=n("ZodNanoID",((e,t)=>{Ce.init(e,t),wn.init(e,t)})),Tn=n("ZodCUID",((e,t)=>{Ue.init(e,t),wn.init(e,t)})),On=n("ZodCUID2",((e,t)=>{Fe.init(e,t),wn.init(e,t)})),xn=n("ZodULID",((e,t)=>{Le.init(e,t),wn.init(e,t)})),Nn=n("ZodXID",((e,t)=>{je.init(e,t),wn.init(e,t)})),Pn=n("ZodKSUID",((e,t)=>{Me.init(e,t),wn.init(e,t)})),Zn=n("ZodIPv4",((e,t)=>{He.init(e,t),wn.init(e,t)}));const Sn=n("ZodIPv6",((e,t)=>{qe.init(e,t),wn.init(e,t)}));const Dn=n("ZodCIDRv4",((e,t)=>{Ye.init(e,t),wn.init(e,t)})),Rn=n("ZodCIDRv6",((e,t)=>{Ke.init(e,t),wn.init(e,t)})),Cn=n("ZodBase64",((e,t)=>{Xe.init(e,t),wn.init(e,t)})),Un=n("ZodBase64URL",((e,t)=>{Qe.init(e,t),wn.init(e,t)})),Fn=n("ZodE164",((e,t)=>{et.init(e,t),wn.init(e,t)})),Ln=n("ZodJWT",((e,t)=>{tt.init(e,t),wn.init(e,t)})),jn=n("ZodNumber",((e,t)=>{nt.init(e,t),_n.init(e,t),e.gt=(t,n)=>e.check(Ht(t,n)),e.gte=(t,n)=>e.check(qt(t,n)),e.min=(t,n)=>e.check(qt(t,n)),e.lt=(t,n)=>e.check(Bt(t,n)),e.lte=(t,n)=>e.check(Gt(t,n)),e.max=(t,n)=>e.check(Gt(t,n)),e.int=t=>e.check(Wn(t)),e.safe=t=>e.check(Wn(t)),e.positive=t=>e.check(Ht(0,t)),e.nonnegative=t=>e.check(qt(0,t)),e.negative=t=>e.check(Bt(0,t)),e.nonpositive=t=>e.check(Gt(0,t)),e.multipleOf=(t,n)=>e.check(Yt(t,n)),e.step=(t,n)=>e.check(Yt(t,n)),e.finite=()=>e;const n=e._zod.bag;e.minValue=Math.max(n.minimum??Number.NEGATIVE_INFINITY,n.exclusiveMinimum??Number.NEGATIVE_INFINITY)??null,e.maxValue=Math.min(n.maximum??Number.POSITIVE_INFINITY,n.exclusiveMaximum??Number.POSITIVE_INFINITY)??null,e.isInt=(n.format??"").includes("int")||Number.isSafeInteger(n.multipleOf??.5),e.isFinite=!0,e.format=n.format??null}));function Mn(e){return function(e,t){return new e({type:"number",checks:[],...w(t)})}(jn,e)}const Vn=n("ZodNumberFormat",((e,t)=>{ot.init(e,t),jn.init(e,t)}));function Wn(e){return function(e,t){return new e({type:"number",check:"number_format",abort:!1,format:"safeint",...w(t)})}(Vn,e)}const Bn=n("ZodBoolean",((e,t)=>{it.init(e,t),_n.init(e,t)}));function Gn(e){return function(e,t){return new e({type:"boolean",...w(t)})}(Bn,e)}const Hn=n("ZodBigInt",((e,t)=>{rt.init(e,t),_n.init(e,t),e.gte=(t,n)=>e.check(qt(t,n)),e.min=(t,n)=>e.check(qt(t,n)),e.gt=(t,n)=>e.check(Ht(t,n)),e.gte=(t,n)=>e.check(qt(t,n)),e.min=(t,n)=>e.check(qt(t,n)),e.lt=(t,n)=>e.check(Bt(t,n)),e.lte=(t,n)=>e.check(Gt(t,n)),e.max=(t,n)=>e.check(Gt(t,n)),e.positive=t=>e.check(Ht(BigInt(0),t)),e.negative=t=>e.check(Bt(BigInt(0),t)),e.nonpositive=t=>e.check(Gt(BigInt(0),t)),e.nonnegative=t=>e.check(qt(BigInt(0),t)),e.multipleOf=(t,n)=>e.check(Yt(t,n));const n=e._zod.bag;e.minValue=n.minimum??null,e.maxValue=n.maximum??null,e.format=n.format??null}));function qn(e){return function(e,t){return new e({type:"bigint",...w(t)})}(Hn,e)}const Yn=n("ZodAny",((e,t)=>{st.init(e,t),_n.init(e,t)}));function Kn(){return new Yn({type:"any"})}const Jn=n("ZodUnknown",((e,t)=>{at.init(e,t),_n.init(e,t)}));function Xn(){return new Jn({type:"unknown"})}const Qn=n("ZodNever",((e,t)=>{ut.init(e,t),_n.init(e,t)}));function eo(e){return function(e,t){return new e({type:"never",...w(t)})}(Qn,e)}const to=n("ZodArray",((e,t)=>{dt.init(e,t),_n.init(e,t),e.element=t.element,e.min=(t,n)=>e.check(Jt(t,n)),e.nonempty=t=>e.check(Jt(1,t)),e.max=(t,n)=>e.check(Kt(t,n)),e.length=(t,n)=>e.check(Xt(t,n)),e.unwrap=()=>e.element}));function no(e,t){return function(e,t,n){return new e({type:"array",element:t,...w(n)})}(to,e,t)}const oo=n("ZodObject",((e,t)=>{ft.init(e,t),_n.init(e,t),d(e,"shape",(()=>Object.fromEntries(Object.entries(e._zod.def.shape)))),e.keyof=()=>ho(Object.keys(e._zod.def.shape)),e.catchall=t=>e.clone({...e._zod.def,catchall:t}),e.passthrough=()=>e.clone({...e._zod.def,catchall:Xn()}),e.loose=()=>e.clone({...e._zod.def,catchall:Xn()}),e.strict=()=>e.clone({...e._zod.def,catchall:eo()}),e.strip=()=>e.clone({...e._zod.def,catchall:void 0}),e.extend=t=>function(e,t){const n={...e._zod.def,get shape(){const n={...e._zod.def.shape,...t};return l(this,"shape",n),n},checks:[]};return y(e,n)}(e,t),e.merge=t=>{return o=t,y(n=e,{...n._zod.def,get shape(){const e={...n._zod.def.shape,...o._zod.def.shape};return l(this,"shape",e),e},catchall:o._zod.def.catchall,checks:[]});var n,o},e.pick=t=>function(e,t){const n={},o=e._zod.def;for(const e in t){if(!(e in o.shape))throw new Error(`Unrecognized key: "${e}"`);t[e]&&(n[e]=o.shape[e])}return y(e,{...e._zod.def,shape:n,checks:[]})}(e,t),e.omit=t=>function(e,t){const n={...e._zod.def.shape},o=e._zod.def;for(const e in t){if(!(e in o.shape))throw new Error(`Unrecognized key: "${e}"`);t[e]&&delete n[e]}return y(e,{...e._zod.def,shape:n,checks:[]})}(e,t),e.partial=(...t)=>function(e,t,n){const o=t._zod.def.shape,i={...o};if(n)for(const t in n){if(!(t in o))throw new Error(`Unrecognized key: "${t}"`);n[t]&&(i[t]=e?new e({type:"optional",innerType:o[t]}):o[t])}else for(const t in o)i[t]=e?new e({type:"optional",innerType:o[t]}):o[t];return y(t,{...t._zod.def,shape:i,checks:[]})}(yo,e,t[0]),e.required=(...t)=>function(e,t,n){const o=t._zod.def.shape,i={...o};if(n)for(const t in n){if(!(t in i))throw new Error(`Unrecognized key: "${t}"`);n[t]&&(i[t]=new e({type:"nonoptional",innerType:o[t]}))}else for(const t in o)i[t]=new e({type:"nonoptional",innerType:o[t]});return y(t,{...t._zod.def,shape:i,checks:[]})}(Io,e,t[0])}));function io(e,t){const n={type:"object",get shape(){return l(this,"shape",{...e}),this.shape},...w(t)};return new oo(n)}const ro=n("ZodUnion",((e,t)=>{mt.init(e,t),_n.init(e,t),e.options=t.options}));function so(e,t){return new ro({type:"union",options:e,...w(t)})}const ao=n("ZodDiscriminatedUnion",((e,t)=>{ro.init(e,t),_t.init(e,t)}));function uo(e,t,n){return new ao({type:"union",options:t,discriminator:e,...w(n)})}const co=n("ZodIntersection",((e,t)=>{vt.init(e,t),_n.init(e,t)}));const lo=n("ZodRecord",((e,t)=>{wt.init(e,t),_n.init(e,t),e.keyType=t.keyType,e.valueType=t.valueType}));function po(e,t,n){return new lo({type:"record",keyType:e,valueType:t,...w(n)})}const fo=n("ZodEnum",((e,t)=>{zt.init(e,t),_n.init(e,t),e.enum=t.entries,e.options=Object.values(t.entries);const n=new Set(Object.keys(t.entries));e.extract=(e,o)=>{const i={};for(const o of e){if(!n.has(o))throw new Error(`Key ${o} not found in enum`);i[o]=t.entries[o]}return new fo({...t,checks:[],...w(o),entries:i})},e.exclude=(e,o)=>{const i={...t.entries};for(const t of e){if(!n.has(t))throw new Error(`Key ${t} not found in enum`);delete i[t]}return new fo({...t,checks:[],...w(o),entries:i})}}));function ho(e,t){const n=Array.isArray(e)?Object.fromEntries(e.map((e=>[e,e]))):e;return new fo({type:"enum",entries:n,...w(t)})}const mo=n("ZodLiteral",((e,t)=>{bt.init(e,t),_n.init(e,t),e.values=new Set(t.values),Object.defineProperty(e,"value",{get(){if(t.values.length>1)throw new Error("This schema contains multiple valid literal values. Use `.values` instead.");return t.values[0]}})}));function _o(e,t){return new mo({type:"literal",values:Array.isArray(e)?e:[e],...w(t)})}const vo=n("ZodTransform",((e,t)=>{kt.init(e,t),_n.init(e,t),e._zod.parse=(n,o)=>{n.addIssue=o=>{if("string"==typeof o)n.issues.push($(o,n.value,t));else{const t=o;t.fatal&&(t.continue=!1),t.code??(t.code="custom"),t.input??(t.input=n.value),t.inst??(t.inst=e),t.continue??(t.continue=!0),n.issues.push($(t))}};const i=t.transform(n.value,n);return i instanceof Promise?i.then((e=>(n.value=e,n))):(n.value=i,n)}}));function go(e){return new vo({type:"transform",transform:e})}const yo=n("ZodOptional",((e,t)=>{Et.init(e,t),_n.init(e,t),e.unwrap=()=>e._zod.def.innerType}));function wo(e){return new yo({type:"optional",innerType:e})}const zo=n("ZodNullable",((e,t)=>{It.init(e,t),_n.init(e,t),e.unwrap=()=>e._zod.def.innerType}));function bo(e){return new zo({type:"nullable",innerType:e})}const ko=n("ZodDefault",((e,t)=>{At.init(e,t),_n.init(e,t),e.unwrap=()=>e._zod.def.innerType,e.removeDefault=e.unwrap}));const Eo=n("ZodPrefault",((e,t)=>{Tt.init(e,t),_n.init(e,t),e.unwrap=()=>e._zod.def.innerType}));const Io=n("ZodNonOptional",((e,t)=>{Ot.init(e,t),_n.init(e,t),e.unwrap=()=>e._zod.def.innerType}));const Ao=n("ZodCatch",((e,t)=>{Nt.init(e,t),_n.init(e,t),e.unwrap=()=>e._zod.def.innerType,e.removeCatch=e.unwrap}));const $o=n("ZodPipe",((e,t)=>{Pt.init(e,t),_n.init(e,t),e.in=t.in,e.out=t.out}));function To(e,t){return new $o({type:"pipe",in:e,out:t})}const Oo=n("ZodReadonly",((e,t)=>{St.init(e,t),_n.init(e,t)}));const xo=n("ZodCustom",((e,t)=>{Rt.init(e,t),_n.init(e,t)}));const No=yn().refine((e=>/^(0|[1-9]\d*)(\.\d+)?$/.test(e)),{message:"Invalid amount"}),Po=/^(0x|0x[a-fA-F0-9]{40})$/,Zo=yn().refine((e=>Po.test(e)),{message:"Invalid EVM token address"}),So=Zo.refine((e=>"0x"!==e),{message:"Invalid EVM address"}),Do=/^[1-9A-HJ-NP-Za-km-z]{32,44}$/,Ro=/^So[1-2]{41}$/,Co=yn().refine((e=>Do.test(e)||Ro.test(e)),{message:"Invalid Solana token address"}),Uo=so([So,yn().refine((e=>Do.test(e)),{message:"Invalid Solana address"})]),Fo=yn().refine((e=>/^[a-zA-Z_]{3,}$/.test(e)),{message:"Invalid fiat"}),Lo=io({issuer:yn(),name:yn(),alias:yn().optional(),symbol:yn(),decimals:Mn()}),jo=yn(),Mo=yn().regex(/^[a-zA-Z]\w{1,7}$/,{message:"Must be a short alpha-numeric symbol"}),Vo=Mn().min(0).max(18),Wo=yn().url(),Bo=yn(),Go=io({chain:yn(),address:Zo}),Ho=io({chain:_o("solana"),address:Co}),qo=io({chain:yn(),address:yn()}),Yo=so([Go,Ho,qo]),Ko=yn().refine((e=>{const[t,n]=e.split(":");return Yo.safeParse({chain:t,address:n}).success}),{message:"Invalid token"}),Jo=io({name:jo,symbol:Mo,decimals:Vo,alias:Mo.optional(),image_url:Wo.optional(),coingecko_id:Bo.optional(),wrapper:Mo.optional(),is_native:Gn().optional()}),Xo=so([Go.extend(Jo.shape),Ho.extend(Jo.shape),qo.extend(Jo.shape)]),Qo=so([Ko,Fo]);so([Xo,Lo]),uo("type",[io({type:_o("chain"),chain:yn()}),io({type:_o("issuer"),issuer:yn()})]);const ei=yn().transform((e=>e.toLowerCase()));var ti,ni;ti=e=>"string"==typeof e?e.toUpperCase():e,ni=ho(["ONRAMP","OFFRAMP"]),To(go(ti),ni),io({to:So,from:So.optional(),nonce:Mn().optional(),gasLimit:qn().optional(),gasPrice:qn().optional(),maxPriorityFeePerGas:qn().optional(),maxFeePerGas:qn().optional(),data:yn().optional(),value:qn().optional(),chainId:Mn()}),io({transactionHash:yn().optional(),blockHash:yn().optional(),blockNumber:Mn().optional(),from:So.optional(),to:So.optional(),rawReceipt:Kn()});so([io({chain_id:qn(),network:yn(),native_currency:io({name:yn(),symbol:yn(),decimals:Mn()}),rpc:yn(),image:yn(),is_testnet:Gn(),explorer:yn()}),io({chain_id:qn(),network:yn()})]);const oi=ho(["CREDIT_CARD","DEBIT_CARD","ACH","FIAT_BALANCE","TOKEN_BALANCE","APPLE_PAY","PAYPAL","VENMO","REVOLUT","GOOGLE_PAY","SEPA","FASTER_PAYMENTS","PIX","UPI","WIRE"]),ii=yn().refine((e=>t.test(e)),{message:"Invalid payment ID"}),ri=io({onramps:no(ei).optional(),offramps:no(ei).optional(),sandbox:Gn().optional().default(!1)}),si=ri.extend({inputs:no(Qo).optional(),outputs:no(Qo)});so([si,ri.extend({inputs:no(Qo),outputs:no(Qo).optional()})]);const ai=io({asset:Qo,amount:No}),ui=io({token:Ko,amount:No}),ci=yn(),di=so([Vt(Zn,li),function(e){return Wt(Sn,e)}()]);var li;const pi=ho(["BETA_EDGES","ORG_BETA_EDGES","ORG_EDGES"]),fi=io({price_currency:Fo,onramps:no(ei).optional(),onramp_methods:no(oi).optional(),customer_ip_address:yn().optional(),customer_id:yn().optional(),parent_payment_id:ii.optional(),features:no(pi).optional()}),hi=uo("kind",[io({kind:_o("FIXED_INPUT"),fixed_input_amount:ai,output_asset:Qo})]),mi=fi.extend({request:hi}),_i=ho(["USER","DEST","HALLIDAY","SPW","REV_SHARE","BRIDGE"]),vi=io({asset:Qo,property:ho(["APPROVAL","BALANCE"])}),gi=io({account:_i,resource:vi}),yi=so([_o("COMPLETE"),_o("UNREACHABLE"),_o("FAILED")]),wi=so([yi,_o("PENDING")]),zi=ho(["PENDING","COMPLETE","FAILED","EXPIRED","WITHDRAWN","TAINTED"]),bi=io({consume:no(gi),produce:no(gi)}),ki=gi.extend({amount:No}),Ei=bi.extend({consume:no(ki),produce:no(ki)}),Ii=po(Qo,yn()),Ai=uo("kind",[io({kind:so([_o("amount"),_o("amount-downstream")]),given:yn(),limits:io({min:yn().optional(),max:yn().optional()}),source:yn(),message:yn()}),io({kind:_o("geolocation"),message:yn()}),io({kind:_o("provider"),message:yn()}),io({kind:_o("other"),message:yn()}),io({kind:_o("unknown"),message:yn()})]),$i=io({service_ids:no(yn()),latency_seconds:Mn(),issues:no(Ai).optional()}),Ti=io({type:so([_o("USER_FUND"),_o("ONCHAIN_STEP"),_o("ONRAMP")]),net_effect:Ei,pieces_info:no(io({type:so([_o("onramp"),_o("poll"),_o("bridge"),_o("rev_share"),_o("transfer_out"),_o("convert")])})),step_index:Mn().optional()}),Oi=io({payment_id:yn(),output_amount:io({asset:Qo,amount:yn()}),onramp:ei.optional(),onramp_method:oi.optional(),fees:io({total_fees:yn(),conversion_fees:yn(),network_fees:yn(),business_fees:yn(),currency_symbol:Fo}),route:no(Ti)}),xi=Ti.extend({status:wi,transaction_hash:yn().optional()}),Ni=Oi.omit({payment_id:!0}).partial({output_amount:!0,onramp:!0,onramp_method:!0,fees:!0}).extend({route:no(xi)});io({quote_request:mi,quotes:no(Oi),current_prices:Ii,price_currency:Fo,state_token:yn(),quoted_at:yn(),accept_by:yn(),failures:no($i)}),io({payment_id:ii,state_token:yn(),owner_address:Uo,destination_address:Uo,client_redirect_url:yn().optional()});const Pi=io({deposit_token:Ko,deposit_chain:yn(),deposit_amount:No,deposit_address:Uo}),Zi=io({type:ho(["ONRAMP","TRANSFER_IN"]),payment_id:ii,funding_page_url:In(),deposit_info:no(Pi)}),Si=io({payment_id:ii,status:zi,funded:Gn(),created_at:yn(),updated_at:yn(),initiate_fund_by:yn(),completed_at:yn().optional(),quote_request:mi,quoted:Oi.omit({payment_id:!0}),fulfilled:Ni,current_prices:Ii,price_currency:Fo,customer_id:yn().optional(),processing_addresses:no(io({address:Uo,chain:yn()})),owner_address:Uo,destination_address:Uo,next_instruction:Zi.optional(),parent_payment_id:ii.optional()});io({payment_id:ii,redirect_url:yn().optional()}),io({funding_page_onramp_url:yn(),client_redirect_url:yn().optional(),client_secret:yn().optional()}),io({id_query:yn().optional(),pagination_key:yn().optional(),dest_address:Uo.optional(),owner_address:Uo.optional(),limit:Mn().int().positive().optional(),category:ho(["ALL","NEW_OR_FUNDED"]).optional()}),io({payment_statuses:no(Si),next_pagination_key:yn().nullable()}),io({payment_id:ii.optional(),custom_queries:no(io({address:Uo,token:so([Ko,Yo])})).optional()}).refine((e=>!(!e.payment_id&&!e.custom_queries?.length)),{message:"payment_id or custom_queries is required"}),io({balance_results:no(io({address:Uo,token:Ko,value:uo("kind",[io({kind:_o("amount"),amount:No}),io({kind:_o("error")})])}))}),io({fiat:Fo,tokens:no(Ko)});const Di=yn(),Ri=io({payment_id:ii,token_amounts:no(ui),recipient_address:Uo});io({payment_id:ii,withdraw_authorization:Di}),Ri.extend({owner_signature:ci}),io({payment_id:ii,transaction_hash:yn()});const Ci=ho(["EMBED","POPUP","MODAL"]),Ui=ho(["DEFAULT","ALL_UPPERCASE"]),Fi=ho(["ATTACHED","BUTTON"]),Li=ho(["SQUARE","DEFAULT"]),ji=yn().refine((e=>/^(#[0-9A-Fa-f]{3,8}|rgb\(\d{1,3},\s*\d{1,3},\s*\d{1,3}\)|rgba\(\d{1,3},\s*\d{1,3},\s*\d{1,3}(\s*,\s*(0(\.\d+)?|1(\.0+)?))\))$/.test(e)),{message:"Invalid CSS color value"}),Mi=io({src:In(),alt:yn(),width:Mn().positive(),height:Mn().positive()}),Vi=io({primaryColor:ji.optional(),backgroundColor:ji.optional(),borderColor:ji.optional(),textColor:ji.optional(),textSecondaryColor:ji.optional(),accentColor:ji.optional(),borderStyle:Li.optional(),textMode:Ui.optional(),paymentCategoryGrouping:Fi.optional(),logo:Mi.optional()}),Wi=Kn(),Bi=no(ho(["wallet","exchange","cash"])),Gi=ho(["haffer","wudoo-mono"]),Hi=io({address:Uo,signMessage:Kn().refine((e=>"function"==typeof e)).optional(),sendTransaction:Kn().refine((e=>"function"==typeof e)).optional(),signTypedData:Kn().refine((e=>"function"==typeof e)).optional()}),qi=io({redirectUrl:In(),ctaText:yn(),secondaryRedirectUrl:In().optional(),secondaryCtaText:yn().optional()}).refine((e=>!(e.secondaryRedirectUrl&&!e.secondaryCtaText||!e.secondaryRedirectUrl&&e.secondaryCtaText)),{message:"secondaryCtaText and secondaryRedirectUrl must be provided together."}),Yi=io({apiKey:yn().nonempty(),destinationAddress:Uo.optional(),widgetVersion:ho(["1","2"]).default("2").optional(),...si.shape,customStyles:Vi.optional(),targetElementId:yn().optional(),windowType:Ci.default(Ci.enum.POPUP).optional(),redirects:qi.optional(),statusCallback:Kn().refine((e=>"function"==typeof e)).optional(),owner:Hi.optional(),funder:Hi.optional(),features:no(pi).optional(),paymentCategoryOrder:Bi.optional(),fontName:Gi.optional()}).refine((e=>!("EMBED"===e.windowType&&!e.targetElementId)),{message:"targetElementId is required when windowType is EMBED"}),Ki=Yi.omit({owner:!0,funder:!0,statusCallback:!0}),Ji=yn().regex(/^(https:\/\/(?:[\w-]+\.)*halliday\.xyz(?:\/.*)?|http:\/\/localhost(?::\d+)?(?:\/.*)?|https:\/\/localhost(?::\d+)?(?:\/.*)?)$/,"Invalid API baseUrl"),Xi=po(yn(),Gn()),Qi=io({dangerouslyOverrideHallidayDomainName:In().optional(),dangerouslyOverrideApiBaseUrl:Ji.optional(),dangerouslyOverrideIPAddress:di.optional(),dangerouslyOverrideFeatureFlags:Xi.optional()}),er=ho(["FULL","MODAL","OVERLAY"]),tr=io({appMode:er.optional(),apiBaseUrl:Ji.optional(),hasOwner:Gn(),hasTxHandler:Gn(),hostOrigin:In().nullable(),ipAddress:di.optional(),featureFlags:Xi.optional()}),nr=io({...Ki.shape,...tr.shape,ownerAddress:Uo.optional(),funderAddress:Uo.optional()});var or;!function(e){e.ACTION_TRANSACTION="ACTION_TRANSACTION",e.EVENT_ORDER_STATUS="EVENT_ORDER_STATUS",e.EVENT_WINDOW_CLOSE="EVENT_WINDOW_CLOSE",e.ACTION_SIGN_MESSAGE="ACTION_SIGN_MESSAGE",e.ACTION_PROVIDER_WIDGET="ACTION_PROVIDER_WIDGET",e.ACTION_SIGN_TYPED_DATA="ACTION_SIGN_TYPED_DATA"}(or||(or={}));const ir=e=>{const t=nr.parse(e);return btoa(JSON.stringify(t))},rr=e=>nr.parse(JSON.parse(atob(e))),sr=t=>{const{windowOrigin:n=e,...o}=t,i=ir(o),r=o.widgetVersion;if(r)try{return`${n}/v${parseInt(r)}/payments/quote?data=${i}`}catch(e){console.error("Error parsing widget version",e)}return`${n}/payments/quote?data=${i}`},ar=async({apiKey:e,baseURL:t,workflowId:n})=>{let o;for(let i=1;i<=3;i++)try{const o=await fetch(`${t}/quotes/status?workflow_id=${n}`,{headers:{Authorization:`Bearer ${e}`}});if(!o.ok)throw new Error(`HTTP error! status: ${o.status}`);return await o.json()}catch(e){if(o=e instanceof Error?e:new Error(String(e)),3===i)throw o;const t=1e3*Math.pow(2,i);await new Promise((e=>setTimeout(e,t)))}throw o},ur=e=>{e instanceof dn?e.issues.forEach((e=>{console.error("Validation Error",{path:e.path.join("."),message:e.message})})):console.error("openHallidayPayments Error",{error:e})},cr=(()=>{let t=null,n=null,o=[];const i=()=>{o.forEach((e=>{window.removeEventListener("message",e)})),o=[]};return{openWidget:async(r,...s)=>{const a=s[999]||{};let u,c;try{u=Yi.parse(r)}catch(e){throw ur(e),e}try{c=Qi.parse(a)}catch(e){throw ur(e),e}const{dangerouslyOverrideHallidayDomainName:d,dangerouslyOverrideApiBaseUrl:l,dangerouslyOverrideIPAddress:p,dangerouslyOverrideFeatureFlags:f}=c,{owner:h,statusCallback:m,funder:_,windowType:v}=u,g=d||e,y=h?.signMessage,w=h?.signTypedData,z=_?.sendTransaction||h?.sendTransaction,b=h?.address,k=_?.address,E=Uo.safeParse(b).success&&"function"==typeof w,I=Uo.safeParse(k).success&&"function"==typeof z;let A=null,$="FULL";try{A=window.origin,"MODAL"===v&&($=(()=>{if("undefined"==typeof navigator)return!1;const e=navigator;let t=!1;e.userAgentData&&"boolean"==typeof e.userAgentData.mobile&&(t=e.userAgentData.mobile);const n=navigator.userAgent||navigator.vendor||window.opera||"";return t||/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini|mobile|tablet/i.test(n)})()?"OVERLAY":"MODAL")}catch(e){}i();const T=[e=>{if(e.origin!==g||e.source!==t)return;const{type:n}=e.data||{};n===or.EVENT_WINDOW_CLOSE&&i()}];if(E){const e=async e=>{if(e.origin!==g||e.source!==t)return;const{type:n,payload:o}=e.data||{};if(n===or.ACTION_SIGN_MESSAGE){const{messageId:e,message:i,ownerAddress:r}=o;try{let o;if("function"!=typeof y)throw new Error("No signMessage function provided");o=await y({message:i,ownerAddress:r}),t?.postMessage({type:n,payload:{messageId:e,signature:o}},g)}catch(o){console.error("Error signing message",o),t?.postMessage({type:n,payload:{messageId:e,error:o instanceof Error?o.message:o}},g)}}else if(n===or.ACTION_SIGN_TYPED_DATA){const{messageId:e,typedData:i,ownerAddress:r}=o;try{let o;if("function"!=typeof w)throw new Error("No signTypedData function provided");o=await w({typedData:i,ownerAddress:r}),t?.postMessage({type:n,payload:{messageId:e,signature:o}},g)}catch(o){console.error("Error signing typed data",o),t?.postMessage({type:n,payload:{messageId:e,error:o instanceof Error?o.message:o}},g)}}};T.push(e)}if(I){const e=async e=>{if(e.origin!==g||e.source!==t)return;const{type:n,payload:o}=e.data||{};if(n===or.ACTION_TRANSACTION){const{messageId:e,chainConfig:i,transaction:r}=o;try{let o;if("function"!=typeof z)throw new Error("No sendTransaction function provided");o=await z(r,i),t?.postMessage({type:n,payload:{messageId:e,txReceipt:o}},g)}catch(o){console.error("Error handling transaction",o),t?.postMessage({type:n,payload:{messageId:e,error:o instanceof Error?o.message:o}},g)}}};T.push(e)}if(m){const e=e=>{if(e.origin!==g||e.source!==t)return;const{type:n,payload:o}=e.data||{};n===or.EVENT_ORDER_STATUS&&m({type:n,payload:o})};T.push(e)}var O;T.push((async e=>{if(e.origin!==g||e.source!==t)return;const{type:o,payload:i}=e.data||{};if(o===or.ACTION_PROVIDER_WIDGET&&t){const{url:e,redirectUrl:o,providerWidgetMode:r,workflowId:s}=i||{};if(!(e&&o&&r&&s))throw new Error("Invalid provider widget payload");let a=null;if("REDIRECT"===r)t.location=e,a=t;else{if("POPUP"!==r)throw new Error("Invalid provider widget mode");n=(e=>{const t=window.innerWidth/2-240;return window.open(e,"Provider Widget",`popup left=${t} top=70 width=480 height=638`)})(e),a=n}if(await(async({apiKey:e,baseURL:t,window:n,workflowId:o})=>{for(;!n.closed;){let n;try{n=await ar({apiKey:e,baseURL:t,workflowId:o})}catch(e){console.error("Error fetching payment status",e);break}const i=n.fulfilled.route.find((e=>"ONRAMP"===e.type)),r=i?.status;if("COMPLETE"===r)break;await new Promise((e=>setTimeout(e,5e3)))}})({apiKey:u.apiKey,baseURL:l||"https://v2.prod.halliday.xyz",workflowId:s,window:a}),a?.closed)return;"REDIRECT"===r?t.location=o:"POPUP"===r&&(n?.close(),n=null)}})),t=(e=>{const t=window.innerWidth/2-240,{windowType:n="POPUP",targetElementId:o,windowOrigin:i}=e,r=sr(e);let s;if("EMBED"===n){const e=document.getElementById(o);if(!e)throw new Error(`Element with id ${o} not found`);const t=document.createElement("iframe");t.id="halliday-payments-embed",t.src=r,t.style.width="480px",t.style.height="638px",t.style.maxWidth="100%",t.style.maxHeight="100%",e.innerHTML="",e.appendChild(t);const n=t=>{if(t.origin!==i||t.source!==s)return;const{type:o}=t.data||{};o===or.EVENT_WINDOW_CLOSE&&(window.removeEventListener("message",n),e.innerHTML="")};window.addEventListener("message",n),s=t.contentWindow}else if("MODAL"===n){let e=document.getElementById("halliday-payments-modal");(e?e.src:null)===r?e.style.display="block":(e&&e.remove(),e=document.createElement("iframe"),e.id="halliday-payments-modal",e.src=r,e.style.position="fixed",e.style.top="0",e.style.left="0",e.style.width="100dvw",e.style.height="100dvh",e.style.border="none",e.style.zIndex="1000",e.setAttribute("scrolling","no"),document.body.appendChild(e));const t=e=>{if(e.origin!==i||e.source!==s)return;const{type:n}=e.data||{};if(n===or.EVENT_WINDOW_CLOSE){window.removeEventListener("message",t);const e=document.getElementById("halliday-payments-modal");e&&(e.style.display="none")}};window.addEventListener("message",t),s=e.contentWindow}else s=window.open(r,"Halliday Payments",`popup left=${t} top=70 width=480 height=638`);return s})({...u,sandbox:u.sandbox||!1,hasOwner:E,hasTxHandler:I,windowOrigin:g,apiBaseUrl:l,hostOrigin:A,ownerAddress:b,funderAddress:k,ipAddress:p,featureFlags:f,appMode:$,fontName:u.fontName,paymentCategoryOrder:u.paymentCategoryOrder}),(O=T).forEach((e=>{window.addEventListener("message",e)})),o=O}}})();async function dr(e,...t){try{return cr.openWidget(e,...t)}catch(e){throw ur(e),e}}export{er as AppMode,Li as BorderStyle,Vi as CustomStyles,Gi as FontName,or as MessageType,Wi as OrderStatus,Bi as PaymentCategoryOrder,nr as PaymentsWidgetQueryParams,Yi as PaymentsWidgetSDKParams,rr as deserializeQueryParams,sr as getPaymentsWidgetUrl,dr as openHallidayPayments,ir as serializeQueryParams};
2
2
  //# sourceMappingURL=index.esm.min.js.map