@aurigma/axios-storefront-api-client 2.24.9 → 2.25.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -64,7 +64,7 @@ export interface IProductReferencesApiClient {
|
|
|
64
64
|
* @param body (optional) Create operation parameters.
|
|
65
65
|
* @return Success
|
|
66
66
|
*/
|
|
67
|
-
create(storefrontId: number, tenantId?: number | null | undefined, body?: CreateProductReferenceDto | undefined): Promise<ProductReferenceDto>;
|
|
67
|
+
create(storefrontId: number, tenantId?: number | null | undefined, body?: CreateProductReferenceDto | null | undefined): Promise<ProductReferenceDto>;
|
|
68
68
|
/**
|
|
69
69
|
* Returns a storefront product reference.
|
|
70
70
|
* @param reference Product reference - external reference to Customer's Canvas product specification, e.g online store product identifier.
|
|
@@ -136,7 +136,7 @@ export declare class ProductReferencesApiClient extends ApiClientBase implements
|
|
|
136
136
|
* @param body (optional) Create operation parameters.
|
|
137
137
|
* @return Success
|
|
138
138
|
*/
|
|
139
|
-
create(storefrontId: number, tenantId?: number | null | undefined, body?: CreateProductReferenceDto | undefined, cancelToken?: CancelToken | undefined): Promise<ProductReferenceDto>;
|
|
139
|
+
create(storefrontId: number, tenantId?: number | null | undefined, body?: CreateProductReferenceDto | null | undefined, cancelToken?: CancelToken | undefined): Promise<ProductReferenceDto>;
|
|
140
140
|
protected processCreate(response: AxiosResponse): Promise<ProductReferenceDto>;
|
|
141
141
|
/**
|
|
142
142
|
* Returns a storefront product reference.
|
|
@@ -271,7 +271,7 @@ export interface IProjectsApiClient {
|
|
|
271
271
|
* @param body (optional) Create operation parameters.
|
|
272
272
|
* @return Success
|
|
273
273
|
*/
|
|
274
|
-
create(storefrontId: number, tenantId?: number | null | undefined, body?: CreateProjectDto | undefined): Promise<ProjectDto>;
|
|
274
|
+
create(storefrontId: number, tenantId?: number | null | undefined, body?: CreateProjectDto | null | undefined): Promise<ProjectDto>;
|
|
275
275
|
/**
|
|
276
276
|
* Returns a project by identifier.
|
|
277
277
|
* @param id Project identifier.
|
|
@@ -293,7 +293,7 @@ export interface IProjectsApiClient {
|
|
|
293
293
|
* @param body (optional) Create operation parameters.
|
|
294
294
|
* @return Success
|
|
295
295
|
*/
|
|
296
|
-
createByRenderHiResScenario(storefrontId: number, tenantId?: number | null | undefined, body?: CreateProjectByRenderHiResScenarioDto | undefined): Promise<ProjectDto>;
|
|
296
|
+
createByRenderHiResScenario(storefrontId: number, tenantId?: number | null | undefined, body?: CreateProjectByRenderHiResScenarioDto | null | undefined): Promise<ProjectDto>;
|
|
297
297
|
/**
|
|
298
298
|
* Returns all available status transitions for a project.
|
|
299
299
|
* @param id Project identifier.
|
|
@@ -416,7 +416,7 @@ export declare class ProjectsApiClient extends ApiClientBase implements IProject
|
|
|
416
416
|
* @param body (optional) Create operation parameters.
|
|
417
417
|
* @return Success
|
|
418
418
|
*/
|
|
419
|
-
create(storefrontId: number, tenantId?: number | null | undefined, body?: CreateProjectDto | undefined, cancelToken?: CancelToken | undefined): Promise<ProjectDto>;
|
|
419
|
+
create(storefrontId: number, tenantId?: number | null | undefined, body?: CreateProjectDto | null | undefined, cancelToken?: CancelToken | undefined): Promise<ProjectDto>;
|
|
420
420
|
protected processCreate(response: AxiosResponse): Promise<ProjectDto>;
|
|
421
421
|
/**
|
|
422
422
|
* Returns a project by identifier.
|
|
@@ -441,7 +441,7 @@ export declare class ProjectsApiClient extends ApiClientBase implements IProject
|
|
|
441
441
|
* @param body (optional) Create operation parameters.
|
|
442
442
|
* @return Success
|
|
443
443
|
*/
|
|
444
|
-
createByRenderHiResScenario(storefrontId: number, tenantId?: number | null | undefined, body?: CreateProjectByRenderHiResScenarioDto | undefined, cancelToken?: CancelToken | undefined): Promise<ProjectDto>;
|
|
444
|
+
createByRenderHiResScenario(storefrontId: number, tenantId?: number | null | undefined, body?: CreateProjectByRenderHiResScenarioDto | null | undefined, cancelToken?: CancelToken | undefined): Promise<ProjectDto>;
|
|
445
445
|
protected processCreateByRenderHiResScenario(response: AxiosResponse): Promise<ProjectDto>;
|
|
446
446
|
/**
|
|
447
447
|
* Returns all available status transitions for a project.
|
|
@@ -614,7 +614,7 @@ export interface IStorefrontUsersApiClient {
|
|
|
614
614
|
* @param body (optional) Operation parameters.
|
|
615
615
|
* @return Success
|
|
616
616
|
*/
|
|
617
|
-
create(storefrontId: number, tenantId?: number | null | undefined, body?: CreateStorefrontUserDto | undefined): Promise<StorefrontUserDto>;
|
|
617
|
+
create(storefrontId: number, tenantId?: number | null | undefined, body?: CreateStorefrontUserDto | null | undefined): Promise<StorefrontUserDto>;
|
|
618
618
|
/**
|
|
619
619
|
* Returns a storefront user by identifier.
|
|
620
620
|
* @param id Storefront user identifier.
|
|
@@ -630,7 +630,7 @@ export interface IStorefrontUsersApiClient {
|
|
|
630
630
|
* @param body (optional) Operation parameters.
|
|
631
631
|
* @return Success
|
|
632
632
|
*/
|
|
633
|
-
register(storefrontId: number, tenantId?: number | null | undefined, body?: RegisterStorefrontUserInput | undefined): Promise<StorefrontUserDto>;
|
|
633
|
+
register(storefrontId: number, tenantId?: number | null | undefined, body?: RegisterStorefrontUserInput | null | undefined): Promise<StorefrontUserDto>;
|
|
634
634
|
/**
|
|
635
635
|
* Transfers all existing data for the anonymous storefront user to the selected regular storefront user account.
|
|
636
636
|
* @param storefrontId Storefront identifier.
|
|
@@ -638,7 +638,7 @@ export interface IStorefrontUsersApiClient {
|
|
|
638
638
|
* @param body (optional) Operation parameters.
|
|
639
639
|
* @return Success
|
|
640
640
|
*/
|
|
641
|
-
mergeAnonymous(storefrontId: number, tenantId?: number | null | undefined, body?: MergeAnonymousUserDataInput | undefined): Promise<void>;
|
|
641
|
+
mergeAnonymous(storefrontId: number, tenantId?: number | null | undefined, body?: MergeAnonymousUserDataInput | null | undefined): Promise<void>;
|
|
642
642
|
/**
|
|
643
643
|
* Returns an API access token for the specified storefront user.
|
|
644
644
|
* @param storefrontUserId Storefront user identifier.
|
|
@@ -673,7 +673,7 @@ export declare class StorefrontUsersApiClient extends ApiClientBase implements I
|
|
|
673
673
|
* @param body (optional) Operation parameters.
|
|
674
674
|
* @return Success
|
|
675
675
|
*/
|
|
676
|
-
create(storefrontId: number, tenantId?: number | null | undefined, body?: CreateStorefrontUserDto | undefined, cancelToken?: CancelToken | undefined): Promise<StorefrontUserDto>;
|
|
676
|
+
create(storefrontId: number, tenantId?: number | null | undefined, body?: CreateStorefrontUserDto | null | undefined, cancelToken?: CancelToken | undefined): Promise<StorefrontUserDto>;
|
|
677
677
|
protected processCreate(response: AxiosResponse): Promise<StorefrontUserDto>;
|
|
678
678
|
/**
|
|
679
679
|
* Returns a storefront user by identifier.
|
|
@@ -691,7 +691,7 @@ export declare class StorefrontUsersApiClient extends ApiClientBase implements I
|
|
|
691
691
|
* @param body (optional) Operation parameters.
|
|
692
692
|
* @return Success
|
|
693
693
|
*/
|
|
694
|
-
register(storefrontId: number, tenantId?: number | null | undefined, body?: RegisterStorefrontUserInput | undefined, cancelToken?: CancelToken | undefined): Promise<StorefrontUserDto>;
|
|
694
|
+
register(storefrontId: number, tenantId?: number | null | undefined, body?: RegisterStorefrontUserInput | null | undefined, cancelToken?: CancelToken | undefined): Promise<StorefrontUserDto>;
|
|
695
695
|
protected processRegister(response: AxiosResponse): Promise<StorefrontUserDto>;
|
|
696
696
|
/**
|
|
697
697
|
* Transfers all existing data for the anonymous storefront user to the selected regular storefront user account.
|
|
@@ -700,7 +700,7 @@ export declare class StorefrontUsersApiClient extends ApiClientBase implements I
|
|
|
700
700
|
* @param body (optional) Operation parameters.
|
|
701
701
|
* @return Success
|
|
702
702
|
*/
|
|
703
|
-
mergeAnonymous(storefrontId: number, tenantId?: number | null | undefined, body?: MergeAnonymousUserDataInput | undefined, cancelToken?: CancelToken | undefined): Promise<void>;
|
|
703
|
+
mergeAnonymous(storefrontId: number, tenantId?: number | null | undefined, body?: MergeAnonymousUserDataInput | null | undefined, cancelToken?: CancelToken | undefined): Promise<void>;
|
|
704
704
|
protected processMergeAnonymous(response: AxiosResponse): Promise<void>;
|
|
705
705
|
/**
|
|
706
706
|
* Returns an API access token for the specified storefront user.
|
|
@@ -873,6 +873,7 @@ export interface ProjectItemResourceDto {
|
|
|
873
873
|
resourceId?: string | null;
|
|
874
874
|
/** Resource name. */
|
|
875
875
|
name?: string | null;
|
|
876
|
+
/** Resource type. */
|
|
876
877
|
type?: ProjectItemResourceType;
|
|
877
878
|
}
|
|
878
879
|
/** Dto class, containing information about a project item. */
|
|
@@ -946,6 +947,7 @@ export interface ProjectItemResourceParametersDto {
|
|
|
946
947
|
url?: string | null;
|
|
947
948
|
/** Resource name. */
|
|
948
949
|
name?: string | null;
|
|
950
|
+
/** Resource type. */
|
|
949
951
|
type?: ProjectItemResourceType;
|
|
950
952
|
}
|
|
951
953
|
/** Dto class, containing create operation paramters for a project item. */
|
|
@@ -1036,9 +1038,12 @@ export interface RenderHiResScenarioDto {
|
|
|
1036
1038
|
name?: string | null;
|
|
1037
1039
|
/** Output file DPI. */
|
|
1038
1040
|
dpi?: number;
|
|
1039
|
-
format
|
|
1040
|
-
|
|
1041
|
-
|
|
1041
|
+
/** Output file format. */
|
|
1042
|
+
format?: RenderHiResScenarioOutputFormat | null;
|
|
1043
|
+
/** Output file color space. */
|
|
1044
|
+
colorSpace?: RenderHiResScenarioOutputColorSpace | null;
|
|
1045
|
+
/** Output file flip mode. */
|
|
1046
|
+
flipMode?: RenderHiResScenarioOutputFlipMode | null;
|
|
1042
1047
|
/** Output file access mode. */
|
|
1043
1048
|
anonymousAccess?: boolean | null;
|
|
1044
1049
|
}
|
|
@@ -1050,7 +1055,9 @@ export interface CreateProjectByRenderHiResScenarioDto {
|
|
|
1050
1055
|
name?: string | null;
|
|
1051
1056
|
/** Description of the project. */
|
|
1052
1057
|
description?: string | null;
|
|
1053
|
-
|
|
1058
|
+
/** Ecommerce system order description. */
|
|
1059
|
+
orderDetails?: OrderDetailsDto | null;
|
|
1060
|
+
/** List of project items. */
|
|
1054
1061
|
scenario: RenderHiResScenarioDto;
|
|
1055
1062
|
}
|
|
1056
1063
|
/** Project transition dto class. */
|
|
@@ -1117,6 +1124,7 @@ export interface ProjectOutputFileDetailsDto {
|
|
|
1117
1124
|
}
|
|
1118
1125
|
/** Dto class, containing description of project processing results. */
|
|
1119
1126
|
export interface ProjectProcessingResultsDto {
|
|
1127
|
+
/** Project processing status. */
|
|
1120
1128
|
status?: ProjectProcessingStatus;
|
|
1121
1129
|
/** Project status description. */
|
|
1122
1130
|
statusDescription?: string | null;
|
|
@@ -1135,6 +1143,7 @@ export interface OrderDataItemDto {
|
|
|
1135
1143
|
key?: string | null;
|
|
1136
1144
|
/** Order data item value. */
|
|
1137
1145
|
value?: string | null;
|
|
1146
|
+
/** Order data item type. */
|
|
1138
1147
|
type?: OrderDataItemValueType;
|
|
1139
1148
|
}
|
|
1140
1149
|
/** Storefront types. */
|
|
@@ -1157,6 +1166,7 @@ export interface StorefrontDto {
|
|
|
1157
1166
|
tenantId?: number;
|
|
1158
1167
|
/** Storefront name. */
|
|
1159
1168
|
name?: string | null;
|
|
1169
|
+
/** Storefront ecommerce system type. */
|
|
1160
1170
|
type?: StorefrontType;
|
|
1161
1171
|
/** Storefront entity creation date and time. */
|
|
1162
1172
|
created?: string;
|