@veloceapps/api 5.0.3 → 5.0.5
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/bundles/veloce-api.umd.js +3 -1
- package/bundles/veloce-api.umd.js.map +1 -1
- package/esm2015/lib/types/dto/line-item-dto.types.js +4 -2
- package/fesm2015/veloce-api.js +3 -1
- package/fesm2015/veloce-api.js.map +1 -1
- package/lib/types/dto/line-item-dto.types.d.ts +2 -1
- package/package.json +1 -1
@@ -43,6 +43,7 @@ export declare class LineItemDTO {
|
|
43
43
|
sellingFrequencyUnit?: string | undefined;
|
44
44
|
sellingFrequencyDuration?: string | undefined;
|
45
45
|
minimalTerm?: number | undefined;
|
46
|
+
proratedFrequencyEnabled?: boolean | undefined;
|
46
47
|
offeringId?: string | undefined;
|
47
48
|
offeringItemId?: string | undefined;
|
48
49
|
offeringInstanceId?: string | undefined;
|
@@ -51,5 +52,5 @@ export declare class LineItemDTO {
|
|
51
52
|
configurable?: boolean | undefined;
|
52
53
|
requiresApprovals?: RequiresApproval[] | undefined;
|
53
54
|
static fromDTO(dto: LineItemDTO): LineItem;
|
54
|
-
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, offeringId?: string | undefined, offeringItemId?: string | undefined, offeringInstanceId?: string | undefined, rampInstanceId?: string | undefined, enableRamp?: boolean | undefined, configurable?: boolean | undefined, requiresApprovals?: RequiresApproval[] | undefined);
|
55
|
+
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);
|
55
56
|
}
|