@walkeros/core 2.1.1 → 2.2.0-next-1772811722420
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 +198 -2
- package/dist/dev.d.ts +198 -2
- 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 +315 -165
- package/dist/index.d.ts +315 -165
- 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
|
@@ -2923,6 +2923,29 @@ declare const DestinationReferenceSchema: z.ZodObject<{
|
|
|
2923
2923
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
2924
2924
|
}, z.core.$strip>>>;
|
|
2925
2925
|
}, z.core.$strip>;
|
|
2926
|
+
/**
|
|
2927
|
+
* Store package reference.
|
|
2928
|
+
*
|
|
2929
|
+
* @remarks
|
|
2930
|
+
* Stores are passive key-value infrastructure — no chain properties (next/before).
|
|
2931
|
+
* Consumed by other components via `$store:storeId` env wiring.
|
|
2932
|
+
*/
|
|
2933
|
+
declare const StoreReferenceSchema: z.ZodObject<{
|
|
2934
|
+
package: z.ZodOptional<z.ZodString>;
|
|
2935
|
+
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
2936
|
+
push: z.ZodString;
|
|
2937
|
+
type: z.ZodOptional<z.ZodString>;
|
|
2938
|
+
init: z.ZodOptional<z.ZodString>;
|
|
2939
|
+
}, z.core.$strip>]>>;
|
|
2940
|
+
config: z.ZodOptional<z.ZodUnknown>;
|
|
2941
|
+
env: z.ZodOptional<z.ZodUnknown>;
|
|
2942
|
+
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
2943
|
+
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2944
|
+
examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2945
|
+
in: z.ZodOptional<z.ZodUnknown>;
|
|
2946
|
+
out: z.ZodOptional<z.ZodUnknown>;
|
|
2947
|
+
}, z.core.$strip>>>;
|
|
2948
|
+
}, z.core.$strip>;
|
|
2926
2949
|
/**
|
|
2927
2950
|
* Contract schema entry — a JSON Schema object.
|
|
2928
2951
|
* Passthrough to allow any valid JSON Schema keywords.
|
|
@@ -3003,6 +3026,22 @@ declare const ConfigSchema: z.ZodObject<{
|
|
|
3003
3026
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3004
3027
|
}, z.core.$strip>>>;
|
|
3005
3028
|
}, z.core.$strip>>>;
|
|
3029
|
+
stores: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3030
|
+
package: z.ZodOptional<z.ZodString>;
|
|
3031
|
+
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
3032
|
+
push: z.ZodString;
|
|
3033
|
+
type: z.ZodOptional<z.ZodString>;
|
|
3034
|
+
init: z.ZodOptional<z.ZodString>;
|
|
3035
|
+
}, z.core.$strip>]>>;
|
|
3036
|
+
config: z.ZodOptional<z.ZodUnknown>;
|
|
3037
|
+
env: z.ZodOptional<z.ZodUnknown>;
|
|
3038
|
+
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3039
|
+
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3040
|
+
examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3041
|
+
in: z.ZodOptional<z.ZodUnknown>;
|
|
3042
|
+
out: z.ZodOptional<z.ZodUnknown>;
|
|
3043
|
+
}, z.core.$strip>>>;
|
|
3044
|
+
}, z.core.$strip>>>;
|
|
3006
3045
|
collector: z.ZodOptional<z.ZodUnknown>;
|
|
3007
3046
|
packages: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3008
3047
|
version: z.ZodOptional<z.ZodString>;
|
|
@@ -3076,6 +3115,22 @@ declare const SetupV2Schema: z.ZodObject<{
|
|
|
3076
3115
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3077
3116
|
}, z.core.$strip>>>;
|
|
3078
3117
|
}, z.core.$strip>>>;
|
|
3118
|
+
stores: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3119
|
+
package: z.ZodOptional<z.ZodString>;
|
|
3120
|
+
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
3121
|
+
push: z.ZodString;
|
|
3122
|
+
type: z.ZodOptional<z.ZodString>;
|
|
3123
|
+
init: z.ZodOptional<z.ZodString>;
|
|
3124
|
+
}, z.core.$strip>]>>;
|
|
3125
|
+
config: z.ZodOptional<z.ZodUnknown>;
|
|
3126
|
+
env: z.ZodOptional<z.ZodUnknown>;
|
|
3127
|
+
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3128
|
+
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3129
|
+
examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3130
|
+
in: z.ZodOptional<z.ZodUnknown>;
|
|
3131
|
+
out: z.ZodOptional<z.ZodUnknown>;
|
|
3132
|
+
}, z.core.$strip>>>;
|
|
3133
|
+
}, z.core.$strip>>>;
|
|
3079
3134
|
collector: z.ZodOptional<z.ZodUnknown>;
|
|
3080
3135
|
packages: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3081
3136
|
version: z.ZodOptional<z.ZodString>;
|
|
@@ -3152,6 +3207,22 @@ declare const SetupSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
3152
3207
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3153
3208
|
}, z.core.$strip>>>;
|
|
3154
3209
|
}, z.core.$strip>>>;
|
|
3210
|
+
stores: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3211
|
+
package: z.ZodOptional<z.ZodString>;
|
|
3212
|
+
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
3213
|
+
push: z.ZodString;
|
|
3214
|
+
type: z.ZodOptional<z.ZodString>;
|
|
3215
|
+
init: z.ZodOptional<z.ZodString>;
|
|
3216
|
+
}, z.core.$strip>]>>;
|
|
3217
|
+
config: z.ZodOptional<z.ZodUnknown>;
|
|
3218
|
+
env: z.ZodOptional<z.ZodUnknown>;
|
|
3219
|
+
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3220
|
+
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3221
|
+
examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3222
|
+
in: z.ZodOptional<z.ZodUnknown>;
|
|
3223
|
+
out: z.ZodOptional<z.ZodUnknown>;
|
|
3224
|
+
}, z.core.$strip>>>;
|
|
3225
|
+
}, z.core.$strip>>>;
|
|
3155
3226
|
collector: z.ZodOptional<z.ZodUnknown>;
|
|
3156
3227
|
packages: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3157
3228
|
version: z.ZodOptional<z.ZodString>;
|
|
@@ -3226,6 +3297,22 @@ declare const SetupSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
3226
3297
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3227
3298
|
}, z.core.$strip>>>;
|
|
3228
3299
|
}, z.core.$strip>>>;
|
|
3300
|
+
stores: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3301
|
+
package: z.ZodOptional<z.ZodString>;
|
|
3302
|
+
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
3303
|
+
push: z.ZodString;
|
|
3304
|
+
type: z.ZodOptional<z.ZodString>;
|
|
3305
|
+
init: z.ZodOptional<z.ZodString>;
|
|
3306
|
+
}, z.core.$strip>]>>;
|
|
3307
|
+
config: z.ZodOptional<z.ZodUnknown>;
|
|
3308
|
+
env: z.ZodOptional<z.ZodUnknown>;
|
|
3309
|
+
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3310
|
+
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3311
|
+
examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3312
|
+
in: z.ZodOptional<z.ZodUnknown>;
|
|
3313
|
+
out: z.ZodOptional<z.ZodUnknown>;
|
|
3314
|
+
}, z.core.$strip>>>;
|
|
3315
|
+
}, z.core.$strip>>>;
|
|
3229
3316
|
collector: z.ZodOptional<z.ZodUnknown>;
|
|
3230
3317
|
packages: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3231
3318
|
version: z.ZodOptional<z.ZodString>;
|
|
@@ -3337,6 +3424,22 @@ declare function safeParseSetup(data: unknown): z.ZodSafeParseResult<{
|
|
|
3337
3424
|
out?: unknown;
|
|
3338
3425
|
}> | undefined;
|
|
3339
3426
|
}> | undefined;
|
|
3427
|
+
stores?: Record<string, {
|
|
3428
|
+
package?: string | undefined;
|
|
3429
|
+
code?: string | {
|
|
3430
|
+
push: string;
|
|
3431
|
+
type?: string | undefined;
|
|
3432
|
+
init?: string | undefined;
|
|
3433
|
+
} | undefined;
|
|
3434
|
+
config?: unknown;
|
|
3435
|
+
env?: unknown;
|
|
3436
|
+
variables?: Record<string, string | number | boolean> | undefined;
|
|
3437
|
+
definitions?: Record<string, unknown> | undefined;
|
|
3438
|
+
examples?: Record<string, {
|
|
3439
|
+
in?: unknown;
|
|
3440
|
+
out?: unknown;
|
|
3441
|
+
}> | undefined;
|
|
3442
|
+
}> | undefined;
|
|
3340
3443
|
collector?: unknown;
|
|
3341
3444
|
packages?: Record<string, {
|
|
3342
3445
|
version?: string | undefined;
|
|
@@ -3413,6 +3516,22 @@ declare function safeParseSetup(data: unknown): z.ZodSafeParseResult<{
|
|
|
3413
3516
|
out?: unknown;
|
|
3414
3517
|
}> | undefined;
|
|
3415
3518
|
}> | undefined;
|
|
3519
|
+
stores?: Record<string, {
|
|
3520
|
+
package?: string | undefined;
|
|
3521
|
+
code?: string | {
|
|
3522
|
+
push: string;
|
|
3523
|
+
type?: string | undefined;
|
|
3524
|
+
init?: string | undefined;
|
|
3525
|
+
} | undefined;
|
|
3526
|
+
config?: unknown;
|
|
3527
|
+
env?: unknown;
|
|
3528
|
+
variables?: Record<string, string | number | boolean> | undefined;
|
|
3529
|
+
definitions?: Record<string, unknown> | undefined;
|
|
3530
|
+
examples?: Record<string, {
|
|
3531
|
+
in?: unknown;
|
|
3532
|
+
out?: unknown;
|
|
3533
|
+
}> | undefined;
|
|
3534
|
+
}> | undefined;
|
|
3416
3535
|
collector?: unknown;
|
|
3417
3536
|
packages?: Record<string, {
|
|
3418
3537
|
version?: string | undefined;
|
|
@@ -3512,6 +3631,22 @@ declare function safeParseConfig(data: unknown): z.ZodSafeParseResult<{
|
|
|
3512
3631
|
out?: unknown;
|
|
3513
3632
|
}> | undefined;
|
|
3514
3633
|
}> | undefined;
|
|
3634
|
+
stores?: Record<string, {
|
|
3635
|
+
package?: string | undefined;
|
|
3636
|
+
code?: string | {
|
|
3637
|
+
push: string;
|
|
3638
|
+
type?: string | undefined;
|
|
3639
|
+
init?: string | undefined;
|
|
3640
|
+
} | undefined;
|
|
3641
|
+
config?: unknown;
|
|
3642
|
+
env?: unknown;
|
|
3643
|
+
variables?: Record<string, string | number | boolean> | undefined;
|
|
3644
|
+
definitions?: Record<string, unknown> | undefined;
|
|
3645
|
+
examples?: Record<string, {
|
|
3646
|
+
in?: unknown;
|
|
3647
|
+
out?: unknown;
|
|
3648
|
+
}> | undefined;
|
|
3649
|
+
}> | undefined;
|
|
3515
3650
|
collector?: unknown;
|
|
3516
3651
|
packages?: Record<string, {
|
|
3517
3652
|
version?: string | undefined;
|
|
@@ -3594,6 +3729,22 @@ declare const setupJsonSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodUnion<re
|
|
|
3594
3729
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3595
3730
|
}, z.core.$strip>>>;
|
|
3596
3731
|
}, z.core.$strip>>>;
|
|
3732
|
+
stores: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3733
|
+
package: z.ZodOptional<z.ZodString>;
|
|
3734
|
+
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
3735
|
+
push: z.ZodString;
|
|
3736
|
+
type: z.ZodOptional<z.ZodString>;
|
|
3737
|
+
init: z.ZodOptional<z.ZodString>;
|
|
3738
|
+
}, z.core.$strip>]>>;
|
|
3739
|
+
config: z.ZodOptional<z.ZodUnknown>;
|
|
3740
|
+
env: z.ZodOptional<z.ZodUnknown>;
|
|
3741
|
+
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3742
|
+
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3743
|
+
examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3744
|
+
in: z.ZodOptional<z.ZodUnknown>;
|
|
3745
|
+
out: z.ZodOptional<z.ZodUnknown>;
|
|
3746
|
+
}, z.core.$strip>>>;
|
|
3747
|
+
}, z.core.$strip>>>;
|
|
3597
3748
|
collector: z.ZodOptional<z.ZodUnknown>;
|
|
3598
3749
|
packages: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3599
3750
|
version: z.ZodOptional<z.ZodString>;
|
|
@@ -3668,6 +3819,22 @@ declare const setupJsonSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodUnion<re
|
|
|
3668
3819
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3669
3820
|
}, z.core.$strip>>>;
|
|
3670
3821
|
}, z.core.$strip>>>;
|
|
3822
|
+
stores: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3823
|
+
package: z.ZodOptional<z.ZodString>;
|
|
3824
|
+
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
3825
|
+
push: z.ZodString;
|
|
3826
|
+
type: z.ZodOptional<z.ZodString>;
|
|
3827
|
+
init: z.ZodOptional<z.ZodString>;
|
|
3828
|
+
}, z.core.$strip>]>>;
|
|
3829
|
+
config: z.ZodOptional<z.ZodUnknown>;
|
|
3830
|
+
env: z.ZodOptional<z.ZodUnknown>;
|
|
3831
|
+
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3832
|
+
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3833
|
+
examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3834
|
+
in: z.ZodOptional<z.ZodUnknown>;
|
|
3835
|
+
out: z.ZodOptional<z.ZodUnknown>;
|
|
3836
|
+
}, z.core.$strip>>>;
|
|
3837
|
+
}, z.core.$strip>>>;
|
|
3671
3838
|
collector: z.ZodOptional<z.ZodUnknown>;
|
|
3672
3839
|
packages: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3673
3840
|
version: z.ZodOptional<z.ZodString>;
|
|
@@ -3751,6 +3918,22 @@ declare const setupV2JsonSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodObject
|
|
|
3751
3918
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3752
3919
|
}, z.core.$strip>>>;
|
|
3753
3920
|
}, z.core.$strip>>>;
|
|
3921
|
+
stores: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3922
|
+
package: z.ZodOptional<z.ZodString>;
|
|
3923
|
+
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
3924
|
+
push: z.ZodString;
|
|
3925
|
+
type: z.ZodOptional<z.ZodString>;
|
|
3926
|
+
init: z.ZodOptional<z.ZodString>;
|
|
3927
|
+
}, z.core.$strip>]>>;
|
|
3928
|
+
config: z.ZodOptional<z.ZodUnknown>;
|
|
3929
|
+
env: z.ZodOptional<z.ZodUnknown>;
|
|
3930
|
+
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3931
|
+
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3932
|
+
examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3933
|
+
in: z.ZodOptional<z.ZodUnknown>;
|
|
3934
|
+
out: z.ZodOptional<z.ZodUnknown>;
|
|
3935
|
+
}, z.core.$strip>>>;
|
|
3936
|
+
}, z.core.$strip>>>;
|
|
3754
3937
|
collector: z.ZodOptional<z.ZodUnknown>;
|
|
3755
3938
|
packages: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3756
3939
|
version: z.ZodOptional<z.ZodString>;
|
|
@@ -3799,6 +3982,15 @@ declare const destinationReferenceJsonSchema: z.core.ZodStandardJSONSchemaPayloa
|
|
|
3799
3982
|
* @returns JSON Schema (Draft 7) representation of TransformerReferenceSchema
|
|
3800
3983
|
*/
|
|
3801
3984
|
declare const transformerReferenceJsonSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3985
|
+
/**
|
|
3986
|
+
* Generate JSON Schema for StoreReference.
|
|
3987
|
+
*
|
|
3988
|
+
* @remarks
|
|
3989
|
+
* Used for validating store package references.
|
|
3990
|
+
*
|
|
3991
|
+
* @returns JSON Schema (Draft 7) representation of StoreReferenceSchema
|
|
3992
|
+
*/
|
|
3993
|
+
declare const storeReferenceJsonSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3802
3994
|
|
|
3803
3995
|
declare const flow_ConfigSchema: typeof ConfigSchema;
|
|
3804
3996
|
declare const flow_ContractActionsSchema: typeof ContractActionsSchema;
|
|
@@ -3815,6 +4007,7 @@ declare const flow_SetupV2Schema: typeof SetupV2Schema;
|
|
|
3815
4007
|
declare const flow_SourceReferenceSchema: typeof SourceReferenceSchema;
|
|
3816
4008
|
declare const flow_StepExampleSchema: typeof StepExampleSchema;
|
|
3817
4009
|
declare const flow_StepExamplesSchema: typeof StepExamplesSchema;
|
|
4010
|
+
declare const flow_StoreReferenceSchema: typeof StoreReferenceSchema;
|
|
3818
4011
|
declare const flow_TransformerReferenceSchema: typeof TransformerReferenceSchema;
|
|
3819
4012
|
declare const flow_VariablesSchema: typeof VariablesSchema;
|
|
3820
4013
|
declare const flow_WebSchema: typeof WebSchema;
|
|
@@ -3827,9 +4020,10 @@ declare const flow_safeParseSetup: typeof safeParseSetup;
|
|
|
3827
4020
|
declare const flow_setupJsonSchema: typeof setupJsonSchema;
|
|
3828
4021
|
declare const flow_setupV2JsonSchema: typeof setupV2JsonSchema;
|
|
3829
4022
|
declare const flow_sourceReferenceJsonSchema: typeof sourceReferenceJsonSchema;
|
|
4023
|
+
declare const flow_storeReferenceJsonSchema: typeof storeReferenceJsonSchema;
|
|
3830
4024
|
declare const flow_transformerReferenceJsonSchema: typeof transformerReferenceJsonSchema;
|
|
3831
4025
|
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, flow_SetupSchema as SetupSchema, flow_SetupV2Schema as SetupV2Schema, flow_SourceReferenceSchema as SourceReferenceSchema, flow_StepExampleSchema as StepExampleSchema, flow_StepExamplesSchema as StepExamplesSchema, flow_TransformerReferenceSchema as TransformerReferenceSchema, flow_VariablesSchema as VariablesSchema, flow_WebSchema as WebSchema, flow_configJsonSchema as configJsonSchema, flow_destinationReferenceJsonSchema as destinationReferenceJsonSchema, flow_parseConfig as parseConfig, flow_parseSetup as parseSetup, flow_safeParseConfig as safeParseConfig, flow_safeParseSetup as safeParseSetup, flow_setupJsonSchema as setupJsonSchema, flow_setupV2JsonSchema as setupV2JsonSchema, flow_sourceReferenceJsonSchema as sourceReferenceJsonSchema, flow_transformerReferenceJsonSchema as transformerReferenceJsonSchema };
|
|
4026
|
+
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, flow_SetupSchema as SetupSchema, flow_SetupV2Schema as SetupV2Schema, 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_destinationReferenceJsonSchema as destinationReferenceJsonSchema, flow_parseConfig as parseConfig, flow_parseSetup as parseSetup, flow_safeParseConfig as safeParseConfig, flow_safeParseSetup as safeParseSetup, flow_setupJsonSchema as setupJsonSchema, flow_setupV2JsonSchema as setupV2JsonSchema, flow_sourceReferenceJsonSchema as sourceReferenceJsonSchema, flow_storeReferenceJsonSchema as storeReferenceJsonSchema, flow_transformerReferenceJsonSchema as transformerReferenceJsonSchema };
|
|
3833
4027
|
}
|
|
3834
4028
|
|
|
3835
4029
|
/**
|
|
@@ -4221,6 +4415,7 @@ declare const index_SourceReferenceSchema: typeof SourceReferenceSchema;
|
|
|
4221
4415
|
declare const index_SourceSchema: typeof SourceSchema;
|
|
4222
4416
|
declare const index_SourceTypeSchema: typeof SourceTypeSchema;
|
|
4223
4417
|
declare const index_SourcesMapConfig: typeof SourcesMapConfig;
|
|
4418
|
+
declare const index_StoreReferenceSchema: typeof StoreReferenceSchema;
|
|
4224
4419
|
declare const index_TaggingVersion: typeof TaggingVersion;
|
|
4225
4420
|
declare const index_Timestamp: typeof Timestamp;
|
|
4226
4421
|
declare const index_UserSchema: typeof UserSchema;
|
|
@@ -4261,6 +4456,7 @@ declare const index_setupJsonSchema: typeof setupJsonSchema;
|
|
|
4261
4456
|
declare const index_setupV2JsonSchema: typeof setupV2JsonSchema;
|
|
4262
4457
|
declare const index_sourceReferenceJsonSchema: typeof sourceReferenceJsonSchema;
|
|
4263
4458
|
declare const index_sourceTypeJsonSchema: typeof sourceTypeJsonSchema;
|
|
4459
|
+
declare const index_storeReferenceJsonSchema: typeof storeReferenceJsonSchema;
|
|
4264
4460
|
declare const index_userJsonSchema: typeof userJsonSchema;
|
|
4265
4461
|
declare const index_validateFlowSetup: typeof validateFlowSetup;
|
|
4266
4462
|
declare const index_valueConfigJsonSchema: typeof valueConfigJsonSchema;
|
|
@@ -4268,7 +4464,7 @@ declare const index_valueJsonSchema: typeof valueJsonSchema;
|
|
|
4268
4464
|
declare const index_z: typeof z;
|
|
4269
4465
|
declare const index_zodToSchema: typeof zodToSchema;
|
|
4270
4466
|
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, index_SetupSchema as SetupSchema, index_SetupV2Schema as SetupV2Schema, index_SourceReferenceSchema as SourceReferenceSchema, index_SourceSchema as SourceSchema, source as SourceSchemas, index_SourceTypeSchema as SourceTypeSchema, index_SourcesMapConfig as SourcesMapConfig, 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_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_parseSetup as parseSetup, 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_safeParseSetup as safeParseSetup, index_setJsonSchema as setJsonSchema, index_setupJsonSchema as setupJsonSchema, index_setupV2JsonSchema as setupV2JsonSchema, index_sourceReferenceJsonSchema as sourceReferenceJsonSchema, index_sourceTypeJsonSchema as sourceTypeJsonSchema, index_userJsonSchema as userJsonSchema, index_validateFlowSetup as validateFlowSetup, index_valueConfigJsonSchema as valueConfigJsonSchema, index_valueJsonSchema as valueJsonSchema, index_z as z, index_zodToSchema as zodToSchema };
|
|
4467
|
+
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, index_SetupSchema as SetupSchema, index_SetupV2Schema as SetupV2Schema, 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_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_parseSetup as parseSetup, 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_safeParseSetup as safeParseSetup, index_setJsonSchema as setJsonSchema, index_setupJsonSchema as setupJsonSchema, index_setupV2JsonSchema as setupV2JsonSchema, index_sourceReferenceJsonSchema as sourceReferenceJsonSchema, index_sourceTypeJsonSchema as sourceTypeJsonSchema, index_storeReferenceJsonSchema as storeReferenceJsonSchema, index_userJsonSchema as userJsonSchema, index_validateFlowSetup as validateFlowSetup, index_valueConfigJsonSchema as valueConfigJsonSchema, index_valueJsonSchema as valueJsonSchema, index_z as z, index_zodToSchema as zodToSchema };
|
|
4272
4468
|
}
|
|
4273
4469
|
|
|
4274
4470
|
export { type JSONSchema, index as schemas, zodToSchema };
|