@joeygrable94/utm-src-pub-validators 0.0.82 → 0.0.83
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 +147 -15
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +60 -0
- package/dist/index.d.ts +60 -0
- package/dist/index.js +147 -15
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -196,6 +196,10 @@ declare const SQueryListGroupDocuments: v.ObjectSchema<{
|
|
|
196
196
|
readonly apply_value_to: v.OptionalSchema<v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>, undefined>;
|
|
197
197
|
readonly apply_value_as: v.OptionalSchema<v.PicklistSchema<readonly ["prefix", "suffix"], undefined>, undefined>;
|
|
198
198
|
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
199
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
200
|
+
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "apply_value_to", "apply_value_as", "createdAt", "updatedAt"], undefined>;
|
|
201
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
202
|
+
}, undefined>, undefined>;
|
|
199
203
|
}, undefined>;
|
|
200
204
|
type SQueryListGroupDocuments = v.InferOutput<typeof SQueryListGroupDocuments>;
|
|
201
205
|
declare const SCreateGroupDocument: v.ObjectSchema<{
|
|
@@ -541,6 +545,10 @@ declare const SQueryListTrackingLinkDocuments: v.ObjectSchema<{
|
|
|
541
545
|
readonly utm_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_id is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2030, "the utm_id is too long, it must be 2030 characters or less">, v.RegexAction<string, "utm_id can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
542
546
|
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
543
547
|
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
548
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
549
|
+
readonly key: v.PicklistSchema<["id", "destination", "is_active", "protocol", "domain", "path", "query", "fragment", "utm_source", "utm_medium", "utm_campaign", "utm_creative_format", "utm_content", "utm_term", "utm_id", "createdAt", "updatedAt"], undefined>;
|
|
550
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
551
|
+
}, undefined>, undefined>;
|
|
544
552
|
}, undefined>;
|
|
545
553
|
type SQueryListTrackingLinkDocuments = v.InferOutput<typeof SQueryListTrackingLinkDocuments>;
|
|
546
554
|
declare const SCreateTrackingLinkDocument: v.ObjectSchema<{
|
|
@@ -876,6 +884,10 @@ declare const SQueryListUserDocuments: v.ObjectSchema<{
|
|
|
876
884
|
readonly username: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a username">, v.TrimAction, v.MinLengthAction<string, 3, "your username is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 255, "your username is too long, it must be 255 characters or less">, v.RegexAction<string, "your username can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
877
885
|
readonly confirmed: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
878
886
|
readonly blocked: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
887
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
888
|
+
readonly key: v.PicklistSchema<["id", "email", "username", "confirmed", "blocked", "createdAt", "updatedAt"], undefined>;
|
|
889
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
890
|
+
}, undefined>, undefined>;
|
|
879
891
|
}, undefined>;
|
|
880
892
|
type SQueryListUserDocuments = v.InferOutput<typeof SQueryListUserDocuments>;
|
|
881
893
|
declare const SQueryListUserDocumentsByIdentifier: v.ObjectSchema<{
|
|
@@ -905,6 +917,10 @@ declare const SQueryListCampaignIdDocuments: v.ObjectSchema<{
|
|
|
905
917
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
906
918
|
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
907
919
|
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
920
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
921
|
+
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
922
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
923
|
+
}, undefined>, undefined>;
|
|
908
924
|
}, undefined>;
|
|
909
925
|
type SQueryListCampaignIdDocuments = v.InferOutput<typeof SQueryListCampaignIdDocuments>;
|
|
910
926
|
declare const SCreateCampaignIdDocument: v.ObjectSchema<{
|
|
@@ -1002,6 +1018,10 @@ declare const SQueryListCampaignKeyDocuments: v.ObjectSchema<{
|
|
|
1002
1018
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1003
1019
|
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1004
1020
|
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1021
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1022
|
+
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1023
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
1024
|
+
}, undefined>, undefined>;
|
|
1005
1025
|
}, undefined>;
|
|
1006
1026
|
type SQueryListCampaignKeyDocuments = v.InferOutput<typeof SQueryListCampaignKeyDocuments>;
|
|
1007
1027
|
declare const SCreateCampaignKeyDocument: v.ObjectSchema<{
|
|
@@ -1093,6 +1113,10 @@ declare const SQueryListCampaignPhaseDocuments: v.ObjectSchema<{
|
|
|
1093
1113
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1094
1114
|
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1095
1115
|
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1116
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1117
|
+
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1118
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
1119
|
+
}, undefined>, undefined>;
|
|
1096
1120
|
}, undefined>;
|
|
1097
1121
|
type SQueryListCampaignPhaseDocuments = v.InferOutput<typeof SQueryListCampaignPhaseDocuments>;
|
|
1098
1122
|
declare const SCreateCampaignPhaseDocument: v.ObjectSchema<{
|
|
@@ -1184,6 +1208,10 @@ declare const SQueryListCampaignProductDocuments: v.ObjectSchema<{
|
|
|
1184
1208
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1185
1209
|
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1186
1210
|
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1211
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1212
|
+
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1213
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
1214
|
+
}, undefined>, undefined>;
|
|
1187
1215
|
}, undefined>;
|
|
1188
1216
|
type SQueryListCampaignProductDocuments = v.InferOutput<typeof SQueryListCampaignProductDocuments>;
|
|
1189
1217
|
declare const SCreateCampaignProductDocument: v.ObjectSchema<{
|
|
@@ -1275,6 +1303,10 @@ declare const SQueryListCampaignTargetDocuments: v.ObjectSchema<{
|
|
|
1275
1303
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1276
1304
|
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1277
1305
|
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1306
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1307
|
+
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1308
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
1309
|
+
}, undefined>, undefined>;
|
|
1278
1310
|
}, undefined>;
|
|
1279
1311
|
type SQueryListCampaignTargetDocuments = v.InferOutput<typeof SQueryListCampaignTargetDocuments>;
|
|
1280
1312
|
declare const SCreateCampaignTargetDocument: v.ObjectSchema<{
|
|
@@ -1366,6 +1398,10 @@ declare const SQueryListContentDocuments: v.ObjectSchema<{
|
|
|
1366
1398
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1367
1399
|
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1368
1400
|
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1401
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1402
|
+
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1403
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
1404
|
+
}, undefined>, undefined>;
|
|
1369
1405
|
}, undefined>;
|
|
1370
1406
|
type SQueryListContentDocuments = v.InferOutput<typeof SQueryListContentDocuments>;
|
|
1371
1407
|
declare const SCreateContentDocument: v.ObjectSchema<{
|
|
@@ -1457,6 +1493,10 @@ declare const SQueryListCreativeFormatVariantDocuments: v.ObjectSchema<{
|
|
|
1457
1493
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1458
1494
|
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1459
1495
|
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1496
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1497
|
+
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1498
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
1499
|
+
}, undefined>, undefined>;
|
|
1460
1500
|
}, undefined>;
|
|
1461
1501
|
type SQueryListCreativeFormatVariantDocuments = v.InferOutput<typeof SQueryListCreativeFormatVariantDocuments>;
|
|
1462
1502
|
declare const SCreateCreativeFormatVariantDocument: v.ObjectSchema<{
|
|
@@ -1548,6 +1588,10 @@ declare const SQueryListCreativeFormatDocuments: v.ObjectSchema<{
|
|
|
1548
1588
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1549
1589
|
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1550
1590
|
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1591
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1592
|
+
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1593
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
1594
|
+
}, undefined>, undefined>;
|
|
1551
1595
|
}, undefined>;
|
|
1552
1596
|
type SQueryListCreativeFormatDocuments = v.InferOutput<typeof SQueryListCreativeFormatDocuments>;
|
|
1553
1597
|
declare const SCreateCreativeFormatDocument: v.ObjectSchema<{
|
|
@@ -1639,6 +1683,10 @@ declare const SQueryListMediumDocuments: v.ObjectSchema<{
|
|
|
1639
1683
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1640
1684
|
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1641
1685
|
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1686
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1687
|
+
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1688
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
1689
|
+
}, undefined>, undefined>;
|
|
1642
1690
|
}, undefined>;
|
|
1643
1691
|
type SQueryListMediumDocuments = v.InferOutput<typeof SQueryListMediumDocuments>;
|
|
1644
1692
|
declare const SCreateMediumDocument: v.ObjectSchema<{
|
|
@@ -1730,6 +1778,10 @@ declare const SQueryListSourceDocuments: v.ObjectSchema<{
|
|
|
1730
1778
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1731
1779
|
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1732
1780
|
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1781
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1782
|
+
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1783
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
1784
|
+
}, undefined>, undefined>;
|
|
1733
1785
|
}, undefined>;
|
|
1734
1786
|
type SQueryListSourceDocuments = v.InferOutput<typeof SQueryListSourceDocuments>;
|
|
1735
1787
|
declare const SCreateSourceDocument: v.ObjectSchema<{
|
|
@@ -1821,6 +1873,10 @@ declare const SQueryListTermDocuments: v.ObjectSchema<{
|
|
|
1821
1873
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1822
1874
|
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1823
1875
|
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1876
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1877
|
+
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1878
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
1879
|
+
}, undefined>, undefined>;
|
|
1824
1880
|
}, undefined>;
|
|
1825
1881
|
type SQueryListTermDocuments = v.InferOutput<typeof SQueryListTermDocuments>;
|
|
1826
1882
|
declare const SCreateTermDocument: v.ObjectSchema<{
|
|
@@ -1912,6 +1968,10 @@ declare const SQueryListWebsiteDocuments: v.ObjectSchema<{
|
|
|
1912
1968
|
readonly is_secure: v.OptionalSchema<v.BooleanSchema<"isSecure must be a boolean">, undefined>;
|
|
1913
1969
|
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1914
1970
|
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1971
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1972
|
+
readonly key: v.PicklistSchema<["id", "domain", "is_active", "is_secure", "createdAt", "updatedAt"], undefined>;
|
|
1973
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
1974
|
+
}, undefined>, undefined>;
|
|
1915
1975
|
}, undefined>;
|
|
1916
1976
|
type SQueryListWebsiteDocuments = v.InferOutput<typeof SQueryListWebsiteDocuments>;
|
|
1917
1977
|
declare const SCreateWebsiteDocument: v.ObjectSchema<{
|
package/dist/index.d.ts
CHANGED
|
@@ -196,6 +196,10 @@ declare const SQueryListGroupDocuments: v.ObjectSchema<{
|
|
|
196
196
|
readonly apply_value_to: v.OptionalSchema<v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>, undefined>;
|
|
197
197
|
readonly apply_value_as: v.OptionalSchema<v.PicklistSchema<readonly ["prefix", "suffix"], undefined>, undefined>;
|
|
198
198
|
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
199
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
200
|
+
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "apply_value_to", "apply_value_as", "createdAt", "updatedAt"], undefined>;
|
|
201
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
202
|
+
}, undefined>, undefined>;
|
|
199
203
|
}, undefined>;
|
|
200
204
|
type SQueryListGroupDocuments = v.InferOutput<typeof SQueryListGroupDocuments>;
|
|
201
205
|
declare const SCreateGroupDocument: v.ObjectSchema<{
|
|
@@ -541,6 +545,10 @@ declare const SQueryListTrackingLinkDocuments: v.ObjectSchema<{
|
|
|
541
545
|
readonly utm_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_id is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2030, "the utm_id is too long, it must be 2030 characters or less">, v.RegexAction<string, "utm_id can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
542
546
|
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
543
547
|
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
548
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
549
|
+
readonly key: v.PicklistSchema<["id", "destination", "is_active", "protocol", "domain", "path", "query", "fragment", "utm_source", "utm_medium", "utm_campaign", "utm_creative_format", "utm_content", "utm_term", "utm_id", "createdAt", "updatedAt"], undefined>;
|
|
550
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
551
|
+
}, undefined>, undefined>;
|
|
544
552
|
}, undefined>;
|
|
545
553
|
type SQueryListTrackingLinkDocuments = v.InferOutput<typeof SQueryListTrackingLinkDocuments>;
|
|
546
554
|
declare const SCreateTrackingLinkDocument: v.ObjectSchema<{
|
|
@@ -876,6 +884,10 @@ declare const SQueryListUserDocuments: v.ObjectSchema<{
|
|
|
876
884
|
readonly username: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a username">, v.TrimAction, v.MinLengthAction<string, 3, "your username is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 255, "your username is too long, it must be 255 characters or less">, v.RegexAction<string, "your username can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
877
885
|
readonly confirmed: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
878
886
|
readonly blocked: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
887
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
888
|
+
readonly key: v.PicklistSchema<["id", "email", "username", "confirmed", "blocked", "createdAt", "updatedAt"], undefined>;
|
|
889
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
890
|
+
}, undefined>, undefined>;
|
|
879
891
|
}, undefined>;
|
|
880
892
|
type SQueryListUserDocuments = v.InferOutput<typeof SQueryListUserDocuments>;
|
|
881
893
|
declare const SQueryListUserDocumentsByIdentifier: v.ObjectSchema<{
|
|
@@ -905,6 +917,10 @@ declare const SQueryListCampaignIdDocuments: v.ObjectSchema<{
|
|
|
905
917
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
906
918
|
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
907
919
|
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
920
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
921
|
+
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
922
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
923
|
+
}, undefined>, undefined>;
|
|
908
924
|
}, undefined>;
|
|
909
925
|
type SQueryListCampaignIdDocuments = v.InferOutput<typeof SQueryListCampaignIdDocuments>;
|
|
910
926
|
declare const SCreateCampaignIdDocument: v.ObjectSchema<{
|
|
@@ -1002,6 +1018,10 @@ declare const SQueryListCampaignKeyDocuments: v.ObjectSchema<{
|
|
|
1002
1018
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1003
1019
|
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1004
1020
|
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1021
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1022
|
+
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1023
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
1024
|
+
}, undefined>, undefined>;
|
|
1005
1025
|
}, undefined>;
|
|
1006
1026
|
type SQueryListCampaignKeyDocuments = v.InferOutput<typeof SQueryListCampaignKeyDocuments>;
|
|
1007
1027
|
declare const SCreateCampaignKeyDocument: v.ObjectSchema<{
|
|
@@ -1093,6 +1113,10 @@ declare const SQueryListCampaignPhaseDocuments: v.ObjectSchema<{
|
|
|
1093
1113
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1094
1114
|
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1095
1115
|
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1116
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1117
|
+
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1118
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
1119
|
+
}, undefined>, undefined>;
|
|
1096
1120
|
}, undefined>;
|
|
1097
1121
|
type SQueryListCampaignPhaseDocuments = v.InferOutput<typeof SQueryListCampaignPhaseDocuments>;
|
|
1098
1122
|
declare const SCreateCampaignPhaseDocument: v.ObjectSchema<{
|
|
@@ -1184,6 +1208,10 @@ declare const SQueryListCampaignProductDocuments: v.ObjectSchema<{
|
|
|
1184
1208
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1185
1209
|
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1186
1210
|
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1211
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1212
|
+
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1213
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
1214
|
+
}, undefined>, undefined>;
|
|
1187
1215
|
}, undefined>;
|
|
1188
1216
|
type SQueryListCampaignProductDocuments = v.InferOutput<typeof SQueryListCampaignProductDocuments>;
|
|
1189
1217
|
declare const SCreateCampaignProductDocument: v.ObjectSchema<{
|
|
@@ -1275,6 +1303,10 @@ declare const SQueryListCampaignTargetDocuments: v.ObjectSchema<{
|
|
|
1275
1303
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1276
1304
|
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1277
1305
|
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1306
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1307
|
+
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1308
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
1309
|
+
}, undefined>, undefined>;
|
|
1278
1310
|
}, undefined>;
|
|
1279
1311
|
type SQueryListCampaignTargetDocuments = v.InferOutput<typeof SQueryListCampaignTargetDocuments>;
|
|
1280
1312
|
declare const SCreateCampaignTargetDocument: v.ObjectSchema<{
|
|
@@ -1366,6 +1398,10 @@ declare const SQueryListContentDocuments: v.ObjectSchema<{
|
|
|
1366
1398
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1367
1399
|
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1368
1400
|
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1401
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1402
|
+
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1403
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
1404
|
+
}, undefined>, undefined>;
|
|
1369
1405
|
}, undefined>;
|
|
1370
1406
|
type SQueryListContentDocuments = v.InferOutput<typeof SQueryListContentDocuments>;
|
|
1371
1407
|
declare const SCreateContentDocument: v.ObjectSchema<{
|
|
@@ -1457,6 +1493,10 @@ declare const SQueryListCreativeFormatVariantDocuments: v.ObjectSchema<{
|
|
|
1457
1493
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1458
1494
|
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1459
1495
|
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1496
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1497
|
+
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1498
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
1499
|
+
}, undefined>, undefined>;
|
|
1460
1500
|
}, undefined>;
|
|
1461
1501
|
type SQueryListCreativeFormatVariantDocuments = v.InferOutput<typeof SQueryListCreativeFormatVariantDocuments>;
|
|
1462
1502
|
declare const SCreateCreativeFormatVariantDocument: v.ObjectSchema<{
|
|
@@ -1548,6 +1588,10 @@ declare const SQueryListCreativeFormatDocuments: v.ObjectSchema<{
|
|
|
1548
1588
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1549
1589
|
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1550
1590
|
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1591
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1592
|
+
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1593
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
1594
|
+
}, undefined>, undefined>;
|
|
1551
1595
|
}, undefined>;
|
|
1552
1596
|
type SQueryListCreativeFormatDocuments = v.InferOutput<typeof SQueryListCreativeFormatDocuments>;
|
|
1553
1597
|
declare const SCreateCreativeFormatDocument: v.ObjectSchema<{
|
|
@@ -1639,6 +1683,10 @@ declare const SQueryListMediumDocuments: v.ObjectSchema<{
|
|
|
1639
1683
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1640
1684
|
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1641
1685
|
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1686
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1687
|
+
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1688
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
1689
|
+
}, undefined>, undefined>;
|
|
1642
1690
|
}, undefined>;
|
|
1643
1691
|
type SQueryListMediumDocuments = v.InferOutput<typeof SQueryListMediumDocuments>;
|
|
1644
1692
|
declare const SCreateMediumDocument: v.ObjectSchema<{
|
|
@@ -1730,6 +1778,10 @@ declare const SQueryListSourceDocuments: v.ObjectSchema<{
|
|
|
1730
1778
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1731
1779
|
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1732
1780
|
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1781
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1782
|
+
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1783
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
1784
|
+
}, undefined>, undefined>;
|
|
1733
1785
|
}, undefined>;
|
|
1734
1786
|
type SQueryListSourceDocuments = v.InferOutput<typeof SQueryListSourceDocuments>;
|
|
1735
1787
|
declare const SCreateSourceDocument: v.ObjectSchema<{
|
|
@@ -1821,6 +1873,10 @@ declare const SQueryListTermDocuments: v.ObjectSchema<{
|
|
|
1821
1873
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1822
1874
|
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1823
1875
|
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1876
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1877
|
+
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1878
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
1879
|
+
}, undefined>, undefined>;
|
|
1824
1880
|
}, undefined>;
|
|
1825
1881
|
type SQueryListTermDocuments = v.InferOutput<typeof SQueryListTermDocuments>;
|
|
1826
1882
|
declare const SCreateTermDocument: v.ObjectSchema<{
|
|
@@ -1912,6 +1968,10 @@ declare const SQueryListWebsiteDocuments: v.ObjectSchema<{
|
|
|
1912
1968
|
readonly is_secure: v.OptionalSchema<v.BooleanSchema<"isSecure must be a boolean">, undefined>;
|
|
1913
1969
|
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1914
1970
|
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1971
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1972
|
+
readonly key: v.PicklistSchema<["id", "domain", "is_active", "is_secure", "createdAt", "updatedAt"], undefined>;
|
|
1973
|
+
readonly order: v.PicklistSchema<["asc", "desc"], undefined>;
|
|
1974
|
+
}, undefined>, undefined>;
|
|
1915
1975
|
}, undefined>;
|
|
1916
1976
|
type SQueryListWebsiteDocuments = v.InferOutput<typeof SQueryListWebsiteDocuments>;
|
|
1917
1977
|
declare const SCreateWebsiteDocument: v.ObjectSchema<{
|
package/dist/index.js
CHANGED
|
@@ -670,7 +670,22 @@ var SQueryListGroupDocuments = v12.object({
|
|
|
670
670
|
is_active: v12.optional(IsValidIsActive),
|
|
671
671
|
apply_value_to: v12.optional(IsValidApplyValueTo),
|
|
672
672
|
apply_value_as: v12.optional(IsValidApplyValueAs),
|
|
673
|
-
creator: v12.optional(IsValidReferenceDocumentId)
|
|
673
|
+
creator: v12.optional(IsValidReferenceDocumentId),
|
|
674
|
+
sort: v12.optional(
|
|
675
|
+
v12.object({
|
|
676
|
+
key: v12.picklist([
|
|
677
|
+
"id",
|
|
678
|
+
"label",
|
|
679
|
+
"value",
|
|
680
|
+
"is_active",
|
|
681
|
+
"apply_value_to",
|
|
682
|
+
"apply_value_as",
|
|
683
|
+
"createdAt",
|
|
684
|
+
"updatedAt"
|
|
685
|
+
]),
|
|
686
|
+
order: v12.picklist(["asc", "desc"])
|
|
687
|
+
})
|
|
688
|
+
)
|
|
674
689
|
});
|
|
675
690
|
var SCreateGroupDocument = v12.object({
|
|
676
691
|
label: IsValidLabel,
|
|
@@ -864,7 +879,31 @@ var SQueryListTrackingLinkDocuments = v12.object({
|
|
|
864
879
|
utm_term: v12.optional(IsValidUrlUtmTerm),
|
|
865
880
|
utm_id: v12.optional(IsValidUrlUtmId),
|
|
866
881
|
group: v12.optional(IsValidReferenceDocumentId),
|
|
867
|
-
creator: v12.optional(IsValidReferenceDocumentId)
|
|
882
|
+
creator: v12.optional(IsValidReferenceDocumentId),
|
|
883
|
+
sort: v12.optional(
|
|
884
|
+
v12.object({
|
|
885
|
+
key: v12.picklist([
|
|
886
|
+
"id",
|
|
887
|
+
"destination",
|
|
888
|
+
"is_active",
|
|
889
|
+
"protocol",
|
|
890
|
+
"domain",
|
|
891
|
+
"path",
|
|
892
|
+
"query",
|
|
893
|
+
"fragment",
|
|
894
|
+
"utm_source",
|
|
895
|
+
"utm_medium",
|
|
896
|
+
"utm_campaign",
|
|
897
|
+
"utm_creative_format",
|
|
898
|
+
"utm_content",
|
|
899
|
+
"utm_term",
|
|
900
|
+
"utm_id",
|
|
901
|
+
"createdAt",
|
|
902
|
+
"updatedAt"
|
|
903
|
+
]),
|
|
904
|
+
order: v12.picklist(["asc", "desc"])
|
|
905
|
+
})
|
|
906
|
+
)
|
|
868
907
|
});
|
|
869
908
|
var SCreateTrackingLinkDocument = v12.object({
|
|
870
909
|
group: IsValidReferenceDocumentId,
|
|
@@ -1070,7 +1109,21 @@ var SQueryListUserDocuments = v12.object({
|
|
|
1070
1109
|
email: v12.optional(IsValidEmail),
|
|
1071
1110
|
username: v12.optional(IsValidUsername),
|
|
1072
1111
|
confirmed: v12.optional(IsValidIsActive),
|
|
1073
|
-
blocked: v12.optional(IsValidIsActive)
|
|
1112
|
+
blocked: v12.optional(IsValidIsActive),
|
|
1113
|
+
sort: v12.optional(
|
|
1114
|
+
v12.object({
|
|
1115
|
+
key: v12.picklist([
|
|
1116
|
+
"id",
|
|
1117
|
+
"email",
|
|
1118
|
+
"username",
|
|
1119
|
+
"confirmed",
|
|
1120
|
+
"blocked",
|
|
1121
|
+
"createdAt",
|
|
1122
|
+
"updatedAt"
|
|
1123
|
+
]),
|
|
1124
|
+
order: v12.picklist(["asc", "desc"])
|
|
1125
|
+
})
|
|
1126
|
+
)
|
|
1074
1127
|
});
|
|
1075
1128
|
var SQueryListUserDocumentsByIdentifier = v12.object({
|
|
1076
1129
|
identifier: v12.pipe(v12.string(), v12.maxLength(255)),
|
|
@@ -1114,7 +1167,13 @@ var SQueryListCampaignIdDocuments = v12.object({
|
|
|
1114
1167
|
value: v12.optional(IsValidValue),
|
|
1115
1168
|
is_active: v12.optional(IsValidIsActive),
|
|
1116
1169
|
group: v12.optional(IsValidReferenceDocumentId),
|
|
1117
|
-
creator: v12.optional(IsValidReferenceDocumentId)
|
|
1170
|
+
creator: v12.optional(IsValidReferenceDocumentId),
|
|
1171
|
+
sort: v12.optional(
|
|
1172
|
+
v12.object({
|
|
1173
|
+
key: v12.picklist(["id", "label", "value", "is_active", "createdAt", "updatedAt"]),
|
|
1174
|
+
order: v12.picklist(["asc", "desc"])
|
|
1175
|
+
})
|
|
1176
|
+
)
|
|
1118
1177
|
});
|
|
1119
1178
|
var SCreateCampaignIdDocument = v12.object({
|
|
1120
1179
|
group: IsValidReferenceDocumentId,
|
|
@@ -1181,7 +1240,13 @@ var SQueryListCampaignKeyDocuments = v12.object({
|
|
|
1181
1240
|
value: v12.optional(IsValidValue),
|
|
1182
1241
|
is_active: v12.optional(IsValidIsActive),
|
|
1183
1242
|
group: v12.optional(IsValidReferenceDocumentId),
|
|
1184
|
-
creator: v12.optional(IsValidReferenceDocumentId)
|
|
1243
|
+
creator: v12.optional(IsValidReferenceDocumentId),
|
|
1244
|
+
sort: v12.optional(
|
|
1245
|
+
v12.object({
|
|
1246
|
+
key: v12.picklist(["id", "label", "value", "is_active", "createdAt", "updatedAt"]),
|
|
1247
|
+
order: v12.picklist(["asc", "desc"])
|
|
1248
|
+
})
|
|
1249
|
+
)
|
|
1185
1250
|
});
|
|
1186
1251
|
var SCreateCampaignKeyDocument = v12.object({
|
|
1187
1252
|
group: IsValidReferenceDocumentId,
|
|
@@ -1246,7 +1311,13 @@ var SQueryListCampaignPhaseDocuments = v12.object({
|
|
|
1246
1311
|
value: v12.optional(IsValidValue),
|
|
1247
1312
|
is_active: v12.optional(IsValidIsActive),
|
|
1248
1313
|
group: v12.optional(IsValidReferenceDocumentId),
|
|
1249
|
-
creator: v12.optional(IsValidReferenceDocumentId)
|
|
1314
|
+
creator: v12.optional(IsValidReferenceDocumentId),
|
|
1315
|
+
sort: v12.optional(
|
|
1316
|
+
v12.object({
|
|
1317
|
+
key: v12.picklist(["id", "label", "value", "is_active", "createdAt", "updatedAt"]),
|
|
1318
|
+
order: v12.picklist(["asc", "desc"])
|
|
1319
|
+
})
|
|
1320
|
+
)
|
|
1250
1321
|
});
|
|
1251
1322
|
var SCreateCampaignPhaseDocument = v12.object({
|
|
1252
1323
|
group: IsValidReferenceDocumentId,
|
|
@@ -1311,7 +1382,13 @@ var SQueryListCampaignProductDocuments = v12.object({
|
|
|
1311
1382
|
value: v12.optional(IsValidValue),
|
|
1312
1383
|
is_active: v12.optional(IsValidIsActive),
|
|
1313
1384
|
group: v12.optional(IsValidReferenceDocumentId),
|
|
1314
|
-
creator: v12.optional(IsValidReferenceDocumentId)
|
|
1385
|
+
creator: v12.optional(IsValidReferenceDocumentId),
|
|
1386
|
+
sort: v12.optional(
|
|
1387
|
+
v12.object({
|
|
1388
|
+
key: v12.picklist(["id", "label", "value", "is_active", "createdAt", "updatedAt"]),
|
|
1389
|
+
order: v12.picklist(["asc", "desc"])
|
|
1390
|
+
})
|
|
1391
|
+
)
|
|
1315
1392
|
});
|
|
1316
1393
|
var SCreateCampaignProductDocument = v12.object({
|
|
1317
1394
|
group: IsValidReferenceDocumentId,
|
|
@@ -1376,7 +1453,13 @@ var SQueryListCampaignTargetDocuments = v12.object({
|
|
|
1376
1453
|
value: v12.optional(IsValidValue),
|
|
1377
1454
|
is_active: v12.optional(IsValidIsActive),
|
|
1378
1455
|
group: v12.optional(IsValidReferenceDocumentId),
|
|
1379
|
-
creator: v12.optional(IsValidReferenceDocumentId)
|
|
1456
|
+
creator: v12.optional(IsValidReferenceDocumentId),
|
|
1457
|
+
sort: v12.optional(
|
|
1458
|
+
v12.object({
|
|
1459
|
+
key: v12.picklist(["id", "label", "value", "is_active", "createdAt", "updatedAt"]),
|
|
1460
|
+
order: v12.picklist(["asc", "desc"])
|
|
1461
|
+
})
|
|
1462
|
+
)
|
|
1380
1463
|
});
|
|
1381
1464
|
var SCreateCampaignTargetDocument = v12.object({
|
|
1382
1465
|
group: IsValidReferenceDocumentId,
|
|
@@ -1441,7 +1524,13 @@ var SQueryListContentDocuments = v12.object({
|
|
|
1441
1524
|
value: v12.optional(IsValidValue),
|
|
1442
1525
|
is_active: v12.optional(IsValidIsActive),
|
|
1443
1526
|
group: v12.optional(IsValidReferenceDocumentId),
|
|
1444
|
-
creator: v12.optional(IsValidReferenceDocumentId)
|
|
1527
|
+
creator: v12.optional(IsValidReferenceDocumentId),
|
|
1528
|
+
sort: v12.optional(
|
|
1529
|
+
v12.object({
|
|
1530
|
+
key: v12.picklist(["id", "label", "value", "is_active", "createdAt", "updatedAt"]),
|
|
1531
|
+
order: v12.picklist(["asc", "desc"])
|
|
1532
|
+
})
|
|
1533
|
+
)
|
|
1445
1534
|
});
|
|
1446
1535
|
var SCreateContentDocument = v12.object({
|
|
1447
1536
|
group: IsValidReferenceDocumentId,
|
|
@@ -1506,7 +1595,13 @@ var SQueryListCreativeFormatVariantDocuments = v12.object({
|
|
|
1506
1595
|
value: v12.optional(IsValidValue),
|
|
1507
1596
|
is_active: v12.optional(IsValidIsActive),
|
|
1508
1597
|
group: v12.optional(IsValidReferenceDocumentId),
|
|
1509
|
-
creator: v12.optional(IsValidReferenceDocumentId)
|
|
1598
|
+
creator: v12.optional(IsValidReferenceDocumentId),
|
|
1599
|
+
sort: v12.optional(
|
|
1600
|
+
v12.object({
|
|
1601
|
+
key: v12.picklist(["id", "label", "value", "is_active", "createdAt", "updatedAt"]),
|
|
1602
|
+
order: v12.picklist(["asc", "desc"])
|
|
1603
|
+
})
|
|
1604
|
+
)
|
|
1510
1605
|
});
|
|
1511
1606
|
var SCreateCreativeFormatVariantDocument = v12.object({
|
|
1512
1607
|
group: IsValidReferenceDocumentId,
|
|
@@ -1571,7 +1666,13 @@ var SQueryListCreativeFormatDocuments = v12.object({
|
|
|
1571
1666
|
value: v12.optional(IsValidValue),
|
|
1572
1667
|
is_active: v12.optional(IsValidIsActive),
|
|
1573
1668
|
group: v12.optional(IsValidReferenceDocumentId),
|
|
1574
|
-
creator: v12.optional(IsValidReferenceDocumentId)
|
|
1669
|
+
creator: v12.optional(IsValidReferenceDocumentId),
|
|
1670
|
+
sort: v12.optional(
|
|
1671
|
+
v12.object({
|
|
1672
|
+
key: v12.picklist(["id", "label", "value", "is_active", "createdAt", "updatedAt"]),
|
|
1673
|
+
order: v12.picklist(["asc", "desc"])
|
|
1674
|
+
})
|
|
1675
|
+
)
|
|
1575
1676
|
});
|
|
1576
1677
|
var SCreateCreativeFormatDocument = v12.object({
|
|
1577
1678
|
group: IsValidReferenceDocumentId,
|
|
@@ -1636,7 +1737,13 @@ var SQueryListMediumDocuments = v12.object({
|
|
|
1636
1737
|
value: v12.optional(IsValidValue),
|
|
1637
1738
|
is_active: v12.optional(IsValidIsActive),
|
|
1638
1739
|
group: v12.optional(IsValidReferenceDocumentId),
|
|
1639
|
-
creator: v12.optional(IsValidReferenceDocumentId)
|
|
1740
|
+
creator: v12.optional(IsValidReferenceDocumentId),
|
|
1741
|
+
sort: v12.optional(
|
|
1742
|
+
v12.object({
|
|
1743
|
+
key: v12.picklist(["id", "label", "value", "is_active", "createdAt", "updatedAt"]),
|
|
1744
|
+
order: v12.picklist(["asc", "desc"])
|
|
1745
|
+
})
|
|
1746
|
+
)
|
|
1640
1747
|
});
|
|
1641
1748
|
var SCreateMediumDocument = v12.object({
|
|
1642
1749
|
group: IsValidReferenceDocumentId,
|
|
@@ -1701,7 +1808,13 @@ var SQueryListSourceDocuments = v12.object({
|
|
|
1701
1808
|
value: v12.optional(IsValidValue),
|
|
1702
1809
|
is_active: v12.optional(IsValidIsActive),
|
|
1703
1810
|
group: v12.optional(IsValidReferenceDocumentId),
|
|
1704
|
-
creator: v12.optional(IsValidReferenceDocumentId)
|
|
1811
|
+
creator: v12.optional(IsValidReferenceDocumentId),
|
|
1812
|
+
sort: v12.optional(
|
|
1813
|
+
v12.object({
|
|
1814
|
+
key: v12.picklist(["id", "label", "value", "is_active", "createdAt", "updatedAt"]),
|
|
1815
|
+
order: v12.picklist(["asc", "desc"])
|
|
1816
|
+
})
|
|
1817
|
+
)
|
|
1705
1818
|
});
|
|
1706
1819
|
var SCreateSourceDocument = v12.object({
|
|
1707
1820
|
group: IsValidReferenceDocumentId,
|
|
@@ -1766,7 +1879,13 @@ var SQueryListTermDocuments = v12.object({
|
|
|
1766
1879
|
value: v12.optional(IsValidValue),
|
|
1767
1880
|
is_active: v12.optional(IsValidIsActive),
|
|
1768
1881
|
group: v12.optional(IsValidReferenceDocumentId),
|
|
1769
|
-
creator: v12.optional(IsValidReferenceDocumentId)
|
|
1882
|
+
creator: v12.optional(IsValidReferenceDocumentId),
|
|
1883
|
+
sort: v12.optional(
|
|
1884
|
+
v12.object({
|
|
1885
|
+
key: v12.picklist(["id", "label", "value", "is_active", "createdAt", "updatedAt"]),
|
|
1886
|
+
order: v12.picklist(["asc", "desc"])
|
|
1887
|
+
})
|
|
1888
|
+
)
|
|
1770
1889
|
});
|
|
1771
1890
|
var SCreateTermDocument = v12.object({
|
|
1772
1891
|
group: IsValidReferenceDocumentId,
|
|
@@ -1831,7 +1950,20 @@ var SQueryListWebsiteDocuments = v12.object({
|
|
|
1831
1950
|
is_active: v12.optional(IsValidIsActive),
|
|
1832
1951
|
is_secure: v12.optional(IsValidIsSecure),
|
|
1833
1952
|
group: v12.optional(IsValidReferenceDocumentId),
|
|
1834
|
-
creator: v12.optional(IsValidReferenceDocumentId)
|
|
1953
|
+
creator: v12.optional(IsValidReferenceDocumentId),
|
|
1954
|
+
sort: v12.optional(
|
|
1955
|
+
v12.object({
|
|
1956
|
+
key: v12.picklist([
|
|
1957
|
+
"id",
|
|
1958
|
+
"domain",
|
|
1959
|
+
"is_active",
|
|
1960
|
+
"is_secure",
|
|
1961
|
+
"createdAt",
|
|
1962
|
+
"updatedAt"
|
|
1963
|
+
]),
|
|
1964
|
+
order: v12.picklist(["asc", "desc"])
|
|
1965
|
+
})
|
|
1966
|
+
)
|
|
1835
1967
|
});
|
|
1836
1968
|
var SCreateWebsiteDocument = v12.object({
|
|
1837
1969
|
group: IsValidReferenceDocumentId,
|