@joeygrable94/utm-src-pub-validators 0.0.55 → 0.0.57
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 +23 -22
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +277 -320
- package/dist/index.d.ts +277 -320
- package/dist/index.js +23 -22
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -56,6 +56,7 @@ declare const GROUP_ENTITY_PERMISSIONS: {
|
|
|
56
56
|
readonly "campaign-id": readonly ["list", "create", "read", "update", "delete", "export", "import"];
|
|
57
57
|
readonly "campaign-phase": readonly ["list", "create", "read", "update", "delete", "export", "import"];
|
|
58
58
|
readonly "campaign-product": readonly ["list", "create", "read", "update", "delete", "export", "import"];
|
|
59
|
+
readonly "campaign-target": readonly ["list", "create", "read", "update", "delete", "export", "import"];
|
|
59
60
|
readonly "campaign-key": readonly ["list", "create", "read", "update", "delete", "export", "import"];
|
|
60
61
|
readonly content: readonly ["list", "create", "read", "update", "delete", "export", "import"];
|
|
61
62
|
readonly "creative-format": readonly ["list", "create", "read", "update", "delete", "export", "import"];
|
|
@@ -4706,40 +4707,36 @@ declare const SUserAuthorizationSuccessResponse: v.ObjectSchema<{
|
|
|
4706
4707
|
type SUserAuthorizationSuccessResponse = v.InferOutput<typeof SUserAuthorizationSuccessResponse>;
|
|
4707
4708
|
|
|
4708
4709
|
declare const SCampaignIdDocumentWithRelations: v.ObjectSchema<{
|
|
4709
|
-
readonly
|
|
4710
|
-
readonly cost: v.SchemaWithPipe<readonly [v.NumberSchema<"please enter a cost value">, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1000000, "your campaign cost exceeds our $1 million dollar limit, please contact us for enterprise solutions">]>;
|
|
4710
|
+
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
4711
4711
|
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
4712
4712
|
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
4713
4713
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4714
4714
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4715
|
-
|
|
4716
|
-
|
|
4717
|
-
readonly
|
|
4718
|
-
|
|
4719
|
-
|
|
4720
|
-
|
|
4721
|
-
|
|
4722
|
-
|
|
4723
|
-
|
|
4724
|
-
|
|
4725
|
-
|
|
4726
|
-
|
|
4727
|
-
|
|
4728
|
-
|
|
4729
|
-
|
|
4730
|
-
readonly
|
|
4731
|
-
|
|
4732
|
-
|
|
4733
|
-
|
|
4734
|
-
|
|
4735
|
-
|
|
4736
|
-
|
|
4737
|
-
|
|
4738
|
-
|
|
4739
|
-
|
|
4740
|
-
readonly updatedAt: v.StringSchema<undefined>;
|
|
4741
|
-
}, undefined>, undefined>;
|
|
4742
|
-
}, undefined>;
|
|
4715
|
+
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
4716
|
+
readonly apply_value_as: v.PicklistSchema<readonly ["prefix", "suffix"], undefined>;
|
|
4717
|
+
readonly id: v.NumberSchema<undefined>;
|
|
4718
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
4719
|
+
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4720
|
+
readonly createdAt: v.StringSchema<undefined>;
|
|
4721
|
+
readonly updatedAt: v.StringSchema<undefined>;
|
|
4722
|
+
}, undefined>, undefined>;
|
|
4723
|
+
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
4724
|
+
readonly username: 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: - _ .">]>;
|
|
4725
|
+
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 5, "your email is too short, it must be at least 5 characters">, v.MaxLengthAction<string, 255, "your email is too long, it must be 255 characters or less">, v.EmailAction<string, "please provide a valid email address">]>;
|
|
4726
|
+
readonly confirmed: v.BooleanSchema<undefined>;
|
|
4727
|
+
readonly blocked: v.BooleanSchema<undefined>;
|
|
4728
|
+
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
4729
|
+
readonly id: v.NumberSchema<undefined>;
|
|
4730
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
4731
|
+
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4732
|
+
readonly createdAt: v.StringSchema<undefined>;
|
|
4733
|
+
readonly updatedAt: v.StringSchema<undefined>;
|
|
4734
|
+
}, undefined>, undefined>;
|
|
4735
|
+
readonly cost: v.SchemaWithPipe<readonly [v.NumberSchema<"please enter a cost value">, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1000000, "your campaign cost exceeds our $1 million dollar limit, please contact us for enterprise solutions">]>;
|
|
4736
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
4737
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
4738
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4739
|
+
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4743
4740
|
readonly id: v.NumberSchema<undefined>;
|
|
4744
4741
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
4745
4742
|
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -4748,39 +4745,35 @@ declare const SCampaignIdDocumentWithRelations: v.ObjectSchema<{
|
|
|
4748
4745
|
}, undefined>;
|
|
4749
4746
|
type SCampaignIdDocumentWithRelations = v.InferOutput<typeof SCampaignIdDocumentWithRelations>;
|
|
4750
4747
|
declare const SCampaignPhaseDocumentWithRelations: v.ObjectSchema<{
|
|
4751
|
-
readonly
|
|
4748
|
+
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
4752
4749
|
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
4753
4750
|
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
4754
4751
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4755
4752
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4756
|
-
|
|
4757
|
-
|
|
4758
|
-
readonly
|
|
4759
|
-
|
|
4760
|
-
|
|
4761
|
-
|
|
4762
|
-
|
|
4763
|
-
|
|
4764
|
-
|
|
4765
|
-
|
|
4766
|
-
|
|
4767
|
-
|
|
4768
|
-
|
|
4769
|
-
|
|
4770
|
-
|
|
4771
|
-
readonly
|
|
4772
|
-
|
|
4773
|
-
|
|
4774
|
-
|
|
4775
|
-
|
|
4776
|
-
|
|
4777
|
-
|
|
4778
|
-
|
|
4779
|
-
|
|
4780
|
-
readonly createdAt: v.StringSchema<undefined>;
|
|
4781
|
-
readonly updatedAt: v.StringSchema<undefined>;
|
|
4782
|
-
}, undefined>, undefined>;
|
|
4783
|
-
}, undefined>;
|
|
4753
|
+
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
4754
|
+
readonly apply_value_as: v.PicklistSchema<readonly ["prefix", "suffix"], undefined>;
|
|
4755
|
+
readonly id: v.NumberSchema<undefined>;
|
|
4756
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
4757
|
+
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4758
|
+
readonly createdAt: v.StringSchema<undefined>;
|
|
4759
|
+
readonly updatedAt: v.StringSchema<undefined>;
|
|
4760
|
+
}, undefined>, undefined>;
|
|
4761
|
+
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
4762
|
+
readonly username: 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: - _ .">]>;
|
|
4763
|
+
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 5, "your email is too short, it must be at least 5 characters">, v.MaxLengthAction<string, 255, "your email is too long, it must be 255 characters or less">, v.EmailAction<string, "please provide a valid email address">]>;
|
|
4764
|
+
readonly confirmed: v.BooleanSchema<undefined>;
|
|
4765
|
+
readonly blocked: v.BooleanSchema<undefined>;
|
|
4766
|
+
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
4767
|
+
readonly id: v.NumberSchema<undefined>;
|
|
4768
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
4769
|
+
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4770
|
+
readonly createdAt: v.StringSchema<undefined>;
|
|
4771
|
+
readonly updatedAt: v.StringSchema<undefined>;
|
|
4772
|
+
}, undefined>, undefined>;
|
|
4773
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
4774
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
4775
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4776
|
+
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4784
4777
|
readonly id: v.NumberSchema<undefined>;
|
|
4785
4778
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
4786
4779
|
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -4789,39 +4782,35 @@ declare const SCampaignPhaseDocumentWithRelations: v.ObjectSchema<{
|
|
|
4789
4782
|
}, undefined>;
|
|
4790
4783
|
type SCampaignPhaseDocumentWithRelations = v.InferOutput<typeof SCampaignPhaseDocumentWithRelations>;
|
|
4791
4784
|
declare const SCampaignProductDocumentWithRelations: v.ObjectSchema<{
|
|
4792
|
-
readonly
|
|
4785
|
+
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
4793
4786
|
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
4794
4787
|
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
4795
4788
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4796
4789
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4797
|
-
|
|
4798
|
-
|
|
4799
|
-
readonly
|
|
4800
|
-
|
|
4801
|
-
|
|
4802
|
-
|
|
4803
|
-
|
|
4804
|
-
|
|
4805
|
-
|
|
4806
|
-
|
|
4807
|
-
|
|
4808
|
-
|
|
4809
|
-
|
|
4810
|
-
|
|
4811
|
-
|
|
4812
|
-
readonly
|
|
4813
|
-
|
|
4814
|
-
|
|
4815
|
-
|
|
4816
|
-
|
|
4817
|
-
|
|
4818
|
-
|
|
4819
|
-
|
|
4820
|
-
|
|
4821
|
-
readonly createdAt: v.StringSchema<undefined>;
|
|
4822
|
-
readonly updatedAt: v.StringSchema<undefined>;
|
|
4823
|
-
}, undefined>, undefined>;
|
|
4824
|
-
}, undefined>;
|
|
4790
|
+
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
4791
|
+
readonly apply_value_as: v.PicklistSchema<readonly ["prefix", "suffix"], undefined>;
|
|
4792
|
+
readonly id: v.NumberSchema<undefined>;
|
|
4793
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
4794
|
+
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4795
|
+
readonly createdAt: v.StringSchema<undefined>;
|
|
4796
|
+
readonly updatedAt: v.StringSchema<undefined>;
|
|
4797
|
+
}, undefined>, undefined>;
|
|
4798
|
+
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
4799
|
+
readonly username: 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: - _ .">]>;
|
|
4800
|
+
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 5, "your email is too short, it must be at least 5 characters">, v.MaxLengthAction<string, 255, "your email is too long, it must be 255 characters or less">, v.EmailAction<string, "please provide a valid email address">]>;
|
|
4801
|
+
readonly confirmed: v.BooleanSchema<undefined>;
|
|
4802
|
+
readonly blocked: v.BooleanSchema<undefined>;
|
|
4803
|
+
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
4804
|
+
readonly id: v.NumberSchema<undefined>;
|
|
4805
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
4806
|
+
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4807
|
+
readonly createdAt: v.StringSchema<undefined>;
|
|
4808
|
+
readonly updatedAt: v.StringSchema<undefined>;
|
|
4809
|
+
}, undefined>, undefined>;
|
|
4810
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
4811
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
4812
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4813
|
+
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4825
4814
|
readonly id: v.NumberSchema<undefined>;
|
|
4826
4815
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
4827
4816
|
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -4830,39 +4819,35 @@ declare const SCampaignProductDocumentWithRelations: v.ObjectSchema<{
|
|
|
4830
4819
|
}, undefined>;
|
|
4831
4820
|
type SCampaignProductDocumentWithRelations = v.InferOutput<typeof SCampaignProductDocumentWithRelations>;
|
|
4832
4821
|
declare const SCampaignTargetDocumentWithRelations: v.ObjectSchema<{
|
|
4833
|
-
readonly
|
|
4822
|
+
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
4834
4823
|
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
4835
4824
|
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
4836
4825
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4837
4826
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4838
|
-
|
|
4839
|
-
|
|
4840
|
-
readonly
|
|
4841
|
-
|
|
4842
|
-
|
|
4843
|
-
|
|
4844
|
-
|
|
4845
|
-
|
|
4846
|
-
|
|
4847
|
-
|
|
4848
|
-
|
|
4849
|
-
|
|
4850
|
-
|
|
4851
|
-
|
|
4852
|
-
|
|
4853
|
-
readonly
|
|
4854
|
-
|
|
4855
|
-
|
|
4856
|
-
|
|
4857
|
-
|
|
4858
|
-
|
|
4859
|
-
|
|
4860
|
-
|
|
4861
|
-
|
|
4862
|
-
readonly createdAt: v.StringSchema<undefined>;
|
|
4863
|
-
readonly updatedAt: v.StringSchema<undefined>;
|
|
4864
|
-
}, undefined>, undefined>;
|
|
4865
|
-
}, undefined>;
|
|
4827
|
+
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
4828
|
+
readonly apply_value_as: v.PicklistSchema<readonly ["prefix", "suffix"], undefined>;
|
|
4829
|
+
readonly id: v.NumberSchema<undefined>;
|
|
4830
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
4831
|
+
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4832
|
+
readonly createdAt: v.StringSchema<undefined>;
|
|
4833
|
+
readonly updatedAt: v.StringSchema<undefined>;
|
|
4834
|
+
}, undefined>, undefined>;
|
|
4835
|
+
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
4836
|
+
readonly username: 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: - _ .">]>;
|
|
4837
|
+
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 5, "your email is too short, it must be at least 5 characters">, v.MaxLengthAction<string, 255, "your email is too long, it must be 255 characters or less">, v.EmailAction<string, "please provide a valid email address">]>;
|
|
4838
|
+
readonly confirmed: v.BooleanSchema<undefined>;
|
|
4839
|
+
readonly blocked: v.BooleanSchema<undefined>;
|
|
4840
|
+
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
4841
|
+
readonly id: v.NumberSchema<undefined>;
|
|
4842
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
4843
|
+
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4844
|
+
readonly createdAt: v.StringSchema<undefined>;
|
|
4845
|
+
readonly updatedAt: v.StringSchema<undefined>;
|
|
4846
|
+
}, undefined>, undefined>;
|
|
4847
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
4848
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
4849
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4850
|
+
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4866
4851
|
readonly id: v.NumberSchema<undefined>;
|
|
4867
4852
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
4868
4853
|
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -4871,39 +4856,35 @@ declare const SCampaignTargetDocumentWithRelations: v.ObjectSchema<{
|
|
|
4871
4856
|
}, undefined>;
|
|
4872
4857
|
type SCampaignTargetDocumentWithRelations = v.InferOutput<typeof SCampaignTargetDocumentWithRelations>;
|
|
4873
4858
|
declare const SCampaignKeyDocumentWithRelations: v.ObjectSchema<{
|
|
4874
|
-
readonly
|
|
4859
|
+
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
4875
4860
|
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
4876
4861
|
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
4877
4862
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4878
4863
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4879
|
-
|
|
4880
|
-
|
|
4881
|
-
readonly
|
|
4882
|
-
|
|
4883
|
-
|
|
4884
|
-
|
|
4885
|
-
|
|
4886
|
-
|
|
4887
|
-
|
|
4888
|
-
|
|
4889
|
-
|
|
4890
|
-
|
|
4891
|
-
|
|
4892
|
-
|
|
4893
|
-
|
|
4894
|
-
readonly
|
|
4895
|
-
|
|
4896
|
-
|
|
4897
|
-
|
|
4898
|
-
|
|
4899
|
-
|
|
4900
|
-
|
|
4901
|
-
|
|
4902
|
-
|
|
4903
|
-
readonly createdAt: v.StringSchema<undefined>;
|
|
4904
|
-
readonly updatedAt: v.StringSchema<undefined>;
|
|
4905
|
-
}, undefined>, undefined>;
|
|
4906
|
-
}, undefined>;
|
|
4864
|
+
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
4865
|
+
readonly apply_value_as: v.PicklistSchema<readonly ["prefix", "suffix"], undefined>;
|
|
4866
|
+
readonly id: v.NumberSchema<undefined>;
|
|
4867
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
4868
|
+
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4869
|
+
readonly createdAt: v.StringSchema<undefined>;
|
|
4870
|
+
readonly updatedAt: v.StringSchema<undefined>;
|
|
4871
|
+
}, undefined>, undefined>;
|
|
4872
|
+
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
4873
|
+
readonly username: 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: - _ .">]>;
|
|
4874
|
+
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 5, "your email is too short, it must be at least 5 characters">, v.MaxLengthAction<string, 255, "your email is too long, it must be 255 characters or less">, v.EmailAction<string, "please provide a valid email address">]>;
|
|
4875
|
+
readonly confirmed: v.BooleanSchema<undefined>;
|
|
4876
|
+
readonly blocked: v.BooleanSchema<undefined>;
|
|
4877
|
+
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
4878
|
+
readonly id: v.NumberSchema<undefined>;
|
|
4879
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
4880
|
+
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4881
|
+
readonly createdAt: v.StringSchema<undefined>;
|
|
4882
|
+
readonly updatedAt: v.StringSchema<undefined>;
|
|
4883
|
+
}, undefined>, undefined>;
|
|
4884
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
4885
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
4886
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4887
|
+
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4907
4888
|
readonly id: v.NumberSchema<undefined>;
|
|
4908
4889
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
4909
4890
|
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -4912,39 +4893,35 @@ declare const SCampaignKeyDocumentWithRelations: v.ObjectSchema<{
|
|
|
4912
4893
|
}, undefined>;
|
|
4913
4894
|
type SCampaignKeyDocumentWithRelations = v.InferOutput<typeof SCampaignKeyDocumentWithRelations>;
|
|
4914
4895
|
declare const SSourceDocumentWithRelations: v.ObjectSchema<{
|
|
4915
|
-
readonly
|
|
4896
|
+
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
4916
4897
|
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
4917
4898
|
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
4918
4899
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4919
4900
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4920
|
-
|
|
4921
|
-
|
|
4922
|
-
readonly
|
|
4923
|
-
|
|
4924
|
-
|
|
4925
|
-
|
|
4926
|
-
|
|
4927
|
-
|
|
4928
|
-
|
|
4929
|
-
|
|
4930
|
-
|
|
4931
|
-
|
|
4932
|
-
|
|
4933
|
-
|
|
4934
|
-
|
|
4935
|
-
readonly
|
|
4936
|
-
|
|
4937
|
-
|
|
4938
|
-
|
|
4939
|
-
|
|
4940
|
-
|
|
4941
|
-
|
|
4942
|
-
|
|
4943
|
-
|
|
4944
|
-
readonly createdAt: v.StringSchema<undefined>;
|
|
4945
|
-
readonly updatedAt: v.StringSchema<undefined>;
|
|
4946
|
-
}, undefined>, undefined>;
|
|
4947
|
-
}, undefined>;
|
|
4901
|
+
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
4902
|
+
readonly apply_value_as: v.PicklistSchema<readonly ["prefix", "suffix"], undefined>;
|
|
4903
|
+
readonly id: v.NumberSchema<undefined>;
|
|
4904
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
4905
|
+
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4906
|
+
readonly createdAt: v.StringSchema<undefined>;
|
|
4907
|
+
readonly updatedAt: v.StringSchema<undefined>;
|
|
4908
|
+
}, undefined>, undefined>;
|
|
4909
|
+
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
4910
|
+
readonly username: 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: - _ .">]>;
|
|
4911
|
+
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 5, "your email is too short, it must be at least 5 characters">, v.MaxLengthAction<string, 255, "your email is too long, it must be 255 characters or less">, v.EmailAction<string, "please provide a valid email address">]>;
|
|
4912
|
+
readonly confirmed: v.BooleanSchema<undefined>;
|
|
4913
|
+
readonly blocked: v.BooleanSchema<undefined>;
|
|
4914
|
+
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
4915
|
+
readonly id: v.NumberSchema<undefined>;
|
|
4916
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
4917
|
+
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4918
|
+
readonly createdAt: v.StringSchema<undefined>;
|
|
4919
|
+
readonly updatedAt: v.StringSchema<undefined>;
|
|
4920
|
+
}, undefined>, undefined>;
|
|
4921
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
4922
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
4923
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4924
|
+
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4948
4925
|
readonly id: v.NumberSchema<undefined>;
|
|
4949
4926
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
4950
4927
|
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -4953,39 +4930,35 @@ declare const SSourceDocumentWithRelations: v.ObjectSchema<{
|
|
|
4953
4930
|
}, undefined>;
|
|
4954
4931
|
type SSourceDocumentWithRelations = v.InferOutput<typeof SSourceDocumentWithRelations>;
|
|
4955
4932
|
declare const SMediumDocumentWithRelations: v.ObjectSchema<{
|
|
4956
|
-
readonly
|
|
4933
|
+
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
4957
4934
|
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
4958
4935
|
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
4959
4936
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4960
4937
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4961
|
-
|
|
4962
|
-
|
|
4963
|
-
readonly
|
|
4964
|
-
|
|
4965
|
-
|
|
4966
|
-
|
|
4967
|
-
|
|
4968
|
-
|
|
4969
|
-
|
|
4970
|
-
|
|
4971
|
-
|
|
4972
|
-
|
|
4973
|
-
|
|
4974
|
-
|
|
4975
|
-
|
|
4976
|
-
readonly
|
|
4977
|
-
|
|
4978
|
-
|
|
4979
|
-
|
|
4980
|
-
|
|
4981
|
-
|
|
4982
|
-
|
|
4983
|
-
|
|
4984
|
-
|
|
4985
|
-
readonly createdAt: v.StringSchema<undefined>;
|
|
4986
|
-
readonly updatedAt: v.StringSchema<undefined>;
|
|
4987
|
-
}, undefined>, undefined>;
|
|
4988
|
-
}, undefined>;
|
|
4938
|
+
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
4939
|
+
readonly apply_value_as: v.PicklistSchema<readonly ["prefix", "suffix"], undefined>;
|
|
4940
|
+
readonly id: v.NumberSchema<undefined>;
|
|
4941
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
4942
|
+
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4943
|
+
readonly createdAt: v.StringSchema<undefined>;
|
|
4944
|
+
readonly updatedAt: v.StringSchema<undefined>;
|
|
4945
|
+
}, undefined>, undefined>;
|
|
4946
|
+
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
4947
|
+
readonly username: 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: - _ .">]>;
|
|
4948
|
+
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 5, "your email is too short, it must be at least 5 characters">, v.MaxLengthAction<string, 255, "your email is too long, it must be 255 characters or less">, v.EmailAction<string, "please provide a valid email address">]>;
|
|
4949
|
+
readonly confirmed: v.BooleanSchema<undefined>;
|
|
4950
|
+
readonly blocked: v.BooleanSchema<undefined>;
|
|
4951
|
+
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
4952
|
+
readonly id: v.NumberSchema<undefined>;
|
|
4953
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
4954
|
+
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4955
|
+
readonly createdAt: v.StringSchema<undefined>;
|
|
4956
|
+
readonly updatedAt: v.StringSchema<undefined>;
|
|
4957
|
+
}, undefined>, undefined>;
|
|
4958
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
4959
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
4960
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4961
|
+
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4989
4962
|
readonly id: v.NumberSchema<undefined>;
|
|
4990
4963
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
4991
4964
|
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -4994,39 +4967,35 @@ declare const SMediumDocumentWithRelations: v.ObjectSchema<{
|
|
|
4994
4967
|
}, undefined>;
|
|
4995
4968
|
type SMediumDocumentWithRelations = v.InferOutput<typeof SMediumDocumentWithRelations>;
|
|
4996
4969
|
declare const SContentDocumentWithRelations: v.ObjectSchema<{
|
|
4997
|
-
readonly
|
|
4970
|
+
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
4998
4971
|
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
4999
4972
|
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
5000
4973
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5001
4974
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5002
|
-
|
|
5003
|
-
|
|
5004
|
-
readonly
|
|
5005
|
-
|
|
5006
|
-
|
|
5007
|
-
|
|
5008
|
-
|
|
5009
|
-
|
|
5010
|
-
|
|
5011
|
-
|
|
5012
|
-
|
|
5013
|
-
|
|
5014
|
-
|
|
5015
|
-
|
|
5016
|
-
|
|
5017
|
-
readonly
|
|
5018
|
-
|
|
5019
|
-
|
|
5020
|
-
|
|
5021
|
-
|
|
5022
|
-
|
|
5023
|
-
|
|
5024
|
-
|
|
5025
|
-
|
|
5026
|
-
readonly createdAt: v.StringSchema<undefined>;
|
|
5027
|
-
readonly updatedAt: v.StringSchema<undefined>;
|
|
5028
|
-
}, undefined>, undefined>;
|
|
5029
|
-
}, undefined>;
|
|
4975
|
+
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
4976
|
+
readonly apply_value_as: v.PicklistSchema<readonly ["prefix", "suffix"], undefined>;
|
|
4977
|
+
readonly id: v.NumberSchema<undefined>;
|
|
4978
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
4979
|
+
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4980
|
+
readonly createdAt: v.StringSchema<undefined>;
|
|
4981
|
+
readonly updatedAt: v.StringSchema<undefined>;
|
|
4982
|
+
}, undefined>, undefined>;
|
|
4983
|
+
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
4984
|
+
readonly username: 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: - _ .">]>;
|
|
4985
|
+
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 5, "your email is too short, it must be at least 5 characters">, v.MaxLengthAction<string, 255, "your email is too long, it must be 255 characters or less">, v.EmailAction<string, "please provide a valid email address">]>;
|
|
4986
|
+
readonly confirmed: v.BooleanSchema<undefined>;
|
|
4987
|
+
readonly blocked: v.BooleanSchema<undefined>;
|
|
4988
|
+
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
4989
|
+
readonly id: v.NumberSchema<undefined>;
|
|
4990
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
4991
|
+
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4992
|
+
readonly createdAt: v.StringSchema<undefined>;
|
|
4993
|
+
readonly updatedAt: v.StringSchema<undefined>;
|
|
4994
|
+
}, undefined>, undefined>;
|
|
4995
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
4996
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
4997
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4998
|
+
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5030
4999
|
readonly id: v.NumberSchema<undefined>;
|
|
5031
5000
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
5032
5001
|
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -5035,39 +5004,35 @@ declare const SContentDocumentWithRelations: v.ObjectSchema<{
|
|
|
5035
5004
|
}, undefined>;
|
|
5036
5005
|
type SContentDocumentWithRelations = v.InferOutput<typeof SContentDocumentWithRelations>;
|
|
5037
5006
|
declare const SCreativeFormatDocumentWithRelations: v.ObjectSchema<{
|
|
5038
|
-
readonly
|
|
5007
|
+
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
5039
5008
|
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
5040
5009
|
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
5041
5010
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5042
5011
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5043
|
-
|
|
5044
|
-
|
|
5045
|
-
readonly
|
|
5046
|
-
|
|
5047
|
-
|
|
5048
|
-
|
|
5049
|
-
|
|
5050
|
-
|
|
5051
|
-
|
|
5052
|
-
|
|
5053
|
-
|
|
5054
|
-
|
|
5055
|
-
|
|
5056
|
-
|
|
5057
|
-
|
|
5058
|
-
readonly
|
|
5059
|
-
|
|
5060
|
-
|
|
5061
|
-
|
|
5062
|
-
|
|
5063
|
-
|
|
5064
|
-
|
|
5065
|
-
|
|
5066
|
-
|
|
5067
|
-
readonly createdAt: v.StringSchema<undefined>;
|
|
5068
|
-
readonly updatedAt: v.StringSchema<undefined>;
|
|
5069
|
-
}, undefined>, undefined>;
|
|
5070
|
-
}, undefined>;
|
|
5012
|
+
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
5013
|
+
readonly apply_value_as: v.PicklistSchema<readonly ["prefix", "suffix"], undefined>;
|
|
5014
|
+
readonly id: v.NumberSchema<undefined>;
|
|
5015
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
5016
|
+
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5017
|
+
readonly createdAt: v.StringSchema<undefined>;
|
|
5018
|
+
readonly updatedAt: v.StringSchema<undefined>;
|
|
5019
|
+
}, undefined>, undefined>;
|
|
5020
|
+
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
5021
|
+
readonly username: 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: - _ .">]>;
|
|
5022
|
+
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 5, "your email is too short, it must be at least 5 characters">, v.MaxLengthAction<string, 255, "your email is too long, it must be 255 characters or less">, v.EmailAction<string, "please provide a valid email address">]>;
|
|
5023
|
+
readonly confirmed: v.BooleanSchema<undefined>;
|
|
5024
|
+
readonly blocked: v.BooleanSchema<undefined>;
|
|
5025
|
+
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
5026
|
+
readonly id: v.NumberSchema<undefined>;
|
|
5027
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
5028
|
+
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5029
|
+
readonly createdAt: v.StringSchema<undefined>;
|
|
5030
|
+
readonly updatedAt: v.StringSchema<undefined>;
|
|
5031
|
+
}, undefined>, undefined>;
|
|
5032
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
5033
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
5034
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5035
|
+
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5071
5036
|
readonly id: v.NumberSchema<undefined>;
|
|
5072
5037
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
5073
5038
|
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -5076,39 +5041,35 @@ declare const SCreativeFormatDocumentWithRelations: v.ObjectSchema<{
|
|
|
5076
5041
|
}, undefined>;
|
|
5077
5042
|
type SCreativeFormatDocumentWithRelations = v.InferOutput<typeof SCreativeFormatDocumentWithRelations>;
|
|
5078
5043
|
declare const SCreativeFormatVariantDocumentWithRelations: v.ObjectSchema<{
|
|
5079
|
-
readonly
|
|
5044
|
+
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
5080
5045
|
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
5081
5046
|
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
5082
5047
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5083
5048
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5084
|
-
|
|
5085
|
-
|
|
5086
|
-
readonly
|
|
5087
|
-
|
|
5088
|
-
|
|
5089
|
-
|
|
5090
|
-
|
|
5091
|
-
|
|
5092
|
-
|
|
5093
|
-
|
|
5094
|
-
|
|
5095
|
-
|
|
5096
|
-
|
|
5097
|
-
|
|
5098
|
-
|
|
5099
|
-
readonly
|
|
5100
|
-
|
|
5101
|
-
|
|
5102
|
-
|
|
5103
|
-
|
|
5104
|
-
|
|
5105
|
-
|
|
5106
|
-
|
|
5107
|
-
|
|
5108
|
-
readonly createdAt: v.StringSchema<undefined>;
|
|
5109
|
-
readonly updatedAt: v.StringSchema<undefined>;
|
|
5110
|
-
}, undefined>, undefined>;
|
|
5111
|
-
}, undefined>;
|
|
5049
|
+
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
5050
|
+
readonly apply_value_as: v.PicklistSchema<readonly ["prefix", "suffix"], undefined>;
|
|
5051
|
+
readonly id: v.NumberSchema<undefined>;
|
|
5052
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
5053
|
+
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5054
|
+
readonly createdAt: v.StringSchema<undefined>;
|
|
5055
|
+
readonly updatedAt: v.StringSchema<undefined>;
|
|
5056
|
+
}, undefined>, undefined>;
|
|
5057
|
+
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
5058
|
+
readonly username: 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: - _ .">]>;
|
|
5059
|
+
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 5, "your email is too short, it must be at least 5 characters">, v.MaxLengthAction<string, 255, "your email is too long, it must be 255 characters or less">, v.EmailAction<string, "please provide a valid email address">]>;
|
|
5060
|
+
readonly confirmed: v.BooleanSchema<undefined>;
|
|
5061
|
+
readonly blocked: v.BooleanSchema<undefined>;
|
|
5062
|
+
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
5063
|
+
readonly id: v.NumberSchema<undefined>;
|
|
5064
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
5065
|
+
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5066
|
+
readonly createdAt: v.StringSchema<undefined>;
|
|
5067
|
+
readonly updatedAt: v.StringSchema<undefined>;
|
|
5068
|
+
}, undefined>, undefined>;
|
|
5069
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
5070
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
5071
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5072
|
+
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5112
5073
|
readonly id: v.NumberSchema<undefined>;
|
|
5113
5074
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
5114
5075
|
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -5117,39 +5078,35 @@ declare const SCreativeFormatVariantDocumentWithRelations: v.ObjectSchema<{
|
|
|
5117
5078
|
}, undefined>;
|
|
5118
5079
|
type SCreativeFormatVariantDocumentWithRelations = v.InferOutput<typeof SCreativeFormatVariantDocumentWithRelations>;
|
|
5119
5080
|
declare const STermDocumentWithRelations: v.ObjectSchema<{
|
|
5120
|
-
readonly
|
|
5081
|
+
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
5121
5082
|
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
5122
5083
|
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
5123
5084
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5124
5085
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5125
|
-
|
|
5126
|
-
|
|
5127
|
-
readonly
|
|
5128
|
-
|
|
5129
|
-
|
|
5130
|
-
|
|
5131
|
-
|
|
5132
|
-
|
|
5133
|
-
|
|
5134
|
-
|
|
5135
|
-
|
|
5136
|
-
|
|
5137
|
-
|
|
5138
|
-
|
|
5139
|
-
|
|
5140
|
-
readonly
|
|
5141
|
-
|
|
5142
|
-
|
|
5143
|
-
|
|
5144
|
-
|
|
5145
|
-
|
|
5146
|
-
|
|
5147
|
-
|
|
5148
|
-
|
|
5149
|
-
readonly createdAt: v.StringSchema<undefined>;
|
|
5150
|
-
readonly updatedAt: v.StringSchema<undefined>;
|
|
5151
|
-
}, undefined>, undefined>;
|
|
5152
|
-
}, undefined>;
|
|
5086
|
+
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
5087
|
+
readonly apply_value_as: v.PicklistSchema<readonly ["prefix", "suffix"], undefined>;
|
|
5088
|
+
readonly id: v.NumberSchema<undefined>;
|
|
5089
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
5090
|
+
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5091
|
+
readonly createdAt: v.StringSchema<undefined>;
|
|
5092
|
+
readonly updatedAt: v.StringSchema<undefined>;
|
|
5093
|
+
}, undefined>, undefined>;
|
|
5094
|
+
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
5095
|
+
readonly username: 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: - _ .">]>;
|
|
5096
|
+
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 5, "your email is too short, it must be at least 5 characters">, v.MaxLengthAction<string, 255, "your email is too long, it must be 255 characters or less">, v.EmailAction<string, "please provide a valid email address">]>;
|
|
5097
|
+
readonly confirmed: v.BooleanSchema<undefined>;
|
|
5098
|
+
readonly blocked: v.BooleanSchema<undefined>;
|
|
5099
|
+
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
5100
|
+
readonly id: v.NumberSchema<undefined>;
|
|
5101
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
5102
|
+
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5103
|
+
readonly createdAt: v.StringSchema<undefined>;
|
|
5104
|
+
readonly updatedAt: v.StringSchema<undefined>;
|
|
5105
|
+
}, undefined>, undefined>;
|
|
5106
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
5107
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
5108
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5109
|
+
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5153
5110
|
readonly id: v.NumberSchema<undefined>;
|
|
5154
5111
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
5155
5112
|
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|