@aurigma/ng-storefront-api-client 2.46.4 → 2.48.3
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 +299 -162
- 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 +208 -84
- package/esm2015/lib/storefront.module.js +1 -1
- package/esm2015/public-api.js +1 -1
- package/fesm2015/aurigma-ng-storefront-api-client.js +207 -83
- package/fesm2015/aurigma-ng-storefront-api-client.js.map +1 -1
- package/lib/storefront-api-client.d.ts +122 -40
- package/package.json +1 -1
|
@@ -346,14 +346,6 @@ export interface IProjectsApiClient {
|
|
|
346
346
|
* @return Success
|
|
347
347
|
*/
|
|
348
348
|
getAll(ownerId?: string | null | undefined, productReference?: string | null | undefined, status?: number | null | undefined, datePeriod?: DatePeriod | undefined, skip?: number | null | undefined, take?: number | null | undefined, sorting?: string | null | undefined, search?: string | null | undefined, orderId?: string | null | undefined, processingStatus?: ProjectProcessingStatus | null | undefined, storefrontId?: number | null | undefined, tenantId?: number | null | undefined): Observable<PagedOfProjectDto>;
|
|
349
|
-
/**
|
|
350
|
-
* Creates a new project.
|
|
351
|
-
* @param storefrontId Storefront identifier.
|
|
352
|
-
* @param tenantId (optional) Tenant identifier.
|
|
353
|
-
* @param body (optional) Create operation parameters.
|
|
354
|
-
* @return Success
|
|
355
|
-
*/
|
|
356
|
-
create(storefrontId: number, tenantId?: number | null | undefined, body?: CreateProjectDto | null | undefined): Observable<ProjectDto>;
|
|
357
349
|
/**
|
|
358
350
|
* Returns a project by identifier.
|
|
359
351
|
* @param id Project identifier.
|
|
@@ -382,6 +374,22 @@ export interface IProjectsApiClient {
|
|
|
382
374
|
* @return Success
|
|
383
375
|
*/
|
|
384
376
|
getPreviewUrl(id: number, tenantId?: number | null | undefined): Observable<string>;
|
|
377
|
+
/**
|
|
378
|
+
* Creates a new project with single item.
|
|
379
|
+
* @param storefrontId Storefront identifier.
|
|
380
|
+
* @param tenantId (optional) Tenant identifier.
|
|
381
|
+
* @param body (optional) Create operation parameters.
|
|
382
|
+
* @return Success
|
|
383
|
+
*/
|
|
384
|
+
createWithSingleItem(storefrontId: number, tenantId?: number | null | undefined, body?: CreateSingleItemProjectDto | null | undefined): Observable<ProjectDto>;
|
|
385
|
+
/**
|
|
386
|
+
* Creates a new project with multiple items.
|
|
387
|
+
* @param storefrontId Storefront identifier.
|
|
388
|
+
* @param tenantId (optional) Tenant identifier.
|
|
389
|
+
* @param body (optional) Create operation parameters.
|
|
390
|
+
* @return Success
|
|
391
|
+
*/
|
|
392
|
+
createWithMultipleItems(storefrontId: number, tenantId?: number | null | undefined, body?: CreateMultiItemProjectDto | null | undefined): Observable<ProjectDto>;
|
|
385
393
|
/**
|
|
386
394
|
* Creates a new project by 'Render HiRes' scenario.
|
|
387
395
|
* @param storefrontId Storefront identifier.
|
|
@@ -457,24 +465,27 @@ export interface IProjectsApiClient {
|
|
|
457
465
|
/**
|
|
458
466
|
* Returns a project processing results.
|
|
459
467
|
* @param id Project identifier.
|
|
468
|
+
* @param itemId (optional) Project item identifier.
|
|
460
469
|
* @param tenantId (optional) Tenant identifier.
|
|
461
470
|
* @return Success
|
|
462
471
|
*/
|
|
463
|
-
getProjectProcessingResults(id: number, tenantId?: number | null | undefined): Observable<ProjectProcessingResultsDto>;
|
|
472
|
+
getProjectProcessingResults(id: number, itemId?: number | null | undefined, tenantId?: number | null | undefined): Observable<ProjectProcessingResultsDto>;
|
|
464
473
|
/**
|
|
465
474
|
* Resumes project processing.
|
|
466
475
|
* @param id Project identifier.
|
|
476
|
+
* @param itemId (optional) Project item identifier. If value is set, only specified item processing will be resumed.
|
|
467
477
|
* @param tenantId (optional) Tenant identifier.
|
|
468
478
|
* @return Success
|
|
469
479
|
*/
|
|
470
|
-
resumeProjectProcessing(id: number, tenantId?: number | null | undefined): Observable<void>;
|
|
480
|
+
resumeProjectProcessing(id: number, itemId?: number | null | undefined, tenantId?: number | null | undefined): Observable<void>;
|
|
471
481
|
/**
|
|
472
482
|
* Restarts a project processing routine.
|
|
473
483
|
* @param id Project identifier.
|
|
484
|
+
* @param itemId (optional) Project item identifier. If value is set, only specified item processing will be restarted.
|
|
474
485
|
* @param tenantId (optional) Tenant identifier.
|
|
475
486
|
* @return Success
|
|
476
487
|
*/
|
|
477
|
-
restartProjectProcessing(id: number, tenantId?: number | null | undefined): Observable<void>;
|
|
488
|
+
restartProjectProcessing(id: number, itemId?: number | null | undefined, tenantId?: number | null | undefined): Observable<void>;
|
|
478
489
|
/**
|
|
479
490
|
* Returns an order description from the ecommerce system for the specified project.
|
|
480
491
|
* @param id Project identifier.
|
|
@@ -485,11 +496,12 @@ export interface IProjectsApiClient {
|
|
|
485
496
|
/**
|
|
486
497
|
* Attachs the specified data to the project's order in ecommerce system.
|
|
487
498
|
* @param id Project identifier.
|
|
499
|
+
* @param itemId (optional)
|
|
488
500
|
* @param tenantId (optional) Tenant identifier.
|
|
489
501
|
* @param body (optional) A list of data items, which should be attached to project's order.
|
|
490
502
|
* @return Success
|
|
491
503
|
*/
|
|
492
|
-
attachDataToProjectOrder(id: number, tenantId?: number | null | undefined, body?: OrderDataItemDto[] | null | undefined): Observable<void>;
|
|
504
|
+
attachDataToProjectOrder(id: number, itemId?: number | null | undefined, tenantId?: number | null | undefined, body?: OrderDataItemDto[] | null | undefined): Observable<void>;
|
|
493
505
|
}
|
|
494
506
|
export declare class ProjectsApiClient extends ApiClientBase implements IProjectsApiClient {
|
|
495
507
|
private http;
|
|
@@ -514,15 +526,6 @@ export declare class ProjectsApiClient extends ApiClientBase implements IProject
|
|
|
514
526
|
*/
|
|
515
527
|
getAll(ownerId?: string | null | undefined, productReference?: string | null | undefined, status?: number | null | undefined, datePeriod?: DatePeriod | undefined, skip?: number | null | undefined, take?: number | null | undefined, sorting?: string | null | undefined, search?: string | null | undefined, orderId?: string | null | undefined, processingStatus?: ProjectProcessingStatus | null | undefined, storefrontId?: number | null | undefined, tenantId?: number | null | undefined): Observable<PagedOfProjectDto>;
|
|
516
528
|
protected processGetAll(response: HttpResponseBase): Observable<PagedOfProjectDto>;
|
|
517
|
-
/**
|
|
518
|
-
* Creates a new project.
|
|
519
|
-
* @param storefrontId Storefront identifier.
|
|
520
|
-
* @param tenantId (optional) Tenant identifier.
|
|
521
|
-
* @param body (optional) Create operation parameters.
|
|
522
|
-
* @return Success
|
|
523
|
-
*/
|
|
524
|
-
create(storefrontId: number, tenantId?: number | null | undefined, body?: CreateProjectDto | null | undefined): Observable<ProjectDto>;
|
|
525
|
-
protected processCreate(response: HttpResponseBase): Observable<ProjectDto>;
|
|
526
529
|
/**
|
|
527
530
|
* Returns a project by identifier.
|
|
528
531
|
* @param id Project identifier.
|
|
@@ -555,6 +558,24 @@ export declare class ProjectsApiClient extends ApiClientBase implements IProject
|
|
|
555
558
|
*/
|
|
556
559
|
getPreviewUrl(id: number, tenantId?: number | null | undefined): Observable<string>;
|
|
557
560
|
protected processGetPreviewUrl(response: HttpResponseBase): Observable<string>;
|
|
561
|
+
/**
|
|
562
|
+
* Creates a new project with single item.
|
|
563
|
+
* @param storefrontId Storefront identifier.
|
|
564
|
+
* @param tenantId (optional) Tenant identifier.
|
|
565
|
+
* @param body (optional) Create operation parameters.
|
|
566
|
+
* @return Success
|
|
567
|
+
*/
|
|
568
|
+
createWithSingleItem(storefrontId: number, tenantId?: number | null | undefined, body?: CreateSingleItemProjectDto | null | undefined): Observable<ProjectDto>;
|
|
569
|
+
protected processCreateWithSingleItem(response: HttpResponseBase): Observable<ProjectDto>;
|
|
570
|
+
/**
|
|
571
|
+
* Creates a new project with multiple items.
|
|
572
|
+
* @param storefrontId Storefront identifier.
|
|
573
|
+
* @param tenantId (optional) Tenant identifier.
|
|
574
|
+
* @param body (optional) Create operation parameters.
|
|
575
|
+
* @return Success
|
|
576
|
+
*/
|
|
577
|
+
createWithMultipleItems(storefrontId: number, tenantId?: number | null | undefined, body?: CreateMultiItemProjectDto | null | undefined): Observable<ProjectDto>;
|
|
578
|
+
protected processCreateWithMultipleItems(response: HttpResponseBase): Observable<ProjectDto>;
|
|
558
579
|
/**
|
|
559
580
|
* Creates a new project by 'Render HiRes' scenario.
|
|
560
581
|
* @param storefrontId Storefront identifier.
|
|
@@ -639,26 +660,29 @@ export declare class ProjectsApiClient extends ApiClientBase implements IProject
|
|
|
639
660
|
/**
|
|
640
661
|
* Returns a project processing results.
|
|
641
662
|
* @param id Project identifier.
|
|
663
|
+
* @param itemId (optional) Project item identifier.
|
|
642
664
|
* @param tenantId (optional) Tenant identifier.
|
|
643
665
|
* @return Success
|
|
644
666
|
*/
|
|
645
|
-
getProjectProcessingResults(id: number, tenantId?: number | null | undefined): Observable<ProjectProcessingResultsDto>;
|
|
667
|
+
getProjectProcessingResults(id: number, itemId?: number | null | undefined, tenantId?: number | null | undefined): Observable<ProjectProcessingResultsDto>;
|
|
646
668
|
protected processGetProjectProcessingResults(response: HttpResponseBase): Observable<ProjectProcessingResultsDto>;
|
|
647
669
|
/**
|
|
648
670
|
* Resumes project processing.
|
|
649
671
|
* @param id Project identifier.
|
|
672
|
+
* @param itemId (optional) Project item identifier. If value is set, only specified item processing will be resumed.
|
|
650
673
|
* @param tenantId (optional) Tenant identifier.
|
|
651
674
|
* @return Success
|
|
652
675
|
*/
|
|
653
|
-
resumeProjectProcessing(id: number, tenantId?: number | null | undefined): Observable<void>;
|
|
676
|
+
resumeProjectProcessing(id: number, itemId?: number | null | undefined, tenantId?: number | null | undefined): Observable<void>;
|
|
654
677
|
protected processResumeProjectProcessing(response: HttpResponseBase): Observable<void>;
|
|
655
678
|
/**
|
|
656
679
|
* Restarts a project processing routine.
|
|
657
680
|
* @param id Project identifier.
|
|
681
|
+
* @param itemId (optional) Project item identifier. If value is set, only specified item processing will be restarted.
|
|
658
682
|
* @param tenantId (optional) Tenant identifier.
|
|
659
683
|
* @return Success
|
|
660
684
|
*/
|
|
661
|
-
restartProjectProcessing(id: number, tenantId?: number | null | undefined): Observable<void>;
|
|
685
|
+
restartProjectProcessing(id: number, itemId?: number | null | undefined, tenantId?: number | null | undefined): Observable<void>;
|
|
662
686
|
protected processRestartProjectProcessing(response: HttpResponseBase): Observable<void>;
|
|
663
687
|
/**
|
|
664
688
|
* Returns an order description from the ecommerce system for the specified project.
|
|
@@ -671,11 +695,12 @@ export declare class ProjectsApiClient extends ApiClientBase implements IProject
|
|
|
671
695
|
/**
|
|
672
696
|
* Attachs the specified data to the project's order in ecommerce system.
|
|
673
697
|
* @param id Project identifier.
|
|
698
|
+
* @param itemId (optional)
|
|
674
699
|
* @param tenantId (optional) Tenant identifier.
|
|
675
700
|
* @param body (optional) A list of data items, which should be attached to project's order.
|
|
676
701
|
* @return Success
|
|
677
702
|
*/
|
|
678
|
-
attachDataToProjectOrder(id: number, tenantId?: number | null | undefined, body?: OrderDataItemDto[] | null | undefined): Observable<void>;
|
|
703
|
+
attachDataToProjectOrder(id: number, itemId?: number | null | undefined, tenantId?: number | null | undefined, body?: OrderDataItemDto[] | null | undefined): Observable<void>;
|
|
679
704
|
protected processAttachDataToProjectOrder(response: HttpResponseBase): Observable<void>;
|
|
680
705
|
}
|
|
681
706
|
export interface IStorefrontsApiClient {
|
|
@@ -1064,10 +1089,18 @@ export interface ProjectItemResourceDto {
|
|
|
1064
1089
|
}
|
|
1065
1090
|
/** Dto class, containing information about a project item. */
|
|
1066
1091
|
export interface ProjectItemDto {
|
|
1092
|
+
/** Item identifier. */
|
|
1093
|
+
id?: number;
|
|
1067
1094
|
/** Item name. */
|
|
1068
1095
|
name?: string | null;
|
|
1069
1096
|
/** Item quantity information. */
|
|
1070
1097
|
quantity?: number | null;
|
|
1098
|
+
/** Order item identifier from storefront order. */
|
|
1099
|
+
orderLineItemId?: string | null;
|
|
1100
|
+
/** Order item index from storefront order. */
|
|
1101
|
+
orderLineItemIndex?: number | null;
|
|
1102
|
+
/** Storefront product reference (i.e external reference to Customer's Canvas product specification). */
|
|
1103
|
+
productReference?: string | null;
|
|
1071
1104
|
/** Item information. */
|
|
1072
1105
|
fields?: {
|
|
1073
1106
|
[key: string]: any;
|
|
@@ -1085,7 +1118,7 @@ export interface ProjectItemDto {
|
|
|
1085
1118
|
export interface ProjectDto {
|
|
1086
1119
|
/** Project identifier. */
|
|
1087
1120
|
id?: number;
|
|
1088
|
-
/**
|
|
1121
|
+
/** Storefront product identifier. */
|
|
1089
1122
|
productReference?: string | null;
|
|
1090
1123
|
/** Storefront identifier. */
|
|
1091
1124
|
storefrontId?: number;
|
|
@@ -1097,9 +1130,9 @@ export interface ProjectDto {
|
|
|
1097
1130
|
orderUrl?: string | null;
|
|
1098
1131
|
/** Order number in ecommerce system. */
|
|
1099
1132
|
orderNumber?: number | null;
|
|
1100
|
-
/**
|
|
1133
|
+
/** Order item identifier from storefront order. */
|
|
1101
1134
|
orderLineItemId?: string | null;
|
|
1102
|
-
/**
|
|
1135
|
+
/** Order item index from storefront order. */
|
|
1103
1136
|
orderLineItemIndex?: number | null;
|
|
1104
1137
|
/** Customer identifier in ecommerce system. */
|
|
1105
1138
|
customerId?: string | null;
|
|
@@ -1129,7 +1162,7 @@ export interface PagedOfProjectDto {
|
|
|
1129
1162
|
/** Items list. */
|
|
1130
1163
|
items?: ProjectDto[] | null;
|
|
1131
1164
|
}
|
|
1132
|
-
/** Dto class, containing create operation
|
|
1165
|
+
/** Dto class, containing create operation parameters for a project item resource. */
|
|
1133
1166
|
export interface ProjectItemResourceParametersDto {
|
|
1134
1167
|
/** Resource URL. */
|
|
1135
1168
|
url?: string | null;
|
|
@@ -1146,6 +1179,12 @@ export interface ProjectItemParametersDto {
|
|
|
1146
1179
|
name?: string | null;
|
|
1147
1180
|
/** Item quantity information. */
|
|
1148
1181
|
quantity?: number | null;
|
|
1182
|
+
/** Line item index from ecommerce system order. */
|
|
1183
|
+
orderLineItemIndex?: number | null;
|
|
1184
|
+
/** Line Item identifier from ecommerce system order. */
|
|
1185
|
+
orderLineItemId?: string | null;
|
|
1186
|
+
/** Storefront product identifier. */
|
|
1187
|
+
productReference?: string | null;
|
|
1149
1188
|
/** Item information. */
|
|
1150
1189
|
fields?: {
|
|
1151
1190
|
[key: string]: any;
|
|
@@ -1159,20 +1198,43 @@ export interface ProjectItemParametersDto {
|
|
|
1159
1198
|
/** External resources descriptions. */
|
|
1160
1199
|
resources?: ProjectItemResourceParametersDto[] | null;
|
|
1161
1200
|
}
|
|
1162
|
-
/** Dto class, containing create operation parameters for project entity. */
|
|
1163
|
-
export interface
|
|
1201
|
+
/** Dto class, containing create operation parameters for single-item project entity. */
|
|
1202
|
+
export interface CreateSingleItemProjectDto {
|
|
1164
1203
|
/** Product reference (i.e external reference to Customer's Canvas product specification - main subject of this project). */
|
|
1165
|
-
productReference
|
|
1204
|
+
productReference?: string | null;
|
|
1205
|
+
/** Line item index from ecommerce system order. */
|
|
1206
|
+
orderLineItemIndex?: number | null;
|
|
1207
|
+
/** Line Item identifier from ecommerce system order. */
|
|
1208
|
+
orderLineItemId?: string | null;
|
|
1209
|
+
/** List of project items. */
|
|
1210
|
+
items?: ProjectItemParametersDto[] | null;
|
|
1211
|
+
/** Order identifier in ecommerce system. */
|
|
1212
|
+
orderId?: string | null;
|
|
1213
|
+
/** Order url in ecommerce system. */
|
|
1214
|
+
orderUrl?: string | null;
|
|
1215
|
+
/** Order number in ecommerce system. */
|
|
1216
|
+
orderNumber?: number | null;
|
|
1217
|
+
/** Customer identifier in ecommerce system. */
|
|
1218
|
+
customerId?: string | null;
|
|
1219
|
+
/** Customer name in ecommerce system. */
|
|
1220
|
+
customerName?: string | null;
|
|
1221
|
+
/** Project name. */
|
|
1222
|
+
name?: string | null;
|
|
1223
|
+
/** Project owner identifier. */
|
|
1224
|
+
ownerId: string;
|
|
1225
|
+
/** List of project items. */
|
|
1226
|
+
item?: ProjectItemParametersDto | null;
|
|
1227
|
+
/** Description of the project. */
|
|
1228
|
+
description?: string | null;
|
|
1229
|
+
}
|
|
1230
|
+
/** Dto class, containing create operation parameters for multi-item project entity. */
|
|
1231
|
+
export interface CreateMultiItemProjectDto {
|
|
1166
1232
|
/** Order identifier in ecommerce system. */
|
|
1167
1233
|
orderId?: string | null;
|
|
1168
1234
|
/** Order url in ecommerce system. */
|
|
1169
1235
|
orderUrl?: string | null;
|
|
1170
1236
|
/** Order number in ecommerce system. */
|
|
1171
1237
|
orderNumber?: number | null;
|
|
1172
|
-
/** Line item index from ecommerce system order. */
|
|
1173
|
-
orderLineItemIndex?: number | null;
|
|
1174
|
-
/** Line Item identifier from ecommerce system order. */
|
|
1175
|
-
orderLineItemId?: string | null;
|
|
1176
1238
|
/** Customer identifier in ecommerce system. */
|
|
1177
1239
|
customerId?: string | null;
|
|
1178
1240
|
/** Customer name in ecommerce system. */
|
|
@@ -1247,13 +1309,25 @@ export interface CreateProjectByRenderHiResScenarioDto {
|
|
|
1247
1309
|
description?: string | null;
|
|
1248
1310
|
/** Ecommerce system order description. */
|
|
1249
1311
|
orderDetails?: OrderDetailsDto | null;
|
|
1312
|
+
/** Line item index from ecommerce system order. */
|
|
1313
|
+
orderLineItemIndex?: number | null;
|
|
1314
|
+
/** Line Item identifier from ecommerce system order. */
|
|
1315
|
+
orderLineItemId?: string | null;
|
|
1250
1316
|
/** List of project items. */
|
|
1251
1317
|
scenario: RenderHiResScenarioDto;
|
|
1252
1318
|
}
|
|
1319
|
+
export interface ItemPipelineDto {
|
|
1320
|
+
itemName?: string | null;
|
|
1321
|
+
pipelineId?: number;
|
|
1322
|
+
}
|
|
1253
1323
|
/** Dto class, containing 'Specific Pipeline' scenario parameters. */
|
|
1254
1324
|
export interface SpecificPipelineScenarioDto {
|
|
1255
1325
|
/** An existing processing pipeline identifier. */
|
|
1256
|
-
pipelineId?: number;
|
|
1326
|
+
pipelineId?: number | null;
|
|
1327
|
+
/** An existing processing pipeline identifier for project post-processing. */
|
|
1328
|
+
postProcessingPipelineId?: number | null;
|
|
1329
|
+
/** List of objects describing connections between project items and processing pipelines. */
|
|
1330
|
+
itemPipelines?: ItemPipelineDto[] | null;
|
|
1257
1331
|
}
|
|
1258
1332
|
/** Dto class, containing 'create' operation parameters for a new project that should be created by executing 'Specific Pipeline' scenario. */
|
|
1259
1333
|
export interface CreateProjectBySpecificPipelineScenarioDto {
|
|
@@ -1314,16 +1388,24 @@ export interface ProjectPdfResultDto {
|
|
|
1314
1388
|
}
|
|
1315
1389
|
/** Dto class, containing description of a project output file. */
|
|
1316
1390
|
export interface ProjectOutputFileDetailsDto {
|
|
1391
|
+
/** Project item identifier. */
|
|
1392
|
+
projectItemId?: number | null;
|
|
1393
|
+
/** Order item identifier from storefront. */
|
|
1394
|
+
orderLineItemId?: string | null;
|
|
1395
|
+
/** Order item index from storefront. */
|
|
1396
|
+
orderLineItemIndex?: number | null;
|
|
1317
1397
|
/** Project output file URL. */
|
|
1318
1398
|
url?: string | null;
|
|
1319
|
-
/** Project output file name */
|
|
1399
|
+
/** Project output file name. */
|
|
1320
1400
|
name?: string | null;
|
|
1321
|
-
/** Project output file format */
|
|
1401
|
+
/** Project output file format. */
|
|
1322
1402
|
format?: string | null;
|
|
1323
|
-
/**
|
|
1403
|
+
/** Output artifact file identifier. */
|
|
1324
1404
|
artifactId?: string | null;
|
|
1325
1405
|
/** Project output file access strategy. */
|
|
1326
1406
|
anonymousAccess?: boolean;
|
|
1407
|
+
/** Project output file size in bytes. */
|
|
1408
|
+
size?: number | null;
|
|
1327
1409
|
}
|
|
1328
1410
|
/** Dto class, containing description of project processing results. */
|
|
1329
1411
|
export interface ProjectProcessingResultsDto {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aurigma/ng-storefront-api-client",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.48.3",
|
|
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)",
|