@arrowsphere/api-client 3.184.0-rc-bdj-4 → 3.184.0-rc-bdj-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.
|
@@ -137,13 +137,19 @@ export declare type UpdateContributorOrderInputType = {
|
|
|
137
137
|
[UpdateContributorOrderInputFields.COLUMN_TYPE]: string;
|
|
138
138
|
[UpdateContributorOrderInputFields.COLUMN_CONTRIBUTOR_ID]: number;
|
|
139
139
|
};
|
|
140
|
-
export declare enum
|
|
140
|
+
export declare enum UpdateAdditionalInformationItemOrderInputFields {
|
|
141
141
|
COLUMN_NAME = "name",
|
|
142
142
|
COLUMN_VALUE = "value"
|
|
143
143
|
}
|
|
144
|
+
export declare type UpdateAdditionalInformationItemOrderInputType = {
|
|
145
|
+
[UpdateAdditionalInformationItemOrderInputFields.COLUMN_NAME]: string;
|
|
146
|
+
[UpdateAdditionalInformationItemOrderInputFields.COLUMN_VALUE]: string;
|
|
147
|
+
};
|
|
148
|
+
export declare enum UpdateAdditionalInformationOrderInputFields {
|
|
149
|
+
COLUMN_DATA = "data"
|
|
150
|
+
}
|
|
144
151
|
export declare type UpdateAdditionalInformationOrderInputType = {
|
|
145
|
-
[
|
|
146
|
-
[UpdateContributorOrderInputFields.COLUMN_CONTRIBUTOR_ID]: number;
|
|
152
|
+
[UpdateAdditionalInformationOrderInputFields.COLUMN_DATA]: UpdateAdditionalInformationItemOrderInputType[];
|
|
147
153
|
};
|
|
148
154
|
export declare class OrdersClient extends AbstractRestfulClient {
|
|
149
155
|
/**
|
|
@@ -160,5 +166,5 @@ export declare class OrdersClient extends AbstractRestfulClient {
|
|
|
160
166
|
resubmitOrder(orderReference: string, parameters?: Parameters): Promise<void>;
|
|
161
167
|
validateOrder(orderReference: string, parameters?: Parameters): Promise<void>;
|
|
162
168
|
updateStaffContributorsOrder(orderReference: string, payload: UpdateContributorOrderInputType, parameters?: Parameters): Promise<void>;
|
|
163
|
-
updateAdditionalInformationOrder(orderReference: string, payload: UpdateAdditionalInformationOrderInputType
|
|
169
|
+
updateAdditionalInformationOrder(orderReference: string, payload: UpdateAdditionalInformationOrderInputType, parameters?: Parameters): Promise<void>;
|
|
164
170
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.OrdersClient = exports.UpdateAdditionalInformationOrderInputFields = exports.UpdateContributorOrderInputFields = exports.UpdateOrderInputFields = exports.scenarioType = exports.CreateOrderInputFields = void 0;
|
|
3
|
+
exports.OrdersClient = exports.UpdateAdditionalInformationOrderInputFields = exports.UpdateAdditionalInformationItemOrderInputFields = exports.UpdateContributorOrderInputFields = exports.UpdateOrderInputFields = 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");
|
|
@@ -65,10 +65,14 @@ var UpdateContributorOrderInputFields;
|
|
|
65
65
|
UpdateContributorOrderInputFields["COLUMN_TYPE"] = "type";
|
|
66
66
|
UpdateContributorOrderInputFields["COLUMN_CONTRIBUTOR_ID"] = "contributorId";
|
|
67
67
|
})(UpdateContributorOrderInputFields = exports.UpdateContributorOrderInputFields || (exports.UpdateContributorOrderInputFields = {}));
|
|
68
|
+
var UpdateAdditionalInformationItemOrderInputFields;
|
|
69
|
+
(function (UpdateAdditionalInformationItemOrderInputFields) {
|
|
70
|
+
UpdateAdditionalInformationItemOrderInputFields["COLUMN_NAME"] = "name";
|
|
71
|
+
UpdateAdditionalInformationItemOrderInputFields["COLUMN_VALUE"] = "value";
|
|
72
|
+
})(UpdateAdditionalInformationItemOrderInputFields = exports.UpdateAdditionalInformationItemOrderInputFields || (exports.UpdateAdditionalInformationItemOrderInputFields = {}));
|
|
68
73
|
var UpdateAdditionalInformationOrderInputFields;
|
|
69
74
|
(function (UpdateAdditionalInformationOrderInputFields) {
|
|
70
|
-
UpdateAdditionalInformationOrderInputFields["
|
|
71
|
-
UpdateAdditionalInformationOrderInputFields["COLUMN_VALUE"] = "value";
|
|
75
|
+
UpdateAdditionalInformationOrderInputFields["COLUMN_DATA"] = "data";
|
|
72
76
|
})(UpdateAdditionalInformationOrderInputFields = exports.UpdateAdditionalInformationOrderInputFields || (exports.UpdateAdditionalInformationOrderInputFields = {}));
|
|
73
77
|
class OrdersClient extends abstractRestfulClient_1.AbstractRestfulClient {
|
|
74
78
|
constructor() {
|
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-5",
|
|
8
8
|
"description": "Node.js client for ArrowSphere's public API",
|
|
9
9
|
"main": "build/index.js",
|
|
10
10
|
"types": "build/index.d.ts",
|