@veloceapps/api 5.0.10 → 5.0.12

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.
Files changed (49) hide show
  1. package/bundles/veloce-api.umd.js +10 -401
  2. package/bundles/veloce-api.umd.js.map +1 -1
  3. package/esm2015/lib/services/account-api.service.js +1 -1
  4. package/esm2015/lib/services/catalog-admin-api.service.js +2 -2
  5. package/esm2015/lib/services/catalog-api.service.js +1 -1
  6. package/esm2015/lib/services/configuration-api.service.js +2 -3
  7. package/esm2015/lib/services/configuration-settings-api.service.js +1 -1
  8. package/esm2015/lib/services/context-api.service.js +1 -1
  9. package/esm2015/lib/services/delta-api.service.js +3 -7
  10. package/esm2015/lib/services/document-attachment-api.service.js +1 -1
  11. package/esm2015/lib/services/endpoints-api.service.js +2 -2
  12. package/esm2015/lib/services/picklists-api.service.js +1 -1
  13. package/esm2015/lib/services/price-api.service.js +1 -1
  14. package/esm2015/lib/services/procedures-api.service.js +1 -1
  15. package/esm2015/lib/services/product-api.service.js +1 -1
  16. package/esm2015/lib/services/product-model-api.service.js +1 -1
  17. package/esm2015/lib/services/quote-api.service.js +1 -1
  18. package/esm2015/lib/services/ramp-api.service.js +1 -1
  19. package/esm2015/lib/services/rule-groups-api.service.js +1 -1
  20. package/esm2015/lib/services/rules-api.service.js +1 -1
  21. package/esm2015/lib/services/salesforce-api.service.js +1 -1
  22. package/esm2015/lib/services/scripts-api.service.js +3 -3
  23. package/esm2015/lib/services/ui-templates-api.service.js +1 -1
  24. package/esm2015/lib/types/dto/configuration-settings-dto.types.js +1 -1
  25. package/fesm2015/veloce-api.js +9 -391
  26. package/fesm2015/veloce-api.js.map +1 -1
  27. package/lib/services/catalog-admin-api.service.d.ts +1 -1
  28. package/lib/services/endpoints-api.service.d.ts +1 -1
  29. package/package.json +1 -1
  30. package/esm2015/lib/types/dto/attribute-dto.types.js +0 -21
  31. package/esm2015/lib/types/dto/charge-group-item-dto.types.js +0 -49
  32. package/esm2015/lib/types/dto/charge-item-dto.types.js +0 -78
  33. package/esm2015/lib/types/dto/configuration-dto.types.js +0 -19
  34. package/esm2015/lib/types/dto/domain-type-dto.types.js +0 -27
  35. package/esm2015/lib/types/dto/line-item-dto.types.js +0 -109
  36. package/esm2015/lib/types/dto/port-domain-dto.types.js +0 -22
  37. package/esm2015/lib/types/dto/price-adjustment-dto.types.js +0 -15
  38. package/esm2015/lib/types/dto/price-dto.types.js +0 -25
  39. package/esm2015/lib/types/dto/recommended-price-dto.types.js +0 -25
  40. package/lib/types/dto/attribute-dto.types.d.ts +0 -11
  41. package/lib/types/dto/charge-group-item-dto.types.d.ts +0 -26
  42. package/lib/types/dto/charge-item-dto.types.d.ts +0 -41
  43. package/lib/types/dto/configuration-dto.types.d.ts +0 -18
  44. package/lib/types/dto/domain-type-dto.types.d.ts +0 -15
  45. package/lib/types/dto/line-item-dto.types.d.ts +0 -58
  46. package/lib/types/dto/port-domain-dto.types.d.ts +0 -13
  47. package/lib/types/dto/price-adjustment-dto.types.d.ts +0 -8
  48. package/lib/types/dto/price-dto.types.d.ts +0 -13
  49. package/lib/types/dto/recommended-price-dto.types.d.ts +0 -14
