@arrowsphere/api-client 3.184.0-rc-bdj-8 → 3.184.0-rc-bdj-9
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.
|
@@ -50,6 +50,13 @@ export declare enum scenarioType {
|
|
|
50
50
|
RECONCILIATION = "reconciliation",
|
|
51
51
|
PROVISION = "provision"
|
|
52
52
|
}
|
|
53
|
+
export declare enum StaffTypeEnum {
|
|
54
|
+
ICST = "icst",
|
|
55
|
+
ISR = "isr",
|
|
56
|
+
FCST = "fcst",
|
|
57
|
+
FSR = "fsr",
|
|
58
|
+
SOR = "sor"
|
|
59
|
+
}
|
|
53
60
|
export declare type OrderProgramsType = {
|
|
54
61
|
[key: string]: {
|
|
55
62
|
[name: string]: string;
|
|
@@ -134,11 +141,11 @@ export declare enum UpdateContributorItemOrderInputFields {
|
|
|
134
141
|
COLUMN_STAFF_ID = "staffId"
|
|
135
142
|
}
|
|
136
143
|
export declare type UpdateContributorItemOrderInputType = {
|
|
137
|
-
[UpdateContributorItemOrderInputFields.COLUMN_TYPE]:
|
|
144
|
+
[UpdateContributorItemOrderInputFields.COLUMN_TYPE]: StaffTypeEnum;
|
|
138
145
|
[UpdateContributorItemOrderInputFields.COLUMN_STAFF_ID]: number | null;
|
|
139
146
|
};
|
|
140
147
|
export declare enum UpdateContributorOrderInputFields {
|
|
141
|
-
COLUMN_CONTRIBUTOR = "
|
|
148
|
+
COLUMN_CONTRIBUTOR = "contributor"
|
|
142
149
|
}
|
|
143
150
|
export declare type UpdateContributorOrderInputType = {
|
|
144
151
|
[UpdateContributorOrderInputFields.COLUMN_CONTRIBUTOR]: UpdateContributorItemOrderInputType[];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.OrdersClient = exports.UpdateAdditionalInformationOrderInputFields = exports.UpdateAdditionalInformationItemOrderInputFields = exports.UpdateContributorOrderInputFields = exports.UpdateContributorItemOrderInputFields = exports.UpdateOrderInputFields = exports.scenarioType = exports.CreateOrderInputFields = void 0;
|
|
3
|
+
exports.OrdersClient = exports.UpdateAdditionalInformationOrderInputFields = exports.UpdateAdditionalInformationItemOrderInputFields = exports.UpdateContributorOrderInputFields = exports.UpdateContributorItemOrderInputFields = exports.UpdateOrderInputFields = exports.StaffTypeEnum = exports.scenarioType = exports.CreateOrderInputFields = void 0;
|
|
4
4
|
const abstractRestfulClient_1 = require("../abstractRestfulClient");
|
|
5
5
|
const getResult_1 = require("../getResult");
|
|
6
6
|
const dataListOrders_1 = require("./entities/dataListOrders");
|
|
@@ -55,6 +55,14 @@ var scenarioType;
|
|
|
55
55
|
scenarioType["RECONCILIATION"] = "reconciliation";
|
|
56
56
|
scenarioType["PROVISION"] = "provision";
|
|
57
57
|
})(scenarioType = exports.scenarioType || (exports.scenarioType = {}));
|
|
58
|
+
var StaffTypeEnum;
|
|
59
|
+
(function (StaffTypeEnum) {
|
|
60
|
+
StaffTypeEnum["ICST"] = "icst";
|
|
61
|
+
StaffTypeEnum["ISR"] = "isr";
|
|
62
|
+
StaffTypeEnum["FCST"] = "fcst";
|
|
63
|
+
StaffTypeEnum["FSR"] = "fsr";
|
|
64
|
+
StaffTypeEnum["SOR"] = "sor";
|
|
65
|
+
})(StaffTypeEnum = exports.StaffTypeEnum || (exports.StaffTypeEnum = {}));
|
|
58
66
|
var UpdateOrderInputFields;
|
|
59
67
|
(function (UpdateOrderInputFields) {
|
|
60
68
|
UpdateOrderInputFields["COLUMN_PO_NUMBER"] = "PO_number";
|
|
@@ -67,7 +75,7 @@ var UpdateContributorItemOrderInputFields;
|
|
|
67
75
|
})(UpdateContributorItemOrderInputFields = exports.UpdateContributorItemOrderInputFields || (exports.UpdateContributorItemOrderInputFields = {}));
|
|
68
76
|
var UpdateContributorOrderInputFields;
|
|
69
77
|
(function (UpdateContributorOrderInputFields) {
|
|
70
|
-
UpdateContributorOrderInputFields["COLUMN_CONTRIBUTOR"] = "
|
|
78
|
+
UpdateContributorOrderInputFields["COLUMN_CONTRIBUTOR"] = "contributor";
|
|
71
79
|
})(UpdateContributorOrderInputFields = exports.UpdateContributorOrderInputFields || (exports.UpdateContributorOrderInputFields = {}));
|
|
72
80
|
var UpdateAdditionalInformationItemOrderInputFields;
|
|
73
81
|
(function (UpdateAdditionalInformationItemOrderInputFields) {
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "https://github.com/ArrowSphere/nodejs-api-client.git"
|
|
6
6
|
},
|
|
7
|
-
"version": "3.184.0-rc-bdj-
|
|
7
|
+
"version": "3.184.0-rc-bdj-9",
|
|
8
8
|
"description": "Node.js client for ArrowSphere's public API",
|
|
9
9
|
"main": "build/index.js",
|
|
10
10
|
"types": "build/index.d.ts",
|