@walkeros/server-destination-aws 0.1.2 → 0.2.1

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.
@@ -0,0 +1,23 @@
1
+ import { DestinationServer } from '@walkeros/server-core';
2
+ import { FirehoseClient, PutRecordBatchCommand } from '@aws-sdk/client-firehose';
3
+
4
+ interface Env extends DestinationServer.Env {
5
+ AWS: {
6
+ FirehoseClient: typeof FirehoseClient;
7
+ PutRecordBatchCommand: typeof PutRecordBatchCommand;
8
+ };
9
+ }
10
+
11
+ declare const push: Env;
12
+
13
+ declare const env_push: typeof push;
14
+ declare namespace env {
15
+ export { env_push as push };
16
+ }
17
+
18
+ declare const index_env: typeof env;
19
+ declare namespace index {
20
+ export { index_env as env };
21
+ }
22
+
23
+ export { index as firehose };
@@ -0,0 +1,23 @@
1
+ import { DestinationServer } from '@walkeros/server-core';
2
+ import { FirehoseClient, PutRecordBatchCommand } from '@aws-sdk/client-firehose';
3
+
4
+ interface Env extends DestinationServer.Env {
5
+ AWS: {
6
+ FirehoseClient: typeof FirehoseClient;
7
+ PutRecordBatchCommand: typeof PutRecordBatchCommand;
8
+ };
9
+ }
10
+
11
+ declare const push: Env;
12
+
13
+ declare const env_push: typeof push;
14
+ declare namespace env {
15
+ export { env_push as push };
16
+ }
17
+
18
+ declare const index_env: typeof env;
19
+ declare namespace index {
20
+ export { index_env as env };
21
+ }
22
+
23
+ export { index as firehose };
@@ -26,6 +26,40 @@ module.exports = __toCommonJS(examples_exports2);
26
26
 
27
27
  // src/firehose/examples/index.ts
28
28
  var examples_exports = {};
29
+ __export(examples_exports, {
30
+ env: () => env_exports
31
+ });
32
+
33
+ // src/firehose/examples/env.ts
34
+ var env_exports = {};
35
+ __export(env_exports, {
36
+ push: () => push
37
+ });
38
+ var MockFirehoseClient = class {
39
+ constructor(config) {
40
+ this.config = config;
41
+ }
42
+ async send(command) {
43
+ return {
44
+ RecordId: "mock-record-id",
45
+ ResponseMetadata: {
46
+ RequestId: "mock-request-id"
47
+ }
48
+ };
49
+ }
50
+ };
51
+ var MockPutRecordBatchCommand = class {
52
+ constructor(input) {
53
+ this.input = input;
54
+ }
55
+ };
56
+ var push = {
57
+ // Environment for push operations
58
+ AWS: {
59
+ FirehoseClient: MockFirehoseClient,
60
+ PutRecordBatchCommand: MockPutRecordBatchCommand
61
+ }
62
+ };
29
63
  // Annotate the CommonJS export names for ESM import in node:
