Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@aurigma/axios-design-atoms-api-client

Package Overview
Dependencies
Maintainers
4
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aurigma/axios-design-atoms-api-client - npm Package Compare versions

Comparing version 2.28.1 to 2.29.1

48

dist/cjs/design-atoms-api-client.d.ts

@@ -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 {

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc