@veloceapps/api 7.0.2-9 → 7.0.2-91
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 +27 -2
- 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 +278 -18
- package/fesm2015/veloceapps-api.mjs.map +1 -1
- package/fesm2020/veloceapps-api.mjs +284 -18
- 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 +1 -1
@@ -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,16 +678,29 @@ 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 });
|
661
699
|
}
|
662
700
|
apexGetRequest(path, params, options) {
|
663
|
-
|
701
|
+
// this line is needed because HttpParams instance from Integration behaves wrong in studio instance of Angular
|
702
|
+
const httpParams = new HttpParams({ fromString: params.toString() });
|
703
|
+
return this.httpService.api({ url: `${this.SERVICE_URL}/apex${path}`, params: httpParams, ...options });
|
664
704
|
}
|
665
705
|
apexPostRequest(path, body, options) {
|
666
706
|
return this.httpService.api({
|
@@ -670,6 +710,18 @@ class SalesforceApiService {
|
|
670
710
|
...options,
|
671
711
|
});
|
672
712
|
}
|
713
|
+
getGlobalPicklists() {
|
714
|
+
return this.httpService.api({
|
715
|
+
method: 'get',
|
716
|
+
url: `${this.SERVICE_URL}/globalvalueset`,
|
717
|
+
});
|
718
|
+
}
|
719
|
+
getGlobalPicklistValues(id) {
|
720
|
+
return this.httpService.api({
|
721
|
+
method: 'get',
|
722
|
+
url: `${this.SERVICE_URL}/globalvalueset/${id}/values`,
|
723
|
+
});
|
724
|
+
}
|
673
725
|
}
|
674
726
|
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
727
|
SalesforceApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: SalesforceApiService });
|
@@ -1134,6 +1186,16 @@ class GuidedSellingApiService {
|
|
1134
1186
|
body: expression || {},
|
1135
1187
|
});
|
1136
1188
|
}
|
1189
|
+
searchById$(id, searchParams) {
|
1190
|
+
const params = new HttpParams({ fromObject: { ...searchParams } });
|
1191
|
+
const expression = new Expression(undefined, [{ key: 'id', operator: Operator.EQ, value: id }]);
|
1192
|
+
return this.http.api({
|
1193
|
+
method: 'post',
|
1194
|
+
url: `${this.serviceUrl}/search`,
|
1195
|
+
params,
|
1196
|
+
body: expression || {},
|
1197
|
+
});
|
1198
|
+
}
|
1137
1199
|
}
|
1138
1200
|
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
1201
|
GuidedSellingApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: GuidedSellingApiService });
|
@@ -1669,6 +1731,11 @@ class ProductModelApiService {
|
|
1669
1731
|
return linkedModels;
|
1670
1732
|
}));
|
1671
1733
|
}
|
1734
|
+
/**
|
1735
|
+
*
|
1736
|
+
* @deprecated
|
1737
|
+
* Will be removed in next major release
|
1738
|
+
*/
|
1672
1739
|
load(id, version) {
|
1673
1740
|
return forkJoin([this.getModel(id, version), this.getLinkedModels(id, version)]).pipe(map(([model, linkedModels]) => {
|
1674
1741
|
const container = new ProductModelsContainer(model, linkedModels ?? []);
|
@@ -2097,6 +2164,123 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
|
|
2097
2164
|
type: Injectable
|
2098
2165
|
}], ctorParameters: function () { return [{ type: ConfigurationSettingsApiService }]; } });
|
2099
2166
|
|
2167
|
+
class StatefulConfigurationApiService {
|
2168
|
+
constructor(httpService) {
|
2169
|
+
this.httpService = httpService;
|
2170
|
+
this.SERVICE_URL = '/configuration/states';
|
2171
|
+
}
|
2172
|
+
/**
|
2173
|
+
* Initialize configuration state
|
2174
|
+
* @param request Request
|
2175
|
+
* @returns ID of new configuration state
|
2176
|
+
*/
|
2177
|
+
init(request) {
|
2178
|
+
return this.httpService.api({
|
2179
|
+
method: 'post',
|
2180
|
+
url: `${this.SERVICE_URL}/init`,
|
2181
|
+
body: request,
|
2182
|
+
responseType: 'text',
|
2183
|
+
});
|
2184
|
+
}
|
2185
|
+
/**
|
2186
|
+
* Get existing state by ID
|
2187
|
+
* @param id ID
|
2188
|
+
* @returns Configuration State
|
2189
|
+
*/
|
2190
|
+
get(id) {
|
2191
|
+
return this.httpService.api({
|
2192
|
+
url: `${this.SERVICE_URL}/${id}`,
|
2193
|
+
});
|
2194
|
+
}
|
2195
|
+
/**
|
2196
|
+
* Execute actions/selectors
|
2197
|
+
* @param id State ID
|
2198
|
+
* @param request Request
|
2199
|
+
* @returns Execute result
|
2200
|
+
*/
|
2201
|
+
execute(id, request) {
|
2202
|
+
return this.httpService.api({
|
2203
|
+
method: 'post',
|
2204
|
+
url: `${this.SERVICE_URL}/${id}/execute`,
|
2205
|
+
body: request,
|
2206
|
+
});
|
2207
|
+
}
|
2208
|
+
}
|
2209
|
+
StatefulConfigurationApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: StatefulConfigurationApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
|
2210
|
+
StatefulConfigurationApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: StatefulConfigurationApiService });
|
2211
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: StatefulConfigurationApiService, decorators: [{
|
2212
|
+
type: Injectable
|
2213
|
+
}], ctorParameters: function () { return [{ type: i1.BaseHttpService }]; } });
|
2214
|
+
|
2215
|
+
class UIDefinitionsApiService {
|
2216
|
+
constructor(baseHttpService) {
|
2217
|
+
this.baseHttpService = baseHttpService;
|
2218
|
+
}
|
2219
|
+
fetch$(modelId, version) {
|
2220
|
+
const serviceUrl = this.getServiceUrl(modelId);
|
2221
|
+
let params = new HttpParams();
|
2222
|
+
if (version != null) {
|
2223
|
+
params = params.set('modelVersion', version);
|
2224
|
+
}
|
2225
|
+
return this.baseHttpService
|
2226
|
+
.api({
|
2227
|
+
method: 'get',
|
2228
|
+
url: serviceUrl,
|
2229
|
+
params: params,
|
2230
|
+
})
|
2231
|
+
.pipe(map$1(containers => containers.map(uiDefinitionFromDTO)));
|
2232
|
+
}
|
2233
|
+
create$(modelId, uiDefinitionContainer) {
|
2234
|
+
const serviceUrl = this.getServiceUrl(modelId);
|
2235
|
+
const dto = {
|
2236
|
+
...omit(uiDefinitionContainer, 'source'),
|
2237
|
+
sourceBlob: JSON.stringify(uiDefinitionContainer.source),
|
2238
|
+
};
|
2239
|
+
return this.baseHttpService
|
2240
|
+
.api({
|
2241
|
+
method: 'post',
|
2242
|
+
url: serviceUrl,
|
2243
|
+
body: dto,
|
2244
|
+
})
|
2245
|
+
.pipe(map$1(container => uiDefinitionFromDTO(container)));
|
2246
|
+
}
|
2247
|
+
get$(modelId, uiDefinitionId) {
|
2248
|
+
const serviceUrl = this.getServiceUrl(modelId);
|
2249
|
+
return this.baseHttpService
|
2250
|
+
.api({
|
2251
|
+
method: 'get',
|
2252
|
+
url: `${serviceUrl}/${uiDefinitionId}`,
|
2253
|
+
})
|
2254
|
+
.pipe(map$1(container => uiDefinitionFromDTO({ ...container, id: uiDefinitionId })));
|
2255
|
+
}
|
2256
|
+
update$(uiDefinitionContainer) {
|
2257
|
+
const serviceUrl = this.getServiceUrl(uiDefinitionContainer.modelId);
|
2258
|
+
const dto = uiDefinitionToDTO(uiDefinitionContainer);
|
2259
|
+
return this.baseHttpService
|
2260
|
+
.api({
|
2261
|
+
method: 'put',
|
2262
|
+
url: `${serviceUrl}/${uiDefinitionContainer.id}`,
|
2263
|
+
body: dto,
|
2264
|
+
})
|
2265
|
+
.pipe(map$1(container => uiDefinitionFromDTO(container)));
|
2266
|
+
}
|
2267
|
+
delete$(uiDefinitionContainer) {
|
2268
|
+
const serviceUrl = this.getServiceUrl(uiDefinitionContainer.modelId);
|
2269
|
+
return this.baseHttpService.api({
|
2270
|
+
method: 'delete',
|
2271
|
+
url: `${serviceUrl}/${uiDefinitionContainer.id}`,
|
2272
|
+
});
|
2273
|
+
}
|
2274
|
+
getServiceUrl(modelId) {
|
2275
|
+
return `/models/${modelId}/uidefinitions`;
|
2276
|
+
}
|
2277
|
+
}
|
2278
|
+
UIDefinitionsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: UIDefinitionsApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
|
2279
|
+
UIDefinitionsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: UIDefinitionsApiService });
|
2280
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: UIDefinitionsApiService, decorators: [{
|
2281
|
+
type: Injectable
|
2282
|
+
}], ctorParameters: function () { return [{ type: i1.BaseHttpService }]; } });
|
2283
|
+
|
2100
2284
|
const fromUIComponentStoryDTO = (dto, attachments) => {
|
2101
2285
|
return {
|
2102
2286
|
id: dto.id,
|
@@ -2385,6 +2569,82 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
|
|
2385
2569
|
type: Injectable
|
2386
2570
|
}], ctorParameters: function () { return [{ type: i1.BaseHttpService }]; } });
|
2387
2571
|
|
2572
|
+
class VeloceObjectsApiService {
|
2573
|
+
constructor(baseHttpService) {
|
2574
|
+
this.baseHttpService = baseHttpService;
|
2575
|
+
this.serviceUrl = '/veloceobjects';
|
2576
|
+
this.updateCategory$ = (category) => {
|
2577
|
+
return this.baseHttpService.api({
|
2578
|
+
method: 'put',
|
2579
|
+
url: `${this.serviceUrl}/categories/${category.id}`,
|
2580
|
+
body: category,
|
2581
|
+
});
|
2582
|
+
};
|
2583
|
+
this.deleteCategory$ = (id) => {
|
2584
|
+
return this.baseHttpService.api({
|
2585
|
+
method: 'delete',
|
2586
|
+
url: `${this.serviceUrl}/categories/${id}`,
|
2587
|
+
});
|
2588
|
+
};
|
2589
|
+
this.searchObjects$ = (searchParams, expression) => {
|
2590
|
+
const params = new HttpParams({ fromObject: { ...searchParams } });
|
2591
|
+
return this.baseHttpService.api({
|
2592
|
+
method: 'post',
|
2593
|
+
url: `${this.serviceUrl}/search`,
|
2594
|
+
params,
|
2595
|
+
body: expression || {},
|
2596
|
+
});
|
2597
|
+
};
|
2598
|
+
this.deleteObject$ = (id) => {
|
2599
|
+
return this.baseHttpService.api({
|
2600
|
+
method: 'delete',
|
2601
|
+
url: `${this.serviceUrl}/${id}`,
|
2602
|
+
});
|
2603
|
+
};
|
2604
|
+
this.restoreObject$ = (id) => {
|
2605
|
+
return this.baseHttpService.api({
|
2606
|
+
method: 'patch',
|
2607
|
+
url: `${this.serviceUrl}/${id}/restore`,
|
2608
|
+
});
|
2609
|
+
};
|
2610
|
+
}
|
2611
|
+
fetchCategories$() {
|
2612
|
+
return this.baseHttpService.api({ url: `${this.serviceUrl}/categories` });
|
2613
|
+
}
|
2614
|
+
createCategory$(category) {
|
2615
|
+
return this.baseHttpService.api({
|
2616
|
+
method: 'post',
|
2617
|
+
url: `${this.serviceUrl}/categories`,
|
2618
|
+
body: category,
|
2619
|
+
});
|
2620
|
+
}
|
2621
|
+
fetchObjects$() {
|
2622
|
+
return this.baseHttpService.api({ url: `${this.serviceUrl}` });
|
2623
|
+
}
|
2624
|
+
fetchObject$(id) {
|
2625
|
+
return this.baseHttpService.api({ url: `${this.serviceUrl}/${id}` });
|
2626
|
+
}
|
2627
|
+
createObject$(object) {
|
2628
|
+
return this.baseHttpService.api({
|
2629
|
+
method: 'post',
|
2630
|
+
url: `${this.serviceUrl}`,
|
2631
|
+
body: object,
|
2632
|
+
});
|
2633
|
+
}
|
2634
|
+
updateObject$(object) {
|
2635
|
+
return this.baseHttpService.api({
|
2636
|
+
method: 'put',
|
2637
|
+
url: `${this.serviceUrl}/${object.id}`,
|
2638
|
+
body: object,
|
2639
|
+
});
|
2640
|
+
}
|
2641
|
+
}
|
2642
|
+
VeloceObjectsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: VeloceObjectsApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
|
2643
|
+
VeloceObjectsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: VeloceObjectsApiService });
|
2644
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: VeloceObjectsApiService, decorators: [{
|
2645
|
+
type: Injectable
|
2646
|
+
}], ctorParameters: function () { return [{ type: i1.BaseHttpService }]; } });
|
2647
|
+
|
2388
2648
|
class ApiModule {
|
2389
2649
|
}
|
2390
2650
|
ApiModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: ApiModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
@@ -2420,6 +2680,9 @@ ApiModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.
|
|
2420
2680
|
EndpointsApiService,
|
2421
2681
|
OrgInfoApiService,
|
2422
2682
|
OffersApiService,
|
2683
|
+
UIDefinitionsApiService,
|
2684
|
+
VeloceObjectsApiService,
|
2685
|
+
StatefulConfigurationApiService,
|
2423
2686
|
], imports: [HttpClientModule] });
|
2424
2687
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: ApiModule, decorators: [{
|
2425
2688
|
type: NgModule,
|
@@ -2456,6 +2719,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
|
|
2456
2719
|
EndpointsApiService,
|
2457
2720
|
OrgInfoApiService,
|
2458
2721
|
OffersApiService,
|
2722
|
+
UIDefinitionsApiService,
|
2723
|
+
VeloceObjectsApiService,
|
2724
|
+
StatefulConfigurationApiService,
|
2459
2725
|
],
|
2460
2726
|
}]
|
2461
2727
|
}] });
|
@@ -2464,5 +2730,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
|
|
2464
2730
|
* Generated bundle index. Do not edit.
|
2465
2731
|
*/
|
2466
2732
|
|
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 };
|
2733
|
+
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
2734
|
//# sourceMappingURL=veloceapps-api.mjs.map
|