@walkeros/core 2.1.1 → 2.2.0-next-1773136823705
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 +242 -51
- package/dist/dev.d.ts +242 -51
- 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 +336 -187
- package/dist/index.d.ts +336 -187
- 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 +2 -1
package/dist/dev.d.mts
CHANGED
|
@@ -2794,9 +2794,6 @@ declare const VariablesSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.Z
|
|
|
2794
2794
|
* Definitions schema for reusable configurations.
|
|
2795
2795
|
*/
|
|
2796
2796
|
declare const DefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
2797
|
-
/**
|
|
2798
|
-
* Packages schema for build configuration.
|
|
2799
|
-
*/
|
|
2800
2797
|
declare const PackagesSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2801
2798
|
version: z.ZodOptional<z.ZodString>;
|
|
2802
2799
|
imports: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -2923,6 +2920,29 @@ declare const DestinationReferenceSchema: z.ZodObject<{
|
|
|
2923
2920
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
2924
2921
|
}, z.core.$strip>>>;
|
|
2925
2922
|
}, z.core.$strip>;
|
|
2923
|
+
/**
|
|
2924
|
+
* Store package reference.
|
|
2925
|
+
*
|
|
2926
|
+
* @remarks
|
|
2927
|
+
* Stores are passive key-value infrastructure — no chain properties (next/before).
|
|
2928
|
+
* Consumed by other components via `$store:storeId` env wiring.
|
|
2929
|
+
*/
|
|
2930
|
+
declare const StoreReferenceSchema: z.ZodObject<{
|
|
2931
|
+
package: z.ZodOptional<z.ZodString>;
|
|
2932
|
+
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
2933
|
+
push: z.ZodString;
|
|
2934
|
+
type: z.ZodOptional<z.ZodString>;
|
|
2935
|
+
init: z.ZodOptional<z.ZodString>;
|
|
2936
|
+
}, z.core.$strip>]>>;
|
|
2937
|
+
config: z.ZodOptional<z.ZodUnknown>;
|
|
2938
|
+
env: z.ZodOptional<z.ZodUnknown>;
|
|
2939
|
+
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
2940
|
+
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2941
|
+
examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2942
|
+
in: z.ZodOptional<z.ZodUnknown>;
|
|
2943
|
+
out: z.ZodOptional<z.ZodUnknown>;
|
|
2944
|
+
}, z.core.$strip>>>;
|
|
2945
|
+
}, z.core.$strip>;
|
|
2926
2946
|
/**
|
|
2927
2947
|
* Contract schema entry — a JSON Schema object.
|
|
2928
2948
|
* Passthrough to allow any valid JSON Schema keywords.
|
|
@@ -2937,14 +2957,14 @@ declare const ContractActionsSchema: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodS
|
|
|
2937
2957
|
*/
|
|
2938
2958
|
declare const ContractSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>, z.ZodNumber]>>;
|
|
2939
2959
|
/**
|
|
2940
|
-
* Single flow
|
|
2960
|
+
* Single flow settings schema.
|
|
2941
2961
|
*
|
|
2942
2962
|
* @remarks
|
|
2943
2963
|
* Represents a single deployment target (e.g., web_prod, server_stage).
|
|
2944
2964
|
* Platform is determined by presence of `web` or `server` key.
|
|
2945
2965
|
* Exactly one must be present.
|
|
2946
2966
|
*/
|
|
2947
|
-
declare const
|
|
2967
|
+
declare const SettingsSchema: z.ZodObject<{
|
|
2948
2968
|
web: z.ZodOptional<z.ZodObject<{
|
|
2949
2969
|
windowCollector: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2950
2970
|
windowElb: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -3003,6 +3023,22 @@ declare const ConfigSchema: z.ZodObject<{
|
|
|
3003
3023
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3004
3024
|
}, z.core.$strip>>>;
|
|
3005
3025
|
}, z.core.$strip>>>;
|
|
3026
|
+
stores: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3027
|
+
package: z.ZodOptional<z.ZodString>;
|
|
3028
|
+
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
3029
|
+
push: z.ZodString;
|
|
3030
|
+
type: z.ZodOptional<z.ZodString>;
|
|
3031
|
+
init: z.ZodOptional<z.ZodString>;
|
|
3032
|
+
}, z.core.$strip>]>>;
|
|
3033
|
+
config: z.ZodOptional<z.ZodUnknown>;
|
|
3034
|
+
env: z.ZodOptional<z.ZodUnknown>;
|
|
3035
|
+
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3036
|
+
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3037
|
+
examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3038
|
+
in: z.ZodOptional<z.ZodUnknown>;
|
|
3039
|
+
out: z.ZodOptional<z.ZodUnknown>;
|
|
3040
|
+
}, z.core.$strip>>>;
|
|
3041
|
+
}, z.core.$strip>>>;
|
|
3006
3042
|
collector: z.ZodOptional<z.ZodUnknown>;
|
|
3007
3043
|
packages: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3008
3044
|
version: z.ZodOptional<z.ZodString>;
|
|
@@ -3012,7 +3048,7 @@ declare const ConfigSchema: z.ZodObject<{
|
|
|
3012
3048
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3013
3049
|
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3014
3050
|
}, z.core.$strip>;
|
|
3015
|
-
declare const
|
|
3051
|
+
declare const ConfigV2Schema: z.ZodObject<{
|
|
3016
3052
|
$schema: z.ZodOptional<z.ZodString>;
|
|
3017
3053
|
include: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3018
3054
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
@@ -3076,6 +3112,22 @@ declare const SetupV2Schema: z.ZodObject<{
|
|
|
3076
3112
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3077
3113
|
}, z.core.$strip>>>;
|
|
3078
3114
|
}, z.core.$strip>>>;
|
|
3115
|
+
stores: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3116
|
+
package: z.ZodOptional<z.ZodString>;
|
|
3117
|
+
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
3118
|
+
push: z.ZodString;
|
|
3119
|
+
type: z.ZodOptional<z.ZodString>;
|
|
3120
|
+
init: z.ZodOptional<z.ZodString>;
|
|
3121
|
+
}, z.core.$strip>]>>;
|
|
3122
|
+
config: z.ZodOptional<z.ZodUnknown>;
|
|
3123
|
+
env: z.ZodOptional<z.ZodUnknown>;
|
|
3124
|
+
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3125
|
+
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3126
|
+
examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3127
|
+
in: z.ZodOptional<z.ZodUnknown>;
|
|
3128
|
+
out: z.ZodOptional<z.ZodUnknown>;
|
|
3129
|
+
}, z.core.$strip>>>;
|
|
3130
|
+
}, z.core.$strip>>>;
|
|
3079
3131
|
collector: z.ZodOptional<z.ZodUnknown>;
|
|
3080
3132
|
packages: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3081
3133
|
version: z.ZodOptional<z.ZodString>;
|
|
@@ -3088,7 +3140,7 @@ declare const SetupV2Schema: z.ZodObject<{
|
|
|
3088
3140
|
version: z.ZodLiteral<2>;
|
|
3089
3141
|
contract: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>, z.ZodNumber]>>>;
|
|
3090
3142
|
}, z.core.$strip>;
|
|
3091
|
-
declare const
|
|
3143
|
+
declare const ConfigSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
3092
3144
|
$schema: z.ZodOptional<z.ZodString>;
|
|
3093
3145
|
include: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3094
3146
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
@@ -3152,6 +3204,22 @@ declare const SetupSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
3152
3204
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3153
3205
|
}, z.core.$strip>>>;
|
|
3154
3206
|
}, z.core.$strip>>>;
|
|
3207
|
+
stores: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3208
|
+
package: z.ZodOptional<z.ZodString>;
|
|
3209
|
+
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
3210
|
+
push: z.ZodString;
|
|
3211
|
+
type: z.ZodOptional<z.ZodString>;
|
|
3212
|
+
init: z.ZodOptional<z.ZodString>;
|
|
3213
|
+
}, z.core.$strip>]>>;
|
|
3214
|
+
config: z.ZodOptional<z.ZodUnknown>;
|
|
3215
|
+
env: z.ZodOptional<z.ZodUnknown>;
|
|
3216
|
+
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3217
|
+
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3218
|
+
examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3219
|
+
in: z.ZodOptional<z.ZodUnknown>;
|
|
3220
|
+
out: z.ZodOptional<z.ZodUnknown>;
|
|
3221
|
+
}, z.core.$strip>>>;
|
|
3222
|
+
}, z.core.$strip>>>;
|
|
3155
3223
|
collector: z.ZodOptional<z.ZodUnknown>;
|
|
3156
3224
|
packages: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3157
3225
|
version: z.ZodOptional<z.ZodString>;
|
|
@@ -3226,6 +3294,22 @@ declare const SetupSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
3226
3294
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3227
3295
|
}, z.core.$strip>>>;
|
|
3228
3296
|
}, z.core.$strip>>>;
|
|
3297
|
+
stores: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3298
|
+
package: z.ZodOptional<z.ZodString>;
|
|
3299
|
+
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
3300
|
+
push: z.ZodString;
|
|
3301
|
+
type: z.ZodOptional<z.ZodString>;
|
|
3302
|
+
init: z.ZodOptional<z.ZodString>;
|
|
3303
|
+
}, z.core.$strip>]>>;
|
|
3304
|
+
config: z.ZodOptional<z.ZodUnknown>;
|
|
3305
|
+
env: z.ZodOptional<z.ZodUnknown>;
|
|
3306
|
+
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3307
|
+
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3308
|
+
examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3309
|
+
in: z.ZodOptional<z.ZodUnknown>;
|
|
3310
|
+
out: z.ZodOptional<z.ZodUnknown>;
|
|
3311
|
+
}, z.core.$strip>>>;
|
|
3312
|
+
}, z.core.$strip>>>;
|
|
3229
3313
|
collector: z.ZodOptional<z.ZodUnknown>;
|
|
3230
3314
|
packages: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3231
3315
|
version: z.ZodOptional<z.ZodString>;
|
|
@@ -3240,34 +3324,34 @@ declare const SetupSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
3240
3324
|
}, z.core.$strip>]>;
|
|
3241
3325
|
|
|
3242
3326
|
/**
|
|
3243
|
-
* Parse and validate Flow.
|
|
3327
|
+
* Parse and validate Flow.Config configuration.
|
|
3244
3328
|
*
|
|
3245
3329
|
* @param data - Raw JSON data from config file
|
|
3246
|
-
* @returns Validated Flow.
|
|
3330
|
+
* @returns Validated Flow.Config object
|
|
3247
3331
|
* @throws ZodError if validation fails with detailed error messages
|
|
3248
3332
|
*
|
|
3249
3333
|
* @example
|
|
3250
3334
|
* ```typescript
|
|
3251
|
-
* import {
|
|
3335
|
+
* import { parseConfig } from '@walkeros/core/dev';
|
|
3252
3336
|
* import { readFileSync } from 'fs';
|
|
3253
3337
|
*
|
|
3254
3338
|
* const raw = JSON.parse(readFileSync('walkeros.config.json', 'utf8'));
|
|
3255
|
-
* const config =
|
|
3339
|
+
* const config = parseConfig(raw);
|
|
3256
3340
|
* console.log(`Found ${Object.keys(config.flows).length} flows`);
|
|
3257
3341
|
* ```
|
|
3258
3342
|
*/
|
|
3259
|
-
declare function
|
|
3343
|
+
declare function parseConfig(data: unknown): z.infer<typeof ConfigSchema>;
|
|
3260
3344
|
/**
|
|
3261
|
-
* Safely parse Flow.
|
|
3345
|
+
* Safely parse Flow.Config configuration without throwing.
|
|
3262
3346
|
*
|
|
3263
3347
|
* @param data - Raw JSON data from config file
|
|
3264
3348
|
* @returns Success result with data or error result with issues
|
|
3265
3349
|
*
|
|
3266
3350
|
* @example
|
|
3267
3351
|
* ```typescript
|
|
3268
|
-
* import {
|
|
3352
|
+
* import { safeParseConfig } from '@walkeros/core/dev';
|
|
3269
3353
|
*
|
|
3270
|
-
* const result =
|
|
3354
|
+
* const result = safeParseConfig(rawData);
|
|
3271
3355
|
* if (result.success) {
|
|
3272
3356
|
* console.log('Valid config:', result.data);
|
|
3273
3357
|
* } else {
|
|
@@ -3275,7 +3359,7 @@ declare function parseSetup(data: unknown): z.infer<typeof SetupSchema>;
|
|
|
3275
3359
|
* }
|
|
3276
3360
|
* ```
|
|
3277
3361
|
*/
|
|
3278
|
-
declare function
|
|
3362
|
+
declare function safeParseConfig(data: unknown): z.ZodSafeParseResult<{
|
|
3279
3363
|
flows: Record<string, {
|
|
3280
3364
|
web?: {
|
|
3281
3365
|
windowCollector: string;
|
|
@@ -3337,6 +3421,22 @@ declare function safeParseSetup(data: unknown): z.ZodSafeParseResult<{
|
|
|
3337
3421
|
out?: unknown;
|
|
3338
3422
|
}> | undefined;
|
|
3339
3423
|
}> | undefined;
|
|
3424
|
+
stores?: Record<string, {
|
|
3425
|
+
package?: string | undefined;
|
|
3426
|
+
code?: string | {
|
|
3427
|
+
push: string;
|
|
3428
|
+
type?: string | undefined;
|
|
3429
|
+
init?: string | undefined;
|
|
3430
|
+
} | undefined;
|
|
3431
|
+
config?: unknown;
|
|
3432
|
+
env?: unknown;
|
|
3433
|
+
variables?: Record<string, string | number | boolean> | undefined;
|
|
3434
|
+
definitions?: Record<string, unknown> | undefined;
|
|
3435
|
+
examples?: Record<string, {
|
|
3436
|
+
in?: unknown;
|
|
3437
|
+
out?: unknown;
|
|
3438
|
+
}> | undefined;
|
|
3439
|
+
}> | undefined;
|
|
3340
3440
|
collector?: unknown;
|
|
3341
3441
|
packages?: Record<string, {
|
|
3342
3442
|
version?: string | undefined;
|
|
@@ -3413,6 +3513,22 @@ declare function safeParseSetup(data: unknown): z.ZodSafeParseResult<{
|
|
|
3413
3513
|
out?: unknown;
|
|
3414
3514
|
}> | undefined;
|
|
3415
3515
|
}> | undefined;
|
|
3516
|
+
stores?: Record<string, {
|
|
3517
|
+
package?: string | undefined;
|
|
3518
|
+
code?: string | {
|
|
3519
|
+
push: string;
|
|
3520
|
+
type?: string | undefined;
|
|
3521
|
+
init?: string | undefined;
|
|
3522
|
+
} | undefined;
|
|
3523
|
+
config?: unknown;
|
|
3524
|
+
env?: unknown;
|
|
3525
|
+
variables?: Record<string, string | number | boolean> | undefined;
|
|
3526
|
+
definitions?: Record<string, unknown> | undefined;
|
|
3527
|
+
examples?: Record<string, {
|
|
3528
|
+
in?: unknown;
|
|
3529
|
+
out?: unknown;
|
|
3530
|
+
}> | undefined;
|
|
3531
|
+
}> | undefined;
|
|
3416
3532
|
collector?: unknown;
|
|
3417
3533
|
packages?: Record<string, {
|
|
3418
3534
|
version?: string | undefined;
|
|
@@ -3430,28 +3546,28 @@ declare function safeParseSetup(data: unknown): z.ZodSafeParseResult<{
|
|
|
3430
3546
|
contract?: Record<string, number | Record<string, Record<string, unknown>>> | undefined;
|
|
3431
3547
|
}>;
|
|
3432
3548
|
/**
|
|
3433
|
-
* Parse and validate Flow.
|
|
3549
|
+
* Parse and validate Flow.Settings (single flow).
|
|
3434
3550
|
*
|
|
3435
3551
|
* @param data - Raw JSON data for single flow
|
|
3436
|
-
* @returns Validated Flow.
|
|
3552
|
+
* @returns Validated Flow.Settings object
|
|
3437
3553
|
* @throws ZodError if validation fails
|
|
3438
3554
|
*
|
|
3439
3555
|
* @example
|
|
3440
3556
|
* ```typescript
|
|
3441
|
-
* import {
|
|
3557
|
+
* import { parseSettings } from '@walkeros/core/dev';
|
|
3442
3558
|
*
|
|
3443
|
-
* const
|
|
3444
|
-
* console.log(`Platform: ${
|
|
3559
|
+
* const flowSettings = parseSettings(rawFlowData);
|
|
3560
|
+
* console.log(`Platform: ${flowSettings.web ? 'web' : 'server'}`);
|
|
3445
3561
|
* ```
|
|
3446
3562
|
*/
|
|
3447
|
-
declare function
|
|
3563
|
+
declare function parseSettings(data: unknown): z.infer<typeof SettingsSchema>;
|
|
3448
3564
|
/**
|
|
3449
|
-
* Safely parse Flow.
|
|
3565
|
+
* Safely parse Flow.Settings without throwing.
|
|
3450
3566
|
*
|
|
3451
3567
|
* @param data - Raw JSON data for single flow
|
|
3452
3568
|
* @returns Success result with data or error result with issues
|
|
3453
3569
|
*/
|
|
3454
|
-
declare function
|
|
3570
|
+
declare function safeParseSettings(data: unknown): z.ZodSafeParseResult<{
|
|
3455
3571
|
web?: {
|
|
3456
3572
|
windowCollector: string;
|
|
3457
3573
|
windowElb: string;
|
|
@@ -3512,6 +3628,22 @@ declare function safeParseConfig(data: unknown): z.ZodSafeParseResult<{
|
|
|
3512
3628
|
out?: unknown;
|
|
3513
3629
|
}> | undefined;
|
|
3514
3630
|
}> | undefined;
|
|
3631
|
+
stores?: Record<string, {
|
|
3632
|
+
package?: string | undefined;
|
|
3633
|
+
code?: string | {
|
|
3634
|
+
push: string;
|
|
3635
|
+
type?: string | undefined;
|
|
3636
|
+
init?: string | undefined;
|
|
3637
|
+
} | undefined;
|
|
3638
|
+
config?: unknown;
|
|
3639
|
+
env?: unknown;
|
|
3640
|
+
variables?: Record<string, string | number | boolean> | undefined;
|
|
3641
|
+
definitions?: Record<string, unknown> | undefined;
|
|
3642
|
+
examples?: Record<string, {
|
|
3643
|
+
in?: unknown;
|
|
3644
|
+
out?: unknown;
|
|
3645
|
+
}> | undefined;
|
|
3646
|
+
}> | undefined;
|
|
3515
3647
|
collector?: unknown;
|
|
3516
3648
|
packages?: Record<string, {
|
|
3517
3649
|
version?: string | undefined;
|
|
@@ -3522,15 +3654,15 @@ declare function safeParseConfig(data: unknown): z.ZodSafeParseResult<{
|
|
|
3522
3654
|
definitions?: Record<string, unknown> | undefined;
|
|
3523
3655
|
}>;
|
|
3524
3656
|
/**
|
|
3525
|
-
* Generate JSON Schema for Flow.
|
|
3657
|
+
* Generate JSON Schema for Flow.Config.
|
|
3526
3658
|
*
|
|
3527
3659
|
* @remarks
|
|
3528
3660
|
* Used for IDE validation and autocomplete.
|
|
3529
3661
|
* Hosted at https://walkeros.io/schema/flow/v1.json
|
|
3530
3662
|
*
|
|
3531
|
-
* @returns JSON Schema (Draft 7) representation of
|
|
3663
|
+
* @returns JSON Schema (Draft 7) representation of ConfigSchema
|
|
3532
3664
|
*/
|
|
3533
|
-
declare const
|
|
3665
|
+
declare const configJsonSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodUnion<readonly [z.ZodObject<{
|
|
3534
3666
|
$schema: z.ZodOptional<z.ZodString>;
|
|
3535
3667
|
include: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3536
3668
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
@@ -3594,6 +3726,22 @@ declare const setupJsonSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodUnion<re
|
|
|
3594
3726
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3595
3727
|
}, z.core.$strip>>>;
|
|
3596
3728
|
}, z.core.$strip>>>;
|
|
3729
|
+
stores: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3730
|
+
package: z.ZodOptional<z.ZodString>;
|
|
3731
|
+
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
3732
|
+
push: z.ZodString;
|
|
3733
|
+
type: z.ZodOptional<z.ZodString>;
|
|
3734
|
+
init: z.ZodOptional<z.ZodString>;
|
|
3735
|
+
}, z.core.$strip>]>>;
|
|
3736
|
+
config: z.ZodOptional<z.ZodUnknown>;
|
|
3737
|
+
env: z.ZodOptional<z.ZodUnknown>;
|
|
3738
|
+
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3739
|
+
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3740
|
+
examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3741
|
+
in: z.ZodOptional<z.ZodUnknown>;
|
|
3742
|
+
out: z.ZodOptional<z.ZodUnknown>;
|
|
3743
|
+
}, z.core.$strip>>>;
|
|
3744
|
+
}, z.core.$strip>>>;
|
|
3597
3745
|
collector: z.ZodOptional<z.ZodUnknown>;
|
|
3598
3746
|
packages: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3599
3747
|
version: z.ZodOptional<z.ZodString>;
|
|
@@ -3668,6 +3816,22 @@ declare const setupJsonSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodUnion<re
|
|
|
3668
3816
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3669
3817
|
}, z.core.$strip>>>;
|
|
3670
3818
|
}, z.core.$strip>>>;
|
|
3819
|
+
stores: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3820
|
+
package: z.ZodOptional<z.ZodString>;
|
|
3821
|
+
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
3822
|
+
push: z.ZodString;
|
|
3823
|
+
type: z.ZodOptional<z.ZodString>;
|
|
3824
|
+
init: z.ZodOptional<z.ZodString>;
|
|
3825
|
+
}, z.core.$strip>]>>;
|
|
3826
|
+
config: z.ZodOptional<z.ZodUnknown>;
|
|
3827
|
+
env: z.ZodOptional<z.ZodUnknown>;
|
|
3828
|
+
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3829
|
+
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3830
|
+
examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3831
|
+
in: z.ZodOptional<z.ZodUnknown>;
|
|
3832
|
+
out: z.ZodOptional<z.ZodUnknown>;
|
|
3833
|
+
}, z.core.$strip>>>;
|
|
3834
|
+
}, z.core.$strip>>>;
|
|
3671
3835
|
collector: z.ZodOptional<z.ZodUnknown>;
|
|
3672
3836
|
packages: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3673
3837
|
version: z.ZodOptional<z.ZodString>;
|
|
@@ -3681,13 +3845,13 @@ declare const setupJsonSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodUnion<re
|
|
|
3681
3845
|
contract: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>, z.ZodNumber]>>>;
|
|
3682
3846
|
}, z.core.$strip>]>>;
|
|
3683
3847
|
/**
|
|
3684
|
-
* Generate JSON Schema for Flow.
|
|
3848
|
+
* Generate JSON Schema for Flow.ConfigV2.
|
|
3685
3849
|
*
|
|
3686
3850
|
* @remarks
|
|
3687
3851
|
* Used for IDE validation of v2 configurations with data contracts.
|
|
3688
3852
|
* Hosted at https://walkeros.io/schema/flow/v2.json
|
|
3689
3853
|
*/
|
|
3690
|
-
declare const
|
|
3854
|
+
declare const configV2JsonSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
3691
3855
|
$schema: z.ZodOptional<z.ZodString>;
|
|
3692
3856
|
include: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3693
3857
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
@@ -3751,6 +3915,22 @@ declare const setupV2JsonSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodObject
|
|
|
3751
3915
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3752
3916
|
}, z.core.$strip>>>;
|
|
3753
3917
|
}, z.core.$strip>>>;
|
|
3918
|
+
stores: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3919
|
+
package: z.ZodOptional<z.ZodString>;
|
|
3920
|
+
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
3921
|
+
push: z.ZodString;
|
|
3922
|
+
type: z.ZodOptional<z.ZodString>;
|
|
3923
|
+
init: z.ZodOptional<z.ZodString>;
|
|
3924
|
+
}, z.core.$strip>]>>;
|
|
3925
|
+
config: z.ZodOptional<z.ZodUnknown>;
|
|
3926
|
+
env: z.ZodOptional<z.ZodUnknown>;
|
|
3927
|
+
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3928
|
+
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3929
|
+
examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3930
|
+
in: z.ZodOptional<z.ZodUnknown>;
|
|
3931
|
+
out: z.ZodOptional<z.ZodUnknown>;
|
|
3932
|
+
}, z.core.$strip>>>;
|
|
3933
|
+
}, z.core.$strip>>>;
|
|
3754
3934
|
collector: z.ZodOptional<z.ZodUnknown>;
|
|
3755
3935
|
packages: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3756
3936
|
version: z.ZodOptional<z.ZodString>;
|
|
@@ -3764,14 +3944,14 @@ declare const setupV2JsonSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodObject
|
|
|
3764
3944
|
contract: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>, z.ZodNumber]>>>;
|
|
3765
3945
|
}, z.core.$strip>>;
|
|
3766
3946
|
/**
|
|
3767
|
-
* Generate JSON Schema for Flow.
|
|
3947
|
+
* Generate JSON Schema for Flow.Settings.
|
|
3768
3948
|
*
|
|
3769
3949
|
* @remarks
|
|
3770
|
-
* Used for validating individual flow
|
|
3950
|
+
* Used for validating individual flow settings.
|
|
3771
3951
|
*
|
|
3772
|
-
* @returns JSON Schema (Draft 7) representation of
|
|
3952
|
+
* @returns JSON Schema (Draft 7) representation of SettingsSchema
|
|
3773
3953
|
*/
|
|
3774
|
-
declare const
|
|
3954
|
+
declare const settingsJsonSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3775
3955
|
/**
|
|
3776
3956
|
* Generate JSON Schema for SourceReference.
|
|
3777
3957
|
*
|
|
@@ -3799,8 +3979,18 @@ declare const destinationReferenceJsonSchema: z.core.ZodStandardJSONSchemaPayloa
|
|
|
3799
3979
|
* @returns JSON Schema (Draft 7) representation of TransformerReferenceSchema
|
|
3800
3980
|
*/
|
|
3801
3981
|
declare const transformerReferenceJsonSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3982
|
+
/**
|
|
3983
|
+
* Generate JSON Schema for StoreReference.
|
|
3984
|
+
*
|
|
3985
|
+
* @remarks
|
|
3986
|
+
* Used for validating store package references.
|
|
3987
|
+
*
|
|
3988
|
+
* @returns JSON Schema (Draft 7) representation of StoreReferenceSchema
|
|
3989
|
+
*/
|
|
3990
|
+
declare const storeReferenceJsonSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3802
3991
|
|
|
3803
3992
|
declare const flow_ConfigSchema: typeof ConfigSchema;
|
|
3993
|
+
declare const flow_ConfigV2Schema: typeof ConfigV2Schema;
|
|
3804
3994
|
declare const flow_ContractActionsSchema: typeof ContractActionsSchema;
|
|
3805
3995
|
declare const flow_ContractSchema: typeof ContractSchema;
|
|
3806
3996
|
declare const flow_ContractSchemaEntry: typeof ContractSchemaEntry;
|
|
@@ -3810,26 +4000,27 @@ declare const flow_InlineCodeSchema: typeof InlineCodeSchema;
|
|
|
3810
4000
|
declare const flow_PackagesSchema: typeof PackagesSchema;
|
|
3811
4001
|
declare const flow_PrimitiveSchema: typeof PrimitiveSchema;
|
|
3812
4002
|
declare const flow_ServerSchema: typeof ServerSchema;
|
|
3813
|
-
declare const
|
|
3814
|
-
declare const flow_SetupV2Schema: typeof SetupV2Schema;
|
|
4003
|
+
declare const flow_SettingsSchema: typeof SettingsSchema;
|
|
3815
4004
|
declare const flow_SourceReferenceSchema: typeof SourceReferenceSchema;
|
|
3816
4005
|
declare const flow_StepExampleSchema: typeof StepExampleSchema;
|
|
3817
4006
|
declare const flow_StepExamplesSchema: typeof StepExamplesSchema;
|
|
4007
|
+
declare const flow_StoreReferenceSchema: typeof StoreReferenceSchema;
|
|
3818
4008
|
declare const flow_TransformerReferenceSchema: typeof TransformerReferenceSchema;
|
|
3819
4009
|
declare const flow_VariablesSchema: typeof VariablesSchema;
|
|
3820
4010
|
declare const flow_WebSchema: typeof WebSchema;
|
|
3821
4011
|
declare const flow_configJsonSchema: typeof configJsonSchema;
|
|
4012
|
+
declare const flow_configV2JsonSchema: typeof configV2JsonSchema;
|
|
3822
4013
|
declare const flow_destinationReferenceJsonSchema: typeof destinationReferenceJsonSchema;
|
|
3823
4014
|
declare const flow_parseConfig: typeof parseConfig;
|
|
3824
|
-
declare const
|
|
4015
|
+
declare const flow_parseSettings: typeof parseSettings;
|
|
3825
4016
|
declare const flow_safeParseConfig: typeof safeParseConfig;
|
|
3826
|
-
declare const
|
|
3827
|
-
declare const
|
|
3828
|
-
declare const flow_setupV2JsonSchema: typeof setupV2JsonSchema;
|
|
4017
|
+
declare const flow_safeParseSettings: typeof safeParseSettings;
|
|
4018
|
+
declare const flow_settingsJsonSchema: typeof settingsJsonSchema;
|
|
3829
4019
|
declare const flow_sourceReferenceJsonSchema: typeof sourceReferenceJsonSchema;
|
|
4020
|
+
declare const flow_storeReferenceJsonSchema: typeof storeReferenceJsonSchema;
|
|
3830
4021
|
declare const flow_transformerReferenceJsonSchema: typeof transformerReferenceJsonSchema;
|
|
3831
4022
|
declare namespace flow {
|
|
3832
|
-
export { flow_ConfigSchema as ConfigSchema, flow_ContractActionsSchema as ContractActionsSchema, flow_ContractSchema as ContractSchema, flow_ContractSchemaEntry as ContractSchemaEntry, flow_DefinitionsSchema as DefinitionsSchema, flow_DestinationReferenceSchema as DestinationReferenceSchema, flow_InlineCodeSchema as InlineCodeSchema, flow_PackagesSchema as PackagesSchema, flow_PrimitiveSchema as PrimitiveSchema, flow_ServerSchema as ServerSchema,
|
|
4023
|
+
export { flow_ConfigSchema as ConfigSchema, flow_ConfigV2Schema as ConfigV2Schema, flow_ContractActionsSchema as ContractActionsSchema, flow_ContractSchema as ContractSchema, flow_ContractSchemaEntry as ContractSchemaEntry, flow_DefinitionsSchema as DefinitionsSchema, flow_DestinationReferenceSchema as DestinationReferenceSchema, flow_InlineCodeSchema as InlineCodeSchema, flow_PackagesSchema as PackagesSchema, flow_PrimitiveSchema as PrimitiveSchema, flow_ServerSchema as ServerSchema, flow_SettingsSchema as SettingsSchema, flow_SourceReferenceSchema as SourceReferenceSchema, flow_StepExampleSchema as StepExampleSchema, flow_StepExamplesSchema as StepExamplesSchema, flow_StoreReferenceSchema as StoreReferenceSchema, flow_TransformerReferenceSchema as TransformerReferenceSchema, flow_VariablesSchema as VariablesSchema, flow_WebSchema as WebSchema, flow_configJsonSchema as configJsonSchema, flow_configV2JsonSchema as configV2JsonSchema, flow_destinationReferenceJsonSchema as destinationReferenceJsonSchema, flow_parseConfig as parseConfig, flow_parseSettings as parseSettings, flow_safeParseConfig as safeParseConfig, flow_safeParseSettings as safeParseSettings, flow_settingsJsonSchema as settingsJsonSchema, flow_sourceReferenceJsonSchema as sourceReferenceJsonSchema, flow_storeReferenceJsonSchema as storeReferenceJsonSchema, flow_transformerReferenceJsonSchema as transformerReferenceJsonSchema };
|
|
3833
4024
|
}
|
|
3834
4025
|
|
|
3835
4026
|
/**
|
|
@@ -3955,17 +4146,17 @@ interface IntelliSenseContext {
|
|
|
3955
4146
|
}
|
|
3956
4147
|
|
|
3957
4148
|
/**
|
|
3958
|
-
* Validate a Flow.
|
|
4149
|
+
* Validate a Flow.Config JSON string.
|
|
3959
4150
|
*
|
|
3960
4151
|
* Performs three levels of validation:
|
|
3961
4152
|
* 1. JSON syntax — parse error with line/column
|
|
3962
|
-
* 2. Schema — Zod
|
|
4153
|
+
* 2. Schema — Zod ConfigSchema validation with mapped positions
|
|
3963
4154
|
* 3. References — checks $var., $def., $secret. against extracted context
|
|
3964
4155
|
*
|
|
3965
4156
|
* Returns errors, warnings, and extracted IntelliSenseContext as a byproduct.
|
|
3966
4157
|
* Pure function — works in Node.js (CLI/MCP) and browser (CodeBox).
|
|
3967
4158
|
*/
|
|
3968
|
-
declare function
|
|
4159
|
+
declare function validateFlowConfig(json: string): ValidationResult;
|
|
3969
4160
|
|
|
3970
4161
|
interface ValidationIssue {
|
|
3971
4162
|
message: string;
|
|
@@ -4215,12 +4406,11 @@ declare const index_RuleSchema: typeof RuleSchema;
|
|
|
4215
4406
|
declare const index_RulesSchema: typeof RulesSchema;
|
|
4216
4407
|
declare const index_RuntimeInstanceConfig: typeof RuntimeInstanceConfig;
|
|
4217
4408
|
declare const index_SetSchema: typeof SetSchema;
|
|
4218
|
-
declare const index_SetupSchema: typeof SetupSchema;
|
|
4219
|
-
declare const index_SetupV2Schema: typeof SetupV2Schema;
|
|
4220
4409
|
declare const index_SourceReferenceSchema: typeof SourceReferenceSchema;
|
|
4221
4410
|
declare const index_SourceSchema: typeof SourceSchema;
|
|
4222
4411
|
declare const index_SourceTypeSchema: typeof SourceTypeSchema;
|
|
4223
4412
|
declare const index_SourcesMapConfig: typeof SourcesMapConfig;
|
|
4413
|
+
declare const index_StoreReferenceSchema: typeof StoreReferenceSchema;
|
|
4224
4414
|
declare const index_TaggingVersion: typeof TaggingVersion;
|
|
4225
4415
|
declare const index_Timestamp: typeof Timestamp;
|
|
4226
4416
|
declare const index_UserSchema: typeof UserSchema;
|
|
@@ -4232,6 +4422,7 @@ declare const index_ValuesSchema: typeof ValuesSchema;
|
|
|
4232
4422
|
declare const index_VerboseConfig: typeof VerboseConfig;
|
|
4233
4423
|
declare const index_VersionSchema: typeof VersionSchema;
|
|
4234
4424
|
declare const index_configJsonSchema: typeof configJsonSchema;
|
|
4425
|
+
declare const index_configV2JsonSchema: typeof configV2JsonSchema;
|
|
4235
4426
|
declare const index_consentJsonSchema: typeof consentJsonSchema;
|
|
4236
4427
|
declare const index_createArraySchema: typeof createArraySchema;
|
|
4237
4428
|
declare const index_createConsentConfig: typeof createConsentConfig;
|
|
@@ -4248,27 +4439,27 @@ declare const index_loopJsonSchema: typeof loopJsonSchema;
|
|
|
4248
4439
|
declare const index_mapJsonSchema: typeof mapJsonSchema;
|
|
4249
4440
|
declare const index_orderedPropertiesJsonSchema: typeof orderedPropertiesJsonSchema;
|
|
4250
4441
|
declare const index_parseConfig: typeof parseConfig;
|
|
4251
|
-
declare const
|
|
4442
|
+
declare const index_parseSettings: typeof parseSettings;
|
|
4252
4443
|
declare const index_partialEventJsonSchema: typeof partialEventJsonSchema;
|
|
4253
4444
|
declare const index_policyJsonSchema: typeof policyJsonSchema;
|
|
4254
4445
|
declare const index_propertiesJsonSchema: typeof propertiesJsonSchema;
|
|
4255
4446
|
declare const index_ruleJsonSchema: typeof ruleJsonSchema;
|
|
4256
4447
|
declare const index_rulesJsonSchema: typeof rulesJsonSchema;
|
|
4257
4448
|
declare const index_safeParseConfig: typeof safeParseConfig;
|
|
4258
|
-
declare const
|
|
4449
|
+
declare const index_safeParseSettings: typeof safeParseSettings;
|
|
4259
4450
|
declare const index_setJsonSchema: typeof setJsonSchema;
|
|
4260
|
-
declare const
|
|
4261
|
-
declare const index_setupV2JsonSchema: typeof setupV2JsonSchema;
|
|
4451
|
+
declare const index_settingsJsonSchema: typeof settingsJsonSchema;
|
|
4262
4452
|
declare const index_sourceReferenceJsonSchema: typeof sourceReferenceJsonSchema;
|
|
4263
4453
|
declare const index_sourceTypeJsonSchema: typeof sourceTypeJsonSchema;
|
|
4454
|
+
declare const index_storeReferenceJsonSchema: typeof storeReferenceJsonSchema;
|
|
4264
4455
|
declare const index_userJsonSchema: typeof userJsonSchema;
|
|
4265
|
-
declare const
|
|
4456
|
+
declare const index_validateFlowConfig: typeof validateFlowConfig;
|
|
4266
4457
|
declare const index_valueConfigJsonSchema: typeof valueConfigJsonSchema;
|
|
4267
4458
|
declare const index_valueJsonSchema: typeof valueJsonSchema;
|
|
4268
4459
|
declare const index_z: typeof z;
|
|
4269
4460
|
declare const index_zodToSchema: typeof zodToSchema;
|
|
4270
4461
|
declare namespace index {
|
|
4271
|
-
export { index_BaseContextConfig as BaseContextConfig, index_BatchConfig as BatchConfig, 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, index_GenericEnvConfig as GenericEnvConfig, index_GenericSettingsConfig as GenericSettingsConfig, index_HandlersConfig as HandlersConfig, 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,
|
|
4462
|
+
export { index_BaseContextConfig as BaseContextConfig, index_BatchConfig as BatchConfig, 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, ConfigV2Schema as FlowConfigV2Schema, flow as FlowSchemas, SettingsSchema as FlowSettingsSchema, index_GenericEnvConfig as GenericEnvConfig, index_GenericSettingsConfig as GenericSettingsConfig, index_HandlersConfig as HandlersConfig, 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_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_configV2JsonSchema as configV2JsonSchema, index_consentJsonSchema as consentJsonSchema, 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_userJsonSchema as userJsonSchema, index_validateFlowConfig as validateFlowConfig, index_valueConfigJsonSchema as valueConfigJsonSchema, index_valueJsonSchema as valueJsonSchema, index_z as z, index_zodToSchema as zodToSchema };
|
|
4272
4463
|
}
|
|
4273
4464
|
|
|
4274
4465
|
export { type JSONSchema, index as schemas, zodToSchema };
|