@aurigma/axios-design-atoms-api-client
Advanced tools
Comparing version 2.28.1 to 2.29.1
@@ -483,4 +483,5 @@ import { AxiosInstance, AxiosRequestConfig, AxiosResponse, CancelToken } from 'axios'; | ||
/** | ||
* Renders a design with the specified parameters. | ||
* @param attachment (optional) If set to 'true', file will be provided as an attachment with unique filename supplied (default value is 'false'). | ||
* Renders a design preview with the specified parameters. | ||
* @param attachment (optional) If set to 'true', file will be provided as an attachment with unique filename supplied | ||
(default value is 'false'). | ||
* @param tenantId (optional) Tenant identifier | ||
@@ -490,4 +491,13 @@ * @param body (optional) Render model with preview parameters. | ||
*/ | ||
renderDesign(attachment?: boolean | null | undefined, tenantId?: number | undefined, body?: RenderDesignModel | null | undefined): Promise<FileResponse>; | ||
renderDesignPreview(attachment?: boolean | null | undefined, tenantId?: number | undefined, body?: RenderDesignPreviewModel | null | undefined): Promise<FileResponse>; | ||
/** | ||
* Renders a design proof with the specified parameters. | ||
* @param attachment (optional) If set to 'true', file will be provided as an attachment with unique filename supplied | ||
(default value is 'false'). | ||
* @param tenantId (optional) Tenant identifier | ||
* @param body (optional) Render model with proof parameters. | ||
* @return Success | ||
*/ | ||
renderDesignProof(attachment?: boolean | null | undefined, tenantId?: number | undefined, body?: RenderDesignProofModel | null | undefined): Promise<FileResponse>; | ||
/** | ||
* Render product proof image with specified parameters. | ||
@@ -671,4 +681,5 @@ * @param attachment (optional) If set to 'true', file will be provided as an attachment with unique filename supplied (default value is 'false'). | ||
/** | ||
* Renders a design with the specified parameters. | ||
* @param attachment (optional) If set to 'true', file will be provided as an attachment with unique filename supplied (default value is 'false'). | ||
* Renders a design preview with the specified parameters. | ||
* @param attachment (optional) If set to 'true', file will be provided as an attachment with unique filename supplied | ||
(default value is 'false'). | ||
* @param tenantId (optional) Tenant identifier | ||
@@ -678,5 +689,15 @@ * @param body (optional) Render model with preview parameters. | ||
*/ | ||
renderDesign(attachment?: boolean | null | undefined, tenantId?: number | undefined, body?: RenderDesignModel | null | undefined, cancelToken?: CancelToken | undefined): Promise<FileResponse>; | ||
protected processRenderDesign(response: AxiosResponse): Promise<FileResponse>; | ||
renderDesignPreview(attachment?: boolean | null | undefined, tenantId?: number | undefined, body?: RenderDesignPreviewModel | null | undefined, cancelToken?: CancelToken | undefined): Promise<FileResponse>; | ||
protected processRenderDesignPreview(response: AxiosResponse): Promise<FileResponse>; | ||
/** | ||
* Renders a design proof with the specified parameters. | ||
* @param attachment (optional) If set to 'true', file will be provided as an attachment with unique filename supplied | ||
(default value is 'false'). | ||
* @param tenantId (optional) Tenant identifier | ||
* @param body (optional) Render model with proof parameters. | ||
* @return Success | ||
*/ | ||
renderDesignProof(attachment?: boolean | null | undefined, tenantId?: number | undefined, body?: RenderDesignProofModel | null | undefined, cancelToken?: CancelToken | undefined): Promise<FileResponse>; | ||
protected processRenderDesignProof(response: AxiosResponse): Promise<FileResponse>; | ||
/** | ||
* Render product proof image with specified parameters. | ||
@@ -1207,3 +1228,3 @@ * @param attachment (optional) If set to 'true', file will be provided as an attachment with unique filename supplied (default value is 'false'). | ||
} | ||
export interface RenderDesignModel { | ||
export interface RenderDesignPreviewModel { | ||
/** Design ID. | ||
@@ -1261,2 +1282,13 @@ Used to get design file from public or private storage. */ | ||
} | ||
export interface RenderDesignProofModel { | ||
/** Design ID. | ||
Used to get design file from public or private storage. */ | ||
designId?: string | null; | ||
/** ID of the design owner. */ | ||
ownerId?: string | null; | ||
/** Rendering configuration for getting a preview of design. */ | ||
renderingConfig?: ProductProofRenderingConfig | null; | ||
/** Variable (user) data of design. */ | ||
variableData?: VariableInfo[] | null; | ||
} | ||
/** Render product parameters */ | ||
@@ -1263,0 +1295,0 @@ export interface RenderProductModel { |
@@ -483,4 +483,5 @@ import { AxiosInstance, AxiosRequestConfig, AxiosResponse, CancelToken } from 'axios'; | ||
/** | ||
* Renders a design with the specified parameters. | ||
* @param attachment (optional) If set to 'true', file will be provided as an attachment with unique filename supplied (default value is 'false'). | ||
* Renders a design preview with the specified parameters. | ||
* @param attachment (optional) If set to 'true', file will be provided as an attachment with unique filename supplied | ||
(default value is 'false'). | ||
* @param tenantId (optional) Tenant identifier | ||
@@ -490,4 +491,13 @@ * @param body (optional) Render model with preview parameters. | ||
*/ | ||
renderDesign(attachment?: boolean | null | undefined, tenantId?: number | undefined, body?: RenderDesignModel | null | undefined): Promise<FileResponse>; | ||
renderDesignPreview(attachment?: boolean | null | undefined, tenantId?: number | undefined, body?: RenderDesignPreviewModel | null | undefined): Promise<FileResponse>; | ||
/** | ||
* Renders a design proof with the specified parameters. | ||
* @param attachment (optional) If set to 'true', file will be provided as an attachment with unique filename supplied | ||
(default value is 'false'). | ||
* @param tenantId (optional) Tenant identifier | ||
* @param body (optional) Render model with proof parameters. | ||
* @return Success | ||
*/ | ||
renderDesignProof(attachment?: boolean | null | undefined, tenantId?: number | undefined, body?: RenderDesignProofModel | null | undefined): Promise<FileResponse>; | ||
/** | ||
* Render product proof image with specified parameters. | ||
@@ -671,4 +681,5 @@ * @param attachment (optional) If set to 'true', file will be provided as an attachment with unique filename supplied (default value is 'false'). | ||
/** | ||
* Renders a design with the specified parameters. | ||
* @param attachment (optional) If set to 'true', file will be provided as an attachment with unique filename supplied (default value is 'false'). | ||
* Renders a design preview with the specified parameters. | ||
* @param attachment (optional) If set to 'true', file will be provided as an attachment with unique filename supplied | ||
(default value is 'false'). | ||
* @param tenantId (optional) Tenant identifier | ||
@@ -678,5 +689,15 @@ * @param body (optional) Render model with preview parameters. | ||
*/ | ||
renderDesign(attachment?: boolean | null | undefined, tenantId?: number | undefined, body?: RenderDesignModel | null | undefined, cancelToken?: CancelToken | undefined): Promise<FileResponse>; | ||
protected processRenderDesign(response: AxiosResponse): Promise<FileResponse>; | ||
renderDesignPreview(attachment?: boolean | null | undefined, tenantId?: number | undefined, body?: RenderDesignPreviewModel | null | undefined, cancelToken?: CancelToken | undefined): Promise<FileResponse>; | ||
protected processRenderDesignPreview(response: AxiosResponse): Promise<FileResponse>; | ||
/** | ||
* Renders a design proof with the specified parameters. | ||
* @param attachment (optional) If set to 'true', file will be provided as an attachment with unique filename supplied | ||
(default value is 'false'). | ||
* @param tenantId (optional) Tenant identifier | ||
* @param body (optional) Render model with proof parameters. | ||
* @return Success | ||
*/ | ||
renderDesignProof(attachment?: boolean | null | undefined, tenantId?: number | undefined, body?: RenderDesignProofModel | null | undefined, cancelToken?: CancelToken | undefined): Promise<FileResponse>; | ||
protected processRenderDesignProof(response: AxiosResponse): Promise<FileResponse>; | ||
/** | ||
* Render product proof image with specified parameters. | ||
@@ -1207,3 +1228,3 @@ * @param attachment (optional) If set to 'true', file will be provided as an attachment with unique filename supplied (default value is 'false'). | ||
} | ||
export interface RenderDesignModel { | ||
export interface RenderDesignPreviewModel { | ||
/** Design ID. | ||
@@ -1261,2 +1282,13 @@ Used to get design file from public or private storage. */ | ||
} | ||
export interface RenderDesignProofModel { | ||
/** Design ID. | ||
Used to get design file from public or private storage. */ | ||
designId?: string | null; | ||
/** ID of the design owner. */ | ||
ownerId?: string | null; | ||
/** Rendering configuration for getting a preview of design. */ | ||
renderingConfig?: ProductProofRenderingConfig | null; | ||
/** Variable (user) data of design. */ | ||
variableData?: VariableInfo[] | null; | ||
} | ||
/** Render product parameters */ | ||
@@ -1263,0 +1295,0 @@ export interface RenderProductModel { |
{ | ||
"name": "@aurigma/axios-design-atoms-api-client", | ||
"version": "2.28.1", | ||
"version": "2.29.1", | ||
"license": "SEE LICENSE IN License.md", | ||
@@ -5,0 +5,0 @@ "description": "Axios API Client for Design Atoms API service of Customer's Canvas web-to-print system.", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
919618
12861