@emilgroup/translation-sdk-node
Advanced tools
+0
-1
@@ -189,3 +189,2 @@ /* tslint:disable */ | ||
| } | ||
| async switchWorkspace(targetWorkspace: string): Promise<void> { | ||
@@ -192,0 +191,0 @@ const options: AxiosRequestConfig = { |
@@ -69,3 +69,3 @@ /** | ||
| */ | ||
| check(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineResponse200, any>>; | ||
| check(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineResponse200, any, {}>>; | ||
| } |
@@ -559,3 +559,3 @@ /** | ||
| */ | ||
| createProductLanguage(requestParameters: TranslationApiCreateProductLanguageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateProductLanguageResponseClass, any>>; | ||
| createProductLanguage(requestParameters: TranslationApiCreateProductLanguageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateProductLanguageResponseClass, any, {}>>; | ||
| /** | ||
@@ -569,3 +569,3 @@ * Permanently deletes the product language. Supply the unique id that was returned when you created the product language and this will delete it. **Required Permissions** \"translation-management.translations.delete\" | ||
| */ | ||
| deleteProductLanguage(requestParameters: TranslationApiDeleteProductLanguageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>; | ||
| deleteProductLanguage(requestParameters: TranslationApiDeleteProductLanguageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>; | ||
| /** | ||
@@ -579,3 +579,3 @@ * This downloads the list of translatable fields for a given product. **Required Permissions** \"translation-management.translations.view\" | ||
| */ | ||
| downloadProductTranslations(requestParameters: TranslationApiDownloadProductTranslationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>; | ||
| downloadProductTranslations(requestParameters: TranslationApiDownloadProductTranslationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any, {}>>; | ||
| /** | ||
@@ -589,3 +589,3 @@ * This gets a product language. **Required Permissions** \"translation-management.translations.view\" | ||
| */ | ||
| getProductLanguage(requestParameters: TranslationApiGetProductLanguageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetProductLanguageResponseClass, any>>; | ||
| getProductLanguage(requestParameters: TranslationApiGetProductLanguageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetProductLanguageResponseClass, any, {}>>; | ||
| /** | ||
@@ -599,3 +599,3 @@ * Returns a list of product languages you have previously created. The product languages are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"translation-management.translations.view\" | ||
| */ | ||
| listProductLanguages(requestParameters?: TranslationApiListProductLanguagesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListProductLanguagesResponseClass, any>>; | ||
| listProductLanguages(requestParameters?: TranslationApiListProductLanguagesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListProductLanguagesResponseClass, any, {}>>; | ||
| /** | ||
@@ -609,3 +609,3 @@ * Returns a list of translations you have previously created. The translations are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"translation-management.translations.view\" | ||
| */ | ||
| listTranslations(requestParameters?: TranslationApiListTranslationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListTranslationsResponseClass, any>>; | ||
| listTranslations(requestParameters?: TranslationApiListTranslationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListTranslationsResponseClass, any, {}>>; | ||
| /** | ||
@@ -619,3 +619,3 @@ * This updates the product language with the specified id. **Required Permissions** \"translation-management.translations.update\" | ||
| */ | ||
| updateProductLanguage(requestParameters: TranslationApiUpdateProductLanguageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateProductLanguageResponseClass, any>>; | ||
| updateProductLanguage(requestParameters: TranslationApiUpdateProductLanguageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateProductLanguageResponseClass, any, {}>>; | ||
| /** | ||
@@ -629,3 +629,3 @@ * This uploads the translations for a given product. **Required Permissions** \"translation-management.translations.create\" | ||
| */ | ||
| uploadProductTranslations(requestParameters: TranslationApiUploadProductTranslationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UploadProductTranslationsResponseClass, any>>; | ||
| uploadProductTranslations(requestParameters: TranslationApiUploadProductTranslationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UploadProductTranslationsResponseClass, any, {}>>; | ||
| } |
+1
-1
@@ -66,3 +66,3 @@ /** | ||
| */ | ||
| export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => <T = unknown, R = AxiosResponse<T, any>>(axios?: AxiosInstance, basePath?: string) => Promise<R>; | ||
| export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => <T = unknown, R = AxiosResponse<T, any, {}>>(axios?: AxiosInstance, basePath?: string) => Promise<R>; | ||
| /** | ||
@@ -69,0 +69,0 @@ * EMIL TranslationService |
+2
-2
| { | ||
| "name": "@emilgroup/translation-sdk-node", | ||
| "version": "1.1.1-beta.7", | ||
| "version": "1.1.1-beta.8", | ||
| "description": "OpenAPI client for @emilgroup/translation-sdk-node", | ||
@@ -21,3 +21,3 @@ "author": "OpenAPI-Generator Contributors", | ||
| "dependencies": { | ||
| "axios": "^0.27.2", | ||
| "axios": "^1.12.0", | ||
| "form-data": "^4.0.0", | ||
@@ -24,0 +24,0 @@ "url": "^0.11.0" |
+2
-2
@@ -20,7 +20,7 @@ # Emil Translation SDK for Nodejs | ||
| ``` | ||
| npm install @emilgroup/translation-sdk-node@1.1.1-beta.7 --save | ||
| npm install @emilgroup/translation-sdk-node@1.1.1-beta.8 --save | ||
| ``` | ||
| or | ||
| ``` | ||
| yarn add @emilgroup/translation-sdk-node@1.1.1-beta.7 | ||
| yarn add @emilgroup/translation-sdk-node@1.1.1-beta.8 | ||
| ``` | ||
@@ -27,0 +27,0 @@ |
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 2 instances in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 2 instances in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
325642
0.01%+ Added
+ Added
- Removed
Updated