@walkeros/core 3.1.0 → 3.2.0-next-1775064795590
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dev.d.mts +277 -19
- package/dist/dev.d.ts +277 -19
- package/dist/dev.js +1 -1
- package/dist/dev.js.map +1 -1
- package/dist/dev.mjs +1 -1
- package/dist/dev.mjs.map +1 -1
- package/dist/index.d.mts +369 -196
- package/dist/index.d.ts +369 -196
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/dev.d.mts
CHANGED
|
@@ -3032,7 +3032,8 @@ declare const SourceReferenceSchema: z.ZodObject<{
|
|
|
3032
3032
|
primary: z.ZodOptional<z.ZodBoolean>;
|
|
3033
3033
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3034
3034
|
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3035
|
-
next: z.ZodOptional<z.
|
|
3035
|
+
next: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3036
|
+
before: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3036
3037
|
examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3037
3038
|
description: z.ZodOptional<z.ZodString>;
|
|
3038
3039
|
in: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -3043,6 +3044,16 @@ declare const SourceReferenceSchema: z.ZodObject<{
|
|
|
3043
3044
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3044
3045
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3045
3046
|
}, z.core.$strip>>>;
|
|
3047
|
+
cache: z.ZodOptional<z.ZodObject<{
|
|
3048
|
+
full: z.ZodOptional<z.ZodBoolean>;
|
|
3049
|
+
store: z.ZodOptional<z.ZodString>;
|
|
3050
|
+
rules: z.ZodArray<z.ZodObject<{
|
|
3051
|
+
match: z.ZodUnion<readonly [z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>, z.ZodLiteral<"*">]>;
|
|
3052
|
+
key: z.ZodArray<z.ZodString>;
|
|
3053
|
+
ttl: z.ZodNumber;
|
|
3054
|
+
update: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
|
|
3055
|
+
}, z.core.$strip>>;
|
|
3056
|
+
}, z.core.$strip>>;
|
|
3046
3057
|
}, z.core.$strip>;
|
|
3047
3058
|
/**
|
|
3048
3059
|
* Transformer reference schema.
|
|
@@ -3060,7 +3071,8 @@ declare const TransformerReferenceSchema: z.ZodObject<{
|
|
|
3060
3071
|
}, z.core.$strip>]>>;
|
|
3061
3072
|
config: z.ZodOptional<z.ZodUnknown>;
|
|
3062
3073
|
env: z.ZodOptional<z.ZodUnknown>;
|
|
3063
|
-
|
|
3074
|
+
before: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3075
|
+
next: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3064
3076
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3065
3077
|
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3066
3078
|
examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -3073,6 +3085,16 @@ declare const TransformerReferenceSchema: z.ZodObject<{
|
|
|
3073
3085
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3074
3086
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3075
3087
|
}, z.core.$strip>>>;
|
|
3088
|
+
cache: z.ZodOptional<z.ZodObject<{
|
|
3089
|
+
full: z.ZodOptional<z.ZodBoolean>;
|
|
3090
|
+
store: z.ZodOptional<z.ZodString>;
|
|
3091
|
+
rules: z.ZodArray<z.ZodObject<{
|
|
3092
|
+
match: z.ZodUnion<readonly [z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>, z.ZodLiteral<"*">]>;
|
|
3093
|
+
key: z.ZodArray<z.ZodString>;
|
|
3094
|
+
ttl: z.ZodNumber;
|
|
3095
|
+
update: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
|
|
3096
|
+
}, z.core.$strip>>;
|
|
3097
|
+
}, z.core.$strip>>;
|
|
3076
3098
|
}, z.core.$strip>;
|
|
3077
3099
|
/**
|
|
3078
3100
|
* Destination reference schema.
|
|
@@ -3092,7 +3114,8 @@ declare const DestinationReferenceSchema: z.ZodObject<{
|
|
|
3092
3114
|
env: z.ZodOptional<z.ZodUnknown>;
|
|
3093
3115
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3094
3116
|
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3095
|
-
before: z.ZodOptional<z.
|
|
3117
|
+
before: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3118
|
+
next: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3096
3119
|
examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3097
3120
|
description: z.ZodOptional<z.ZodString>;
|
|
3098
3121
|
in: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -3103,6 +3126,16 @@ declare const DestinationReferenceSchema: z.ZodObject<{
|
|
|
3103
3126
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3104
3127
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3105
3128
|
}, z.core.$strip>>>;
|
|
3129
|
+
cache: z.ZodOptional<z.ZodObject<{
|
|
3130
|
+
full: z.ZodOptional<z.ZodBoolean>;
|
|
3131
|
+
store: z.ZodOptional<z.ZodString>;
|
|
3132
|
+
rules: z.ZodArray<z.ZodObject<{
|
|
3133
|
+
match: z.ZodUnion<readonly [z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>, z.ZodLiteral<"*">]>;
|
|
3134
|
+
key: z.ZodArray<z.ZodString>;
|
|
3135
|
+
ttl: z.ZodNumber;
|
|
3136
|
+
update: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
|
|
3137
|
+
}, z.core.$strip>>;
|
|
3138
|
+
}, z.core.$strip>>;
|
|
3106
3139
|
}, z.core.$strip>;
|
|
3107
3140
|
/**
|
|
3108
3141
|
* Store package reference.
|
|
@@ -3200,7 +3233,8 @@ declare const SettingsSchema: z.ZodObject<{
|
|
|
3200
3233
|
primary: z.ZodOptional<z.ZodBoolean>;
|
|
3201
3234
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3202
3235
|
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3203
|
-
next: z.ZodOptional<z.
|
|
3236
|
+
next: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3237
|
+
before: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3204
3238
|
examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3205
3239
|
description: z.ZodOptional<z.ZodString>;
|
|
3206
3240
|
in: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -3211,6 +3245,16 @@ declare const SettingsSchema: z.ZodObject<{
|
|
|
3211
3245
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3212
3246
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3213
3247
|
}, z.core.$strip>>>;
|
|
3248
|
+
cache: z.ZodOptional<z.ZodObject<{
|
|
3249
|
+
full: z.ZodOptional<z.ZodBoolean>;
|
|
3250
|
+
store: z.ZodOptional<z.ZodString>;
|
|
3251
|
+
rules: z.ZodArray<z.ZodObject<{
|
|
3252
|
+
match: z.ZodUnion<readonly [z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>, z.ZodLiteral<"*">]>;
|
|
3253
|
+
key: z.ZodArray<z.ZodString>;
|
|
3254
|
+
ttl: z.ZodNumber;
|
|
3255
|
+
update: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
|
|
3256
|
+
}, z.core.$strip>>;
|
|
3257
|
+
}, z.core.$strip>>;
|
|
3214
3258
|
}, z.core.$strip>>>;
|
|
3215
3259
|
destinations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3216
3260
|
package: z.ZodOptional<z.ZodString>;
|
|
@@ -3223,7 +3267,8 @@ declare const SettingsSchema: z.ZodObject<{
|
|
|
3223
3267
|
env: z.ZodOptional<z.ZodUnknown>;
|
|
3224
3268
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3225
3269
|
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3226
|
-
before: z.ZodOptional<z.
|
|
3270
|
+
before: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3271
|
+
next: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3227
3272
|
examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3228
3273
|
description: z.ZodOptional<z.ZodString>;
|
|
3229
3274
|
in: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -3234,6 +3279,16 @@ declare const SettingsSchema: z.ZodObject<{
|
|
|
3234
3279
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3235
3280
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3236
3281
|
}, z.core.$strip>>>;
|
|
3282
|
+
cache: z.ZodOptional<z.ZodObject<{
|
|
3283
|
+
full: z.ZodOptional<z.ZodBoolean>;
|
|
3284
|
+
store: z.ZodOptional<z.ZodString>;
|
|
3285
|
+
rules: z.ZodArray<z.ZodObject<{
|
|
3286
|
+
match: z.ZodUnion<readonly [z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>, z.ZodLiteral<"*">]>;
|
|
3287
|
+
key: z.ZodArray<z.ZodString>;
|
|
3288
|
+
ttl: z.ZodNumber;
|
|
3289
|
+
update: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
|
|
3290
|
+
}, z.core.$strip>>;
|
|
3291
|
+
}, z.core.$strip>>;
|
|
3237
3292
|
}, z.core.$strip>>>;
|
|
3238
3293
|
transformers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3239
3294
|
package: z.ZodOptional<z.ZodString>;
|
|
@@ -3244,7 +3299,8 @@ declare const SettingsSchema: z.ZodObject<{
|
|
|
3244
3299
|
}, z.core.$strip>]>>;
|
|
3245
3300
|
config: z.ZodOptional<z.ZodUnknown>;
|
|
3246
3301
|
env: z.ZodOptional<z.ZodUnknown>;
|
|
3247
|
-
|
|
3302
|
+
before: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3303
|
+
next: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3248
3304
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3249
3305
|
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3250
3306
|
examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -3257,6 +3313,16 @@ declare const SettingsSchema: z.ZodObject<{
|
|
|
3257
3313
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3258
3314
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3259
3315
|
}, z.core.$strip>>>;
|
|
3316
|
+
cache: z.ZodOptional<z.ZodObject<{
|
|
3317
|
+
full: z.ZodOptional<z.ZodBoolean>;
|
|
3318
|
+
store: z.ZodOptional<z.ZodString>;
|
|
3319
|
+
rules: z.ZodArray<z.ZodObject<{
|
|
3320
|
+
match: z.ZodUnion<readonly [z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>, z.ZodLiteral<"*">]>;
|
|
3321
|
+
key: z.ZodArray<z.ZodString>;
|
|
3322
|
+
ttl: z.ZodNumber;
|
|
3323
|
+
update: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
|
|
3324
|
+
}, z.core.$strip>>;
|
|
3325
|
+
}, z.core.$strip>>;
|
|
3260
3326
|
}, z.core.$strip>>>;
|
|
3261
3327
|
stores: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3262
3328
|
package: z.ZodOptional<z.ZodString>;
|
|
@@ -3312,7 +3378,8 @@ declare const ConfigSchema: z.ZodObject<{
|
|
|
3312
3378
|
primary: z.ZodOptional<z.ZodBoolean>;
|
|
3313
3379
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3314
3380
|
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3315
|
-
next: z.ZodOptional<z.
|
|
3381
|
+
next: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3382
|
+
before: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3316
3383
|
examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3317
3384
|
description: z.ZodOptional<z.ZodString>;
|
|
3318
3385
|
in: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -3323,6 +3390,16 @@ declare const ConfigSchema: z.ZodObject<{
|
|
|
3323
3390
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3324
3391
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3325
3392
|
}, z.core.$strip>>>;
|
|
3393
|
+
cache: z.ZodOptional<z.ZodObject<{
|
|
3394
|
+
full: z.ZodOptional<z.ZodBoolean>;
|
|
3395
|
+
store: z.ZodOptional<z.ZodString>;
|
|
3396
|
+
rules: z.ZodArray<z.ZodObject<{
|
|
3397
|
+
match: z.ZodUnion<readonly [z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>, z.ZodLiteral<"*">]>;
|
|
3398
|
+
key: z.ZodArray<z.ZodString>;
|
|
3399
|
+
ttl: z.ZodNumber;
|
|
3400
|
+
update: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
|
|
3401
|
+
}, z.core.$strip>>;
|
|
3402
|
+
}, z.core.$strip>>;
|
|
3326
3403
|
}, z.core.$strip>>>;
|
|
3327
3404
|
destinations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3328
3405
|
package: z.ZodOptional<z.ZodString>;
|
|
@@ -3335,7 +3412,8 @@ declare const ConfigSchema: z.ZodObject<{
|
|
|
3335
3412
|
env: z.ZodOptional<z.ZodUnknown>;
|
|
3336
3413
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3337
3414
|
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3338
|
-
before: z.ZodOptional<z.
|
|
3415
|
+
before: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3416
|
+
next: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3339
3417
|
examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3340
3418
|
description: z.ZodOptional<z.ZodString>;
|
|
3341
3419
|
in: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -3346,6 +3424,16 @@ declare const ConfigSchema: z.ZodObject<{
|
|
|
3346
3424
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3347
3425
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3348
3426
|
}, z.core.$strip>>>;
|
|
3427
|
+
cache: z.ZodOptional<z.ZodObject<{
|
|
3428
|
+
full: z.ZodOptional<z.ZodBoolean>;
|
|
3429
|
+
store: z.ZodOptional<z.ZodString>;
|
|
3430
|
+
rules: z.ZodArray<z.ZodObject<{
|
|
3431
|
+
match: z.ZodUnion<readonly [z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>, z.ZodLiteral<"*">]>;
|
|
3432
|
+
key: z.ZodArray<z.ZodString>;
|
|
3433
|
+
ttl: z.ZodNumber;
|
|
3434
|
+
update: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
|
|
3435
|
+
}, z.core.$strip>>;
|
|
3436
|
+
}, z.core.$strip>>;
|
|
3349
3437
|
}, z.core.$strip>>>;
|
|
3350
3438
|
transformers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3351
3439
|
package: z.ZodOptional<z.ZodString>;
|
|
@@ -3356,7 +3444,8 @@ declare const ConfigSchema: z.ZodObject<{
|
|
|
3356
3444
|
}, z.core.$strip>]>>;
|
|
3357
3445
|
config: z.ZodOptional<z.ZodUnknown>;
|
|
3358
3446
|
env: z.ZodOptional<z.ZodUnknown>;
|
|
3359
|
-
|
|
3447
|
+
before: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3448
|
+
next: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3360
3449
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3361
3450
|
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3362
3451
|
examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -3369,6 +3458,16 @@ declare const ConfigSchema: z.ZodObject<{
|
|
|
3369
3458
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3370
3459
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3371
3460
|
}, z.core.$strip>>>;
|
|
3461
|
+
cache: z.ZodOptional<z.ZodObject<{
|
|
3462
|
+
full: z.ZodOptional<z.ZodBoolean>;
|
|
3463
|
+
store: z.ZodOptional<z.ZodString>;
|
|
3464
|
+
rules: z.ZodArray<z.ZodObject<{
|
|
3465
|
+
match: z.ZodUnion<readonly [z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>, z.ZodLiteral<"*">]>;
|
|
3466
|
+
key: z.ZodArray<z.ZodString>;
|
|
3467
|
+
ttl: z.ZodNumber;
|
|
3468
|
+
update: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
|
|
3469
|
+
}, z.core.$strip>>;
|
|
3470
|
+
}, z.core.$strip>>;
|
|
3372
3471
|
}, z.core.$strip>>>;
|
|
3373
3472
|
stores: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3374
3473
|
package: z.ZodOptional<z.ZodString>;
|
|
@@ -3471,7 +3570,8 @@ declare function safeParseConfig(data: unknown): z.ZodSafeParseResult<{
|
|
|
3471
3570
|
primary?: boolean | undefined;
|
|
3472
3571
|
variables?: Record<string, string | number | boolean> | undefined;
|
|
3473
3572
|
definitions?: Record<string, unknown> | undefined;
|
|
3474
|
-
next?:
|
|
3573
|
+
next?: unknown;
|
|
3574
|
+
before?: unknown;
|
|
3475
3575
|
examples?: Record<string, {
|
|
3476
3576
|
description?: string | undefined;
|
|
3477
3577
|
in?: unknown;
|
|
@@ -3482,6 +3582,16 @@ declare function safeParseConfig(data: unknown): z.ZodSafeParseResult<{
|
|
|
3482
3582
|
mapping?: unknown;
|
|
3483
3583
|
out?: unknown;
|
|
3484
3584
|
}> | undefined;
|
|
3585
|
+
cache?: {
|
|
3586
|
+
rules: {
|
|
3587
|
+
match: unknown;
|
|
3588
|
+
key: string[];
|
|
3589
|
+
ttl: number;
|
|
3590
|
+
update?: Record<string, unknown> | undefined;
|
|
3591
|
+
}[];
|
|
3592
|
+
full?: boolean | undefined;
|
|
3593
|
+
store?: string | undefined;
|
|
3594
|
+
} | undefined;
|
|
3485
3595
|
}> | undefined;
|
|
3486
3596
|
destinations?: Record<string, {
|
|
3487
3597
|
package?: string | undefined;
|
|
@@ -3494,7 +3604,8 @@ declare function safeParseConfig(data: unknown): z.ZodSafeParseResult<{
|
|
|
3494
3604
|
env?: unknown;
|
|
3495
3605
|
variables?: Record<string, string | number | boolean> | undefined;
|
|
3496
3606
|
definitions?: Record<string, unknown> | undefined;
|
|
3497
|
-
before?:
|
|
3607
|
+
before?: unknown;
|
|
3608
|
+
next?: unknown;
|
|
3498
3609
|
examples?: Record<string, {
|
|
3499
3610
|
description?: string | undefined;
|
|
3500
3611
|
in?: unknown;
|
|
@@ -3505,6 +3616,16 @@ declare function safeParseConfig(data: unknown): z.ZodSafeParseResult<{
|
|
|
3505
3616
|
mapping?: unknown;
|
|
3506
3617
|
out?: unknown;
|
|
3507
3618
|
}> | undefined;
|
|
3619
|
+
cache?: {
|
|
3620
|
+
rules: {
|
|
3621
|
+
match: unknown;
|
|
3622
|
+
key: string[];
|
|
3623
|
+
ttl: number;
|
|
3624
|
+
update?: Record<string, unknown> | undefined;
|
|
3625
|
+
}[];
|
|
3626
|
+
full?: boolean | undefined;
|
|
3627
|
+
store?: string | undefined;
|
|
3628
|
+
} | undefined;
|
|
3508
3629
|
}> | undefined;
|
|
3509
3630
|
transformers?: Record<string, {
|
|
3510
3631
|
package?: string | undefined;
|
|
@@ -3515,7 +3636,8 @@ declare function safeParseConfig(data: unknown): z.ZodSafeParseResult<{
|
|
|
3515
3636
|
} | undefined;
|
|
3516
3637
|
config?: unknown;
|
|
3517
3638
|
env?: unknown;
|
|
3518
|
-
|
|
3639
|
+
before?: unknown;
|
|
3640
|
+
next?: unknown;
|
|
3519
3641
|
variables?: Record<string, string | number | boolean> | undefined;
|
|
3520
3642
|
definitions?: Record<string, unknown> | undefined;
|
|
3521
3643
|
examples?: Record<string, {
|
|
@@ -3528,6 +3650,16 @@ declare function safeParseConfig(data: unknown): z.ZodSafeParseResult<{
|
|
|
3528
3650
|
mapping?: unknown;
|
|
3529
3651
|
out?: unknown;
|
|
3530
3652
|
}> | undefined;
|
|
3653
|
+
cache?: {
|
|
3654
|
+
rules: {
|
|
3655
|
+
match: unknown;
|
|
3656
|
+
key: string[];
|
|
3657
|
+
ttl: number;
|
|
3658
|
+
update?: Record<string, unknown> | undefined;
|
|
3659
|
+
}[];
|
|
3660
|
+
full?: boolean | undefined;
|
|
3661
|
+
store?: string | undefined;
|
|
3662
|
+
} | undefined;
|
|
3531
3663
|
}> | undefined;
|
|
3532
3664
|
stores?: Record<string, {
|
|
3533
3665
|
package?: string | undefined;
|
|
@@ -3619,7 +3751,8 @@ declare function safeParseSettings(data: unknown): z.ZodSafeParseResult<{
|
|
|
3619
3751
|
primary?: boolean | undefined;
|
|
3620
3752
|
variables?: Record<string, string | number | boolean> | undefined;
|
|
3621
3753
|
definitions?: Record<string, unknown> | undefined;
|
|
3622
|
-
next?:
|
|
3754
|
+
next?: unknown;
|
|
3755
|
+
before?: unknown;
|
|
3623
3756
|
examples?: Record<string, {
|
|
3624
3757
|
description?: string | undefined;
|
|
3625
3758
|
in?: unknown;
|
|
@@ -3630,6 +3763,16 @@ declare function safeParseSettings(data: unknown): z.ZodSafeParseResult<{
|
|
|
3630
3763
|
mapping?: unknown;
|
|
3631
3764
|
out?: unknown;
|
|
3632
3765
|
}> | undefined;
|
|
3766
|
+
cache?: {
|
|
3767
|
+
rules: {
|
|
3768
|
+
match: unknown;
|
|
3769
|
+
key: string[];
|
|
3770
|
+
ttl: number;
|
|
3771
|
+
update?: Record<string, unknown> | undefined;
|
|
3772
|
+
}[];
|
|
3773
|
+
full?: boolean | undefined;
|
|
3774
|
+
store?: string | undefined;
|
|
3775
|
+
} | undefined;
|
|
3633
3776
|
}> | undefined;
|
|
3634
3777
|
destinations?: Record<string, {
|
|
3635
3778
|
package?: string | undefined;
|
|
@@ -3642,7 +3785,8 @@ declare function safeParseSettings(data: unknown): z.ZodSafeParseResult<{
|
|
|
3642
3785
|
env?: unknown;
|
|
3643
3786
|
variables?: Record<string, string | number | boolean> | undefined;
|
|
3644
3787
|
definitions?: Record<string, unknown> | undefined;
|
|
3645
|
-
before?:
|
|
3788
|
+
before?: unknown;
|
|
3789
|
+
next?: unknown;
|
|
3646
3790
|
examples?: Record<string, {
|
|
3647
3791
|
description?: string | undefined;
|
|
3648
3792
|
in?: unknown;
|
|
@@ -3653,6 +3797,16 @@ declare function safeParseSettings(data: unknown): z.ZodSafeParseResult<{
|
|
|
3653
3797
|
mapping?: unknown;
|
|
3654
3798
|
out?: unknown;
|
|
3655
3799
|
}> | undefined;
|
|
3800
|
+
cache?: {
|
|
3801
|
+
rules: {
|
|
3802
|
+
match: unknown;
|
|
3803
|
+
key: string[];
|
|
3804
|
+
ttl: number;
|
|
3805
|
+
update?: Record<string, unknown> | undefined;
|
|
3806
|
+
}[];
|
|
3807
|
+
full?: boolean | undefined;
|
|
3808
|
+
store?: string | undefined;
|
|
3809
|
+
} | undefined;
|
|
3656
3810
|
}> | undefined;
|
|
3657
3811
|
transformers?: Record<string, {
|
|
3658
3812
|
package?: string | undefined;
|
|
@@ -3663,7 +3817,8 @@ declare function safeParseSettings(data: unknown): z.ZodSafeParseResult<{
|
|
|
3663
3817
|
} | undefined;
|
|
3664
3818
|
config?: unknown;
|
|
3665
3819
|
env?: unknown;
|
|
3666
|
-
|
|
3820
|
+
before?: unknown;
|
|
3821
|
+
next?: unknown;
|
|
3667
3822
|
variables?: Record<string, string | number | boolean> | undefined;
|
|
3668
3823
|
definitions?: Record<string, unknown> | undefined;
|
|
3669
3824
|
examples?: Record<string, {
|
|
@@ -3676,6 +3831,16 @@ declare function safeParseSettings(data: unknown): z.ZodSafeParseResult<{
|
|
|
3676
3831
|
mapping?: unknown;
|
|
3677
3832
|
out?: unknown;
|
|
3678
3833
|
}> | undefined;
|
|
3834
|
+
cache?: {
|
|
3835
|
+
rules: {
|
|
3836
|
+
match: unknown;
|
|
3837
|
+
key: string[];
|
|
3838
|
+
ttl: number;
|
|
3839
|
+
update?: Record<string, unknown> | undefined;
|
|
3840
|
+
}[];
|
|
3841
|
+
full?: boolean | undefined;
|
|
3842
|
+
store?: string | undefined;
|
|
3843
|
+
} | undefined;
|
|
3679
3844
|
}> | undefined;
|
|
3680
3845
|
stores?: Record<string, {
|
|
3681
3846
|
package?: string | undefined;
|
|
@@ -3740,7 +3905,8 @@ declare const configJsonSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<
|
|
|
3740
3905
|
primary: z.ZodOptional<z.ZodBoolean>;
|
|
3741
3906
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3742
3907
|
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3743
|
-
next: z.ZodOptional<z.
|
|
3908
|
+
next: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3909
|
+
before: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3744
3910
|
examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3745
3911
|
description: z.ZodOptional<z.ZodString>;
|
|
3746
3912
|
in: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -3751,6 +3917,16 @@ declare const configJsonSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<
|
|
|
3751
3917
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3752
3918
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3753
3919
|
}, z.core.$strip>>>;
|
|
3920
|
+
cache: z.ZodOptional<z.ZodObject<{
|
|
3921
|
+
full: z.ZodOptional<z.ZodBoolean>;
|
|
3922
|
+
store: z.ZodOptional<z.ZodString>;
|
|
3923
|
+
rules: z.ZodArray<z.ZodObject<{
|
|
3924
|
+
match: z.ZodUnion<readonly [z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>, z.ZodLiteral<"*">]>;
|
|
3925
|
+
key: z.ZodArray<z.ZodString>;
|
|
3926
|
+
ttl: z.ZodNumber;
|
|
3927
|
+
update: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
|
|
3928
|
+
}, z.core.$strip>>;
|
|
3929
|
+
}, z.core.$strip>>;
|
|
3754
3930
|
}, z.core.$strip>>>;
|
|
3755
3931
|
destinations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3756
3932
|
package: z.ZodOptional<z.ZodString>;
|
|
@@ -3763,7 +3939,8 @@ declare const configJsonSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<
|
|
|
3763
3939
|
env: z.ZodOptional<z.ZodUnknown>;
|
|
3764
3940
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3765
3941
|
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3766
|
-
before: z.ZodOptional<z.
|
|
3942
|
+
before: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3943
|
+
next: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3767
3944
|
examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3768
3945
|
description: z.ZodOptional<z.ZodString>;
|
|
3769
3946
|
in: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -3774,6 +3951,16 @@ declare const configJsonSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<
|
|
|
3774
3951
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3775
3952
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3776
3953
|
}, z.core.$strip>>>;
|
|
3954
|
+
cache: z.ZodOptional<z.ZodObject<{
|
|
3955
|
+
full: z.ZodOptional<z.ZodBoolean>;
|
|
3956
|
+
store: z.ZodOptional<z.ZodString>;
|
|
3957
|
+
rules: z.ZodArray<z.ZodObject<{
|
|
3958
|
+
match: z.ZodUnion<readonly [z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>, z.ZodLiteral<"*">]>;
|
|
3959
|
+
key: z.ZodArray<z.ZodString>;
|
|
3960
|
+
ttl: z.ZodNumber;
|
|
3961
|
+
update: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
|
|
3962
|
+
}, z.core.$strip>>;
|
|
3963
|
+
}, z.core.$strip>>;
|
|
3777
3964
|
}, z.core.$strip>>>;
|
|
3778
3965
|
transformers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3779
3966
|
package: z.ZodOptional<z.ZodString>;
|
|
@@ -3784,7 +3971,8 @@ declare const configJsonSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<
|
|
|
3784
3971
|
}, z.core.$strip>]>>;
|
|
3785
3972
|
config: z.ZodOptional<z.ZodUnknown>;
|
|
3786
3973
|
env: z.ZodOptional<z.ZodUnknown>;
|
|
3787
|
-
|
|
3974
|
+
before: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3975
|
+
next: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3788
3976
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3789
3977
|
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3790
3978
|
examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -3797,6 +3985,16 @@ declare const configJsonSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<
|
|
|
3797
3985
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3798
3986
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3799
3987
|
}, z.core.$strip>>>;
|
|
3988
|
+
cache: z.ZodOptional<z.ZodObject<{
|
|
3989
|
+
full: z.ZodOptional<z.ZodBoolean>;
|
|
3990
|
+
store: z.ZodOptional<z.ZodString>;
|
|
3991
|
+
rules: z.ZodArray<z.ZodObject<{
|
|
3992
|
+
match: z.ZodUnion<readonly [z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>, z.ZodLiteral<"*">]>;
|
|
3993
|
+
key: z.ZodArray<z.ZodString>;
|
|
3994
|
+
ttl: z.ZodNumber;
|
|
3995
|
+
update: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
|
|
3996
|
+
}, z.core.$strip>>;
|
|
3997
|
+
}, z.core.$strip>>;
|
|
3800
3998
|
}, z.core.$strip>>>;
|
|
3801
3999
|
stores: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3802
4000
|
package: z.ZodOptional<z.ZodString>;
|
|
@@ -4040,6 +4238,61 @@ declare namespace utilities {
|
|
|
4040
4238
|
export { utilities_ErrorHandlerSchema as ErrorHandlerSchema, utilities_HandlerSchema as HandlerSchema, utilities_LogHandlerSchema as LogHandlerSchema, utilities_StorageSchema as StorageSchema, utilities_StorageTypeSchema as StorageTypeSchema, utilities_errorHandlerJsonSchema as errorHandlerJsonSchema, utilities_handlerJsonSchema as handlerJsonSchema, utilities_logHandlerJsonSchema as logHandlerJsonSchema, utilities_storageJsonSchema as storageJsonSchema, utilities_storageTypeJsonSchema as storageTypeJsonSchema };
|
|
4041
4239
|
}
|
|
4042
4240
|
|
|
4241
|
+
/**
|
|
4242
|
+
* CacheRule — a single caching rule for a pipeline step.
|
|
4243
|
+
*
|
|
4244
|
+
* Mirrors: types/cache.ts → CacheRule
|
|
4245
|
+
*
|
|
4246
|
+
* - match: MatchExpression or '*' wildcard
|
|
4247
|
+
* - key: array of dot-path strings used to build the cache key
|
|
4248
|
+
* - ttl: time-to-live in seconds (must be positive)
|
|
4249
|
+
* - update: optional record of response mutations applied on cache hit
|
|
4250
|
+
*/
|
|
4251
|
+
declare const CacheRuleSchema: z.ZodObject<{
|
|
4252
|
+
match: z.ZodUnion<readonly [z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>, z.ZodLiteral<"*">]>;
|
|
4253
|
+
key: z.ZodArray<z.ZodString>;
|
|
4254
|
+
ttl: z.ZodNumber;
|
|
4255
|
+
update: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
|
|
4256
|
+
}, z.core.$strip>;
|
|
4257
|
+
/**
|
|
4258
|
+
* Cache — top-level cache configuration for a pipeline step.
|
|
4259
|
+
*
|
|
4260
|
+
* Mirrors: types/cache.ts → Cache
|
|
4261
|
+
*
|
|
4262
|
+
* - store: optional store ID for persistent caching ($store:storeId wiring)
|
|
4263
|
+
* - rules: at least one CacheRule is required
|
|
4264
|
+
*/
|
|
4265
|
+
declare const CacheSchema: z.ZodObject<{
|
|
4266
|
+
full: z.ZodOptional<z.ZodBoolean>;
|
|
4267
|
+
store: z.ZodOptional<z.ZodString>;
|
|
4268
|
+
rules: z.ZodArray<z.ZodObject<{
|
|
4269
|
+
match: z.ZodUnion<readonly [z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>, z.ZodLiteral<"*">]>;
|
|
4270
|
+
key: z.ZodArray<z.ZodString>;
|
|
4271
|
+
ttl: z.ZodNumber;
|
|
4272
|
+
update: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
|
|
4273
|
+
}, z.core.$strip>>;
|
|
4274
|
+
}, z.core.$strip>;
|
|
4275
|
+
|
|
4276
|
+
declare const cache_CacheRuleSchema: typeof CacheRuleSchema;
|
|
4277
|
+
declare const cache_CacheSchema: typeof CacheSchema;
|
|
4278
|
+
declare namespace cache {
|
|
4279
|
+
export { cache_CacheRuleSchema as CacheRuleSchema, cache_CacheSchema as CacheSchema };
|
|
4280
|
+
}
|
|
4281
|
+
|
|
4282
|
+
declare const MatchExpressionSchema: z.ZodType;
|
|
4283
|
+
declare const RoutableNextSchema: z.ZodType;
|
|
4284
|
+
declare const NextRuleSchema: z.ZodObject<{
|
|
4285
|
+
match: z.ZodUnion<readonly [z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>, z.ZodLiteral<"*">]>;
|
|
4286
|
+
next: z.ZodLazy<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4287
|
+
}, z.core.$strip>;
|
|
4288
|
+
|
|
4289
|
+
declare const matcher_MatchExpressionSchema: typeof MatchExpressionSchema;
|
|
4290
|
+
declare const matcher_NextRuleSchema: typeof NextRuleSchema;
|
|
4291
|
+
declare const matcher_RoutableNextSchema: typeof RoutableNextSchema;
|
|
4292
|
+
declare namespace matcher {
|
|
4293
|
+
export { matcher_MatchExpressionSchema as MatchExpressionSchema, matcher_NextRuleSchema as NextRuleSchema, matcher_RoutableNextSchema as RoutableNextSchema };
|
|
4294
|
+
}
|
|
4295
|
+
|
|
4043
4296
|
declare const CodeSchema: z.ZodObject<{
|
|
4044
4297
|
lang: z.ZodOptional<z.ZodString>;
|
|
4045
4298
|
code: z.ZodString;
|
|
@@ -4302,6 +4555,8 @@ declare function zodToSchema(schema: z.ZodTypeAny): JSONSchema;
|
|
|
4302
4555
|
|
|
4303
4556
|
declare const index_BaseContextConfig: typeof BaseContextConfig;
|
|
4304
4557
|
declare const index_BatchConfig: typeof BatchConfig;
|
|
4558
|
+
declare const index_CacheRuleSchema: typeof CacheRuleSchema;
|
|
4559
|
+
declare const index_CacheSchema: typeof CacheSchema;
|
|
4305
4560
|
declare const index_CodeSchema: typeof CodeSchema;
|
|
4306
4561
|
declare const index_ConsentSchema: typeof ConsentSchema;
|
|
4307
4562
|
declare const index_ContractActionsSchema: typeof ContractActionsSchema;
|
|
@@ -4326,6 +4581,8 @@ type index_IntelliSenseContext = IntelliSenseContext;
|
|
|
4326
4581
|
type index_JSONSchema = JSONSchema;
|
|
4327
4582
|
declare const index_LoopSchema: typeof LoopSchema;
|
|
4328
4583
|
declare const index_MapSchema: typeof MapSchema;
|
|
4584
|
+
declare const index_MatchExpressionSchema: typeof MatchExpressionSchema;
|
|
4585
|
+
declare const index_NextRuleSchema: typeof NextRuleSchema;
|
|
4329
4586
|
declare const index_OptionalPrimitiveValue: typeof OptionalPrimitiveValue;
|
|
4330
4587
|
declare const index_OrderedPropertiesSchema: typeof OrderedPropertiesSchema;
|
|
4331
4588
|
type index_PackageInfo = PackageInfo;
|
|
@@ -4343,6 +4600,7 @@ declare const index_QueueConfig: typeof QueueConfig;
|
|
|
4343
4600
|
declare const index_RequiredBoolean: typeof RequiredBoolean;
|
|
4344
4601
|
declare const index_RequiredNumber: typeof RequiredNumber;
|
|
4345
4602
|
declare const index_RequiredString: typeof RequiredString;
|
|
4603
|
+
declare const index_RoutableNextSchema: typeof RoutableNextSchema;
|
|
4346
4604
|
declare const index_RuleSchema: typeof RuleSchema;
|
|
4347
4605
|
declare const index_RulesSchema: typeof RulesSchema;
|
|
4348
4606
|
declare const index_RuntimeInstanceConfig: typeof RuntimeInstanceConfig;
|
|
@@ -4403,7 +4661,7 @@ declare const index_valueJsonSchema: typeof valueJsonSchema;
|
|
|
4403
4661
|
declare const index_z: typeof z;
|
|
4404
4662
|
declare const index_zodToSchema: typeof zodToSchema;
|
|
4405
4663
|
declare namespace index {
|
|
4406
|
-
export { index_BaseContextConfig as BaseContextConfig, index_BatchConfig as BatchConfig, index_CodeSchema as CodeSchema, collector as CollectorSchemas, index_ConsentSchema as ConsentSchema, index_ContractActionsSchema as ContractActionsSchema, index_ContractSchema as ContractSchema, index_ContractSchemaEntry as ContractSchemaEntry, index_Counter as Counter, index_DeepPartialEventSchema as DeepPartialEventSchema, index_DestinationReferenceSchema as DestinationReferenceSchema, destination as DestinationSchemas, index_DestinationsMapConfig as DestinationsMapConfig, index_EntitiesSchema as EntitiesSchema, index_EntitySchema as EntitySchema, index_EventSchema as EventSchema, ConfigSchema as FlowConfigSchema, flow as FlowSchemas, SettingsSchema as FlowSettingsSchema, index_GenericEnvConfig as GenericEnvConfig, index_GenericSettingsConfig as GenericSettingsConfig, index_HandlersConfig as HandlersConfig, index_HintSchema as HintSchema, index_HintsSchema as HintsSchema, index_IdConfig as IdConfig, index_Identifier as Identifier, index_InitConfig as InitConfig, type index_IntelliSenseContext as IntelliSenseContext, type index_JSONSchema as JSONSchema, index_LoopSchema as LoopSchema, index_MapSchema as MapSchema, ResultSchema$1 as MappingResultSchema, mapping as MappingSchemas, index_OptionalPrimitiveValue as OptionalPrimitiveValue, index_OrderedPropertiesSchema as OrderedPropertiesSchema, type index_PackageInfo as PackageInfo, index_PartialEventSchema as PartialEventSchema, index_PolicySchema as PolicySchema, index_PrimaryConfig as PrimaryConfig, index_PrimitiveSchema as PrimitiveSchema, index_PrimitiveValue as PrimitiveValue, index_ProcessingControlConfig as ProcessingControlConfig, index_PropertiesSchema as PropertiesSchema, type index_PropertyDef as PropertyDef, index_PropertySchema as PropertySchema, index_PropertyTypeSchema as PropertyTypeSchema, index_QueueConfig as QueueConfig, index_RequiredBoolean as RequiredBoolean, index_RequiredNumber as RequiredNumber, index_RequiredString as RequiredString, index_RuleSchema as RuleSchema, index_RulesSchema as RulesSchema, index_RuntimeInstanceConfig as RuntimeInstanceConfig, index_SetSchema as SetSchema, index_SourceReferenceSchema as SourceReferenceSchema, index_SourceSchema as SourceSchema, source as SourceSchemas, index_SourceTypeSchema as SourceTypeSchema, index_SourcesMapConfig as SourcesMapConfig, index_StoreReferenceSchema as StoreReferenceSchema, index_TaggingVersion as TaggingVersion, index_Timestamp as Timestamp, index_TransformerReferenceSchema as TransformerReferenceSchema, index_UserSchema as UserSchema, utilities as UtilitySchemas, type index_ValidationIssue as ValidationIssue, type index_ValidationResult as ValidationResult, index_ValueConfigSchema as ValueConfigSchema, index_ValueSchema as ValueSchema, index_ValuesSchema as ValuesSchema, index_VerboseConfig as VerboseConfig, index_VersionSchema as VersionSchema, walkeros as WalkerOSSchemas, index_configJsonSchema as configJsonSchema, index_consentJsonSchema as consentJsonSchema, index_contractEntryJsonSchema as contractEntryJsonSchema, index_contractJsonSchema as contractJsonSchema, index_createArraySchema as createArraySchema, index_createConsentConfig as createConsentConfig, index_createDataTransformationConfig as createDataTransformationConfig, index_createEnumSchema as createEnumSchema, index_createMappingRulesConfig as createMappingRulesConfig, index_createObjectSchema as createObjectSchema, index_createPolicyConfig as createPolicyConfig, index_createTupleSchema as createTupleSchema, index_destinationReferenceJsonSchema as destinationReferenceJsonSchema, index_entityJsonSchema as entityJsonSchema, index_eventJsonSchema as eventJsonSchema, index_loopJsonSchema as loopJsonSchema, index_mapJsonSchema as mapJsonSchema, index_orderedPropertiesJsonSchema as orderedPropertiesJsonSchema, index_parseConfig as parseConfig, index_parseSettings as parseSettings, index_partialEventJsonSchema as partialEventJsonSchema, index_policyJsonSchema as policyJsonSchema, index_propertiesJsonSchema as propertiesJsonSchema, index_ruleJsonSchema as ruleJsonSchema, index_rulesJsonSchema as rulesJsonSchema, index_safeParseConfig as safeParseConfig, index_safeParseSettings as safeParseSettings, index_setJsonSchema as setJsonSchema, index_settingsJsonSchema as settingsJsonSchema, index_sourceReferenceJsonSchema as sourceReferenceJsonSchema, index_sourceTypeJsonSchema as sourceTypeJsonSchema, index_storeReferenceJsonSchema as storeReferenceJsonSchema, index_transformerReferenceJsonSchema as transformerReferenceJsonSchema, index_userJsonSchema as userJsonSchema, index_validateFlowConfig as validateFlowConfig, index_valueConfigJsonSchema as valueConfigJsonSchema, index_valueJsonSchema as valueJsonSchema, index_z as z, index_zodToSchema as zodToSchema };
|
|
4664
|
+
export { index_BaseContextConfig as BaseContextConfig, index_BatchConfig as BatchConfig, index_CacheRuleSchema as CacheRuleSchema, index_CacheSchema as CacheSchema, cache as CacheSchemas, index_CodeSchema as CodeSchema, collector as CollectorSchemas, index_ConsentSchema as ConsentSchema, index_ContractActionsSchema as ContractActionsSchema, index_ContractSchema as ContractSchema, index_ContractSchemaEntry as ContractSchemaEntry, index_Counter as Counter, index_DeepPartialEventSchema as DeepPartialEventSchema, index_DestinationReferenceSchema as DestinationReferenceSchema, destination as DestinationSchemas, index_DestinationsMapConfig as DestinationsMapConfig, index_EntitiesSchema as EntitiesSchema, index_EntitySchema as EntitySchema, index_EventSchema as EventSchema, ConfigSchema as FlowConfigSchema, flow as FlowSchemas, SettingsSchema as FlowSettingsSchema, index_GenericEnvConfig as GenericEnvConfig, index_GenericSettingsConfig as GenericSettingsConfig, index_HandlersConfig as HandlersConfig, index_HintSchema as HintSchema, index_HintsSchema as HintsSchema, index_IdConfig as IdConfig, index_Identifier as Identifier, index_InitConfig as InitConfig, type index_IntelliSenseContext as IntelliSenseContext, type index_JSONSchema as JSONSchema, index_LoopSchema as LoopSchema, index_MapSchema as MapSchema, ResultSchema$1 as MappingResultSchema, mapping as MappingSchemas, index_MatchExpressionSchema as MatchExpressionSchema, matcher as MatcherSchemas, index_NextRuleSchema as NextRuleSchema, index_OptionalPrimitiveValue as OptionalPrimitiveValue, index_OrderedPropertiesSchema as OrderedPropertiesSchema, type index_PackageInfo as PackageInfo, index_PartialEventSchema as PartialEventSchema, index_PolicySchema as PolicySchema, index_PrimaryConfig as PrimaryConfig, index_PrimitiveSchema as PrimitiveSchema, index_PrimitiveValue as PrimitiveValue, index_ProcessingControlConfig as ProcessingControlConfig, index_PropertiesSchema as PropertiesSchema, type index_PropertyDef as PropertyDef, index_PropertySchema as PropertySchema, index_PropertyTypeSchema as PropertyTypeSchema, index_QueueConfig as QueueConfig, index_RequiredBoolean as RequiredBoolean, index_RequiredNumber as RequiredNumber, index_RequiredString as RequiredString, index_RoutableNextSchema as RoutableNextSchema, index_RuleSchema as RuleSchema, index_RulesSchema as RulesSchema, index_RuntimeInstanceConfig as RuntimeInstanceConfig, index_SetSchema as SetSchema, index_SourceReferenceSchema as SourceReferenceSchema, index_SourceSchema as SourceSchema, source as SourceSchemas, index_SourceTypeSchema as SourceTypeSchema, index_SourcesMapConfig as SourcesMapConfig, index_StoreReferenceSchema as StoreReferenceSchema, index_TaggingVersion as TaggingVersion, index_Timestamp as Timestamp, index_TransformerReferenceSchema as TransformerReferenceSchema, index_UserSchema as UserSchema, utilities as UtilitySchemas, type index_ValidationIssue as ValidationIssue, type index_ValidationResult as ValidationResult, index_ValueConfigSchema as ValueConfigSchema, index_ValueSchema as ValueSchema, index_ValuesSchema as ValuesSchema, index_VerboseConfig as VerboseConfig, index_VersionSchema as VersionSchema, walkeros as WalkerOSSchemas, index_configJsonSchema as configJsonSchema, index_consentJsonSchema as consentJsonSchema, index_contractEntryJsonSchema as contractEntryJsonSchema, index_contractJsonSchema as contractJsonSchema, index_createArraySchema as createArraySchema, index_createConsentConfig as createConsentConfig, index_createDataTransformationConfig as createDataTransformationConfig, index_createEnumSchema as createEnumSchema, index_createMappingRulesConfig as createMappingRulesConfig, index_createObjectSchema as createObjectSchema, index_createPolicyConfig as createPolicyConfig, index_createTupleSchema as createTupleSchema, index_destinationReferenceJsonSchema as destinationReferenceJsonSchema, index_entityJsonSchema as entityJsonSchema, index_eventJsonSchema as eventJsonSchema, index_loopJsonSchema as loopJsonSchema, index_mapJsonSchema as mapJsonSchema, index_orderedPropertiesJsonSchema as orderedPropertiesJsonSchema, index_parseConfig as parseConfig, index_parseSettings as parseSettings, index_partialEventJsonSchema as partialEventJsonSchema, index_policyJsonSchema as policyJsonSchema, index_propertiesJsonSchema as propertiesJsonSchema, index_ruleJsonSchema as ruleJsonSchema, index_rulesJsonSchema as rulesJsonSchema, index_safeParseConfig as safeParseConfig, index_safeParseSettings as safeParseSettings, index_setJsonSchema as setJsonSchema, index_settingsJsonSchema as settingsJsonSchema, index_sourceReferenceJsonSchema as sourceReferenceJsonSchema, index_sourceTypeJsonSchema as sourceTypeJsonSchema, index_storeReferenceJsonSchema as storeReferenceJsonSchema, index_transformerReferenceJsonSchema as transformerReferenceJsonSchema, index_userJsonSchema as userJsonSchema, index_validateFlowConfig as validateFlowConfig, index_valueConfigJsonSchema as valueConfigJsonSchema, index_valueJsonSchema as valueJsonSchema, index_z as z, index_zodToSchema as zodToSchema };
|
|
4407
4665
|
}
|
|
4408
4666
|
|
|
4409
4667
|
type PackageType = 'source' | 'destination' | 'transformer' | 'store';
|