@walkeros/core 3.2.0 → 3.3.0-next-1776113011459
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/README.md +13 -3
- package/dist/dev.d.mts +198 -28
- package/dist/dev.d.ts +198 -28
- 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 +103 -15
- package/dist/index.d.ts +103 -15
- 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/README.md
CHANGED
|
@@ -259,19 +259,29 @@ finds the appropriate mapping rule for an event.
|
|
|
259
259
|
|
|
260
260
|
#### getMarketingParameters
|
|
261
261
|
|
|
262
|
-
`getMarketingParameters(url: URL, custom?: MarketingParameters): WalkerOS.Properties`
|
|
263
|
-
extracts UTM and click ID parameters from URLs.
|
|
262
|
+
`getMarketingParameters(url: URL, custom?: MarketingParameters, clickIds?: ClickIdEntry[]): WalkerOS.Properties`
|
|
263
|
+
extracts UTM and click ID parameters from URLs. When a known ad-platform click
|
|
264
|
+
ID is present, the result also includes a `platform` field resolving to a
|
|
265
|
+
canonical identifier (e.g. `gclid` → `google`, `fbclid` → `meta`).
|
|
264
266
|
|
|
265
267
|
```js
|
|
266
268
|
getMarketingParameters(
|
|
267
269
|
new URL('https://example.com/?utm_source=docs&gclid=123'),
|
|
268
270
|
);
|
|
269
|
-
// Returns { source: "docs", gclid: "123", clickId: "gclid" }
|
|
271
|
+
// Returns { source: "docs", gclid: "123", clickId: "gclid", platform: "google" }
|
|
270
272
|
|
|
271
273
|
// With custom parameters
|
|
272
274
|
getMarketingParameters(url, { utm_custom: 'custom', partner: 'partnerId' });
|
|
275
|
+
|
|
276
|
+
// With a custom click-ID registry (extends or overrides defaults)
|
|
277
|
+
getMarketingParameters(url, undefined, [{ param: 'xyzclid', platform: 'xyz' }]);
|
|
273
278
|
```
|
|
274
279
|
|
|
280
|
+
Multi-click-ID URLs preserve every raw value, but `clickId` and `platform`
|
|
281
|
+
reference the highest-priority match. See
|
|
282
|
+
[`src/getMarketingParameters.ts`](./src/getMarketingParameters.ts) for the full
|
|
283
|
+
registry and priority order.
|
|
284
|
+
|
|
275
285
|
### Type Validation
|
|
276
286
|
|
|
277
287
|
#### Type Checkers
|
package/dist/dev.d.mts
CHANGED
|
@@ -2953,6 +2953,25 @@ declare const PackagesSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2953
2953
|
imports: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2954
2954
|
path: z.ZodOptional<z.ZodString>;
|
|
2955
2955
|
}, z.core.$strip>>;
|
|
2956
|
+
/**
|
|
2957
|
+
* Overrides schema — pin transitive dependency versions.
|
|
2958
|
+
*
|
|
2959
|
+
* @remarks
|
|
2960
|
+
* Flat `Record<string, string>` matching npm's `overrides` semantics.
|
|
2961
|
+
* Only affects transitive deps; direct package specs always win.
|
|
2962
|
+
*/
|
|
2963
|
+
declare const OverridesSchema: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
2964
|
+
/**
|
|
2965
|
+
* Bundle schema — build-time configuration for the bundler.
|
|
2966
|
+
*/
|
|
2967
|
+
declare const BundleSchema: z.ZodObject<{
|
|
2968
|
+
packages: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2969
|
+
version: z.ZodOptional<z.ZodString>;
|
|
2970
|
+
imports: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2971
|
+
path: z.ZodOptional<z.ZodString>;
|
|
2972
|
+
}, z.core.$strip>>>;
|
|
2973
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2974
|
+
}, z.core.$strict>;
|
|
2956
2975
|
/**
|
|
2957
2976
|
* Web platform configuration schema.
|
|
2958
2977
|
*/
|
|
@@ -2998,6 +3017,12 @@ declare const StepExampleSchema: z.ZodObject<{
|
|
|
2998
3017
|
}, z.core.$strip>>;
|
|
2999
3018
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3000
3019
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3020
|
+
command: z.ZodOptional<z.ZodEnum<{
|
|
3021
|
+
consent: "consent";
|
|
3022
|
+
config: "config";
|
|
3023
|
+
user: "user";
|
|
3024
|
+
run: "run";
|
|
3025
|
+
}>>;
|
|
3001
3026
|
}, z.core.$strip>;
|
|
3002
3027
|
/**
|
|
3003
3028
|
* Step examples record — keyed by scenario name.
|
|
@@ -3011,6 +3036,12 @@ declare const StepExamplesSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3011
3036
|
}, z.core.$strip>>;
|
|
3012
3037
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3013
3038
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3039
|
+
command: z.ZodOptional<z.ZodEnum<{
|
|
3040
|
+
consent: "consent";
|
|
3041
|
+
config: "config";
|
|
3042
|
+
user: "user";
|
|
3043
|
+
run: "run";
|
|
3044
|
+
}>>;
|
|
3014
3045
|
}, z.core.$strip>>;
|
|
3015
3046
|
/**
|
|
3016
3047
|
* Source reference schema.
|
|
@@ -3043,6 +3074,12 @@ declare const SourceReferenceSchema: z.ZodObject<{
|
|
|
3043
3074
|
}, z.core.$strip>>;
|
|
3044
3075
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3045
3076
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3077
|
+
command: z.ZodOptional<z.ZodEnum<{
|
|
3078
|
+
consent: "consent";
|
|
3079
|
+
config: "config";
|
|
3080
|
+
user: "user";
|
|
3081
|
+
run: "run";
|
|
3082
|
+
}>>;
|
|
3046
3083
|
}, z.core.$strip>>>;
|
|
3047
3084
|
cache: z.ZodOptional<z.ZodObject<{
|
|
3048
3085
|
full: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3084,6 +3121,12 @@ declare const TransformerReferenceSchema: z.ZodObject<{
|
|
|
3084
3121
|
}, z.core.$strip>>;
|
|
3085
3122
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3086
3123
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3124
|
+
command: z.ZodOptional<z.ZodEnum<{
|
|
3125
|
+
consent: "consent";
|
|
3126
|
+
config: "config";
|
|
3127
|
+
user: "user";
|
|
3128
|
+
run: "run";
|
|
3129
|
+
}>>;
|
|
3087
3130
|
}, z.core.$strip>>>;
|
|
3088
3131
|
cache: z.ZodOptional<z.ZodObject<{
|
|
3089
3132
|
full: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3125,6 +3168,12 @@ declare const DestinationReferenceSchema: z.ZodObject<{
|
|
|
3125
3168
|
}, z.core.$strip>>;
|
|
3126
3169
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3127
3170
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3171
|
+
command: z.ZodOptional<z.ZodEnum<{
|
|
3172
|
+
consent: "consent";
|
|
3173
|
+
config: "config";
|
|
3174
|
+
user: "user";
|
|
3175
|
+
run: "run";
|
|
3176
|
+
}>>;
|
|
3128
3177
|
}, z.core.$strip>>>;
|
|
3129
3178
|
cache: z.ZodOptional<z.ZodObject<{
|
|
3130
3179
|
full: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3164,6 +3213,12 @@ declare const StoreReferenceSchema: z.ZodObject<{
|
|
|
3164
3213
|
}, z.core.$strip>>;
|
|
3165
3214
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3166
3215
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3216
|
+
command: z.ZodOptional<z.ZodEnum<{
|
|
3217
|
+
consent: "consent";
|
|
3218
|
+
config: "config";
|
|
3219
|
+
user: "user";
|
|
3220
|
+
run: "run";
|
|
3221
|
+
}>>;
|
|
3167
3222
|
}, z.core.$strip>>>;
|
|
3168
3223
|
}, z.core.$strip>;
|
|
3169
3224
|
/**
|
|
@@ -3244,6 +3299,12 @@ declare const SettingsSchema: z.ZodObject<{
|
|
|
3244
3299
|
}, z.core.$strip>>;
|
|
3245
3300
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3246
3301
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3302
|
+
command: z.ZodOptional<z.ZodEnum<{
|
|
3303
|
+
consent: "consent";
|
|
3304
|
+
config: "config";
|
|
3305
|
+
user: "user";
|
|
3306
|
+
run: "run";
|
|
3307
|
+
}>>;
|
|
3247
3308
|
}, z.core.$strip>>>;
|
|
3248
3309
|
cache: z.ZodOptional<z.ZodObject<{
|
|
3249
3310
|
full: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3278,6 +3339,12 @@ declare const SettingsSchema: z.ZodObject<{
|
|
|
3278
3339
|
}, z.core.$strip>>;
|
|
3279
3340
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3280
3341
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3342
|
+
command: z.ZodOptional<z.ZodEnum<{
|
|
3343
|
+
consent: "consent";
|
|
3344
|
+
config: "config";
|
|
3345
|
+
user: "user";
|
|
3346
|
+
run: "run";
|
|
3347
|
+
}>>;
|
|
3281
3348
|
}, z.core.$strip>>>;
|
|
3282
3349
|
cache: z.ZodOptional<z.ZodObject<{
|
|
3283
3350
|
full: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3312,6 +3379,12 @@ declare const SettingsSchema: z.ZodObject<{
|
|
|
3312
3379
|
}, z.core.$strip>>;
|
|
3313
3380
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3314
3381
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3382
|
+
command: z.ZodOptional<z.ZodEnum<{
|
|
3383
|
+
consent: "consent";
|
|
3384
|
+
config: "config";
|
|
3385
|
+
user: "user";
|
|
3386
|
+
run: "run";
|
|
3387
|
+
}>>;
|
|
3315
3388
|
}, z.core.$strip>>>;
|
|
3316
3389
|
cache: z.ZodOptional<z.ZodObject<{
|
|
3317
3390
|
full: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3344,14 +3417,24 @@ declare const SettingsSchema: z.ZodObject<{
|
|
|
3344
3417
|
}, z.core.$strip>>;
|
|
3345
3418
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3346
3419
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3420
|
+
command: z.ZodOptional<z.ZodEnum<{
|
|
3421
|
+
consent: "consent";
|
|
3422
|
+
config: "config";
|
|
3423
|
+
user: "user";
|
|
3424
|
+
run: "run";
|
|
3425
|
+
}>>;
|
|
3347
3426
|
}, z.core.$strip>>>;
|
|
3348
3427
|
}, z.core.$strip>>>;
|
|
3349
3428
|
collector: z.ZodOptional<z.ZodUnknown>;
|
|
3350
|
-
|
|
3351
|
-
|
|
3352
|
-
|
|
3353
|
-
|
|
3354
|
-
|
|
3429
|
+
bundle: z.ZodOptional<z.ZodObject<{
|
|
3430
|
+
packages: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3431
|
+
version: z.ZodOptional<z.ZodString>;
|
|
3432
|
+
imports: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3433
|
+
path: z.ZodOptional<z.ZodString>;
|
|
3434
|
+
}, z.core.$strip>>>;
|
|
3435
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3436
|
+
}, z.core.$strict>>;
|
|
3437
|
+
packages: z.ZodOptional<z.ZodUnknown> & z.ZodType<undefined, unknown, z.core.$ZodTypeInternals<undefined, unknown>>;
|
|
3355
3438
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3356
3439
|
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3357
3440
|
}, z.core.$strip>;
|
|
@@ -3389,6 +3472,12 @@ declare const ConfigSchema: z.ZodObject<{
|
|
|
3389
3472
|
}, z.core.$strip>>;
|
|
3390
3473
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3391
3474
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3475
|
+
command: z.ZodOptional<z.ZodEnum<{
|
|
3476
|
+
consent: "consent";
|
|
3477
|
+
config: "config";
|
|
3478
|
+
user: "user";
|
|
3479
|
+
run: "run";
|
|
3480
|
+
}>>;
|
|
3392
3481
|
}, z.core.$strip>>>;
|
|
3393
3482
|
cache: z.ZodOptional<z.ZodObject<{
|
|
3394
3483
|
full: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3423,6 +3512,12 @@ declare const ConfigSchema: z.ZodObject<{
|
|
|
3423
3512
|
}, z.core.$strip>>;
|
|
3424
3513
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3425
3514
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3515
|
+
command: z.ZodOptional<z.ZodEnum<{
|
|
3516
|
+
consent: "consent";
|
|
3517
|
+
config: "config";
|
|
3518
|
+
user: "user";
|
|
3519
|
+
run: "run";
|
|
3520
|
+
}>>;
|
|
3426
3521
|
}, z.core.$strip>>>;
|
|
3427
3522
|
cache: z.ZodOptional<z.ZodObject<{
|
|
3428
3523
|
full: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3457,6 +3552,12 @@ declare const ConfigSchema: z.ZodObject<{
|
|
|
3457
3552
|
}, z.core.$strip>>;
|
|
3458
3553
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3459
3554
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3555
|
+
command: z.ZodOptional<z.ZodEnum<{
|
|
3556
|
+
consent: "consent";
|
|
3557
|
+
config: "config";
|
|
3558
|
+
user: "user";
|
|
3559
|
+
run: "run";
|
|
3560
|
+
}>>;
|
|
3460
3561
|
}, z.core.$strip>>>;
|
|
3461
3562
|
cache: z.ZodOptional<z.ZodObject<{
|
|
3462
3563
|
full: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3489,14 +3590,24 @@ declare const ConfigSchema: z.ZodObject<{
|
|
|
3489
3590
|
}, z.core.$strip>>;
|
|
3490
3591
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3491
3592
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
3593
|
+
command: z.ZodOptional<z.ZodEnum<{
|
|
3594
|
+
consent: "consent";
|
|
3595
|
+
config: "config";
|
|
3596
|
+
user: "user";
|
|
3597
|
+
run: "run";
|
|
3598
|
+
}>>;
|
|
3492
3599
|
}, z.core.$strip>>>;
|
|
3493
3600
|
}, z.core.$strip>>>;
|
|
3494
3601
|
collector: z.ZodOptional<z.ZodUnknown>;
|
|
3495
|
-
|
|
3496
|
-
|
|
3497
|
-
|
|
3498
|
-
|
|
3499
|
-
|
|
3602
|
+
bundle: z.ZodOptional<z.ZodObject<{
|
|
3603
|
+
packages: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3604
|
+
version: z.ZodOptional<z.ZodString>;
|
|
3605
|
+
imports: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3606
|
+
path: z.ZodOptional<z.ZodString>;
|
|
3607
|
+
}, z.core.$strip>>>;
|
|
3608
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3609
|
+
}, z.core.$strict>>;
|
|
3610
|
+
packages: z.ZodOptional<z.ZodUnknown> & z.ZodType<undefined, unknown, z.core.$ZodTypeInternals<undefined, unknown>>;
|
|
3500
3611
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
3501
3612
|
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3502
3613
|
}, z.core.$strip>>;
|
|
@@ -3581,6 +3692,7 @@ declare function safeParseConfig(data: unknown): z.ZodSafeParseResult<{
|
|
|
3581
3692
|
} | undefined;
|
|
3582
3693
|
mapping?: unknown;
|
|
3583
3694
|
out?: unknown;
|
|
3695
|
+
command?: "consent" | "config" | "user" | "run" | undefined;
|
|
3584
3696
|
}> | undefined;
|
|
3585
3697
|
cache?: {
|
|
3586
3698
|
rules: {
|
|
@@ -3615,6 +3727,7 @@ declare function safeParseConfig(data: unknown): z.ZodSafeParseResult<{
|
|
|
3615
3727
|
} | undefined;
|
|
3616
3728
|
mapping?: unknown;
|
|
3617
3729
|
out?: unknown;
|
|
3730
|
+
command?: "consent" | "config" | "user" | "run" | undefined;
|
|
3618
3731
|
}> | undefined;
|
|
3619
3732
|
cache?: {
|
|
3620
3733
|
rules: {
|
|
@@ -3649,6 +3762,7 @@ declare function safeParseConfig(data: unknown): z.ZodSafeParseResult<{
|
|
|
3649
3762
|
} | undefined;
|
|
3650
3763
|
mapping?: unknown;
|
|
3651
3764
|
out?: unknown;
|
|
3765
|
+
command?: "consent" | "config" | "user" | "run" | undefined;
|
|
3652
3766
|
}> | undefined;
|
|
3653
3767
|
cache?: {
|
|
3654
3768
|
rules: {
|
|
@@ -3681,14 +3795,19 @@ declare function safeParseConfig(data: unknown): z.ZodSafeParseResult<{
|
|
|
3681
3795
|
} | undefined;
|
|
3682
3796
|
mapping?: unknown;
|
|
3683
3797
|
out?: unknown;
|
|
3798
|
+
command?: "consent" | "config" | "user" | "run" | undefined;
|
|
3684
3799
|
}> | undefined;
|
|
3685
3800
|
}> | undefined;
|
|
3686
3801
|
collector?: unknown;
|
|
3687
|
-
|
|
3688
|
-
|
|
3689
|
-
|
|
3690
|
-
|
|
3691
|
-
|
|
3802
|
+
bundle?: {
|
|
3803
|
+
packages?: Record<string, {
|
|
3804
|
+
version?: string | undefined;
|
|
3805
|
+
imports?: string[] | undefined;
|
|
3806
|
+
path?: string | undefined;
|
|
3807
|
+
}> | undefined;
|
|
3808
|
+
overrides?: Record<string, string> | undefined;
|
|
3809
|
+
} | undefined;
|
|
3810
|
+
packages?: undefined;
|
|
3692
3811
|
variables?: Record<string, string | number | boolean> | undefined;
|
|
3693
3812
|
definitions?: Record<string, unknown> | undefined;
|
|
3694
3813
|
}>;
|
|
@@ -3762,6 +3881,7 @@ declare function safeParseSettings(data: unknown): z.ZodSafeParseResult<{
|
|
|
3762
3881
|
} | undefined;
|
|
3763
3882
|
mapping?: unknown;
|
|
3764
3883
|
out?: unknown;
|
|
3884
|
+
command?: "consent" | "config" | "user" | "run" | undefined;
|
|
3765
3885
|
}> | undefined;
|
|
3766
3886
|
cache?: {
|
|
3767
3887
|
rules: {
|
|
@@ -3796,6 +3916,7 @@ declare function safeParseSettings(data: unknown): z.ZodSafeParseResult<{
|
|
|
3796
3916
|
} | undefined;
|
|
3797
3917
|
mapping?: unknown;
|
|
3798
3918
|
out?: unknown;
|
|
3919
|
+
command?: "consent" | "config" | "user" | "run" | undefined;
|
|
3799
3920
|
}> | undefined;
|
|
3800
3921
|
cache?: {
|
|
3801
3922
|
rules: {
|
|
@@ -3830,6 +3951,7 @@ declare function safeParseSettings(data: unknown): z.ZodSafeParseResult<{
|
|
|
3830
3951
|
} | undefined;
|
|
3831
3952
|
mapping?: unknown;
|
|
3832
3953
|
out?: unknown;
|
|
3954
|
+
command?: "consent" | "config" | "user" | "run" | undefined;
|
|
3833
3955
|
}> | undefined;
|
|
3834
3956
|
cache?: {
|
|
3835
3957
|
rules: {
|
|
@@ -3862,14 +3984,19 @@ declare function safeParseSettings(data: unknown): z.ZodSafeParseResult<{
|
|
|
3862
3984
|
} | undefined;
|
|
3863
3985
|
mapping?: unknown;
|
|
3864
3986
|
out?: unknown;
|
|
3987
|
+
command?: "consent" | "config" | "user" | "run" | undefined;
|
|
3865
3988
|
}> | undefined;
|
|
3866
3989
|
}> | undefined;
|
|
3867
3990
|
collector?: unknown;
|
|
3868
|
-
|
|
3869
|
-
|
|
3870
|
-
|
|
3871
|
-
|
|
3872
|
-
|
|
3991
|
+
bundle?: {
|
|
3992
|
+
packages?: Record<string, {
|
|
3993
|
+
version?: string | undefined;
|
|
3994
|
+
imports?: string[] | undefined;
|
|
3995
|
+
path?: string | undefined;
|
|
3996
|
+
}> | undefined;
|
|
3997
|
+
overrides?: Record<string, string> | undefined;
|
|
3998
|
+
} | undefined;
|
|
3999
|
+
packages?: undefined;
|
|
3873
4000
|
variables?: Record<string, string | number | boolean> | undefined;
|
|
3874
4001
|
definitions?: Record<string, unknown> | undefined;
|
|
3875
4002
|
}>;
|
|
@@ -3916,6 +4043,12 @@ declare const configJsonSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<
|
|
|
3916
4043
|
}, z.core.$strip>>;
|
|
3917
4044
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3918
4045
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
4046
|
+
command: z.ZodOptional<z.ZodEnum<{
|
|
4047
|
+
consent: "consent";
|
|
4048
|
+
config: "config";
|
|
4049
|
+
user: "user";
|
|
4050
|
+
run: "run";
|
|
4051
|
+
}>>;
|
|
3919
4052
|
}, z.core.$strip>>>;
|
|
3920
4053
|
cache: z.ZodOptional<z.ZodObject<{
|
|
3921
4054
|
full: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3950,6 +4083,12 @@ declare const configJsonSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<
|
|
|
3950
4083
|
}, z.core.$strip>>;
|
|
3951
4084
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3952
4085
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
4086
|
+
command: z.ZodOptional<z.ZodEnum<{
|
|
4087
|
+
consent: "consent";
|
|
4088
|
+
config: "config";
|
|
4089
|
+
user: "user";
|
|
4090
|
+
run: "run";
|
|
4091
|
+
}>>;
|
|
3953
4092
|
}, z.core.$strip>>>;
|
|
3954
4093
|
cache: z.ZodOptional<z.ZodObject<{
|
|
3955
4094
|
full: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3984,6 +4123,12 @@ declare const configJsonSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<
|
|
|
3984
4123
|
}, z.core.$strip>>;
|
|
3985
4124
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
3986
4125
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
4126
|
+
command: z.ZodOptional<z.ZodEnum<{
|
|
4127
|
+
consent: "consent";
|
|
4128
|
+
config: "config";
|
|
4129
|
+
user: "user";
|
|
4130
|
+
run: "run";
|
|
4131
|
+
}>>;
|
|
3987
4132
|
}, z.core.$strip>>>;
|
|
3988
4133
|
cache: z.ZodOptional<z.ZodObject<{
|
|
3989
4134
|
full: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4016,14 +4161,24 @@ declare const configJsonSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<
|
|
|
4016
4161
|
}, z.core.$strip>>;
|
|
4017
4162
|
mapping: z.ZodOptional<z.ZodUnknown>;
|
|
4018
4163
|
out: z.ZodOptional<z.ZodUnknown>;
|
|
4164
|
+
command: z.ZodOptional<z.ZodEnum<{
|
|
4165
|
+
consent: "consent";
|
|
4166
|
+
config: "config";
|
|
4167
|
+
user: "user";
|
|
4168
|
+
run: "run";
|
|
4169
|
+
}>>;
|
|
4019
4170
|
}, z.core.$strip>>>;
|
|
4020
4171
|
}, z.core.$strip>>>;
|
|
4021
4172
|
collector: z.ZodOptional<z.ZodUnknown>;
|
|
4022
|
-
|
|
4023
|
-
|
|
4024
|
-
|
|
4025
|
-
|
|
4026
|
-
|
|
4173
|
+
bundle: z.ZodOptional<z.ZodObject<{
|
|
4174
|
+
packages: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4175
|
+
version: z.ZodOptional<z.ZodString>;
|
|
4176
|
+
imports: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4177
|
+
path: z.ZodOptional<z.ZodString>;
|
|
4178
|
+
}, z.core.$strip>>>;
|
|
4179
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
4180
|
+
}, z.core.$strict>>;
|
|
4181
|
+
packages: z.ZodOptional<z.ZodUnknown> & z.ZodType<undefined, unknown, z.core.$ZodTypeInternals<undefined, unknown>>;
|
|
4027
4182
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
4028
4183
|
definitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4029
4184
|
}, z.core.$strip>>;
|
|
@@ -4104,6 +4259,7 @@ declare const contractEntryJsonSchema: z.core.ZodStandardJSONSchemaPayload<z.Zod
|
|
|
4104
4259
|
*/
|
|
4105
4260
|
declare const contractJsonSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4106
4261
|
|
|
4262
|
+
declare const flow_BundleSchema: typeof BundleSchema;
|
|
4107
4263
|
declare const flow_ConfigSchema: typeof ConfigSchema;
|
|
4108
4264
|
declare const flow_ContractActionsSchema: typeof ContractActionsSchema;
|
|
4109
4265
|
declare const flow_ContractEntrySchema: typeof ContractEntrySchema;
|
|
@@ -4113,6 +4269,7 @@ declare const flow_ContractSchemaEntry: typeof ContractSchemaEntry;
|
|
|
4113
4269
|
declare const flow_DefinitionsSchema: typeof DefinitionsSchema;
|
|
4114
4270
|
declare const flow_DestinationReferenceSchema: typeof DestinationReferenceSchema;
|
|
4115
4271
|
declare const flow_InlineCodeSchema: typeof InlineCodeSchema;
|
|
4272
|
+
declare const flow_OverridesSchema: typeof OverridesSchema;
|
|
4116
4273
|
declare const flow_PackagesSchema: typeof PackagesSchema;
|
|
4117
4274
|
declare const flow_PrimitiveSchema: typeof PrimitiveSchema;
|
|
4118
4275
|
declare const flow_ServerSchema: typeof ServerSchema;
|
|
@@ -4137,7 +4294,7 @@ declare const flow_sourceReferenceJsonSchema: typeof sourceReferenceJsonSchema;
|
|
|
4137
4294
|
declare const flow_storeReferenceJsonSchema: typeof storeReferenceJsonSchema;
|
|
4138
4295
|
declare const flow_transformerReferenceJsonSchema: typeof transformerReferenceJsonSchema;
|
|
4139
4296
|
declare namespace flow {
|
|
4140
|
-
export { flow_ConfigSchema as ConfigSchema, flow_ContractActionsSchema as ContractActionsSchema, flow_ContractEntrySchema as ContractEntrySchema, flow_ContractEventsSchema as ContractEventsSchema, 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_contractEntryJsonSchema as contractEntryJsonSchema, flow_contractJsonSchema as contractJsonSchema, 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 };
|
|
4297
|
+
export { flow_BundleSchema as BundleSchema, flow_ConfigSchema as ConfigSchema, flow_ContractActionsSchema as ContractActionsSchema, flow_ContractEntrySchema as ContractEntrySchema, flow_ContractEventsSchema as ContractEventsSchema, flow_ContractSchema as ContractSchema, flow_ContractSchemaEntry as ContractSchemaEntry, flow_DefinitionsSchema as DefinitionsSchema, flow_DestinationReferenceSchema as DestinationReferenceSchema, flow_InlineCodeSchema as InlineCodeSchema, flow_OverridesSchema as OverridesSchema, 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_contractEntryJsonSchema as contractEntryJsonSchema, flow_contractJsonSchema as contractJsonSchema, 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 };
|
|
4141
4298
|
}
|
|
4142
4299
|
|
|
4143
4300
|
/**
|
|
@@ -4312,6 +4469,18 @@ declare const HintsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
4312
4469
|
}, z.core.$strip>>>;
|
|
4313
4470
|
}, z.core.$strip>>;
|
|
4314
4471
|
|
|
4472
|
+
/**
|
|
4473
|
+
* Click-ID registry entry — maps a URL parameter name to a canonical platform.
|
|
4474
|
+
*
|
|
4475
|
+
* Runtime use of this schema is optional; `getMarketingParameters()` accepts
|
|
4476
|
+
* plain `ClickIdEntry` objects without validating. This schema exists for
|
|
4477
|
+
* dev tooling (Explorer UI, MCP package_get, JSON Schema generation).
|
|
4478
|
+
*/
|
|
4479
|
+
declare const ClickIdEntrySchema: z.ZodObject<{
|
|
4480
|
+
param: z.ZodString;
|
|
4481
|
+
platform: z.ZodString;
|
|
4482
|
+
}, z.core.$strip>;
|
|
4483
|
+
|
|
4315
4484
|
interface PackageInfo {
|
|
4316
4485
|
package: string;
|
|
4317
4486
|
shortName: string;
|
|
@@ -4557,6 +4726,7 @@ declare const index_BaseContextConfig: typeof BaseContextConfig;
|
|
|
4557
4726
|
declare const index_BatchConfig: typeof BatchConfig;
|
|
4558
4727
|
declare const index_CacheRuleSchema: typeof CacheRuleSchema;
|
|
4559
4728
|
declare const index_CacheSchema: typeof CacheSchema;
|
|
4729
|
+
declare const index_ClickIdEntrySchema: typeof ClickIdEntrySchema;
|
|
4560
4730
|
declare const index_CodeSchema: typeof CodeSchema;
|
|
4561
4731
|
declare const index_ConsentSchema: typeof ConsentSchema;
|
|
4562
4732
|
declare const index_ContractActionsSchema: typeof ContractActionsSchema;
|
|
@@ -4661,7 +4831,7 @@ declare const index_valueJsonSchema: typeof valueJsonSchema;
|
|
|
4661
4831
|
declare const index_z: typeof z;
|
|
4662
4832
|
declare const index_zodToSchema: typeof zodToSchema;
|
|
4663
4833
|
declare namespace index {
|
|
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 };
|
|
4834
|
+
export { index_BaseContextConfig as BaseContextConfig, index_BatchConfig as BatchConfig, index_CacheRuleSchema as CacheRuleSchema, index_CacheSchema as CacheSchema, cache as CacheSchemas, index_ClickIdEntrySchema as ClickIdEntrySchema, 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 };
|
|
4665
4835
|
}
|
|
4666
4836
|
|
|
4667
4837
|
type PackageType = 'source' | 'destination' | 'transformer' | 'store';
|
|
@@ -4671,4 +4841,4 @@ interface PackageSchemas {
|
|
|
4671
4841
|
}
|
|
4672
4842
|
declare function mergeConfigSchema(type: PackageType, packageSchemas: PackageSchemas): Record<string, unknown>;
|
|
4673
4843
|
|
|
4674
|
-
export { type JSONSchema, mergeConfigSchema, index as schemas, zodToSchema };
|
|
4844
|
+
export { ClickIdEntrySchema, type JSONSchema, mergeConfigSchema, index as schemas, zodToSchema };
|