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