@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.
- package/README.md +79 -0
- package/aurigma-ng-storefront-api-client.d.ts +4 -0
- package/aurigma-ng-storefront-api-client.metadata.json +1 -0
- package/bundles/aurigma-ng-storefront-api-client.umd.js +3627 -0
- package/bundles/aurigma-ng-storefront-api-client.umd.js.map +1 -0
- package/bundles/aurigma-ng-storefront-api-client.umd.min.js +16 -0
- package/bundles/aurigma-ng-storefront-api-client.umd.min.js.map +1 -0
- package/esm2015/aurigma-ng-storefront-api-client.js +5 -0
- package/esm2015/lib/storefront-api-client.js +2827 -0
- package/esm2015/lib/storefront.module.js +35 -0
- package/esm2015/public-api.js +6 -0
- package/fesm2015/aurigma-ng-storefront-api-client.js +2861 -0
- package/fesm2015/aurigma-ng-storefront-api-client.js.map +1 -0
- package/lib/storefront-api-client.d.ts +975 -0
- package/lib/storefront.module.d.ts +6 -0
- package/package.json +31 -0
- package/public-api.d.ts +2 -0
package/README.md
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
Aurigma Customer's Canvas SDK - Storefront API Client
|
|
2
|
+
======================================================
|
|
3
|
+
|
|
4
|
+
This module is an Angular API client for Storefront API service which is a part of [**Customer's Canvas**](https://customerscanvas.com) web-to-print system. It is supposed that you are familiar with its services and understand how to use its APIs. To learn more about Customer's Canvas and its services, refer the [Getting Started section of its documentation](https://customerscanvas.com/dev/getting-started/intro.html).
|
|
5
|
+
|
|
6
|
+
The API client is automatically generated with [NSwag tool](https://github.com/RicoSuter/NSwag). If for any reasons this API client does not work well for you, feel free to generate it yourself using Swagger document published at [Customer's Canvas API Gateway](https://api.customerscanvashub.com/).
|
|
7
|
+
|
|
8
|
+
## Pre-requisites
|
|
9
|
+
|
|
10
|
+
To be able to use this package, you need to meet the following requirements:
|
|
11
|
+
|
|
12
|
+
* You must have an account at Customer's Canvas.
|
|
13
|
+
* You need to use it in Angular applications **only**.
|
|
14
|
+
|
|
15
|
+
For other platforms, see the [Backend services](https://customerscanvas.com/dev/getting-started/about-backend-services.html) article in Customer's Canvas documentation.
|
|
16
|
+
|
|
17
|
+
## Usage
|
|
18
|
+
|
|
19
|
+
Install it as a regular npm package:
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
npm install @aurigma/ng-storefront-api-client
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Receive an access token through your backend as explained in the [documentation](https://customerscanvas.com/dev/getting-started/about-backend-services.html#authorization) and deliver it to your app.
|
|
26
|
+
|
|
27
|
+
Setup module parameters in the **app.module.ts**:
|
|
28
|
+
|
|
29
|
+
``` ts
|
|
30
|
+
import {StorefrontApiModule} from '@aurigma/ng-storefront-api-client';
|
|
31
|
+
|
|
32
|
+
// ...
|
|
33
|
+
|
|
34
|
+
// In general you can use "https://api.customerscanvashub.com" as a base api url.
|
|
35
|
+
// But this url may be different for on-premises version of Customer's Canvas
|
|
36
|
+
const baseApiUrl = "https://api.customerscanvashub.com";
|
|
37
|
+
|
|
38
|
+
// A token should be received from your backend
|
|
39
|
+
const accessToken = "...";
|
|
40
|
+
|
|
41
|
+
@NgModule({
|
|
42
|
+
declarations: [
|
|
43
|
+
AppComponent
|
|
44
|
+
],
|
|
45
|
+
imports: [
|
|
46
|
+
BrowserModule,
|
|
47
|
+
HttpClientModule,
|
|
48
|
+
StorefrontApiModule.forRoot(accessToken, baseApiUrl, null)
|
|
49
|
+
],
|
|
50
|
+
providers: [],
|
|
51
|
+
bootstrap: [AppComponent]
|
|
52
|
+
})
|
|
53
|
+
export class AppModule { }
|
|
54
|
+
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
Now you can inject this module in your services. For example, imagine that you want to use it in a **app.component.ts**. For simplicity, we will just request a service version information. However, you can use other clients in a similar manner.
|
|
58
|
+
|
|
59
|
+
It may look as follows:
|
|
60
|
+
|
|
61
|
+
``` ts
|
|
62
|
+
import { Component } from '@angular/core';
|
|
63
|
+
import { BuildInfoApiClient } from '@aurigma/ng-storfront-api-client';
|
|
64
|
+
|
|
65
|
+
@Component({
|
|
66
|
+
selector: 'app-root',
|
|
67
|
+
templateUrl: './app.component.html',
|
|
68
|
+
styleUrls: ['./app.component.scss']
|
|
69
|
+
})
|
|
70
|
+
export class AppComponent {
|
|
71
|
+
constructor(private buildInfo: BuildInfoApiClient) {
|
|
72
|
+
this.buildInfo.getInfo().subscribe(info => console.log(info));
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
To find out what other clients are available in this module, refer [Storefront API Reference](https://customerscanvas.com/dev/backend/backend/api/StorefrontApi.OpenApi2.html).
|
|
78
|
+
|
|
79
|
+
> NOTE: The class name for each client is formed as <i>ClientName</i>ApiClient, e.g. `BuildInfo` -> `BuildInfoApiClient`, etc.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"__symbolic":"module","version":4,"metadata":{"CreateApiClientConfiguration":{"__symbolic":"function"},"StorefrontModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":12,"character":1},"arguments":[{"declarations":[],"imports":[],"exports":[]}]}],"members":{},"statics":{"forRoot":{"__symbolic":"function","parameters":["token","apiUrl","apiKey"],"defaults":[null,null,"ApiKey"],"value":{"ngModule":{"__symbolic":"reference","name":"StorefrontModule"},"providers":[{"provide":{"__symbolic":"reference","name":"API_BASE_URL"},"useValue":{"__symbolic":"reference","name":"apiUrl"}},{"provide":{"__symbolic":"reference","name":"ApiClientConfiguration"},"useFactory":{"__symbolic":"call","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"CreateApiClientConfiguration"},"member":"bind"},"arguments":[{"__symbolic":"error","message":"Expression form not supported","line":29,"character":56,"module":"./lib/storefront.module"},{"__symbolic":"reference","name":"token"},{"__symbolic":"reference","name":"apiUrl"},{"__symbolic":"reference","name":"apiKey"}]}}]}}}},"API_BASE_URL":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":14,"character":32},"arguments":["API_BASE_URL"]},"ApiClientConfiguration":{"__symbolic":"class","members":{"getAuthorizationToken":[{"__symbolic":"method"}],"setAuthorizationToken":[{"__symbolic":"method"}]}},"ApiClientBase":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","name":"ApiClientConfiguration"}]}],"transformOptions":[{"__symbolic":"method"}],"getBaseUrl":[{"__symbolic":"method"}],"transformResult":[{"__symbolic":"method"}]}},"IBuildInfoApiClient":{"__symbolic":"interface"},"BuildInfoApiClient":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"ApiClientBase"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":60,"character":1},"arguments":[{"providedIn":"root"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":68,"character":17},"arguments":[{"__symbolic":"reference","name":"ApiClientConfiguration"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":68,"character":88},"arguments":[{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":68,"character":95}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":68,"character":126}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":68,"character":138},"arguments":[{"__symbolic":"reference","name":"API_BASE_URL"}]}]],"parameters":[{"__symbolic":"reference","name":"ApiClientConfiguration"},{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":68,"character":113},{"__symbolic":"reference","name":"string"}]}],"headInfo":[{"__symbolic":"method"}],"processHeadInfo":[{"__symbolic":"method"}],"getInfo":[{"__symbolic":"method"}],"processGetInfo":[{"__symbolic":"method"}]},"statics":{"ɵprov":{}}},"IProductReferencesApiClient":{"__symbolic":"interface"},"ProductReferencesApiClient":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"ApiClientBase"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":240,"character":1},"arguments":[{"providedIn":"root"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":248,"character":17},"arguments":[{"__symbolic":"reference","name":"ApiClientConfiguration"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":248,"character":88},"arguments":[{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":68,"character":113}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":248,"character":126}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":248,"character":138},"arguments":[{"__symbolic":"reference","name":"API_BASE_URL"}]}]],"parameters":[{"__symbolic":"reference","name":"ApiClientConfiguration"},{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":68,"character":113},{"__symbolic":"reference","name":"string"}]}],"getAll":[{"__symbolic":"method"}],"processGetAll":[{"__symbolic":"method"}],"create":[{"__symbolic":"method"}],"processCreate":[{"__symbolic":"method"}],"get":[{"__symbolic":"method"}],"processGet":[{"__symbolic":"method"}],"delete":[{"__symbolic":"method"}],"processDelete":[{"__symbolic":"method"}],"getProductSpecification":[{"__symbolic":"method"}],"processGetProductSpecification":[{"__symbolic":"method"}],"getProductConfig":[{"__symbolic":"method"}],"processGetProductConfig":[{"__symbolic":"method"}]},"statics":{"ɵprov":{}}},"IProductSpecificationsApiClient":{"__symbolic":"interface"},"ProductSpecificationsApiClient":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"ApiClientBase"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":786,"character":1},"arguments":[{"providedIn":"root"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":794,"character":17},"arguments":[{"__symbolic":"reference","name":"ApiClientConfiguration"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":794,"character":88},"arguments":[{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":68,"character":113}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":794,"character":126}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":794,"character":138},"arguments":[{"__symbolic":"reference","name":"API_BASE_URL"}]}]],"parameters":[{"__symbolic":"reference","name":"ApiClientConfiguration"},{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":68,"character":113},{"__symbolic":"reference","name":"string"}]}],"getAll":[{"__symbolic":"method"}],"processGetAll":[{"__symbolic":"method"}],"get":[{"__symbolic":"method"}],"processGet":[{"__symbolic":"method"}],"getConfiguration":[{"__symbolic":"method"}],"processGetConfiguration":[{"__symbolic":"method"}]},"statics":{"ɵprov":{}}},"IProjectsApiClient":{"__symbolic":"interface"},"ProjectsApiClient":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"ApiClientBase"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":1137,"character":1},"arguments":[{"providedIn":"root"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":1145,"character":17},"arguments":[{"__symbolic":"reference","name":"ApiClientConfiguration"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":1145,"character":88},"arguments":[{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":68,"character":113}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":1145,"character":126}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":1145,"character":138},"arguments":[{"__symbolic":"reference","name":"API_BASE_URL"}]}]],"parameters":[{"__symbolic":"reference","name":"ApiClientConfiguration"},{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":68,"character":113},{"__symbolic":"reference","name":"string"}]}],"getAll":[{"__symbolic":"method"}],"processGetAll":[{"__symbolic":"method"}],"create":[{"__symbolic":"method"}],"processCreate":[{"__symbolic":"method"}],"get":[{"__symbolic":"method"}],"processGet":[{"__symbolic":"method"}],"getAvailableTransitions":[{"__symbolic":"method"}],"processGetAvailableTransitions":[{"__symbolic":"method"}],"changeStatus":[{"__symbolic":"method"}],"processChangeStatus":[{"__symbolic":"method"}],"forceStatus":[{"__symbolic":"method"}],"processForceStatus":[{"__symbolic":"method"}],"getAllStatuses":[{"__symbolic":"method"}],"processGetAllStatuses":[{"__symbolic":"method"}],"getAllTransitions":[{"__symbolic":"method"}],"processGetAllTransitions":[{"__symbolic":"method"}],"getProjectPdfUrl":[{"__symbolic":"method"}],"processGetProjectPdfUrl":[{"__symbolic":"method"}],"getProjectPdfZip":[{"__symbolic":"method"}],"processGetProjectPdfZip":[{"__symbolic":"method"}],"getProjectOrder":[{"__symbolic":"method"}],"processGetProjectOrder":[{"__symbolic":"method"}]},"statics":{"ɵprov":{}}},"IStorefrontsApiClient":{"__symbolic":"interface"},"StorefrontsApiClient":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"ApiClientBase"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":2077,"character":1},"arguments":[{"providedIn":"root"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":2085,"character":17},"arguments":[{"__symbolic":"reference","name":"ApiClientConfiguration"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":2085,"character":88},"arguments":[{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":68,"character":113}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":2085,"character":126}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":2085,"character":138},"arguments":[{"__symbolic":"reference","name":"API_BASE_URL"}]}]],"parameters":[{"__symbolic":"reference","name":"ApiClientConfiguration"},{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":68,"character":113},{"__symbolic":"reference","name":"string"}]}],"getAll":[{"__symbolic":"method"}],"processGetAll":[{"__symbolic":"method"}],"get":[{"__symbolic":"method"}],"processGet":[{"__symbolic":"method"}]},"statics":{"ɵprov":{}}},"IStorefrontUsersApiClient":{"__symbolic":"interface"},"StorefrontUsersApiClient":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"ApiClientBase"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":2303,"character":1},"arguments":[{"providedIn":"root"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":2311,"character":17},"arguments":[{"__symbolic":"reference","name":"ApiClientConfiguration"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":2311,"character":88},"arguments":[{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":68,"character":113}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":2311,"character":126}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":2311,"character":138},"arguments":[{"__symbolic":"reference","name":"API_BASE_URL"}]}]],"parameters":[{"__symbolic":"reference","name":"ApiClientConfiguration"},{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":68,"character":113},{"__symbolic":"reference","name":"string"}]}],"getAll":[{"__symbolic":"method"}],"processGetAll":[{"__symbolic":"method"}],"create":[{"__symbolic":"method"}],"processCreate":[{"__symbolic":"method"}],"get":[{"__symbolic":"method"}],"processGet":[{"__symbolic":"method"}],"mergeAnonymous":[{"__symbolic":"method"}],"processMergeAnonymous":[{"__symbolic":"method"}],"getToken":[{"__symbolic":"method"}],"processGetToken":[{"__symbolic":"method"}]},"statics":{"ɵprov":{}}},"ITenantInfoApiClient":{"__symbolic":"interface"},"TenantInfoApiClient":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"ApiClientBase"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":2753,"character":1},"arguments":[{"providedIn":"root"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":2761,"character":17},"arguments":[{"__symbolic":"reference","name":"ApiClientConfiguration"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":2761,"character":88},"arguments":[{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":68,"character":113}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":2761,"character":126}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":2761,"character":138},"arguments":[{"__symbolic":"reference","name":"API_BASE_URL"}]}]],"parameters":[{"__symbolic":"reference","name":"ApiClientConfiguration"},{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":68,"character":113},{"__symbolic":"reference","name":"string"}]}],"getApplicationsInfo":[{"__symbolic":"method"}],"processGetApplicationsInfo":[{"__symbolic":"method"}],"getInfo":[{"__symbolic":"method"}],"processGetInfo":[{"__symbolic":"method"}]},"statics":{"ɵprov":{}}},"BuildInfoModel":{"__symbolic":"interface"},"ProductReferenceDto":{"__symbolic":"interface"},"PagedOfProductReferenceDto":{"__symbolic":"interface"},"CreateProductReferenceDto":{"__symbolic":"interface"},"ProblemDetails":{"__symbolic":"interface"},"ProductAttributeDto":{"__symbolic":"interface"},"ProductSpecificationDto":{"__symbolic":"interface"},"PagedOfProductSpecificationDto":{"__symbolic":"interface"},"DatePeriod":{"All":"All","Today":"Today","Last7Days":"Last7Days","Last30Days":"Last30Days"},"ProjectItemDto":{"__symbolic":"interface"},"ProjectDto":{"__symbolic":"interface"},"PagedOfProjectDto":{"__symbolic":"interface"},"CreateProjectDto":{"__symbolic":"interface"},"ProjectTransitionDto":{"__symbolic":"interface"},"PagedOfProjectTransitionDto":{"__symbolic":"interface"},"ProjectTransitionConflictDto":{"__symbolic":"interface"},"ProjectStatusDto":{"__symbolic":"interface"},"PagedOfProjectStatusDto":{"__symbolic":"interface"},"ProjectPdfResultDto":{"__symbolic":"interface"},"StorefrontType":{"Custom":"Custom","Shopify":"Shopify","DocketManager":"DocketManager","Auth0Saml":"Auth0Saml"},"StorefrontDto":{"__symbolic":"interface"},"PagedOfStorefrontDto":{"__symbolic":"interface"},"StorefrontUserDto":{"__symbolic":"interface"},"PagedOfStorefrontUserDto":{"__symbolic":"interface"},"CreateStorefrontUserDto":{"__symbolic":"interface"},"MergeAnonymousUserDataInput":{"__symbolic":"interface"},"TenantApplicationsInfoDto":{"__symbolic":"interface"},"TenantInfoDto":{"__symbolic":"interface"},"FileResponse":{"__symbolic":"interface"},"ApiException":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"Error"},"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","name":"string"},{"__symbolic":"reference","name":"number"},{"__symbolic":"reference","name":"string"},{"__symbolic":"error","message":"Expression form not supported","line":3232,"character":76,"module":"./lib/storefront-api-client"},{"__symbolic":"reference","name":"any"}]}]},"statics":{"isApiException":{"__symbolic":"function","parameters":["obj"],"value":{"__symbolic":"binop","operator":"===","left":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"obj"},"member":"isApiException"},"right":true}}}}},"origins":{"CreateApiClientConfiguration":"./lib/storefront.module","StorefrontModule":"./lib/storefront.module","API_BASE_URL":"./lib/storefront-api-client","ApiClientConfiguration":"./lib/storefront-api-client","ApiClientBase":"./lib/storefront-api-client","IBuildInfoApiClient":"./lib/storefront-api-client","BuildInfoApiClient":"./lib/storefront-api-client","IProductReferencesApiClient":"./lib/storefront-api-client","ProductReferencesApiClient":"./lib/storefront-api-client","IProductSpecificationsApiClient":"./lib/storefront-api-client","ProductSpecificationsApiClient":"./lib/storefront-api-client","IProjectsApiClient":"./lib/storefront-api-client","ProjectsApiClient":"./lib/storefront-api-client","IStorefrontsApiClient":"./lib/storefront-api-client","StorefrontsApiClient":"./lib/storefront-api-client","IStorefrontUsersApiClient":"./lib/storefront-api-client","StorefrontUsersApiClient":"./lib/storefront-api-client","ITenantInfoApiClient":"./lib/storefront-api-client","TenantInfoApiClient":"./lib/storefront-api-client","BuildInfoModel":"./lib/storefront-api-client","ProductReferenceDto":"./lib/storefront-api-client","PagedOfProductReferenceDto":"./lib/storefront-api-client","CreateProductReferenceDto":"./lib/storefront-api-client","ProblemDetails":"./lib/storefront-api-client","ProductAttributeDto":"./lib/storefront-api-client","ProductSpecificationDto":"./lib/storefront-api-client","PagedOfProductSpecificationDto":"./lib/storefront-api-client","DatePeriod":"./lib/storefront-api-client","ProjectItemDto":"./lib/storefront-api-client","ProjectDto":"./lib/storefront-api-client","PagedOfProjectDto":"./lib/storefront-api-client","CreateProjectDto":"./lib/storefront-api-client","ProjectTransitionDto":"./lib/storefront-api-client","PagedOfProjectTransitionDto":"./lib/storefront-api-client","ProjectTransitionConflictDto":"./lib/storefront-api-client","ProjectStatusDto":"./lib/storefront-api-client","PagedOfProjectStatusDto":"./lib/storefront-api-client","ProjectPdfResultDto":"./lib/storefront-api-client","StorefrontType":"./lib/storefront-api-client","StorefrontDto":"./lib/storefront-api-client","PagedOfStorefrontDto":"./lib/storefront-api-client","StorefrontUserDto":"./lib/storefront-api-client","PagedOfStorefrontUserDto":"./lib/storefront-api-client","CreateStorefrontUserDto":"./lib/storefront-api-client","MergeAnonymousUserDataInput":"./lib/storefront-api-client","TenantApplicationsInfoDto":"./lib/storefront-api-client","TenantInfoDto":"./lib/storefront-api-client","FileResponse":"./lib/storefront-api-client","ApiException":"./lib/storefront-api-client"},"importAs":"@aurigma/ng-storefront-api-client"}
|