@lokalise/harmony 1.12.2 → 1.12.4
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/harmony.cjs +1 -1
- package/dist/harmony.mjs +119 -120
- package/dist/types/src/features/publicApi/hooks/useCreateProjectMutation.d.ts +4 -4
- package/dist/types/src/features/publicApi/hooks/useListProjectLanguagesQuery.d.ts +2 -1
- package/dist/types/src/features/publicApi/hooks/useListProjectsQuery.d.ts +59 -58
- package/dist/types/src/features/publicApi/hooks/useRetrieveProjectQuery.d.ts +4 -4
- package/dist/types/src/features/publicApi/languages.d.ts +6 -3
- package/dist/types/src/features/publicApi/projects.d.ts +429 -483
- package/dist/types/src/features/publicApi/types/languageTypes.d.ts +6 -3
- package/dist/types/src/features/publicApi/types/projectTypes.d.ts +417 -471
- package/package.json +1 -1
@@ -55,7 +55,8 @@ export declare const LANGUAGE_SCHEMA: z.ZodObject<{
|
|
55
55
|
}>;
|
56
56
|
export type Language = z.infer<typeof LANGUAGE_SCHEMA>;
|
57
57
|
export declare const LIST_PROJECT_LANGUAGES_RESPONSE_SCHEMA: z.ZodObject<{
|
58
|
-
|
58
|
+
project_id: z.ZodString;
|
59
|
+
project_uuid: z.ZodString;
|
59
60
|
languages: z.ZodArray<z.ZodObject<{
|
60
61
|
lang_id: z.ZodNumber;
|
61
62
|
lang_iso: z.ZodString;
|
@@ -83,7 +84,8 @@ export declare const LIST_PROJECT_LANGUAGES_RESPONSE_SCHEMA: z.ZodObject<{
|
|
83
84
|
is_rtl: boolean;
|
84
85
|
plural_forms: (string | undefined)[];
|
85
86
|
}[];
|
86
|
-
|
87
|
+
project_id: string;
|
88
|
+
project_uuid: string;
|
87
89
|
}, {
|
88
90
|
languages: {
|
89
91
|
lang_id: number;
|
@@ -92,6 +94,7 @@ export declare const LIST_PROJECT_LANGUAGES_RESPONSE_SCHEMA: z.ZodObject<{
|
|
92
94
|
is_rtl: boolean;
|
93
95
|
plural_forms: (string | undefined)[];
|
94
96
|
}[];
|
95
|
-
|
97
|
+
project_id: string;
|
98
|
+
project_uuid: string;
|
96
99
|
}>;
|
97
100
|
export type ListProjectLanguagesResponse = z.infer<typeof LIST_PROJECT_LANGUAGES_RESPONSE_SCHEMA>;
|