@getcommunity/gc-validators 0.0.271-alpha.1 → 0.0.271-alpha.2
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/entities/audit-log/index.d.cts +2 -2
- package/dist/entities/audit-log/index.d.mts +2 -2
- package/dist/entities/client/index.d.cts +2 -2
- package/dist/entities/client/index.d.mts +2 -2
- package/dist/entities/client-content-pillar/index.d.cts +2 -2
- package/dist/entities/client-content-pillar/index.d.mts +2 -2
- package/dist/entities/client-media-platform/index.d.cts +2 -2
- package/dist/entities/client-media-platform/index.d.mts +2 -2
- package/dist/entities/client-project/index.d.cts +2 -2
- package/dist/entities/client-project/index.d.mts +2 -2
- package/dist/entities/client-report/index.d.cts +2 -2
- package/dist/entities/client-report/index.d.mts +2 -2
- package/dist/entities/gcflytour/index.d.cts +2 -2
- package/dist/entities/gcflytour/index.d.mts +2 -2
- package/dist/entities/gcflytour-snap/index.d.cts +2 -2
- package/dist/entities/gcflytour-snap/index.d.mts +2 -2
- package/dist/entities/media-content-type/index.d.cts +2 -2
- package/dist/entities/media-content-type/index.d.mts +2 -2
- package/dist/entities/media-creative-format/index.d.cts +2 -2
- package/dist/entities/media-creative-format/index.d.mts +2 -2
- package/dist/entities/media-medium/index.d.cts +2 -2
- package/dist/entities/media-medium/index.d.mts +2 -2
- package/dist/entities/media-platform/index.d.cts +2 -2
- package/dist/entities/media-platform/index.d.mts +2 -2
- package/dist/entities/monday-workspace/index.d.cts +2 -2
- package/dist/entities/monday-workspace/index.d.mts +2 -2
- package/dist/entities/team-member/index.d.cts +2 -2
- package/dist/entities/team-member/index.d.mts +2 -2
- package/dist/entities/trend/index.cjs +1 -1
- package/dist/entities/trend/index.d.cts +2 -2
- package/dist/entities/trend/index.d.mts +2 -2
- package/dist/entities/trend/index.mjs +1 -1
- package/dist/entities/url-redirect/index.d.cts +2 -2
- package/dist/entities/url-redirect/index.d.mts +2 -2
- package/dist/entities/utm-tracking-link/index.d.cts +2 -2
- package/dist/entities/utm-tracking-link/index.d.mts +2 -2
- package/package.json +1 -1
|
@@ -16,7 +16,7 @@ const TrendDocument = v.object({
|
|
|
16
16
|
caption: v.nullable(v.string()),
|
|
17
17
|
featured_image: v.optional(v.nullable(v.lazy(() => MediaUploadDocument))),
|
|
18
18
|
likes: v.number(),
|
|
19
|
-
creators: v.optional(v.nullable(v.lazy(() => TeamMemberDocument)))
|
|
19
|
+
creators: v.optional(v.nullable(v.array(v.lazy(() => TeamMemberDocument))))
|
|
20
20
|
});
|
|
21
21
|
//#endregion
|
|
22
22
|
//#region src/entities/trend/mutation.ts
|
|
@@ -27,14 +27,14 @@ declare const UrlRedirectStatusCode: v.PicklistSchema<readonly ["found_302", "mo
|
|
|
27
27
|
type UrlRedirectStatusCode = v.InferOutput<typeof UrlRedirectStatusCode>;
|
|
28
28
|
declare const UrlRedirectQueryParams: v.PicklistSchema<readonly ["ignore_and_pass_to_target", "ignore_all_parameters", "exact_match_in_any_order"], undefined>;
|
|
29
29
|
type UrlRedirectQueryParams = v.InferOutput<typeof UrlRedirectQueryParams>;
|
|
30
|
-
declare const QuerySortUrlRedirects: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "
|
|
30
|
+
declare const QuerySortUrlRedirects: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "is_active:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "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" | "is_active:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "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>;
|
|
31
31
|
type QuerySortUrlRedirects = v.InferOutput<typeof QuerySortUrlRedirects>;
|
|
32
32
|
//#endregion
|
|
33
33
|
//#region src/entities/url-redirect/query.d.ts
|
|
34
34
|
declare const QueryStrapiPaginatedUrlRedirects: v.ObjectSchema<{
|
|
35
35
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>, 1>, 1>;
|
|
36
36
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 1000, undefined>]>, 100>, 100>;
|
|
37
|
-
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "
|
|
37
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "is_active:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "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" | "is_active:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "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>;
|
|
38
38
|
}, undefined>;
|
|
39
39
|
type QueryStrapiPaginatedUrlRedirects = v.InferOutput<typeof QueryStrapiPaginatedUrlRedirects>;
|
|
40
40
|
declare const QueryStrapiUrlRedirectsByFrom: v.ObjectSchema<{
|
|
@@ -27,14 +27,14 @@ declare const UrlRedirectStatusCode: v.PicklistSchema<readonly ["found_302", "mo
|
|
|
27
27
|
type UrlRedirectStatusCode = v.InferOutput<typeof UrlRedirectStatusCode>;
|
|
28
28
|
declare const UrlRedirectQueryParams: v.PicklistSchema<readonly ["ignore_and_pass_to_target", "ignore_all_parameters", "exact_match_in_any_order"], undefined>;
|
|
29
29
|
type UrlRedirectQueryParams = v.InferOutput<typeof UrlRedirectQueryParams>;
|
|
30
|
-
declare const QuerySortUrlRedirects: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "
|
|
30
|
+
declare const QuerySortUrlRedirects: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "is_active:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "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" | "is_active:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "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>;
|
|
31
31
|
type QuerySortUrlRedirects = v.InferOutput<typeof QuerySortUrlRedirects>;
|
|
32
32
|
//#endregion
|
|
33
33
|
//#region src/entities/url-redirect/query.d.ts
|
|
34
34
|
declare const QueryStrapiPaginatedUrlRedirects: v.ObjectSchema<{
|
|
35
35
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>, 1>, 1>;
|
|
36
36
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 1000, undefined>]>, 100>, 100>;
|
|
37
|
-
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "
|
|
37
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "is_active:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "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" | "is_active:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "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>;
|
|
38
38
|
}, undefined>;
|
|
39
39
|
type QueryStrapiPaginatedUrlRedirects = v.InferOutput<typeof QueryStrapiPaginatedUrlRedirects>;
|
|
40
40
|
declare const QueryStrapiUrlRedirectsByFrom: v.ObjectSchema<{
|
|
@@ -32,7 +32,7 @@ declare const UtmTrackingLinkDocument: v.ObjectSchema<{
|
|
|
32
32
|
type UtmTrackingLinkDocument = v.InferOutput<typeof UtmTrackingLinkDocument>;
|
|
33
33
|
//#endregion
|
|
34
34
|
//#region src/entities/utm-tracking-link/fields.d.ts
|
|
35
|
-
declare const QuerySortUtmTrackingLinks: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("
|
|
35
|
+
declare const QuerySortUtmTrackingLinks: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("client:ASC" | "id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "url:ASC" | "is_active:ASC" | "utm_content:ASC" | "utm_creative_format:ASC" | "utm_id:ASC" | "campaign_product:ASC" | "campaign_targeting:ASC" | "campaign_key:ASC" | "creative_format:ASC" | "creative_format_variants:ASC" | "url_destination:ASC" | "utm_medium:ASC" | "utm_source:ASC" | "utm_campaign:ASC" | "campaign_phase:ASC" | "creator:ASC" | "client:DESC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "url:DESC" | "is_active:DESC" | "utm_content:DESC" | "utm_creative_format:DESC" | "utm_id:DESC" | "campaign_product:DESC" | "campaign_targeting:DESC" | "campaign_key:DESC" | "creative_format:DESC" | "creative_format_variants:DESC" | "url_destination:DESC" | "utm_medium:DESC" | "utm_source:DESC" | "utm_campaign:DESC" | "campaign_phase:DESC" | "creator:DESC")[], undefined>, undefined>, v.MaxLengthAction<("client:ASC" | "id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "url:ASC" | "is_active:ASC" | "utm_content:ASC" | "utm_creative_format:ASC" | "utm_id:ASC" | "campaign_product:ASC" | "campaign_targeting:ASC" | "campaign_key:ASC" | "creative_format:ASC" | "creative_format_variants:ASC" | "url_destination:ASC" | "utm_medium:ASC" | "utm_source:ASC" | "utm_campaign:ASC" | "campaign_phase:ASC" | "creator:ASC" | "client:DESC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "url:DESC" | "is_active:DESC" | "utm_content:DESC" | "utm_creative_format:DESC" | "utm_id:DESC" | "campaign_product:DESC" | "campaign_targeting:DESC" | "campaign_key:DESC" | "creative_format:DESC" | "creative_format_variants:DESC" | "url_destination:DESC" | "utm_medium:DESC" | "utm_source:DESC" | "utm_campaign:DESC" | "campaign_phase:DESC" | "creator:DESC")[], 20, undefined>]>, undefined>;
|
|
36
36
|
type QuerySortUtmTrackingLinks = v.InferOutput<typeof QuerySortUtmTrackingLinks>;
|
|
37
37
|
//#endregion
|
|
38
38
|
//#region src/entities/utm-tracking-link/mutation.d.ts
|
|
@@ -228,7 +228,7 @@ declare const QueryStrapiSearchUtmTrackingLinks: v.ObjectSchema<{
|
|
|
228
228
|
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>;
|
|
229
229
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
230
230
|
readonly notes: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
231
|
-
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("
|
|
231
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("client:ASC" | "id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "url:ASC" | "is_active:ASC" | "utm_content:ASC" | "utm_creative_format:ASC" | "utm_id:ASC" | "campaign_product:ASC" | "campaign_targeting:ASC" | "campaign_key:ASC" | "creative_format:ASC" | "creative_format_variants:ASC" | "url_destination:ASC" | "utm_medium:ASC" | "utm_source:ASC" | "utm_campaign:ASC" | "campaign_phase:ASC" | "creator:ASC" | "client:DESC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "url:DESC" | "is_active:DESC" | "utm_content:DESC" | "utm_creative_format:DESC" | "utm_id:DESC" | "campaign_product:DESC" | "campaign_targeting:DESC" | "campaign_key:DESC" | "creative_format:DESC" | "creative_format_variants:DESC" | "url_destination:DESC" | "utm_medium:DESC" | "utm_source:DESC" | "utm_campaign:DESC" | "campaign_phase:DESC" | "creator:DESC")[], undefined>, undefined>, v.MaxLengthAction<("client:ASC" | "id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "url:ASC" | "is_active:ASC" | "utm_content:ASC" | "utm_creative_format:ASC" | "utm_id:ASC" | "campaign_product:ASC" | "campaign_targeting:ASC" | "campaign_key:ASC" | "creative_format:ASC" | "creative_format_variants:ASC" | "url_destination:ASC" | "utm_medium:ASC" | "utm_source:ASC" | "utm_campaign:ASC" | "campaign_phase:ASC" | "creator:ASC" | "client:DESC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "url:DESC" | "is_active:DESC" | "utm_content:DESC" | "utm_creative_format:DESC" | "utm_id:DESC" | "campaign_product:DESC" | "campaign_targeting:DESC" | "campaign_key:DESC" | "creative_format:DESC" | "creative_format_variants:DESC" | "url_destination:DESC" | "utm_medium:DESC" | "utm_source:DESC" | "utm_campaign:DESC" | "campaign_phase:DESC" | "creator:DESC")[], 20, undefined>]>, undefined>;
|
|
232
232
|
}, undefined>;
|
|
233
233
|
type QueryStrapiSearchUtmTrackingLinks = v.InferOutput<typeof QueryStrapiSearchUtmTrackingLinks>;
|
|
234
234
|
//#endregion
|
|
@@ -32,7 +32,7 @@ declare const UtmTrackingLinkDocument: v.ObjectSchema<{
|
|
|
32
32
|
type UtmTrackingLinkDocument = v.InferOutput<typeof UtmTrackingLinkDocument>;
|
|
33
33
|
//#endregion
|
|
34
34
|
//#region src/entities/utm-tracking-link/fields.d.ts
|
|
35
|
-
declare const QuerySortUtmTrackingLinks: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("
|
|
35
|
+
declare const QuerySortUtmTrackingLinks: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("client:ASC" | "id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "url:ASC" | "is_active:ASC" | "utm_content:ASC" | "utm_creative_format:ASC" | "utm_id:ASC" | "campaign_product:ASC" | "campaign_targeting:ASC" | "campaign_key:ASC" | "creative_format:ASC" | "creative_format_variants:ASC" | "url_destination:ASC" | "utm_medium:ASC" | "utm_source:ASC" | "utm_campaign:ASC" | "campaign_phase:ASC" | "creator:ASC" | "client:DESC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "url:DESC" | "is_active:DESC" | "utm_content:DESC" | "utm_creative_format:DESC" | "utm_id:DESC" | "campaign_product:DESC" | "campaign_targeting:DESC" | "campaign_key:DESC" | "creative_format:DESC" | "creative_format_variants:DESC" | "url_destination:DESC" | "utm_medium:DESC" | "utm_source:DESC" | "utm_campaign:DESC" | "campaign_phase:DESC" | "creator:DESC")[], undefined>, undefined>, v.MaxLengthAction<("client:ASC" | "id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "url:ASC" | "is_active:ASC" | "utm_content:ASC" | "utm_creative_format:ASC" | "utm_id:ASC" | "campaign_product:ASC" | "campaign_targeting:ASC" | "campaign_key:ASC" | "creative_format:ASC" | "creative_format_variants:ASC" | "url_destination:ASC" | "utm_medium:ASC" | "utm_source:ASC" | "utm_campaign:ASC" | "campaign_phase:ASC" | "creator:ASC" | "client:DESC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "url:DESC" | "is_active:DESC" | "utm_content:DESC" | "utm_creative_format:DESC" | "utm_id:DESC" | "campaign_product:DESC" | "campaign_targeting:DESC" | "campaign_key:DESC" | "creative_format:DESC" | "creative_format_variants:DESC" | "url_destination:DESC" | "utm_medium:DESC" | "utm_source:DESC" | "utm_campaign:DESC" | "campaign_phase:DESC" | "creator:DESC")[], 20, undefined>]>, undefined>;
|
|
36
36
|
type QuerySortUtmTrackingLinks = v.InferOutput<typeof QuerySortUtmTrackingLinks>;
|
|
37
37
|
//#endregion
|
|
38
38
|
//#region src/entities/utm-tracking-link/mutation.d.ts
|
|
@@ -228,7 +228,7 @@ declare const QueryStrapiSearchUtmTrackingLinks: v.ObjectSchema<{
|
|
|
228
228
|
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>;
|
|
229
229
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
230
230
|
readonly notes: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
231
|
-
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("
|
|
231
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("client:ASC" | "id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "url:ASC" | "is_active:ASC" | "utm_content:ASC" | "utm_creative_format:ASC" | "utm_id:ASC" | "campaign_product:ASC" | "campaign_targeting:ASC" | "campaign_key:ASC" | "creative_format:ASC" | "creative_format_variants:ASC" | "url_destination:ASC" | "utm_medium:ASC" | "utm_source:ASC" | "utm_campaign:ASC" | "campaign_phase:ASC" | "creator:ASC" | "client:DESC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "url:DESC" | "is_active:DESC" | "utm_content:DESC" | "utm_creative_format:DESC" | "utm_id:DESC" | "campaign_product:DESC" | "campaign_targeting:DESC" | "campaign_key:DESC" | "creative_format:DESC" | "creative_format_variants:DESC" | "url_destination:DESC" | "utm_medium:DESC" | "utm_source:DESC" | "utm_campaign:DESC" | "campaign_phase:DESC" | "creator:DESC")[], undefined>, undefined>, v.MaxLengthAction<("client:ASC" | "id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "url:ASC" | "is_active:ASC" | "utm_content:ASC" | "utm_creative_format:ASC" | "utm_id:ASC" | "campaign_product:ASC" | "campaign_targeting:ASC" | "campaign_key:ASC" | "creative_format:ASC" | "creative_format_variants:ASC" | "url_destination:ASC" | "utm_medium:ASC" | "utm_source:ASC" | "utm_campaign:ASC" | "campaign_phase:ASC" | "creator:ASC" | "client:DESC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "url:DESC" | "is_active:DESC" | "utm_content:DESC" | "utm_creative_format:DESC" | "utm_id:DESC" | "campaign_product:DESC" | "campaign_targeting:DESC" | "campaign_key:DESC" | "creative_format:DESC" | "creative_format_variants:DESC" | "url_destination:DESC" | "utm_medium:DESC" | "utm_source:DESC" | "utm_campaign:DESC" | "campaign_phase:DESC" | "creator:DESC")[], 20, undefined>]>, undefined>;
|
|
232
232
|
}, undefined>;
|
|
233
233
|
type QueryStrapiSearchUtmTrackingLinks = v.InferOutput<typeof QueryStrapiSearchUtmTrackingLinks>;
|
|
234
234
|
//#endregion
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getcommunity/gc-validators",
|
|
3
3
|
"description": "Schema Validator for GetCommunity web-stack types",
|
|
4
|
-
"version": "0.0.271-alpha.
|
|
4
|
+
"version": "0.0.271-alpha.2",
|
|
5
5
|
"author": "Joey Grable <joey@getcommunity.com> (https://joeygrable.com)",
|
|
6
6
|
"contributors": [],
|
|
7
7
|
"type": "module",
|