@getcommunity/gc-validators 0.0.203 → 0.0.204
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/chunk-Q4X2EKZT.cjs +2785 -0
- package/dist/chunk-Q4X2EKZT.cjs.map +1 -0
- package/dist/chunk-RQOIBLMN.js +2547 -0
- package/dist/chunk-RQOIBLMN.js.map +1 -0
- package/dist/index.cjs +308 -196
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/schemas.cjs +308 -196
- package/dist/schemas.d.cts +105 -206
- package/dist/schemas.d.ts +105 -206
- package/dist/schemas.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-7Y67JAG4.js +0 -2376
- package/dist/chunk-7Y67JAG4.js.map +0 -1
- package/dist/chunk-PI2ZRUBT.cjs +0 -2586
- package/dist/chunk-PI2ZRUBT.cjs.map +0 -1
package/dist/schemas.d.ts
CHANGED
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
import * as v from 'valibot';
|
|
2
2
|
import { c as ClientEntityScope } from './permission.constants-Chqmz1hY.js';
|
|
3
3
|
|
|
4
|
-
declare const
|
|
5
|
-
|
|
6
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
7
|
-
}, undefined>, undefined>;
|
|
8
|
-
type QuerySortBlogPosts = v.InferOutput<typeof QuerySortBlogPosts>;
|
|
4
|
+
declare const BlogPostSortKeys: readonly ["id", "title", "slug", "is_live", "is_featured", "is_public", "published", "createdAt", "updatedAt"];
|
|
5
|
+
declare const QuerySortBlogPosts: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "is_live:ASC" | "is_featured:ASC" | "is_public:ASC" | "published:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC" | "is_live:DESC" | "is_featured:DESC" | "is_public:DESC" | "published:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "is_live:ASC" | "is_featured:ASC" | "is_public:ASC" | "published:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC" | "is_live:DESC" | "is_featured:DESC" | "is_public:DESC" | "published:DESC")[], 9, undefined>]>, undefined>;
|
|
9
6
|
declare const QueryStrapiSearchBlogPosts: v.ObjectSchema<{
|
|
10
7
|
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
11
8
|
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
@@ -13,36 +10,25 @@ declare const QueryStrapiSearchBlogPosts: v.ObjectSchema<{
|
|
|
13
10
|
readonly category: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
14
11
|
readonly tags: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
15
12
|
readonly status: v.OptionalSchema<v.PicklistSchema<["draft", "published"], undefined>, undefined>;
|
|
16
|
-
readonly sort: v.OptionalSchema<v.
|
|
17
|
-
readonly key: v.PicklistSchema<["id", "title", "slug", "is_live", "is_featured", "is_public", "published", "createdAt", "updatedAt"], undefined>;
|
|
18
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
19
|
-
}, undefined>, undefined>;
|
|
13
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "is_live:ASC" | "is_featured:ASC" | "is_public:ASC" | "published:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC" | "is_live:DESC" | "is_featured:DESC" | "is_public:DESC" | "published:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "is_live:ASC" | "is_featured:ASC" | "is_public:ASC" | "published:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC" | "is_live:DESC" | "is_featured:DESC" | "is_public:DESC" | "published:DESC")[], 9, undefined>]>, undefined>;
|
|
20
14
|
}, undefined>;
|
|
21
15
|
type QueryStrapiSearchBlogPosts = v.InferOutput<typeof QueryStrapiSearchBlogPosts>;
|
|
22
16
|
declare const QueryStrapiSearchBlogPostsBySlug: v.ObjectSchema<{
|
|
23
17
|
readonly slug: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
24
18
|
readonly status: v.OptionalSchema<v.PicklistSchema<["draft", "published"], undefined>, "published">;
|
|
25
|
-
readonly sort: v.OptionalSchema<v.
|
|
26
|
-
readonly key: v.PicklistSchema<["id", "title", "slug", "is_live", "is_featured", "is_public", "published", "createdAt", "updatedAt"], undefined>;
|
|
27
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
28
|
-
}, undefined>, undefined>;
|
|
19
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "is_live:ASC" | "is_featured:ASC" | "is_public:ASC" | "published:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC" | "is_live:DESC" | "is_featured:DESC" | "is_public:DESC" | "published:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "is_live:ASC" | "is_featured:ASC" | "is_public:ASC" | "published:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC" | "is_live:DESC" | "is_featured:DESC" | "is_public:DESC" | "published:DESC")[], 9, undefined>]>, undefined>;
|
|
29
20
|
}, undefined>;
|
|
30
21
|
type QueryStrapiSearchBlogPostsBySlug = v.InferOutput<typeof QueryStrapiSearchBlogPostsBySlug>;
|
|
31
22
|
|
|
32
|
-
declare const
|
|
33
|
-
|
|
34
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
35
|
-
}, undefined>, undefined>;
|
|
23
|
+
declare const CategorySortKeys: readonly ["id", "label", "slug", "createdAt", "updatedAt"];
|
|
24
|
+
declare const QuerySortCategories: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "slug:DESC" | "label:ASC" | "label:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "slug:DESC" | "label:ASC" | "label:DESC")[], 5, undefined>]>, undefined>;
|
|
36
25
|
type QuerySortCategories = v.InferOutput<typeof QuerySortCategories>;
|
|
37
26
|
declare const QueryStrapiSearchCategories: v.ObjectSchema<{
|
|
38
27
|
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
39
28
|
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
40
29
|
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
41
30
|
readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
42
|
-
readonly sort: v.OptionalSchema<v.
|
|
43
|
-
readonly key: v.PicklistSchema<["id", "label", "slug", "createdAt", "updatedAt"], undefined>;
|
|
44
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
45
|
-
}, undefined>, undefined>;
|
|
31
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "slug:DESC" | "label:ASC" | "label:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "slug:DESC" | "label:ASC" | "label:DESC")[], 5, undefined>]>, undefined>;
|
|
46
32
|
}, undefined>;
|
|
47
33
|
type QueryStrapiSearchCategories = v.InferOutput<typeof QueryStrapiSearchCategories>;
|
|
48
34
|
declare const SCreateCategoryDocument: v.ObjectSchema<{
|
|
@@ -64,10 +50,8 @@ declare const SUpdateCategoryDocumentRequest: v.ObjectSchema<{
|
|
|
64
50
|
}, undefined>;
|
|
65
51
|
type SUpdateCategoryDocumentRequest = v.InferOutput<typeof SUpdateCategoryDocumentRequest>;
|
|
66
52
|
|
|
67
|
-
declare const
|
|
68
|
-
|
|
69
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
70
|
-
}, undefined>, undefined>;
|
|
53
|
+
declare const ClientContentPillarSortKeys: readonly ["id", "is_active", "content_pillar.title", "content_pillar.slug", "createdAt", "updatedAt"];
|
|
54
|
+
declare const QuerySortClientContentPillars: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:ASC" | "content_pillar.title:ASC" | "content_pillar.slug:ASC" | "is_active:DESC" | "content_pillar.title:DESC" | "content_pillar.slug:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:ASC" | "content_pillar.title:ASC" | "content_pillar.slug:ASC" | "is_active:DESC" | "content_pillar.title:DESC" | "content_pillar.slug:DESC")[], 6, undefined>]>, undefined>;
|
|
71
55
|
type QuerySortClientContentPillars = v.InferOutput<typeof QuerySortClientContentPillars>;
|
|
72
56
|
declare const QueryStrapiSearchClientContentPillars: v.ObjectSchema<{
|
|
73
57
|
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
@@ -75,10 +59,7 @@ declare const QueryStrapiSearchClientContentPillars: v.ObjectSchema<{
|
|
|
75
59
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
76
60
|
readonly client_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
77
61
|
readonly content_pillar_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
78
|
-
readonly sort: v.OptionalSchema<v.
|
|
79
|
-
readonly key: v.PicklistSchema<["id", "is_active", "content_pillar.title", "content_pillar.slug", "createdAt", "updatedAt"], undefined>;
|
|
80
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
81
|
-
}, undefined>, undefined>;
|
|
62
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:ASC" | "content_pillar.title:ASC" | "content_pillar.slug:ASC" | "is_active:DESC" | "content_pillar.title:DESC" | "content_pillar.slug:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:ASC" | "content_pillar.title:ASC" | "content_pillar.slug:ASC" | "is_active:DESC" | "content_pillar.title:DESC" | "content_pillar.slug:DESC")[], 6, undefined>]>, undefined>;
|
|
82
63
|
}, undefined>;
|
|
83
64
|
type QueryStrapiSearchClientContentPillars = v.InferOutput<typeof QueryStrapiSearchClientContentPillars>;
|
|
84
65
|
declare const SCreateClientContentPillarDocument: v.ObjectSchema<{
|
|
@@ -99,10 +80,8 @@ declare const SUpdateClientContentPillarDocumentRequest: v.ObjectSchema<{
|
|
|
99
80
|
}, undefined>;
|
|
100
81
|
type SUpdateClientContentPillarDocumentRequest = v.InferOutput<typeof SUpdateClientContentPillarDocumentRequest>;
|
|
101
82
|
|
|
102
|
-
declare const
|
|
103
|
-
|
|
104
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
105
|
-
}, undefined>, undefined>;
|
|
83
|
+
declare const ClientMediaPlatformContentTypeSortKeys: readonly ["id", "is_active", "is_organic_social", "is_paid_media", "client_media_platform.media_platform.title", "client_media_platform.media_platform.slug", "media_content_type.title", "media_content_type.slug", "createdAt", "updatedAt"];
|
|
84
|
+
declare const QuerySortClientMediaPlatformContentTypes: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:ASC" | "is_active:DESC" | "is_organic_social:ASC" | "is_paid_media:ASC" | "client_media_platform.media_platform.title:ASC" | "client_media_platform.media_platform.slug:ASC" | "media_content_type.title:ASC" | "media_content_type.slug:ASC" | "is_organic_social:DESC" | "is_paid_media:DESC" | "client_media_platform.media_platform.title:DESC" | "client_media_platform.media_platform.slug:DESC" | "media_content_type.title:DESC" | "media_content_type.slug:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:ASC" | "is_active:DESC" | "is_organic_social:ASC" | "is_paid_media:ASC" | "client_media_platform.media_platform.title:ASC" | "client_media_platform.media_platform.slug:ASC" | "media_content_type.title:ASC" | "media_content_type.slug:ASC" | "is_organic_social:DESC" | "is_paid_media:DESC" | "client_media_platform.media_platform.title:DESC" | "client_media_platform.media_platform.slug:DESC" | "media_content_type.title:DESC" | "media_content_type.slug:DESC")[], 10, undefined>]>, undefined>;
|
|
106
85
|
type QuerySortClientMediaPlatformContentTypes = v.InferOutput<typeof QuerySortClientMediaPlatformContentTypes>;
|
|
107
86
|
declare const QueryStrapiSearchClientMediaPlatformContentTypes: v.ObjectSchema<{
|
|
108
87
|
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
@@ -112,10 +91,7 @@ declare const QueryStrapiSearchClientMediaPlatformContentTypes: v.ObjectSchema<{
|
|
|
112
91
|
readonly is_paid_media: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
113
92
|
readonly client_media_platform_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
114
93
|
readonly media_content_type_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
115
|
-
readonly sort: v.OptionalSchema<v.
|
|
116
|
-
readonly key: v.PicklistSchema<["id", "is_active", "is_organic_social", "is_paid_media", "client_media_platform.media_platform.title", "client_media_platform.media_platform.slug", "media_content_type.title", "media_content_type.slug", "createdAt", "updatedAt"], undefined>;
|
|
117
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
118
|
-
}, undefined>, undefined>;
|
|
94
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:ASC" | "is_active:DESC" | "is_organic_social:ASC" | "is_paid_media:ASC" | "client_media_platform.media_platform.title:ASC" | "client_media_platform.media_platform.slug:ASC" | "media_content_type.title:ASC" | "media_content_type.slug:ASC" | "is_organic_social:DESC" | "is_paid_media:DESC" | "client_media_platform.media_platform.title:DESC" | "client_media_platform.media_platform.slug:DESC" | "media_content_type.title:DESC" | "media_content_type.slug:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:ASC" | "is_active:DESC" | "is_organic_social:ASC" | "is_paid_media:ASC" | "client_media_platform.media_platform.title:ASC" | "client_media_platform.media_platform.slug:ASC" | "media_content_type.title:ASC" | "media_content_type.slug:ASC" | "is_organic_social:DESC" | "is_paid_media:DESC" | "client_media_platform.media_platform.title:DESC" | "client_media_platform.media_platform.slug:DESC" | "media_content_type.title:DESC" | "media_content_type.slug:DESC")[], 10, undefined>]>, undefined>;
|
|
119
95
|
}, undefined>;
|
|
120
96
|
type QueryStrapiSearchClientMediaPlatformContentTypes = v.InferOutput<typeof QueryStrapiSearchClientMediaPlatformContentTypes>;
|
|
121
97
|
declare const SCreateClientMediaPlatformContentTypeDocument: v.ObjectSchema<{
|
|
@@ -142,10 +118,8 @@ declare const SUpdateClientMediaPlatformContentTypeDocumentRequest: v.ObjectSche
|
|
|
142
118
|
}, undefined>;
|
|
143
119
|
type SUpdateClientMediaPlatformContentTypeDocumentRequest = v.InferOutput<typeof SUpdateClientMediaPlatformContentTypeDocumentRequest>;
|
|
144
120
|
|
|
145
|
-
declare const
|
|
146
|
-
|
|
147
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
148
|
-
}, undefined>, undefined>;
|
|
121
|
+
declare const ClientMediaPlatformSortKeys: readonly ["id", "is_active", "is_organic_social", "is_paid_media", "media_platform.title", "media_platform.slug", "media_content_types.title", "media_content_types.slug", "createdAt", "updatedAt"];
|
|
122
|
+
declare const QuerySortClientMediaPlatforms: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:ASC" | "is_active:DESC" | "is_organic_social:ASC" | "is_paid_media:ASC" | "is_organic_social:DESC" | "is_paid_media:DESC" | "media_platform.title:ASC" | "media_platform.slug:ASC" | "media_content_types.title:ASC" | "media_content_types.slug:ASC" | "media_platform.title:DESC" | "media_platform.slug:DESC" | "media_content_types.title:DESC" | "media_content_types.slug:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:ASC" | "is_active:DESC" | "is_organic_social:ASC" | "is_paid_media:ASC" | "is_organic_social:DESC" | "is_paid_media:DESC" | "media_platform.title:ASC" | "media_platform.slug:ASC" | "media_content_types.title:ASC" | "media_content_types.slug:ASC" | "media_platform.title:DESC" | "media_platform.slug:DESC" | "media_content_types.title:DESC" | "media_content_types.slug:DESC")[], 10, undefined>]>, undefined>;
|
|
149
123
|
type QuerySortClientMediaPlatforms = v.InferOutput<typeof QuerySortClientMediaPlatforms>;
|
|
150
124
|
declare const QueryStrapiSearchClientMediaPlatforms: v.ObjectSchema<{
|
|
151
125
|
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
@@ -154,10 +128,7 @@ declare const QueryStrapiSearchClientMediaPlatforms: v.ObjectSchema<{
|
|
|
154
128
|
readonly client_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
155
129
|
readonly media_platform_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
156
130
|
readonly media_content_types: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
|
|
157
|
-
readonly sort: v.OptionalSchema<v.
|
|
158
|
-
readonly key: v.PicklistSchema<["id", "is_active", "is_organic_social", "is_paid_media", "media_platform.title", "media_platform.slug", "media_content_types.title", "media_content_types.slug", "createdAt", "updatedAt"], undefined>;
|
|
159
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
160
|
-
}, undefined>, undefined>;
|
|
131
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:ASC" | "is_active:DESC" | "is_organic_social:ASC" | "is_paid_media:ASC" | "is_organic_social:DESC" | "is_paid_media:DESC" | "media_platform.title:ASC" | "media_platform.slug:ASC" | "media_content_types.title:ASC" | "media_content_types.slug:ASC" | "media_platform.title:DESC" | "media_platform.slug:DESC" | "media_content_types.title:DESC" | "media_content_types.slug:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:ASC" | "is_active:DESC" | "is_organic_social:ASC" | "is_paid_media:ASC" | "is_organic_social:DESC" | "is_paid_media:DESC" | "media_platform.title:ASC" | "media_platform.slug:ASC" | "media_content_types.title:ASC" | "media_content_types.slug:ASC" | "media_platform.title:DESC" | "media_platform.slug:DESC" | "media_content_types.title:DESC" | "media_content_types.slug:DESC")[], 10, undefined>]>, undefined>;
|
|
161
132
|
}, undefined>;
|
|
162
133
|
type QueryStrapiSearchClientMediaPlatforms = v.InferOutput<typeof QueryStrapiSearchClientMediaPlatforms>;
|
|
163
134
|
declare const SCreateClientMediaPlatformDocument: v.ObjectSchema<{
|
|
@@ -184,10 +155,8 @@ declare const SAssociateMediaContentTypesToClientMediaPlatform: v.ObjectSchema<{
|
|
|
184
155
|
}, undefined>;
|
|
185
156
|
type SAssociateMediaContentTypesToClientMediaPlatform = v.InferOutput<typeof SAssociateMediaContentTypesToClientMediaPlatform>;
|
|
186
157
|
|
|
187
|
-
declare const
|
|
188
|
-
|
|
189
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
190
|
-
}, undefined>, undefined>;
|
|
158
|
+
declare const ClientProjectSortKeys: readonly ["id", "title", "slug", "is_active", "is_hidden", "project_phase", "project_url", "project_type", "project_pricing", "project_address", "phone_number", "num_of_models", "num_of_units_remain", "buyer_profile", "social_organic_start_date", "paid_media_start_date", "go_date", "createdAt", "updatedAt"];
|
|
159
|
+
declare const QuerySortClientProjects: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC" | "is_active:ASC" | "is_active:DESC" | "is_hidden:ASC" | "project_phase:ASC" | "project_url:ASC" | "project_type:ASC" | "project_pricing:ASC" | "project_address:ASC" | "phone_number:ASC" | "num_of_models:ASC" | "num_of_units_remain:ASC" | "buyer_profile:ASC" | "social_organic_start_date:ASC" | "paid_media_start_date:ASC" | "go_date:ASC" | "is_hidden:DESC" | "project_phase:DESC" | "project_url:DESC" | "project_type:DESC" | "project_pricing:DESC" | "project_address:DESC" | "phone_number:DESC" | "num_of_models:DESC" | "num_of_units_remain:DESC" | "buyer_profile:DESC" | "social_organic_start_date:DESC" | "paid_media_start_date:DESC" | "go_date:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC" | "is_active:ASC" | "is_active:DESC" | "is_hidden:ASC" | "project_phase:ASC" | "project_url:ASC" | "project_type:ASC" | "project_pricing:ASC" | "project_address:ASC" | "phone_number:ASC" | "num_of_models:ASC" | "num_of_units_remain:ASC" | "buyer_profile:ASC" | "social_organic_start_date:ASC" | "paid_media_start_date:ASC" | "go_date:ASC" | "is_hidden:DESC" | "project_phase:DESC" | "project_url:DESC" | "project_type:DESC" | "project_pricing:DESC" | "project_address:DESC" | "phone_number:DESC" | "num_of_models:DESC" | "num_of_units_remain:DESC" | "buyer_profile:DESC" | "social_organic_start_date:DESC" | "paid_media_start_date:DESC" | "go_date:DESC")[], 19, undefined>]>, undefined>;
|
|
191
160
|
type QuerySortClientProjects = v.InferOutput<typeof QuerySortClientProjects>;
|
|
192
161
|
declare const QueryStrapiSearchClientProjects: v.ObjectSchema<{
|
|
193
162
|
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
@@ -210,10 +179,7 @@ declare const QueryStrapiSearchClientProjects: v.ObjectSchema<{
|
|
|
210
179
|
readonly social_organic_start_date: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>, undefined>;
|
|
211
180
|
readonly paid_media_start_date: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>, undefined>;
|
|
212
181
|
readonly go_date: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>, undefined>;
|
|
213
|
-
readonly sort: v.OptionalSchema<v.
|
|
214
|
-
readonly key: v.PicklistSchema<["id", "title", "slug", "is_active", "is_hidden", "project_phase", "project_url", "project_type", "project_pricing", "project_address", "phone_number", "num_of_models", "num_of_units_remain", "buyer_profile", "social_organic_start_date", "paid_media_start_date", "go_date", "createdAt", "updatedAt"], undefined>;
|
|
215
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
216
|
-
}, undefined>, undefined>;
|
|
182
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC" | "is_active:ASC" | "is_active:DESC" | "is_hidden:ASC" | "project_phase:ASC" | "project_url:ASC" | "project_type:ASC" | "project_pricing:ASC" | "project_address:ASC" | "phone_number:ASC" | "num_of_models:ASC" | "num_of_units_remain:ASC" | "buyer_profile:ASC" | "social_organic_start_date:ASC" | "paid_media_start_date:ASC" | "go_date:ASC" | "is_hidden:DESC" | "project_phase:DESC" | "project_url:DESC" | "project_type:DESC" | "project_pricing:DESC" | "project_address:DESC" | "phone_number:DESC" | "num_of_models:DESC" | "num_of_units_remain:DESC" | "buyer_profile:DESC" | "social_organic_start_date:DESC" | "paid_media_start_date:DESC" | "go_date:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC" | "is_active:ASC" | "is_active:DESC" | "is_hidden:ASC" | "project_phase:ASC" | "project_url:ASC" | "project_type:ASC" | "project_pricing:ASC" | "project_address:ASC" | "phone_number:ASC" | "num_of_models:ASC" | "num_of_units_remain:ASC" | "buyer_profile:ASC" | "social_organic_start_date:ASC" | "paid_media_start_date:ASC" | "go_date:ASC" | "is_hidden:DESC" | "project_phase:DESC" | "project_url:DESC" | "project_type:DESC" | "project_pricing:DESC" | "project_address:DESC" | "phone_number:DESC" | "num_of_models:DESC" | "num_of_units_remain:DESC" | "buyer_profile:DESC" | "social_organic_start_date:DESC" | "paid_media_start_date:DESC" | "go_date:DESC")[], 19, undefined>]>, undefined>;
|
|
217
183
|
}, undefined>;
|
|
218
184
|
type QueryStrapiSearchClientProjects = v.InferOutput<typeof QueryStrapiSearchClientProjects>;
|
|
219
185
|
declare const SCreateClientProjectDocument: v.ObjectSchema<{
|
|
@@ -288,10 +254,8 @@ declare const SAssociateClientToClientProjectDocument: v.ObjectSchema<{
|
|
|
288
254
|
}, undefined>;
|
|
289
255
|
type SAssociateClientToClientProjectDocument = v.InferOutput<typeof SAssociateClientToClientProjectDocument>;
|
|
290
256
|
|
|
291
|
-
declare const
|
|
292
|
-
|
|
293
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
294
|
-
}, undefined>, undefined>;
|
|
257
|
+
declare const ClientReportSortKeys: readonly ["id", "title", "is_active", "createdAt", "updatedAt"];
|
|
258
|
+
declare const QuerySortClientReports: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "is_active:ASC" | "is_active:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "is_active:ASC" | "is_active:DESC")[], 5, undefined>]>, undefined>;
|
|
295
259
|
type QuerySortClientReports = v.InferOutput<typeof QuerySortClientReports>;
|
|
296
260
|
declare const QueryStrapiSearchClientReports: v.ObjectSchema<{
|
|
297
261
|
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
@@ -300,10 +264,7 @@ declare const QueryStrapiSearchClientReports: v.ObjectSchema<{
|
|
|
300
264
|
readonly report_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
301
265
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
302
266
|
readonly client_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
303
|
-
readonly sort: v.OptionalSchema<v.
|
|
304
|
-
readonly key: v.PicklistSchema<["id", "title", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
305
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
306
|
-
}, undefined>, undefined>;
|
|
267
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "is_active:ASC" | "is_active:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "is_active:ASC" | "is_active:DESC")[], 5, undefined>]>, undefined>;
|
|
307
268
|
}, undefined>;
|
|
308
269
|
type QueryStrapiSearchClientReports = v.InferOutput<typeof QueryStrapiSearchClientReports>;
|
|
309
270
|
declare const SCreateClientReportDocument: v.ObjectSchema<{
|
|
@@ -334,10 +295,8 @@ declare const SUpdateClientReportDocumentRequest: v.ObjectSchema<{
|
|
|
334
295
|
}, undefined>;
|
|
335
296
|
type SUpdateClientReportDocumentRequest = v.InferOutput<typeof SUpdateClientReportDocumentRequest>;
|
|
336
297
|
|
|
337
|
-
declare const
|
|
338
|
-
|
|
339
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
340
|
-
}, undefined>, undefined>;
|
|
298
|
+
declare const ClientStyleguideSortKeys: readonly ["id", "title", "createdAt", "updatedAt"];
|
|
299
|
+
declare const QuerySortClientStyleguides: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC")[], 4, undefined>]>, undefined>;
|
|
341
300
|
type QuerySortClientStyleguides = v.InferOutput<typeof QuerySortClientStyleguides>;
|
|
342
301
|
declare const QueryStrapiSearchClientStyleguide: v.ObjectSchema<{
|
|
343
302
|
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
@@ -345,10 +304,7 @@ declare const QueryStrapiSearchClientStyleguide: v.ObjectSchema<{
|
|
|
345
304
|
readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
346
305
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
347
306
|
readonly client_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
348
|
-
readonly sort: v.OptionalSchema<v.
|
|
349
|
-
readonly key: v.PicklistSchema<["id", "title", "createdAt", "updatedAt"], undefined>;
|
|
350
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
351
|
-
}, undefined>, undefined>;
|
|
307
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC")[], 4, undefined>]>, undefined>;
|
|
352
308
|
}, undefined>;
|
|
353
309
|
type QueryStrapiSearchClientStyleguide = v.InferOutput<typeof QueryStrapiSearchClientStyleguide>;
|
|
354
310
|
declare const SCreateClientStyleguideDocument: v.ObjectSchema<{
|
|
@@ -373,10 +329,8 @@ declare const SUpdateClientStyleguideDocumentRequest: v.ObjectSchema<{
|
|
|
373
329
|
}, undefined>;
|
|
374
330
|
type SUpdateClientStyleguideDocumentRequest = v.InferOutput<typeof SUpdateClientStyleguideDocumentRequest>;
|
|
375
331
|
|
|
376
|
-
declare const
|
|
377
|
-
|
|
378
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
379
|
-
}, undefined>, undefined>;
|
|
332
|
+
declare const ClientUserSortKeys: readonly ["id", "client.title", "client.teamwork_id", "client.teamwork_name", "client.is_active", "client.allow_create_utm_link", "client.is_paid_media", "client.is_organic_social", "user.username", "user.email", "user.confirmed", "user.blocked", "createdAt", "updatedAt"];
|
|
333
|
+
declare const QuerySortClientUsers: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "client.title:ASC" | "client.teamwork_id:ASC" | "client.teamwork_name:ASC" | "client.is_active:ASC" | "client.allow_create_utm_link:ASC" | "client.is_paid_media:ASC" | "client.is_organic_social:ASC" | "user.username:ASC" | "user.email:ASC" | "user.confirmed:ASC" | "user.blocked:ASC" | "client.title:DESC" | "client.teamwork_id:DESC" | "client.teamwork_name:DESC" | "client.is_active:DESC" | "client.allow_create_utm_link:DESC" | "client.is_paid_media:DESC" | "client.is_organic_social:DESC" | "user.username:DESC" | "user.email:DESC" | "user.confirmed:DESC" | "user.blocked:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "client.title:ASC" | "client.teamwork_id:ASC" | "client.teamwork_name:ASC" | "client.is_active:ASC" | "client.allow_create_utm_link:ASC" | "client.is_paid_media:ASC" | "client.is_organic_social:ASC" | "user.username:ASC" | "user.email:ASC" | "user.confirmed:ASC" | "user.blocked:ASC" | "client.title:DESC" | "client.teamwork_id:DESC" | "client.teamwork_name:DESC" | "client.is_active:DESC" | "client.allow_create_utm_link:DESC" | "client.is_paid_media:DESC" | "client.is_organic_social:DESC" | "user.username:DESC" | "user.email:DESC" | "user.confirmed:DESC" | "user.blocked:DESC")[], 14, undefined>]>, undefined>;
|
|
380
334
|
type QuerySortClientUsers = v.InferOutput<typeof QuerySortClientUsers>;
|
|
381
335
|
declare const SQueryListClientUserDocuments: v.ObjectSchema<{
|
|
382
336
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
@@ -407,10 +361,8 @@ declare const SVerifyClientUserDocument: v.ObjectSchema<{
|
|
|
407
361
|
}, undefined>;
|
|
408
362
|
type SVerifyClientUserDocument = v.InferOutput<typeof SVerifyClientUserDocument>;
|
|
409
363
|
|
|
410
|
-
declare const
|
|
411
|
-
|
|
412
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
413
|
-
}, undefined>, undefined>;
|
|
364
|
+
declare const ClientSortKeys: readonly ["id", "title", "teamwork_id", "teamwork_name", "utm_sheet_id", "is_active", "is_hidden", "is_featured", "allow_create_utm_link", "is_organic_social", "is_paid_media", "createdAt", "updatedAt"];
|
|
365
|
+
declare const QuerySortClients: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "is_featured:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "is_featured:DESC" | "is_active:ASC" | "is_active:DESC" | "is_organic_social:ASC" | "is_paid_media:ASC" | "is_organic_social:DESC" | "is_paid_media:DESC" | "is_hidden:ASC" | "is_hidden:DESC" | "teamwork_id:ASC" | "teamwork_name:ASC" | "utm_sheet_id:ASC" | "allow_create_utm_link:ASC" | "teamwork_id:DESC" | "teamwork_name:DESC" | "utm_sheet_id:DESC" | "allow_create_utm_link:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "is_featured:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "is_featured:DESC" | "is_active:ASC" | "is_active:DESC" | "is_organic_social:ASC" | "is_paid_media:ASC" | "is_organic_social:DESC" | "is_paid_media:DESC" | "is_hidden:ASC" | "is_hidden:DESC" | "teamwork_id:ASC" | "teamwork_name:ASC" | "utm_sheet_id:ASC" | "allow_create_utm_link:ASC" | "teamwork_id:DESC" | "teamwork_name:DESC" | "utm_sheet_id:DESC" | "allow_create_utm_link:DESC")[], 13, undefined>]>, undefined>;
|
|
414
366
|
type QuerySortClients = v.InferOutput<typeof QuerySortClients>;
|
|
415
367
|
declare const QueryStrapiSearchClients: v.ObjectSchema<{
|
|
416
368
|
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
@@ -427,10 +379,7 @@ declare const QueryStrapiSearchClients: v.ObjectSchema<{
|
|
|
427
379
|
readonly is_paid_media: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
428
380
|
readonly is_organic_social: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
429
381
|
readonly classification: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<readonly ["organic", "paid"], undefined>, undefined>, v.MaxLengthAction<("organic" | "paid")[], 2, undefined>]>, undefined>;
|
|
430
|
-
readonly sort: v.OptionalSchema<v.
|
|
431
|
-
readonly key: v.PicklistSchema<["id", "title", "teamwork_id", "teamwork_name", "utm_sheet_id", "is_active", "is_hidden", "is_featured", "allow_create_utm_link", "is_organic_social", "is_paid_media", "createdAt", "updatedAt"], undefined>;
|
|
432
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
433
|
-
}, undefined>, undefined>;
|
|
382
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "is_featured:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "is_featured:DESC" | "is_active:ASC" | "is_active:DESC" | "is_organic_social:ASC" | "is_paid_media:ASC" | "is_organic_social:DESC" | "is_paid_media:DESC" | "is_hidden:ASC" | "is_hidden:DESC" | "teamwork_id:ASC" | "teamwork_name:ASC" | "utm_sheet_id:ASC" | "allow_create_utm_link:ASC" | "teamwork_id:DESC" | "teamwork_name:DESC" | "utm_sheet_id:DESC" | "allow_create_utm_link:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "is_featured:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "is_featured:DESC" | "is_active:ASC" | "is_active:DESC" | "is_organic_social:ASC" | "is_paid_media:ASC" | "is_organic_social:DESC" | "is_paid_media:DESC" | "is_hidden:ASC" | "is_hidden:DESC" | "teamwork_id:ASC" | "teamwork_name:ASC" | "utm_sheet_id:ASC" | "allow_create_utm_link:ASC" | "teamwork_id:DESC" | "teamwork_name:DESC" | "utm_sheet_id:DESC" | "allow_create_utm_link:DESC")[], 13, undefined>]>, undefined>;
|
|
434
383
|
}, undefined>;
|
|
435
384
|
type QueryStrapiSearchClients = v.InferOutput<typeof QueryStrapiSearchClients>;
|
|
436
385
|
declare const SCreateClientDocument: v.ObjectSchema<{
|
|
@@ -482,12 +431,10 @@ declare const SUpdateClientDocumentRequest: v.ObjectSchema<{
|
|
|
482
431
|
}, undefined>;
|
|
483
432
|
type SUpdateClientDocumentRequest = v.InferOutput<typeof SUpdateClientDocumentRequest>;
|
|
484
433
|
|
|
485
|
-
declare const
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
type QueryStrapiSortComments = v.InferOutput<typeof QueryStrapiSortComments>;
|
|
490
|
-
declare const QueryStrapiFilterComments: v.ObjectSchema<{
|
|
434
|
+
declare const StrapiCommentSortKeys: readonly ["id", "content", "blocked", "blockedThread", "approvalStatus", "createdAt", "updatedAt"];
|
|
435
|
+
declare const QuerySortStrapiComments: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "blocked:ASC" | "content:ASC" | "blockedThread:ASC" | "approvalStatus:ASC" | "blocked:DESC" | "content:DESC" | "blockedThread:DESC" | "approvalStatus:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "blocked:ASC" | "content:ASC" | "blockedThread:ASC" | "approvalStatus:ASC" | "blocked:DESC" | "content:DESC" | "blockedThread:DESC" | "approvalStatus:DESC")[], 7, undefined>]>, undefined>;
|
|
436
|
+
type QuerySortStrapiComments = v.InferOutput<typeof QuerySortStrapiComments>;
|
|
437
|
+
declare const QueryFilterStrapiComments: v.ObjectSchema<{
|
|
491
438
|
readonly approvalStatus: v.OptionalSchema<v.ObjectSchema<{
|
|
492
439
|
readonly eq: v.PicklistSchema<("PENDING" | "APPROVED" | "REJECTED")[], undefined>;
|
|
493
440
|
}, undefined>, undefined>;
|
|
@@ -510,13 +457,10 @@ declare const QueryStrapiFilterComments: v.ObjectSchema<{
|
|
|
510
457
|
readonly eq: v.BooleanSchema<undefined>;
|
|
511
458
|
}, undefined>, undefined>;
|
|
512
459
|
}, undefined>;
|
|
513
|
-
type
|
|
460
|
+
type QueryFilterStrapiComments = v.InferOutput<typeof QueryFilterStrapiComments>;
|
|
514
461
|
declare const QueryStrapiCommentsInHeirarchy: v.ObjectSchema<{
|
|
515
462
|
readonly relation: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
|
|
516
|
-
readonly sort: v.OptionalSchema<v.ArraySchema<v.
|
|
517
|
-
readonly key: v.PicklistSchema<["id", "content", "blocked", "blockedThread", "approvalStatus", "createdAt", "updatedAt"], undefined>;
|
|
518
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
519
|
-
}, undefined>, undefined>, undefined>;
|
|
463
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "blocked:ASC" | "content:ASC" | "blockedThread:ASC" | "approvalStatus:ASC" | "blocked:DESC" | "content:DESC" | "blockedThread:DESC" | "approvalStatus:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "blocked:ASC" | "content:ASC" | "blockedThread:ASC" | "approvalStatus:ASC" | "blocked:DESC" | "content:DESC" | "blockedThread:DESC" | "approvalStatus:DESC")[], 7, undefined>]>, undefined>;
|
|
520
464
|
readonly filters: v.OptionalSchema<v.ObjectSchema<{
|
|
521
465
|
readonly approvalStatus: v.OptionalSchema<v.ObjectSchema<{
|
|
522
466
|
readonly eq: v.PicklistSchema<("PENDING" | "APPROVED" | "REJECTED")[], undefined>;
|
|
@@ -572,10 +516,7 @@ declare const QueryStrapiCommentsFlat: v.ObjectSchema<{
|
|
|
572
516
|
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
573
517
|
readonly pageSize: v.OptionalSchema<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>, undefined>;
|
|
574
518
|
}, undefined>, undefined>;
|
|
575
|
-
readonly sort: v.OptionalSchema<v.ArraySchema<v.
|
|
576
|
-
readonly key: v.PicklistSchema<["id", "content", "blocked", "blockedThread", "approvalStatus", "createdAt", "updatedAt"], undefined>;
|
|
577
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
578
|
-
}, undefined>, undefined>, undefined>;
|
|
519
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "blocked:ASC" | "content:ASC" | "blockedThread:ASC" | "approvalStatus:ASC" | "blocked:DESC" | "content:DESC" | "blockedThread:DESC" | "approvalStatus:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "blocked:ASC" | "content:ASC" | "blockedThread:ASC" | "approvalStatus:ASC" | "blocked:DESC" | "content:DESC" | "blockedThread:DESC" | "approvalStatus:DESC")[], 7, undefined>]>, undefined>;
|
|
579
520
|
}, undefined>;
|
|
580
521
|
type QueryStrapiCommentsFlat = v.InferOutput<typeof QueryStrapiCommentsFlat>;
|
|
581
522
|
declare const SCreateCommentDocument: v.ObjectSchema<{
|
|
@@ -613,20 +554,15 @@ declare const SReportCommentDocument: v.ObjectSchema<{
|
|
|
613
554
|
}, undefined>;
|
|
614
555
|
type SReportCommentDocument = v.InferOutput<typeof SReportCommentDocument>;
|
|
615
556
|
|
|
616
|
-
declare const
|
|
617
|
-
|
|
618
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
619
|
-
}, undefined>, undefined>;
|
|
557
|
+
declare const ContentPillarSortKeys: readonly ["id", "title", "slug", "createdAt", "updatedAt"];
|
|
558
|
+
declare const QuerySortContentPillars: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC")[], 5, undefined>]>, undefined>;
|
|
620
559
|
type QuerySortContentPillars = v.InferOutput<typeof QuerySortContentPillars>;
|
|
621
560
|
declare const QueryStrapiSearchContentPillars: v.ObjectSchema<{
|
|
622
561
|
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
623
562
|
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
624
563
|
readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
625
564
|
readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
626
|
-
readonly sort: v.OptionalSchema<v.
|
|
627
|
-
readonly key: v.PicklistSchema<["id", "title", "slug", "createdAt", "updatedAt"], undefined>;
|
|
628
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
629
|
-
}, undefined>, undefined>;
|
|
565
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC")[], 5, undefined>]>, undefined>;
|
|
630
566
|
}, undefined>;
|
|
631
567
|
type QueryStrapiSearchContentPillars = v.InferOutput<typeof QueryStrapiSearchContentPillars>;
|
|
632
568
|
declare const SCreateContentPillarDocument: v.ObjectSchema<{
|
|
@@ -651,10 +587,8 @@ declare const SUpdateContentPillarDocumentRequest: v.ObjectSchema<{
|
|
|
651
587
|
}, undefined>;
|
|
652
588
|
type SUpdateContentPillarDocumentRequest = v.InferOutput<typeof SUpdateContentPillarDocumentRequest>;
|
|
653
589
|
|
|
654
|
-
declare const
|
|
655
|
-
|
|
656
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
657
|
-
}, undefined>, undefined>;
|
|
590
|
+
declare const GCFlyTourSnapSortKeys: readonly ["id", "title", "slug", "utm_key", "is_active", "is_hidden", "createdAt", "updatedAt"];
|
|
591
|
+
declare const QuerySortGCFlyTourSnaps: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC" | "is_active:ASC" | "is_active:DESC" | "is_hidden:ASC" | "is_hidden:DESC" | "utm_key:ASC" | "utm_key:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC" | "is_active:ASC" | "is_active:DESC" | "is_hidden:ASC" | "is_hidden:DESC" | "utm_key:ASC" | "utm_key:DESC")[], 8, undefined>]>, undefined>;
|
|
658
592
|
type QuerySortGCFlyTourSnaps = v.InferOutput<typeof QuerySortGCFlyTourSnaps>;
|
|
659
593
|
declare const QueryStrapiSearchGCFlyTourSnaps: v.ObjectSchema<{
|
|
660
594
|
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
@@ -666,10 +600,7 @@ declare const QueryStrapiSearchGCFlyTourSnaps: v.ObjectSchema<{
|
|
|
666
600
|
readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
667
601
|
readonly gcflytour: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
668
602
|
readonly gcflytours: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
|
|
669
|
-
readonly sort: v.OptionalSchema<v.
|
|
670
|
-
readonly key: v.PicklistSchema<["id", "title", "slug", "utm_key", "is_active", "is_hidden", "createdAt", "updatedAt"], undefined>;
|
|
671
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
672
|
-
}, undefined>, undefined>;
|
|
603
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC" | "is_active:ASC" | "is_active:DESC" | "is_hidden:ASC" | "is_hidden:DESC" | "utm_key:ASC" | "utm_key:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC" | "is_active:ASC" | "is_active:DESC" | "is_hidden:ASC" | "is_hidden:DESC" | "utm_key:ASC" | "utm_key:DESC")[], 8, undefined>]>, undefined>;
|
|
673
604
|
}, undefined>;
|
|
674
605
|
type QueryStrapiSearchGCFlyTourSnaps = v.InferOutput<typeof QueryStrapiSearchGCFlyTourSnaps>;
|
|
675
606
|
declare const SCreateGCFlyTourSnapDocument: v.ObjectSchema<{
|
|
@@ -706,10 +637,8 @@ declare const SUpdateGCFlyTourSnapDocumentRequest: v.ObjectSchema<{
|
|
|
706
637
|
}, undefined>;
|
|
707
638
|
type SUpdateGCFlyTourSnapDocumentRequest = v.InferOutput<typeof SUpdateGCFlyTourSnapDocumentRequest>;
|
|
708
639
|
|
|
709
|
-
declare const
|
|
710
|
-
|
|
711
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
712
|
-
}, undefined>, undefined>;
|
|
640
|
+
declare const GCFlyTourSortKeys: readonly ["id", "title", "slug", "utm_key", "is_active", "is_hidden", "createdAt", "updatedAt"];
|
|
641
|
+
declare const QuerySortGCFlyTours: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC" | "is_active:ASC" | "is_active:DESC" | "is_hidden:ASC" | "is_hidden:DESC" | "utm_key:ASC" | "utm_key:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC" | "is_active:ASC" | "is_active:DESC" | "is_hidden:ASC" | "is_hidden:DESC" | "utm_key:ASC" | "utm_key:DESC")[], 8, undefined>]>, undefined>;
|
|
713
642
|
type QuerySortGCFlyTours = v.InferOutput<typeof QuerySortGCFlyTours>;
|
|
714
643
|
declare const QueryStrapiSearchGCFlyTours: v.ObjectSchema<{
|
|
715
644
|
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
@@ -720,10 +649,7 @@ declare const QueryStrapiSearchGCFlyTours: v.ObjectSchema<{
|
|
|
720
649
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
721
650
|
readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
722
651
|
readonly clients: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
|
|
723
|
-
readonly sort: v.OptionalSchema<v.
|
|
724
|
-
readonly key: v.PicklistSchema<["id", "title", "slug", "utm_key", "is_active", "is_hidden", "createdAt", "updatedAt"], undefined>;
|
|
725
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
726
|
-
}, undefined>, undefined>;
|
|
652
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC" | "is_active:ASC" | "is_active:DESC" | "is_hidden:ASC" | "is_hidden:DESC" | "utm_key:ASC" | "utm_key:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC" | "is_active:ASC" | "is_active:DESC" | "is_hidden:ASC" | "is_hidden:DESC" | "utm_key:ASC" | "utm_key:DESC")[], 8, undefined>]>, undefined>;
|
|
727
653
|
}, undefined>;
|
|
728
654
|
type QueryStrapiSearchGCFlyTours = v.InferOutput<typeof QueryStrapiSearchGCFlyTours>;
|
|
729
655
|
declare const SCreateGCFlyTourDocument: v.ObjectSchema<{
|
|
@@ -770,18 +696,13 @@ declare const SAssociateGcFlyTourSnapsToGCFlyTour: v.ObjectSchema<{
|
|
|
770
696
|
}, undefined>;
|
|
771
697
|
type SAssociateGcFlyTourSnapsToGCFlyTour = v.InferOutput<typeof SAssociateGcFlyTourSnapsToGCFlyTour>;
|
|
772
698
|
|
|
773
|
-
declare const
|
|
774
|
-
|
|
775
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
776
|
-
}, undefined>, undefined>;
|
|
699
|
+
declare const EntitySortKeys: readonly ["id", "createdAt", "updatedAt"];
|
|
700
|
+
declare const QuerySortEntities: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC")[], 3, undefined>]>, undefined>;
|
|
777
701
|
type QuerySortEntities = v.InferOutput<typeof QuerySortEntities>;
|
|
778
702
|
declare const QueryStrapiPaginated: v.ObjectSchema<{
|
|
779
703
|
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
780
704
|
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
781
|
-
readonly sort: v.OptionalSchema<v.
|
|
782
|
-
readonly key: v.PicklistSchema<["id", "createdAt", "updatedAt"], undefined>;
|
|
783
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
784
|
-
}, undefined>, undefined>;
|
|
705
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC")[], 3, undefined>]>, undefined>;
|
|
785
706
|
}, undefined>;
|
|
786
707
|
type QueryStrapiPaginated = v.InferOutput<typeof QueryStrapiPaginated>;
|
|
787
708
|
declare const QueryStrapiById: v.ObjectSchema<{
|
|
@@ -794,34 +715,22 @@ declare const QueryStrapiByDocumentId: v.ObjectSchema<{
|
|
|
794
715
|
type QueryStrapiByDocumentId = v.InferOutput<typeof QueryStrapiByDocumentId>;
|
|
795
716
|
declare const QueryStrapiBySlug: v.ObjectSchema<{
|
|
796
717
|
readonly slug: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
797
|
-
readonly sort: v.OptionalSchema<v.
|
|
798
|
-
readonly key: v.PicklistSchema<["id", "createdAt", "updatedAt"], undefined>;
|
|
799
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
800
|
-
}, undefined>, undefined>;
|
|
718
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC")[], 3, undefined>]>, undefined>;
|
|
801
719
|
}, undefined>;
|
|
802
720
|
type QueryStrapiBySlug = v.InferOutput<typeof QueryStrapiBySlug>;
|
|
803
721
|
declare const QueryStrapiByEmail: v.ObjectSchema<{
|
|
804
722
|
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 5, undefined>, v.MaxLengthAction<string, 255, undefined>, v.EmailAction<string, undefined>]>;
|
|
805
|
-
readonly sort: v.OptionalSchema<v.
|
|
806
|
-
readonly key: v.PicklistSchema<["id", "createdAt", "updatedAt"], undefined>;
|
|
807
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
808
|
-
}, undefined>, undefined>;
|
|
723
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC")[], 3, undefined>]>, undefined>;
|
|
809
724
|
}, undefined>;
|
|
810
725
|
type QueryStrapiByEmail = v.InferOutput<typeof QueryStrapiByEmail>;
|
|
811
726
|
declare const QueryStrapiByPhone: v.ObjectSchema<{
|
|
812
727
|
readonly phone: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 7, undefined>, v.MaxLengthAction<string, 24, undefined>, v.RegexAction<string, "Please provide a valid phone number.">]>;
|
|
813
|
-
readonly sort: v.OptionalSchema<v.
|
|
814
|
-
readonly key: v.PicklistSchema<["id", "createdAt", "updatedAt"], undefined>;
|
|
815
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
816
|
-
}, undefined>, undefined>;
|
|
728
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC")[], 3, undefined>]>, undefined>;
|
|
817
729
|
}, undefined>;
|
|
818
730
|
type QueryStrapiByPhone = v.InferOutput<typeof QueryStrapiByPhone>;
|
|
819
731
|
declare const QueryStrapiByName: v.ObjectSchema<{
|
|
820
732
|
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
821
|
-
readonly sort: v.OptionalSchema<v.
|
|
822
|
-
readonly key: v.PicklistSchema<["id", "createdAt", "updatedAt"], undefined>;
|
|
823
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
824
|
-
}, undefined>, undefined>;
|
|
733
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC")[], 3, undefined>]>, undefined>;
|
|
825
734
|
}, undefined>;
|
|
826
735
|
type QueryStrapiByName = v.InferOutput<typeof QueryStrapiByName>;
|
|
827
736
|
|
|
@@ -874,10 +783,8 @@ declare const SUpdateLeadRequest: v.ObjectSchema<{
|
|
|
874
783
|
}, undefined>;
|
|
875
784
|
type SUpdateLeadRequest = v.InferOutput<typeof SUpdateLeadRequest>;
|
|
876
785
|
|
|
877
|
-
declare const
|
|
878
|
-
|
|
879
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
880
|
-
}, undefined>, undefined>;
|
|
786
|
+
declare const MediaContentTypeSortKeys: readonly ["id", "title", "slug", "utm_key", "is_active", "is_organic_social", "is_paid_media", "createdAt", "updatedAt"];
|
|
787
|
+
declare const QuerySortMediaContentType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC" | "is_active:ASC" | "is_active:DESC" | "is_organic_social:ASC" | "is_paid_media:ASC" | "is_organic_social:DESC" | "is_paid_media:DESC" | "utm_key:ASC" | "utm_key:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC" | "is_active:ASC" | "is_active:DESC" | "is_organic_social:ASC" | "is_paid_media:ASC" | "is_organic_social:DESC" | "is_paid_media:DESC" | "utm_key:ASC" | "utm_key:DESC")[], 9, undefined>]>, undefined>;
|
|
881
788
|
type QuerySortMediaContentType = v.InferOutput<typeof QuerySortMediaContentType>;
|
|
882
789
|
declare const QueryStrapiSearchMediaContentTypes: v.ObjectSchema<{
|
|
883
790
|
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
@@ -889,10 +796,7 @@ declare const QueryStrapiSearchMediaContentTypes: v.ObjectSchema<{
|
|
|
889
796
|
readonly is_organic_social: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
890
797
|
readonly is_paid_media: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
891
798
|
readonly media_platforms: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
|
|
892
|
-
readonly sort: v.OptionalSchema<v.
|
|
893
|
-
readonly key: v.PicklistSchema<["id", "title", "slug", "utm_key", "is_active", "is_organic_social", "is_paid_media", "createdAt", "updatedAt"], undefined>;
|
|
894
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
895
|
-
}, undefined>, undefined>;
|
|
799
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC" | "is_active:ASC" | "is_active:DESC" | "is_organic_social:ASC" | "is_paid_media:ASC" | "is_organic_social:DESC" | "is_paid_media:DESC" | "utm_key:ASC" | "utm_key:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC" | "is_active:ASC" | "is_active:DESC" | "is_organic_social:ASC" | "is_paid_media:ASC" | "is_organic_social:DESC" | "is_paid_media:DESC" | "utm_key:ASC" | "utm_key:DESC")[], 9, undefined>]>, undefined>;
|
|
896
800
|
}, undefined>;
|
|
897
801
|
type QueryStrapiSearchMediaContentTypes = v.InferOutput<typeof QueryStrapiSearchMediaContentTypes>;
|
|
898
802
|
declare const SCreateMediaContentTypeDocument: v.ObjectSchema<{
|
|
@@ -939,10 +843,8 @@ declare const SAssociateClientMediaPlatformContentTypesToMediaContentType: v.Obj
|
|
|
939
843
|
}, undefined>;
|
|
940
844
|
type SAssociateClientMediaPlatformContentTypesToMediaContentType = v.InferOutput<typeof SAssociateClientMediaPlatformContentTypesToMediaContentType>;
|
|
941
845
|
|
|
942
|
-
declare const
|
|
943
|
-
|
|
944
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
945
|
-
}, undefined>, undefined>;
|
|
846
|
+
declare const MediaPlatformSortKeys: readonly ["id", "title", "slug", "utm_key", "is_active", "is_organic_social", "is_paid_media", "createdAt", "updatedAt"];
|
|
847
|
+
declare const QuerySortMediaPlatforms: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC" | "is_active:ASC" | "is_active:DESC" | "is_organic_social:ASC" | "is_paid_media:ASC" | "is_organic_social:DESC" | "is_paid_media:DESC" | "utm_key:ASC" | "utm_key:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC" | "is_active:ASC" | "is_active:DESC" | "is_organic_social:ASC" | "is_paid_media:ASC" | "is_organic_social:DESC" | "is_paid_media:DESC" | "utm_key:ASC" | "utm_key:DESC")[], 9, undefined>]>, undefined>;
|
|
946
848
|
type QuerySortMediaPlatforms = v.InferOutput<typeof QuerySortMediaPlatforms>;
|
|
947
849
|
declare const QueryStrapiSearchMediaPlatforms: v.ObjectSchema<{
|
|
948
850
|
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
@@ -954,10 +856,7 @@ declare const QueryStrapiSearchMediaPlatforms: v.ObjectSchema<{
|
|
|
954
856
|
readonly is_organic_social: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
955
857
|
readonly is_paid_media: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
956
858
|
readonly media_content_types: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
|
|
957
|
-
readonly sort: v.OptionalSchema<v.
|
|
958
|
-
readonly key: v.PicklistSchema<["id", "title", "slug", "utm_key", "is_active", "is_organic_social", "is_paid_media", "createdAt", "updatedAt"], undefined>;
|
|
959
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
960
|
-
}, undefined>, undefined>;
|
|
859
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC" | "is_active:ASC" | "is_active:DESC" | "is_organic_social:ASC" | "is_paid_media:ASC" | "is_organic_social:DESC" | "is_paid_media:DESC" | "utm_key:ASC" | "utm_key:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "slug:DESC" | "is_active:ASC" | "is_active:DESC" | "is_organic_social:ASC" | "is_paid_media:ASC" | "is_organic_social:DESC" | "is_paid_media:DESC" | "utm_key:ASC" | "utm_key:DESC")[], 9, undefined>]>, undefined>;
|
|
961
860
|
}, undefined>;
|
|
962
861
|
type QueryStrapiSearchMediaPlatforms = v.InferOutput<typeof QueryStrapiSearchMediaPlatforms>;
|
|
963
862
|
declare const SCreateMediaPlatformDocument: v.ObjectSchema<{
|
|
@@ -1076,7 +975,6 @@ declare const SCreateResumeInfo: v.ObjectSchema<{
|
|
|
1076
975
|
readonly social_profiles: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, undefined>, v.CheckAction<string, "Please enter a list of URLs separated by commas.">]>, undefined>;
|
|
1077
976
|
readonly file: v.ObjectSchema<{
|
|
1078
977
|
readonly id: v.NumberSchema<undefined>;
|
|
1079
|
-
readonly src: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1080
978
|
}, undefined>;
|
|
1081
979
|
readonly email_consent: v.BooleanSchema<undefined>;
|
|
1082
980
|
readonly sms_consent: v.BooleanSchema<undefined>;
|
|
@@ -1093,7 +991,6 @@ declare const SCreateResumeInfoDocument: v.ObjectSchema<{
|
|
|
1093
991
|
readonly social_profiles: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, undefined>, v.CheckAction<string, "Please enter a list of URLs separated by commas.">]>, undefined>;
|
|
1094
992
|
readonly file: v.ObjectSchema<{
|
|
1095
993
|
readonly id: v.NumberSchema<undefined>;
|
|
1096
|
-
readonly src: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1097
994
|
}, undefined>;
|
|
1098
995
|
readonly email_consent: v.BooleanSchema<undefined>;
|
|
1099
996
|
readonly sms_consent: v.BooleanSchema<undefined>;
|
|
@@ -1110,7 +1007,6 @@ declare const SUpdateResumeInfo: v.ObjectSchema<{
|
|
|
1110
1007
|
readonly social_profiles: v.OptionalSchema<v.NullableSchema<v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, undefined>, v.CheckAction<string, "Please enter a list of URLs separated by commas.">]>, undefined>, undefined>, undefined>;
|
|
1111
1008
|
readonly file: v.OptionalSchema<v.ObjectSchema<{
|
|
1112
1009
|
readonly id: v.NumberSchema<undefined>;
|
|
1113
|
-
readonly src: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1114
1010
|
}, undefined>, undefined>;
|
|
1115
1011
|
readonly email_consent: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1116
1012
|
readonly sms_consent: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -1127,7 +1023,6 @@ declare const SUpdateResumeInfoDocument: v.ObjectSchema<{
|
|
|
1127
1023
|
readonly social_profiles: v.OptionalSchema<v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, undefined>, v.CheckAction<string, "Please enter a list of URLs separated by commas.">]>, undefined>, undefined>;
|
|
1128
1024
|
readonly file: v.OptionalSchema<v.ObjectSchema<{
|
|
1129
1025
|
readonly id: v.NumberSchema<undefined>;
|
|
1130
|
-
readonly src: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1131
1026
|
}, undefined>, undefined>;
|
|
1132
1027
|
readonly email_consent: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1133
1028
|
readonly sms_consent: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -1146,7 +1041,6 @@ declare const SUpdateResumeInfoRequest: v.ObjectSchema<{
|
|
|
1146
1041
|
readonly social_profiles: v.OptionalSchema<v.NullableSchema<v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, undefined>, v.CheckAction<string, "Please enter a list of URLs separated by commas.">]>, undefined>, undefined>, undefined>;
|
|
1147
1042
|
readonly file: v.OptionalSchema<v.ObjectSchema<{
|
|
1148
1043
|
readonly id: v.NumberSchema<undefined>;
|
|
1149
|
-
readonly src: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1150
1044
|
}, undefined>, undefined>;
|
|
1151
1045
|
readonly email_consent: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1152
1046
|
readonly sms_consent: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -1488,10 +1382,38 @@ declare const SUpdateStrapiMediaFileInfo: v.ObjectSchema<{
|
|
|
1488
1382
|
}, undefined>;
|
|
1489
1383
|
type SUpdateStrapiMediaFileInfo = v.InferOutput<typeof SUpdateStrapiMediaFileInfo>;
|
|
1490
1384
|
|
|
1491
|
-
declare const
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1385
|
+
declare const TagSortKeys: readonly ["id", "label", "slug", "createdAt", "updatedAt"];
|
|
1386
|
+
declare const QuerySortTags: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "slug:DESC" | "label:ASC" | "label:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "slug:DESC" | "label:ASC" | "label:DESC")[], 5, undefined>]>, undefined>;
|
|
1387
|
+
type QuerySortTags = v.InferOutput<typeof QuerySortTags>;
|
|
1388
|
+
declare const QueryStrapiSearchTags: v.ObjectSchema<{
|
|
1389
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
1390
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
1391
|
+
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
1392
|
+
readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
1393
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "slug:DESC" | "label:ASC" | "label:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "slug:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "slug:DESC" | "label:ASC" | "label:DESC")[], 5, undefined>]>, undefined>;
|
|
1394
|
+
}, undefined>;
|
|
1395
|
+
type QueryStrapiSearchTags = v.InferOutput<typeof QueryStrapiSearchTags>;
|
|
1396
|
+
declare const SCreateTagDocument: v.ObjectSchema<{
|
|
1397
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
|
|
1398
|
+
readonly slug: v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>]>;
|
|
1399
|
+
}, undefined>;
|
|
1400
|
+
type SCreateTagDocument = v.InferOutput<typeof SCreateTagDocument>;
|
|
1401
|
+
declare const SUpdateTagDocument: v.ObjectSchema<{
|
|
1402
|
+
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
1403
|
+
readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>;
|
|
1404
|
+
}, undefined>;
|
|
1405
|
+
type SUpdateTagDocument = v.InferOutput<typeof SUpdateTagDocument>;
|
|
1406
|
+
declare const SUpdateTagDocumentRequest: v.ObjectSchema<{
|
|
1407
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
|
|
1408
|
+
readonly data: v.ObjectSchema<{
|
|
1409
|
+
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
1410
|
+
readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>;
|
|
1411
|
+
}, undefined>;
|
|
1412
|
+
}, undefined>;
|
|
1413
|
+
type SUpdateTagDocumentRequest = v.InferOutput<typeof SUpdateTagDocumentRequest>;
|
|
1414
|
+
|
|
1415
|
+
declare const TeamMemberSortKeys: readonly ["id", "name", "order", "tier", "group", "is_employed", "createdAt", "updatedAt"];
|
|
1416
|
+
declare const QuerySortTeamMembers: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "name:ASC" | "order:ASC" | "tier:ASC" | "group:ASC" | "is_employed:ASC" | "name:DESC" | "order:DESC" | "tier:DESC" | "group:DESC" | "is_employed:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "name:ASC" | "order:ASC" | "tier:ASC" | "group:ASC" | "is_employed:ASC" | "name:DESC" | "order:DESC" | "tier:DESC" | "group:DESC" | "is_employed:DESC")[], 8, undefined>]>, undefined>;
|
|
1495
1417
|
type QuerySortTeamMembers = v.InferOutput<typeof QuerySortTeamMembers>;
|
|
1496
1418
|
declare const QueryStrapiSearchTeamMembers: v.ObjectSchema<{
|
|
1497
1419
|
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
@@ -1502,10 +1424,7 @@ declare const QueryStrapiSearchTeamMembers: v.ObjectSchema<{
|
|
|
1502
1424
|
readonly tier: v.OptionalSchema<v.PicklistSchema<["owner", "manager", "employee"], undefined>, undefined>;
|
|
1503
1425
|
readonly group: v.OptionalSchema<v.PicklistSchema<["account", "media", "creative"], undefined>, undefined>;
|
|
1504
1426
|
readonly is_employed: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1505
|
-
readonly sort: v.OptionalSchema<v.
|
|
1506
|
-
readonly key: v.PicklistSchema<["id", "name", "order", "tier", "group", "is_employed", "createdAt", "updatedAt"], undefined>;
|
|
1507
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
1508
|
-
}, undefined>, undefined>;
|
|
1427
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "name:ASC" | "order:ASC" | "tier:ASC" | "group:ASC" | "is_employed:ASC" | "name:DESC" | "order:DESC" | "tier:DESC" | "group:DESC" | "is_employed:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "name:ASC" | "order:ASC" | "tier:ASC" | "group:ASC" | "is_employed:ASC" | "name:DESC" | "order:DESC" | "tier:DESC" | "group:DESC" | "is_employed:DESC")[], 8, undefined>]>, undefined>;
|
|
1509
1428
|
}, undefined>;
|
|
1510
1429
|
type QueryStrapiSearchTeamMembers = v.InferOutput<typeof QueryStrapiSearchTeamMembers>;
|
|
1511
1430
|
|
|
@@ -1517,6 +1436,7 @@ declare const TeamworkProjectHealthSelectSortOptions: readonly [{
|
|
|
1517
1436
|
readonly value: "health";
|
|
1518
1437
|
}];
|
|
1519
1438
|
type TeamworkProjectHealthSortKey = (typeof TeamworkProjectHealthSelectSortOptions)[number]["value"];
|
|
1439
|
+
declare const TeamworkProjectHealthSortKeys: TeamworkProjectHealthSortKey[];
|
|
1520
1440
|
declare const TeamworkProjectHealthProjectStatusOptions: readonly [{
|
|
1521
1441
|
readonly label: "Active";
|
|
1522
1442
|
readonly value: "active";
|
|
@@ -1543,10 +1463,7 @@ declare const TeamworkProjectHealthProjectStatusOptions: readonly [{
|
|
|
1543
1463
|
readonly description: "Projects that have been archived";
|
|
1544
1464
|
}];
|
|
1545
1465
|
type TeamworkProjectHealthProjectStatus = (typeof TeamworkProjectHealthProjectStatusOptions)[number]["value"];
|
|
1546
|
-
declare const QuerySortTeamworkProjectHealth: v.OptionalSchema<v.
|
|
1547
|
-
readonly key: v.PicklistSchema<("name" | "health")[], undefined>;
|
|
1548
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
1549
|
-
}, undefined>, undefined>;
|
|
1466
|
+
declare const QuerySortTeamworkProjectHealth: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("name:ASC" | "name:DESC" | "health:ASC" | "health:DESC")[], undefined>, undefined>, v.MaxLengthAction<("name:ASC" | "name:DESC" | "health:ASC" | "health:DESC")[], number, undefined>]>, undefined>;
|
|
1550
1467
|
type QuerySortTeamworkProjectHealth = v.InferOutput<typeof QuerySortTeamworkProjectHealth>;
|
|
1551
1468
|
declare const QueryStrapiSearchTeamworkProjectHealth: v.ObjectSchema<{
|
|
1552
1469
|
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
@@ -1560,10 +1477,7 @@ declare const QueryStrapiSearchTeamworkProjectHealth: v.ObjectSchema<{
|
|
|
1560
1477
|
readonly projectTagIds: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
1561
1478
|
readonly projectHealths: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
1562
1479
|
readonly projectStatuses: v.OptionalSchema<v.PicklistSchema<("active" | "current" | "late" | "upcoming" | "completed" | "archived")[], undefined>, "active">;
|
|
1563
|
-
readonly sort: v.OptionalSchema<v.
|
|
1564
|
-
readonly key: v.PicklistSchema<("name" | "health")[], undefined>;
|
|
1565
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
1566
|
-
}, undefined>, undefined>;
|
|
1480
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("name:ASC" | "name:DESC" | "health:ASC" | "health:DESC")[], undefined>, undefined>, v.MaxLengthAction<("name:ASC" | "name:DESC" | "health:ASC" | "health:DESC")[], number, undefined>]>, undefined>;
|
|
1567
1481
|
}, undefined>;
|
|
1568
1482
|
type QueryStrapiSearchTeamworkProjectHealth = v.InferOutput<typeof QueryStrapiSearchTeamworkProjectHealth>;
|
|
1569
1483
|
|
|
@@ -1573,18 +1487,13 @@ declare const SUpdateTrendsLikes: v.ObjectSchema<{
|
|
|
1573
1487
|
}, undefined>;
|
|
1574
1488
|
type SUpdateTrendsLikes = v.InferOutput<typeof SUpdateTrendsLikes>;
|
|
1575
1489
|
|
|
1576
|
-
declare const
|
|
1577
|
-
|
|
1578
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
1579
|
-
}, undefined>, undefined>;
|
|
1490
|
+
declare const UrlRedirectSortKeys: readonly ["id", "from", "to", "status_code", "query_params", "is_active", "createdAt", "updatedAt"];
|
|
1491
|
+
declare const QuerySortUrlRedirects: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:ASC" | "is_active:DESC" | "from:ASC" | "to:ASC" | "status_code:ASC" | "query_params:ASC" | "from:DESC" | "to:DESC" | "status_code:DESC" | "query_params:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:ASC" | "is_active:DESC" | "from:ASC" | "to:ASC" | "status_code:ASC" | "query_params:ASC" | "from:DESC" | "to:DESC" | "status_code:DESC" | "query_params:DESC")[], 8, undefined>]>, undefined>;
|
|
1580
1492
|
type QuerySortUrlRedirects = v.InferOutput<typeof QuerySortUrlRedirects>;
|
|
1581
1493
|
declare const QueryStrapiPaginatedUrlRedirects: v.ObjectSchema<{
|
|
1582
1494
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>, 1>, 1>;
|
|
1583
1495
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 20, undefined>]>, 1000>, 1000>;
|
|
1584
|
-
readonly sort: v.OptionalSchema<v.
|
|
1585
|
-
readonly key: v.PicklistSchema<["id", "from", "to", "status_code", "query_params", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1586
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
1587
|
-
}, undefined>, undefined>;
|
|
1496
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:ASC" | "is_active:DESC" | "from:ASC" | "to:ASC" | "status_code:ASC" | "query_params:ASC" | "from:DESC" | "to:DESC" | "status_code:DESC" | "query_params:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:ASC" | "is_active:DESC" | "from:ASC" | "to:ASC" | "status_code:ASC" | "query_params:ASC" | "from:DESC" | "to:DESC" | "status_code:DESC" | "query_params:DESC")[], 8, undefined>]>, undefined>;
|
|
1588
1497
|
}, undefined>;
|
|
1589
1498
|
type QueryStrapiPaginatedUrlRedirects = v.InferOutput<typeof QueryStrapiPaginatedUrlRedirects>;
|
|
1590
1499
|
declare const QueryStrapiUrlRedirectsByFrom: v.ObjectSchema<{
|
|
@@ -1705,18 +1614,13 @@ declare const SAuthConnectProviderConfirmation: v.ObjectSchema<{
|
|
|
1705
1614
|
}, undefined>;
|
|
1706
1615
|
type SAuthConnectProviderConfirmation = v.InferOutput<typeof SAuthConnectProviderConfirmation>;
|
|
1707
1616
|
|
|
1708
|
-
declare const
|
|
1709
|
-
|
|
1710
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
1711
|
-
}, undefined>, undefined>;
|
|
1617
|
+
declare const UserSortKeys: readonly ["id", "username", "email", "confirmed", "blocked", "createdAt", "updatedAt"];
|
|
1618
|
+
declare const QuerySortUsers: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "blocked:ASC" | "blocked:DESC" | "email:ASC" | "username:ASC" | "confirmed:ASC" | "email:DESC" | "username:DESC" | "confirmed:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "blocked:ASC" | "blocked:DESC" | "email:ASC" | "username:ASC" | "confirmed:ASC" | "email:DESC" | "username:DESC" | "confirmed:DESC")[], 7, undefined>]>, undefined>;
|
|
1712
1619
|
type QuerySortUsers = v.InferOutput<typeof QuerySortUsers>;
|
|
1713
1620
|
declare const QueryStrapiUsers: v.ObjectSchema<{
|
|
1714
1621
|
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
1715
1622
|
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
1716
|
-
readonly sort: v.OptionalSchema<v.
|
|
1717
|
-
readonly key: v.PicklistSchema<["id", "username", "email", "confirmed", "blocked", "createdAt", "updatedAt"], undefined>;
|
|
1718
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
1719
|
-
}, undefined>, undefined>;
|
|
1623
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "blocked:ASC" | "blocked:DESC" | "email:ASC" | "username:ASC" | "confirmed:ASC" | "email:DESC" | "username:DESC" | "confirmed:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "blocked:ASC" | "blocked:DESC" | "email:ASC" | "username:ASC" | "confirmed:ASC" | "email:DESC" | "username:DESC" | "confirmed:DESC")[], 7, undefined>]>, undefined>;
|
|
1720
1624
|
}, undefined>;
|
|
1721
1625
|
type QueryStrapiUsers = v.InferOutput<typeof QueryStrapiUsers>;
|
|
1722
1626
|
declare const QueryStrapiUsersByIdentifier: v.ObjectSchema<{
|
|
@@ -1781,10 +1685,8 @@ declare const SUtmLinkBuilderTableForm: v.ObjectSchema<{
|
|
|
1781
1685
|
}, undefined>;
|
|
1782
1686
|
type SUtmLinkBuilderTableForm = v.InferOutput<typeof SUtmLinkBuilderTableForm>;
|
|
1783
1687
|
|
|
1784
|
-
declare const
|
|
1785
|
-
|
|
1786
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
1787
|
-
}, undefined>, undefined>;
|
|
1688
|
+
declare const UtmTrackingLinkSortKeys: readonly ["id", "creator", "client", "url_destination", "utm_medium", "utm_source", "utm_campaign", "utm_content", "utm_creative_format", "utm_id", "campaign_phase", "campaign_product", "campaign_targeting", "campaign_key", "creative_format", "creative_format_variants", "url", "is_active", "createdAt", "updatedAt"];
|
|
1689
|
+
declare const QuerySortUtmTrackingLinks: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:ASC" | "is_active:DESC" | "client:ASC" | "url:ASC" | "campaign_product:ASC" | "campaign_targeting:ASC" | "campaign_key:ASC" | "campaign_phase:ASC" | "creative_format:ASC" | "creative_format_variants:ASC" | "creator:ASC" | "url_destination:ASC" | "utm_medium:ASC" | "utm_source:ASC" | "utm_campaign:ASC" | "utm_content:ASC" | "utm_creative_format:ASC" | "utm_id:ASC" | "client:DESC" | "url:DESC" | "campaign_product:DESC" | "campaign_targeting:DESC" | "campaign_key:DESC" | "campaign_phase:DESC" | "creative_format:DESC" | "creative_format_variants:DESC" | "creator:DESC" | "url_destination:DESC" | "utm_medium:DESC" | "utm_source:DESC" | "utm_campaign:DESC" | "utm_content:DESC" | "utm_creative_format:DESC" | "utm_id:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:ASC" | "is_active:DESC" | "client:ASC" | "url:ASC" | "campaign_product:ASC" | "campaign_targeting:ASC" | "campaign_key:ASC" | "campaign_phase:ASC" | "creative_format:ASC" | "creative_format_variants:ASC" | "creator:ASC" | "url_destination:ASC" | "utm_medium:ASC" | "utm_source:ASC" | "utm_campaign:ASC" | "utm_content:ASC" | "utm_creative_format:ASC" | "utm_id:ASC" | "client:DESC" | "url:DESC" | "campaign_product:DESC" | "campaign_targeting:DESC" | "campaign_key:DESC" | "campaign_phase:DESC" | "creative_format:DESC" | "creative_format_variants:DESC" | "creator:DESC" | "url_destination:DESC" | "utm_medium:DESC" | "utm_source:DESC" | "utm_campaign:DESC" | "utm_content:DESC" | "utm_creative_format:DESC" | "utm_id:DESC")[], 20, undefined>]>, undefined>;
|
|
1788
1690
|
type QuerySortUtmTrackingLinks = v.InferOutput<typeof QuerySortUtmTrackingLinks>;
|
|
1789
1691
|
declare const QueryStrapiSearchUtmTrackingLinks: v.ObjectSchema<{
|
|
1790
1692
|
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
@@ -1807,10 +1709,7 @@ declare const QueryStrapiSearchUtmTrackingLinks: v.ObjectSchema<{
|
|
|
1807
1709
|
readonly url: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.UrlAction<string, "Please enter a valid URL.">, v.CheckAction<string, "Please enter a valid URL with UTM parameters.">]>, undefined>;
|
|
1808
1710
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1809
1711
|
readonly notes: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1810
|
-
readonly sort: v.OptionalSchema<v.
|
|
1811
|
-
readonly key: v.PicklistSchema<["id", "creator", "client", "url_destination", "utm_medium", "utm_source", "utm_campaign", "utm_content", "utm_creative_format", "utm_id", "campaign_phase", "campaign_product", "campaign_targeting", "campaign_key", "creative_format", "creative_format_variants", "url", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1812
|
-
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
1813
|
-
}, undefined>, undefined>;
|
|
1712
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:ASC" | "is_active:DESC" | "client:ASC" | "url:ASC" | "campaign_product:ASC" | "campaign_targeting:ASC" | "campaign_key:ASC" | "campaign_phase:ASC" | "creative_format:ASC" | "creative_format_variants:ASC" | "creator:ASC" | "url_destination:ASC" | "utm_medium:ASC" | "utm_source:ASC" | "utm_campaign:ASC" | "utm_content:ASC" | "utm_creative_format:ASC" | "utm_id:ASC" | "client:DESC" | "url:DESC" | "campaign_product:DESC" | "campaign_targeting:DESC" | "campaign_key:DESC" | "campaign_phase:DESC" | "creative_format:DESC" | "creative_format_variants:DESC" | "creator:DESC" | "url_destination:DESC" | "utm_medium:DESC" | "utm_source:DESC" | "utm_campaign:DESC" | "utm_content:DESC" | "utm_creative_format:DESC" | "utm_id:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:ASC" | "is_active:DESC" | "client:ASC" | "url:ASC" | "campaign_product:ASC" | "campaign_targeting:ASC" | "campaign_key:ASC" | "campaign_phase:ASC" | "creative_format:ASC" | "creative_format_variants:ASC" | "creator:ASC" | "url_destination:ASC" | "utm_medium:ASC" | "utm_source:ASC" | "utm_campaign:ASC" | "utm_content:ASC" | "utm_creative_format:ASC" | "utm_id:ASC" | "client:DESC" | "url:DESC" | "campaign_product:DESC" | "campaign_targeting:DESC" | "campaign_key:DESC" | "campaign_phase:DESC" | "creative_format:DESC" | "creative_format_variants:DESC" | "creator:DESC" | "url_destination:DESC" | "utm_medium:DESC" | "utm_source:DESC" | "utm_campaign:DESC" | "utm_content:DESC" | "utm_creative_format:DESC" | "utm_id:DESC")[], 20, undefined>]>, undefined>;
|
|
1814
1713
|
}, undefined>;
|
|
1815
1714
|
type QueryStrapiSearchUtmTrackingLinks = v.InferOutput<typeof QueryStrapiSearchUtmTrackingLinks>;
|
|
1816
1715
|
declare const SCreateUtmTrackingLinkDocument: v.ObjectSchema<{
|
|
@@ -1981,4 +1880,4 @@ declare const SUpdateUtmTrackingLinkDocumentRequest: v.ObjectSchema<{
|
|
|
1981
1880
|
}, undefined>;
|
|
1982
1881
|
type SUpdateUtmTrackingLinkDocumentRequest = v.InferOutput<typeof SUpdateUtmTrackingLinkDocumentRequest>;
|
|
1983
1882
|
|
|
1984
|
-
export { QuerySortBlogPosts, QuerySortCategories, QuerySortClientContentPillars, QuerySortClientMediaPlatformContentTypes, QuerySortClientMediaPlatforms, QuerySortClientProjects, QuerySortClientReports, QuerySortClientStyleguides, QuerySortClientUsers, QuerySortClients, QuerySortContentPillars, QuerySortEntities, QuerySortGCFlyTourSnaps, QuerySortGCFlyTours, QuerySortMediaContentType, QuerySortMediaPlatforms, QuerySortTeamMembers, QuerySortTeamworkProjectHealth, QuerySortUrlRedirects, QuerySortUsers, QuerySortUtmTrackingLinks, QueryStrapiByDocumentId, QueryStrapiByEmail, QueryStrapiById, QueryStrapiByName, QueryStrapiByPhone, QueryStrapiBySlug, QueryStrapiCommentsFlat, QueryStrapiCommentsInHeirarchy,
|
|
1883
|
+
export { BlogPostSortKeys, CategorySortKeys, ClientContentPillarSortKeys, ClientMediaPlatformContentTypeSortKeys, ClientMediaPlatformSortKeys, ClientProjectSortKeys, ClientReportSortKeys, ClientSortKeys, ClientStyleguideSortKeys, ClientUserSortKeys, ContentPillarSortKeys, EntitySortKeys, GCFlyTourSnapSortKeys, GCFlyTourSortKeys, MediaContentTypeSortKeys, MediaPlatformSortKeys, QueryFilterStrapiComments, QuerySortBlogPosts, QuerySortCategories, QuerySortClientContentPillars, QuerySortClientMediaPlatformContentTypes, QuerySortClientMediaPlatforms, QuerySortClientProjects, QuerySortClientReports, QuerySortClientStyleguides, QuerySortClientUsers, QuerySortClients, QuerySortContentPillars, QuerySortEntities, QuerySortGCFlyTourSnaps, QuerySortGCFlyTours, QuerySortMediaContentType, QuerySortMediaPlatforms, QuerySortStrapiComments, QuerySortTags, QuerySortTeamMembers, QuerySortTeamworkProjectHealth, QuerySortUrlRedirects, QuerySortUsers, QuerySortUtmTrackingLinks, QueryStrapiByDocumentId, QueryStrapiByEmail, QueryStrapiById, QueryStrapiByName, QueryStrapiByPhone, QueryStrapiBySlug, QueryStrapiCommentsFlat, QueryStrapiCommentsInHeirarchy, QueryStrapiPaginated, QueryStrapiPaginatedUrlRedirects, QueryStrapiSearchBlogPosts, QueryStrapiSearchBlogPostsBySlug, QueryStrapiSearchCategories, QueryStrapiSearchClientContentPillars, QueryStrapiSearchClientMediaPlatformContentTypes, QueryStrapiSearchClientMediaPlatforms, QueryStrapiSearchClientProjects, QueryStrapiSearchClientReports, QueryStrapiSearchClientStyleguide, QueryStrapiSearchClients, QueryStrapiSearchContentPillars, QueryStrapiSearchGCFlyTourSnaps, QueryStrapiSearchGCFlyTours, QueryStrapiSearchMediaContentTypes, QueryStrapiSearchMediaPlatforms, QueryStrapiSearchTags, QueryStrapiSearchTeamMembers, QueryStrapiSearchTeamworkProjectHealth, QueryStrapiSearchUtmTrackingLinks, QueryStrapiUrlRedirectsByFrom, QueryStrapiUsers, QueryStrapiUsersByIdentifier, SAssociateClientMediaPlatformContentTypesToMediaContentType, SAssociateClientToClientProjectDocument, SAssociateClientsToGCFlyTour, SAssociateGcFlyTourSnapsToGCFlyTour, SAssociateMediaContentTypesToClientMediaPlatform, SAssociateMediaContentTypesToMediaPlatform, SAssociateMediaPlatformsToMediaContentType, SAuthConnectProviderConfirmation, SAuthConnectProviderRedirectSearch, SAuthRawAccessToken, SChangePassword, SConnectManyEntityRelation, type SConnectManyEntityRelationIn, SConnectOneEntityRelation, type SConnectOneEntityRelationIn, SCreateCategoryDocument, SCreateClientContentPillarDocument, SCreateClientDocument, SCreateClientMediaPlatformContentTypeDocument, SCreateClientMediaPlatformDocument, SCreateClientProjectDocument, SCreateClientReportDocument, SCreateClientStyleguideDocument, SCreateClientUserDocument, SCreateCommentDocument, SCreateContentPillarDocument, SCreateGCFlyTourDocument, SCreateGCFlyTourSnapDocument, SCreateLeadDocument, SCreateMediaContentTypeDocument, SCreateMediaPlatformDocument, SCreateMultipleStrapiMediaUploadDocument, SCreateNewsletterSignup, SCreateNewsletterSignupDocument, SCreateResume, SCreateResumeInfo, SCreateResumeInfoDocument, SCreateStrapiMediaUploadDocument, SCreateTagDocument, SCreateUserDocument, SCreateUtmTrackingLinkDocument, SCreateUtmTrackingLinkDocumentRequest, SCreateUtmTrackingLinkParts, SDeleteCommentDocument, SDisconnectManyEntityRelation, type SDisconnectManyEntityRelationIn, SDisconnectOneEntityRelation, type SDisconnectOneEntityRelationIn, SEntityRelation, type SEntityRelationIn, SEntityRelationPosition, SEntityRelationPositionAfter, SEntityRelationPositionBefore, SEntityRelationPositionEnd, type SEntityRelationPositionIn, SEntityRelationPositionStart, SForgotUserPassword, SFormCreateMultipleUtmTrackingLinkDocuments, SLoginUser, SQueryListClientUserDocuments, SReadUserAccountByDocumentId, SReadUserAccountById, SReadUtmTrackingLinkDocumentByUrl, SRegisterUser, SReportCommentDocument, SRequestConfirmEmail, SResetUserPassword, SSetManyEntityRelation, type SSetManyEntityRelationIn, SSetOneEntityRelation, type SSetOneEntityRelationIn, SUpdateCategoryDocument, SUpdateCategoryDocumentRequest, SUpdateClientContentPillarDocument, SUpdateClientContentPillarDocumentRequest, SUpdateClientDocument, SUpdateClientDocumentRequest, SUpdateClientMediaPlatformContentTypeDocument, SUpdateClientMediaPlatformContentTypeDocumentRequest, SUpdateClientMediaPlatformDocument, SUpdateClientMediaPlatformDocumentRequest, SUpdateClientProjectDocument, SUpdateClientProjectDocumentRequest, SUpdateClientReportDocument, SUpdateClientReportDocumentRequest, SUpdateClientStyleguideDocument, SUpdateClientStyleguideDocumentRequest, SUpdateClientUserDocument, SUpdateClientUserDocumentRequest, SUpdateCommentDocument, SUpdateContentPillarDocument, SUpdateContentPillarDocumentRequest, SUpdateGCFlyTourDocument, SUpdateGCFlyTourDocumentRequest, SUpdateGCFlyTourSnapDocument, SUpdateGCFlyTourSnapDocumentRequest, SUpdateLeadDocument, SUpdateLeadRequest, SUpdateMediaContentTypeDocument, SUpdateMediaContentTypeDocumentRequest, SUpdateMediaPlatformDocument, SUpdateMediaPlatformDocumentRequest, SUpdateNewsletterSignupDocument, SUpdateNewsletterSignupRequest, SUpdateResumeInfo, SUpdateResumeInfoDocument, SUpdateResumeInfoRequest, SUpdateStrapiMediaFileInfo, SUpdateTagDocument, SUpdateTagDocumentRequest, SUpdateTrendsLikes, SUpdateUserAccount, SUpdateUserAccountFirstName, SUpdateUserAccountLastName, SUpdateUserAccountPreferredName, SUpdateUtmTrackingLinkDocument, SUpdateUtmTrackingLinkDocumentRequest, SUserToken, SUtmLinkBuilderPartCampaignDateOptions, type SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderTableForm, type SUtmLinkBuilderTableFormInput, SVerifyClientUserDocument, SharpSpringSignUpToDownload, StrapiCommentSortKeys, TagSortKeys, TeamMemberSortKeys, type TeamworkProjectHealthProjectStatus, TeamworkProjectHealthProjectStatusOptions, TeamworkProjectHealthSelectSortOptions, type TeamworkProjectHealthSortKey, TeamworkProjectHealthSortKeys, UrlRedirectSortKeys, UserSortKeys, UtmTrackingLinkSortKeys, VIntegerNullable, VNumberNullable, VPage, VSize, VString, VStringEmail, VStringLong, VStringLongNullable, VStringMax, VStringMaxRegex, VStringMinMax, VStringMinMaxRegex, VStringPhone, VStringPhoneNullable, VStringShort, VStringShortNullable, VStringSlug, VStringUrl, VStringUrlNoUtm, VStringUrlNullable, VStringUrlUtm, checkIsValidUrlList };
|