@walkeros/server-destination-gcp 0.3.0 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -1,9 +1,8 @@
1
1
  import { DestinationServer } from '@walkeros/server-core';
2
- import { Destination as Destination$1, Mapping as Mapping$2, z } from '@walkeros/core';
2
+ import { Destination as Destination$1, Mapping as Mapping$1 } from '@walkeros/core';
3
3
  import { BigQuery, BigQueryOptions } from '@google-cloud/bigquery';
4
- import * as zod_to_json_schema from 'zod-to-json-schema';
5
4
 
6
- interface Settings$1 {
5
+ interface Settings {
7
6
  client: BigQuery;
8
7
  projectId: string;
9
8
  datasetId: string;
@@ -11,96 +10,41 @@ interface Settings$1 {
11
10
  location?: string;
12
11
  bigquery?: BigQueryOptions;
13
12
  }
14
- interface Mapping$1 {
13
+ interface Mapping {
15
14
  }
16
15
  interface Env extends DestinationServer.Env {
17
16
  BigQuery?: typeof BigQuery;
18
17
  }
19
- type Types = Destination$1.Types<Settings$1, Mapping$1, Env>;
18
+ type Types = Destination$1.Types<Settings, Mapping, Env>;
20
19
  interface Destination extends DestinationServer.Destination<Types> {
21
20
  init: DestinationServer.InitFn<Types>;
22
21
  }
23
22
  type Config = {
24
- settings: Settings$1;
23
+ settings: Settings;
25
24
  } & DestinationServer.Config<Types>;
26
25
  type InitFn = DestinationServer.InitFn<Types>;
27
26
  type PushFn = DestinationServer.PushFn<Types>;
28
27
  type PartialConfig = DestinationServer.PartialConfig<Types>;
29
- type PushEvents = DestinationServer.PushEvents<Mapping$1>;
30
- type Rule = Mapping$2.Rule<Mapping$1>;
31
- type Rules = Mapping$2.Rules<Rule>;
32
-
33
- type index$1_Config = Config;
34
- type index$1_Destination = Destination;
35
- type index$1_Env = Env;
36
- type index$1_InitFn = InitFn;
37
- type index$1_PartialConfig = PartialConfig;
38
- type index$1_PushEvents = PushEvents;
39
- type index$1_PushFn = PushFn;
40
- type index$1_Rule = Rule;
41
- type index$1_Rules = Rules;
42
- type index$1_Types = Types;
43
- declare namespace index$1 {
44
- export type { index$1_Config as Config, index$1_Destination as Destination, index$1_Env as Env, index$1_InitFn as InitFn, Mapping$1 as Mapping, index$1_PartialConfig as PartialConfig, index$1_PushEvents as PushEvents, index$1_PushFn as PushFn, index$1_Rule as Rule, index$1_Rules as Rules, Settings$1 as Settings, index$1_Types as Types };
45
- }
46
-
47
- declare const SettingsSchema: z.ZodObject<{
48
- client: z.ZodOptional<z.ZodAny>;
49
- projectId: z.ZodString;
50
- datasetId: z.ZodDefault<z.ZodString>;
51
- tableId: z.ZodDefault<z.ZodString>;
52
- location: z.ZodDefault<z.ZodString>;
53
- bigquery: z.ZodOptional<z.ZodAny>;
54
- }, "strip", z.ZodTypeAny, {
55
- projectId: string;
56
- datasetId: string;
57
- tableId: string;
58
- location: string;
59
- client?: any;
60
- bigquery?: any;
61
- }, {
62
- projectId: string;
63
- client?: any;
64
- datasetId?: string | undefined;
65
- tableId?: string | undefined;
66
- location?: string | undefined;
67
- bigquery?: any;
68
- }>;
69
- type Settings = z.infer<typeof SettingsSchema>;
70
-
71
- /**
72
- * GCP BigQuery Mapping Schema
73
- * BigQuery has no event-level mapping configuration
74
- */
75
- declare const MappingSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
76
- /**
77
- * Type inference from MappingSchema
78
- */
79
- type Mapping = z.infer<typeof MappingSchema>;
80
-
81
- declare const settings: zod_to_json_schema.JsonSchema7Type & {
82
- $schema?: string | undefined;
83
- definitions?: {
84
- [key: string]: zod_to_json_schema.JsonSchema7Type;
85
- } | undefined;
86
- };
87
- declare const mapping: zod_to_json_schema.JsonSchema7Type & {
88
- $schema?: string | undefined;
89
- definitions?: {
90
- [key: string]: zod_to_json_schema.JsonSchema7Type;
91
- } | undefined;
92
- };
93
-
28
+ type PushEvents = DestinationServer.PushEvents<Mapping>;
29
+ type Rule = Mapping$1.Rule<Mapping>;
30
+ type Rules = Mapping$1.Rules<Rule>;
31
+
32
+ type index_Config = Config;
33
+ type index_Destination = Destination;
34
+ type index_Env = Env;
35
+ type index_InitFn = InitFn;
94
36
  type index_Mapping = Mapping;
95
- declare const index_MappingSchema: typeof MappingSchema;
37
+ type index_PartialConfig = PartialConfig;
38
+ type index_PushEvents = PushEvents;
39
+ type index_PushFn = PushFn;
40
+ type index_Rule = Rule;
41
+ type index_Rules = Rules;
96
42
  type index_Settings = Settings;
97
- declare const index_SettingsSchema: typeof SettingsSchema;
98
- declare const index_mapping: typeof mapping;
99
- declare const index_settings: typeof settings;
43
+ type index_Types = Types;
100
44
  declare namespace index {
101
- export { type index_Mapping as Mapping, index_MappingSchema as MappingSchema, type index_Settings as Settings, index_SettingsSchema as SettingsSchema, index_mapping as mapping, index_settings as settings };
45
+ export type { index_Config as Config, index_Destination as Destination, index_Env as Env, index_InitFn as InitFn, index_Mapping as Mapping, index_PartialConfig as PartialConfig, index_PushEvents as PushEvents, index_PushFn as PushFn, index_Rule as Rule, index_Rules as Rules, index_Settings as Settings, index_Types as Types };
102
46
  }
103
47
 
104
48
  declare const destinationBigQuery: Destination;
105
49
 
106
- export { index$1 as DestinationBigQuery, destinationBigQuery, index as schemas };
50
+ export { index as DestinationBigQuery, destinationBigQuery };
package/dist/index.d.ts CHANGED
@@ -1,9 +1,8 @@
1
1
  import { DestinationServer } from '@walkeros/server-core';
2
- import { Destination as Destination$1, Mapping as Mapping$2, z } from '@walkeros/core';
2
+ import { Destination as Destination$1, Mapping as Mapping$1 } from '@walkeros/core';
3
3
  import { BigQuery, BigQueryOptions } from '@google-cloud/bigquery';
4
- import * as zod_to_json_schema from 'zod-to-json-schema';
5
4
 
6
- interface Settings$1 {
5
+ interface Settings {
7
6
  client: BigQuery;
8
7
  projectId: string;
9
8
  datasetId: string;
@@ -11,96 +10,41 @@ interface Settings$1 {
11
10
  location?: string;
12
11
  bigquery?: BigQueryOptions;
13
12
  }
14
- interface Mapping$1 {
13
+ interface Mapping {
15
14
  }
16
15
  interface Env extends DestinationServer.Env {
17
16
  BigQuery?: typeof BigQuery;
18
17
  }
19
- type Types = Destination$1.Types<Settings$1, Mapping$1, Env>;
18
+ type Types = Destination$1.Types<Settings, Mapping, Env>;
20
19
  interface Destination extends DestinationServer.Destination<Types> {
21
20
  init: DestinationServer.InitFn<Types>;
22
21
  }
23
22
  type Config = {
24
- settings: Settings$1;
23
+ settings: Settings;
25
24
  } & DestinationServer.Config<Types>;
26
25
  type InitFn = DestinationServer.InitFn<Types>;
27
26
  type PushFn = DestinationServer.PushFn<Types>;
28
27
  type PartialConfig = DestinationServer.PartialConfig<Types>;
29
- type PushEvents = DestinationServer.PushEvents<Mapping$1>;
30
- type Rule = Mapping$2.Rule<Mapping$1>;
31
- type Rules = Mapping$2.Rules<Rule>;
32
-
33
- type index$1_Config = Config;
34
- type index$1_Destination = Destination;
35
- type index$1_Env = Env;
36
- type index$1_InitFn = InitFn;
37
- type index$1_PartialConfig = PartialConfig;
38
- type index$1_PushEvents = PushEvents;
39
- type index$1_PushFn = PushFn;
40
- type index$1_Rule = Rule;
41
- type index$1_Rules = Rules;
42
- type index$1_Types = Types;
43
- declare namespace index$1 {
44
- export type { index$1_Config as Config, index$1_Destination as Destination, index$1_Env as Env, index$1_InitFn as InitFn, Mapping$1 as Mapping, index$1_PartialConfig as PartialConfig, index$1_PushEvents as PushEvents, index$1_PushFn as PushFn, index$1_Rule as Rule, index$1_Rules as Rules, Settings$1 as Settings, index$1_Types as Types };
45
- }
46
-
47
- declare const SettingsSchema: z.ZodObject<{
48
- client: z.ZodOptional<z.ZodAny>;
49
- projectId: z.ZodString;
50
- datasetId: z.ZodDefault<z.ZodString>;
51
- tableId: z.ZodDefault<z.ZodString>;
52
- location: z.ZodDefault<z.ZodString>;
53
- bigquery: z.ZodOptional<z.ZodAny>;
54
- }, "strip", z.ZodTypeAny, {
55
- projectId: string;
56
- datasetId: string;
57
- tableId: string;
58
- location: string;
59
- client?: any;
60
- bigquery?: any;
61
- }, {
62
- projectId: string;
63
- client?: any;
64
- datasetId?: string | undefined;
65
- tableId?: string | undefined;
66
- location?: string | undefined;
67
- bigquery?: any;
68
- }>;
69
- type Settings = z.infer<typeof SettingsSchema>;
70
-
71
- /**
72
- * GCP BigQuery Mapping Schema
73
- * BigQuery has no event-level mapping configuration
74
- */
75
- declare const MappingSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
76
- /**
77
- * Type inference from MappingSchema
78
- */
79
- type Mapping = z.infer<typeof MappingSchema>;
80
-
81
- declare const settings: zod_to_json_schema.JsonSchema7Type & {
82
- $schema?: string | undefined;
83
- definitions?: {
84
- [key: string]: zod_to_json_schema.JsonSchema7Type;
85
- } | undefined;
86
- };
87
- declare const mapping: zod_to_json_schema.JsonSchema7Type & {
88
- $schema?: string | undefined;
89
- definitions?: {
90
- [key: string]: zod_to_json_schema.JsonSchema7Type;
91
- } | undefined;
92
- };
93
-
28
+ type PushEvents = DestinationServer.PushEvents<Mapping>;
29
+ type Rule = Mapping$1.Rule<Mapping>;
30
+ type Rules = Mapping$1.Rules<Rule>;
31
+
32
+ type index_Config = Config;
33
+ type index_Destination = Destination;
34
+ type index_Env = Env;
35
+ type index_InitFn = InitFn;
94
36
  type index_Mapping = Mapping;
95
- declare const index_MappingSchema: typeof MappingSchema;
37
+ type index_PartialConfig = PartialConfig;
38
+ type index_PushEvents = PushEvents;
39
+ type index_PushFn = PushFn;
40
+ type index_Rule = Rule;
41
+ type index_Rules = Rules;
96
42
  type index_Settings = Settings;
97
- declare const index_SettingsSchema: typeof SettingsSchema;
98
- declare const index_mapping: typeof mapping;
99
- declare const index_settings: typeof settings;
43
+ type index_Types = Types;
100
44
  declare namespace index {
101
- export { type index_Mapping as Mapping, index_MappingSchema as MappingSchema, type index_Settings as Settings, index_SettingsSchema as SettingsSchema, index_mapping as mapping, index_settings as settings };
45
+ export type { index_Config as Config, index_Destination as Destination, index_Env as Env, index_InitFn as InitFn, index_Mapping as Mapping, index_PartialConfig as PartialConfig, index_PushEvents as PushEvents, index_PushFn as PushFn, index_Rule as Rule, index_Rules as Rules, index_Settings as Settings, index_Types as Types };
102
46
  }
103
47
 
104
48
  declare const destinationBigQuery: Destination;
105
49
 
106
- export { index$1 as DestinationBigQuery, destinationBigQuery, index as schemas };
50
+ export { index as DestinationBigQuery, destinationBigQuery };
package/dist/index.js CHANGED
@@ -1 +1 @@
1
- "use strict";var e,t=Object.defineProperty,n=Object.getOwnPropertyDescriptor,a=Object.getOwnPropertyNames,r=Object.prototype.hasOwnProperty,i=(e,n)=>{for(var a in n)t(e,a,{get:n[a],enumerable:!0})},s={};i(s,{DestinationBigQuery:()=>Ir,destinationBigQuery:()=>Br,schemas:()=>Dr}),module.exports=(e=s,((e,i,s,o)=>{if(i&&"object"==typeof i||"function"==typeof i)for(let c of a(i))r.call(e,c)||c===s||t(e,c,{get:()=>i[c],enumerable:!(o=n(i,c))||o.enumerable});return e})(t({},"__esModule",{value:!0}),e));var o,c,d,u={};i(u,{BRAND:()=>Ve,DIRTY:()=>P,EMPTY_PATH:()=>S,INVALID:()=>Z,NEVER:()=>Dt,OK:()=>A,ParseStatus:()=>j,Schema:()=>R,ZodAny:()=>fe,ZodArray:()=>be,ZodBigInt:()=>de,ZodBoolean:()=>ue,ZodBranded:()=>Je,ZodCatch:()=>Ue,ZodDate:()=>le,ZodDefault:()=>Fe,ZodDiscriminatedUnion:()=>we,ZodEffects:()=>De,ZodEnum:()=>$e,ZodError:()=>f,ZodFirstPartyTypeKind:()=>Qe,ZodFunction:()=>Ce,ZodIntersection:()=>Ze,ZodIssueCode:()=>m,ZodLazy:()=>Ee,ZodLiteral:()=>Ne,ZodMap:()=>Te,ZodNaN:()=>Be,ZodNativeEnum:()=>Me,ZodNever:()=>ye,ZodNull:()=>he,ZodNullable:()=>Le,ZodNumber:()=>ce,ZodObject:()=>Se,ZodOptional:()=>ze,ZodParsedType:()=>l,ZodPipeline:()=>qe,ZodPromise:()=>Re,ZodReadonly:()=>We,ZodRecord:()=>Ae,ZodSchema:()=>R,ZodSet:()=>Oe,ZodString:()=>se,ZodSymbol:()=>pe,ZodTransformer:()=>De,ZodTuple:()=>Pe,ZodType:()=>R,ZodUndefined:()=>me,ZodUnion:()=>ke,ZodUnknown:()=>ge,ZodVoid:()=>ve,addIssueToContext:()=>k,any:()=>dt,array:()=>mt,bigint:()=>at,boolean:()=>rt,coerce:()=>Rt,custom:()=>He,date:()=>it,datetimeRegex:()=>ne,defaultErrorMap:()=>g,discriminatedUnion:()=>yt,effect:()=>Tt,enum:()=>Zt,function:()=>xt,getErrorMap:()=>b,getParsedType:()=>p,instanceof:()=>Xe,intersection:()=>vt,isAborted:()=>T,isAsync:()=>E,isDirty:()=>O,isValid:()=>C,late:()=>Ye,lazy:()=>wt,literal:()=>jt,makeIssue:()=>_,map:()=>St,nan:()=>nt,nativeEnum:()=>Pt,never:()=>lt,null:()=>ct,nullable:()=>Ct,number:()=>tt,object:()=>ht,objectUtil:()=>d,oboolean:()=>Mt,onumber:()=>$t,optional:()=>Ot,ostring:()=>It,pipeline:()=>Nt,preprocess:()=>Et,promise:()=>At,quotelessJson:()=>h,record:()=>_t,set:()=>kt,setErrorMap:()=>v,strictObject:()=>ft,string:()=>et,symbol:()=>st,transformer:()=>Tt,tuple:()=>bt,undefined:()=>ot,union:()=>gt,unknown:()=>ut,util:()=>o,void:()=>pt}),(c=o||(o={})).assertEqual=e=>{},c.assertIs=function(e){},c.assertNever=function(e){throw new Error},c.arrayToEnum=e=>{const t={};for(const n of e)t[n]=n;return t},c.getValidEnumValues=e=>{const t=c.objectKeys(e).filter(t=>"number"!=typeof e[e[t]]),n={};for(const a of t)n[a]=e[a];return c.objectValues(n)},c.objectValues=e=>c.objectKeys(e).map(function(t){return e[t]}),c.objectKeys="function"==typeof Object.keys?e=>Object.keys(e):e=>{const t=[];for(const n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.push(n);return t},c.find=(e,t)=>{for(const n of e)if(t(n))return n},c.isInteger="function"==typeof Number.isInteger?e=>Number.isInteger(e):e=>"number"==typeof e&&Number.isFinite(e)&&Math.floor(e)===e,c.joinValues=function(e,t=" | "){return e.map(e=>"string"==typeof e?`'${e}'`:e).join(t)},c.jsonStringifyReplacer=(e,t)=>"bigint"==typeof t?t.toString():t,(d||(d={})).mergeShapes=(e,t)=>({...e,...t});var l=o.arrayToEnum(["string","nan","number","integer","float","boolean","date","bigint","symbol","function","undefined","null","array","object","unknown","promise","void","never","map","set"]),p=e=>{switch(typeof e){case"undefined":return l.undefined;case"string":return l.string;case"number":return Number.isNaN(e)?l.nan:l.number;case"boolean":return l.boolean;case"function":return l.function;case"bigint":return l.bigint;case"symbol":return l.symbol;case"object":return Array.isArray(e)?l.array:null===e?l.null:e.then&&"function"==typeof e.then&&e.catch&&"function"==typeof e.catch?l.promise:"undefined"!=typeof Map&&e instanceof Map?l.map:"undefined"!=typeof Set&&e instanceof Set?l.set:"undefined"!=typeof Date&&e instanceof Date?l.date:l.object;default:return l.unknown}},m=o.arrayToEnum(["invalid_type","invalid_literal","custom","invalid_union","invalid_union_discriminator","invalid_enum_value","unrecognized_keys","invalid_arguments","invalid_return_type","invalid_date","invalid_string","too_small","too_big","invalid_intersection_types","not_multiple_of","not_finite"]),h=e=>JSON.stringify(e,null,2).replace(/"([^"]+)":/g,"$1:"),f=class e extends Error{get errors(){return this.issues}constructor(e){super(),this.issues=[],this.addIssue=e=>{this.issues=[...this.issues,e]},this.addIssues=(e=[])=>{this.issues=[...this.issues,...e]};const t=new.target.prototype;Object.setPrototypeOf?Object.setPrototypeOf(this,t):this.__proto__=t,this.name="ZodError",this.issues=e}format(e){const t=e||function(e){return e.message},n={_errors:[]},a=e=>{for(const r of e.issues)if("invalid_union"===r.code)r.unionErrors.map(a);else if("invalid_return_type"===r.code)a(r.returnTypeError);else if("invalid_arguments"===r.code)a(r.argumentsError);else if(0===r.path.length)n._errors.push(t(r));else{let e=n,a=0;for(;a<r.path.length;){const n=r.path[a];a===r.path.length-1?(e[n]=e[n]||{_errors:[]},e[n]._errors.push(t(r))):e[n]=e[n]||{_errors:[]},e=e[n],a++}}};return a(this),n}static assert(t){if(!(t instanceof e))throw new Error(`Not a ZodError: ${t}`)}toString(){return this.message}get message(){return JSON.stringify(this.issues,o.jsonStringifyReplacer,2)}get isEmpty(){return 0===this.issues.length}flatten(e=e=>e.message){const t={},n=[];for(const a of this.issues)if(a.path.length>0){const n=a.path[0];t[n]=t[n]||[],t[n].push(e(a))}else n.push(e(a));return{formErrors:n,fieldErrors:t}}get formErrors(){return this.flatten()}};f.create=e=>new f(e);var g=(e,t)=>{let n;switch(e.code){case m.invalid_type:n=e.received===l.undefined?"Required":`Expected ${e.expected}, received ${e.received}`;break;case m.invalid_literal:n=`Invalid literal value, expected ${JSON.stringify(e.expected,o.jsonStringifyReplacer)}`;break;case m.unrecognized_keys:n=`Unrecognized key(s) in object: ${o.joinValues(e.keys,", ")}`;break;case m.invalid_union:n="Invalid input";break;case m.invalid_union_discriminator:n=`Invalid discriminator value. Expected ${o.joinValues(e.options)}`;break;case m.invalid_enum_value:n=`Invalid enum value. Expected ${o.joinValues(e.options)}, received '${e.received}'`;break;case m.invalid_arguments:n="Invalid function arguments";break;case m.invalid_return_type:n="Invalid function return type";break;case m.invalid_date:n="Invalid date";break;case m.invalid_string:"object"==typeof e.validation?"includes"in e.validation?(n=`Invalid input: must include "${e.validation.includes}"`,"number"==typeof e.validation.position&&(n=`${n} at one or more positions greater than or equal to ${e.validation.position}`)):"startsWith"in e.validation?n=`Invalid input: must start with "${e.validation.startsWith}"`:"endsWith"in e.validation?n=`Invalid input: must end with "${e.validation.endsWith}"`:o.assertNever(e.validation):n="regex"!==e.validation?`Invalid ${e.validation}`:"Invalid";break;case m.too_small:n="array"===e.type?`Array must contain ${e.exact?"exactly":e.inclusive?"at least":"more than"} ${e.minimum} element(s)`:"string"===e.type?`String must contain ${e.exact?"exactly":e.inclusive?"at least":"over"} ${e.minimum} character(s)`:"number"===e.type||"bigint"===e.type?`Number must be ${e.exact?"exactly equal to ":e.inclusive?"greater than or equal to ":"greater than "}${e.minimum}`:"date"===e.type?`Date must be ${e.exact?"exactly equal to ":e.inclusive?"greater than or equal to ":"greater than "}${new Date(Number(e.minimum))}`:"Invalid input";break;case m.too_big:n="array"===e.type?`Array must contain ${e.exact?"exactly":e.inclusive?"at most":"less than"} ${e.maximum} element(s)`:"string"===e.type?`String must contain ${e.exact?"exactly":e.inclusive?"at most":"under"} ${e.maximum} character(s)`:"number"===e.type?`Number must be ${e.exact?"exactly":e.inclusive?"less than or equal to":"less than"} ${e.maximum}`:"bigint"===e.type?`BigInt must be ${e.exact?"exactly":e.inclusive?"less than or equal to":"less than"} ${e.maximum}`:"date"===e.type?`Date must be ${e.exact?"exactly":e.inclusive?"smaller than or equal to":"smaller than"} ${new Date(Number(e.maximum))}`:"Invalid input";break;case m.custom:n="Invalid input";break;case m.invalid_intersection_types:n="Intersection results could not be merged";break;case m.not_multiple_of:n=`Number must be a multiple of ${e.multipleOf}`;break;case m.not_finite:n="Number must be finite";break;default:n=t.defaultError,o.assertNever(e)}return{message:n}},y=g;function v(e){y=e}function b(){return y}var _=e=>{const{data:t,path:n,errorMaps:a,issueData:r}=e,i=[...n,...r.path||[]],s={...r,path:i};if(void 0!==r.message)return{...r,path:i,message:r.message};let o="";const c=a.filter(e=>!!e).slice().reverse();for(const e of c)o=e(s,{data:t,defaultError:o}).message;return{...r,path:i,message:o}},S=[];function k(e,t){const n=b(),a=_({issueData:t,data:e.data,path:e.path,errorMaps:[e.common.contextualErrorMap,e.schemaErrorMap,n,n===g?void 0:g].filter(e=>!!e)});e.common.issues.push(a)}var x,w,j=class e{constructor(){this.value="valid"}dirty(){"valid"===this.value&&(this.value="dirty")}abort(){"aborted"!==this.value&&(this.value="aborted")}static mergeArray(e,t){const n=[];for(const a of t){if("aborted"===a.status)return Z;"dirty"===a.status&&e.dirty(),n.push(a.value)}return{status:e.value,value:n}}static async mergeObjectAsync(t,n){const a=[];for(const e of n){const t=await e.key,n=await e.value;a.push({key:t,value:n})}return e.mergeObjectSync(t,a)}static mergeObjectSync(e,t){const n={};for(const a of t){const{key:t,value:r}=a;if("aborted"===t.status)return Z;if("aborted"===r.status)return Z;"dirty"===t.status&&e.dirty(),"dirty"===r.status&&e.dirty(),"__proto__"===t.value||void 0===r.value&&!a.alwaysSet||(n[t.value]=r.value)}return{status:e.value,value:n}}},Z=Object.freeze({status:"aborted"}),P=e=>({status:"dirty",value:e}),A=e=>({status:"valid",value:e}),T=e=>"aborted"===e.status,O=e=>"dirty"===e.status,C=e=>"valid"===e.status,E=e=>"undefined"!=typeof Promise&&e instanceof Promise;(w=x||(x={})).errToObj=e=>"string"==typeof e?{message:e}:e||{},w.toString=e=>"string"==typeof e?e:null==e?void 0:e.message;var N=class{constructor(e,t,n,a){this._cachedPath=[],this.parent=e,this.data=t,this._path=n,this._key=a}get path(){return this._cachedPath.length||(Array.isArray(this._key)?this._cachedPath.push(...this._path,...this._key):this._cachedPath.push(...this._path,this._key)),this._cachedPath}},I=(e,t)=>{if(C(t))return{success:!0,data:t.value};if(!e.common.issues.length)throw new Error("Validation failed but no issues detected.");return{success:!1,get error(){if(this._error)return this._error;const t=new f(e.common.issues);return this._error=t,this._error}}};function $(e){if(!e)return{};const{errorMap:t,invalid_type_error:n,required_error:a,description:r}=e;if(t&&(n||a))throw new Error('Can\'t use "invalid_type_error" or "required_error" in conjunction with custom error map.');if(t)return{errorMap:t,description:r};return{errorMap:(t,r)=>{var i,s;const{message:o}=e;return"invalid_enum_value"===t.code?{message:null!=o?o:r.defaultError}:void 0===r.data?{message:null!=(i=null!=o?o:a)?i:r.defaultError}:"invalid_type"!==t.code?{message:r.defaultError}:{message:null!=(s=null!=o?o:n)?s:r.defaultError}},description:r}}var M,R=class{get description(){return this._def.description}_getType(e){return p(e.data)}_getOrReturnCtx(e,t){return t||{common:e.parent.common,data:e.data,parsedType:p(e.data),schemaErrorMap:this._def.errorMap,path:e.path,parent:e.parent}}_processInputParams(e){return{status:new j,ctx:{common:e.parent.common,data:e.data,parsedType:p(e.data),schemaErrorMap:this._def.errorMap,path:e.path,parent:e.parent}}}_parseSync(e){const t=this._parse(e);if(E(t))throw new Error("Synchronous parse encountered promise.");return t}_parseAsync(e){const t=this._parse(e);return Promise.resolve(t)}parse(e,t){const n=this.safeParse(e,t);if(n.success)return n.data;throw n.error}safeParse(e,t){var n;const a={common:{issues:[],async:null!=(n=null==t?void 0:t.async)&&n,contextualErrorMap:null==t?void 0:t.errorMap},path:(null==t?void 0:t.path)||[],schemaErrorMap:this._def.errorMap,parent:null,data:e,parsedType:p(e)},r=this._parseSync({data:e,path:a.path,parent:a});return I(a,r)}"~validate"(e){var t,n;const a={common:{issues:[],async:!!this["~standard"].async},path:[],schemaErrorMap:this._def.errorMap,parent:null,data:e,parsedType:p(e)};if(!this["~standard"].async)try{const t=this._parseSync({data:e,path:[],parent:a});return C(t)?{value:t.value}:{issues:a.common.issues}}catch(e){(null==(n=null==(t=null==e?void 0:e.message)?void 0:t.toLowerCase())?void 0:n.includes("encountered"))&&(this["~standard"].async=!0),a.common={issues:[],async:!0}}return this._parseAsync({data:e,path:[],parent:a}).then(e=>C(e)?{value:e.value}:{issues:a.common.issues})}async parseAsync(e,t){const n=await this.safeParseAsync(e,t);if(n.success)return n.data;throw n.error}async safeParseAsync(e,t){const n={common:{issues:[],contextualErrorMap:null==t?void 0:t.errorMap,async:!0},path:(null==t?void 0:t.path)||[],schemaErrorMap:this._def.errorMap,parent:null,data:e,parsedType:p(e)},a=this._parse({data:e,path:n.path,parent:n}),r=await(E(a)?a:Promise.resolve(a));return I(n,r)}refine(e,t){const n=e=>"string"==typeof t||void 0===t?{message:t}:"function"==typeof t?t(e):t;return this._refinement((t,a)=>{const r=e(t),i=()=>a.addIssue({code:m.custom,...n(t)});return"undefined"!=typeof Promise&&r instanceof Promise?r.then(e=>!!e||(i(),!1)):!!r||(i(),!1)})}refinement(e,t){return this._refinement((n,a)=>!!e(n)||(a.addIssue("function"==typeof t?t(n,a):t),!1))}_refinement(e){return new De({schema:this,typeName:Qe.ZodEffects,effect:{type:"refinement",refinement:e}})}superRefine(e){return this._refinement(e)}constructor(e){this.spa=this.safeParseAsync,this._def=e,this.parse=this.parse.bind(this),this.safeParse=this.safeParse.bind(this),this.parseAsync=this.parseAsync.bind(this),this.safeParseAsync=this.safeParseAsync.bind(this),this.spa=this.spa.bind(this),this.refine=this.refine.bind(this),this.refinement=this.refinement.bind(this),this.superRefine=this.superRefine.bind(this),this.optional=this.optional.bind(this),this.nullable=this.nullable.bind(this),this.nullish=this.nullish.bind(this),this.array=this.array.bind(this),this.promise=this.promise.bind(this),this.or=this.or.bind(this),this.and=this.and.bind(this),this.transform=this.transform.bind(this),this.brand=this.brand.bind(this),this.default=this.default.bind(this),this.catch=this.catch.bind(this),this.describe=this.describe.bind(this),this.pipe=this.pipe.bind(this),this.readonly=this.readonly.bind(this),this.isNullable=this.isNullable.bind(this),this.isOptional=this.isOptional.bind(this),this["~standard"]={version:1,vendor:"zod",validate:e=>this["~validate"](e)}}optional(){return ze.create(this,this._def)}nullable(){return Le.create(this,this._def)}nullish(){return this.nullable().optional()}array(){return be.create(this)}promise(){return Re.create(this,this._def)}or(e){return ke.create([this,e],this._def)}and(e){return Ze.create(this,e,this._def)}transform(e){return new De({...$(this._def),schema:this,typeName:Qe.ZodEffects,effect:{type:"transform",transform:e}})}default(e){const t="function"==typeof e?e:()=>e;return new Fe({...$(this._def),innerType:this,defaultValue:t,typeName:Qe.ZodDefault})}brand(){return new Je({typeName:Qe.ZodBranded,type:this,...$(this._def)})}catch(e){const t="function"==typeof e?e:()=>e;return new Ue({...$(this._def),innerType:this,catchValue:t,typeName:Qe.ZodCatch})}describe(e){return new(0,this.constructor)({...this._def,description:e})}pipe(e){return qe.create(this,e)}readonly(){return We.create(this)}isOptional(){return this.safeParse(void 0).success}isNullable(){return this.safeParse(null).success}},D=/^c[^\s-]{8,}$/i,z=/^[0-9a-z]+$/,L=/^[0-9A-HJKMNP-TV-Z]{26}$/i,F=/^[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}$/i,U=/^[a-z0-9_-]{21}$/i,B=/^[A-Za-z0-9-_]+\.[A-Za-z0-9-_]+\.[A-Za-z0-9-_]*$/,V=/^[-+]?P(?!$)(?:(?:[-+]?\d+Y)|(?:[-+]?\d+[.,]\d+Y$))?(?:(?:[-+]?\d+M)|(?:[-+]?\d+[.,]\d+M$))?(?:(?:[-+]?\d+W)|(?:[-+]?\d+[.,]\d+W$))?(?:(?:[-+]?\d+D)|(?:[-+]?\d+[.,]\d+D$))?(?:T(?=[\d+-])(?:(?:[-+]?\d+H)|(?:[-+]?\d+[.,]\d+H$))?(?:(?:[-+]?\d+M)|(?:[-+]?\d+[.,]\d+M$))?(?:[-+]?\d+(?:[.,]\d+)?S)?)??$/,J=/^(?!\.)(?!.*\.\.)([A-Z0-9_'+\-\.]*)[A-Z0-9_+-]@([A-Z0-9][A-Z0-9\-]*\.)+[A-Z]{2,}$/i,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])$/,W=/^(?:(?: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])\/(3[0-2]|[12]?[0-9])$/,K=/^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$/,H=/^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/,Q=/^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}=))?$/,G=/^([0-9a-zA-Z-_]{4})*(([0-9a-zA-Z-_]{2}(==)?)|([0-9a-zA-Z-_]{3}(=)?))?$/,Y="((\\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])))",X=new RegExp(`^${Y}$`);function ee(e){let t="[0-5]\\d";e.precision?t=`${t}\\.\\d{${e.precision}}`:null==e.precision&&(t=`${t}(\\.\\d+)?`);return`([01]\\d|2[0-3]):[0-5]\\d(:${t})${e.precision?"+":"?"}`}function te(e){return new RegExp(`^${ee(e)}$`)}function ne(e){let t=`${Y}T${ee(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}$`)}function ae(e,t){return!("v4"!==t&&t||!q.test(e))||!("v6"!==t&&t||!K.test(e))}function re(e,t){if(!B.test(e))return!1;try{const[n]=e.split(".");if(!n)return!1;const a=n.replace(/-/g,"+").replace(/_/g,"/").padEnd(n.length+(4-n.length%4)%4,"="),r=JSON.parse(atob(a));return"object"==typeof r&&null!==r&&((!("typ"in r)||"JWT"===(null==r?void 0:r.typ))&&(!!r.alg&&(!t||r.alg===t)))}catch(e){return!1}}function ie(e,t){return!("v4"!==t&&t||!W.test(e))||!("v6"!==t&&t||!H.test(e))}var se=class e extends R{_parse(e){this._def.coerce&&(e.data=String(e.data));if(this._getType(e)!==l.string){const t=this._getOrReturnCtx(e);return k(t,{code:m.invalid_type,expected:l.string,received:t.parsedType}),Z}const t=new j;let n;for(const a of this._def.checks)if("min"===a.kind)e.data.length<a.value&&(n=this._getOrReturnCtx(e,n),k(n,{code:m.too_small,minimum:a.value,type:"string",inclusive:!0,exact:!1,message:a.message}),t.dirty());else if("max"===a.kind)e.data.length>a.value&&(n=this._getOrReturnCtx(e,n),k(n,{code:m.too_big,maximum:a.value,type:"string",inclusive:!0,exact:!1,message:a.message}),t.dirty());else if("length"===a.kind){const r=e.data.length>a.value,i=e.data.length<a.value;(r||i)&&(n=this._getOrReturnCtx(e,n),r?k(n,{code:m.too_big,maximum:a.value,type:"string",inclusive:!0,exact:!0,message:a.message}):i&&k(n,{code:m.too_small,minimum:a.value,type:"string",inclusive:!0,exact:!0,message:a.message}),t.dirty())}else if("email"===a.kind)J.test(e.data)||(n=this._getOrReturnCtx(e,n),k(n,{validation:"email",code:m.invalid_string,message:a.message}),t.dirty());else if("emoji"===a.kind)M||(M=new RegExp("^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$","u")),M.test(e.data)||(n=this._getOrReturnCtx(e,n),k(n,{validation:"emoji",code:m.invalid_string,message:a.message}),t.dirty());else if("uuid"===a.kind)F.test(e.data)||(n=this._getOrReturnCtx(e,n),k(n,{validation:"uuid",code:m.invalid_string,message:a.message}),t.dirty());else if("nanoid"===a.kind)U.test(e.data)||(n=this._getOrReturnCtx(e,n),k(n,{validation:"nanoid",code:m.invalid_string,message:a.message}),t.dirty());else if("cuid"===a.kind)D.test(e.data)||(n=this._getOrReturnCtx(e,n),k(n,{validation:"cuid",code:m.invalid_string,message:a.message}),t.dirty());else if("cuid2"===a.kind)z.test(e.data)||(n=this._getOrReturnCtx(e,n),k(n,{validation:"cuid2",code:m.invalid_string,message:a.message}),t.dirty());else if("ulid"===a.kind)L.test(e.data)||(n=this._getOrReturnCtx(e,n),k(n,{validation:"ulid",code:m.invalid_string,message:a.message}),t.dirty());else if("url"===a.kind)try{new URL(e.data)}catch(r){n=this._getOrReturnCtx(e,n),k(n,{validation:"url",code:m.invalid_string,message:a.message}),t.dirty()}else if("regex"===a.kind){a.regex.lastIndex=0;a.regex.test(e.data)||(n=this._getOrReturnCtx(e,n),k(n,{validation:"regex",code:m.invalid_string,message:a.message}),t.dirty())}else if("trim"===a.kind)e.data=e.data.trim();else if("includes"===a.kind)e.data.includes(a.value,a.position)||(n=this._getOrReturnCtx(e,n),k(n,{code:m.invalid_string,validation:{includes:a.value,position:a.position},message:a.message}),t.dirty());else if("toLowerCase"===a.kind)e.data=e.data.toLowerCase();else if("toUpperCase"===a.kind)e.data=e.data.toUpperCase();else if("startsWith"===a.kind)e.data.startsWith(a.value)||(n=this._getOrReturnCtx(e,n),k(n,{code:m.invalid_string,validation:{startsWith:a.value},message:a.message}),t.dirty());else if("endsWith"===a.kind)e.data.endsWith(a.value)||(n=this._getOrReturnCtx(e,n),k(n,{code:m.invalid_string,validation:{endsWith:a.value},message:a.message}),t.dirty());else if("datetime"===a.kind){ne(a).test(e.data)||(n=this._getOrReturnCtx(e,n),k(n,{code:m.invalid_string,validation:"datetime",message:a.message}),t.dirty())}else if("date"===a.kind){X.test(e.data)||(n=this._getOrReturnCtx(e,n),k(n,{code:m.invalid_string,validation:"date",message:a.message}),t.dirty())}else if("time"===a.kind){te(a).test(e.data)||(n=this._getOrReturnCtx(e,n),k(n,{code:m.invalid_string,validation:"time",message:a.message}),t.dirty())}else"duration"===a.kind?V.test(e.data)||(n=this._getOrReturnCtx(e,n),k(n,{validation:"duration",code:m.invalid_string,message:a.message}),t.dirty()):"ip"===a.kind?ae(e.data,a.version)||(n=this._getOrReturnCtx(e,n),k(n,{validation:"ip",code:m.invalid_string,message:a.message}),t.dirty()):"jwt"===a.kind?re(e.data,a.alg)||(n=this._getOrReturnCtx(e,n),k(n,{validation:"jwt",code:m.invalid_string,message:a.message}),t.dirty()):"cidr"===a.kind?ie(e.data,a.version)||(n=this._getOrReturnCtx(e,n),k(n,{validation:"cidr",code:m.invalid_string,message:a.message}),t.dirty()):"base64"===a.kind?Q.test(e.data)||(n=this._getOrReturnCtx(e,n),k(n,{validation:"base64",code:m.invalid_string,message:a.message}),t.dirty()):"base64url"===a.kind?G.test(e.data)||(n=this._getOrReturnCtx(e,n),k(n,{validation:"base64url",code:m.invalid_string,message:a.message}),t.dirty()):o.assertNever(a);return{status:t.value,value:e.data}}_regex(e,t,n){return this.refinement(t=>e.test(t),{validation:t,code:m.invalid_string,...x.errToObj(n)})}_addCheck(t){return new e({...this._def,checks:[...this._def.checks,t]})}email(e){return this._addCheck({kind:"email",...x.errToObj(e)})}url(e){return this._addCheck({kind:"url",...x.errToObj(e)})}emoji(e){return this._addCheck({kind:"emoji",...x.errToObj(e)})}uuid(e){return this._addCheck({kind:"uuid",...x.errToObj(e)})}nanoid(e){return this._addCheck({kind:"nanoid",...x.errToObj(e)})}cuid(e){return this._addCheck({kind:"cuid",...x.errToObj(e)})}cuid2(e){return this._addCheck({kind:"cuid2",...x.errToObj(e)})}ulid(e){return this._addCheck({kind:"ulid",...x.errToObj(e)})}base64(e){return this._addCheck({kind:"base64",...x.errToObj(e)})}base64url(e){return this._addCheck({kind:"base64url",...x.errToObj(e)})}jwt(e){return this._addCheck({kind:"jwt",...x.errToObj(e)})}ip(e){return this._addCheck({kind:"ip",...x.errToObj(e)})}cidr(e){return this._addCheck({kind:"cidr",...x.errToObj(e)})}datetime(e){var t,n;return"string"==typeof e?this._addCheck({kind:"datetime",precision:null,offset:!1,local:!1,message:e}):this._addCheck({kind:"datetime",precision:void 0===(null==e?void 0:e.precision)?null:null==e?void 0:e.precision,offset:null!=(t=null==e?void 0:e.offset)&&t,local:null!=(n=null==e?void 0:e.local)&&n,...x.errToObj(null==e?void 0:e.message)})}date(e){return this._addCheck({kind:"date",message:e})}time(e){return"string"==typeof e?this._addCheck({kind:"time",precision:null,message:e}):this._addCheck({kind:"time",precision:void 0===(null==e?void 0:e.precision)?null:null==e?void 0:e.precision,...x.errToObj(null==e?void 0:e.message)})}duration(e){return this._addCheck({kind:"duration",...x.errToObj(e)})}regex(e,t){return this._addCheck({kind:"regex",regex:e,...x.errToObj(t)})}includes(e,t){return this._addCheck({kind:"includes",value:e,position:null==t?void 0:t.position,...x.errToObj(null==t?void 0:t.message)})}startsWith(e,t){return this._addCheck({kind:"startsWith",value:e,...x.errToObj(t)})}endsWith(e,t){return this._addCheck({kind:"endsWith",value:e,...x.errToObj(t)})}min(e,t){return this._addCheck({kind:"min",value:e,...x.errToObj(t)})}max(e,t){return this._addCheck({kind:"max",value:e,...x.errToObj(t)})}length(e,t){return this._addCheck({kind:"length",value:e,...x.errToObj(t)})}nonempty(e){return this.min(1,x.errToObj(e))}trim(){return new e({...this._def,checks:[...this._def.checks,{kind:"trim"}]})}toLowerCase(){return new e({...this._def,checks:[...this._def.checks,{kind:"toLowerCase"}]})}toUpperCase(){return new e({...this._def,checks:[...this._def.checks,{kind:"toUpperCase"}]})}get isDatetime(){return!!this._def.checks.find(e=>"datetime"===e.kind)}get isDate(){return!!this._def.checks.find(e=>"date"===e.kind)}get isTime(){return!!this._def.checks.find(e=>"time"===e.kind)}get isDuration(){return!!this._def.checks.find(e=>"duration"===e.kind)}get isEmail(){return!!this._def.checks.find(e=>"email"===e.kind)}get isURL(){return!!this._def.checks.find(e=>"url"===e.kind)}get isEmoji(){return!!this._def.checks.find(e=>"emoji"===e.kind)}get isUUID(){return!!this._def.checks.find(e=>"uuid"===e.kind)}get isNANOID(){return!!this._def.checks.find(e=>"nanoid"===e.kind)}get isCUID(){return!!this._def.checks.find(e=>"cuid"===e.kind)}get isCUID2(){return!!this._def.checks.find(e=>"cuid2"===e.kind)}get isULID(){return!!this._def.checks.find(e=>"ulid"===e.kind)}get isIP(){return!!this._def.checks.find(e=>"ip"===e.kind)}get isCIDR(){return!!this._def.checks.find(e=>"cidr"===e.kind)}get isBase64(){return!!this._def.checks.find(e=>"base64"===e.kind)}get isBase64url(){return!!this._def.checks.find(e=>"base64url"===e.kind)}get minLength(){let e=null;for(const t of this._def.checks)"min"===t.kind&&(null===e||t.value>e)&&(e=t.value);return e}get maxLength(){let e=null;for(const t of this._def.checks)"max"===t.kind&&(null===e||t.value<e)&&(e=t.value);return e}};function oe(e,t){const n=(e.toString().split(".")[1]||"").length,a=(t.toString().split(".")[1]||"").length,r=n>a?n:a;return Number.parseInt(e.toFixed(r).replace(".",""))%Number.parseInt(t.toFixed(r).replace(".",""))/10**r}se.create=e=>{var t;return new se({checks:[],typeName:Qe.ZodString,coerce:null!=(t=null==e?void 0:e.coerce)&&t,...$(e)})};var ce=class e extends R{constructor(){super(...arguments),this.min=this.gte,this.max=this.lte,this.step=this.multipleOf}_parse(e){this._def.coerce&&(e.data=Number(e.data));if(this._getType(e)!==l.number){const t=this._getOrReturnCtx(e);return k(t,{code:m.invalid_type,expected:l.number,received:t.parsedType}),Z}let t;const n=new j;for(const a of this._def.checks)if("int"===a.kind)o.isInteger(e.data)||(t=this._getOrReturnCtx(e,t),k(t,{code:m.invalid_type,expected:"integer",received:"float",message:a.message}),n.dirty());else if("min"===a.kind){(a.inclusive?e.data<a.value:e.data<=a.value)&&(t=this._getOrReturnCtx(e,t),k(t,{code:m.too_small,minimum:a.value,type:"number",inclusive:a.inclusive,exact:!1,message:a.message}),n.dirty())}else if("max"===a.kind){(a.inclusive?e.data>a.value:e.data>=a.value)&&(t=this._getOrReturnCtx(e,t),k(t,{code:m.too_big,maximum:a.value,type:"number",inclusive:a.inclusive,exact:!1,message:a.message}),n.dirty())}else"multipleOf"===a.kind?0!==oe(e.data,a.value)&&(t=this._getOrReturnCtx(e,t),k(t,{code:m.not_multiple_of,multipleOf:a.value,message:a.message}),n.dirty()):"finite"===a.kind?Number.isFinite(e.data)||(t=this._getOrReturnCtx(e,t),k(t,{code:m.not_finite,message:a.message}),n.dirty()):o.assertNever(a);return{status:n.value,value:e.data}}gte(e,t){return this.setLimit("min",e,!0,x.toString(t))}gt(e,t){return this.setLimit("min",e,!1,x.toString(t))}lte(e,t){return this.setLimit("max",e,!0,x.toString(t))}lt(e,t){return this.setLimit("max",e,!1,x.toString(t))}setLimit(t,n,a,r){return new e({...this._def,checks:[...this._def.checks,{kind:t,value:n,inclusive:a,message:x.toString(r)}]})}_addCheck(t){return new e({...this._def,checks:[...this._def.checks,t]})}int(e){return this._addCheck({kind:"int",message:x.toString(e)})}positive(e){return this._addCheck({kind:"min",value:0,inclusive:!1,message:x.toString(e)})}negative(e){return this._addCheck({kind:"max",value:0,inclusive:!1,message:x.toString(e)})}nonpositive(e){return this._addCheck({kind:"max",value:0,inclusive:!0,message:x.toString(e)})}nonnegative(e){return this._addCheck({kind:"min",value:0,inclusive:!0,message:x.toString(e)})}multipleOf(e,t){return this._addCheck({kind:"multipleOf",value:e,message:x.toString(t)})}finite(e){return this._addCheck({kind:"finite",message:x.toString(e)})}safe(e){return this._addCheck({kind:"min",inclusive:!0,value:Number.MIN_SAFE_INTEGER,message:x.toString(e)})._addCheck({kind:"max",inclusive:!0,value:Number.MAX_SAFE_INTEGER,message:x.toString(e)})}get minValue(){let e=null;for(const t of this._def.checks)"min"===t.kind&&(null===e||t.value>e)&&(e=t.value);return e}get maxValue(){let e=null;for(const t of this._def.checks)"max"===t.kind&&(null===e||t.value<e)&&(e=t.value);return e}get isInt(){return!!this._def.checks.find(e=>"int"===e.kind||"multipleOf"===e.kind&&o.isInteger(e.value))}get isFinite(){let e=null,t=null;for(const n of this._def.checks){if("finite"===n.kind||"int"===n.kind||"multipleOf"===n.kind)return!0;"min"===n.kind?(null===t||n.value>t)&&(t=n.value):"max"===n.kind&&(null===e||n.value<e)&&(e=n.value)}return Number.isFinite(t)&&Number.isFinite(e)}};ce.create=e=>new ce({checks:[],typeName:Qe.ZodNumber,coerce:(null==e?void 0:e.coerce)||!1,...$(e)});var de=class e extends R{constructor(){super(...arguments),this.min=this.gte,this.max=this.lte}_parse(e){if(this._def.coerce)try{e.data=BigInt(e.data)}catch(t){return this._getInvalidInput(e)}if(this._getType(e)!==l.bigint)return this._getInvalidInput(e);let t;const n=new j;for(const a of this._def.checks)if("min"===a.kind){(a.inclusive?e.data<a.value:e.data<=a.value)&&(t=this._getOrReturnCtx(e,t),k(t,{code:m.too_small,type:"bigint",minimum:a.value,inclusive:a.inclusive,message:a.message}),n.dirty())}else if("max"===a.kind){(a.inclusive?e.data>a.value:e.data>=a.value)&&(t=this._getOrReturnCtx(e,t),k(t,{code:m.too_big,type:"bigint",maximum:a.value,inclusive:a.inclusive,message:a.message}),n.dirty())}else"multipleOf"===a.kind?e.data%a.value!==BigInt(0)&&(t=this._getOrReturnCtx(e,t),k(t,{code:m.not_multiple_of,multipleOf:a.value,message:a.message}),n.dirty()):o.assertNever(a);return{status:n.value,value:e.data}}_getInvalidInput(e){const t=this._getOrReturnCtx(e);return k(t,{code:m.invalid_type,expected:l.bigint,received:t.parsedType}),Z}gte(e,t){return this.setLimit("min",e,!0,x.toString(t))}gt(e,t){return this.setLimit("min",e,!1,x.toString(t))}lte(e,t){return this.setLimit("max",e,!0,x.toString(t))}lt(e,t){return this.setLimit("max",e,!1,x.toString(t))}setLimit(t,n,a,r){return new e({...this._def,checks:[...this._def.checks,{kind:t,value:n,inclusive:a,message:x.toString(r)}]})}_addCheck(t){return new e({...this._def,checks:[...this._def.checks,t]})}positive(e){return this._addCheck({kind:"min",value:BigInt(0),inclusive:!1,message:x.toString(e)})}negative(e){return this._addCheck({kind:"max",value:BigInt(0),inclusive:!1,message:x.toString(e)})}nonpositive(e){return this._addCheck({kind:"max",value:BigInt(0),inclusive:!0,message:x.toString(e)})}nonnegative(e){return this._addCheck({kind:"min",value:BigInt(0),inclusive:!0,message:x.toString(e)})}multipleOf(e,t){return this._addCheck({kind:"multipleOf",value:e,message:x.toString(t)})}get minValue(){let e=null;for(const t of this._def.checks)"min"===t.kind&&(null===e||t.value>e)&&(e=t.value);return e}get maxValue(){let e=null;for(const t of this._def.checks)"max"===t.kind&&(null===e||t.value<e)&&(e=t.value);return e}};de.create=e=>{var t;return new de({checks:[],typeName:Qe.ZodBigInt,coerce:null!=(t=null==e?void 0:e.coerce)&&t,...$(e)})};var ue=class extends R{_parse(e){this._def.coerce&&(e.data=Boolean(e.data));if(this._getType(e)!==l.boolean){const t=this._getOrReturnCtx(e);return k(t,{code:m.invalid_type,expected:l.boolean,received:t.parsedType}),Z}return A(e.data)}};ue.create=e=>new ue({typeName:Qe.ZodBoolean,coerce:(null==e?void 0:e.coerce)||!1,...$(e)});var le=class e extends R{_parse(e){this._def.coerce&&(e.data=new Date(e.data));if(this._getType(e)!==l.date){const t=this._getOrReturnCtx(e);return k(t,{code:m.invalid_type,expected:l.date,received:t.parsedType}),Z}if(Number.isNaN(e.data.getTime())){return k(this._getOrReturnCtx(e),{code:m.invalid_date}),Z}const t=new j;let n;for(const a of this._def.checks)"min"===a.kind?e.data.getTime()<a.value&&(n=this._getOrReturnCtx(e,n),k(n,{code:m.too_small,message:a.message,inclusive:!0,exact:!1,minimum:a.value,type:"date"}),t.dirty()):"max"===a.kind?e.data.getTime()>a.value&&(n=this._getOrReturnCtx(e,n),k(n,{code:m.too_big,message:a.message,inclusive:!0,exact:!1,maximum:a.value,type:"date"}),t.dirty()):o.assertNever(a);return{status:t.value,value:new Date(e.data.getTime())}}_addCheck(t){return new e({...this._def,checks:[...this._def.checks,t]})}min(e,t){return this._addCheck({kind:"min",value:e.getTime(),message:x.toString(t)})}max(e,t){return this._addCheck({kind:"max",value:e.getTime(),message:x.toString(t)})}get minDate(){let e=null;for(const t of this._def.checks)"min"===t.kind&&(null===e||t.value>e)&&(e=t.value);return null!=e?new Date(e):null}get maxDate(){let e=null;for(const t of this._def.checks)"max"===t.kind&&(null===e||t.value<e)&&(e=t.value);return null!=e?new Date(e):null}};le.create=e=>new le({checks:[],coerce:(null==e?void 0:e.coerce)||!1,typeName:Qe.ZodDate,...$(e)});var pe=class extends R{_parse(e){if(this._getType(e)!==l.symbol){const t=this._getOrReturnCtx(e);return k(t,{code:m.invalid_type,expected:l.symbol,received:t.parsedType}),Z}return A(e.data)}};pe.create=e=>new pe({typeName:Qe.ZodSymbol,...$(e)});var me=class extends R{_parse(e){if(this._getType(e)!==l.undefined){const t=this._getOrReturnCtx(e);return k(t,{code:m.invalid_type,expected:l.undefined,received:t.parsedType}),Z}return A(e.data)}};me.create=e=>new me({typeName:Qe.ZodUndefined,...$(e)});var he=class extends R{_parse(e){if(this._getType(e)!==l.null){const t=this._getOrReturnCtx(e);return k(t,{code:m.invalid_type,expected:l.null,received:t.parsedType}),Z}return A(e.data)}};he.create=e=>new he({typeName:Qe.ZodNull,...$(e)});var fe=class extends R{constructor(){super(...arguments),this._any=!0}_parse(e){return A(e.data)}};fe.create=e=>new fe({typeName:Qe.ZodAny,...$(e)});var ge=class extends R{constructor(){super(...arguments),this._unknown=!0}_parse(e){return A(e.data)}};ge.create=e=>new ge({typeName:Qe.ZodUnknown,...$(e)});var ye=class extends R{_parse(e){const t=this._getOrReturnCtx(e);return k(t,{code:m.invalid_type,expected:l.never,received:t.parsedType}),Z}};ye.create=e=>new ye({typeName:Qe.ZodNever,...$(e)});var ve=class extends R{_parse(e){if(this._getType(e)!==l.undefined){const t=this._getOrReturnCtx(e);return k(t,{code:m.invalid_type,expected:l.void,received:t.parsedType}),Z}return A(e.data)}};ve.create=e=>new ve({typeName:Qe.ZodVoid,...$(e)});var be=class e extends R{_parse(e){const{ctx:t,status:n}=this._processInputParams(e),a=this._def;if(t.parsedType!==l.array)return k(t,{code:m.invalid_type,expected:l.array,received:t.parsedType}),Z;if(null!==a.exactLength){const e=t.data.length>a.exactLength.value,r=t.data.length<a.exactLength.value;(e||r)&&(k(t,{code:e?m.too_big:m.too_small,minimum:r?a.exactLength.value:void 0,maximum:e?a.exactLength.value:void 0,type:"array",inclusive:!0,exact:!0,message:a.exactLength.message}),n.dirty())}if(null!==a.minLength&&t.data.length<a.minLength.value&&(k(t,{code:m.too_small,minimum:a.minLength.value,type:"array",inclusive:!0,exact:!1,message:a.minLength.message}),n.dirty()),null!==a.maxLength&&t.data.length>a.maxLength.value&&(k(t,{code:m.too_big,maximum:a.maxLength.value,type:"array",inclusive:!0,exact:!1,message:a.maxLength.message}),n.dirty()),t.common.async)return Promise.all([...t.data].map((e,n)=>a.type._parseAsync(new N(t,e,t.path,n)))).then(e=>j.mergeArray(n,e));const r=[...t.data].map((e,n)=>a.type._parseSync(new N(t,e,t.path,n)));return j.mergeArray(n,r)}get element(){return this._def.type}min(t,n){return new e({...this._def,minLength:{value:t,message:x.toString(n)}})}max(t,n){return new e({...this._def,maxLength:{value:t,message:x.toString(n)}})}length(t,n){return new e({...this._def,exactLength:{value:t,message:x.toString(n)}})}nonempty(e){return this.min(1,e)}};function _e(e){if(e instanceof Se){const t={};for(const n in e.shape){const a=e.shape[n];t[n]=ze.create(_e(a))}return new Se({...e._def,shape:()=>t})}return e instanceof be?new be({...e._def,type:_e(e.element)}):e instanceof ze?ze.create(_e(e.unwrap())):e instanceof Le?Le.create(_e(e.unwrap())):e instanceof Pe?Pe.create(e.items.map(e=>_e(e))):e}be.create=(e,t)=>new be({type:e,minLength:null,maxLength:null,exactLength:null,typeName:Qe.ZodArray,...$(t)});var Se=class e extends R{constructor(){super(...arguments),this._cached=null,this.nonstrict=this.passthrough,this.augment=this.extend}_getCached(){if(null!==this._cached)return this._cached;const e=this._def.shape(),t=o.objectKeys(e);return this._cached={shape:e,keys:t},this._cached}_parse(e){if(this._getType(e)!==l.object){const t=this._getOrReturnCtx(e);return k(t,{code:m.invalid_type,expected:l.object,received:t.parsedType}),Z}const{status:t,ctx:n}=this._processInputParams(e),{shape:a,keys:r}=this._getCached(),i=[];if(!(this._def.catchall instanceof ye&&"strip"===this._def.unknownKeys))for(const e in n.data)r.includes(e)||i.push(e);const s=[];for(const e of r){const t=a[e],r=n.data[e];s.push({key:{status:"valid",value:e},value:t._parse(new N(n,r,n.path,e)),alwaysSet:e in n.data})}if(this._def.catchall instanceof ye){const e=this._def.unknownKeys;if("passthrough"===e)for(const e of i)s.push({key:{status:"valid",value:e},value:{status:"valid",value:n.data[e]}});else if("strict"===e)i.length>0&&(k(n,{code:m.unrecognized_keys,keys:i}),t.dirty());else if("strip"!==e)throw new Error("Internal ZodObject error: invalid unknownKeys value.")}else{const e=this._def.catchall;for(const t of i){const a=n.data[t];s.push({key:{status:"valid",value:t},value:e._parse(new N(n,a,n.path,t)),alwaysSet:t in n.data})}}return n.common.async?Promise.resolve().then(async()=>{const e=[];for(const t of s){const n=await t.key,a=await t.value;e.push({key:n,value:a,alwaysSet:t.alwaysSet})}return e}).then(e=>j.mergeObjectSync(t,e)):j.mergeObjectSync(t,s)}get shape(){return this._def.shape()}strict(t){return x.errToObj,new e({...this._def,unknownKeys:"strict",...void 0!==t?{errorMap:(e,n)=>{var a,r,i,s;const o=null!=(i=null==(r=(a=this._def).errorMap)?void 0:r.call(a,e,n).message)?i:n.defaultError;return"unrecognized_keys"===e.code?{message:null!=(s=x.errToObj(t).message)?s:o}:{message:o}}}:{}})}strip(){return new e({...this._def,unknownKeys:"strip"})}passthrough(){return new e({...this._def,unknownKeys:"passthrough"})}extend(t){return new e({...this._def,shape:()=>({...this._def.shape(),...t})})}merge(t){return new e({unknownKeys:t._def.unknownKeys,catchall:t._def.catchall,shape:()=>({...this._def.shape(),...t._def.shape()}),typeName:Qe.ZodObject})}setKey(e,t){return this.augment({[e]:t})}catchall(t){return new e({...this._def,catchall:t})}pick(t){const n={};for(const e of o.objectKeys(t))t[e]&&this.shape[e]&&(n[e]=this.shape[e]);return new e({...this._def,shape:()=>n})}omit(t){const n={};for(const e of o.objectKeys(this.shape))t[e]||(n[e]=this.shape[e]);return new e({...this._def,shape:()=>n})}deepPartial(){return _e(this)}partial(t){const n={};for(const e of o.objectKeys(this.shape)){const a=this.shape[e];t&&!t[e]?n[e]=a:n[e]=a.optional()}return new e({...this._def,shape:()=>n})}required(t){const n={};for(const e of o.objectKeys(this.shape))if(t&&!t[e])n[e]=this.shape[e];else{let t=this.shape[e];for(;t instanceof ze;)t=t._def.innerType;n[e]=t}return new e({...this._def,shape:()=>n})}keyof(){return Ie(o.objectKeys(this.shape))}};Se.create=(e,t)=>new Se({shape:()=>e,unknownKeys:"strip",catchall:ye.create(),typeName:Qe.ZodObject,...$(t)}),Se.strictCreate=(e,t)=>new Se({shape:()=>e,unknownKeys:"strict",catchall:ye.create(),typeName:Qe.ZodObject,...$(t)}),Se.lazycreate=(e,t)=>new Se({shape:e,unknownKeys:"strip",catchall:ye.create(),typeName:Qe.ZodObject,...$(t)});var ke=class extends R{_parse(e){const{ctx:t}=this._processInputParams(e),n=this._def.options;if(t.common.async)return Promise.all(n.map(async e=>{const n={...t,common:{...t.common,issues:[]},parent:null};return{result:await e._parseAsync({data:t.data,path:t.path,parent:n}),ctx:n}})).then(function(e){for(const t of e)if("valid"===t.result.status)return t.result;for(const n of e)if("dirty"===n.result.status)return t.common.issues.push(...n.ctx.common.issues),n.result;const n=e.map(e=>new f(e.ctx.common.issues));return k(t,{code:m.invalid_union,unionErrors:n}),Z});{let e;const a=[];for(const r of n){const n={...t,common:{...t.common,issues:[]},parent:null},i=r._parseSync({data:t.data,path:t.path,parent:n});if("valid"===i.status)return i;"dirty"!==i.status||e||(e={result:i,ctx:n}),n.common.issues.length&&a.push(n.common.issues)}if(e)return t.common.issues.push(...e.ctx.common.issues),e.result;const r=a.map(e=>new f(e));return k(t,{code:m.invalid_union,unionErrors:r}),Z}}get options(){return this._def.options}};ke.create=(e,t)=>new ke({options:e,typeName:Qe.ZodUnion,...$(t)});var xe=e=>e instanceof Ee?xe(e.schema):e instanceof De?xe(e.innerType()):e instanceof Ne?[e.value]:e instanceof $e?e.options:e instanceof Me?o.objectValues(e.enum):e instanceof Fe?xe(e._def.innerType):e instanceof me?[void 0]:e instanceof he?[null]:e instanceof ze?[void 0,...xe(e.unwrap())]:e instanceof Le?[null,...xe(e.unwrap())]:e instanceof Je||e instanceof We?xe(e.unwrap()):e instanceof Ue?xe(e._def.innerType):[],we=class e extends R{_parse(e){const{ctx:t}=this._processInputParams(e);if(t.parsedType!==l.object)return k(t,{code:m.invalid_type,expected:l.object,received:t.parsedType}),Z;const n=this.discriminator,a=t.data[n],r=this.optionsMap.get(a);return r?t.common.async?r._parseAsync({data:t.data,path:t.path,parent:t}):r._parseSync({data:t.data,path:t.path,parent:t}):(k(t,{code:m.invalid_union_discriminator,options:Array.from(this.optionsMap.keys()),path:[n]}),Z)}get discriminator(){return this._def.discriminator}get options(){return this._def.options}get optionsMap(){return this._def.optionsMap}static create(t,n,a){const r=new Map;for(const e of n){const n=xe(e.shape[t]);if(!n.length)throw new Error(`A discriminator value for key \`${t}\` could not be extracted from all schema options`);for(const a of n){if(r.has(a))throw new Error(`Discriminator property ${String(t)} has duplicate value ${String(a)}`);r.set(a,e)}}return new e({typeName:Qe.ZodDiscriminatedUnion,discriminator:t,options:n,optionsMap:r,...$(a)})}};function je(e,t){const n=p(e),a=p(t);if(e===t)return{valid:!0,data:e};if(n===l.object&&a===l.object){const n=o.objectKeys(t),a=o.objectKeys(e).filter(e=>-1!==n.indexOf(e)),r={...e,...t};for(const n of a){const a=je(e[n],t[n]);if(!a.valid)return{valid:!1};r[n]=a.data}return{valid:!0,data:r}}if(n===l.array&&a===l.array){if(e.length!==t.length)return{valid:!1};const n=[];for(let a=0;a<e.length;a++){const r=je(e[a],t[a]);if(!r.valid)return{valid:!1};n.push(r.data)}return{valid:!0,data:n}}return n===l.date&&a===l.date&&+e===+t?{valid:!0,data:e}:{valid:!1}}var Ze=class extends R{_parse(e){const{status:t,ctx:n}=this._processInputParams(e),a=(e,a)=>{if(T(e)||T(a))return Z;const r=je(e.value,a.value);return r.valid?((O(e)||O(a))&&t.dirty(),{status:t.value,value:r.data}):(k(n,{code:m.invalid_intersection_types}),Z)};return n.common.async?Promise.all([this._def.left._parseAsync({data:n.data,path:n.path,parent:n}),this._def.right._parseAsync({data:n.data,path:n.path,parent:n})]).then(([e,t])=>a(e,t)):a(this._def.left._parseSync({data:n.data,path:n.path,parent:n}),this._def.right._parseSync({data:n.data,path:n.path,parent:n}))}};Ze.create=(e,t,n)=>new Ze({left:e,right:t,typeName:Qe.ZodIntersection,...$(n)});var Pe=class e extends R{_parse(e){const{status:t,ctx:n}=this._processInputParams(e);if(n.parsedType!==l.array)return k(n,{code:m.invalid_type,expected:l.array,received:n.parsedType}),Z;if(n.data.length<this._def.items.length)return k(n,{code:m.too_small,minimum:this._def.items.length,inclusive:!0,exact:!1,type:"array"}),Z;!this._def.rest&&n.data.length>this._def.items.length&&(k(n,{code:m.too_big,maximum:this._def.items.length,inclusive:!0,exact:!1,type:"array"}),t.dirty());const a=[...n.data].map((e,t)=>{const a=this._def.items[t]||this._def.rest;return a?a._parse(new N(n,e,n.path,t)):null}).filter(e=>!!e);return n.common.async?Promise.all(a).then(e=>j.mergeArray(t,e)):j.mergeArray(t,a)}get items(){return this._def.items}rest(t){return new e({...this._def,rest:t})}};Pe.create=(e,t)=>{if(!Array.isArray(e))throw new Error("You must pass an array of schemas to z.tuple([ ... ])");return new Pe({items:e,typeName:Qe.ZodTuple,rest:null,...$(t)})};var Ae=class e extends R{get keySchema(){return this._def.keyType}get valueSchema(){return this._def.valueType}_parse(e){const{status:t,ctx:n}=this._processInputParams(e);if(n.parsedType!==l.object)return k(n,{code:m.invalid_type,expected:l.object,received:n.parsedType}),Z;const a=[],r=this._def.keyType,i=this._def.valueType;for(const e in n.data)a.push({key:r._parse(new N(n,e,n.path,e)),value:i._parse(new N(n,n.data[e],n.path,e)),alwaysSet:e in n.data});return n.common.async?j.mergeObjectAsync(t,a):j.mergeObjectSync(t,a)}get element(){return this._def.valueType}static create(t,n,a){return new e(n instanceof R?{keyType:t,valueType:n,typeName:Qe.ZodRecord,...$(a)}:{keyType:se.create(),valueType:t,typeName:Qe.ZodRecord,...$(n)})}},Te=class extends R{get keySchema(){return this._def.keyType}get valueSchema(){return this._def.valueType}_parse(e){const{status:t,ctx:n}=this._processInputParams(e);if(n.parsedType!==l.map)return k(n,{code:m.invalid_type,expected:l.map,received:n.parsedType}),Z;const a=this._def.keyType,r=this._def.valueType,i=[...n.data.entries()].map(([e,t],i)=>({key:a._parse(new N(n,e,n.path,[i,"key"])),value:r._parse(new N(n,t,n.path,[i,"value"]))}));if(n.common.async){const e=new Map;return Promise.resolve().then(async()=>{for(const n of i){const a=await n.key,r=await n.value;if("aborted"===a.status||"aborted"===r.status)return Z;"dirty"!==a.status&&"dirty"!==r.status||t.dirty(),e.set(a.value,r.value)}return{status:t.value,value:e}})}{const e=new Map;for(const n of i){const a=n.key,r=n.value;if("aborted"===a.status||"aborted"===r.status)return Z;"dirty"!==a.status&&"dirty"!==r.status||t.dirty(),e.set(a.value,r.value)}return{status:t.value,value:e}}}};Te.create=(e,t,n)=>new Te({valueType:t,keyType:e,typeName:Qe.ZodMap,...$(n)});var Oe=class e extends R{_parse(e){const{status:t,ctx:n}=this._processInputParams(e);if(n.parsedType!==l.set)return k(n,{code:m.invalid_type,expected:l.set,received:n.parsedType}),Z;const a=this._def;null!==a.minSize&&n.data.size<a.minSize.value&&(k(n,{code:m.too_small,minimum:a.minSize.value,type:"set",inclusive:!0,exact:!1,message:a.minSize.message}),t.dirty()),null!==a.maxSize&&n.data.size>a.maxSize.value&&(k(n,{code:m.too_big,maximum:a.maxSize.value,type:"set",inclusive:!0,exact:!1,message:a.maxSize.message}),t.dirty());const r=this._def.valueType;function i(e){const n=new Set;for(const a of e){if("aborted"===a.status)return Z;"dirty"===a.status&&t.dirty(),n.add(a.value)}return{status:t.value,value:n}}const s=[...n.data.values()].map((e,t)=>r._parse(new N(n,e,n.path,t)));return n.common.async?Promise.all(s).then(e=>i(e)):i(s)}min(t,n){return new e({...this._def,minSize:{value:t,message:x.toString(n)}})}max(t,n){return new e({...this._def,maxSize:{value:t,message:x.toString(n)}})}size(e,t){return this.min(e,t).max(e,t)}nonempty(e){return this.min(1,e)}};Oe.create=(e,t)=>new Oe({valueType:e,minSize:null,maxSize:null,typeName:Qe.ZodSet,...$(t)});var Ce=class e extends R{constructor(){super(...arguments),this.validate=this.implement}_parse(e){const{ctx:t}=this._processInputParams(e);if(t.parsedType!==l.function)return k(t,{code:m.invalid_type,expected:l.function,received:t.parsedType}),Z;function n(e,n){return _({data:e,path:t.path,errorMaps:[t.common.contextualErrorMap,t.schemaErrorMap,b(),g].filter(e=>!!e),issueData:{code:m.invalid_arguments,argumentsError:n}})}function a(e,n){return _({data:e,path:t.path,errorMaps:[t.common.contextualErrorMap,t.schemaErrorMap,b(),g].filter(e=>!!e),issueData:{code:m.invalid_return_type,returnTypeError:n}})}const r={errorMap:t.common.contextualErrorMap},i=t.data;if(this._def.returns instanceof Re){const e=this;return A(async function(...t){const s=new f([]),o=await e._def.args.parseAsync(t,r).catch(e=>{throw s.addIssue(n(t,e)),s}),c=await Reflect.apply(i,this,o);return await e._def.returns._def.type.parseAsync(c,r).catch(e=>{throw s.addIssue(a(c,e)),s})})}{const e=this;return A(function(...t){const s=e._def.args.safeParse(t,r);if(!s.success)throw new f([n(t,s.error)]);const o=Reflect.apply(i,this,s.data),c=e._def.returns.safeParse(o,r);if(!c.success)throw new f([a(o,c.error)]);return c.data})}}parameters(){return this._def.args}returnType(){return this._def.returns}args(...t){return new e({...this._def,args:Pe.create(t).rest(ge.create())})}returns(t){return new e({...this._def,returns:t})}implement(e){return this.parse(e)}strictImplement(e){return this.parse(e)}static create(t,n,a){return new e({args:t||Pe.create([]).rest(ge.create()),returns:n||ge.create(),typeName:Qe.ZodFunction,...$(a)})}},Ee=class extends R{get schema(){return this._def.getter()}_parse(e){const{ctx:t}=this._processInputParams(e);return this._def.getter()._parse({data:t.data,path:t.path,parent:t})}};Ee.create=(e,t)=>new Ee({getter:e,typeName:Qe.ZodLazy,...$(t)});var Ne=class extends R{_parse(e){if(e.data!==this._def.value){const t=this._getOrReturnCtx(e);return k(t,{received:t.data,code:m.invalid_literal,expected:this._def.value}),Z}return{status:"valid",value:e.data}}get value(){return this._def.value}};function Ie(e,t){return new $e({values:e,typeName:Qe.ZodEnum,...$(t)})}Ne.create=(e,t)=>new Ne({value:e,typeName:Qe.ZodLiteral,...$(t)});var $e=class e extends R{_parse(e){if("string"!=typeof e.data){const t=this._getOrReturnCtx(e),n=this._def.values;return k(t,{expected:o.joinValues(n),received:t.parsedType,code:m.invalid_type}),Z}if(this._cache||(this._cache=new Set(this._def.values)),!this._cache.has(e.data)){const t=this._getOrReturnCtx(e),n=this._def.values;return k(t,{received:t.data,code:m.invalid_enum_value,options:n}),Z}return A(e.data)}get options(){return this._def.values}get enum(){const e={};for(const t of this._def.values)e[t]=t;return e}get Values(){const e={};for(const t of this._def.values)e[t]=t;return e}get Enum(){const e={};for(const t of this._def.values)e[t]=t;return e}extract(t,n=this._def){return e.create(t,{...this._def,...n})}exclude(t,n=this._def){return e.create(this.options.filter(e=>!t.includes(e)),{...this._def,...n})}};$e.create=Ie;var Me=class extends R{_parse(e){const t=o.getValidEnumValues(this._def.values),n=this._getOrReturnCtx(e);if(n.parsedType!==l.string&&n.parsedType!==l.number){const e=o.objectValues(t);return k(n,{expected:o.joinValues(e),received:n.parsedType,code:m.invalid_type}),Z}if(this._cache||(this._cache=new Set(o.getValidEnumValues(this._def.values))),!this._cache.has(e.data)){const e=o.objectValues(t);return k(n,{received:n.data,code:m.invalid_enum_value,options:e}),Z}return A(e.data)}get enum(){return this._def.values}};Me.create=(e,t)=>new Me({values:e,typeName:Qe.ZodNativeEnum,...$(t)});var Re=class extends R{unwrap(){return this._def.type}_parse(e){const{ctx:t}=this._processInputParams(e);if(t.parsedType!==l.promise&&!1===t.common.async)return k(t,{code:m.invalid_type,expected:l.promise,received:t.parsedType}),Z;const n=t.parsedType===l.promise?t.data:Promise.resolve(t.data);return A(n.then(e=>this._def.type.parseAsync(e,{path:t.path,errorMap:t.common.contextualErrorMap})))}};Re.create=(e,t)=>new Re({type:e,typeName:Qe.ZodPromise,...$(t)});var De=class extends R{innerType(){return this._def.schema}sourceType(){return this._def.schema._def.typeName===Qe.ZodEffects?this._def.schema.sourceType():this._def.schema}_parse(e){const{status:t,ctx:n}=this._processInputParams(e),a=this._def.effect||null,r={addIssue:e=>{k(n,e),e.fatal?t.abort():t.dirty()},get path(){return n.path}};if(r.addIssue=r.addIssue.bind(r),"preprocess"===a.type){const e=a.transform(n.data,r);if(n.common.async)return Promise.resolve(e).then(async e=>{if("aborted"===t.value)return Z;const a=await this._def.schema._parseAsync({data:e,path:n.path,parent:n});return"aborted"===a.status?Z:"dirty"===a.status||"dirty"===t.value?P(a.value):a});{if("aborted"===t.value)return Z;const a=this._def.schema._parseSync({data:e,path:n.path,parent:n});return"aborted"===a.status?Z:"dirty"===a.status||"dirty"===t.value?P(a.value):a}}if("refinement"===a.type){const e=e=>{const t=a.refinement(e,r);if(n.common.async)return Promise.resolve(t);if(t instanceof Promise)throw new Error("Async refinement encountered during synchronous parse operation. Use .parseAsync instead.");return e};if(!1===n.common.async){const a=this._def.schema._parseSync({data:n.data,path:n.path,parent:n});return"aborted"===a.status?Z:("dirty"===a.status&&t.dirty(),e(a.value),{status:t.value,value:a.value})}return this._def.schema._parseAsync({data:n.data,path:n.path,parent:n}).then(n=>"aborted"===n.status?Z:("dirty"===n.status&&t.dirty(),e(n.value).then(()=>({status:t.value,value:n.value}))))}if("transform"===a.type){if(!1===n.common.async){const e=this._def.schema._parseSync({data:n.data,path:n.path,parent:n});if(!C(e))return Z;const i=a.transform(e.value,r);if(i instanceof Promise)throw new Error("Asynchronous transform encountered during synchronous parse operation. Use .parseAsync instead.");return{status:t.value,value:i}}return this._def.schema._parseAsync({data:n.data,path:n.path,parent:n}).then(e=>C(e)?Promise.resolve(a.transform(e.value,r)).then(e=>({status:t.value,value:e})):Z)}o.assertNever(a)}};De.create=(e,t,n)=>new De({schema:e,typeName:Qe.ZodEffects,effect:t,...$(n)}),De.createWithPreprocess=(e,t,n)=>new De({schema:t,effect:{type:"preprocess",transform:e},typeName:Qe.ZodEffects,...$(n)});var ze=class extends R{_parse(e){return this._getType(e)===l.undefined?A(void 0):this._def.innerType._parse(e)}unwrap(){return this._def.innerType}};ze.create=(e,t)=>new ze({innerType:e,typeName:Qe.ZodOptional,...$(t)});var Le=class extends R{_parse(e){return this._getType(e)===l.null?A(null):this._def.innerType._parse(e)}unwrap(){return this._def.innerType}};Le.create=(e,t)=>new Le({innerType:e,typeName:Qe.ZodNullable,...$(t)});var Fe=class extends R{_parse(e){const{ctx:t}=this._processInputParams(e);let n=t.data;return t.parsedType===l.undefined&&(n=this._def.defaultValue()),this._def.innerType._parse({data:n,path:t.path,parent:t})}removeDefault(){return this._def.innerType}};Fe.create=(e,t)=>new Fe({innerType:e,typeName:Qe.ZodDefault,defaultValue:"function"==typeof t.default?t.default:()=>t.default,...$(t)});var Ue=class extends R{_parse(e){const{ctx:t}=this._processInputParams(e),n={...t,common:{...t.common,issues:[]}},a=this._def.innerType._parse({data:n.data,path:n.path,parent:{...n}});return E(a)?a.then(e=>({status:"valid",value:"valid"===e.status?e.value:this._def.catchValue({get error(){return new f(n.common.issues)},input:n.data})})):{status:"valid",value:"valid"===a.status?a.value:this._def.catchValue({get error(){return new f(n.common.issues)},input:n.data})}}removeCatch(){return this._def.innerType}};Ue.create=(e,t)=>new Ue({innerType:e,typeName:Qe.ZodCatch,catchValue:"function"==typeof t.catch?t.catch:()=>t.catch,...$(t)});var Be=class extends R{_parse(e){if(this._getType(e)!==l.nan){const t=this._getOrReturnCtx(e);return k(t,{code:m.invalid_type,expected:l.nan,received:t.parsedType}),Z}return{status:"valid",value:e.data}}};Be.create=e=>new Be({typeName:Qe.ZodNaN,...$(e)});var Ve=Symbol("zod_brand"),Je=class extends R{_parse(e){const{ctx:t}=this._processInputParams(e),n=t.data;return this._def.type._parse({data:n,path:t.path,parent:t})}unwrap(){return this._def.type}},qe=class e extends R{_parse(e){const{status:t,ctx:n}=this._processInputParams(e);if(n.common.async){return(async()=>{const e=await this._def.in._parseAsync({data:n.data,path:n.path,parent:n});return"aborted"===e.status?Z:"dirty"===e.status?(t.dirty(),P(e.value)):this._def.out._parseAsync({data:e.value,path:n.path,parent:n})})()}{const e=this._def.in._parseSync({data:n.data,path:n.path,parent:n});return"aborted"===e.status?Z:"dirty"===e.status?(t.dirty(),{status:"dirty",value:e.value}):this._def.out._parseSync({data:e.value,path:n.path,parent:n})}}static create(t,n){return new e({in:t,out:n,typeName:Qe.ZodPipeline})}},We=class extends R{_parse(e){const t=this._def.innerType._parse(e),n=e=>(C(e)&&(e.value=Object.freeze(e.value)),e);return E(t)?t.then(e=>n(e)):n(t)}unwrap(){return this._def.innerType}};function Ke(e,t){const n="function"==typeof e?e(t):"string"==typeof e?{message:e}:e;return"string"==typeof n?{message:n}:n}function He(e,t={},n){return e?fe.create().superRefine((a,r)=>{var i,s;const o=e(a);if(o instanceof Promise)return o.then(e=>{var i,s;if(!e){const e=Ke(t,a),o=null==(s=null!=(i=e.fatal)?i:n)||s;r.addIssue({code:"custom",...e,fatal:o})}});if(!o){const e=Ke(t,a),o=null==(s=null!=(i=e.fatal)?i:n)||s;r.addIssue({code:"custom",...e,fatal:o})}}):fe.create()}We.create=(e,t)=>new We({innerType:e,typeName:Qe.ZodReadonly,...$(t)});var Qe,Ge,Ye={object:Se.lazycreate};(Ge=Qe||(Qe={})).ZodString="ZodString",Ge.ZodNumber="ZodNumber",Ge.ZodNaN="ZodNaN",Ge.ZodBigInt="ZodBigInt",Ge.ZodBoolean="ZodBoolean",Ge.ZodDate="ZodDate",Ge.ZodSymbol="ZodSymbol",Ge.ZodUndefined="ZodUndefined",Ge.ZodNull="ZodNull",Ge.ZodAny="ZodAny",Ge.ZodUnknown="ZodUnknown",Ge.ZodNever="ZodNever",Ge.ZodVoid="ZodVoid",Ge.ZodArray="ZodArray",Ge.ZodObject="ZodObject",Ge.ZodUnion="ZodUnion",Ge.ZodDiscriminatedUnion="ZodDiscriminatedUnion",Ge.ZodIntersection="ZodIntersection",Ge.ZodTuple="ZodTuple",Ge.ZodRecord="ZodRecord",Ge.ZodMap="ZodMap",Ge.ZodSet="ZodSet",Ge.ZodFunction="ZodFunction",Ge.ZodLazy="ZodLazy",Ge.ZodLiteral="ZodLiteral",Ge.ZodEnum="ZodEnum",Ge.ZodEffects="ZodEffects",Ge.ZodNativeEnum="ZodNativeEnum",Ge.ZodOptional="ZodOptional",Ge.ZodNullable="ZodNullable",Ge.ZodDefault="ZodDefault",Ge.ZodCatch="ZodCatch",Ge.ZodPromise="ZodPromise",Ge.ZodBranded="ZodBranded",Ge.ZodPipeline="ZodPipeline",Ge.ZodReadonly="ZodReadonly";var Xe=(e,t={message:`Input not instance of ${e.name}`})=>He(t=>t instanceof e,t),et=se.create,tt=ce.create,nt=Be.create,at=de.create,rt=ue.create,it=le.create,st=pe.create,ot=me.create,ct=he.create,dt=fe.create,ut=ge.create,lt=ye.create,pt=ve.create,mt=be.create,ht=Se.create,ft=Se.strictCreate,gt=ke.create,yt=we.create,vt=Ze.create,bt=Pe.create,_t=Ae.create,St=Te.create,kt=Oe.create,xt=Ce.create,wt=Ee.create,jt=Ne.create,Zt=$e.create,Pt=Me.create,At=Re.create,Tt=De.create,Ot=ze.create,Ct=Le.create,Et=De.createWithPreprocess,Nt=qe.create,It=()=>et().optional(),$t=()=>tt().optional(),Mt=()=>rt().optional(),Rt={string:e=>se.create({...e,coerce:!0}),number:e=>ce.create({...e,coerce:!0}),boolean:e=>ue.create({...e,coerce:!0}),bigint:e=>de.create({...e,coerce:!0}),date:e=>le.create({...e,coerce:!0})},Dt=Z,zt=Symbol("Let zodToJsonSchema decide on which parser to use"),Lt={name:void 0,$refStrategy:"root",basePath:["#"],effectStrategy:"input",pipeStrategy:"all",dateStrategy:"format:date-time",mapStrategy:"entries",removeAdditionalStrategy:"passthrough",allowedAdditionalProperties:!0,rejectedAdditionalProperties:!1,definitionPath:"definitions",target:"jsonSchema7",strictUnions:!1,definitions:{},errorMessages:!1,markdownDescription:!1,patternStrategy:"escape",applyRegexFlags:!1,emailStrategy:"format:email",base64Strategy:"contentEncoding:base64",nameStrategy:"ref",openAiAnyTypeName:"OpenAiAnyType"},Ft=e=>{const t=(e=>"string"==typeof e?{...Lt,name:e}:{...Lt,...e})(e),n=void 0!==t.name?[...t.basePath,t.definitionPath,t.name]:t.basePath;return{...t,flags:{hasReferencedOpenAiAnyType:!1},currentPath:n,propertyPath:void 0,seen:new Map(Object.entries(t.definitions).map(([e,n])=>[n._def,{def:n._def,path:[...t.basePath,t.definitionPath,e],jsonSchema:void 0}]))}};function Ut(e,t,n,a){(null==a?void 0:a.errorMessages)&&n&&(e.errorMessage={...e.errorMessage,[t]:n})}function Bt(e,t,n,a,r){e[t]=n,Ut(e,t,a,r)}var Vt=(e,t)=>{let n=0;for(;n<e.length&&n<t.length&&e[n]===t[n];n++);return[(e.length-n).toString(),...t.slice(n)].join("/")};function Jt(e){if("openAi"!==e.target)return{};const t=[...e.basePath,e.definitionPath,e.openAiAnyTypeName];return e.flags.hasReferencedOpenAiAnyType=!0,{$ref:"relative"===e.$refStrategy?Vt(t,e.currentPath):t.join("/")}}function qt(e,t){return _n(e.type._def,t)}function Wt(e,t,n){const a=null!=n?n:t.dateStrategy;if(Array.isArray(a))return{anyOf:a.map((n,a)=>Wt(e,t,n))};switch(a){case"string":case"format:date-time":return{type:"string",format:"date-time"};case"format:date":return{type:"string",format:"date"};case"integer":return Kt(e,t)}}var Kt=(e,t)=>{const n={type:"integer",format:"unix-time"};if("openApi3"===t.target)return n;for(const a of e.checks)switch(a.kind){case"min":Bt(n,"minimum",a.value,a.message,t);break;case"max":Bt(n,"maximum",a.value,a.message,t)}return n};var Ht=void 0,Qt=/^[cC][^\s-]{8,}$/,Gt=/^[0-9a-z]+$/,Yt=/^[0-9A-HJKMNP-TV-Z]{26}$/,Xt=/^(?!\.)(?!.*\.\.)([a-zA-Z0-9_'+\-\.]*)[a-zA-Z0-9_+-]@([a-zA-Z0-9][a-zA-Z0-9\-]*\.)+[a-zA-Z]{2,}$/,en=()=>(void 0===Ht&&(Ht=RegExp("^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$","u")),Ht),tn=/^(?:(?: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])\/(3[0-2]|[12]?[0-9])$/,nn=/^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/,an=/^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}=))?$/,rn=/^([0-9a-zA-Z-_]{4})*(([0-9a-zA-Z-_]{2}(==)?)|([0-9a-zA-Z-_]{3}(=)?))?$/,sn=/^[a-zA-Z0-9_-]{21}$/,on=/^[A-Za-z0-9-_]+\.[A-Za-z0-9-_]+\.[A-Za-z0-9-_]*$/;function cn(e,t){const n={type:"string"};if(e.checks)for(const a of e.checks)switch(a.kind){case"min":Bt(n,"minLength","number"==typeof n.minLength?Math.max(n.minLength,a.value):a.value,a.message,t);break;case"max":Bt(n,"maxLength","number"==typeof n.maxLength?Math.min(n.maxLength,a.value):a.value,a.message,t);break;case"email":switch(t.emailStrategy){case"format:email":ln(n,"email",a.message,t);break;case"format:idn-email":ln(n,"idn-email",a.message,t);break;case"pattern:zod":pn(n,Xt,a.message,t)}break;case"url":ln(n,"uri",a.message,t);break;case"uuid":ln(n,"uuid",a.message,t);break;case"regex":pn(n,a.regex,a.message,t);break;case"cuid":pn(n,Qt,a.message,t);break;case"cuid2":pn(n,Gt,a.message,t);break;case"startsWith":pn(n,RegExp(`^${dn(a.value,t)}`),a.message,t);break;case"endsWith":pn(n,RegExp(`${dn(a.value,t)}$`),a.message,t);break;case"datetime":ln(n,"date-time",a.message,t);break;case"date":ln(n,"date",a.message,t);break;case"time":ln(n,"time",a.message,t);break;case"duration":ln(n,"duration",a.message,t);break;case"length":Bt(n,"minLength","number"==typeof n.minLength?Math.max(n.minLength,a.value):a.value,a.message,t),Bt(n,"maxLength","number"==typeof n.maxLength?Math.min(n.maxLength,a.value):a.value,a.message,t);break;case"includes":pn(n,RegExp(dn(a.value,t)),a.message,t);break;case"ip":"v6"!==a.version&&ln(n,"ipv4",a.message,t),"v4"!==a.version&&ln(n,"ipv6",a.message,t);break;case"base64url":pn(n,rn,a.message,t);break;case"jwt":pn(n,on,a.message,t);break;case"cidr":"v6"!==a.version&&pn(n,tn,a.message,t),"v4"!==a.version&&pn(n,nn,a.message,t);break;case"emoji":pn(n,en(),a.message,t);break;case"ulid":pn(n,Yt,a.message,t);break;case"base64":switch(t.base64Strategy){case"format:binary":ln(n,"binary",a.message,t);break;case"contentEncoding:base64":Bt(n,"contentEncoding","base64",a.message,t);break;case"pattern:zod":pn(n,an,a.message,t)}break;case"nanoid":pn(n,sn,a.message,t)}return n}function dn(e,t){return"escape"===t.patternStrategy?function(e){let t="";for(let n=0;n<e.length;n++)un.has(e[n])||(t+="\\"),t+=e[n];return t}(e):e}var un=new Set("ABCDEFGHIJKLMNOPQRSTUVXYZabcdefghijklmnopqrstuvxyz0123456789");function ln(e,t,n,a){var r;e.format||(null==(r=e.anyOf)?void 0:r.some(e=>e.format))?(e.anyOf||(e.anyOf=[]),e.format&&(e.anyOf.push({format:e.format,...e.errorMessage&&a.errorMessages&&{errorMessage:{format:e.errorMessage.format}}}),delete e.format,e.errorMessage&&(delete e.errorMessage.format,0===Object.keys(e.errorMessage).length&&delete e.errorMessage)),e.anyOf.push({format:t,...n&&a.errorMessages&&{errorMessage:{format:n}}})):Bt(e,"format",t,n,a)}function pn(e,t,n,a){var r;e.pattern||(null==(r=e.allOf)?void 0:r.some(e=>e.pattern))?(e.allOf||(e.allOf=[]),e.pattern&&(e.allOf.push({pattern:e.pattern,...e.errorMessage&&a.errorMessages&&{errorMessage:{pattern:e.errorMessage.pattern}}}),delete e.pattern,e.errorMessage&&(delete e.errorMessage.pattern,0===Object.keys(e.errorMessage).length&&delete e.errorMessage)),e.allOf.push({pattern:mn(t,a),...n&&a.errorMessages&&{errorMessage:{pattern:n}}})):Bt(e,"pattern",mn(t,a),n,a)}function mn(e,t){var n;if(!t.applyRegexFlags||!e.flags)return e.source;const a=e.flags.includes("i"),r=e.flags.includes("m"),i=e.flags.includes("s"),s=a?e.source.toLowerCase():e.source;let o="",c=!1,d=!1,u=!1;for(let e=0;e<s.length;e++)if(c)o+=s[e],c=!1;else{if(a)if(d){if(s[e].match(/[a-z]/)){u?(o+=s[e],o+=`${s[e-2]}-${s[e]}`.toUpperCase(),u=!1):"-"===s[e+1]&&(null==(n=s[e+2])?void 0:n.match(/[a-z]/))?(o+=s[e],u=!0):o+=`${s[e]}${s[e].toUpperCase()}`;continue}}else if(s[e].match(/[a-z]/)){o+=`[${s[e]}${s[e].toUpperCase()}]`;continue}if(r){if("^"===s[e]){o+="(^|(?<=[\r\n]))";continue}if("$"===s[e]){o+="($|(?=[\r\n]))";continue}}i&&"."===s[e]?o+=d?`${s[e]}\r\n`:`[${s[e]}\r\n]`:(o+=s[e],"\\"===s[e]?c=!0:d&&"]"===s[e]?d=!1:d||"["!==s[e]||(d=!0))}try{new RegExp(o)}catch(n){return console.warn(`Could not convert regex pattern at ${t.currentPath.join("/")} to a flag-independent form! Falling back to the flag-ignorant source`),e.source}return o}function hn(e,t){var n,a,r,i,s,o,c;if("openAi"===t.target&&console.warn("Warning: OpenAI may not support records in schemas! Try an array of key-value pairs instead."),"openApi3"===t.target&&(null==(n=e.keyType)?void 0:n._def.typeName)===Qe.ZodEnum)return{type:"object",required:e.keyType._def.values,properties:e.keyType._def.values.reduce((n,a)=>{var r;return{...n,[a]:null!=(r=_n(e.valueType._def,{...t,currentPath:[...t.currentPath,"properties",a]}))?r:Jt(t)}},{}),additionalProperties:t.rejectedAdditionalProperties};const d={type:"object",additionalProperties:null!=(a=_n(e.valueType._def,{...t,currentPath:[...t.currentPath,"additionalProperties"]}))?a:t.allowedAdditionalProperties};if("openApi3"===t.target)return d;if((null==(r=e.keyType)?void 0:r._def.typeName)===Qe.ZodString&&(null==(i=e.keyType._def.checks)?void 0:i.length)){const{type:n,...a}=cn(e.keyType._def,t);return{...d,propertyNames:a}}if((null==(s=e.keyType)?void 0:s._def.typeName)===Qe.ZodEnum)return{...d,propertyNames:{enum:e.keyType._def.values}};if((null==(o=e.keyType)?void 0:o._def.typeName)===Qe.ZodBranded&&e.keyType._def.type._def.typeName===Qe.ZodString&&(null==(c=e.keyType._def.type._def.checks)?void 0:c.length)){const{type:n,...a}=qt(e.keyType._def,t);return{...d,propertyNames:a}}return d}var fn={ZodString:"string",ZodNumber:"number",ZodBigInt:"integer",ZodBoolean:"boolean",ZodNull:"null"};var gn=(e,t)=>{const n=(e.options instanceof Map?Array.from(e.options.values()):e.options).map((e,n)=>_n(e._def,{...t,currentPath:[...t.currentPath,"anyOf",`${n}`]})).filter(e=>!!e&&(!t.strictUnions||"object"==typeof e&&Object.keys(e).length>0));return n.length?{anyOf:n}:void 0};function yn(e,t){const n="openAi"===t.target,a={type:"object",properties:{}},r=[],i=e.shape();for(const e in i){let s=i[e];if(void 0===s||void 0===s._def)continue;let o=vn(s);o&&n&&("ZodOptional"===s._def.typeName&&(s=s._def.innerType),s.isNullable()||(s=s.nullable()),o=!1);const c=_n(s._def,{...t,currentPath:[...t.currentPath,"properties",e],propertyPath:[...t.currentPath,"properties",e]});void 0!==c&&(a.properties[e]=c,o||r.push(e))}r.length&&(a.required=r);const s=function(e,t){if("ZodNever"!==e.catchall._def.typeName)return _n(e.catchall._def,{...t,currentPath:[...t.currentPath,"additionalProperties"]});switch(e.unknownKeys){case"passthrough":return t.allowedAdditionalProperties;case"strict":return t.rejectedAdditionalProperties;case"strip":return"strict"===t.removeAdditionalStrategy?t.allowedAdditionalProperties:t.rejectedAdditionalProperties}}(e,t);return void 0!==s&&(a.additionalProperties=s),a}function vn(e){try{return e.isOptional()}catch(e){return!0}}var bn=(e,t,n)=>{switch(t){case Qe.ZodString:return cn(e,n);case Qe.ZodNumber:return function(e,t){const n={type:"number"};if(!e.checks)return n;for(const a of e.checks)switch(a.kind){case"int":n.type="integer",Ut(n,"type",a.message,t);break;case"min":"jsonSchema7"===t.target?a.inclusive?Bt(n,"minimum",a.value,a.message,t):Bt(n,"exclusiveMinimum",a.value,a.message,t):(a.inclusive||(n.exclusiveMinimum=!0),Bt(n,"minimum",a.value,a.message,t));break;case"max":"jsonSchema7"===t.target?a.inclusive?Bt(n,"maximum",a.value,a.message,t):Bt(n,"exclusiveMaximum",a.value,a.message,t):(a.inclusive||(n.exclusiveMaximum=!0),Bt(n,"maximum",a.value,a.message,t));break;case"multipleOf":Bt(n,"multipleOf",a.value,a.message,t)}return n}(e,n);case Qe.ZodObject:return yn(e,n);case Qe.ZodBigInt:return function(e,t){const n={type:"integer",format:"int64"};if(!e.checks)return n;for(const a of e.checks)switch(a.kind){case"min":"jsonSchema7"===t.target?a.inclusive?Bt(n,"minimum",a.value,a.message,t):Bt(n,"exclusiveMinimum",a.value,a.message,t):(a.inclusive||(n.exclusiveMinimum=!0),Bt(n,"minimum",a.value,a.message,t));break;case"max":"jsonSchema7"===t.target?a.inclusive?Bt(n,"maximum",a.value,a.message,t):Bt(n,"exclusiveMaximum",a.value,a.message,t):(a.inclusive||(n.exclusiveMaximum=!0),Bt(n,"maximum",a.value,a.message,t));break;case"multipleOf":Bt(n,"multipleOf",a.value,a.message,t)}return n}(e,n);case Qe.ZodBoolean:return{type:"boolean"};case Qe.ZodDate:return Wt(e,n);case Qe.ZodUndefined:return function(e){return{not:Jt(e)}}(n);case Qe.ZodNull:return function(e){return"openApi3"===e.target?{enum:["null"],nullable:!0}:{type:"null"}}(n);case Qe.ZodArray:return function(e,t){var n,a,r;const i={type:"array"};return(null==(n=e.type)?void 0:n._def)&&(null==(r=null==(a=e.type)?void 0:a._def)?void 0:r.typeName)!==Qe.ZodAny&&(i.items=_n(e.type._def,{...t,currentPath:[...t.currentPath,"items"]})),e.minLength&&Bt(i,"minItems",e.minLength.value,e.minLength.message,t),e.maxLength&&Bt(i,"maxItems",e.maxLength.value,e.maxLength.message,t),e.exactLength&&(Bt(i,"minItems",e.exactLength.value,e.exactLength.message,t),Bt(i,"maxItems",e.exactLength.value,e.exactLength.message,t)),i}(e,n);case Qe.ZodUnion:case Qe.ZodDiscriminatedUnion:return function(e,t){if("openApi3"===t.target)return gn(e,t);const n=e.options instanceof Map?Array.from(e.options.values()):e.options;if(n.every(e=>e._def.typeName in fn&&(!e._def.checks||!e._def.checks.length))){const e=n.reduce((e,t)=>{const n=fn[t._def.typeName];return n&&!e.includes(n)?[...e,n]:e},[]);return{type:e.length>1?e:e[0]}}if(n.every(e=>"ZodLiteral"===e._def.typeName&&!e.description)){const e=n.reduce((e,t)=>{const n=typeof t._def.value;switch(n){case"string":case"number":case"boolean":return[...e,n];case"bigint":return[...e,"integer"];case"object":if(null===t._def.value)return[...e,"null"];default:return e}},[]);if(e.length===n.length){const t=e.filter((e,t,n)=>n.indexOf(e)===t);return{type:t.length>1?t:t[0],enum:n.reduce((e,t)=>e.includes(t._def.value)?e:[...e,t._def.value],[])}}}else if(n.every(e=>"ZodEnum"===e._def.typeName))return{type:"string",enum:n.reduce((e,t)=>[...e,...t._def.values.filter(t=>!e.includes(t))],[])};return gn(e,t)}(e,n);case Qe.ZodIntersection:return function(e,t){const n=[_n(e.left._def,{...t,currentPath:[...t.currentPath,"allOf","0"]}),_n(e.right._def,{...t,currentPath:[...t.currentPath,"allOf","1"]})].filter(e=>!!e);let a="jsonSchema2019-09"===t.target?{unevaluatedProperties:!1}:void 0;const r=[];return n.forEach(e=>{if("type"in(t=e)&&"string"===t.type||!("allOf"in t)){let t=e;if("additionalProperties"in e&&!1===e.additionalProperties){const{additionalProperties:n,...a}=e;t=a}else a=void 0;r.push(t)}else r.push(...e.allOf),void 0===e.unevaluatedProperties&&(a=void 0);var t}),r.length?{allOf:r,...a}:void 0}(e,n);case Qe.ZodTuple:return function(e,t){return e.rest?{type:"array",minItems:e.items.length,items:e.items.map((e,n)=>_n(e._def,{...t,currentPath:[...t.currentPath,"items",`${n}`]})).reduce((e,t)=>void 0===t?e:[...e,t],[]),additionalItems:_n(e.rest._def,{...t,currentPath:[...t.currentPath,"additionalItems"]})}:{type:"array",minItems:e.items.length,maxItems:e.items.length,items:e.items.map((e,n)=>_n(e._def,{...t,currentPath:[...t.currentPath,"items",`${n}`]})).reduce((e,t)=>void 0===t?e:[...e,t],[])}}(e,n);case Qe.ZodRecord:return hn(e,n);case Qe.ZodLiteral:return function(e,t){const n=typeof e.value;return"bigint"!==n&&"number"!==n&&"boolean"!==n&&"string"!==n?{type:Array.isArray(e.value)?"array":"object"}:"openApi3"===t.target?{type:"bigint"===n?"integer":n,enum:[e.value]}:{type:"bigint"===n?"integer":n,const:e.value}}(e,n);case Qe.ZodEnum:return function(e){return{type:"string",enum:Array.from(e.values)}}(e);case Qe.ZodNativeEnum:return function(e){const t=e.values,n=Object.keys(e.values).filter(e=>"number"!=typeof t[t[e]]).map(e=>t[e]),a=Array.from(new Set(n.map(e=>typeof e)));return{type:1===a.length?"string"===a[0]?"string":"number":["string","number"],enum:n}}(e);case Qe.ZodNullable:return function(e,t){if(["ZodString","ZodNumber","ZodBigInt","ZodBoolean","ZodNull"].includes(e.innerType._def.typeName)&&(!e.innerType._def.checks||!e.innerType._def.checks.length))return"openApi3"===t.target?{type:fn[e.innerType._def.typeName],nullable:!0}:{type:[fn[e.innerType._def.typeName],"null"]};if("openApi3"===t.target){const n=_n(e.innerType._def,{...t,currentPath:[...t.currentPath]});return n&&"$ref"in n?{allOf:[n],nullable:!0}:n&&{...n,nullable:!0}}const n=_n(e.innerType._def,{...t,currentPath:[...t.currentPath,"anyOf","0"]});return n&&{anyOf:[n,{type:"null"}]}}(e,n);case Qe.ZodOptional:return((e,t)=>{var n;if(t.currentPath.toString()===(null==(n=t.propertyPath)?void 0:n.toString()))return _n(e.innerType._def,t);const a=_n(e.innerType._def,{...t,currentPath:[...t.currentPath,"anyOf","1"]});return a?{anyOf:[{not:Jt(t)},a]}:Jt(t)})(e,n);case Qe.ZodMap:return function(e,t){return"record"===t.mapStrategy?hn(e,t):{type:"array",maxItems:125,items:{type:"array",items:[_n(e.keyType._def,{...t,currentPath:[...t.currentPath,"items","items","0"]})||Jt(t),_n(e.valueType._def,{...t,currentPath:[...t.currentPath,"items","items","1"]})||Jt(t)],minItems:2,maxItems:2}}}(e,n);case Qe.ZodSet:return function(e,t){const n={type:"array",uniqueItems:!0,items:_n(e.valueType._def,{...t,currentPath:[...t.currentPath,"items"]})};return e.minSize&&Bt(n,"minItems",e.minSize.value,e.minSize.message,t),e.maxSize&&Bt(n,"maxItems",e.maxSize.value,e.maxSize.message,t),n}(e,n);case Qe.ZodLazy:return()=>e.getter()._def;case Qe.ZodPromise:return function(e,t){return _n(e.type._def,t)}(e,n);case Qe.ZodNaN:case Qe.ZodNever:return function(e){return"openAi"===e.target?void 0:{not:Jt({...e,currentPath:[...e.currentPath,"not"]})}}(n);case Qe.ZodEffects:return function(e,t){return"input"===t.effectStrategy?_n(e.schema._def,t):Jt(t)}(e,n);case Qe.ZodAny:return Jt(n);case Qe.ZodUnknown:return function(e){return Jt(e)}(n);case Qe.ZodDefault:return function(e,t){return{..._n(e.innerType._def,t),default:e.defaultValue()}}(e,n);case Qe.ZodBranded:return qt(e,n);case Qe.ZodReadonly:case Qe.ZodCatch:return((e,t)=>_n(e.innerType._def,t))(e,n);case Qe.ZodPipeline:return((e,t)=>{if("input"===t.pipeStrategy)return _n(e.in._def,t);if("output"===t.pipeStrategy)return _n(e.out._def,t);const n=_n(e.in._def,{...t,currentPath:[...t.currentPath,"allOf","0"]});return{allOf:[n,_n(e.out._def,{...t,currentPath:[...t.currentPath,"allOf",n?"1":"0"]})].filter(e=>void 0!==e)}})(e,n);case Qe.ZodFunction:case Qe.ZodVoid:case Qe.ZodSymbol:default:return}};function _n(e,t,n=!1){var a;const r=t.seen.get(e);if(t.override){const i=null==(a=t.override)?void 0:a.call(t,e,t,r,n);if(i!==zt)return i}if(r&&!n){const e=Sn(r,t);if(void 0!==e)return e}const i={def:e,path:t.currentPath,jsonSchema:void 0};t.seen.set(e,i);const s=bn(e,e.typeName,t),o="function"==typeof s?_n(s(),t):s;if(o&&kn(e,t,o),t.postProcess){const n=t.postProcess(o,e,t);return i.jsonSchema=o,n}return i.jsonSchema=o,o}var Sn=(e,t)=>{switch(t.$refStrategy){case"root":return{$ref:e.path.join("/")};case"relative":return{$ref:Vt(t.currentPath,e.path)};case"none":case"seen":return e.path.length<t.currentPath.length&&e.path.every((e,n)=>t.currentPath[n]===e)?(console.warn(`Recursive reference detected at ${t.currentPath.join("/")}! Defaulting to any`),Jt(t)):"seen"===t.$refStrategy?Jt(t):void 0}},kn=(e,t,n)=>(e.description&&(n.description=e.description,t.markdownDescription&&(n.markdownDescription=e.description)),n),xn=(e,t)=>{var n;const a=Ft(t);let r="object"==typeof t&&t.definitions?Object.entries(t.definitions).reduce((e,[t,n])=>{var r;return{...e,[t]:null!=(r=_n(n._def,{...a,currentPath:[...a.basePath,a.definitionPath,t]},!0))?r:Jt(a)}},{}):void 0;const i="string"==typeof t?t:"title"===(null==t?void 0:t.nameStrategy)||null==t?void 0:t.name,s=null!=(n=_n(e._def,void 0===i?a:{...a,currentPath:[...a.basePath,a.definitionPath,i]},!1))?n:Jt(a),o="object"==typeof t&&void 0!==t.name&&"title"===t.nameStrategy?t.name:void 0;void 0!==o&&(s.title=o),a.flags.hasReferencedOpenAiAnyType&&(r||(r={}),r[a.openAiAnyTypeName]||(r[a.openAiAnyTypeName]={type:["string","number","integer","boolean","array","null"],items:{$ref:"relative"===a.$refStrategy?"1":[...a.basePath,a.definitionPath,a.openAiAnyTypeName].join("/")}}));const c=void 0===i?r?{...s,[a.definitionPath]:r}:s:{$ref:[..."relative"===a.$refStrategy?[]:a.basePath,a.definitionPath,i].join("/"),[a.definitionPath]:{...r,[i]:s}};return"jsonSchema7"===a.target?c.$schema="http://json-schema.org/draft-07/schema#":"jsonSchema2019-09"!==a.target&&"openAi"!==a.target||(c.$schema="https://json-schema.org/draft/2019-09/schema#"),"openAi"===a.target&&("anyOf"in c||"oneOf"in c||"allOf"in c||"type"in c&&Array.isArray(c.type))&&console.warn("Warning: OpenAI may not support schemas with unions as roots! Try wrapping it in an object property."),c},wn=Object.defineProperty,jn=(e,t)=>{for(var n in t)wn(e,n,{get:t[n],enumerable:!0})},Zn=u.string(),Pn=u.number(),An=(u.boolean(),u.string().min(1)),Tn=u.number().int().positive(),On=u.number().int().nonnegative(),Cn=u.number().describe("Tagging version number");u.union([u.string(),u.number(),u.boolean()]).optional();jn({},{ErrorHandlerSchema:()=>In,HandlerSchema:()=>Mn,LogHandlerSchema:()=>$n,StorageSchema:()=>Nn,StorageTypeSchema:()=>En,errorHandlerJsonSchema:()=>zn,handlerJsonSchema:()=>Fn,logHandlerJsonSchema:()=>Ln,storageJsonSchema:()=>Dn,storageTypeJsonSchema:()=>Rn});var En=u.enum(["local","session","cookie"]).describe("Storage mechanism: local, session, or cookie"),Nn=u.object({Local:u.literal("local"),Session:u.literal("session"),Cookie:u.literal("cookie")}).describe("Storage type constants for type-safe references"),In=u.any().describe("Error handler function: (error, state?) => void"),$n=u.any().describe("Log handler function: (message, verbose?) => void"),Mn=u.object({Error:In.describe("Error handler function"),Log:$n.describe("Log handler function")}).describe("Handler interface with error and log functions"),Rn=xn(En,{target:"jsonSchema7",$refStrategy:"relative",name:"StorageType"}),Dn=xn(Nn,{target:"jsonSchema7",$refStrategy:"relative",name:"Storage"}),zn=xn(In,{target:"jsonSchema7",$refStrategy:"relative",name:"ErrorHandler"}),Ln=xn($n,{target:"jsonSchema7",$refStrategy:"relative",name:"LogHandler"}),Fn=xn(Mn,{target:"jsonSchema7",$refStrategy:"relative",name:"Handler"});u.object({onError:In.optional().describe("Error handler function: (error, state?) => void"),onLog:$n.optional().describe("Log handler function: (message, verbose?) => void")}).partial(),u.object({verbose:u.boolean().describe("Enable verbose logging for debugging").optional()}).partial(),u.object({queue:u.boolean().describe("Whether to queue events when consent is not granted").optional()}).partial(),u.object({}).partial(),u.object({init:u.boolean().describe("Whether to initialize immediately").optional(),loadScript:u.boolean().describe("Whether to load external script (for web destinations)").optional()}).partial(),u.object({disabled:u.boolean().describe("Set to true to disable").optional()}).partial(),u.object({primary:u.boolean().describe("Mark as primary (only one can be primary)").optional()}).partial(),u.object({settings:u.any().optional().describe("Implementation-specific configuration")}).partial(),u.object({env:u.any().optional().describe("Environment dependencies (platform-specific)")}).partial(),u.object({type:u.string().optional().describe("Instance type identifier"),config:u.any().describe("Instance configuration")}).partial(),u.object({collector:u.any().describe("Collector instance (runtime object)"),config:u.any().describe("Configuration"),env:u.any().describe("Environment dependencies")}).partial(),u.object({batch:u.number().optional().describe("Batch size: bundle N events for batch processing"),batched:u.any().optional().describe("Batch of events to be processed")}).partial(),u.object({ignore:u.boolean().describe("Set to true to skip processing").optional(),condition:u.string().optional().describe("Condition function: return true to process")}).partial(),u.object({sources:u.record(u.string(),u.any()).describe("Map of source instances")}).partial(),u.object({destinations:u.record(u.string(),u.any()).describe("Map of destination instances")}).partial();jn({},{ConsentSchema:()=>Wn,DeepPartialEventSchema:()=>ta,EntitiesSchema:()=>Yn,EntitySchema:()=>Gn,EventSchema:()=>Xn,OrderedPropertiesSchema:()=>Jn,PartialEventSchema:()=>ea,PropertiesSchema:()=>Vn,PropertySchema:()=>Bn,PropertyTypeSchema:()=>Un,SourceSchema:()=>Qn,SourceTypeSchema:()=>qn,UserSchema:()=>Kn,VersionSchema:()=>Hn,consentJsonSchema:()=>da,entityJsonSchema:()=>oa,eventJsonSchema:()=>na,orderedPropertiesJsonSchema:()=>sa,partialEventJsonSchema:()=>aa,propertiesJsonSchema:()=>ia,sourceTypeJsonSchema:()=>ca,userJsonSchema:()=>ra});var Un=u.lazy(()=>u.union([u.boolean(),u.string(),u.number(),u.record(u.string(),Bn)])),Bn=u.lazy(()=>u.union([Un,u.array(Un)])),Vn=u.record(u.string(),Bn.optional()).describe("Flexible property collection with optional values"),Jn=u.record(u.string(),u.tuple([Bn,u.number()]).optional()).describe("Ordered properties with [value, order] tuples for priority control"),qn=u.union([u.enum(["web","server","app","other"]),u.string()]).describe("Source type: web, server, app, other, or custom"),Wn=u.record(u.string(),u.boolean()).describe("Consent requirement mapping (group name → state)"),Kn=Vn.and(u.object({id:u.string().optional().describe("User identifier"),device:u.string().optional().describe("Device identifier"),session:u.string().optional().describe("Session identifier"),hash:u.string().optional().describe("Hashed identifier"),address:u.string().optional().describe("User address"),email:u.string().email().optional().describe("User email address"),phone:u.string().optional().describe("User phone number"),userAgent:u.string().optional().describe("Browser user agent string"),browser:u.string().optional().describe("Browser name"),browserVersion:u.string().optional().describe("Browser version"),deviceType:u.string().optional().describe("Device type (mobile, desktop, tablet)"),os:u.string().optional().describe("Operating system"),osVersion:u.string().optional().describe("Operating system version"),screenSize:u.string().optional().describe("Screen dimensions"),language:u.string().optional().describe("User language"),country:u.string().optional().describe("User country"),region:u.string().optional().describe("User region/state"),city:u.string().optional().describe("User city"),zip:u.string().optional().describe("User postal code"),timezone:u.string().optional().describe("User timezone"),ip:u.string().optional().describe("User IP address"),internal:u.boolean().optional().describe("Internal user flag (employee, test user)")})).describe("User identification and properties"),Hn=Vn.and(u.object({source:Zn.describe('Walker implementation version (e.g., "2.0.0")'),tagging:Cn})).describe("Walker version information"),Qn=Vn.and(u.object({type:qn.describe("Source type identifier"),id:Zn.describe("Source identifier (typically URL on web)"),previous_id:Zn.describe("Previous source identifier (typically referrer on web)")})).describe("Event source information"),Gn=u.lazy(()=>u.object({entity:u.string().describe("Entity name"),data:Vn.describe("Entity-specific properties"),nested:u.array(Gn).describe("Nested child entities"),context:Jn.describe("Entity context data")})).describe("Nested entity structure with recursive nesting support"),Yn=u.array(Gn).describe("Array of nested entities"),Xn=u.object({name:u.string().describe('Event name in "entity action" format (e.g., "page view", "product add")'),data:Vn.describe("Event-specific properties"),context:Jn.describe("Ordered context properties with priorities"),globals:Vn.describe("Global properties shared across events"),custom:Vn.describe("Custom implementation-specific properties"),user:Kn.describe("User identification and attributes"),nested:Yn.describe("Related nested entities"),consent:Wn.describe("Consent states at event time"),id:An.describe("Unique event identifier (timestamp-based)"),trigger:Zn.describe("Event trigger identifier"),entity:Zn.describe("Parsed entity from event name"),action:Zn.describe("Parsed action from event name"),timestamp:Tn.describe("Unix timestamp in milliseconds since epoch"),timing:Pn.describe("Event processing timing information"),group:Zn.describe("Event grouping identifier"),count:On.describe("Event count in session"),version:Hn.describe("Walker version information"),source:Qn.describe("Event source information")}).describe("Complete walkerOS event structure"),ea=Xn.partial().describe("Partial event structure with all fields optional"),ta=u.lazy(()=>Xn.deepPartial()).describe("Deep partial event structure with all nested fields optional"),na=xn(Xn,{target:"jsonSchema7",$refStrategy:"relative",name:"Event"}),aa=xn(ea,{target:"jsonSchema7",$refStrategy:"relative",name:"PartialEvent"}),ra=xn(Kn,{target:"jsonSchema7",$refStrategy:"relative",name:"User"}),ia=xn(Vn,{target:"jsonSchema7",$refStrategy:"relative",name:"Properties"}),sa=xn(Jn,{target:"jsonSchema7",$refStrategy:"relative",name:"OrderedProperties"}),oa=xn(Gn,{target:"jsonSchema7",$refStrategy:"relative",name:"Entity"}),ca=xn(qn,{target:"jsonSchema7",$refStrategy:"relative",name:"SourceType"}),da=xn(Wn,{target:"jsonSchema7",$refStrategy:"relative",name:"Consent"});jn({},{ConfigSchema:()=>ba,LoopSchema:()=>pa,MapSchema:()=>ha,PolicySchema:()=>ga,ResultSchema:()=>_a,RuleSchema:()=>ya,RulesSchema:()=>va,SetSchema:()=>ma,ValueConfigSchema:()=>fa,ValueSchema:()=>ua,ValuesSchema:()=>la,configJsonSchema:()=>Ta,loopJsonSchema:()=>xa,mapJsonSchema:()=>ja,policyJsonSchema:()=>Za,ruleJsonSchema:()=>Pa,rulesJsonSchema:()=>Aa,setJsonSchema:()=>wa,valueConfigJsonSchema:()=>ka,valueJsonSchema:()=>Sa});var ua=u.lazy(()=>u.union([u.string().describe('String value or property path (e.g., "data.id")'),u.number().describe("Numeric value"),u.boolean().describe("Boolean value"),fa,u.array(ua).describe("Array of values")])),la=u.array(ua).describe("Array of transformation values"),pa=u.tuple([ua,ua]).describe("Loop transformation: [source, transform] tuple for array processing"),ma=u.array(ua).describe("Set: Array of values for selection or combination"),ha=u.record(u.string(),ua).describe("Map: Object mapping keys to transformation values"),fa=u.object({key:u.string().optional().describe('Property path to extract from event (e.g., "data.id", "user.email")'),value:u.union([u.string(),u.number(),u.boolean()]).optional().describe("Static primitive value"),fn:u.string().optional().describe("Custom transformation function as string (serialized)"),map:ha.optional().describe("Object mapping: transform event data to structured output"),loop:pa.optional().describe("Loop transformation: [source, transform] for array processing"),set:ma.optional().describe("Set of values: combine or select from multiple values"),consent:Wn.optional().describe("Required consent states to include this value"),condition:u.string().optional().describe("Condition function as string: return true to include value"),validate:u.string().optional().describe("Validation function as string: return true if value is valid")}).refine(e=>Object.keys(e).length>0,{message:"ValueConfig must have at least one property"}).describe("Value transformation configuration with multiple strategies"),ga=u.record(u.string(),ua).describe("Policy rules for event pre-processing (key → value mapping)"),ya=u.object({batch:u.number().optional().describe("Batch size: bundle N events for batch processing"),condition:u.string().optional().describe("Condition function as string: return true to process event"),consent:Wn.optional().describe("Required consent states to process this event"),settings:u.any().optional().describe("Destination-specific settings for this event mapping"),data:u.union([ua,la]).optional().describe("Data transformation rules for event"),ignore:u.boolean().optional().describe("Set to true to skip processing this event"),name:u.string().optional().describe('Custom event name override (e.g., "view_item" for "product view")'),policy:ga.optional().describe("Event-level policy overrides (applied after config-level policy)")}).describe("Mapping rule for specific entity-action combination"),va=u.record(u.string(),u.record(u.string(),u.union([ya,u.array(ya)])).optional()).describe("Nested mapping rules: { entity: { action: Rule | Rule[] } } with wildcard support"),ba=u.object({consent:Wn.optional().describe("Required consent states to process any events"),data:u.union([ua,la]).optional().describe("Global data transformation applied to all events"),mapping:va.optional().describe("Entity-action specific mapping rules"),policy:ga.optional().describe("Pre-processing policy rules applied before mapping")}).describe("Shared mapping configuration for sources and destinations"),_a=u.object({eventMapping:ya.optional().describe("Resolved mapping rule for event"),mappingKey:u.string().optional().describe('Mapping key used (e.g., "product.view")')}).describe("Mapping resolution result"),Sa=xn(ua,{target:"jsonSchema7",$refStrategy:"relative",name:"Value"}),ka=xn(fa,{target:"jsonSchema7",$refStrategy:"relative",name:"ValueConfig"}),xa=xn(pa,{target:"jsonSchema7",$refStrategy:"relative",name:"Loop"}),wa=xn(ma,{target:"jsonSchema7",$refStrategy:"relative",name:"Set"}),ja=xn(ha,{target:"jsonSchema7",$refStrategy:"relative",name:"Map"}),Za=xn(ga,{target:"jsonSchema7",$refStrategy:"relative",name:"Policy"}),Pa=xn(ya,{target:"jsonSchema7",$refStrategy:"relative",name:"Rule"}),Aa=xn(va,{target:"jsonSchema7",$refStrategy:"relative",name:"Rules"}),Ta=xn(ba,{target:"jsonSchema7",$refStrategy:"relative",name:"MappingConfig"});jn({},{BatchSchema:()=>Da,ConfigSchema:()=>Oa,ContextSchema:()=>Na,DLQSchema:()=>Wa,DataSchema:()=>za,DestinationPolicySchema:()=>Ea,DestinationsSchema:()=>Ba,InitDestinationsSchema:()=>Ua,InitSchema:()=>Fa,InstanceSchema:()=>La,PartialConfigSchema:()=>Ca,PushBatchContextSchema:()=>$a,PushContextSchema:()=>Ia,PushEventSchema:()=>Ma,PushEventsSchema:()=>Ra,PushResultSchema:()=>Ja,RefSchema:()=>Va,ResultSchema:()=>qa,batchJsonSchema:()=>Ya,configJsonSchema:()=>Ka,contextJsonSchema:()=>Qa,instanceJsonSchema:()=>Xa,partialConfigJsonSchema:()=>Ha,pushContextJsonSchema:()=>Ga,resultJsonSchema:()=>er});var Oa=u.object({consent:Wn.optional().describe("Required consent states to send events to this destination"),settings:u.any().describe("Implementation-specific configuration").optional(),data:u.union([ua,la]).optional().describe("Global data transformation applied to all events for this destination"),env:u.any().describe("Environment dependencies (platform-specific)").optional(),id:An.describe("Destination instance identifier (defaults to destination key)").optional(),init:u.boolean().describe("Whether to initialize immediately").optional(),loadScript:u.boolean().describe("Whether to load external script (for web destinations)").optional(),mapping:va.optional().describe("Entity-action specific mapping rules for this destination"),policy:ga.optional().describe("Pre-processing policy rules applied before event mapping"),queue:u.boolean().describe("Whether to queue events when consent is not granted").optional(),verbose:u.boolean().describe("Enable verbose logging for debugging").optional(),onError:In.optional(),onLog:$n.optional()}).describe("Destination configuration"),Ca=Oa.deepPartial().describe("Partial destination configuration with all fields deeply optional"),Ea=ga.describe("Destination policy rules for event pre-processing"),Na=u.object({collector:u.any().describe("Collector instance (runtime object)"),config:Oa.describe("Destination configuration"),data:u.union([u.any(),u.undefined(),u.array(u.union([u.any(),u.undefined()]))]).optional().describe("Transformed event data"),env:u.any().describe("Environment dependencies")}).describe("Destination context for init and push functions"),Ia=Na.extend({mapping:ya.optional().describe("Resolved mapping rule for this specific event")}).describe("Push context with event-specific mapping"),$a=Ia.describe("Batch push context with event-specific mapping"),Ma=u.object({event:Xn.describe("The event to process"),mapping:ya.optional().describe("Mapping rule for this event")}).describe("Event with optional mapping for batch processing"),Ra=u.array(Ma).describe("Array of events with mappings"),Da=u.object({key:u.string().describe('Batch key (usually mapping key like "product.view")'),events:u.array(Xn).describe("Array of events in batch"),data:u.array(u.union([u.any(),u.undefined(),u.array(u.union([u.any(),u.undefined()]))])).describe("Transformed data for each event"),mapping:ya.optional().describe("Shared mapping rule for batch")}).describe("Batch of events grouped by mapping key"),za=u.union([u.any(),u.undefined(),u.array(u.union([u.any(),u.undefined()]))]).describe("Transformed event data (Property, undefined, or array)"),La=u.object({config:Oa.describe("Destination configuration"),queue:u.array(Xn).optional().describe("Queued events awaiting consent"),dlq:u.array(u.tuple([Xn,u.any()])).optional().describe("Dead letter queue (failed events with errors)"),type:u.string().optional().describe("Destination type identifier"),env:u.any().optional().describe("Environment dependencies"),init:u.any().optional().describe("Initialization function"),push:u.any().describe("Push function for single events"),pushBatch:u.any().optional().describe("Batch push function"),on:u.any().optional().describe("Event lifecycle hook function")}).describe("Destination instance (runtime object with functions)"),Fa=u.object({code:La.describe("Destination instance with implementation"),config:Ca.optional().describe("Partial configuration overrides"),env:u.any().optional().describe("Partial environment overrides")}).describe("Destination initialization configuration"),Ua=u.record(u.string(),Fa).describe("Map of destination IDs to initialization configurations"),Ba=u.record(u.string(),La).describe("Map of destination IDs to runtime instances"),Va=u.object({id:u.string().describe("Destination ID"),destination:La.describe("Destination instance")}).describe("Destination reference (ID + instance)"),Ja=u.object({queue:u.array(Xn).optional().describe("Events queued (awaiting consent)"),error:u.any().optional().describe("Error if push failed")}).describe("Push operation result"),qa=u.object({successful:u.array(Va).describe("Destinations that processed successfully"),queued:u.array(Va).describe("Destinations that queued events"),failed:u.array(Va).describe("Destinations that failed to process")}).describe("Overall destination processing result"),Wa=u.array(u.tuple([Xn,u.any()])).describe("Dead letter queue: [(event, error), ...]"),Ka=xn(Oa,{target:"jsonSchema7",$refStrategy:"relative",name:"DestinationConfig"}),Ha=xn(Ca,{target:"jsonSchema7",$refStrategy:"relative",name:"PartialDestinationConfig"}),Qa=xn(Na,{target:"jsonSchema7",$refStrategy:"relative",name:"DestinationContext"}),Ga=xn(Ia,{target:"jsonSchema7",$refStrategy:"relative",name:"PushContext"}),Ya=xn(Da,{target:"jsonSchema7",$refStrategy:"relative",name:"Batch"}),Xa=xn(La,{target:"jsonSchema7",$refStrategy:"relative",name:"DestinationInstance"}),er=xn(qa,{target:"jsonSchema7",$refStrategy:"relative",name:"DestinationResult"});jn({},{CommandTypeSchema:()=>tr,ConfigSchema:()=>nr,DestinationsSchema:()=>or,InitConfigSchema:()=>rr,InstanceSchema:()=>cr,PushContextSchema:()=>ir,SessionDataSchema:()=>ar,SourcesSchema:()=>sr,commandTypeJsonSchema:()=>dr,configJsonSchema:()=>ur,initConfigJsonSchema:()=>pr,instanceJsonSchema:()=>hr,pushContextJsonSchema:()=>mr,sessionDataJsonSchema:()=>lr});var tr=u.union([u.enum(["action","config","consent","context","destination","elb","globals","hook","init","link","run","user","walker"]),u.string()]).describe("Collector command type: standard commands or custom string for extensions"),nr=u.object({run:u.boolean().describe("Whether to run collector automatically on initialization").optional(),tagging:Cn,globalsStatic:Vn.describe("Static global properties that persist across collector runs"),sessionStatic:u.record(u.any()).describe("Static session data that persists across collector runs"),verbose:u.boolean().describe("Enable verbose logging for debugging"),onError:In.optional(),onLog:$n.optional()}).describe("Core collector configuration"),ar=Vn.and(u.object({isStart:u.boolean().describe("Whether this is a new session start"),storage:u.boolean().describe("Whether storage is available"),id:An.describe("Session identifier").optional(),start:Tn.describe("Session start timestamp").optional(),marketing:u.literal(!0).optional().describe("Marketing attribution flag"),updated:Tn.describe("Last update timestamp").optional(),isNew:u.boolean().describe("Whether this is a new session").optional(),device:An.describe("Device identifier").optional(),count:On.describe("Event count in session").optional(),runs:On.describe("Number of runs").optional()})).describe("Session state and tracking data"),rr=nr.partial().extend({consent:Wn.optional().describe("Initial consent state"),user:Kn.optional().describe("Initial user data"),globals:Vn.optional().describe("Initial global properties"),sources:u.any().optional().describe("Source configurations"),destinations:u.any().optional().describe("Destination configurations"),custom:Vn.optional().describe("Initial custom implementation-specific properties")}).describe("Collector initialization configuration with initial state"),ir=u.object({mapping:ba.optional().describe("Source-level mapping configuration")}).describe("Push context with optional source mapping"),sr=u.record(u.string(),u.any()).describe("Map of source IDs to source instances"),or=u.record(u.string(),u.any()).describe("Map of destination IDs to destination instances"),cr=u.object({push:u.any().describe("Push function for processing events"),command:u.any().describe("Command function for walker commands"),allowed:u.boolean().describe("Whether event processing is allowed"),config:nr.describe("Current collector configuration"),consent:Wn.describe("Current consent state"),count:u.number().describe("Event count (increments with each event)"),custom:Vn.describe("Custom implementation-specific properties"),sources:sr.describe("Registered source instances"),destinations:or.describe("Registered destination instances"),globals:Vn.describe("Current global properties"),group:u.string().describe("Event grouping identifier"),hooks:u.any().describe("Lifecycle hook functions"),on:u.any().describe("Event lifecycle configuration"),queue:u.array(Xn).describe("Queued events awaiting processing"),round:u.number().describe("Collector run count (increments with each run)"),session:u.union([u.undefined(),ar]).describe("Current session state"),timing:u.number().describe("Event processing timing information"),user:Kn.describe("Current user data"),version:u.string().describe("Walker implementation version")}).describe("Collector instance with state and methods"),dr=xn(tr,{target:"jsonSchema7",$refStrategy:"relative",name:"CommandType"}),ur=xn(nr,{target:"jsonSchema7",$refStrategy:"relative",name:"CollectorConfig"}),lr=xn(ar,{target:"jsonSchema7",$refStrategy:"relative",name:"SessionData"}),pr=xn(rr,{target:"jsonSchema7",$refStrategy:"relative",name:"InitConfig"}),mr=xn(ir,{target:"jsonSchema7",$refStrategy:"relative",name:"CollectorPushContext"}),hr=xn(cr,{target:"jsonSchema7",$refStrategy:"relative",name:"CollectorInstance"});jn({},{BaseEnvSchema:()=>fr,ConfigSchema:()=>gr,InitSchema:()=>br,InitSourceSchema:()=>_r,InitSourcesSchema:()=>Sr,InstanceSchema:()=>vr,PartialConfigSchema:()=>yr,baseEnvJsonSchema:()=>kr,configJsonSchema:()=>xr,initSourceJsonSchema:()=>Zr,initSourcesJsonSchema:()=>Pr,instanceJsonSchema:()=>jr,partialConfigJsonSchema:()=>wr});var fr=u.object({push:u.any().describe("Collector push function"),command:u.any().describe("Collector command function"),sources:u.any().optional().describe("Map of registered source instances"),elb:u.any().describe("Public API function (alias for collector.push)")}).catchall(u.unknown()).describe("Base environment for dependency injection - platform-specific sources extend this"),gr=ba.extend({settings:u.any().describe("Implementation-specific configuration").optional(),env:fr.optional().describe("Environment dependencies (platform-specific)"),id:An.describe("Source identifier (defaults to source key)").optional(),onError:In.optional(),disabled:u.boolean().describe("Set to true to disable").optional(),primary:u.boolean().describe("Mark as primary (only one can be primary)").optional()}).describe("Source configuration with mapping and environment"),yr=gr.deepPartial().describe("Partial source configuration with all fields deeply optional"),vr=u.object({type:u.string().describe('Source type identifier (e.g., "browser", "dataLayer")'),config:gr.describe("Current source configuration"),push:u.any().describe("Push function - THE HANDLER (flexible signature for platform compatibility)"),destroy:u.any().optional().describe("Cleanup function called when source is removed"),on:u.any().optional().describe("Lifecycle hook function for event types")}).describe("Source instance with push handler and lifecycle methods"),br=u.any().describe("Source initialization function: (config, env) => Instance | Promise<Instance>"),_r=u.object({code:br.describe("Source initialization function"),config:yr.optional().describe("Partial configuration overrides"),env:fr.partial().optional().describe("Partial environment overrides"),primary:u.boolean().optional().describe("Mark as primary source (only one can be primary)")}).describe("Source initialization configuration"),Sr=u.record(u.string(),_r).describe("Map of source IDs to initialization configurations"),kr=xn(fr,{target:"jsonSchema7",$refStrategy:"relative",name:"SourceBaseEnv"}),xr=xn(gr,{target:"jsonSchema7",$refStrategy:"relative",name:"SourceConfig"}),wr=xn(yr,{target:"jsonSchema7",$refStrategy:"relative",name:"PartialSourceConfig"}),jr=xn(vr,{target:"jsonSchema7",$refStrategy:"relative",name:"SourceInstance"}),Zr=xn(_r,{target:"jsonSchema7",$refStrategy:"relative",name:"InitSource"}),Pr=xn(Sr,{target:"jsonSchema7",$refStrategy:"relative",name:"InitSources"});function Ar(e){return xn(e,{target:"jsonSchema7",$refStrategy:"none"})}function Tr(e){return Array.isArray(e)}function Or(e){return"object"==typeof e&&null!==e&&!Tr(e)&&"[object Object]"===Object.prototype.toString.call(e)}var Cr=require("@google-cloud/bigquery");function Er(e={},t){const n=e.settings||{},{projectId:a,bigquery:r}=n;let{client:i,location:s,datasetId:o,tableId:c}=n;a||function(e){throw new Error(String(e))}("Config settings projectId missing"),s=s||"EU",o=o||"walkeros",c=c||"events";const d=r||{};d.projectId=a;const u=(null==t?void 0:t.BigQuery)||Cr.BigQuery;i=i||new u(d);const l={...n,client:i,projectId:a,location:s,datasetId:o,tableId:c};return{...e,settings:l}}var Nr=e=>Object.entries(e).reduce((e,[t,n])=>(e[t]=Or(n)||Tr(n)?JSON.stringify(n):n,e),{}),Ir={};i({},{env:()=>$r});var $r={};i($r,{push:()=>Rr});var Mr=()=>{};var Rr={get BigQuery(){return class{constructor(e){this.options=e,this.calls=[]}dataset(e){return this.calls.push({method:"dataset",args:[e]}),this}table(e){return this.calls.push({method:"table",args:[e]}),this}async insert(e){return this.calls.push({method:"insert",args:[e]}),Promise.resolve()}get mockFn(){return Mr}}}},Dr={};i(Dr,{MappingSchema:()=>Lr,SettingsSchema:()=>zr,mapping:()=>Ur,settings:()=>Fr});var zr=u.object({client:u.any().describe("Google Cloud BigQuery client instance (like new BigQuery({ projectId, keyFilename }))").optional(),projectId:u.string().min(1).describe("Google Cloud Project ID (like my-gcp-project)"),datasetId:u.string().min(1).default("walkeros").describe("BigQuery dataset ID where events will be stored (like walker_events)"),tableId:u.string().min(1).default("events").describe("BigQuery table ID for event storage (like events)"),location:u.string().default("EU").describe("Geographic location for the BigQuery dataset (like US)"),bigquery:u.any().describe('Additional BigQuery client configuration options (like { keyFilename: "path/to/key.json" })').optional()}),Lr=u.object({}),Fr=Ar(zr),Ur=Ar(Lr),Br={type:"gcp-bigquery",config:{},init:async({config:e,env:t})=>Er(e,t),push:async(e,{config:t,mapping:n,data:a,collector:r,env:i})=>await async function(e,{config:t,mapping:n,data:a,collector:r,env:i}){const{client:s,datasetId:o,tableId:c}=t.settings;let d;if(Or(a))d=a;else{const t=new Date;d={...e,timestamp:e.timestamp?new Date(e.timestamp):t,createdAt:t}}const u=[Nr(d)];await s.dataset(o).table(c).insert(u)}(e,{config:t,mapping:n,data:a,collector:r,env:i})};//# sourceMappingURL=index.js.map
1
+ "use strict";var t,e=Object.defineProperty,n=Object.getOwnPropertyDescriptor,o=Object.getOwnPropertyNames,r=Object.prototype.hasOwnProperty,i={};function c(t){return Array.isArray(t)}function a(t){return"object"==typeof t&&null!==t&&!c(t)&&"[object Object]"===Object.prototype.toString.call(t)}((t,n)=>{for(var o in n)e(t,o,{get:n[o],enumerable:!0})})(i,{DestinationBigQuery:()=>u,destinationBigQuery:()=>p}),module.exports=(t=i,((t,i,c,a)=>{if(i&&"object"==typeof i||"function"==typeof i)for(let s of o(i))r.call(t,s)||s===c||e(t,s,{get:()=>i[s],enumerable:!(a=n(i,s))||a.enumerable});return t})(e({},"__esModule",{value:!0}),t));var s=require("@google-cloud/bigquery");function l(t={},e){const n=t.settings||{},{projectId:o,bigquery:r}=n;let{client:i,location:c,datasetId:a,tableId:l}=n;o||function(t){throw new Error(String(t))}("Config settings projectId missing"),c=c||"EU",a=a||"walkeros",l=l||"events";const g=r||{};g.projectId=o;const u=(null==e?void 0:e.BigQuery)||s.BigQuery;i=i||new u(g);const p={...n,client:i,projectId:o,location:c,datasetId:a,tableId:l};return{...t,settings:p}}var g=t=>Object.entries(t).reduce((t,[e,n])=>(t[e]=a(n)||c(n)?JSON.stringify(n):n,t),{}),u={},p={type:"gcp-bigquery",config:{},init:async({config:t,env:e})=>l(t,e),push:async(t,{config:e,mapping:n,data:o,collector:r,env:i})=>await async function(t,{config:e,mapping:n,data:o,collector:r,env:i}){const{client:c,datasetId:s,tableId:l}=e.settings;let u;if(a(o))u=o;else{const e=new Date;u={...t,timestamp:t.timestamp?new Date(t.timestamp):e,createdAt:e}}const p=[g(u)];await c.dataset(s).table(l).insert(p)}(t,{config:e,mapping:n,data:o,collector:r,env:i})};//# sourceMappingURL=index.js.map