@joeygrable94/utm-src-pub-validators 0.0.95 → 0.0.96
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/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -542,7 +542,7 @@ declare const SQueryListTrackingLinkDocuments: v.ObjectSchema<{
|
|
|
542
542
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
543
543
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
544
544
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
545
|
-
readonly is_active: v.
|
|
545
|
+
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
546
546
|
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
547
547
|
readonly destination: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
548
548
|
readonly protocol: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>, undefined>;
|
package/dist/index.d.ts
CHANGED
|
@@ -542,7 +542,7 @@ declare const SQueryListTrackingLinkDocuments: v.ObjectSchema<{
|
|
|
542
542
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
543
543
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
544
544
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
545
|
-
readonly is_active: v.
|
|
545
|
+
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
546
546
|
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
547
547
|
readonly destination: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
548
548
|
readonly protocol: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>, undefined>;
|
package/dist/index.js
CHANGED
|
@@ -858,7 +858,7 @@ var SQueryListTrackingLinkDocuments = v12.object({
|
|
|
858
858
|
),
|
|
859
859
|
TRACKING_LINK_PAGINATION_DEFAULT_SIZE_LIMIT
|
|
860
860
|
),
|
|
861
|
-
is_active: v12.
|
|
861
|
+
is_active: v12.optional(IsValidIsActive),
|
|
862
862
|
value: v12.optional(IsValidUrlDestination),
|
|
863
863
|
destination: v12.optional(IsValidUrlDestination),
|
|
864
864
|
protocol: v12.optional(IsValidUrlProtocol),
|