Skip to content

Commit 68151f8

Browse files
Merge pull request #79 from hubbyesim/feat/tags-slug
Feat/tags slug
2 parents 4660824 + 141127c commit 68151f8

File tree

14 files changed

+56
-17290
lines changed

14 files changed

+56
-17290
lines changed

dist/base/index.cjs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -924,6 +924,13 @@ var partnerSchemaSpec = markAsSchemaSpec({
924924
nullable: true,
925925
optional: true
926926
},
927+
// Tag slugs
928+
tag_slugs: {
929+
_type: "array",
930+
of: zod.z.string(),
931+
nullable: true,
932+
optional: true
933+
},
927934
// Metadata
928935
data: {
929936
_type: "object",

dist/base/index.cjs.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/base/index.d.cts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1909,6 +1909,7 @@ declare const HPartnerSchema: z.ZodObject<{
19091909
description?: string | null | undefined;
19101910
color?: string | null | undefined;
19111911
}>, "many">;
1912+
tag_slugs: z.ZodArray<z.ZodString, "many">;
19121913
data: z.ZodObject<{
19131914
source: z.ZodString;
19141915
manual: z.ZodBoolean;
@@ -2135,6 +2136,7 @@ declare const HPartnerSchema: z.ZodObject<{
21352136
description?: string | null | undefined;
21362137
color?: string | null | undefined;
21372138
}[];
2139+
tag_slugs: string[];
21382140
webhook_settings: {
21392141
enabled: boolean;
21402142
events: {
@@ -2335,6 +2337,7 @@ declare const HPartnerSchema: z.ZodObject<{
23352337
description?: string | null | undefined;
23362338
color?: string | null | undefined;
23372339
}[];
2340+
tag_slugs: string[];
23382341
webhook_settings: {
23392342
enabled?: boolean | undefined;
23402343
url?: string | null | undefined;
@@ -3630,6 +3633,7 @@ declare const HPartnerAppSchema: z.ZodObject<{
36303633
description?: string | null | undefined;
36313634
color?: string | null | undefined;
36323635
}>, "many">;
3636+
tag_slugs: z.ZodArray<z.ZodString, "many">;
36333637
data: z.ZodObject<{
36343638
source: z.ZodString;
36353639
manual: z.ZodBoolean;
@@ -3856,6 +3860,7 @@ declare const HPartnerAppSchema: z.ZodObject<{
38563860
description?: string | null | undefined;
38573861
color?: string | null | undefined;
38583862
}[];
3863+
tag_slugs: string[];
38593864
webhook_settings: {
38603865
enabled: boolean;
38613866
events: {
@@ -4056,6 +4061,7 @@ declare const HPartnerAppSchema: z.ZodObject<{
40564061
description?: string | null | undefined;
40574062
color?: string | null | undefined;
40584063
}[];
4064+
tag_slugs: string[];
40594065
webhook_settings: {
40604066
enabled?: boolean | undefined;
40614067
url?: string | null | undefined;

dist/base/index.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1909,6 +1909,7 @@ declare const HPartnerSchema: z.ZodObject<{
19091909
description?: string | null | undefined;
19101910
color?: string | null | undefined;
19111911
}>, "many">;
1912+
tag_slugs: z.ZodArray<z.ZodString, "many">;
19121913
data: z.ZodObject<{
19131914
source: z.ZodString;
19141915
manual: z.ZodBoolean;
@@ -2135,6 +2136,7 @@ declare const HPartnerSchema: z.ZodObject<{
21352136
description?: string | null | undefined;
21362137
color?: string | null | undefined;
21372138
}[];
2139+
tag_slugs: string[];
21382140
webhook_settings: {
21392141
enabled: boolean;
21402142
events: {
@@ -2335,6 +2337,7 @@ declare const HPartnerSchema: z.ZodObject<{
23352337
description?: string | null | undefined;
23362338
color?: string | null | undefined;
23372339
}[];
2340+
tag_slugs: string[];
23382341
webhook_settings: {
23392342
enabled?: boolean | undefined;
23402343
url?: string | null | undefined;
@@ -3630,6 +3633,7 @@ declare const HPartnerAppSchema: z.ZodObject<{
36303633
description?: string | null | undefined;
36313634
color?: string | null | undefined;
36323635
}>, "many">;
3636+
tag_slugs: z.ZodArray<z.ZodString, "many">;
36333637
data: z.ZodObject<{
36343638
source: z.ZodString;
36353639
manual: z.ZodBoolean;
@@ -3856,6 +3860,7 @@ declare const HPartnerAppSchema: z.ZodObject<{
38563860
description?: string | null | undefined;
38573861
color?: string | null | undefined;
38583862
}[];
3863+
tag_slugs: string[];
38593864
webhook_settings: {
38603865
enabled: boolean;
38613866
events: {
@@ -4056,6 +4061,7 @@ declare const HPartnerAppSchema: z.ZodObject<{
40564061
description?: string | null | undefined;
40574062
color?: string | null | undefined;
40584063
}[];
4064+
tag_slugs: string[];
40594065
webhook_settings: {
40604066
enabled?: boolean | undefined;
40614067
url?: string | null | undefined;

dist/base/index.js

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/base/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.cjs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -957,6 +957,13 @@ var partnerSchemaSpec = markAsSchemaSpec({
957957
nullable: true,
958958
optional: true
959959
},
960+
// Tag slugs
961+
tag_slugs: {
962+
_type: "array",
963+
of: zod.z.string(),
964+
nullable: true,
965+
optional: true
966+
},
960967
// Metadata
961968
data: {
962969
_type: "object",

dist/index.cjs.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)