File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments