Skip to content

Commit fa5a84f

Browse files
author
Phrase
committed
1 parent 9d07cb2 commit fa5a84f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/apis/UploadsApi.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ export interface UploadCreateRequest {
3131
updateCustomMetadata?: boolean;
3232
updateTranslationKeys?: boolean;
3333
updateTranslationsOnSourceMatch?: boolean;
34+
sourceLocaleId?: string;
3435
updateDescriptions?: boolean;
3536
convertEmoji?: boolean;
3637
skipUploadTags?: boolean;
@@ -153,6 +154,10 @@ export class UploadsApi extends runtime.BaseAPI {
153154
formParams.append('update_translations_on_source_match', requestParameters.updateTranslationsOnSourceMatch as any);
154155
}
155156

157+
if (requestParameters.sourceLocaleId !== undefined) {
158+
formParams.append('source_locale_id', requestParameters.sourceLocaleId as any);
159+
}
160+
156161
if (requestParameters.updateDescriptions !== undefined) {
157162
formParams.append('update_descriptions', requestParameters.updateDescriptions as any);
158163
}

0 commit comments

Comments
 (0)