@aurigma/ng-backoffice-api-client 2.55.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.
@@ -0,0 +1,6 @@
1
+ import { ModuleWithProviders } from '@angular/core';
2
+ import * as BackOfficeApiClient from './backoffice-api-client';
3
+ export declare function CreateApiClientConfiguration(token: string, apiUrl: string, apiKey?: string): BackOfficeApiClient.ApiClientConfiguration;
4
+ export declare class BackOfficeModule {
5
+ static forRoot(token: string, apiUrl: string, apiKey?: string): ModuleWithProviders<BackOfficeModule>;
6
+ }
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "@aurigma/ng-backoffice-api-client",
3
+ "version": "2.55.1",
4
+ "license": "SEE LICENSE IN License.md",
5
+ "description": "Angular API Client for BackOffice 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
+ "backoffice"
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-backoffice-api-client.umd.js",
24
+ "module": "fesm2015/aurigma-ng-backoffice-api-client.js",
25
+ "es2015": "fesm2015/aurigma-ng-backoffice-api-client.js",
26
+ "esm2015": "esm2015/aurigma-ng-backoffice-api-client.js",
27
+ "fesm2015": "fesm2015/aurigma-ng-backoffice-api-client.js",
28
+ "typings": "aurigma-ng-backoffice-api-client.d.ts",
29
+ "metadata": "aurigma-ng-backoffice-api-client.metadata.json",
30
+ "sideEffects": false
31
+ }
@@ -0,0 +1,2 @@
1
+ export * from './lib/backoffice.module';
2
+ export * from './lib/backoffice-api-client';