@joeygrable94/utm-src-pub-validators 0.0.89 → 0.0.90
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 +6 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +24 -2
- package/dist/index.d.ts +24 -2
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -879,6 +879,7 @@ var SQuerySortTrackingLinkDocuments = v9__namespace.optional(
|
|
|
879
879
|
key: v9__namespace.fallback(
|
|
880
880
|
v9__namespace.picklist([
|
|
881
881
|
"id",
|
|
882
|
+
"url",
|
|
882
883
|
"destination",
|
|
883
884
|
"is_active",
|
|
884
885
|
"protocol",
|
|
@@ -920,6 +921,7 @@ var SQueryListTrackingLinkDocuments = v9__namespace.object({
|
|
|
920
921
|
TRACKING_LINK_PAGINATION_DEFAULT_SIZE_LIMIT
|
|
921
922
|
),
|
|
922
923
|
is_active: v9__namespace.fallback(v9__namespace.optional(IsValidIsActive), true),
|
|
924
|
+
url: v9__namespace.optional(IsValidUrlDestination),
|
|
923
925
|
destination: v9__namespace.optional(IsValidUrlDestination),
|
|
924
926
|
protocol: v9__namespace.optional(IsValidUrlProtocol),
|
|
925
927
|
domain: v9__namespace.optional(IsValidUrlDomain),
|
|
@@ -940,6 +942,7 @@ var SQueryListTrackingLinkDocuments = v9__namespace.object({
|
|
|
940
942
|
var SCreateTrackingLinkDocument = v9__namespace.object({
|
|
941
943
|
group: IsValidReferenceDocumentId,
|
|
942
944
|
is_active: IsValidIsActive,
|
|
945
|
+
url: IsValidUrlDestination,
|
|
943
946
|
destination: IsValidUrlDestination,
|
|
944
947
|
protocol: IsValidUrlProtocol,
|
|
945
948
|
domain: IsValidUrlDomain,
|
|
@@ -979,6 +982,7 @@ var SReadTrackingLinkDocumentByDocumentId = v9__namespace.object({
|
|
|
979
982
|
});
|
|
980
983
|
var SUpdateAsCreatorTrackingLinkDocument = v9__namespace.object({
|
|
981
984
|
is_active: IsValidOrUndefinedIsActive,
|
|
985
|
+
url: IsValidOrUndefinedUrlDestination,
|
|
982
986
|
destination: IsValidOrUndefinedUrlDestination,
|
|
983
987
|
protocol: IsValidOrUndefinedUrlProtocol,
|
|
984
988
|
domain: IsValidOrUndefinedUrlDomain,
|
|
@@ -999,6 +1003,7 @@ var SUpdateAsCreatorTrackingLinkDocumentRequest = v9__namespace.object({
|
|
|
999
1003
|
});
|
|
1000
1004
|
var SUpdateAsInvitedTrackingLinkDocument = v9__namespace.object({
|
|
1001
1005
|
is_active: IsValidOrUndefinedIsActive,
|
|
1006
|
+
url: IsValidOrUndefinedUrlDestination,
|
|
1002
1007
|
destination: IsValidOrUndefinedUrlDestination,
|
|
1003
1008
|
protocol: IsValidOrUndefinedUrlProtocol,
|
|
1004
1009
|
domain: IsValidOrUndefinedUrlDomain,
|
|
@@ -2205,6 +2210,7 @@ var SGroupDocument = v9__namespace.object({
|
|
|
2205
2210
|
...SBaseGroupDocument.entries
|
|
2206
2211
|
});
|
|
2207
2212
|
var SBaseTrackingLinkDocument = v9__namespace.object({
|
|
2213
|
+
url: IsValidUrlDestination,
|
|
2208
2214
|
is_active: IsValidIsActive,
|
|
2209
2215
|
destination: IsValidUrlDestination,
|
|
2210
2216
|
protocol: IsValidUrlProtocol,
|