@aurigma/ng-storefront-api-client 2.2.53

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.
@@ -0,0 +1,6 @@
1
+ import { ModuleWithProviders } from '@angular/core';
2
+ import * as StorefrontApiClient from './storefront-api-client';
3
+ export declare function CreateApiClientConfiguration(token: string, apiUrl: string, apiKey?: string): StorefrontApiClient.ApiClientConfiguration;
4
+ export declare class StorefrontModule {
5
+ static forRoot(token: string, apiUrl: string, apiKey?: string): ModuleWithProviders<StorefrontModule>;
6
+ }
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "@aurigma/ng-storefront-api-client",
3
+ "version": "2.2.53",
4
+ "license": "SEE LICENSE IN License.md",
5
+ "description": "Angular API Client for Storefront API service of Customer's Canvas web-to-print system.",
6
+ "author": "Aurigma Inc <info@aurigma.com> (https://customerscanvas.com)",
7
+ "keywords": [
8
+ "customer's canvas",
9
+ "web-to-print",
10
+ "api client",
11
+ "storefront"
12
+ ],
13
+ "homepage": "https://customerscanvas.com",
14
+ "bugs": "https://customerscanvas.com/account/cases",
15
+ "peerDependencies": {
16
+ "@angular/common": "^10.2.4",
17
+ "@angular/core": "^10.2.4",
18
+ "rxjs": "~6.6.0"
19
+ },
20
+ "dependencies": {
21
+ "tslib": "^2.0.0"
22
+ },
23
+ "main": "bundles/aurigma-ng-storefront-api-client.umd.js",
24
+ "module": "fesm2015/aurigma-ng-storefront-api-client.js",
25
+ "es2015": "fesm2015/aurigma-ng-storefront-api-client.js",
26
+ "esm2015": "esm2015/aurigma-ng-storefront-api-client.js",
27
+ "fesm2015": "fesm2015/aurigma-ng-storefront-api-client.js",
28
+ "typings": "aurigma-ng-storefront-api-client.d.ts",
29
+ "metadata": "aurigma-ng-storefront-api-client.metadata.json",
30
+ "sideEffects": false
31
+ }
@@ -0,0 +1,2 @@
1
+ export * from './lib/storefront.module';
2
+ export * from './lib/storefront-api-client';