@veloceapps/api 7.0.2-9 → 8.0.0-0
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/esm2020/index.mjs +4 -1
- package/esm2020/lib/api.module.mjs +10 -1
- package/esm2020/lib/services/catalog-admin-api.service.mjs +28 -1
- package/esm2020/lib/services/catalog-api.service.mjs +3 -3
- package/esm2020/lib/services/configuration-api.service.mjs +14 -14
- package/esm2020/lib/services/guided-sellings-api.service.mjs +11 -1
- package/esm2020/lib/services/product-model-api.service.mjs +6 -1
- package/esm2020/lib/services/salesforce-api.service.mjs +24 -1
- package/esm2020/lib/services/stateful-configuration-api.mjs +51 -0
- package/esm2020/lib/services/ui-definitions-api.service.mjs +76 -0
- package/esm2020/lib/services/veloce-objects-api.service.mjs +80 -0
- package/esm2020/lib/types/index.mjs +1 -1
- package/esm2020/lib/types/stateful-configuration.types.mjs +2 -0
- package/fesm2015/veloceapps-api.mjs +275 -17
- package/fesm2015/veloceapps-api.mjs.map +1 -1
- package/fesm2020/veloceapps-api.mjs +281 -17
- package/fesm2020/veloceapps-api.mjs.map +1 -1
- package/index.d.ts +3 -0
- package/lib/services/catalog-admin-api.service.d.ts +11 -7
- package/lib/services/catalog-api.service.d.ts +2 -2
- package/lib/services/guided-sellings-api.service.d.ts +1 -0
- package/lib/services/product-model-api.service.d.ts +5 -0
- package/lib/services/salesforce-api.service.d.ts +8 -1
- package/lib/services/stateful-configuration-api.d.ts +30 -0
- package/lib/services/ui-definitions-api.service.d.ts +15 -0
- package/lib/services/veloce-objects-api.service.d.ts +22 -0
- package/lib/types/index.d.ts +0 -1
- package/lib/types/stateful-configuration.types.d.ts +11 -0
- package/package.json +2 -2
@@ -3,12 +3,13 @@ import { HttpParams, HttpErrorResponse, HttpClientModule } from '@angular/common
|
|
3
3
|
import * as i0 from '@angular/core';
|
4
4
|
import { Injectable, NgModule } from '@angular/core';
|
5
5
|
import * as i1 from '@veloceapps/core';
|
6
|
-
import { ModelTranslatorUtils, ConfigurationContextMode, isLegacyDocumentTemplate, DocxTemplater, QuoteDraft, StringUtils, Expression, Operator, ProductModelsContainer, ModelUtils, EntityUtil, RuleGroupTypes, parseJsonSafely, BaseHttpService, XrayService } from '@veloceapps/core';
|
7
|
-
import { throwError, of, zip, forkJoin, map as map$1,
|
6
|
+
import { uiDefinitionFromDTO, isLegacyUIDefinition, ModelTranslatorUtils, ConfigurationContextMode, isLegacyDocumentTemplate, DocxTemplater, QuoteDraft, StringUtils, Expression, Operator, ProductModelsContainer, ModelUtils, EntityUtil, RuleGroupTypes, parseJsonSafely, uiDefinitionToDTO, BaseHttpService, XrayService } from '@veloceapps/core';
|
7
|
+
import { noop, throwError, of, zip, forkJoin, map as map$1, catchError as catchError$1, switchMap as switchMap$1 } from 'rxjs';
|
8
8
|
import { map, catchError, tap, switchMap, defaultIfEmpty } from 'rxjs/operators';
|
9
9
|
import * as i2 from 'primeng/api';
|
10
10
|
import { CurrencyPipe } from '@angular/common';
|
11
11
|
import * as _ from 'lodash';
|
12
|
+
import { omit } from 'lodash';
|
12
13
|
import moment from 'moment';
|
13
14
|
|
14
15
|
class AccountApiService {
|
@@ -240,6 +241,32 @@ class CatalogAdminApiService {
|
|
240
241
|
});
|
241
242
|
};
|
242
243
|
}
|
244
|
+
attachImage$(catalogId, categoryId, file) {
|
245
|
+
const data = new FormData();
|
246
|
+
data.append('image', file);
|
247
|
+
return this.baseHttpService.upload({
|
248
|
+
method: 'post',
|
249
|
+
url: `${this.serviceUrl}/${catalogId}/categories/${categoryId}/image`,
|
250
|
+
body: data,
|
251
|
+
});
|
252
|
+
}
|
253
|
+
removeImage$(catalogId, categoryId) {
|
254
|
+
return this.baseHttpService.api({
|
255
|
+
method: 'delete',
|
256
|
+
url: `${this.serviceUrl}/${catalogId}/categories/${categoryId}/image`,
|
257
|
+
});
|
258
|
+
}
|
259
|
+
fetchImage$(catalogId, categoryId) {
|
260
|
+
return this.baseHttpService.api({
|
261
|
+
url: this.getImageUrl(catalogId, categoryId),
|
262
|
+
method: 'get',
|
263
|
+
responseType: 'blob',
|
264
|
+
errorHandler: noop,
|
265
|
+
});
|
266
|
+
}
|
267
|
+
getImageUrl(catalogId, categoryId) {
|
268
|
+
return `${this.serviceUrl}/${catalogId}/categories/${categoryId}/image`;
|
269
|
+
}
|
243
270
|
}
|
244
271
|
CatalogAdminApiService.MAX_RESULTS = 60;
|
245
272
|
CatalogAdminApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: CatalogAdminApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
|
@@ -298,7 +325,7 @@ class CatalogApiService {
|
|
298
325
|
body: context,
|
299
326
|
});
|
300
327
|
}
|
301
|
-
searchCategoryProducts$(catalogId, categoryId, searchParams,
|
328
|
+
searchCategoryProducts$(catalogId, categoryId, searchParams, searchRequest, context) {
|
302
329
|
const params = new HttpParams({ fromObject: searchParams });
|
303
330
|
return this.service.api({
|
304
331
|
method: 'post',
|
@@ -306,7 +333,7 @@ class CatalogApiService {
|
|
306
333
|
params,
|
307
334
|
body: {
|
308
335
|
configurationContext: context,
|
309
|
-
request:
|
336
|
+
request: searchRequest,
|
310
337
|
},
|
311
338
|
});
|
312
339
|
}
|
@@ -366,23 +393,23 @@ class ConfigurationApiService {
|
|
366
393
|
url: `${this.SERVICE_URL}/${productId}/model` + ((offeringId && `/${offeringId}`) || ''),
|
367
394
|
})
|
368
395
|
.pipe(map(runtimeData => {
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
396
|
+
return {
|
397
|
+
...runtimeData,
|
398
|
+
uiDefinitions: runtimeData.uiDefinitions.map(dto => {
|
399
|
+
const uiDefinitionContainer = uiDefinitionFromDTO(dto);
|
400
|
+
if (isLegacyUIDefinition(uiDefinitionContainer.source)) {
|
401
|
+
ModelTranslatorUtils.toLocalUIDefinition(uiDefinitionContainer.source);
|
402
|
+
}
|
403
|
+
return uiDefinitionContainer;
|
404
|
+
}),
|
405
|
+
};
|
374
406
|
}));
|
375
407
|
}
|
376
408
|
getRuntimeDataByModelId(modelId) {
|
377
|
-
return this.httpService
|
378
|
-
.api({
|
409
|
+
return this.httpService.api({
|
379
410
|
method: 'get',
|
380
411
|
url: `${this.SERVICE_URL}/${modelId}/model-test`,
|
381
|
-
})
|
382
|
-
.pipe(map((runtimeData) => {
|
383
|
-
runtimeData.uiDefinitions = [];
|
384
|
-
return runtimeData;
|
385
|
-
}));
|
412
|
+
});
|
386
413
|
}
|
387
414
|
updatePortDomains(lineItem, runtimeModel) {
|
388
415
|
const type = runtimeModel.components.get(lineItem.type);
|
@@ -651,10 +678,21 @@ class SalesforceApiService {
|
|
651
678
|
...options,
|
652
679
|
});
|
653
680
|
}
|
681
|
+
/**
|
682
|
+
* @deprecated
|
683
|
+
*/
|
654
684
|
describe(objectName, fieldName, options) {
|
655
685
|
const methodUrl = `${this.SERVICE_URL}/describe/${objectName}/fields` + (fieldName ? `/${fieldName}` : '');
|
656
686
|
return this.httpService.api({ url: methodUrl, ...options });
|
657
687
|
}
|
688
|
+
describeObject(objectName, options) {
|
689
|
+
const methodUrl = `${this.SERVICE_URL}/describe/${objectName}/fields`;
|
690
|
+
return this.httpService.api({ url: methodUrl, ...options });
|
691
|
+
}
|
692
|
+
describeField(objectName, fieldName, options) {
|
693
|
+
const methodUrl = `${this.SERVICE_URL}/describe/${objectName}/fields/${fieldName}`;
|
694
|
+
return this.httpService.api({ url: methodUrl, ...options });
|
695
|
+
}
|
658
696
|
describe2(objectName, fields, options) {
|
659
697
|
const methodUrl = `${this.SERVICE_URL}/describe/${objectName}/fields`;
|
660
698
|
return this.httpService.api({ method: 'post', url: methodUrl, body: fields, ...options });
|
@@ -670,6 +708,18 @@ class SalesforceApiService {
|
|
670
708
|
...options,
|
671
709
|
});
|
672
710
|
}
|
711
|
+
getGlobalPicklists() {
|
712
|
+
return this.httpService.api({
|
713
|
+
method: 'get',
|
714
|
+
url: `${this.SERVICE_URL}/globalvalueset`,
|
715
|
+
});
|
716
|
+
}
|
717
|
+
getGlobalPicklistValues(id) {
|
718
|
+
return this.httpService.api({
|
719
|
+
method: 'get',
|
720
|
+
url: `${this.SERVICE_URL}/globalvalueset/${id}/values`,
|
721
|
+
});
|
722
|
+
}
|
673
723
|
}
|
674
724
|
SalesforceApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: SalesforceApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
|
675
725
|
SalesforceApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: SalesforceApiService });
|
@@ -1134,6 +1184,16 @@ class GuidedSellingApiService {
|
|
1134
1184
|
body: expression || {},
|
1135
1185
|
});
|
1136
1186
|
}
|
1187
|
+
searchById$(id, searchParams) {
|
1188
|
+
const params = new HttpParams({ fromObject: { ...searchParams } });
|
1189
|
+
const expression = new Expression(undefined, [{ key: 'id', operator: Operator.EQ, value: id }]);
|
1190
|
+
return this.http.api({
|
1191
|
+
method: 'post',
|
1192
|
+
url: `${this.serviceUrl}/search`,
|
1193
|
+
params,
|
1194
|
+
body: expression || {},
|
1195
|
+
});
|
1196
|
+
}
|
1137
1197
|
}
|
1138
1198
|
GuidedSellingApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: GuidedSellingApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
|
1139
1199
|
GuidedSellingApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: GuidedSellingApiService });
|
@@ -1669,6 +1729,11 @@ class ProductModelApiService {
|
|
1669
1729
|
return linkedModels;
|
1670
1730
|
}));
|
1671
1731
|
}
|
1732
|
+
/**
|
1733
|
+
*
|
1734
|
+
* @deprecated
|
1735
|
+
* Will be removed in next major release
|
1736
|
+
*/
|
1672
1737
|
load(id, version) {
|
1673
1738
|
return forkJoin([this.getModel(id, version), this.getLinkedModels(id, version)]).pipe(map(([model, linkedModels]) => {
|
1674
1739
|
const container = new ProductModelsContainer(model, linkedModels ?? []);
|
@@ -2097,6 +2162,123 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
|
|
2097
2162
|
type: Injectable
|
2098
2163
|
}], ctorParameters: function () { return [{ type: ConfigurationSettingsApiService }]; } });
|
2099
2164
|
|
2165
|
+
class StatefulConfigurationApiService {
|
2166
|
+
constructor(httpService) {
|
2167
|
+
this.httpService = httpService;
|
2168
|
+
this.SERVICE_URL = '/configuration/states';
|
2169
|
+
}
|
2170
|
+
/**
|
2171
|
+
* Initialize configuration state
|
2172
|
+
* @param request Request
|
2173
|
+
* @returns ID of new configuration state
|
2174
|
+
*/
|
2175
|
+
init(request) {
|
2176
|
+
return this.httpService.api({
|
2177
|
+
method: 'post',
|
2178
|
+
url: `${this.SERVICE_URL}/init`,
|
2179
|
+
body: request,
|
2180
|
+
responseType: 'text',
|
2181
|
+
});
|
2182
|
+
}
|
2183
|
+
/**
|
2184
|
+
* Get existing state by ID
|
2185
|
+
* @param id ID
|
2186
|
+
* @returns Configuration State
|
2187
|
+
*/
|
2188
|
+
get(id) {
|
2189
|
+
return this.httpService.api({
|
2190
|
+
url: `${this.SERVICE_URL}/${id}`,
|
2191
|
+
});
|
2192
|
+
}
|
2193
|
+
/**
|
2194
|
+
* Execute actions/selectors
|
2195
|
+
* @param id State ID
|
2196
|
+
* @param request Request
|
2197
|
+
* @returns Execute result
|
2198
|
+
*/
|
2199
|
+
execute(id, request) {
|
2200
|
+
return this.httpService.api({
|
2201
|
+
method: 'post',
|
2202
|
+
url: `${this.SERVICE_URL}/${id}/execute`,
|
2203
|
+
body: request,
|
2204
|
+
});
|
2205
|
+
}
|
2206
|
+
}
|
2207
|
+
StatefulConfigurationApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: StatefulConfigurationApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
|
2208
|
+
StatefulConfigurationApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: StatefulConfigurationApiService });
|
2209
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: StatefulConfigurationApiService, decorators: [{
|
2210
|
+
type: Injectable
|
2211
|
+
}], ctorParameters: function () { return [{ type: i1.BaseHttpService }]; } });
|
2212
|
+
|
2213
|
+
class UIDefinitionsApiService {
|
2214
|
+
constructor(baseHttpService) {
|
2215
|
+
this.baseHttpService = baseHttpService;
|
2216
|
+
}
|
2217
|
+
fetch$(modelId, version) {
|
2218
|
+
const serviceUrl = this.getServiceUrl(modelId);
|
2219
|
+
let params = new HttpParams();
|
2220
|
+
if (version != null) {
|
2221
|
+
params = params.set('modelVersion', version);
|
2222
|
+
}
|
2223
|
+
return this.baseHttpService
|
2224
|
+
.api({
|
2225
|
+
method: 'get',
|
2226
|
+
url: serviceUrl,
|
2227
|
+
params: params,
|
2228
|
+
})
|
2229
|
+
.pipe(map$1(containers => containers.map(uiDefinitionFromDTO)));
|
2230
|
+
}
|
2231
|
+
create$(modelId, uiDefinitionContainer) {
|
2232
|
+
const serviceUrl = this.getServiceUrl(modelId);
|
2233
|
+
const dto = {
|
2234
|
+
...omit(uiDefinitionContainer, 'source'),
|
2235
|
+
sourceBlob: JSON.stringify(uiDefinitionContainer.source),
|
2236
|
+
};
|
2237
|
+
return this.baseHttpService
|
2238
|
+
.api({
|
2239
|
+
method: 'post',
|
2240
|
+
url: serviceUrl,
|
2241
|
+
body: dto,
|
2242
|
+
})
|
2243
|
+
.pipe(map$1(container => uiDefinitionFromDTO(container)));
|
2244
|
+
}
|
2245
|
+
get$(modelId, uiDefinitionId) {
|
2246
|
+
const serviceUrl = this.getServiceUrl(modelId);
|
2247
|
+
return this.baseHttpService
|
2248
|
+
.api({
|
2249
|
+
method: 'get',
|
2250
|
+
url: `${serviceUrl}/${uiDefinitionId}`,
|
2251
|
+
})
|
2252
|
+
.pipe(map$1(container => uiDefinitionFromDTO({ ...container, id: uiDefinitionId })));
|
2253
|
+
}
|
2254
|
+
update$(uiDefinitionContainer) {
|
2255
|
+
const serviceUrl = this.getServiceUrl(uiDefinitionContainer.modelId);
|
2256
|
+
const dto = uiDefinitionToDTO(uiDefinitionContainer);
|
2257
|
+
return this.baseHttpService
|
2258
|
+
.api({
|
2259
|
+
method: 'put',
|
2260
|
+
url: `${serviceUrl}/${uiDefinitionContainer.id}`,
|
2261
|
+
body: dto,
|
2262
|
+
})
|
2263
|
+
.pipe(map$1(container => uiDefinitionFromDTO(container)));
|
2264
|
+
}
|
2265
|
+
delete$(uiDefinitionContainer) {
|
2266
|
+
const serviceUrl = this.getServiceUrl(uiDefinitionContainer.modelId);
|
2267
|
+
return this.baseHttpService.api({
|
2268
|
+
method: 'delete',
|
2269
|
+
url: `${serviceUrl}/${uiDefinitionContainer.id}`,
|
2270
|
+
});
|
2271
|
+
}
|
2272
|
+
getServiceUrl(modelId) {
|
2273
|
+
return `/models/${modelId}/uidefinitions`;
|
2274
|
+
}
|
2275
|
+
}
|
2276
|
+
UIDefinitionsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: UIDefinitionsApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
|
2277
|
+
UIDefinitionsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: UIDefinitionsApiService });
|
2278
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: UIDefinitionsApiService, decorators: [{
|
2279
|
+
type: Injectable
|
2280
|
+
}], ctorParameters: function () { return [{ type: i1.BaseHttpService }]; } });
|
2281
|
+
|
2100
2282
|
const fromUIComponentStoryDTO = (dto, attachments) => {
|
2101
2283
|
return {
|
2102
2284
|
id: dto.id,
|
@@ -2385,6 +2567,82 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
|
|
2385
2567
|
type: Injectable
|
2386
2568
|
}], ctorParameters: function () { return [{ type: i1.BaseHttpService }]; } });
|
2387
2569
|
|
2570
|
+
class VeloceObjectsApiService {
|
2571
|
+
constructor(baseHttpService) {
|
2572
|
+
this.baseHttpService = baseHttpService;
|
2573
|
+
this.serviceUrl = '/veloceobjects';
|
2574
|
+
this.updateCategory$ = (category) => {
|
2575
|
+
return this.baseHttpService.api({
|
2576
|
+
method: 'put',
|
2577
|
+
url: `${this.serviceUrl}/categories/${category.id}`,
|
2578
|
+
body: category,
|
2579
|
+
});
|
2580
|
+
};
|
2581
|
+
this.deleteCategory$ = (id) => {
|
2582
|
+
return this.baseHttpService.api({
|
2583
|
+
method: 'delete',
|
2584
|
+
url: `${this.serviceUrl}/categories/${id}`,
|
2585
|
+
});
|
2586
|
+
};
|
2587
|
+
this.searchObjects$ = (searchParams, expression) => {
|
2588
|
+
const params = new HttpParams({ fromObject: { ...searchParams } });
|
2589
|
+
return this.baseHttpService.api({
|
2590
|
+
method: 'post',
|
2591
|
+
url: `${this.serviceUrl}/search`,
|
2592
|
+
params,
|
2593
|
+
body: expression || {},
|
2594
|
+
});
|
2595
|
+
};
|
2596
|
+
this.deleteObject$ = (id) => {
|
2597
|
+
return this.baseHttpService.api({
|
2598
|
+
method: 'delete',
|
2599
|
+
url: `${this.serviceUrl}/${id}`,
|
2600
|
+
});
|
2601
|
+
};
|
2602
|
+
this.restoreObject$ = (id) => {
|
2603
|
+
return this.baseHttpService.api({
|
2604
|
+
method: 'patch',
|
2605
|
+
url: `${this.serviceUrl}/${id}/restore`,
|
2606
|
+
});
|
2607
|
+
};
|
2608
|
+
}
|
2609
|
+
fetchCategories$() {
|
2610
|
+
return this.baseHttpService.api({ url: `${this.serviceUrl}/categories` });
|
2611
|
+
}
|
2612
|
+
createCategory$(category) {
|
2613
|
+
return this.baseHttpService.api({
|
2614
|
+
method: 'post',
|
2615
|
+
url: `${this.serviceUrl}/categories`,
|
2616
|
+
body: category,
|
2617
|
+
});
|
2618
|
+
}
|
2619
|
+
fetchObjects$() {
|
2620
|
+
return this.baseHttpService.api({ url: `${this.serviceUrl}` });
|
2621
|
+
}
|
2622
|
+
fetchObject$(id) {
|
2623
|
+
return this.baseHttpService.api({ url: `${this.serviceUrl}/${id}` });
|
2624
|
+
}
|
2625
|
+
createObject$(object) {
|
2626
|
+
return this.baseHttpService.api({
|
2627
|
+
method: 'post',
|
2628
|
+
url: `${this.serviceUrl}`,
|
2629
|
+
body: object,
|
2630
|
+
});
|
2631
|
+
}
|
2632
|
+
updateObject$(object) {
|
2633
|
+
return this.baseHttpService.api({
|
2634
|
+
method: 'put',
|
2635
|
+
url: `${this.serviceUrl}/${object.id}`,
|
2636
|
+
body: object,
|
2637
|
+
});
|
2638
|
+
}
|
2639
|
+
}
|
2640
|
+
VeloceObjectsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: VeloceObjectsApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
|
2641
|
+
VeloceObjectsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: VeloceObjectsApiService });
|
2642
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: VeloceObjectsApiService, decorators: [{
|
2643
|
+
type: Injectable
|
2644
|
+
}], ctorParameters: function () { return [{ type: i1.BaseHttpService }]; } });
|
2645
|
+
|
2388
2646
|
class ApiModule {
|
2389
2647
|
}
|
2390
2648
|
ApiModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: ApiModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
@@ -2420,6 +2678,9 @@ ApiModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.
|
|
2420
2678
|
EndpointsApiService,
|
2421
2679
|
OrgInfoApiService,
|
2422
2680
|
OffersApiService,
|
2681
|
+
UIDefinitionsApiService,
|
2682
|
+
VeloceObjectsApiService,
|
2683
|
+
StatefulConfigurationApiService,
|
2423
2684
|
], imports: [HttpClientModule] });
|
2424
2685
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: ApiModule, decorators: [{
|
2425
2686
|
type: NgModule,
|
@@ -2456,6 +2717,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
|
|
2456
2717
|
EndpointsApiService,
|
2457
2718
|
OrgInfoApiService,
|
2458
2719
|
OffersApiService,
|
2720
|
+
UIDefinitionsApiService,
|
2721
|
+
VeloceObjectsApiService,
|
2722
|
+
StatefulConfigurationApiService,
|
2459
2723
|
],
|
2460
2724
|
}]
|
2461
2725
|
}] });
|
@@ -2464,5 +2728,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
|
|
2464
2728
|
* Generated bundle index. Do not edit.
|
2465
2729
|
*/
|
2466
2730
|
|
2467
|
-
export { AccountApiService, ApiModule, CatalogAdminApiService, CatalogApiService, ConfigurationApiService, ConfigurationSettingsApiService, ContextApiService, DeltaApiService, DocumentAttachmentApiService, DocumentTemplatesApiService, EndpointsApiService, FlowsApiService, GuidedSellingApiService, GuidedSellingsAdminApiService, OffersApiService, OrgInfoApiService, PicklistsApiService, PriceApiService, ProceduresApiService, ProductApiService, ProductModelApiService, QuoteApiService, RampApiService, RuleGroupsApiService, RulesApiService, SalesforceApiService, ScriptsApiService, ShoppingCartSettingsApiService, UITemplatesApiService };
|
2731
|
+
export { AccountApiService, ApiModule, CatalogAdminApiService, CatalogApiService, ConfigurationApiService, ConfigurationSettingsApiService, ContextApiService, DeltaApiService, DocumentAttachmentApiService, DocumentTemplatesApiService, EndpointsApiService, FlowsApiService, GuidedSellingApiService, GuidedSellingsAdminApiService, OffersApiService, OrgInfoApiService, PicklistsApiService, PriceApiService, ProceduresApiService, ProductApiService, ProductModelApiService, QuoteApiService, RampApiService, RuleGroupsApiService, RulesApiService, SalesforceApiService, ScriptsApiService, ShoppingCartSettingsApiService, StatefulConfigurationApiService, UIDefinitionsApiService, UITemplatesApiService, VeloceObjectsApiService };
|
2468
2732
|
//# sourceMappingURL=veloceapps-api.mjs.map
|