@@ -1,58 +0,0 @@
1
- import { LineItem, RequiresApproval } from '@veloce/core';
2
- import { Dictionary } from 'lodash';
3
- import { AttributeDTO } from './attribute-dto.types';
4
- import { ChargeGroupItemDTO } from './charge-group-item-dto.types';
5
- import { ChargeItemDTO } from './charge-item-dto.types';
6
- import { PortDomainDTO } from './port-domain-dto.types';
7
- import { PriceDTO } from './price-dto.types';
8
- export declare class LineItemDTO {
9
- id: string;
10
- activated: boolean;
11
- attributes: AttributeDTO[];
12
- attributeDomains: Dictionary<any[]>;
13
- cfgStatus: string;
14
- chargeGroupItems: ChargeGroupItemDTO[];
15
- chargeItems: ChargeItemDTO[];
16
- domainComputations: Dictionary<boolean>;
17
- lineItems: LineItem[];
18
- messages: string[];
19
- name: string;
20
- optionalCharges: any[];
21
- pending: boolean;
22
- portDomains: Dictionary<PortDomainDTO>;
23
- properties: Dictionary<string>;
24
- qty: number;
25
- totalPrices: Dictionary<PriceDTO>;
26
- type: string;
27
- integrationId?: string | undefined;
28
- productId?: string | undefined;
29
- port?: string | undefined;
30
- parentId?: string | undefined;
31
- assetId?: string | undefined;
32
- openOrderLineItemId?: string | undefined;
33
- productName?: string | undefined;
34
- rootId?: string | undefined;
35
- actionCode?: string | undefined;
36
- serviceStartDate?: string | undefined;
37
- effectiveDate?: string | undefined;
38
- effectiveStartDate?: string | undefined;
39
- startDate?: string | undefined;
40
- endDate?: string | undefined;
41
- priceListId?: string | undefined;
42
- planId?: string | undefined;
43
- sellingFrequencyUnit?: string | undefined;
44
- sellingFrequencyDuration?: string | undefined;
45
- minimalTerm?: number | undefined;
46
- proratedFrequencyEnabled?: boolean | undefined;
47
- offeringId?: string | undefined;
48
- offeringItemId?: string | undefined;
49
- offeringInstanceId?: string | undefined;
50
- rampInstanceId?: string | undefined;
51
- enableRamp?: boolean | undefined;
52
- configurable?: boolean | undefined;
53
- requiresApprovals?: RequiresApproval[] | undefined;
54
- metrics?: Dictionary<number> | undefined;
55
- totalMetrics?: Dictionary<number> | undefined;
56
- static fromDTO(dto: LineItemDTO): LineItem;
57
- constructor(id: string, activated: boolean, attributes: AttributeDTO[], attributeDomains: Dictionary<any[]>, cfgStatus: string, chargeGroupItems: ChargeGroupItemDTO[], chargeItems: ChargeItemDTO[], domainComputations: Dictionary<boolean>, lineItems: LineItem[], messages: string[], name: string, optionalCharges: any[], pending: boolean, portDomains: Dictionary<PortDomainDTO>, properties: Dictionary<string>, qty: number, totalPrices: Dictionary<PriceDTO>, type: string, integrationId?: string | undefined, productId?: string | undefined, port?: string | undefined, parentId?: string | undefined, assetId?: string | undefined, openOrderLineItemId?: string | undefined, productName?: string | undefined, rootId?: string | undefined, actionCode?: string | undefined, serviceStartDate?: string | undefined, effectiveDate?: string | undefined, effectiveStartDate?: string | undefined, startDate?: string | undefined, endDate?: string | undefined, priceListId?: string | undefined, planId?: string | undefined, sellingFrequencyUnit?: string | undefined, sellingFrequencyDuration?: string | undefined, minimalTerm?: number | undefined, proratedFrequencyEnabled?: boolean | undefined, offeringId?: string | undefined, offeringItemId?: string | undefined, offeringInstanceId?: string | undefined, rampInstanceId?: string | undefined, enableRamp?: boolean | undefined, configurable?: boolean | undefined, requiresApprovals?: RequiresApproval[] | undefined, metrics?: Dictionary<number> | undefined, totalMetrics?: Dictionary<number> | undefined);
58
- }
@@ -1,13 +0,0 @@
1
- import { PortDomain } from '@veloce/core';
2
- import { Dictionary } from 'lodash';
3
- import { DomainTypeDTO } from './domain-type-dto.types';
4
- export declare class PortDomainDTO {
5
- name: string;
6
- type: string;
7
- minCard: number;
8
- maxCard: number;
9
- domainTypes: DomainTypeDTO[];
10
- properties: Dictionary<string>;
11
- static fromDTO(dto: PortDomainDTO): PortDomain;
12
- constructor(name: string, type: string, minCard: number, maxCard: number, domainTypes: DomainTypeDTO[], properties: Dictionary<string>);
13
- }
@@ -1,8 +0,0 @@
1
- import { PriceAdjustment } from '@veloce/core';
2
- export declare class PriceAdjustmentDTO {
3
- amount: number;
4
- explanation: string;
5
- type: string;
6
- static fromDTO(dto: PriceAdjustmentDTO): PriceAdjustment;
7
- constructor(amount: number, explanation: string, type: string);
8
- }
@@ -1,13 +0,0 @@
1
- import { Price } from '@veloce/core';
2
- export declare class PriceDTO {
3
- netPrice: number;
4
- listPrice: number;
5
- chargeType: string;
6
- chargeTypeDisplayValue: string;
7
- chargeMethod: string;
8
- frequencyUnit: string;
9
- frequencyDuration: number;
10
- sellingTerm: number;
11
- static fromDTO(dto: PriceDTO): Price;
12
- constructor(netPrice: number, listPrice: number, chargeType: string, chargeTypeDisplayValue: string, chargeMethod: string, frequencyUnit: string, frequencyDuration: number, sellingTerm: number);
13
- }
@@ -1,14 +0,0 @@
1
- import { RecommendedPrice } from '@veloce/core';
2
- import { Dictionary } from 'lodash';
3
- export declare class RecommendedPriceDTO {
4
- netPrice: number;
5
- listPrice: number;
6
- chargeType: string;
7
- chargeMethod: string;
8
- explanation?: string | undefined;
9
- frequencyDuration?: number | undefined;
10
- frequencyUnit?: string | undefined;
11
- properties?: Dictionary<string> | undefined;
12
- static fromDTO(dto: RecommendedPriceDTO): RecommendedPrice;
13
- constructor(netPrice: number, listPrice: number, chargeType: string, chargeMethod: string, explanation?: string | undefined, frequencyDuration?: number | undefined, frequencyUnit?: string | undefined, properties?: Dictionary<string> | undefined);
14
- }