@d19n/youfibre-odin-sdk 1.0.198 → 1.0.199
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.
|
@@ -2,13 +2,24 @@ import { OdinRecordCreateDto, OdinRecordCreatedEvent } from '@d19n/odin-types/di
|
|
|
2
2
|
interface CreateRecontractOrderItemProperties {
|
|
3
3
|
ProductType?: string;
|
|
4
4
|
ProductCategory?: string;
|
|
5
|
+
ProductCustomerType?: string;
|
|
6
|
+
ProductRef?: string;
|
|
7
|
+
ProductPbRelationId?: string;
|
|
8
|
+
Description?: string;
|
|
5
9
|
Quantity?: number;
|
|
6
10
|
UnitPrice?: string;
|
|
7
|
-
|
|
11
|
+
TotalPrice?: string;
|
|
8
12
|
Taxable?: string;
|
|
9
|
-
TaxIncluded?: string;
|
|
10
13
|
TaxRate?: number;
|
|
11
|
-
|
|
14
|
+
TaxIncluded?: string;
|
|
15
|
+
DiscountType?: string;
|
|
16
|
+
DiscountValue?: string;
|
|
17
|
+
DiscountLength?: number;
|
|
18
|
+
Discount2Type?: string;
|
|
19
|
+
Discount2Value?: string;
|
|
20
|
+
Discount2Length?: number;
|
|
21
|
+
NetworkServiceId?: string;
|
|
22
|
+
ActivationStatus?: string;
|
|
12
23
|
}
|
|
13
24
|
export declare class CreateRecontractOrderItemDto extends OdinRecordCreateDto<CreateRecontractOrderItemProperties> {
|
|
14
25
|
readonly actionName: string;
|
package/package.json
CHANGED
|
@@ -28,13 +28,24 @@ OdinRecordLinkCreatedEvent
|
|
|
28
28
|
interface CreateRecontractOrderItemProperties {
|
|
29
29
|
ProductType?: string,
|
|
30
30
|
ProductCategory?: string,
|
|
31
|
+
ProductCustomerType?: string,
|
|
32
|
+
ProductRef?: string,
|
|
33
|
+
ProductPbRelationId?: string,
|
|
34
|
+
Description?: string,
|
|
31
35
|
Quantity?: number,
|
|
32
36
|
UnitPrice?: string,
|
|
33
|
-
|
|
37
|
+
TotalPrice?: string,
|
|
34
38
|
Taxable?: string,
|
|
35
|
-
TaxIncluded?: string,
|
|
36
39
|
TaxRate?: number,
|
|
37
|
-
|
|
40
|
+
TaxIncluded?: string,
|
|
41
|
+
DiscountType?: string,
|
|
42
|
+
DiscountValue?: string,
|
|
43
|
+
DiscountLength?: number,
|
|
44
|
+
Discount2Type?: string,
|
|
45
|
+
Discount2Value?: string,
|
|
46
|
+
Discount2Length?: number,
|
|
47
|
+
NetworkServiceId?: string,
|
|
48
|
+
ActivationStatus?: string,
|
|
38
49
|
}
|
|
39
50
|
export class CreateRecontractOrderItemDto extends OdinRecordCreateDto<CreateRecontractOrderItemProperties> {
|
|
40
51
|
public readonly actionName: string = 'CreateRecontractOrderItem';
|