30
64
  0 && (module.exports = {
31
65
  firehose
@@ -1,5 +1,45 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __export = (target, all) => {
3
+ for (var name in all)
4
+ __defProp(target, name, { get: all[name], enumerable: true });
5
+ };
6
+
1
7
  // src/firehose/examples/index.ts
2
8
  var examples_exports = {};
9
+ __export(examples_exports, {
10
+ env: () => env_exports
11
+ });
12
+
13
+ // src/firehose/examples/env.ts
14
+ var env_exports = {};
15
+ __export(env_exports, {
16
+ push: () => push
17
+ });
18
+ var MockFirehoseClient = class {
19
+ constructor(config) {
20
+ this.config = config;
21
+ }
22
+ async send(command) {
23
+ return {
24
+ RecordId: "mock-record-id",
25
+ ResponseMetadata: {
26
+ RequestId: "mock-request-id"
27
+ }
28
+ };
29
+ }
30
+ };
31
+ var MockPutRecordBatchCommand = class {
32
+ constructor(input) {
33
+ this.input = input;
34
+ }
35
+ };
36
+ var push = {
37
+ // Environment for push operations
38
+ AWS: {
39
+ FirehoseClient: MockFirehoseClient,
40
+ PutRecordBatchCommand: MockPutRecordBatchCommand
41
+ }
42
+ };
3
43
  export {
4
44
  examples_exports as firehose
5
45
  };
package/dist/index.d.mts CHANGED
@@ -1,21 +1,28 @@
1
1
  import { DestinationServer } from '@walkeros/server-core';
2
- import { Mapping as Mapping$1 } from '@walkeros/core';
3
- import { FirehoseClient, FirehoseClientConfig } from '@aws-sdk/client-firehose';
2
+ import { Destination as Destination$1, Mapping as Mapping$1 } from '@walkeros/core';
3
+ import { FirehoseClient, FirehoseClientConfig, PutRecordBatchCommand } from '@aws-sdk/client-firehose';
4
4
 
5
- interface Destination extends DestinationServer.Destination<Settings, Mapping> {
6
- init: DestinationServer.InitFn<Settings, Mapping>;
7
- }
8
- type Config = {
9
- settings: Settings;
10
- } & DestinationServer.Config<Settings, Mapping>;
11
5
  interface Settings {
12
6
  firehose?: FirehoseConfig;
13
7
  }
14
8
  interface Mapping {
15
9
  }
16
- type InitFn = DestinationServer.InitFn<Settings, Mapping>;
17
- type PushFn = DestinationServer.PushFn<Settings, Mapping>;
18
- type PartialConfig = DestinationServer.PartialConfig<Settings, Mapping>;
10
+ interface Env extends DestinationServer.Env {
11
+ AWS: {
12
+ FirehoseClient: typeof FirehoseClient;
13
+ PutRecordBatchCommand: typeof PutRecordBatchCommand;
14
+ };
15
+ }
16
+ type Types = Destination$1.Types<Settings, Mapping, Env>;
17
+ interface Destination extends DestinationServer.Destination<Types> {
18
+ init: DestinationServer.InitFn<Types>;
19
+ }
20
+ type Config = {
21
+ settings: Settings;
22
+ } & DestinationServer.Config<Types>;
23
+ type InitFn = DestinationServer.InitFn<Types>;
24
+ type PushFn = DestinationServer.PushFn<Types>;
25
+ type PartialConfig = DestinationServer.PartialConfig<Types>;
19
26
  type PushEvents = DestinationServer.PushEvents<Mapping>;
20
27
  type Rule = Mapping$1.Rule<Mapping>;
21
28
  type Rules = Mapping$1.Rules<Rule>;
@@ -28,6 +35,7 @@ interface FirehoseConfig {
28
35
 
29
36
  type index$2_Config = Config;
30
37
  type index$2_Destination = Destination;
38
+ type index$2_Env = Env;
31
39
  type index$2_FirehoseConfig = FirehoseConfig;
32
40
  type index$2_InitFn = InitFn;
33
41
  type index$2_Mapping = Mapping;
@@ -37,16 +45,25 @@ type index$2_PushFn = PushFn;
37
45
  type index$2_Rule = Rule;
38
46
  type index$2_Rules = Rules;
39
47
  type index$2_Settings = Settings;
48
+ type index$2_Types = Types;
40
49
  declare namespace index$2 {
41
- export type { index$2_Config as Config, index$2_Destination as Destination, index$2_FirehoseConfig as FirehoseConfig, index$2_InitFn as InitFn, index$2_Mapping as Mapping, index$2_PartialConfig as PartialConfig, index$2_PushEvents as PushEvents, index$2_PushFn as PushFn, index$2_Rule as Rule, index$2_Rules as Rules, index$2_Settings as Settings };
50
+ export type { index$2_Config as Config, index$2_Destination as Destination, index$2_Env as Env, index$2_FirehoseConfig as FirehoseConfig, index$2_InitFn as InitFn, index$2_Mapping as Mapping, index$2_PartialConfig as PartialConfig, index$2_PushEvents as PushEvents, index$2_PushFn as PushFn, index$2_Rule as Rule, index$2_Rules as Rules, index$2_Settings as Settings, index$2_Types as Types };
42
51
  }
43
52
 
44
- declare const destinationFirehose: Destination;
53
+ declare const push: Env;
54
+
55
+ declare const env_push: typeof push;
56
+ declare namespace env {
57
+ export { env_push as push };
58
+ }
45
59
 
60
+ declare const index$1_env: typeof env;
46
61
  declare namespace index$1 {
47
- export { };
62
+ export { index$1_env as env };
48
63
  }
49
64
 
65
+ declare const destinationFirehose: Destination;
66
+
50
67
  declare namespace index {
51
68
  export { index$1 as firehose };
52
69
  }
package/dist/index.d.ts CHANGED
@@ -1,21 +1,28 @@
1
1
  import { DestinationServer } from '@walkeros/server-core';
2
- import { Mapping as Mapping$1 } from '@walkeros/core';
3
- import { FirehoseClient, FirehoseClientConfig } from '@aws-sdk/client-firehose';
2
+ import { Destination as Destination$1, Mapping as Mapping$1 } from '@walkeros/core';
3
+ import { FirehoseClient, FirehoseClientConfig, PutRecordBatchCommand } from '@aws-sdk/client-firehose';
4
4
 
5
- interface Destination extends DestinationServer.Destination<Settings, Mapping> {
6
- init: DestinationServer.InitFn<Settings, Mapping>;
7
- }
8
- type Config = {
9
- settings: Settings;
10
- } & DestinationServer.Config<Settings, Mapping>;
11
5
  interface Settings {
12
6
  firehose?: FirehoseConfig;
13
7
  }
14
8
  interface Mapping {
15
9
  }
16
- type InitFn = DestinationServer.InitFn<Settings, Mapping>;
17
- type PushFn = DestinationServer.PushFn<Settings, Mapping>;
18
- type PartialConfig = DestinationServer.PartialConfig<Settings, Mapping>;
10
+ interface Env extends DestinationServer.Env {
11
+ AWS: {
12
+ FirehoseClient: typeof FirehoseClient;
13
+ PutRecordBatchCommand: typeof PutRecordBatchCommand;
14
+ };
15
+ }
16
+ type Types = Destination$1.Types<Settings, Mapping, Env>;
17
+ interface Destination extends DestinationServer.Destination<Types> {
18
+ init: DestinationServer.InitFn<Types>;
19
+ }
20
+ type Config = {
21
+ settings: Settings;
22
+ } & DestinationServer.Config<Types>;
23
+ type InitFn = DestinationServer.InitFn<Types>;
24
+ type PushFn = DestinationServer.PushFn<Types>;
25
+ type PartialConfig = DestinationServer.PartialConfig<Types>;
19
26
  type PushEvents = DestinationServer.PushEvents<Mapping>;
20
27
  type Rule = Mapping$1.Rule<Mapping>;
21
28
  type Rules = Mapping$1.Rules<Rule>;
@@ -28,6 +35,7 @@ interface FirehoseConfig {
28
35
 
29
36
  type index$2_Config = Config;
30
37
  type index$2_Destination = Destination;
38
+ type index$2_Env = Env;
31
39
  type index$2_FirehoseConfig = FirehoseConfig;
32
40
  type index$2_InitFn = InitFn;
33
41
  type index$2_Mapping = Mapping;
@@ -37,16 +45,25 @@ type index$2_PushFn = PushFn;
37
45
  type index$2_Rule = Rule;
38
46
  type index$2_Rules = Rules;
39
47
  type index$2_Settings = Settings;
48
+ type index$2_Types = Types;
40
49
  declare namespace index$2 {
41
- export type { index$2_Config as Config, index$2_Destination as Destination, index$2_FirehoseConfig as FirehoseConfig, index$2_InitFn as InitFn, index$2_Mapping as Mapping, index$2_PartialConfig as PartialConfig, index$2_PushEvents as PushEvents, index$2_PushFn as PushFn, index$2_Rule as Rule, index$2_Rules as Rules, index$2_Settings as Settings };
50
+ export type { index$2_Config as Config, index$2_Destination as Destination, index$2_Env as Env, index$2_FirehoseConfig as FirehoseConfig, index$2_InitFn as InitFn, index$2_Mapping as Mapping, index$2_PartialConfig as PartialConfig, index$2_PushEvents as PushEvents, index$2_PushFn as PushFn, index$2_Rule as Rule, index$2_Rules as Rules, index$2_Settings as Settings, index$2_Types as Types };
42
51
  }
43
52
 
44
- declare const destinationFirehose: Destination;
53
+ declare const push: Env;
54
+
55
+ declare const env_push: typeof push;
56
+ declare namespace env {
57
+ export { env_push as push };
58
+ }
45
59
 
60
+ declare const index$1_env: typeof env;
46
61
  declare namespace index$1 {
47
- export { };
62
+ export { index$1_env as env };
48
63
  }
49
64
 
65
+ declare const destinationFirehose: Destination;
66
+
50
67
  declare namespace index {
51
68
  export { index$1 as firehose };
52
69
  }
package/dist/index.js CHANGED
@@ -1 +1 @@
1
- "use strict";var e,t,r,s=Object.defineProperty,n=Object.getOwnPropertyDescriptor,o=Object.getOwnPropertyNames,i=Object.prototype.hasOwnProperty,a=(e,t)=>{for(var r in t)s(e,r,{get:t[r],enumerable:!0})},c={};a(c,{DestinationFirehose:()=>g,destinationFirehose:()=>y,examples:()=>h}),module.exports=(e=c,((e,t,r,a)=>{if(t&&"object"==typeof t||"function"==typeof t)for(let c of o(t))i.call(e,c)||c===r||s(e,c,{get:()=>t[c],enumerable:!(a=n(t,c))||a.enumerable});return e})(s({},"__esModule",{value:!0}),e));var l=Object.getOwnPropertyNames,u=(t={"package.json"(e,t){t.exports={name:"@walkeros/core",description:"Core types and platform-agnostic utilities for walkerOS",version:"0.1.2",main:"./dist/index.js",module:"./dist/index.mjs",types:"./dist/index.d.ts",license:"MIT",files:["dist/**"],scripts:{build:"tsup --silent",clean:"rm -rf .turbo && rm -rf node_modules && rm -rf dist",dev:"jest --watchAll --colors",lint:'tsc && eslint "**/*.ts*"',test:"jest",update:"npx npm-check-updates -u && npm update"},dependencies:{},devDependencies:{},repository:{url:"git+https://github.com/elbwalker/walkerOS.git",directory:"packages/core"},author:"elbwalker <hello@elbwalker.com>",homepage:"https://github.com/elbwalker/walkerOS#readme",bugs:{url:"https://github.com/elbwalker/walkerOS/issues"},keywords:["walker","walkerOS","analytics","tracking","data collection","measurement","data privacy","privacy friendly","web analytics","product analytics","core","types","utils"],funding:[{type:"GitHub Sponsors",url:"https://github.com/sponsors/elbwalker"}]}}},function(){return r||(0,t[l(t)[0]])((r={exports:{}}).exports,r),r.exports});var{version:p}=u();var f=require("@aws-sdk/client-firehose");function m(e){const{streamName:t,region:r="eu-central-1",config:s={}}=e;t||function(e){throw new Error(String(e))}("Firehose: Config custom streamName missing"),s.region||(s.region=r);return{streamName:t,client:e.client||new f.FirehoseClient(s),region:r}}var d=async function(e,{config:t,collector:r,env:s}){const{firehose:n}=t.settings||{};n&&async function(e,t){const{client:r,streamName:s}=t;if(!r)return{queue:e};const n=e.map(({event:e})=>({Data:Buffer.from(JSON.stringify(e))}));await r.send(new f.PutRecordBatchCommand({DeliveryStreamName:s,Records:n}))}([{event:e}],n)},g={},y={type:"aws-firehose",config:{},async init({config:e}){const t=function(e={}){const t=e.settings||{};return t.firehose&&(t.firehose=m(t.firehose)),{settings:t}}(e);return typeof t.settings==typeof{}&&t},push:async(e,{config:t,collector:r,env:s})=>await d(e,{config:t,collector:r,env:s})},h={};a(h,{firehose:()=>w});var w={};//# sourceMappingURL=index.js.map
1
+ "use strict";Object.create;var e,t=Object.defineProperty,a=Object.getOwnPropertyDescriptor,r=Object.getOwnPropertyNames,n=(Object.getPrototypeOf,Object.prototype.hasOwnProperty),s=(e,a)=>{for(var r in a)t(e,r,{get:a[r],enumerable:!0})},i=(e,s,i,o)=>{if(s&&"object"==typeof s||"function"==typeof s)for(let d of r(s))n.call(e,d)||d===i||t(e,d,{get:()=>s[d],enumerable:!(o=a(s,d))||o.enumerable});return e},o={};s(o,{DestinationFirehose:()=>Ra,destinationFirehose:()=>za,examples:()=>Da}),module.exports=(e=o,i(t({},"__esModule",{value:!0}),e));var d,c,u,l={};s(l,{BRAND:()=>Ke,DIRTY:()=>S,EMPTY_PATH:()=>x,INVALID:()=>O,NEVER:()=>Lt,OK:()=>P,ParseStatus:()=>T,Schema:()=>F,ZodAny:()=>ge,ZodArray:()=>be,ZodBigInt:()=>ue,ZodBoolean:()=>le,ZodBranded:()=>We,ZodCatch:()=>Ue,ZodDate:()=>pe,ZodDefault:()=>Ve,ZodDiscriminatedUnion:()=>Ae,ZodEffects:()=>Le,ZodEnum:()=>Re,ZodError:()=>g,ZodFirstPartyTypeKind:()=>Ge,ZodFunction:()=>Ce,ZodIntersection:()=>Oe,ZodIssueCode:()=>m,ZodLazy:()=>$e,ZodLiteral:()=>Ie,ZodMap:()=>Ne,ZodNaN:()=>Be,ZodNativeEnum:()=>Me,ZodNever:()=>ve,ZodNull:()=>fe,ZodNullable:()=>De,ZodNumber:()=>ce,ZodObject:()=>xe,ZodOptional:()=>ze,ZodParsedType:()=>p,ZodPipeline:()=>qe,ZodPromise:()=>Fe,ZodReadonly:()=>Je,ZodRecord:()=>Pe,ZodSchema:()=>F,ZodSet:()=>je,ZodString:()=>oe,ZodSymbol:()=>he,ZodTransformer:()=>Le,ZodTuple:()=>Se,ZodType:()=>F,ZodUndefined:()=>me,ZodUnion:()=>Ze,ZodUnknown:()=>ye,ZodVoid:()=>_e,addIssueToContext:()=>Z,any:()=>ut,array:()=>mt,bigint:()=>nt,boolean:()=>st,coerce:()=>Ft,custom:()=>Ye,date:()=>it,datetimeRegex:()=>re,defaultErrorMap:()=>y,discriminatedUnion:()=>vt,effect:()=>Nt,enum:()=>Ot,function:()=>wt,getErrorMap:()=>b,getParsedType:()=>h,instanceof:()=>et,intersection:()=>_t,isAborted:()=>N,isAsync:()=>$,isDirty:()=>j,isValid:()=>C,late:()=>Qe,lazy:()=>At,literal:()=>Tt,makeIssue:()=>k,map:()=>xt,nan:()=>rt,nativeEnum:()=>St,never:()=>pt,null:()=>ct,nullable:()=>Ct,number:()=>at,object:()=>ft,objectUtil:()=>u,oboolean:()=>Mt,onumber:()=>Rt,optional:()=>jt,ostring:()=>Et,pipeline:()=>It,preprocess:()=>$t,promise:()=>Pt,quotelessJson:()=>f,record:()=>kt,set:()=>Zt,setErrorMap:()=>_,strictObject:()=>gt,string:()=>tt,symbol:()=>ot,transformer:()=>Nt,tuple:()=>bt,undefined:()=>dt,union:()=>yt,unknown:()=>lt,util:()=>d,void:()=>ht}),(c=d||(d={})).assertEqual=e=>{},c.assertIs=function(e){},c.assertNever=function(e){throw new Error},c.arrayToEnum=e=>{const t={};for(const a of e)t[a]=a;return t},c.getValidEnumValues=e=>{const t=c.objectKeys(e).filter(t=>"number"!=typeof e[e[t]]),a={};for(const r of t)a[r]=e[r];return c.objectValues(a)},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 a in e)Object.prototype.hasOwnProperty.call(e,a)&&t.push(a);return t},c.find=(e,t)=>{for(const a of e)if(t(a))return a},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,(u||(u={})).mergeShapes=(e,t)=>({...e,...t});var p=d.arrayToEnum(["string","nan","number","integer","float","boolean","date","bigint","symbol","function","undefined","null","array","object","unknown","promise","void","never","map","set"]),h=e=>{switch(typeof e){case"undefined":return p.undefined;case"string":return p.string;case"number":return Number.isNaN(e)?p.nan:p.number;case"boolean":return p.boolean;case"function":return p.function;case"bigint":return p.bigint;case"symbol":return p.symbol;case"object":return Array.isArray(e)?p.array:null===e?p.null:e.then&&"function"==typeof e.then&&e.catch&&"function"==typeof e.catch?p.promise:"undefined"!=typeof Map&&e instanceof Map?p.map:"undefined"!=typeof Set&&e instanceof Set?p.set:"undefined"!=typeof Date&&e instanceof Date?p.date:p.object;default:return p.unknown}},m=d.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"]),f=e=>JSON.stringify(e,null,2).replace(/"([^"]+)":/g,"$1:"),g=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},a={_errors:[]},r=e=>{for(const n of e.issues)if("invalid_union"===n.code)n.unionErrors.map(r);else if("invalid_return_type"===n.code)r(n.returnTypeError);else if("invalid_arguments"===n.code)r(n.argumentsError);else if(0===n.path.length)a._errors.push(t(n));else{let e=a,r=0;for(;r<n.path.length;){const a=n.path[r];r===n.path.length-1?(e[a]=e[a]||{_errors:[]},e[a]._errors.push(t(n))):e[a]=e[a]||{_errors:[]},e=e[a],r++}}};return r(this),a}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,d.jsonStringifyReplacer,2)}get isEmpty(){return 0===this.issues.length}flatten(e=e=>e.message){const t={},a=[];for(const r of this.issues)if(r.path.length>0){const a=r.path[0];t[a]=t[a]||[],t[a].push(e(r))}else a.push(e(r));return{formErrors:a,fieldErrors:t}}get formErrors(){return this.flatten()}};g.create=e=>new g(e);var y=(e,t)=>{let a;switch(e.code){case m.invalid_type:a=e.received===p.undefined?"Required":`Expected ${e.expected}, received ${e.received}`;break;case m.invalid_literal:a=`Invalid literal value, expected ${JSON.stringify(e.expected,d.jsonStringifyReplacer)}`;break;case m.unrecognized_keys:a=`Unrecognized key(s) in object: ${d.joinValues(e.keys,", ")}`;break;case m.invalid_union:a="Invalid input";break;case m.invalid_union_discriminator:a=`Invalid discriminator value. Expected ${d.joinValues(e.options)}`;break;case m.invalid_enum_value:a=`Invalid enum value. Expected ${d.joinValues(e.options)}, received '${e.received}'`;break;case m.invalid_arguments:a="Invalid function arguments";break;case m.invalid_return_type:a="Invalid function return type";break;case m.invalid_date:a="Invalid date";break;case m.invalid_string:"object"==typeof e.validation?"includes"in e.validation?(a=`Invalid input: must include "${e.validation.includes}"`,"number"==typeof e.validation.position&&(a=`${a} at one or more positions greater than or equal to ${e.validation.position}`)):"startsWith"in e.validation?a=`Invalid input: must start with "${e.validation.startsWith}"`:"endsWith"in e.validation?a=`Invalid input: must end with "${e.validation.endsWith}"`:d.assertNever(e.validation):a="regex"!==e.validation?`Invalid ${e.validation}`:"Invalid";break;case m.too_small:a="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:a="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:a="Invalid input";break;case m.invalid_intersection_types:a="Intersection results could not be merged";break;case m.not_multiple_of:a=`Number must be a multiple of ${e.multipleOf}`;break;case m.not_finite:a="Number must be finite";break;default:a=t.defaultError,d.assertNever(e)}return{message:a}},v=y;function _(e){v=e}function b(){return v}var k=e=>{const{data:t,path:a,errorMaps:r,issueData:n}=e,s=[...a,...n.path||[]],i={...n,path:s};if(void 0!==n.message)return{...n,path:s,message:n.message};let o="";const d=r.filter(e=>!!e).slice().reverse();for(const e of d)o=e(i,{data:t,defaultError:o}).message;return{...n,path:s,message:o}},x=[];function Z(e,t){const a=b(),r=k({issueData:t,data:e.data,path:e.path,errorMaps:[e.common.contextualErrorMap,e.schemaErrorMap,a,a===y?void 0:y].filter(e=>!!e)});e.common.issues.push(r)}var w,A,T=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 a=[];for(const r of t){if("aborted"===r.status)return O;"dirty"===r.status&&e.dirty(),a.push(r.value)}return{status:e.value,value:a}}static async mergeObjectAsync(t,a){const r=[];for(const e of a){const t=await e.key,a=await e.value;r.push({key:t,value:a})}return e.mergeObjectSync(t,r)}static mergeObjectSync(e,t){const a={};for(const r of t){const{key:t,value:n}=r;if("aborted"===t.status)return O;if("aborted"===n.status)return O;"dirty"===t.status&&e.dirty(),"dirty"===n.status&&e.dirty(),"__proto__"===t.value||void 0===n.value&&!r.alwaysSet||(a[t.value]=n.value)}return{status:e.value,value:a}}},O=Object.freeze({status:"aborted"}),S=e=>({status:"dirty",value:e}),P=e=>({status:"valid",value:e}),N=e=>"aborted"===e.status,j=e=>"dirty"===e.status,C=e=>"valid"===e.status,$=e=>"undefined"!=typeof Promise&&e instanceof Promise;(A=w||(w={})).errToObj=e=>"string"==typeof e?{message:e}:e||{},A.toString=e=>"string"==typeof e?e:null==e?void 0:e.message;var I=class{constructor(e,t,a,r){this._cachedPath=[],this.parent=e,this.data=t,this._path=a,this._key=r}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}},E=(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 g(e.common.issues);return this._error=t,this._error}}};function R(e){if(!e)return{};const{errorMap:t,invalid_type_error:a,required_error:r,description:n}=e;if(t&&(a||r))throw new Error('Can\'t use "invalid_type_error" or "required_error" in conjunction with custom error map.');if(t)return{errorMap:t,description:n};return{errorMap:(t,n)=>{var s,i;const{message:o}=e;return"invalid_enum_value"===t.code?{message:null!=o?o:n.defaultError}:void 0===n.data?{message:null!=(s=null!=o?o:r)?s:n.defaultError}:"invalid_type"!==t.code?{message:n.defaultError}:{message:null!=(i=null!=o?o:a)?i:n.defaultError}},description:n}}var M,F=class{get description(){return this._def.description}_getType(e){return h(e.data)}_getOrReturnCtx(e,t){return t||{common:e.parent.common,data:e.data,parsedType:h(e.data),schemaErrorMap:this._def.errorMap,path:e.path,parent:e.parent}}_processInputParams(e){return{status:new T,ctx:{common:e.parent.common,data:e.data,parsedType:h(e.data),schemaErrorMap:this._def.errorMap,path:e.path,parent:e.parent}}}_parseSync(e){const t=this._parse(e);if($(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 a=this.safeParse(e,t);if(a.success)return a.data;throw a.error}safeParse(e,t){var a;const r={common:{issues:[],async:null!=(a=null==t?void 0:t.async)&&a,contextualErrorMap:null==t?void 0:t.errorMap},path:(null==t?void 0:t.path)||[],schemaErrorMap:this._def.errorMap,parent:null,data:e,parsedType:h(e)},n=this._parseSync({data:e,path:r.path,parent:r});return E(r,n)}"~validate"(e){var t,a;const r={common:{issues:[],async:!!this["~standard"].async},path:[],schemaErrorMap:this._def.errorMap,parent:null,data:e,parsedType:h(e)};if(!this["~standard"].async)try{const t=this._parseSync({data:e,path:[],parent:r});return C(t)?{value:t.value}:{issues:r.common.issues}}catch(e){(null==(a=null==(t=null==e?void 0:e.message)?void 0:t.toLowerCase())?void 0:a.includes("encountered"))&&(this["~standard"].async=!0),r.common={issues:[],async:!0}}return this._parseAsync({data:e,path:[],parent:r}).then(e=>C(e)?{value:e.value}:{issues:r.common.issues})}async parseAsync(e,t){const a=await this.safeParseAsync(e,t);if(a.success)return a.data;throw a.error}async safeParseAsync(e,t){const a={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:h(e)},r=this._parse({data:e,path:a.path,parent:a}),n=await($(r)?r:Promise.resolve(r));return E(a,n)}refine(e,t){const a=e=>"string"==typeof t||void 0===t?{message:t}:"function"==typeof t?t(e):t;return this._refinement((t,r)=>{const n=e(t),s=()=>r.addIssue({code:m.custom,...a(t)});return"undefined"!=typeof Promise&&n instanceof Promise?n.then(e=>!!e||(s(),!1)):!!n||(s(),!1)})}refinement(e,t){return this._refinement((a,r)=>!!e(a)||(r.addIssue("function"==typeof t?t(a,r):t),!1))}_refinement(e){return new Le({schema:this,typeName:Ge.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 De.create(this,this._def)}nullish(){return this.nullable().optional()}array(){return be.create(this)}promise(){return Fe.create(this,this._def)}or(e){return Ze.create([this,e],this._def)}and(e){return Oe.create(this,e,this._def)}transform(e){return new Le({...R(this._def),schema:this,typeName:Ge.ZodEffects,effect:{type:"transform",transform:e}})}default(e){const t="function"==typeof e?e:()=>e;return new Ve({...R(this._def),innerType:this,defaultValue:t,typeName:Ge.ZodDefault})}brand(){return new We({typeName:Ge.ZodBranded,type:this,...R(this._def)})}catch(e){const t="function"==typeof e?e:()=>e;return new Ue({...R(this._def),innerType:this,catchValue:t,typeName:Ge.ZodCatch})}describe(e){return new(0,this.constructor)({...this._def,description:e})}pipe(e){return qe.create(this,e)}readonly(){return Je.create(this)}isOptional(){return this.safeParse(void 0).success}isNullable(){return this.safeParse(null).success}},L=/^c[^\s-]{8,}$/i,z=/^[0-9a-z]+$/,D=/^[0-9A-HJKMNP-TV-Z]{26}$/i,V=/^[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-_]*$/,K=/^[-+]?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)?)??$/,W=/^(?!\.)(?!.*\.\.)([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])$/,J=/^(?:(?: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])$/,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]))$/,Y=/^(([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])$/,G=/^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}=))?$/,X=/^([0-9a-zA-Z-_]{4})*(([0-9a-zA-Z-_]{2}(==)?)|([0-9a-zA-Z-_]{3}(=)?))?$/,Q="((\\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])))",ee=new RegExp(`^${Q}$`);function te(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 ae(e){return new RegExp(`^${te(e)}$`)}function re(e){let t=`${Q}T${te(e)}`;const a=[];return a.push(e.local?"Z?":"Z"),e.offset&&a.push("([+-]\\d{2}:?\\d{2})"),t=`${t}(${a.join("|")})`,new RegExp(`^${t}$`)}function ne(e,t){return!("v4"!==t&&t||!q.test(e))||!("v6"!==t&&t||!H.test(e))}function se(e,t){if(!B.test(e))return!1;try{const[a]=e.split(".");if(!a)return!1;const r=a.replace(/-/g,"+").replace(/_/g,"/").padEnd(a.length+(4-a.length%4)%4,"="),n=JSON.parse(atob(r));return"object"==typeof n&&null!==n&&((!("typ"in n)||"JWT"===(null==n?void 0:n.typ))&&(!!n.alg&&(!t||n.alg===t)))}catch(e){return!1}}function ie(e,t){return!("v4"!==t&&t||!J.test(e))||!("v6"!==t&&t||!Y.test(e))}var oe=class e extends F{_parse(e){this._def.coerce&&(e.data=String(e.data));if(this._getType(e)!==p.string){const t=this._getOrReturnCtx(e);return Z(t,{code:m.invalid_type,expected:p.string,received:t.parsedType}),O}const t=new T;let a;for(const r of this._def.checks)if("min"===r.kind)e.data.length<r.value&&(a=this._getOrReturnCtx(e,a),Z(a,{code:m.too_small,minimum:r.value,type:"string",inclusive:!0,exact:!1,message:r.message}),t.dirty());else if("max"===r.kind)e.data.length>r.value&&(a=this._getOrReturnCtx(e,a),Z(a,{code:m.too_big,maximum:r.value,type:"string",inclusive:!0,exact:!1,message:r.message}),t.dirty());else if("length"===r.kind){const n=e.data.length>r.value,s=e.data.length<r.value;(n||s)&&(a=this._getOrReturnCtx(e,a),n?Z(a,{code:m.too_big,maximum:r.value,type:"string",inclusive:!0,exact:!0,message:r.message}):s&&Z(a,{code:m.too_small,minimum:r.value,type:"string",inclusive:!0,exact:!0,message:r.message}),t.dirty())}else if("email"===r.kind)W.test(e.data)||(a=this._getOrReturnCtx(e,a),Z(a,{validation:"email",code:m.invalid_string,message:r.message}),t.dirty());else if("emoji"===r.kind)M||(M=new RegExp("^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$","u")),M.test(e.data)||(a=this._getOrReturnCtx(e,a),Z(a,{validation:"emoji",code:m.invalid_string,message:r.message}),t.dirty());else if("uuid"===r.kind)V.test(e.data)||(a=this._getOrReturnCtx(e,a),Z(a,{validation:"uuid",code:m.invalid_string,message:r.message}),t.dirty());else if("nanoid"===r.kind)U.test(e.data)||(a=this._getOrReturnCtx(e,a),Z(a,{validation:"nanoid",code:m.invalid_string,message:r.message}),t.dirty());else if("cuid"===r.kind)L.test(e.data)||(a=this._getOrReturnCtx(e,a),Z(a,{validation:"cuid",code:m.invalid_string,message:r.message}),t.dirty());else if("cuid2"===r.kind)z.test(e.data)||(a=this._getOrReturnCtx(e,a),Z(a,{validation:"cuid2",code:m.invalid_string,message:r.message}),t.dirty());else if("ulid"===r.kind)D.test(e.data)||(a=this._getOrReturnCtx(e,a),Z(a,{validation:"ulid",code:m.invalid_string,message:r.message}),t.dirty());else if("url"===r.kind)try{new URL(e.data)}catch(n){a=this._getOrReturnCtx(e,a),Z(a,{validation:"url",code:m.invalid_string,message:r.message}),t.dirty()}else if("regex"===r.kind){r.regex.lastIndex=0;r.regex.test(e.data)||(a=this._getOrReturnCtx(e,a),Z(a,{validation:"regex",code:m.invalid_string,message:r.message}),t.dirty())}else if("trim"===r.kind)e.data=e.data.trim();else if("includes"===r.kind)e.data.includes(r.value,r.position)||(a=this._getOrReturnCtx(e,a),Z(a,{code:m.invalid_string,validation:{includes:r.value,position:r.position},message:r.message}),t.dirty());else if("toLowerCase"===r.kind)e.data=e.data.toLowerCase();else if("toUpperCase"===r.kind)e.data=e.data.toUpperCase();else if("startsWith"===r.kind)e.data.startsWith(r.value)||(a=this._getOrReturnCtx(e,a),Z(a,{code:m.invalid_string,validation:{startsWith:r.value},message:r.message}),t.dirty());else if("endsWith"===r.kind)e.data.endsWith(r.value)||(a=this._getOrReturnCtx(e,a),Z(a,{code:m.invalid_string,validation:{endsWith:r.value},message:r.message}),t.dirty());else if("datetime"===r.kind){re(r).test(e.data)||(a=this._getOrReturnCtx(e,a),Z(a,{code:m.invalid_string,validation:"datetime",message:r.message}),t.dirty())}else if("date"===r.kind){ee.test(e.data)||(a=this._getOrReturnCtx(e,a),Z(a,{code:m.invalid_string,validation:"date",message:r.message}),t.dirty())}else if("time"===r.kind){ae(r).test(e.data)||(a=this._getOrReturnCtx(e,a),Z(a,{code:m.invalid_string,validation:"time",message:r.message}),t.dirty())}else"duration"===r.kind?K.test(e.data)||(a=this._getOrReturnCtx(e,a),Z(a,{validation:"duration",code:m.invalid_string,message:r.message}),t.dirty()):"ip"===r.kind?ne(e.data,r.version)||(a=this._getOrReturnCtx(e,a),Z(a,{validation:"ip",code:m.invalid_string,message:r.message}),t.dirty()):"jwt"===r.kind?se(e.data,r.alg)||(a=this._getOrReturnCtx(e,a),Z(a,{validation:"jwt",code:m.invalid_string,message:r.message}),t.dirty()):"cidr"===r.kind?ie(e.data,r.version)||(a=this._getOrReturnCtx(e,a),Z(a,{validation:"cidr",code:m.invalid_string,message:r.message}),t.dirty()):"base64"===r.kind?G.test(e.data)||(a=this._getOrReturnCtx(e,a),Z(a,{validation:"base64",code:m.invalid_string,message:r.message}),t.dirty()):"base64url"===r.kind?X.test(e.data)||(a=this._getOrReturnCtx(e,a),Z(a,{validation:"base64url",code:m.invalid_string,message:r.message}),t.dirty()):d.assertNever(r);return{status:t.value,value:e.data}}_regex(e,t,a){return this.refinement(t=>e.test(t),{validation:t,code:m.invalid_string,...w.errToObj(a)})}_addCheck(t){return new e({...this._def,checks:[...this._def.checks,t]})}email(e){return this._addCheck({kind:"email",...w.errToObj(e)})}url(e){return this._addCheck({kind:"url",...w.errToObj(e)})}emoji(e){return this._addCheck({kind:"emoji",...w.errToObj(e)})}uuid(e){return this._addCheck({kind:"uuid",...w.errToObj(e)})}nanoid(e){return this._addCheck({kind:"nanoid",...w.errToObj(e)})}cuid(e){return this._addCheck({kind:"cuid",...w.errToObj(e)})}cuid2(e){return this._addCheck({kind:"cuid2",...w.errToObj(e)})}ulid(e){return this._addCheck({kind:"ulid",...w.errToObj(e)})}base64(e){return this._addCheck({kind:"base64",...w.errToObj(e)})}base64url(e){return this._addCheck({kind:"base64url",...w.errToObj(e)})}jwt(e){return this._addCheck({kind:"jwt",...w.errToObj(e)})}ip(e){return this._addCheck({kind:"ip",...w.errToObj(e)})}cidr(e){return this._addCheck({kind:"cidr",...w.errToObj(e)})}datetime(e){var t,a;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!=(a=null==e?void 0:e.local)&&a,...w.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,...w.errToObj(null==e?void 0:e.message)})}duration(e){return this._addCheck({kind:"duration",...w.errToObj(e)})}regex(e,t){return this._addCheck({kind:"regex",regex:e,...w.errToObj(t)})}includes(e,t){return this._addCheck({kind:"includes",value:e,position:null==t?void 0:t.position,...w.errToObj(null==t?void 0:t.message)})}startsWith(e,t){return this._addCheck({kind:"startsWith",value:e,...w.errToObj(t)})}endsWith(e,t){return this._addCheck({kind:"endsWith",value:e,...w.errToObj(t)})}min(e,t){return this._addCheck({kind:"min",value:e,...w.errToObj(t)})}max(e,t){return this._addCheck({kind:"max",value:e,...w.errToObj(t)})}length(e,t){return this._addCheck({kind:"length",value:e,...w.errToObj(t)})}nonempty(e){return this.min(1,w.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 de(e,t){const a=(e.toString().split(".")[1]||"").length,r=(t.toString().split(".")[1]||"").length,n=a>r?a:r;return Number.parseInt(e.toFixed(n).replace(".",""))%Number.parseInt(t.toFixed(n).replace(".",""))/10**n}oe.create=e=>{var t;return new oe({checks:[],typeName:Ge.ZodString,coerce:null!=(t=null==e?void 0:e.coerce)&&t,...R(e)})};var ce=class e extends F{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)!==p.number){const t=this._getOrReturnCtx(e);return Z(t,{code:m.invalid_type,expected:p.number,received:t.parsedType}),O}let t;const a=new T;for(const r of this._def.checks)if("int"===r.kind)d.isInteger(e.data)||(t=this._getOrReturnCtx(e,t),Z(t,{code:m.invalid_type,expected:"integer",received:"float",message:r.message}),a.dirty());else if("min"===r.kind){(r.inclusive?e.data<r.value:e.data<=r.value)&&(t=this._getOrReturnCtx(e,t),Z(t,{code:m.too_small,minimum:r.value,type:"number",inclusive:r.inclusive,exact:!1,message:r.message}),a.dirty())}else if("max"===r.kind){(r.inclusive?e.data>r.value:e.data>=r.value)&&(t=this._getOrReturnCtx(e,t),Z(t,{code:m.too_big,maximum:r.value,type:"number",inclusive:r.inclusive,exact:!1,message:r.message}),a.dirty())}else"multipleOf"===r.kind?0!==de(e.data,r.value)&&(t=this._getOrReturnCtx(e,t),Z(t,{code:m.not_multiple_of,multipleOf:r.value,message:r.message}),a.dirty()):"finite"===r.kind?Number.isFinite(e.data)||(t=this._getOrReturnCtx(e,t),Z(t,{code:m.not_finite,message:r.message}),a.dirty()):d.assertNever(r);return{status:a.value,value:e.data}}gte(e,t){return this.setLimit("min",e,!0,w.toString(t))}gt(e,t){return this.setLimit("min",e,!1,w.toString(t))}lte(e,t){return this.setLimit("max",e,!0,w.toString(t))}lt(e,t){return this.setLimit("max",e,!1,w.toString(t))}setLimit(t,a,r,n){return new e({...this._def,checks:[...this._def.checks,{kind:t,value:a,inclusive:r,message:w.toString(n)}]})}_addCheck(t){return new e({...this._def,checks:[...this._def.checks,t]})}int(e){return this._addCheck({kind:"int",message:w.toString(e)})}positive(e){return this._addCheck({kind:"min",value:0,inclusive:!1,message:w.toString(e)})}negative(e){return this._addCheck({kind:"max",value:0,inclusive:!1,message:w.toString(e)})}nonpositive(e){return this._addCheck({kind:"max",value:0,inclusive:!0,message:w.toString(e)})}nonnegative(e){return this._addCheck({kind:"min",value:0,inclusive:!0,message:w.toString(e)})}multipleOf(e,t){return this._addCheck({kind:"multipleOf",value:e,message:w.toString(t)})}finite(e){return this._addCheck({kind:"finite",message:w.toString(e)})}safe(e){return this._addCheck({kind:"min",inclusive:!0,value:Number.MIN_SAFE_INTEGER,message:w.toString(e)})._addCheck({kind:"max",inclusive:!0,value:Number.MAX_SAFE_INTEGER,message:w.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&&d.isInteger(e.value))}get isFinite(){let e=null,t=null;for(const a of this._def.checks){if("finite"===a.kind||"int"===a.kind||"multipleOf"===a.kind)return!0;"min"===a.kind?(null===t||a.value>t)&&(t=a.value):"max"===a.kind&&(null===e||a.value<e)&&(e=a.value)}return Number.isFinite(t)&&Number.isFinite(e)}};ce.create=e=>new ce({checks:[],typeName:Ge.ZodNumber,coerce:(null==e?void 0:e.coerce)||!1,...R(e)});var ue=class e extends F{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)!==p.bigint)return this._getInvalidInput(e);let t;const a=new T;for(const r of this._def.checks)if("min"===r.kind){(r.inclusive?e.data<r.value:e.data<=r.value)&&(t=this._getOrReturnCtx(e,t),Z(t,{code:m.too_small,type:"bigint",minimum:r.value,inclusive:r.inclusive,message:r.message}),a.dirty())}else if("max"===r.kind){(r.inclusive?e.data>r.value:e.data>=r.value)&&(t=this._getOrReturnCtx(e,t),Z(t,{code:m.too_big,type:"bigint",maximum:r.value,inclusive:r.inclusive,message:r.message}),a.dirty())}else"multipleOf"===r.kind?e.data%r.value!==BigInt(0)&&(t=this._getOrReturnCtx(e,t),Z(t,{code:m.not_multiple_of,multipleOf:r.value,message:r.message}),a.dirty()):d.assertNever(r);return{status:a.value,value:e.data}}_getInvalidInput(e){const t=this._getOrReturnCtx(e);return Z(t,{code:m.invalid_type,expected:p.bigint,received:t.parsedType}),O}gte(e,t){return this.setLimit("min",e,!0,w.toString(t))}gt(e,t){return this.setLimit("min",e,!1,w.toString(t))}lte(e,t){return this.setLimit("max",e,!0,w.toString(t))}lt(e,t){return this.setLimit("max",e,!1,w.toString(t))}setLimit(t,a,r,n){return new e({...this._def,checks:[...this._def.checks,{kind:t,value:a,inclusive:r,message:w.toString(n)}]})}_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:w.toString(e)})}negative(e){return this._addCheck({kind:"max",value:BigInt(0),inclusive:!1,message:w.toString(e)})}nonpositive(e){return this._addCheck({kind:"max",value:BigInt(0),inclusive:!0,message:w.toString(e)})}nonnegative(e){return this._addCheck({kind:"min",value:BigInt(0),inclusive:!0,message:w.toString(e)})}multipleOf(e,t){return this._addCheck({kind:"multipleOf",value:e,message:w.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}};ue.create=e=>{var t;return new ue({checks:[],typeName:Ge.ZodBigInt,coerce:null!=(t=null==e?void 0:e.coerce)&&t,...R(e)})};var le=class extends F{_parse(e){this._def.coerce&&(e.data=Boolean(e.data));if(this._getType(e)!==p.boolean){const t=this._getOrReturnCtx(e);return Z(t,{code:m.invalid_type,expected:p.boolean,received:t.parsedType}),O}return P(e.data)}};le.create=e=>new le({typeName:Ge.ZodBoolean,coerce:(null==e?void 0:e.coerce)||!1,...R(e)});var pe=class e extends F{_parse(e){this._def.coerce&&(e.data=new Date(e.data));if(this._getType(e)!==p.date){const t=this._getOrReturnCtx(e);return Z(t,{code:m.invalid_type,expected:p.date,received:t.parsedType}),O}if(Number.isNaN(e.data.getTime())){return Z(this._getOrReturnCtx(e),{code:m.invalid_date}),O}const t=new T;let a;for(const r of this._def.checks)"min"===r.kind?e.data.getTime()<r.value&&(a=this._getOrReturnCtx(e,a),Z(a,{code:m.too_small,message:r.message,inclusive:!0,exact:!1,minimum:r.value,type:"date"}),t.dirty()):"max"===r.kind?e.data.getTime()>r.value&&(a=this._getOrReturnCtx(e,a),Z(a,{code:m.too_big,message:r.message,inclusive:!0,exact:!1,maximum:r.value,type:"date"}),t.dirty()):d.assertNever(r);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:w.toString(t)})}max(e,t){return this._addCheck({kind:"max",value:e.getTime(),message:w.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}};pe.create=e=>new pe({checks:[],coerce:(null==e?void 0:e.coerce)||!1,typeName:Ge.ZodDate,...R(e)});var he=class extends F{_parse(e){if(this._getType(e)!==p.symbol){const t=this._getOrReturnCtx(e);return Z(t,{code:m.invalid_type,expected:p.symbol,received:t.parsedType}),O}return P(e.data)}};he.create=e=>new he({typeName:Ge.ZodSymbol,...R(e)});var me=class extends F{_parse(e){if(this._getType(e)!==p.undefined){const t=this._getOrReturnCtx(e);return Z(t,{code:m.invalid_type,expected:p.undefined,received:t.parsedType}),O}return P(e.data)}};me.create=e=>new me({typeName:Ge.ZodUndefined,...R(e)});var fe=class extends F{_parse(e){if(this._getType(e)!==p.null){const t=this._getOrReturnCtx(e);return Z(t,{code:m.invalid_type,expected:p.null,received:t.parsedType}),O}return P(e.data)}};fe.create=e=>new fe({typeName:Ge.ZodNull,...R(e)});var ge=class extends F{constructor(){super(...arguments),this._any=!0}_parse(e){return P(e.data)}};ge.create=e=>new ge({typeName:Ge.ZodAny,...R(e)});var ye=class extends F{constructor(){super(...arguments),this._unknown=!0}_parse(e){return P(e.data)}};ye.create=e=>new ye({typeName:Ge.ZodUnknown,...R(e)});var ve=class extends F{_parse(e){const t=this._getOrReturnCtx(e);return Z(t,{code:m.invalid_type,expected:p.never,received:t.parsedType}),O}};ve.create=e=>new ve({typeName:Ge.ZodNever,...R(e)});var _e=class extends F{_parse(e){if(this._getType(e)!==p.undefined){const t=this._getOrReturnCtx(e);return Z(t,{code:m.invalid_type,expected:p.void,received:t.parsedType}),O}return P(e.data)}};_e.create=e=>new _e({typeName:Ge.ZodVoid,...R(e)});var be=class e extends F{_parse(e){const{ctx:t,status:a}=this._processInputParams(e),r=this._def;if(t.parsedType!==p.array)return Z(t,{code:m.invalid_type,expected:p.array,received:t.parsedType}),O;if(null!==r.exactLength){const e=t.data.length>r.exactLength.value,n=t.data.length<r.exactLength.value;(e||n)&&(Z(t,{code:e?m.too_big:m.too_small,minimum:n?r.exactLength.value:void 0,maximum:e?r.exactLength.value:void 0,type:"array",inclusive:!0,exact:!0,message:r.exactLength.message}),a.dirty())}if(null!==r.minLength&&t.data.length<r.minLength.value&&(Z(t,{code:m.too_small,minimum:r.minLength.value,type:"array",inclusive:!0,exact:!1,message:r.minLength.message}),a.dirty()),null!==r.maxLength&&t.data.length>r.maxLength.value&&(Z(t,{code:m.too_big,maximum:r.maxLength.value,type:"array",inclusive:!0,exact:!1,message:r.maxLength.message}),a.dirty()),t.common.async)return Promise.all([...t.data].map((e,a)=>r.type._parseAsync(new I(t,e,t.path,a)))).then(e=>T.mergeArray(a,e));const n=[...t.data].map((e,a)=>r.type._parseSync(new I(t,e,t.path,a)));return T.mergeArray(a,n)}get element(){return this._def.type}min(t,a){return new e({...this._def,minLength:{value:t,message:w.toString(a)}})}max(t,a){return new e({...this._def,maxLength:{value:t,message:w.toString(a)}})}length(t,a){return new e({...this._def,exactLength:{value:t,message:w.toString(a)}})}nonempty(e){return this.min(1,e)}};function ke(e){if(e instanceof xe){const t={};for(const a in e.shape){const r=e.shape[a];t[a]=ze.create(ke(r))}return new xe({...e._def,shape:()=>t})}return e instanceof be?new be({...e._def,type:ke(e.element)}):e instanceof ze?ze.create(ke(e.unwrap())):e instanceof De?De.create(ke(e.unwrap())):e instanceof Se?Se.create(e.items.map(e=>ke(e))):e}be.create=(e,t)=>new be({type:e,minLength:null,maxLength:null,exactLength:null,typeName:Ge.ZodArray,...R(t)});var xe=class e extends F{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=d.objectKeys(e);return this._cached={shape:e,keys:t},this._cached}_parse(e){if(this._getType(e)!==p.object){const t=this._getOrReturnCtx(e);return Z(t,{code:m.invalid_type,expected:p.object,received:t.parsedType}),O}const{status:t,ctx:a}=this._processInputParams(e),{shape:r,keys:n}=this._getCached(),s=[];if(!(this._def.catchall instanceof ve&&"strip"===this._def.unknownKeys))for(const e in a.data)n.includes(e)||s.push(e);const i=[];for(const e of n){const t=r[e],n=a.data[e];i.push({key:{status:"valid",value:e},value:t._parse(new I(a,n,a.path,e)),alwaysSet:e in a.data})}if(this._def.catchall instanceof ve){const e=this._def.unknownKeys;if("passthrough"===e)for(const e of s)i.push({key:{status:"valid",value:e},value:{status:"valid",value:a.data[e]}});else if("strict"===e)s.length>0&&(Z(a,{code:m.unrecognized_keys,keys:s}),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 s){const r=a.data[t];i.push({key:{status:"valid",value:t},value:e._parse(new I(a,r,a.path,t)),alwaysSet:t in a.data})}}return a.common.async?Promise.resolve().then(async()=>{const e=[];for(const t of i){const a=await t.key,r=await t.value;e.push({key:a,value:r,alwaysSet:t.alwaysSet})}return e}).then(e=>T.mergeObjectSync(t,e)):T.mergeObjectSync(t,i)}get shape(){return this._def.shape()}strict(t){return w.errToObj,new e({...this._def,unknownKeys:"strict",...void 0!==t?{errorMap:(e,a)=>{var r,n,s,i;const o=null!=(s=null==(n=(r=this._def).errorMap)?void 0:n.call(r,e,a).message)?s:a.defaultError;return"unrecognized_keys"===e.code?{message:null!=(i=w.errToObj(t).message)?i: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:Ge.ZodObject})}setKey(e,t){return this.augment({[e]:t})}catchall(t){return new e({...this._def,catchall:t})}pick(t){const a={};for(const e of d.objectKeys(t))t[e]&&this.shape[e]&&(a[e]=this.shape[e]);return new e({...this._def,shape:()=>a})}omit(t){const a={};for(const e of d.objectKeys(this.shape))t[e]||(a[e]=this.shape[e]);return new e({...this._def,shape:()=>a})}deepPartial(){return ke(this)}partial(t){const a={};for(const e of d.objectKeys(this.shape)){const r=this.shape[e];t&&!t[e]?a[e]=r:a[e]=r.optional()}return new e({...this._def,shape:()=>a})}required(t){const a={};for(const e of d.objectKeys(this.shape))if(t&&!t[e])a[e]=this.shape[e];else{let t=this.shape[e];for(;t instanceof ze;)t=t._def.innerType;a[e]=t}return new e({...this._def,shape:()=>a})}keyof(){return Ee(d.objectKeys(this.shape))}};xe.create=(e,t)=>new xe({shape:()=>e,unknownKeys:"strip",catchall:ve.create(),typeName:Ge.ZodObject,...R(t)}),xe.strictCreate=(e,t)=>new xe({shape:()=>e,unknownKeys:"strict",catchall:ve.create(),typeName:Ge.ZodObject,...R(t)}),xe.lazycreate=(e,t)=>new xe({shape:e,unknownKeys:"strip",catchall:ve.create(),typeName:Ge.ZodObject,...R(t)});var Ze=class extends F{_parse(e){const{ctx:t}=this._processInputParams(e),a=this._def.options;if(t.common.async)return Promise.all(a.map(async e=>{const a={...t,common:{...t.common,issues:[]},parent:null};return{result:await e._parseAsync({data:t.data,path:t.path,parent:a}),ctx:a}})).then(function(e){for(const t of e)if("valid"===t.result.status)return t.result;for(const a of e)if("dirty"===a.result.status)return t.common.issues.push(...a.ctx.common.issues),a.result;const a=e.map(e=>new g(e.ctx.common.issues));return Z(t,{code:m.invalid_union,unionErrors:a}),O});{let e;const r=[];for(const n of a){const a={...t,common:{...t.common,issues:[]},parent:null},s=n._parseSync({data:t.data,path:t.path,parent:a});if("valid"===s.status)return s;"dirty"!==s.status||e||(e={result:s,ctx:a}),a.common.issues.length&&r.push(a.common.issues)}if(e)return t.common.issues.push(...e.ctx.common.issues),e.result;const n=r.map(e=>new g(e));return Z(t,{code:m.invalid_union,unionErrors:n}),O}}get options(){return this._def.options}};Ze.create=(e,t)=>new Ze({options:e,typeName:Ge.ZodUnion,...R(t)});var we=e=>e instanceof $e?we(e.schema):e instanceof Le?we(e.innerType()):e instanceof Ie?[e.value]:e instanceof Re?e.options:e instanceof Me?d.objectValues(e.enum):e instanceof Ve?we(e._def.innerType):e instanceof me?[void 0]:e instanceof fe?[null]:e instanceof ze?[void 0,...we(e.unwrap())]:e instanceof De?[null,...we(e.unwrap())]:e instanceof We||e instanceof Je?we(e.unwrap()):e instanceof Ue?we(e._def.innerType):[],Ae=class e extends F{_parse(e){const{ctx:t}=this._processInputParams(e);if(t.parsedType!==p.object)return Z(t,{code:m.invalid_type,expected:p.object,received:t.parsedType}),O;const a=this.discriminator,r=t.data[a],n=this.optionsMap.get(r);return n?t.common.async?n._parseAsync({data:t.data,path:t.path,parent:t}):n._parseSync({data:t.data,path:t.path,parent:t}):(Z(t,{code:m.invalid_union_discriminator,options:Array.from(this.optionsMap.keys()),path:[a]}),O)}get discriminator(){return this._def.discriminator}get options(){return this._def.options}get optionsMap(){return this._def.optionsMap}static create(t,a,r){const n=new Map;for(const e of a){const a=we(e.shape[t]);if(!a.length)throw new Error(`A discriminator value for key \`${t}\` could not be extracted from all schema options`);for(const r of a){if(n.has(r))throw new Error(`Discriminator property ${String(t)} has duplicate value ${String(r)}`);n.set(r,e)}}return new e({typeName:Ge.ZodDiscriminatedUnion,discriminator:t,options:a,optionsMap:n,...R(r)})}};function Te(e,t){const a=h(e),r=h(t);if(e===t)return{valid:!0,data:e};if(a===p.object&&r===p.object){const a=d.objectKeys(t),r=d.objectKeys(e).filter(e=>-1!==a.indexOf(e)),n={...e,...t};for(const a of r){const r=Te(e[a],t[a]);if(!r.valid)return{valid:!1};n[a]=r.data}return{valid:!0,data:n}}if(a===p.array&&r===p.array){if(e.length!==t.length)return{valid:!1};const a=[];for(let r=0;r<e.length;r++){const n=Te(e[r],t[r]);if(!n.valid)return{valid:!1};a.push(n.data)}return{valid:!0,data:a}}return a===p.date&&r===p.date&&+e===+t?{valid:!0,data:e}:{valid:!1}}var Oe=class extends F{_parse(e){const{status:t,ctx:a}=this._processInputParams(e),r=(e,r)=>{if(N(e)||N(r))return O;const n=Te(e.value,r.value);return n.valid?((j(e)||j(r))&&t.dirty(),{status:t.value,value:n.data}):(Z(a,{code:m.invalid_intersection_types}),O)};return a.common.async?Promise.all([this._def.left._parseAsync({data:a.data,path:a.path,parent:a}),this._def.right._parseAsync({data:a.data,path:a.path,parent:a})]).then(([e,t])=>r(e,t)):r(this._def.left._parseSync({data:a.data,path:a.path,parent:a}),this._def.right._parseSync({data:a.data,path:a.path,parent:a}))}};Oe.create=(e,t,a)=>new Oe({left:e,right:t,typeName:Ge.ZodIntersection,...R(a)});var Se=class e extends F{_parse(e){const{status:t,ctx:a}=this._processInputParams(e);if(a.parsedType!==p.array)return Z(a,{code:m.invalid_type,expected:p.array,received:a.parsedType}),O;if(a.data.length<this._def.items.length)return Z(a,{code:m.too_small,minimum:this._def.items.length,inclusive:!0,exact:!1,type:"array"}),O;!this._def.rest&&a.data.length>this._def.items.length&&(Z(a,{code:m.too_big,maximum:this._def.items.length,inclusive:!0,exact:!1,type:"array"}),t.dirty());const r=[...a.data].map((e,t)=>{const r=this._def.items[t]||this._def.rest;return r?r._parse(new I(a,e,a.path,t)):null}).filter(e=>!!e);return a.common.async?Promise.all(r).then(e=>T.mergeArray(t,e)):T.mergeArray(t,r)}get items(){return this._def.items}rest(t){return new e({...this._def,rest:t})}};Se.create=(e,t)=>{if(!Array.isArray(e))throw new Error("You must pass an array of schemas to z.tuple([ ... ])");return new Se({items:e,typeName:Ge.ZodTuple,rest:null,...R(t)})};var Pe=class e extends F{get keySchema(){return this._def.keyType}get valueSchema(){return this._def.valueType}_parse(e){const{status:t,ctx:a}=this._processInputParams(e);if(a.parsedType!==p.object)return Z(a,{code:m.invalid_type,expected:p.object,received:a.parsedType}),O;const r=[],n=this._def.keyType,s=this._def.valueType;for(const e in a.data)r.push({key:n._parse(new I(a,e,a.path,e)),value:s._parse(new I(a,a.data[e],a.path,e)),alwaysSet:e in a.data});return a.common.async?T.mergeObjectAsync(t,r):T.mergeObjectSync(t,r)}get element(){return this._def.valueType}static create(t,a,r){return new e(a instanceof F?{keyType:t,valueType:a,typeName:Ge.ZodRecord,...R(r)}:{keyType:oe.create(),valueType:t,typeName:Ge.ZodRecord,...R(a)})}},Ne=class extends F{get keySchema(){return this._def.keyType}get valueSchema(){return this._def.valueType}_parse(e){const{status:t,ctx:a}=this._processInputParams(e);if(a.parsedType!==p.map)return Z(a,{code:m.invalid_type,expected:p.map,received:a.parsedType}),O;const r=this._def.keyType,n=this._def.valueType,s=[...a.data.entries()].map(([e,t],s)=>({key:r._parse(new I(a,e,a.path,[s,"key"])),value:n._parse(new I(a,t,a.path,[s,"value"]))}));if(a.common.async){const e=new Map;return Promise.resolve().then(async()=>{for(const a of s){const r=await a.key,n=await a.value;if("aborted"===r.status||"aborted"===n.status)return O;"dirty"!==r.status&&"dirty"!==n.status||t.dirty(),e.set(r.value,n.value)}return{status:t.value,value:e}})}{const e=new Map;for(const a of s){const r=a.key,n=a.value;if("aborted"===r.status||"aborted"===n.status)return O;"dirty"!==r.status&&"dirty"!==n.status||t.dirty(),e.set(r.value,n.value)}return{status:t.value,value:e}}}};Ne.create=(e,t,a)=>new Ne({valueType:t,keyType:e,typeName:Ge.ZodMap,...R(a)});var je=class e extends F{_parse(e){const{status:t,ctx:a}=this._processInputParams(e);if(a.parsedType!==p.set)return Z(a,{code:m.invalid_type,expected:p.set,received:a.parsedType}),O;const r=this._def;null!==r.minSize&&a.data.size<r.minSize.value&&(Z(a,{code:m.too_small,minimum:r.minSize.value,type:"set",inclusive:!0,exact:!1,message:r.minSize.message}),t.dirty()),null!==r.maxSize&&a.data.size>r.maxSize.value&&(Z(a,{code:m.too_big,maximum:r.maxSize.value,type:"set",inclusive:!0,exact:!1,message:r.maxSize.message}),t.dirty());const n=this._def.valueType;function s(e){const a=new Set;for(const r of e){if("aborted"===r.status)return O;"dirty"===r.status&&t.dirty(),a.add(r.value)}return{status:t.value,value:a}}const i=[...a.data.values()].map((e,t)=>n._parse(new I(a,e,a.path,t)));return a.common.async?Promise.all(i).then(e=>s(e)):s(i)}min(t,a){return new e({...this._def,minSize:{value:t,message:w.toString(a)}})}max(t,a){return new e({...this._def,maxSize:{value:t,message:w.toString(a)}})}size(e,t){return this.min(e,t).max(e,t)}nonempty(e){return this.min(1,e)}};je.create=(e,t)=>new je({valueType:e,minSize:null,maxSize:null,typeName:Ge.ZodSet,...R(t)});var Ce=class e extends F{constructor(){super(...arguments),this.validate=this.implement}_parse(e){const{ctx:t}=this._processInputParams(e);if(t.parsedType!==p.function)return Z(t,{code:m.invalid_type,expected:p.function,received:t.parsedType}),O;function a(e,a){return k({data:e,path:t.path,errorMaps:[t.common.contextualErrorMap,t.schemaErrorMap,b(),y].filter(e=>!!e),issueData:{code:m.invalid_arguments,argumentsError:a}})}function r(e,a){return k({data:e,path:t.path,errorMaps:[t.common.contextualErrorMap,t.schemaErrorMap,b(),y].filter(e=>!!e),issueData:{code:m.invalid_return_type,returnTypeError:a}})}const n={errorMap:t.common.contextualErrorMap},s=t.data;if(this._def.returns instanceof Fe){const e=this;return P(async function(...t){const i=new g([]),o=await e._def.args.parseAsync(t,n).catch(e=>{throw i.addIssue(a(t,e)),i}),d=await Reflect.apply(s,this,o);return await e._def.returns._def.type.parseAsync(d,n).catch(e=>{throw i.addIssue(r(d,e)),i})})}{const e=this;return P(function(...t){const i=e._def.args.safeParse(t,n);if(!i.success)throw new g([a(t,i.error)]);const o=Reflect.apply(s,this,i.data),d=e._def.returns.safeParse(o,n);if(!d.success)throw new g([r(o,d.error)]);return d.data})}}parameters(){return this._def.args}returnType(){return this._def.returns}args(...t){return new e({...this._def,args:Se.create(t).rest(ye.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,a,r){return new e({args:t||Se.create([]).rest(ye.create()),returns:a||ye.create(),typeName:Ge.ZodFunction,...R(r)})}},$e=class extends F{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})}};$e.create=(e,t)=>new $e({getter:e,typeName:Ge.ZodLazy,...R(t)});var Ie=class extends F{_parse(e){if(e.data!==this._def.value){const t=this._getOrReturnCtx(e);return Z(t,{received:t.data,code:m.invalid_literal,expected:this._def.value}),O}return{status:"valid",value:e.data}}get value(){return this._def.value}};function Ee(e,t){return new Re({values:e,typeName:Ge.ZodEnum,...R(t)})}Ie.create=(e,t)=>new Ie({value:e,typeName:Ge.ZodLiteral,...R(t)});var Re=class e extends F{_parse(e){if("string"!=typeof e.data){const t=this._getOrReturnCtx(e),a=this._def.values;return Z(t,{expected:d.joinValues(a),received:t.parsedType,code:m.invalid_type}),O}if(this._cache||(this._cache=new Set(this._def.values)),!this._cache.has(e.data)){const t=this._getOrReturnCtx(e),a=this._def.values;return Z(t,{received:t.data,code:m.invalid_enum_value,options:a}),O}return P(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,a=this._def){return e.create(t,{...this._def,...a})}exclude(t,a=this._def){return e.create(this.options.filter(e=>!t.includes(e)),{...this._def,...a})}};Re.create=Ee;var Me=class extends F{_parse(e){const t=d.getValidEnumValues(this._def.values),a=this._getOrReturnCtx(e);if(a.parsedType!==p.string&&a.parsedType!==p.number){const e=d.objectValues(t);return Z(a,{expected:d.joinValues(e),received:a.parsedType,code:m.invalid_type}),O}if(this._cache||(this._cache=new Set(d.getValidEnumValues(this._def.values))),!this._cache.has(e.data)){const e=d.objectValues(t);return Z(a,{received:a.data,code:m.invalid_enum_value,options:e}),O}return P(e.data)}get enum(){return this._def.values}};Me.create=(e,t)=>new Me({values:e,typeName:Ge.ZodNativeEnum,...R(t)});var Fe=class extends F{unwrap(){return this._def.type}_parse(e){const{ctx:t}=this._processInputParams(e);if(t.parsedType!==p.promise&&!1===t.common.async)return Z(t,{code:m.invalid_type,expected:p.promise,received:t.parsedType}),O;const a=t.parsedType===p.promise?t.data:Promise.resolve(t.data);return P(a.then(e=>this._def.type.parseAsync(e,{path:t.path,errorMap:t.common.contextualErrorMap})))}};Fe.create=(e,t)=>new Fe({type:e,typeName:Ge.ZodPromise,...R(t)});var Le=class extends F{innerType(){return this._def.schema}sourceType(){return this._def.schema._def.typeName===Ge.ZodEffects?this._def.schema.sourceType():this._def.schema}_parse(e){const{status:t,ctx:a}=this._processInputParams(e),r=this._def.effect||null,n={addIssue:e=>{Z(a,e),e.fatal?t.abort():t.dirty()},get path(){return a.path}};if(n.addIssue=n.addIssue.bind(n),"preprocess"===r.type){const e=r.transform(a.data,n);if(a.common.async)return Promise.resolve(e).then(async e=>{if("aborted"===t.value)return O;const r=await this._def.schema._parseAsync({data:e,path:a.path,parent:a});return"aborted"===r.status?O:"dirty"===r.status||"dirty"===t.value?S(r.value):r});{if("aborted"===t.value)return O;const r=this._def.schema._parseSync({data:e,path:a.path,parent:a});return"aborted"===r.status?O:"dirty"===r.status||"dirty"===t.value?S(r.value):r}}if("refinement"===r.type){const e=e=>{const t=r.refinement(e,n);if(a.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===a.common.async){const r=this._def.schema._parseSync({data:a.data,path:a.path,parent:a});return"aborted"===r.status?O:("dirty"===r.status&&t.dirty(),e(r.value),{status:t.value,value:r.value})}return this._def.schema._parseAsync({data:a.data,path:a.path,parent:a}).then(a=>"aborted"===a.status?O:("dirty"===a.status&&t.dirty(),e(a.value).then(()=>({status:t.value,value:a.value}))))}if("transform"===r.type){if(!1===a.common.async){const e=this._def.schema._parseSync({data:a.data,path:a.path,parent:a});if(!C(e))return O;const s=r.transform(e.value,n);if(s instanceof Promise)throw new Error("Asynchronous transform encountered during synchronous parse operation. Use .parseAsync instead.");return{status:t.value,value:s}}return this._def.schema._parseAsync({data:a.data,path:a.path,parent:a}).then(e=>C(e)?Promise.resolve(r.transform(e.value,n)).then(e=>({status:t.value,value:e})):O)}d.assertNever(r)}};Le.create=(e,t,a)=>new Le({schema:e,typeName:Ge.ZodEffects,effect:t,...R(a)}),Le.createWithPreprocess=(e,t,a)=>new Le({schema:t,effect:{type:"preprocess",transform:e},typeName:Ge.ZodEffects,...R(a)});var ze=class extends F{_parse(e){return this._getType(e)===p.undefined?P(void 0):this._def.innerType._parse(e)}unwrap(){return this._def.innerType}};ze.create=(e,t)=>new ze({innerType:e,typeName:Ge.ZodOptional,...R(t)});var De=class extends F{_parse(e){return this._getType(e)===p.null?P(null):this._def.innerType._parse(e)}unwrap(){return this._def.innerType}};De.create=(e,t)=>new De({innerType:e,typeName:Ge.ZodNullable,...R(t)});var Ve=class extends F{_parse(e){const{ctx:t}=this._processInputParams(e);let a=t.data;return t.parsedType===p.undefined&&(a=this._def.defaultValue()),this._def.innerType._parse({data:a,path:t.path,parent:t})}removeDefault(){return this._def.innerType}};Ve.create=(e,t)=>new Ve({innerType:e,typeName:Ge.ZodDefault,defaultValue:"function"==typeof t.default?t.default:()=>t.default,...R(t)});var Ue=class extends F{_parse(e){const{ctx:t}=this._processInputParams(e),a={...t,common:{...t.common,issues:[]}},r=this._def.innerType._parse({data:a.data,path:a.path,parent:{...a}});return $(r)?r.then(e=>({status:"valid",value:"valid"===e.status?e.value:this._def.catchValue({get error(){return new g(a.common.issues)},input:a.data})})):{status:"valid",value:"valid"===r.status?r.value:this._def.catchValue({get error(){return new g(a.common.issues)},input:a.data})}}removeCatch(){return this._def.innerType}};Ue.create=(e,t)=>new Ue({innerType:e,typeName:Ge.ZodCatch,catchValue:"function"==typeof t.catch?t.catch:()=>t.catch,...R(t)});var Be=class extends F{_parse(e){if(this._getType(e)!==p.nan){const t=this._getOrReturnCtx(e);return Z(t,{code:m.invalid_type,expected:p.nan,received:t.parsedType}),O}return{status:"valid",value:e.data}}};Be.create=e=>new Be({typeName:Ge.ZodNaN,...R(e)});var Ke=Symbol("zod_brand"),We=class extends F{_parse(e){const{ctx:t}=this._processInputParams(e),a=t.data;return this._def.type._parse({data:a,path:t.path,parent:t})}unwrap(){return this._def.type}},qe=class e extends F{_parse(e){const{status:t,ctx:a}=this._processInputParams(e);if(a.common.async){return(async()=>{const e=await this._def.in._parseAsync({data:a.data,path:a.path,parent:a});return"aborted"===e.status?O:"dirty"===e.status?(t.dirty(),S(e.value)):this._def.out._parseAsync({data:e.value,path:a.path,parent:a})})()}{const e=this._def.in._parseSync({data:a.data,path:a.path,parent:a});return"aborted"===e.status?O:"dirty"===e.status?(t.dirty(),{status:"dirty",value:e.value}):this._def.out._parseSync({data:e.value,path:a.path,parent:a})}}static create(t,a){return new e({in:t,out:a,typeName:Ge.ZodPipeline})}},Je=class extends F{_parse(e){const t=this._def.innerType._parse(e),a=e=>(C(e)&&(e.value=Object.freeze(e.value)),e);return $(t)?t.then(e=>a(e)):a(t)}unwrap(){return this._def.innerType}};function He(e,t){const a="function"==typeof e?e(t):"string"==typeof e?{message:e}:e;return"string"==typeof a?{message:a}:a}function Ye(e,t={},a){return e?ge.create().superRefine((r,n)=>{var s,i;const o=e(r);if(o instanceof Promise)return o.then(e=>{var s,i;if(!e){const e=He(t,r),o=null==(i=null!=(s=e.fatal)?s:a)||i;n.addIssue({code:"custom",...e,fatal:o})}});if(!o){const e=He(t,r),o=null==(i=null!=(s=e.fatal)?s:a)||i;n.addIssue({code:"custom",...e,fatal:o})}}):ge.create()}Je.create=(e,t)=>new Je({innerType:e,typeName:Ge.ZodReadonly,...R(t)});var Ge,Xe,Qe={object:xe.lazycreate};(Xe=Ge||(Ge={})).ZodString="ZodString",Xe.ZodNumber="ZodNumber",Xe.ZodNaN="ZodNaN",Xe.ZodBigInt="ZodBigInt",Xe.ZodBoolean="ZodBoolean",Xe.ZodDate="ZodDate",Xe.ZodSymbol="ZodSymbol",Xe.ZodUndefined="ZodUndefined",Xe.ZodNull="ZodNull",Xe.ZodAny="ZodAny",Xe.ZodUnknown="ZodUnknown",Xe.ZodNever="ZodNever",Xe.ZodVoid="ZodVoid",Xe.ZodArray="ZodArray",Xe.ZodObject="ZodObject",Xe.ZodUnion="ZodUnion",Xe.ZodDiscriminatedUnion="ZodDiscriminatedUnion",Xe.ZodIntersection="ZodIntersection",Xe.ZodTuple="ZodTuple",Xe.ZodRecord="ZodRecord",Xe.ZodMap="ZodMap",Xe.ZodSet="ZodSet",Xe.ZodFunction="ZodFunction",Xe.ZodLazy="ZodLazy",Xe.ZodLiteral="ZodLiteral",Xe.ZodEnum="ZodEnum",Xe.ZodEffects="ZodEffects",Xe.ZodNativeEnum="ZodNativeEnum",Xe.ZodOptional="ZodOptional",Xe.ZodNullable="ZodNullable",Xe.ZodDefault="ZodDefault",Xe.ZodCatch="ZodCatch",Xe.ZodPromise="ZodPromise",Xe.ZodBranded="ZodBranded",Xe.ZodPipeline="ZodPipeline",Xe.ZodReadonly="ZodReadonly";var et=(e,t={message:`Input not instance of ${e.name}`})=>Ye(t=>t instanceof e,t),tt=oe.create,at=ce.create,rt=Be.create,nt=ue.create,st=le.create,it=pe.create,ot=he.create,dt=me.create,ct=fe.create,ut=ge.create,lt=ye.create,pt=ve.create,ht=_e.create,mt=be.create,ft=xe.create,gt=xe.strictCreate,yt=Ze.create,vt=Ae.create,_t=Oe.create,bt=Se.create,kt=Pe.create,xt=Ne.create,Zt=je.create,wt=Ce.create,At=$e.create,Tt=Ie.create,Ot=Re.create,St=Me.create,Pt=Fe.create,Nt=Le.create,jt=ze.create,Ct=De.create,$t=Le.createWithPreprocess,It=qe.create,Et=()=>tt().optional(),Rt=()=>at().optional(),Mt=()=>st().optional(),Ft={string:e=>oe.create({...e,coerce:!0}),number:e=>ce.create({...e,coerce:!0}),boolean:e=>le.create({...e,coerce:!0}),bigint:e=>ue.create({...e,coerce:!0}),date:e=>pe.create({...e,coerce:!0})},Lt=O,zt=Symbol("Let zodToJsonSchema decide on which parser to use"),Dt={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"},Vt=e=>{const t=(e=>"string"==typeof e?{...Dt,name:e}:{...Dt,...e})(e),a=void 0!==t.name?[...t.basePath,t.definitionPath,t.name]:t.basePath;return{...t,flags:{hasReferencedOpenAiAnyType:!1},currentPath:a,propertyPath:void 0,seen:new Map(Object.entries(t.definitions).map(([e,a])=>[a._def,{def:a._def,path:[...t.basePath,t.definitionPath,e],jsonSchema:void 0}]))}};function Ut(e,t,a,r){(null==r?void 0:r.errorMessages)&&a&&(e.errorMessage={...e.errorMessage,[t]:a})}function Bt(e,t,a,r,n){e[t]=a,Ut(e,t,r,n)}var Kt=(e,t)=>{let a=0;for(;a<e.length&&a<t.length&&e[a]===t[a];a++);return[(e.length-a).toString(),...t.slice(a)].join("/")};function Wt(e){if("openAi"!==e.target)return{};const t=[...e.basePath,e.definitionPath,e.openAiAnyTypeName];return e.flags.hasReferencedOpenAiAnyType=!0,{$ref:"relative"===e.$refStrategy?Kt(t,e.currentPath):t.join("/")}}function qt(e,t){return ba(e.type._def,t)}function Jt(e,t,a){const r=null!=a?a:t.dateStrategy;if(Array.isArray(r))return{anyOf:r.map((a,r)=>Jt(e,t,a))};switch(r){case"string":case"format:date-time":return{type:"string",format:"date-time"};case"format:date":return{type:"string",format:"date"};case"integer":return Ht(e,t)}}var Ht=(e,t)=>{const a={type:"integer",format:"unix-time"};if("openApi3"===t.target)return a;for(const r of e.checks)switch(r.kind){case"min":Bt(a,"minimum",r.value,r.message,t);break;case"max":Bt(a,"maximum",r.value,r.message,t)}return a};var Yt=void 0,Gt=/^[cC][^\s-]{8,}$/,Xt=/^[0-9a-z]+$/,Qt=/^[0-9A-HJKMNP-TV-Z]{26}$/,ea=/^(?!\.)(?!.*\.\.)([a-zA-Z0-9_'+\-\.]*)[a-zA-Z0-9_+-]@([a-zA-Z0-9][a-zA-Z0-9\-]*\.)+[a-zA-Z]{2,}$/,ta=()=>(void 0===Yt&&(Yt=RegExp("^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$","u")),Yt),aa=/^(?:(?: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])$/,ra=/^(([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])$/,na=/^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}=))?$/,sa=/^([0-9a-zA-Z-_]{4})*(([0-9a-zA-Z-_]{2}(==)?)|([0-9a-zA-Z-_]{3}(=)?))?$/,ia=/^[a-zA-Z0-9_-]{21}$/,oa=/^[A-Za-z0-9-_]+\.[A-Za-z0-9-_]+\.[A-Za-z0-9-_]*$/;function da(e,t){const a={type:"string"};if(e.checks)for(const r of e.checks)switch(r.kind){case"min":Bt(a,"minLength","number"==typeof a.minLength?Math.max(a.minLength,r.value):r.value,r.message,t);break;case"max":Bt(a,"maxLength","number"==typeof a.maxLength?Math.min(a.maxLength,r.value):r.value,r.message,t);break;case"email":switch(t.emailStrategy){case"format:email":la(a,"email",r.message,t);break;case"format:idn-email":la(a,"idn-email",r.message,t);break;case"pattern:zod":pa(a,ea,r.message,t)}break;case"url":la(a,"uri",r.message,t);break;case"uuid":la(a,"uuid",r.message,t);break;case"regex":pa(a,r.regex,r.message,t);break;case"cuid":pa(a,Gt,r.message,t);break;case"cuid2":pa(a,Xt,r.message,t);break;case"startsWith":pa(a,RegExp(`^${ca(r.value,t)}`),r.message,t);break;case"endsWith":pa(a,RegExp(`${ca(r.value,t)}$`),r.message,t);break;case"datetime":la(a,"date-time",r.message,t);break;case"date":la(a,"date",r.message,t);break;case"time":la(a,"time",r.message,t);break;case"duration":la(a,"duration",r.message,t);break;case"length":Bt(a,"minLength","number"==typeof a.minLength?Math.max(a.minLength,r.value):r.value,r.message,t),Bt(a,"maxLength","number"==typeof a.maxLength?Math.min(a.maxLength,r.value):r.value,r.message,t);break;case"includes":pa(a,RegExp(ca(r.value,t)),r.message,t);break;case"ip":"v6"!==r.version&&la(a,"ipv4",r.message,t),"v4"!==r.version&&la(a,"ipv6",r.message,t);break;case"base64url":pa(a,sa,r.message,t);break;case"jwt":pa(a,oa,r.message,t);break;case"cidr":"v6"!==r.version&&pa(a,aa,r.message,t),"v4"!==r.version&&pa(a,ra,r.message,t);break;case"emoji":pa(a,ta(),r.message,t);break;case"ulid":pa(a,Qt,r.message,t);break;case"base64":switch(t.base64Strategy){case"format:binary":la(a,"binary",r.message,t);break;case"contentEncoding:base64":Bt(a,"contentEncoding","base64",r.message,t);break;case"pattern:zod":pa(a,na,r.message,t)}break;case"nanoid":pa(a,ia,r.message,t)}return a}function ca(e,t){return"escape"===t.patternStrategy?function(e){let t="";for(let a=0;a<e.length;a++)ua.has(e[a])||(t+="\\"),t+=e[a];return t}(e):e}var ua=new Set("ABCDEFGHIJKLMNOPQRSTUVXYZabcdefghijklmnopqrstuvxyz0123456789");function la(e,t,a,r){var n;e.format||(null==(n=e.anyOf)?void 0:n.some(e=>e.format))?(e.anyOf||(e.anyOf=[]),e.format&&(e.anyOf.push({format:e.format,...e.errorMessage&&r.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,...a&&r.errorMessages&&{errorMessage:{format:a}}})):Bt(e,"format",t,a,r)}function pa(e,t,a,r){var n;e.pattern||(null==(n=e.allOf)?void 0:n.some(e=>e.pattern))?(e.allOf||(e.allOf=[]),e.pattern&&(e.allOf.push({pattern:e.pattern,...e.errorMessage&&r.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:ha(t,r),...a&&r.errorMessages&&{errorMessage:{pattern:a}}})):Bt(e,"pattern",ha(t,r),a,r)}function ha(e,t){var a;if(!t.applyRegexFlags||!e.flags)return e.source;const r=e.flags.includes("i"),n=e.flags.includes("m"),s=e.flags.includes("s"),i=r?e.source.toLowerCase():e.source;let o="",d=!1,c=!1,u=!1;for(let e=0;e<i.length;e++)if(d)o+=i[e],d=!1;else{if(r)if(c){if(i[e].match(/[a-z]/)){u?(o+=i[e],o+=`${i[e-2]}-${i[e]}`.toUpperCase(),u=!1):"-"===i[e+1]&&(null==(a=i[e+2])?void 0:a.match(/[a-z]/))?(o+=i[e],u=!0):o+=`${i[e]}${i[e].toUpperCase()}`;continue}}else if(i[e].match(/[a-z]/)){o+=`[${i[e]}${i[e].toUpperCase()}]`;continue}if(n){if("^"===i[e]){o+="(^|(?<=[\r\n]))";continue}if("$"===i[e]){o+="($|(?=[\r\n]))";continue}}s&&"."===i[e]?o+=c?`${i[e]}\r\n`:`[${i[e]}\r\n]`:(o+=i[e],"\\"===i[e]?d=!0:c&&"]"===i[e]?c=!1:c||"["!==i[e]||(c=!0))}try{new RegExp(o)}catch(a){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 ma(e,t){var a,r,n,s,i,o,d;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==(a=e.keyType)?void 0:a._def.typeName)===Ge.ZodEnum)return{type:"object",required:e.keyType._def.values,properties:e.keyType._def.values.reduce((a,r)=>{var n;return{...a,[r]:null!=(n=ba(e.valueType._def,{...t,currentPath:[...t.currentPath,"properties",r]}))?n:Wt(t)}},{}),additionalProperties:t.rejectedAdditionalProperties};const c={type:"object",additionalProperties:null!=(r=ba(e.valueType._def,{...t,currentPath:[...t.currentPath,"additionalProperties"]}))?r:t.allowedAdditionalProperties};if("openApi3"===t.target)return c;if((null==(n=e.keyType)?void 0:n._def.typeName)===Ge.ZodString&&(null==(s=e.keyType._def.checks)?void 0:s.length)){const{type:a,...r}=da(e.keyType._def,t);return{...c,propertyNames:r}}if((null==(i=e.keyType)?void 0:i._def.typeName)===Ge.ZodEnum)return{...c,propertyNames:{enum:e.keyType._def.values}};if((null==(o=e.keyType)?void 0:o._def.typeName)===Ge.ZodBranded&&e.keyType._def.type._def.typeName===Ge.ZodString&&(null==(d=e.keyType._def.type._def.checks)?void 0:d.length)){const{type:a,...r}=qt(e.keyType._def,t);return{...c,propertyNames:r}}return c}var fa={ZodString:"string",ZodNumber:"number",ZodBigInt:"integer",ZodBoolean:"boolean",ZodNull:"null"};var ga=(e,t)=>{const a=(e.options instanceof Map?Array.from(e.options.values()):e.options).map((e,a)=>ba(e._def,{...t,currentPath:[...t.currentPath,"anyOf",`${a}`]})).filter(e=>!!e&&(!t.strictUnions||"object"==typeof e&&Object.keys(e).length>0));return a.length?{anyOf:a}:void 0};function ya(e,t){const a="openAi"===t.target,r={type:"object",properties:{}},n=[],s=e.shape();for(const e in s){let i=s[e];if(void 0===i||void 0===i._def)continue;let o=va(i);o&&a&&("ZodOptional"===i._def.typeName&&(i=i._def.innerType),i.isNullable()||(i=i.nullable()),o=!1);const d=ba(i._def,{...t,currentPath:[...t.currentPath,"properties",e],propertyPath:[...t.currentPath,"properties",e]});void 0!==d&&(r.properties[e]=d,o||n.push(e))}n.length&&(r.required=n);const i=function(e,t){if("ZodNever"!==e.catchall._def.typeName)return ba(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!==i&&(r.additionalProperties=i),r}function va(e){try{return e.isOptional()}catch(e){return!0}}var _a=(e,t,a)=>{switch(t){case Ge.ZodString:return da(e,a);case Ge.ZodNumber:return function(e,t){const a={type:"number"};if(!e.checks)return a;for(const r of e.checks)switch(r.kind){case"int":a.type="integer",Ut(a,"type",r.message,t);break;case"min":"jsonSchema7"===t.target?r.inclusive?Bt(a,"minimum",r.value,r.message,t):Bt(a,"exclusiveMinimum",r.value,r.message,t):(r.inclusive||(a.exclusiveMinimum=!0),Bt(a,"minimum",r.value,r.message,t));break;case"max":"jsonSchema7"===t.target?r.inclusive?Bt(a,"maximum",r.value,r.message,t):Bt(a,"exclusiveMaximum",r.value,r.message,t):(r.inclusive||(a.exclusiveMaximum=!0),Bt(a,"maximum",r.value,r.message,t));break;case"multipleOf":Bt(a,"multipleOf",r.value,r.message,t)}return a}(e,a);case Ge.ZodObject:return ya(e,a);case Ge.ZodBigInt:return function(e,t){const a={type:"integer",format:"int64"};if(!e.checks)return a;for(const r of e.checks)switch(r.kind){case"min":"jsonSchema7"===t.target?r.inclusive?Bt(a,"minimum",r.value,r.message,t):Bt(a,"exclusiveMinimum",r.value,r.message,t):(r.inclusive||(a.exclusiveMinimum=!0),Bt(a,"minimum",r.value,r.message,t));break;case"max":"jsonSchema7"===t.target?r.inclusive?Bt(a,"maximum",r.value,r.message,t):Bt(a,"exclusiveMaximum",r.value,r.message,t):(r.inclusive||(a.exclusiveMaximum=!0),Bt(a,"maximum",r.value,r.message,t));break;case"multipleOf":Bt(a,"multipleOf",r.value,r.message,t)}return a}(e,a);case Ge.ZodBoolean:return{type:"boolean"};case Ge.ZodDate:return Jt(e,a);case Ge.ZodUndefined:return function(e){return{not:Wt(e)}}(a);case Ge.ZodNull:return function(e){return"openApi3"===e.target?{enum:["null"],nullable:!0}:{type:"null"}}(a);case Ge.ZodArray:return function(e,t){var a,r,n;const s={type:"array"};return(null==(a=e.type)?void 0:a._def)&&(null==(n=null==(r=e.type)?void 0:r._def)?void 0:n.typeName)!==Ge.ZodAny&&(s.items=ba(e.type._def,{...t,currentPath:[...t.currentPath,"items"]})),e.minLength&&Bt(s,"minItems",e.minLength.value,e.minLength.message,t),e.maxLength&&Bt(s,"maxItems",e.maxLength.value,e.maxLength.message,t),e.exactLength&&(Bt(s,"minItems",e.exactLength.value,e.exactLength.message,t),Bt(s,"maxItems",e.exactLength.value,e.exactLength.message,t)),s}(e,a);case Ge.ZodUnion:case Ge.ZodDiscriminatedUnion:return function(e,t){if("openApi3"===t.target)return ga(e,t);const a=e.options instanceof Map?Array.from(e.options.values()):e.options;if(a.every(e=>e._def.typeName in fa&&(!e._def.checks||!e._def.checks.length))){const e=a.reduce((e,t)=>{const a=fa[t._def.typeName];return a&&!e.includes(a)?[...e,a]:e},[]);return{type:e.length>1?e:e[0]}}if(a.every(e=>"ZodLiteral"===e._def.typeName&&!e.description)){const e=a.reduce((e,t)=>{const a=typeof t._def.value;switch(a){case"string":case"number":case"boolean":return[...e,a];case"bigint":return[...e,"integer"];case"object":if(null===t._def.value)return[...e,"null"];default:return e}},[]);if(e.length===a.length){const t=e.filter((e,t,a)=>a.indexOf(e)===t);return{type:t.length>1?t:t[0],enum:a.reduce((e,t)=>e.includes(t._def.value)?e:[...e,t._def.value],[])}}}else if(a.every(e=>"ZodEnum"===e._def.typeName))return{type:"string",enum:a.reduce((e,t)=>[...e,...t._def.values.filter(t=>!e.includes(t))],[])};return ga(e,t)}(e,a);case Ge.ZodIntersection:return function(e,t){const a=[ba(e.left._def,{...t,currentPath:[...t.currentPath,"allOf","0"]}),ba(e.right._def,{...t,currentPath:[...t.currentPath,"allOf","1"]})].filter(e=>!!e);let r="jsonSchema2019-09"===t.target?{unevaluatedProperties:!1}:void 0;const n=[];return a.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:a,...r}=e;t=r}else r=void 0;n.push(t)}else n.push(...e.allOf),void 0===e.unevaluatedProperties&&(r=void 0);var t}),n.length?{allOf:n,...r}:void 0}(e,a);case Ge.ZodTuple:return function(e,t){return e.rest?{type:"array",minItems:e.items.length,items:e.items.map((e,a)=>ba(e._def,{...t,currentPath:[...t.currentPath,"items",`${a}`]})).reduce((e,t)=>void 0===t?e:[...e,t],[]),additionalItems:ba(e.rest._def,{...t,currentPath:[...t.currentPath,"additionalItems"]})}:{type:"array",minItems:e.items.length,maxItems:e.items.length,items:e.items.map((e,a)=>ba(e._def,{...t,currentPath:[...t.currentPath,"items",`${a}`]})).reduce((e,t)=>void 0===t?e:[...e,t],[])}}(e,a);case Ge.ZodRecord:return ma(e,a);case Ge.ZodLiteral:return function(e,t){const a=typeof e.value;return"bigint"!==a&&"number"!==a&&"boolean"!==a&&"string"!==a?{type:Array.isArray(e.value)?"array":"object"}:"openApi3"===t.target?{type:"bigint"===a?"integer":a,enum:[e.value]}:{type:"bigint"===a?"integer":a,const:e.value}}(e,a);case Ge.ZodEnum:return function(e){return{type:"string",enum:Array.from(e.values)}}(e);case Ge.ZodNativeEnum:return function(e){const t=e.values,a=Object.keys(e.values).filter(e=>"number"!=typeof t[t[e]]).map(e=>t[e]),r=Array.from(new Set(a.map(e=>typeof e)));return{type:1===r.length?"string"===r[0]?"string":"number":["string","number"],enum:a}}(e);case Ge.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:fa[e.innerType._def.typeName],nullable:!0}:{type:[fa[e.innerType._def.typeName],"null"]};if("openApi3"===t.target){const a=ba(e.innerType._def,{...t,currentPath:[...t.currentPath]});return a&&"$ref"in a?{allOf:[a],nullable:!0}:a&&{...a,nullable:!0}}const a=ba(e.innerType._def,{...t,currentPath:[...t.currentPath,"anyOf","0"]});return a&&{anyOf:[a,{type:"null"}]}}(e,a);case Ge.ZodOptional:return((e,t)=>{var a;if(t.currentPath.toString()===(null==(a=t.propertyPath)?void 0:a.toString()))return ba(e.innerType._def,t);const r=ba(e.innerType._def,{...t,currentPath:[...t.currentPath,"anyOf","1"]});return r?{anyOf:[{not:Wt(t)},r]}:Wt(t)})(e,a);case Ge.ZodMap:return function(e,t){return"record"===t.mapStrategy?ma(e,t):{type:"array",maxItems:125,items:{type:"array",items:[ba(e.keyType._def,{...t,currentPath:[...t.currentPath,"items","items","0"]})||Wt(t),ba(e.valueType._def,{...t,currentPath:[...t.currentPath,"items","items","1"]})||Wt(t)],minItems:2,maxItems:2}}}(e,a);case Ge.ZodSet:return function(e,t){const a={type:"array",uniqueItems:!0,items:ba(e.valueType._def,{...t,currentPath:[...t.currentPath,"items"]})};return e.minSize&&Bt(a,"minItems",e.minSize.value,e.minSize.message,t),e.maxSize&&Bt(a,"maxItems",e.maxSize.value,e.maxSize.message,t),a}(e,a);case Ge.ZodLazy:return()=>e.getter()._def;case Ge.ZodPromise:return function(e,t){return ba(e.type._def,t)}(e,a);case Ge.ZodNaN:case Ge.ZodNever:return function(e){return"openAi"===e.target?void 0:{not:Wt({...e,currentPath:[...e.currentPath,"not"]})}}(a);case Ge.ZodEffects:return function(e,t){return"input"===t.effectStrategy?ba(e.schema._def,t):Wt(t)}(e,a);case Ge.ZodAny:return Wt(a);case Ge.ZodUnknown:return function(e){return Wt(e)}(a);case Ge.ZodDefault:return function(e,t){return{...ba(e.innerType._def,t),default:e.defaultValue()}}(e,a);case Ge.ZodBranded:return qt(e,a);case Ge.ZodReadonly:case Ge.ZodCatch:return((e,t)=>ba(e.innerType._def,t))(e,a);case Ge.ZodPipeline:return((e,t)=>{if("input"===t.pipeStrategy)return ba(e.in._def,t);if("output"===t.pipeStrategy)return ba(e.out._def,t);const a=ba(e.in._def,{...t,currentPath:[...t.currentPath,"allOf","0"]});return{allOf:[a,ba(e.out._def,{...t,currentPath:[...t.currentPath,"allOf",a?"1":"0"]})].filter(e=>void 0!==e)}})(e,a);case Ge.ZodFunction:case Ge.ZodVoid:case Ge.ZodSymbol:default:return}};function ba(e,t,a=!1){var r;const n=t.seen.get(e);if(t.override){const s=null==(r=t.override)?void 0:r.call(t,e,t,n,a);if(s!==zt)return s}if(n&&!a){const e=ka(n,t);if(void 0!==e)return e}const s={def:e,path:t.currentPath,jsonSchema:void 0};t.seen.set(e,s);const i=_a(e,e.typeName,t),o="function"==typeof i?ba(i(),t):i;if(o&&xa(e,t,o),t.postProcess){const a=t.postProcess(o,e,t);return s.jsonSchema=o,a}return s.jsonSchema=o,o}var ka=(e,t)=>{switch(t.$refStrategy){case"root":return{$ref:e.path.join("/")};case"relative":return{$ref:Kt(t.currentPath,e.path)};case"none":case"seen":return e.path.length<t.currentPath.length&&e.path.every((e,a)=>t.currentPath[a]===e)?(console.warn(`Recursive reference detected at ${t.currentPath.join("/")}! Defaulting to any`),Wt(t)):"seen"===t.$refStrategy?Wt(t):void 0}},xa=(e,t,a)=>(e.description&&(a.description=e.description,t.markdownDescription&&(a.markdownDescription=e.description)),a),Za=(e,t)=>{var a;const r=Vt(t);let n="object"==typeof t&&t.definitions?Object.entries(t.definitions).reduce((e,[t,a])=>{var n;return{...e,[t]:null!=(n=ba(a._def,{...r,currentPath:[...r.basePath,r.definitionPath,t]},!0))?n:Wt(r)}},{}):void 0;const s="string"==typeof t?t:"title"===(null==t?void 0:t.nameStrategy)||null==t?void 0:t.name,i=null!=(a=ba(e._def,void 0===s?r:{...r,currentPath:[...r.basePath,r.definitionPath,s]},!1))?a:Wt(r),o="object"==typeof t&&void 0!==t.name&&"title"===t.nameStrategy?t.name:void 0;void 0!==o&&(i.title=o),r.flags.hasReferencedOpenAiAnyType&&(n||(n={}),n[r.openAiAnyTypeName]||(n[r.openAiAnyTypeName]={type:["string","number","integer","boolean","array","null"],items:{$ref:"relative"===r.$refStrategy?"1":[...r.basePath,r.definitionPath,r.openAiAnyTypeName].join("/")}}));const d=void 0===s?n?{...i,[r.definitionPath]:n}:i:{$ref:[..."relative"===r.$refStrategy?[]:r.basePath,r.definitionPath,s].join("/"),[r.definitionPath]:{...n,[s]:i}};return"jsonSchema7"===r.target?d.$schema="http://json-schema.org/draft-07/schema#":"jsonSchema2019-09"!==r.target&&"openAi"!==r.target||(d.$schema="https://json-schema.org/draft/2019-09/schema#"),"openAi"===r.target&&("anyOf"in d||"oneOf"in d||"allOf"in d||"type"in d&&Array.isArray(d.type))&&console.warn("Warning: OpenAI may not support schemas with unions as roots! Try wrapping it in an object property."),d},wa=l.record(l.string(),l.boolean()).describe("Consent requirement mapping"),Aa=l.lazy(()=>l.union([l.string(),l.number(),l.boolean(),Pa,l.array(Aa)])),Ta=l.tuple([Aa,Aa]).describe("Loop: [source, transform] tuple for array transformations"),Oa=l.array(Aa).describe("Set: Array of values"),Sa=l.record(l.string(),Aa).describe("Map: Object mapping keys to values"),Pa=l.object({key:l.string().optional().describe('Property path (e.g., "data.id")'),value:l.union([l.string(),l.number(),l.boolean()]).optional().describe("Static primitive value"),fn:l.string().optional().describe("Function string for custom transformation"),map:Sa.optional().describe("Object with key-value mappings"),loop:Ta.optional().describe("Tuple [source, transform]"),set:Oa.optional().describe("Array of values"),consent:wa.optional().describe("Required consent states"),condition:l.string().optional().describe("Condition function string"),validate:l.string().optional().describe("Validation function string")}).refine(e=>Object.keys(e).length>0,{message:"ValueConfig must have at least one property"}).describe("Value configuration for transformations"),Na=Ta,ja=Oa,Ca=Sa;Za(Pa,{target:"jsonSchema7",$refStrategy:"relative",name:"ValueConfig"}),Za(Na,{target:"jsonSchema7",$refStrategy:"relative",name:"Loop"}),Za(ja,{target:"jsonSchema7",$refStrategy:"relative",name:"Set"}),Za(Ca,{target:"jsonSchema7",$refStrategy:"relative",name:"Map"});function $a(e){var t;return Boolean(e&&"object"==typeof e&&"AWS"in e&&(null==(t=e.AWS)?void 0:t.FirehoseClient))}function Ia(e,t){const{streamName:a,region:r="eu-central-1",config:n={}}=e;a||function(e){throw new Error(String(e))}("Firehose: Config custom streamName missing"),n.region||(n.region=r);let s=e.client;return!s&&$a(t)&&(s=new t.AWS.FirehoseClient(n)),{streamName:a,client:s,region:r}}var Ea=async function(e,{config:t,collector:a,env:r}){const{firehose:n}=t.settings||{};n&&async function(e,t,a){const{client:r,streamName:n}=t;if(!r)return{queue:e};const s=e.map(({event:e})=>({Data:Buffer.from(JSON.stringify(e))}));if($a(a))await r.send(new a.AWS.PutRecordBatchCommand({DeliveryStreamName:n,Records:s}));else{const{PutRecordBatchCommand:e}=await import("@aws-sdk/client-firehose");await r.send(new e({DeliveryStreamName:n,Records:s}))}}([{event:e}],n,r)},Ra={},Ma={};s(Ma,{env:()=>Fa});var Fa={};s(Fa,{push:()=>La});var La={AWS:{FirehoseClient:class{constructor(e){this.config=e}async send(e){return{RecordId:"mock-record-id",ResponseMetadata:{RequestId:"mock-request-id"}}}},PutRecordBatchCommand:class{constructor(e){this.input=e}}}},za={type:"aws-firehose",config:{},async init({config:e,env:t}){const a=function(e={},t){const a=e.settings||{};return a.firehose&&(a.firehose=Ia(a.firehose,t)),{settings:a}}(e,t);return typeof a.settings==typeof{}&&a},push:async(e,{config:t,collector:a,env:r})=>await Ea(e,{config:t,collector:a,env:r})},Da={};s(Da,{firehose:()=>Ma});//# sourceMappingURL=index.js.map