@aurigma/ng-storefront-api-client 2.18.2 → 2.20.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 +156 -60
- 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 +87 -4
- package/esm2015/lib/storefront.module.js +1 -1
- package/esm2015/public-api.js +1 -1
- package/fesm2015/aurigma-ng-storefront-api-client.js +86 -3
- package/fesm2015/aurigma-ng-storefront-api-client.js.map +1 -1
- package/lib/storefront-api-client.d.ts +22 -2
- package/package.json +1 -1
|
@@ -281,6 +281,13 @@ export interface IProjectsApiClient {
|
|
|
281
281
|
* @return Success
|
|
282
282
|
*/
|
|
283
283
|
get(id: number, tenantId?: number | null | undefined): Observable<ProjectDto>;
|
|
284
|
+
/**
|
|
285
|
+
* Removes a project by identifier.
|
|
286
|
+
* @param id Project identifier.
|
|
287
|
+
* @param tenantId (optional) Tenant identifier.
|
|
288
|
+
* @return Success
|
|
289
|
+
*/
|
|
290
|
+
delete(id: number, tenantId?: number | null | undefined): Observable<void>;
|
|
284
291
|
/**
|
|
285
292
|
* Returns all available status transitions for a project.
|
|
286
293
|
* @param id Project identifier.
|
|
@@ -381,6 +388,14 @@ export declare class ProjectsApiClient extends ApiClientBase implements IProject
|
|
|
381
388
|
*/
|
|
382
389
|
get(id: number, tenantId?: number | null | undefined): Observable<ProjectDto>;
|
|
383
390
|
protected processGet(response: HttpResponseBase): Observable<ProjectDto>;
|
|
391
|
+
/**
|
|
392
|
+
* Removes a project by identifier.
|
|
393
|
+
* @param id Project identifier.
|
|
394
|
+
* @param tenantId (optional) Tenant identifier.
|
|
395
|
+
* @return Success
|
|
396
|
+
*/
|
|
397
|
+
delete(id: number, tenantId?: number | null | undefined): Observable<void>;
|
|
398
|
+
protected processDelete(response: HttpResponseBase): Observable<void>;
|
|
384
399
|
/**
|
|
385
400
|
* Returns all available status transitions for a project.
|
|
386
401
|
* @param id Project identifier.
|
|
@@ -942,9 +957,14 @@ export interface ProjectPdfResultDto {
|
|
|
942
957
|
/** Storefront types. */
|
|
943
958
|
export declare enum StorefrontType {
|
|
944
959
|
Custom = "Custom",
|
|
945
|
-
|
|
960
|
+
ShopifyLegacy = "ShopifyLegacy",
|
|
946
961
|
DocketManager = "DocketManager",
|
|
947
|
-
|
|
962
|
+
CustomSaml = "CustomSaml",
|
|
963
|
+
NopCommerce = "NopCommerce",
|
|
964
|
+
WooCommerce = "WooCommerce",
|
|
965
|
+
Magento = "Magento",
|
|
966
|
+
BigCommerce = "BigCommerce",
|
|
967
|
+
Shopify = "Shopify"
|
|
948
968
|
}
|
|
949
969
|
/** Dto class, containing information about a storefront. */
|
|
950
970
|
export interface StorefrontDto {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aurigma/ng-storefront-api-client",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.20.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)",
|