@aurigma/ng-storefront-api-client 2.62.12 → 2.65.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.
- package/aurigma-ng-storefront-api-client.metadata.json +1 -1
- package/bundles/aurigma-ng-storefront-api-client.umd.js +792 -270
- package/bundles/aurigma-ng-storefront-api-client.umd.js.map +1 -1
- package/bundles/aurigma-ng-storefront-api-client.umd.min.js +1 -1
- package/bundles/aurigma-ng-storefront-api-client.umd.min.js.map +1 -1
- package/esm2015/aurigma-ng-storefront-api-client.js +1 -1
- package/esm2015/lib/storefront-api-client.js +475 -14
- package/esm2015/lib/storefront.module.js +1 -1
- package/esm2015/public-api.js +1 -1
- package/fesm2015/aurigma-ng-storefront-api-client.js +475 -14
- package/fesm2015/aurigma-ng-storefront-api-client.js.map +1 -1
- package/lib/storefront-api-client.d.ts +172 -26
- package/package.json +1 -1
|
@@ -108,6 +108,14 @@ export interface IProductBundlesApiClient {
|
|
|
108
108
|
* @return Success
|
|
109
109
|
*/
|
|
110
110
|
getProductBundle(id: number, productBundleVersionId?: number | null | undefined, tenantId?: number | null | undefined): Observable<ProductBundleDto>;
|
|
111
|
+
/**
|
|
112
|
+
* Returns a product bundle personalization parameters by product identifier.
|
|
113
|
+
* @param id Product bundle identifier.
|
|
114
|
+
* @param productBundleVersionId (optional) Product bundle version identifier.
|
|
115
|
+
* @param tenantId (optional) Tenant identifier.
|
|
116
|
+
* @return Success
|
|
117
|
+
*/
|
|
118
|
+
getProductBundlePersonalizationParameters(id: number, productBundleVersionId?: number | null | undefined, tenantId?: number | null | undefined): Observable<PersonalizationParametersDto>;
|
|
111
119
|
/**
|
|
112
120
|
* Returns a product bundle summary by product bundle identifier.
|
|
113
121
|
* @param id Product bundle identifier.
|
|
@@ -153,6 +161,15 @@ export declare class ProductBundlesApiClient extends ApiClientBase implements IP
|
|
|
153
161
|
*/
|
|
154
162
|
getProductBundle(id: number, productBundleVersionId?: number | null | undefined, tenantId?: number | null | undefined): Observable<ProductBundleDto>;
|
|
155
163
|
protected processGetProductBundle(response: HttpResponseBase): Observable<ProductBundleDto>;
|
|
164
|
+
/**
|
|
165
|
+
* Returns a product bundle personalization parameters by product identifier.
|
|
166
|
+
* @param id Product bundle identifier.
|
|
167
|
+
* @param productBundleVersionId (optional) Product bundle version identifier.
|
|
168
|
+
* @param tenantId (optional) Tenant identifier.
|
|
169
|
+
* @return Success
|
|
170
|
+
*/
|
|
171
|
+
getProductBundlePersonalizationParameters(id: number, productBundleVersionId?: number | null | undefined, tenantId?: number | null | undefined): Observable<PersonalizationParametersDto>;
|
|
172
|
+
protected processGetProductBundlePersonalizationParameters(response: HttpResponseBase): Observable<PersonalizationParametersDto>;
|
|
156
173
|
/**
|
|
157
174
|
* Returns a product bundle summary by product bundle identifier.
|
|
158
175
|
* @param id Product bundle identifier.
|
|
@@ -194,6 +211,14 @@ export interface IProductLinksApiClient {
|
|
|
194
211
|
* @return Success
|
|
195
212
|
*/
|
|
196
213
|
getProductLink(id: number, productLinkVersionId?: number | null | undefined, productVersionId?: number | null | undefined, tenantId?: number | null | undefined): Observable<ProductLinkDto>;
|
|
214
|
+
/**
|
|
215
|
+
* Returns a product link personalization parameters by product identifier.
|
|
216
|
+
* @param id Product link identifier.
|
|
217
|
+
* @param productLinkVersionId (optional) Product link version identifier.
|
|
218
|
+
* @param tenantId (optional) Tenant identifier.
|
|
219
|
+
* @return Success
|
|
220
|
+
*/
|
|
221
|
+
getProductLinkPersonalizationParameters(id: number, productLinkVersionId?: number | null | undefined, tenantId?: number | null | undefined): Observable<PersonalizationParametersDto>;
|
|
197
222
|
/**
|
|
198
223
|
* Returns a product link summary by product link identifier.
|
|
199
224
|
* @param id Product link identifier.
|
|
@@ -242,6 +267,15 @@ export declare class ProductLinksApiClient extends ApiClientBase implements IPro
|
|
|
242
267
|
*/
|
|
243
268
|
getProductLink(id: number, productLinkVersionId?: number | null | undefined, productVersionId?: number | null | undefined, tenantId?: number | null | undefined): Observable<ProductLinkDto>;
|
|
244
269
|
protected processGetProductLink(response: HttpResponseBase): Observable<ProductLinkDto>;
|
|
270
|
+
/**
|
|
271
|
+
* Returns a product link personalization parameters by product identifier.
|
|
272
|
+
* @param id Product link identifier.
|
|
273
|
+
* @param productLinkVersionId (optional) Product link version identifier.
|
|
274
|
+
* @param tenantId (optional) Tenant identifier.
|
|
275
|
+
* @return Success
|
|
276
|
+
*/
|
|
277
|
+
getProductLinkPersonalizationParameters(id: number, productLinkVersionId?: number | null | undefined, tenantId?: number | null | undefined): Observable<PersonalizationParametersDto>;
|
|
278
|
+
protected processGetProductLinkPersonalizationParameters(response: HttpResponseBase): Observable<PersonalizationParametersDto>;
|
|
245
279
|
/**
|
|
246
280
|
* Returns a product link summary by product link identifier.
|
|
247
281
|
* @param id Product link identifier.
|
|
@@ -375,6 +409,14 @@ export interface IProductReferencesApiClient {
|
|
|
375
409
|
* @return Success
|
|
376
410
|
*/
|
|
377
411
|
get(reference: string | null, storefrontId: number, tenantId?: number | null | undefined): Observable<ProductReferenceDto>;
|
|
412
|
+
/**
|
|
413
|
+
* Returns a personalization parameters by the storefront product reference.
|
|
414
|
+
* @param reference Product reference - external reference to Customer's Canvas product, e.g online store product identifier.
|
|
415
|
+
* @param storefrontId Storefront identifier.
|
|
416
|
+
* @param tenantId (optional) Tenant identifier.
|
|
417
|
+
* @return Success
|
|
418
|
+
*/
|
|
419
|
+
getPersonalizationParameters(reference: string | null, storefrontId: number, tenantId?: number | null | undefined): Observable<PersonalizationParametersDto>;
|
|
378
420
|
/**
|
|
379
421
|
* Returns a product specification by the storefront product reference.
|
|
380
422
|
* @param reference Product reference - external reference to Customer's Canvas product, e.g online store product identifier.
|
|
@@ -557,6 +599,15 @@ export declare class ProductReferencesApiClient extends ApiClientBase implements
|
|
|
557
599
|
*/
|
|
558
600
|
get(reference: string | null, storefrontId: number, tenantId?: number | null | undefined): Observable<ProductReferenceDto>;
|
|
559
601
|
protected processGet(response: HttpResponseBase): Observable<ProductReferenceDto>;
|
|
602
|
+
/**
|
|
603
|
+
* Returns a personalization parameters by the storefront product reference.
|
|
604
|
+
* @param reference Product reference - external reference to Customer's Canvas product, e.g online store product identifier.
|
|
605
|
+
* @param storefrontId Storefront identifier.
|
|
606
|
+
* @param tenantId (optional) Tenant identifier.
|
|
607
|
+
* @return Success
|
|
608
|
+
*/
|
|
609
|
+
getPersonalizationParameters(reference: string | null, storefrontId: number, tenantId?: number | null | undefined): Observable<PersonalizationParametersDto>;
|
|
610
|
+
protected processGetPersonalizationParameters(response: HttpResponseBase): Observable<PersonalizationParametersDto>;
|
|
560
611
|
/**
|
|
561
612
|
* Returns a product specification by the storefront product reference.
|
|
562
613
|
* @param reference Product reference - external reference to Customer's Canvas product, e.g online store product identifier.
|
|
@@ -649,6 +700,14 @@ export interface IProductsApiClient {
|
|
|
649
700
|
* @return Success
|
|
650
701
|
*/
|
|
651
702
|
getProduct(id: number, productVersionId?: number | null | undefined, tenantId?: number | null | undefined): Observable<ProductDto>;
|
|
703
|
+
/**
|
|
704
|
+
* Returns a product personalization parameters by product identifier.
|
|
705
|
+
* @param id Product identifier.
|
|
706
|
+
* @param productVersionId (optional) Product version identifier.
|
|
707
|
+
* @param tenantId (optional) Tenant identifier.
|
|
708
|
+
* @return Success
|
|
709
|
+
*/
|
|
710
|
+
getProductSummary(id: number, productVersionId?: number | null | undefined, tenantId?: number | null | undefined): Observable<PersonalizationParametersDto>;
|
|
652
711
|
/**
|
|
653
712
|
* Returns a product summary by product identifier.
|
|
654
713
|
* @param id Product identifier.
|
|
@@ -659,7 +718,7 @@ export interface IProductsApiClient {
|
|
|
659
718
|
* @param tenantId (optional) Tenant identifier.
|
|
660
719
|
* @return Success
|
|
661
720
|
*/
|
|
662
|
-
|
|
721
|
+
getProductSummary2(id: number, productVersionId?: number | null | undefined, productLinkId?: number | null | undefined, productVariantId?: number | null | undefined, sku?: string | null | undefined, tenantId?: number | null | undefined): Observable<ProductSummaryDto>;
|
|
663
722
|
/**
|
|
664
723
|
* Returns a list of product options.
|
|
665
724
|
* @param id Product identifier.
|
|
@@ -826,6 +885,15 @@ export declare class ProductsApiClient extends ApiClientBase implements IProduct
|
|
|
826
885
|
*/
|
|
827
886
|
getProduct(id: number, productVersionId?: number | null | undefined, tenantId?: number | null | undefined): Observable<ProductDto>;
|
|
828
887
|
protected processGetProduct(response: HttpResponseBase): Observable<ProductDto>;
|
|
888
|
+
/**
|
|
889
|
+
* Returns a product personalization parameters by product identifier.
|
|
890
|
+
* @param id Product identifier.
|
|
891
|
+
* @param productVersionId (optional) Product version identifier.
|
|
892
|
+
* @param tenantId (optional) Tenant identifier.
|
|
893
|
+
* @return Success
|
|
894
|
+
*/
|
|
895
|
+
getProductSummary(id: number, productVersionId?: number | null | undefined, tenantId?: number | null | undefined): Observable<PersonalizationParametersDto>;
|
|
896
|
+
protected processGetProductSummary(response: HttpResponseBase): Observable<PersonalizationParametersDto>;
|
|
829
897
|
/**
|
|
830
898
|
* Returns a product summary by product identifier.
|
|
831
899
|
* @param id Product identifier.
|
|
@@ -836,8 +904,8 @@ export declare class ProductsApiClient extends ApiClientBase implements IProduct
|
|
|
836
904
|
* @param tenantId (optional) Tenant identifier.
|
|
837
905
|
* @return Success
|
|
838
906
|
*/
|
|
839
|
-
|
|
840
|
-
protected
|
|
907
|
+
getProductSummary2(id: number, productVersionId?: number | null | undefined, productLinkId?: number | null | undefined, productVariantId?: number | null | undefined, sku?: string | null | undefined, tenantId?: number | null | undefined): Observable<ProductSummaryDto>;
|
|
908
|
+
protected processGetProductSummary2(response: HttpResponseBase): Observable<ProductSummaryDto>;
|
|
841
909
|
/**
|
|
842
910
|
* Returns a list of product options.
|
|
843
911
|
* @param id Product identifier.
|
|
@@ -1006,6 +1074,13 @@ export interface IProductSpecificationsApiClient {
|
|
|
1006
1074
|
* @return Success
|
|
1007
1075
|
*/
|
|
1008
1076
|
get(id: number, tenantId?: number | null | undefined): Observable<ProductSpecificationDto>;
|
|
1077
|
+
/**
|
|
1078
|
+
* Returns a product specification personalization parameters by product identifier.
|
|
1079
|
+
* @param id Product specification identifier.
|
|
1080
|
+
* @param tenantId (optional) Tenant identifier.
|
|
1081
|
+
* @return Success
|
|
1082
|
+
*/
|
|
1083
|
+
getProductSpecificationSummary(id: number, tenantId?: number | null | undefined): Observable<PersonalizationParametersDto>;
|
|
1009
1084
|
/**
|
|
1010
1085
|
* Returns a product personalization workflow description by product specification identifier.
|
|
1011
1086
|
* @param id Product specification identifier.
|
|
@@ -1038,6 +1113,14 @@ export declare class ProductSpecificationsApiClient extends ApiClientBase implem
|
|
|
1038
1113
|
*/
|
|
1039
1114
|
get(id: number, tenantId?: number | null | undefined): Observable<ProductSpecificationDto>;
|
|
1040
1115
|
protected processGet(response: HttpResponseBase): Observable<ProductSpecificationDto>;
|
|
1116
|
+
/**
|
|
1117
|
+
* Returns a product specification personalization parameters by product identifier.
|
|
1118
|
+
* @param id Product specification identifier.
|
|
1119
|
+
* @param tenantId (optional) Tenant identifier.
|
|
1120
|
+
* @return Success
|
|
1121
|
+
*/
|
|
1122
|
+
getProductSpecificationSummary(id: number, tenantId?: number | null | undefined): Observable<PersonalizationParametersDto>;
|
|
1123
|
+
protected processGetProductSpecificationSummary(response: HttpResponseBase): Observable<PersonalizationParametersDto>;
|
|
1041
1124
|
/**
|
|
1042
1125
|
* Returns a product personalization workflow description by product specification identifier.
|
|
1043
1126
|
* @param id Product specification identifier.
|
|
@@ -1132,7 +1215,7 @@ export interface IProjectsApiClient {
|
|
|
1132
1215
|
* @param tenantId (optional) Tenant identifier.
|
|
1133
1216
|
* @return Success
|
|
1134
1217
|
*/
|
|
1135
|
-
getAvailableTransitions(id: number, tenantId?: number | null | undefined): Observable<
|
|
1218
|
+
getAvailableTransitions(id: number, tenantId?: number | null | undefined): Observable<PagedOfProjectStatusTransitionDto>;
|
|
1136
1219
|
/**
|
|
1137
1220
|
* Changes the project status.
|
|
1138
1221
|
* @param id Project identifier
|
|
@@ -1168,7 +1251,7 @@ export interface IProjectsApiClient {
|
|
|
1168
1251
|
* @param tenantId (optional) Tenant identifier.
|
|
1169
1252
|
* @return Success
|
|
1170
1253
|
*/
|
|
1171
|
-
getAllTransitions(tenantId?: number | null | undefined): Observable<
|
|
1254
|
+
getAllTransitions(tenantId?: number | null | undefined): Observable<PagedOfProjectStatusTransitionDto>;
|
|
1172
1255
|
/**
|
|
1173
1256
|
* Returns a project processing results.
|
|
1174
1257
|
* @param id Project identifier.
|
|
@@ -1308,8 +1391,8 @@ export declare class ProjectsApiClient extends ApiClientBase implements IProject
|
|
|
1308
1391
|
* @param tenantId (optional) Tenant identifier.
|
|
1309
1392
|
* @return Success
|
|
1310
1393
|
*/
|
|
1311
|
-
getAvailableTransitions(id: number, tenantId?: number | null | undefined): Observable<
|
|
1312
|
-
protected processGetAvailableTransitions(response: HttpResponseBase): Observable<
|
|
1394
|
+
getAvailableTransitions(id: number, tenantId?: number | null | undefined): Observable<PagedOfProjectStatusTransitionDto>;
|
|
1395
|
+
protected processGetAvailableTransitions(response: HttpResponseBase): Observable<PagedOfProjectStatusTransitionDto>;
|
|
1313
1396
|
/**
|
|
1314
1397
|
* Changes the project status.
|
|
1315
1398
|
* @param id Project identifier
|
|
@@ -1349,8 +1432,8 @@ export declare class ProjectsApiClient extends ApiClientBase implements IProject
|
|
|
1349
1432
|
* @param tenantId (optional) Tenant identifier.
|
|
1350
1433
|
* @return Success
|
|
1351
1434
|
*/
|
|
1352
|
-
getAllTransitions(tenantId?: number | null | undefined): Observable<
|
|
1353
|
-
protected processGetAllTransitions(response: HttpResponseBase): Observable<
|
|
1435
|
+
getAllTransitions(tenantId?: number | null | undefined): Observable<PagedOfProjectStatusTransitionDto>;
|
|
1436
|
+
protected processGetAllTransitions(response: HttpResponseBase): Observable<PagedOfProjectStatusTransitionDto>;
|
|
1354
1437
|
/**
|
|
1355
1438
|
* Returns a project processing results.
|
|
1356
1439
|
* @param id Project identifier.
|
|
@@ -1405,10 +1488,11 @@ export interface IStorefrontsApiClient {
|
|
|
1405
1488
|
* @param take (optional) Defines page length (how many consequent items of sorted result list should be taken).
|
|
1406
1489
|
* @param sorting (optional) Defines sorting order of result list e.g.: "Title ASC, LastModified DESC".
|
|
1407
1490
|
* @param search (optional) Search string for partial match.
|
|
1491
|
+
* @param status (optional) Storefront status.
|
|
1408
1492
|
* @param tenantId (optional) Tenant identifier.
|
|
1409
1493
|
* @return Success
|
|
1410
1494
|
*/
|
|
1411
|
-
getAll(types?: StorefrontType[] | null | undefined, skip?: number | null | undefined, take?: number | null | undefined, sorting?: string | null | undefined, search?: string | null | undefined, tenantId?: number | null | undefined): Observable<PagedOfStorefrontDto>;
|
|
1495
|
+
getAll(types?: StorefrontType[] | null | undefined, skip?: number | null | undefined, take?: number | null | undefined, sorting?: string | null | undefined, search?: string | null | undefined, status?: StorefrontStatus | null | undefined, tenantId?: number | null | undefined): Observable<PagedOfStorefrontDto>;
|
|
1412
1496
|
/**
|
|
1413
1497
|
* Returns a storefront by identifier.
|
|
1414
1498
|
* @param id Storefront identifier.
|
|
@@ -1429,10 +1513,11 @@ export declare class StorefrontsApiClient extends ApiClientBase implements IStor
|
|
|
1429
1513
|
* @param take (optional) Defines page length (how many consequent items of sorted result list should be taken).
|
|
1430
1514
|
* @param sorting (optional) Defines sorting order of result list e.g.: "Title ASC, LastModified DESC".
|
|
1431
1515
|
* @param search (optional) Search string for partial match.
|
|
1516
|
+
* @param status (optional) Storefront status.
|
|
1432
1517
|
* @param tenantId (optional) Tenant identifier.
|
|
1433
1518
|
* @return Success
|
|
1434
1519
|
*/
|
|
1435
|
-
getAll(types?: StorefrontType[] | null | undefined, skip?: number | null | undefined, take?: number | null | undefined, sorting?: string | null | undefined, search?: string | null | undefined, tenantId?: number | null | undefined): Observable<PagedOfStorefrontDto>;
|
|
1520
|
+
getAll(types?: StorefrontType[] | null | undefined, skip?: number | null | undefined, take?: number | null | undefined, sorting?: string | null | undefined, search?: string | null | undefined, status?: StorefrontStatus | null | undefined, tenantId?: number | null | undefined): Observable<PagedOfStorefrontDto>;
|
|
1436
1521
|
protected processGetAll(response: HttpResponseBase): Observable<PagedOfStorefrontDto>;
|
|
1437
1522
|
/**
|
|
1438
1523
|
* Returns a storefront by identifier.
|
|
@@ -1763,6 +1848,49 @@ export interface GeneralConflictDto {
|
|
|
1763
1848
|
/** Coflict type. */
|
|
1764
1849
|
type?: ConflictType;
|
|
1765
1850
|
}
|
|
1851
|
+
/** Customer's Canvas product type. */
|
|
1852
|
+
export declare enum ProductType {
|
|
1853
|
+
ProductSpecification = "ProductSpecification",
|
|
1854
|
+
Product = "Product",
|
|
1855
|
+
ProductLink = "ProductLink",
|
|
1856
|
+
ProductBundle = "ProductBundle"
|
|
1857
|
+
}
|
|
1858
|
+
/** Type of editor that should be configured by workflow. */
|
|
1859
|
+
export declare enum WorkflowType {
|
|
1860
|
+
UIFramework = "UIFramework",
|
|
1861
|
+
SimpleEditor = "SimpleEditor",
|
|
1862
|
+
DesignEditor = "DesignEditor",
|
|
1863
|
+
WorkflowElements = "WorkflowElements"
|
|
1864
|
+
}
|
|
1865
|
+
/** DTO class, containing information needed to start personalization process. */
|
|
1866
|
+
export interface PersonalizationParametersDto {
|
|
1867
|
+
/** Customer's Canvas product type. */
|
|
1868
|
+
productType?: ProductType;
|
|
1869
|
+
/** Customer's Canvas product identifier.
|
|
1870
|
+
May keep reference to `Product`, `Product Specification`, `Product Link` or `Product Bundle` (depending on `Type` value). */
|
|
1871
|
+
id?: number | null;
|
|
1872
|
+
/** Customer's Canvas product version identifier.
|
|
1873
|
+
May keep reference to version of `Product`, `Product Link` or `Product Bundle` (depending on `Type` value). */
|
|
1874
|
+
versionId?: number | null;
|
|
1875
|
+
/** API Gateway URL address. */
|
|
1876
|
+
apiGatewayUrl?: string | null;
|
|
1877
|
+
/** Design Editor application URL address. */
|
|
1878
|
+
designEditorUrl?: string | null;
|
|
1879
|
+
/** Preflight application URL address. */
|
|
1880
|
+
preflightUrl?: string | null;
|
|
1881
|
+
/** Dynamic Image application URL address. */
|
|
1882
|
+
dynamicImageUrl?: string | null;
|
|
1883
|
+
/** Link to UI-Framework bundle. */
|
|
1884
|
+
uiFrameworkUrl?: string | null;
|
|
1885
|
+
/** Link to Simple Editor bundle. */
|
|
1886
|
+
simpleEditorUrl?: string | null;
|
|
1887
|
+
/** Link to Workflow Elements bundle. */
|
|
1888
|
+
workflowElementsUrl?: string | null;
|
|
1889
|
+
/** Personalization workflow type. */
|
|
1890
|
+
workflowType?: WorkflowType;
|
|
1891
|
+
/** Serialized content of compiled personalization workflow. */
|
|
1892
|
+
workflowContent?: string | null;
|
|
1893
|
+
}
|
|
1766
1894
|
/** Available appearance types. */
|
|
1767
1895
|
export declare enum AppearanceDataType {
|
|
1768
1896
|
Radio = "Radio",
|
|
@@ -1861,6 +1989,8 @@ export interface ProductSummaryDto {
|
|
|
1861
1989
|
productVariantSku?: string | null;
|
|
1862
1990
|
/** Product variant price. If product variant is not specified, should be null. */
|
|
1863
1991
|
productVariantPrice?: number | null;
|
|
1992
|
+
/** Product variant weight. If product variant is not specified, should be null. */
|
|
1993
|
+
productVariantWeight?: number | null;
|
|
1864
1994
|
/** Product variant availability. If product variant is not specified, should be null. */
|
|
1865
1995
|
isProductVariantAvailable?: boolean | null;
|
|
1866
1996
|
/** Product name. If product link is specified, name of link will be used. */
|
|
@@ -1885,13 +2015,6 @@ export interface ProductSummaryDto {
|
|
|
1885
2015
|
If product link or variant is specified, product options will be filtered by link or variant options. */
|
|
1886
2016
|
options?: ProductSummaryOptionDto[] | null;
|
|
1887
2017
|
}
|
|
1888
|
-
/** Type of editor that should be configured by workflow. */
|
|
1889
|
-
export declare enum WorkflowType {
|
|
1890
|
-
UIFramework = "UIFramework",
|
|
1891
|
-
SimpleEditor = "SimpleEditor",
|
|
1892
|
-
DesignEditor = "DesignEditor",
|
|
1893
|
-
WorkflowElements = "WorkflowElements"
|
|
1894
|
-
}
|
|
1895
2018
|
/** Personalization workflow description DTO. */
|
|
1896
2019
|
export interface PersonalizationWorkflowDto {
|
|
1897
2020
|
/** Workflow identifier. */
|
|
@@ -2236,6 +2359,8 @@ export interface ProductVariantDto {
|
|
|
2236
2359
|
isAvailable?: boolean;
|
|
2237
2360
|
/** Product variant price. */
|
|
2238
2361
|
price?: number | null;
|
|
2362
|
+
/** Product variant weight. */
|
|
2363
|
+
weight?: number | null;
|
|
2239
2364
|
/** Product variant sort index. */
|
|
2240
2365
|
sortIndex?: number;
|
|
2241
2366
|
/** Product variant identifier (usually SKU) in storefront / online store. */
|
|
@@ -2490,6 +2615,8 @@ export interface ProjectDto {
|
|
|
2490
2615
|
orderUrl?: string | null;
|
|
2491
2616
|
/** Order number in ecommerce system. */
|
|
2492
2617
|
orderNumber?: number | null;
|
|
2618
|
+
/** Order name in ecommerce system. */
|
|
2619
|
+
orderName?: string | null;
|
|
2493
2620
|
/** Order item identifier from storefront order. */
|
|
2494
2621
|
orderLineItemId?: string | null;
|
|
2495
2622
|
/** Order item index from storefront order. */
|
|
@@ -2597,6 +2724,8 @@ export interface CreateSingleItemProjectDto {
|
|
|
2597
2724
|
orderUrl?: string | null;
|
|
2598
2725
|
/** Order number in ecommerce system. */
|
|
2599
2726
|
orderNumber?: number | null;
|
|
2727
|
+
/** Order name in ecommerce system. */
|
|
2728
|
+
orderName?: string | null;
|
|
2600
2729
|
/** Customer identifier in ecommerce system. */
|
|
2601
2730
|
customerId?: string | null;
|
|
2602
2731
|
/** Customer name in ecommerce system. */
|
|
@@ -2618,6 +2747,8 @@ export interface CreateMultiItemProjectDto {
|
|
|
2618
2747
|
orderUrl?: string | null;
|
|
2619
2748
|
/** Order number in ecommerce system. */
|
|
2620
2749
|
orderNumber?: number | null;
|
|
2750
|
+
/** Order name in ecommerce system. */
|
|
2751
|
+
orderName?: string | null;
|
|
2621
2752
|
/** Customer identifier in ecommerce system. */
|
|
2622
2753
|
customerId?: string | null;
|
|
2623
2754
|
/** Customer name in ecommerce system. */
|
|
@@ -2639,6 +2770,8 @@ export interface OrderDetailsDto {
|
|
|
2639
2770
|
orderUrl?: string | null;
|
|
2640
2771
|
/** Order number in ecommerce system. */
|
|
2641
2772
|
orderNumber?: number | null;
|
|
2773
|
+
/** Order name in ecommerce system. */
|
|
2774
|
+
orderName?: string | null;
|
|
2642
2775
|
/** Line item index from ecommerce system order. */
|
|
2643
2776
|
orderLineItemIndex?: number | null;
|
|
2644
2777
|
/** Line Item identifier from ecommerce system order. */
|
|
@@ -2737,8 +2870,10 @@ export interface CreateProjectBySpecificPipelineScenarioDto {
|
|
|
2737
2870
|
/** 'Specific Pipeline' scenario params. For more information check BackOffice.Web.PublicApi.ApiStorefront.Models.SpecificPipelineScenarioDto. */
|
|
2738
2871
|
scenario: SpecificPipelineScenarioDto;
|
|
2739
2872
|
}
|
|
2740
|
-
/** Project transition dto class. */
|
|
2741
|
-
export interface
|
|
2873
|
+
/** Project status transition dto class. */
|
|
2874
|
+
export interface ProjectStatusTransitionDto {
|
|
2875
|
+
/** Transition identifier. */
|
|
2876
|
+
id?: number;
|
|
2742
2877
|
/** Transition identifying name. */
|
|
2743
2878
|
name?: string | null;
|
|
2744
2879
|
/** Transition display name. */
|
|
@@ -2749,23 +2884,27 @@ export interface ProjectTransitionDto {
|
|
|
2749
2884
|
resultStatus?: number;
|
|
2750
2885
|
}
|
|
2751
2886
|
/** Paged list of items. */
|
|
2752
|
-
export interface
|
|
2887
|
+
export interface PagedOfProjectStatusTransitionDto {
|
|
2753
2888
|
/** Items count. */
|
|
2754
2889
|
total?: number;
|
|
2755
2890
|
/** Items list. */
|
|
2756
|
-
items?:
|
|
2891
|
+
items?: ProjectStatusTransitionDto[] | null;
|
|
2757
2892
|
}
|
|
2758
|
-
/**
|
|
2893
|
+
/** Project status parameters. */
|
|
2759
2894
|
export interface ProjectStatusDto {
|
|
2895
|
+
/** Project status identifier. */
|
|
2896
|
+
id?: number;
|
|
2760
2897
|
/** Status code. */
|
|
2761
2898
|
code?: number;
|
|
2899
|
+
/** Status mark color. */
|
|
2900
|
+
color?: string | null;
|
|
2762
2901
|
/** Status display name. */
|
|
2763
2902
|
displayName?: string | null;
|
|
2764
2903
|
}
|
|
2765
|
-
/** Dto class, containing information about the project transition conflict. */
|
|
2766
|
-
export interface
|
|
2904
|
+
/** Dto class, containing information about the project status transition conflict. */
|
|
2905
|
+
export interface ProjectStatusTransitionConflictDto {
|
|
2767
2906
|
/** A list of all available status transitions for the project. */
|
|
2768
|
-
availableTransitions?:
|
|
2907
|
+
availableTransitions?: ProjectStatusTransitionDto[] | null;
|
|
2769
2908
|
/** Problem description. */
|
|
2770
2909
|
description?: string | null;
|
|
2771
2910
|
/** Coflict type. */
|
|
@@ -2841,6 +2980,11 @@ export declare enum StorefrontType {
|
|
|
2841
2980
|
Shopify = "Shopify",
|
|
2842
2981
|
ShopifyCustom = "ShopifyCustom"
|
|
2843
2982
|
}
|
|
2983
|
+
/** Storefront status. */
|
|
2984
|
+
export declare enum StorefrontStatus {
|
|
2985
|
+
Dev = "Dev",
|
|
2986
|
+
Prod = "Prod"
|
|
2987
|
+
}
|
|
2844
2988
|
/** Dto class, containing information about a storefront. */
|
|
2845
2989
|
export interface StorefrontDto {
|
|
2846
2990
|
/** Storefront identifier. */
|
|
@@ -2853,6 +2997,8 @@ export interface StorefrontDto {
|
|
|
2853
2997
|
type?: StorefrontType;
|
|
2854
2998
|
/** Storefront entity creation date and time. */
|
|
2855
2999
|
created?: string;
|
|
3000
|
+
/** Storefront status. */
|
|
3001
|
+
status?: StorefrontStatus;
|
|
2856
3002
|
}
|
|
2857
3003
|
/** Paged list of items. */
|
|
2858
3004
|
export interface PagedOfStorefrontDto {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aurigma/ng-storefront-api-client",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.65.1",
|
|
4
4
|
"license": "SEE LICENSE IN License.md",
|
|
5
5
|
"description": "Angular API Client for Storefront API service of Customer's Canvas web-to-print system.",
|
|
6
6
|
"author": "Aurigma Inc <info@aurigma.com> (https://customerscanvas.com)",
|