@arrowsphere/api-client 3.164.1-rc-mel-2 → 3.165.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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,11 @@
|
|
|
3
3
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
4
4
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
5
|
|
|
6
|
+
## [3.165.0] - 2025.01.24
|
|
7
|
+
|
|
8
|
+
### Updated
|
|
9
|
+
- [consumption] updated ConsumptionDownloadRequestPayload schema add field source
|
|
10
|
+
|
|
6
11
|
## [3.164.0] - 2025.01.21
|
|
7
12
|
|
|
8
13
|
### Updated
|
|
@@ -22,8 +22,7 @@ export declare enum ProgramExtraInfoItemFields {
|
|
|
22
22
|
LABEL = "label",
|
|
23
23
|
TYPE = "type",
|
|
24
24
|
REGEX = "regex",
|
|
25
|
-
MANDATORY = "mandatory"
|
|
26
|
-
DESCRIBTION = "describtion"
|
|
25
|
+
MANDATORY = "mandatory"
|
|
27
26
|
}
|
|
28
27
|
export declare type ProgramType = {
|
|
29
28
|
[ProgramFields.REFERENCE]?: string;
|
|
@@ -49,7 +48,6 @@ export declare type ExtraInfoItemType = {
|
|
|
49
48
|
[ProgramExtraInfoItemFields.TYPE]: string;
|
|
50
49
|
[ProgramExtraInfoItemFields.REGEX]: string;
|
|
51
50
|
[ProgramExtraInfoItemFields.MANDATORY]: boolean;
|
|
52
|
-
[ProgramExtraInfoItemFields.DESCRIBTION]?: string;
|
|
53
51
|
};
|
|
54
52
|
export declare class Program extends AbstractEntity<ProgramType> {
|
|
55
53
|
#private;
|
|
@@ -42,7 +42,6 @@ var ProgramExtraInfoItemFields;
|
|
|
42
42
|
ProgramExtraInfoItemFields["TYPE"] = "type";
|
|
43
43
|
ProgramExtraInfoItemFields["REGEX"] = "regex";
|
|
44
44
|
ProgramExtraInfoItemFields["MANDATORY"] = "mandatory";
|
|
45
|
-
ProgramExtraInfoItemFields["DESCRIBTION"] = "describtion";
|
|
46
45
|
})(ProgramExtraInfoItemFields = exports.ProgramExtraInfoItemFields || (exports.ProgramExtraInfoItemFields = {}));
|
|
47
46
|
class Program extends abstractEntity_1.AbstractEntity {
|
|
48
47
|
constructor(input) {
|
|
@@ -12,7 +12,8 @@ export declare type ConsumptionDownloadRequestPayload = {
|
|
|
12
12
|
dateStart: string;
|
|
13
13
|
dateEnd: string;
|
|
14
14
|
columns: Array<string>;
|
|
15
|
-
callbackURL
|
|
15
|
+
callbackURL?: string;
|
|
16
|
+
source?: string;
|
|
16
17
|
};
|
|
17
18
|
export declare class ConsumptionClient extends AbstractRestfulClient {
|
|
18
19
|
/**
|
|
@@ -49,11 +49,6 @@ export declare enum scenarioType {
|
|
|
49
49
|
RECONCILIATION = "reconciliation",
|
|
50
50
|
PROVISION = "provision"
|
|
51
51
|
}
|
|
52
|
-
export declare type OrderProgramsType = {
|
|
53
|
-
[key: string]: {
|
|
54
|
-
[name: string]: string;
|
|
55
|
-
};
|
|
56
|
-
};
|
|
57
52
|
export declare type CreateOrderInputType = {
|
|
58
53
|
[CreateOrderInputFields.COLUMN_CUSTOMER]: {
|
|
59
54
|
[CreateOrderInputFields.COLUMN_REFERENCE]: string;
|
|
@@ -63,7 +58,11 @@ export declare type CreateOrderInputType = {
|
|
|
63
58
|
[CreateOrderInputFields.COLUMN_SCHEDULE_DATE]?: string;
|
|
64
59
|
[CreateOrderInputFields.COLUMN_PRODUCTS]: Array<CreateOrderProductType>;
|
|
65
60
|
[CreateOrderInputFields.COLUMN_EXTRA_INFORMATION]?: {
|
|
66
|
-
programs:
|
|
61
|
+
programs: {
|
|
62
|
+
[key: string]: {
|
|
63
|
+
[name: string]: string;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
67
66
|
};
|
|
68
67
|
[CreateOrderInputFields.COLUMN_ORGANIZATION_UNIT_REF]?: string;
|
|
69
68
|
};
|
package/package.json
CHANGED