@arrowsphere/api-client 3.112.0 → 3.114.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 +12 -1
- package/build/abstractRestfulClient.d.ts +20 -1
- package/build/abstractRestfulClient.js +50 -2
- package/build/customers/customersClient.d.ts +1 -0
- package/build/customers/customersClient.js +4 -0
- package/build/customers/entities/customers/customer.d.ts +59 -1
- package/build/customers/entities/customers/customer.js +119 -3
- package/build/licenses/licensesClient.js +7 -7
- package/build/licenses/types/bulkArguments.d.ts +4 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.114.0] - 2024.04.24
|
|
7
|
+
|
|
8
|
+
### Added
|
|
9
|
+
- [customer] add customer by Ref Api Call
|
|
10
|
+
|
|
11
|
+
## [3.113.0] - 2024.04.24
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
- [License Bulk actions] allow REST clients to post a file with form/multipart
|
|
15
|
+
- [License Bulk actions] send file to upload changes
|
|
16
|
+
|
|
6
17
|
## [3.112.0] - 2024.04.24
|
|
7
18
|
|
|
8
19
|
### Added
|
|
@@ -67,7 +78,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
67
78
|
- [customer/contact] add organization object in customer contact payload
|
|
68
79
|
|
|
69
80
|
### Updated
|
|
70
|
-
- Add
|
|
81
|
+
- Add some configs for IDE
|
|
71
82
|
|
|
72
83
|
## [3.101.0] - 2024.03.19
|
|
73
84
|
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
1
2
|
import { AxiosInstance, AxiosResponse } from 'axios';
|
|
2
3
|
import { AbstractHttpClient, Headers } from './AbstractHttpClient';
|
|
4
|
+
import { File } from 'node:buffer';
|
|
3
5
|
/**
|
|
4
6
|
* Lists of available query parameters for the API call
|
|
5
7
|
*/
|
|
@@ -26,7 +28,15 @@ export declare type ParametersWithPaginationType = (Parameters & {
|
|
|
26
28
|
[ParameterKeys.PER_PAGE_CAMEL]?: number;
|
|
27
29
|
});
|
|
28
30
|
export declare type Parameters = Record<string, string | string[] | number | number[] | boolean | null | undefined>;
|
|
31
|
+
export declare enum FileUploadKeys {
|
|
32
|
+
Fields = "fields",
|
|
33
|
+
File = "file"
|
|
34
|
+
}
|
|
29
35
|
export declare type Payload = Record<string, unknown> | Array<Payload>;
|
|
36
|
+
export interface PayloadWithFile {
|
|
37
|
+
[FileUploadKeys.Fields]?: Record<string, unknown>;
|
|
38
|
+
[FileUploadKeys.File]?: File;
|
|
39
|
+
}
|
|
30
40
|
export declare type Options = {
|
|
31
41
|
isAdmin?: boolean;
|
|
32
42
|
returnAxiosData?: boolean;
|
|
@@ -145,7 +155,7 @@ export declare abstract class AbstractRestfulClient extends AbstractHttpClient {
|
|
|
145
155
|
*/
|
|
146
156
|
private prepareHeaders;
|
|
147
157
|
/**
|
|
148
|
-
* Sends a POST request and returns the response
|
|
158
|
+
* Sends a POST request including file with header form/multipart and returns the response
|
|
149
159
|
* @returns Promise\<AxiosResponse['data']\>
|
|
150
160
|
* @param payload - Payload to be sent in the POST body
|
|
151
161
|
* @param parameters - Query parameters to be sent in the request
|
|
@@ -153,6 +163,15 @@ export declare abstract class AbstractRestfulClient extends AbstractHttpClient {
|
|
|
153
163
|
* @param options - Options to send
|
|
154
164
|
*/
|
|
155
165
|
protected post(payload?: Payload, parameters?: Parameters, headers?: Headers, options?: Options): Promise<AxiosResponse['data']>;
|
|
166
|
+
/**
|
|
167
|
+
* Sends a POST request and returns the response
|
|
168
|
+
* @returns Promise\<AxiosResponse['data']\>
|
|
169
|
+
* @param payload - Payload to be sent in the POST body
|
|
170
|
+
* @param parameters - Query parameters to be sent in the request
|
|
171
|
+
* @param headers - Headers to be sent in the request
|
|
172
|
+
* @param options - Options to send
|
|
173
|
+
*/
|
|
174
|
+
protected postFile(payload: PayloadWithFile, parameters?: Parameters, headers?: Headers, options?: Options): Promise<AxiosResponse['data']>;
|
|
156
175
|
/**
|
|
157
176
|
* Sends a PUT request
|
|
158
177
|
* @param payload - Payload to be sent in the POST body
|
|
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.AbstractRestfulClient = exports.ExtraInformationFields = exports.ParameterKeys = void 0;
|
|
6
|
+
exports.AbstractRestfulClient = exports.FileUploadKeys = exports.ExtraInformationFields = exports.ParameterKeys = void 0;
|
|
7
7
|
const exception_1 = require("./exception");
|
|
8
8
|
const querystring_1 = __importDefault(require("querystring"));
|
|
9
9
|
const path_1 = __importDefault(require("path"));
|
|
@@ -29,6 +29,11 @@ var ExtraInformationFields;
|
|
|
29
29
|
(function (ExtraInformationFields) {
|
|
30
30
|
ExtraInformationFields["COLUMN_EXTRA_INFORMATION"] = "extraInformation";
|
|
31
31
|
})(ExtraInformationFields = exports.ExtraInformationFields || (exports.ExtraInformationFields = {}));
|
|
32
|
+
var FileUploadKeys;
|
|
33
|
+
(function (FileUploadKeys) {
|
|
34
|
+
FileUploadKeys["Fields"] = "fields";
|
|
35
|
+
FileUploadKeys["File"] = "file";
|
|
36
|
+
})(FileUploadKeys = exports.FileUploadKeys || (exports.FileUploadKeys = {}));
|
|
32
37
|
class AbstractRestfulClient extends AbstractHttpClient_1.AbstractHttpClient {
|
|
33
38
|
/**
|
|
34
39
|
* AbstractClient constructor.
|
|
@@ -161,7 +166,7 @@ class AbstractRestfulClient extends AbstractHttpClient_1.AbstractHttpClient {
|
|
|
161
166
|
};
|
|
162
167
|
}
|
|
163
168
|
/**
|
|
164
|
-
* Sends a POST request and returns the response
|
|
169
|
+
* Sends a POST request including file with header form/multipart and returns the response
|
|
165
170
|
* @returns Promise\<AxiosResponse['data']\>
|
|
166
171
|
* @param payload - Payload to be sent in the POST body
|
|
167
172
|
* @param parameters - Query parameters to be sent in the request
|
|
@@ -191,6 +196,49 @@ class AbstractRestfulClient extends AbstractHttpClient_1.AbstractHttpClient {
|
|
|
191
196
|
throw error;
|
|
192
197
|
}
|
|
193
198
|
}
|
|
199
|
+
/**
|
|
200
|
+
* Sends a POST request and returns the response
|
|
201
|
+
* @returns Promise\<AxiosResponse['data']\>
|
|
202
|
+
* @param payload - Payload to be sent in the POST body
|
|
203
|
+
* @param parameters - Query parameters to be sent in the request
|
|
204
|
+
* @param headers - Headers to be sent in the request
|
|
205
|
+
* @param options - Options to send
|
|
206
|
+
*/
|
|
207
|
+
async postFile(payload, parameters = {}, headers = {}, options = {}) {
|
|
208
|
+
var _a;
|
|
209
|
+
if (!payload[FileUploadKeys.File]) {
|
|
210
|
+
throw new Error('File upload required');
|
|
211
|
+
}
|
|
212
|
+
// will force axios to append header 'multipart/form-data' and will attach a boundary automatically
|
|
213
|
+
headers['Content-Type'] = undefined;
|
|
214
|
+
const url = this.generateUrl(parameters, options);
|
|
215
|
+
const config = {
|
|
216
|
+
headers: this.prepareHeaders(headers),
|
|
217
|
+
};
|
|
218
|
+
const formData = new FormData();
|
|
219
|
+
formData.append(FileUploadKeys.File, payload[FileUploadKeys.File]);
|
|
220
|
+
for (const [key, value] of Object.entries((_a = payload[FileUploadKeys.Fields]) !== null && _a !== void 0 ? _a : {})) {
|
|
221
|
+
console.log(`${key}: ${value}`);
|
|
222
|
+
formData.set(key, value);
|
|
223
|
+
}
|
|
224
|
+
try {
|
|
225
|
+
const response = await this.client.post(url, formData, config);
|
|
226
|
+
return this.getResponse(response, options);
|
|
227
|
+
}
|
|
228
|
+
catch (error) {
|
|
229
|
+
if (error instanceof exception_1.PublicApiClientException) {
|
|
230
|
+
const { mustRetry } = await this.handleError(error);
|
|
231
|
+
if (mustRetry) {
|
|
232
|
+
const config = {
|
|
233
|
+
headers: this.prepareHeaders(headers),
|
|
234
|
+
};
|
|
235
|
+
const response = await this.client.post(url, payload, config);
|
|
236
|
+
return this.getResponse(response, options);
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
throw error;
|
|
240
|
+
}
|
|
241
|
+
}
|
|
194
242
|
/**
|
|
195
243
|
* Sends a PUT request
|
|
196
244
|
* @param payload - Payload to be sent in the POST body
|
|
@@ -89,6 +89,7 @@ export declare class CustomersClient extends AbstractRestfulClient {
|
|
|
89
89
|
*/
|
|
90
90
|
protected basePath: string;
|
|
91
91
|
getCustomers(parameters?: Parameters): Promise<GetResult<DataCustomers>>;
|
|
92
|
+
getCustomerByRef(customerRef: string, parameters?: Parameters): Promise<GetResult<DataCustomers>>;
|
|
92
93
|
getCustomerOrders(customerRef: string, perPage?: number, page?: number, parameters?: Parameters): Promise<GetResult<DataListOrders>>;
|
|
93
94
|
getCustomerInvitation(codeInvitation: string, parameters?: Parameters): Promise<GetResult<DataInvitation>>;
|
|
94
95
|
getCustomerContactList(customerReference: string, parameters?: Parameters): Promise<GetResult<CustomerContactList>>;
|
|
@@ -38,6 +38,10 @@ class CustomersClient extends abstractRestfulClient_1.AbstractRestfulClient {
|
|
|
38
38
|
async getCustomers(parameters = {}) {
|
|
39
39
|
return new getResult_1.GetResult(dataCustomers_1.DataCustomers, await this.get(parameters));
|
|
40
40
|
}
|
|
41
|
+
async getCustomerByRef(customerRef, parameters = {}) {
|
|
42
|
+
this.path = `/${customerRef}`;
|
|
43
|
+
return await this.getCustomers(parameters);
|
|
44
|
+
}
|
|
41
45
|
async getCustomerOrders(customerRef, perPage = 25, page = 1, parameters = {}) {
|
|
42
46
|
this.setPerPage(perPage);
|
|
43
47
|
this.setPage(page);
|
|
@@ -2,8 +2,10 @@ import { AbstractEntity } from '../../../abstractEntity';
|
|
|
2
2
|
import { Contact, ContactType } from './contact/contact';
|
|
3
3
|
import { Details, DetailsType } from './details/details';
|
|
4
4
|
import { AdditionalExtraInformation, AdditionalExtraInformationType } from '../../../shared';
|
|
5
|
+
import { OrganizationUnit, OrganizationUnitType } from '../../../organisationUnit';
|
|
5
6
|
export declare enum CustomerFields {
|
|
6
7
|
COLUMN_REFERENCE = "Reference",
|
|
8
|
+
COLUMN_WORKGROUP_CODE = "WorkgroupCode",
|
|
7
9
|
COLUMN_COMPANY_NAME = "CompanyName",
|
|
8
10
|
COLUMN_PARTNER_COMPANY_ID = "PartnerCompanyId",
|
|
9
11
|
COLUMN_ADDRESS_LINE_1 = "AddressLine1",
|
|
@@ -18,15 +20,39 @@ export declare enum CustomerFields {
|
|
|
18
20
|
COLUMN_HEADCOUNT = "Headcount",
|
|
19
21
|
COLUMN_TAX_NUMBER = "TaxNumber",
|
|
20
22
|
COLUMN_REF = "Ref",
|
|
23
|
+
COLUMN_REGISTRATION_NUMBER = "RegistrationNumber",
|
|
21
24
|
COLUMN_BILLING_ID = "BillingId",
|
|
25
|
+
COLUMN_BILLING_ADDRESS_1 = "BillingAddress1",
|
|
26
|
+
COLUMN_BILLING_ADDRESS_2 = "BillingAddress2",
|
|
27
|
+
COLUMN_BILLING_CITY = "BillingCity",
|
|
28
|
+
COLUMN_BILLING_STATE = "BillingState",
|
|
29
|
+
COLUMN_BILLING_ZIP_CODE = "BillingZipCode",
|
|
30
|
+
COLUMN_BILLING_COUNTRY_CODE = "BillingCountryCode",
|
|
31
|
+
COLUMN_ADMIN_NOTE = "AdminNote",
|
|
32
|
+
COLUMN_COMPANY_ISR = "Isr",
|
|
33
|
+
COLUMN_COMPANY_FSR = "Fsr",
|
|
34
|
+
COLUMN_PO_NUMBER_MANDATORY = "PoNumberMandatory",
|
|
35
|
+
COLUMN_TYPE = "Type",
|
|
22
36
|
COLUMN_INTERNAL_REFERENCE = "InternalReference",
|
|
23
37
|
COLUMN_CONTACT = "Contact",
|
|
24
38
|
COLUMN_DELETED_AT = "DeletedAt",
|
|
25
39
|
COLUMN_DETAILS = "Details",
|
|
26
|
-
COLUMN_EXTRA_INFORMATION = "extraInformation"
|
|
40
|
+
COLUMN_EXTRA_INFORMATION = "extraInformation",
|
|
41
|
+
COLUMN_ORGANISATION_UNIT = "OrganisationUnit",
|
|
42
|
+
COLUMN_RESELLER = "Reseller",
|
|
43
|
+
COLUMN_PARTNER_TAGS = "PartnerTags",
|
|
44
|
+
COLUMN_PARTNER_TAGS_LABEL = "label"
|
|
27
45
|
}
|
|
46
|
+
declare type CompanyReseller = {
|
|
47
|
+
[CustomerFields.COLUMN_REF]: string;
|
|
48
|
+
[CustomerFields.COLUMN_COMPANY_NAME]: string;
|
|
49
|
+
};
|
|
50
|
+
declare type PartnerTags = {
|
|
51
|
+
[CustomerFields.COLUMN_PARTNER_TAGS_LABEL]: string;
|
|
52
|
+
};
|
|
28
53
|
export declare type CustomerType = {
|
|
29
54
|
[CustomerFields.COLUMN_REFERENCE]: string;
|
|
55
|
+
[CustomerFields.COLUMN_WORKGROUP_CODE]: string;
|
|
30
56
|
[CustomerFields.COLUMN_COMPANY_NAME]: string;
|
|
31
57
|
[CustomerFields.COLUMN_PARTNER_COMPANY_ID]: string;
|
|
32
58
|
[CustomerFields.COLUMN_ADDRESS_LINE_1]?: string;
|
|
@@ -41,17 +67,33 @@ export declare type CustomerType = {
|
|
|
41
67
|
[CustomerFields.COLUMN_HEADCOUNT]: number;
|
|
42
68
|
[CustomerFields.COLUMN_TAX_NUMBER]: string;
|
|
43
69
|
[CustomerFields.COLUMN_REF]: string;
|
|
70
|
+
[CustomerFields.COLUMN_REGISTRATION_NUMBER]: string;
|
|
44
71
|
[CustomerFields.COLUMN_BILLING_ID]: string;
|
|
72
|
+
[CustomerFields.COLUMN_BILLING_ADDRESS_1]?: string;
|
|
73
|
+
[CustomerFields.COLUMN_BILLING_ADDRESS_2]?: string;
|
|
74
|
+
[CustomerFields.COLUMN_BILLING_CITY]?: string;
|
|
75
|
+
[CustomerFields.COLUMN_BILLING_STATE]?: string;
|
|
76
|
+
[CustomerFields.COLUMN_BILLING_ZIP_CODE]?: string;
|
|
77
|
+
[CustomerFields.COLUMN_BILLING_COUNTRY_CODE]?: string;
|
|
78
|
+
[CustomerFields.COLUMN_ADMIN_NOTE]?: string;
|
|
79
|
+
[CustomerFields.COLUMN_COMPANY_ISR]?: string;
|
|
80
|
+
[CustomerFields.COLUMN_COMPANY_FSR]?: string;
|
|
81
|
+
[CustomerFields.COLUMN_PO_NUMBER_MANDATORY]?: string;
|
|
82
|
+
[CustomerFields.COLUMN_TYPE]: string;
|
|
45
83
|
[CustomerFields.COLUMN_INTERNAL_REFERENCE]: string;
|
|
46
84
|
[CustomerFields.COLUMN_CONTACT]: ContactType;
|
|
47
85
|
[CustomerFields.COLUMN_DELETED_AT]?: string | null;
|
|
48
86
|
[CustomerFields.COLUMN_DETAILS]: DetailsType;
|
|
49
87
|
[CustomerFields.COLUMN_EXTRA_INFORMATION]?: AdditionalExtraInformationType;
|
|
88
|
+
[CustomerFields.COLUMN_ORGANISATION_UNIT]?: OrganizationUnitType;
|
|
89
|
+
[CustomerFields.COLUMN_RESELLER]?: CompanyReseller;
|
|
90
|
+
[CustomerFields.COLUMN_PARTNER_TAGS]?: PartnerTags[];
|
|
50
91
|
};
|
|
51
92
|
export declare class Customer extends AbstractEntity<CustomerType> {
|
|
52
93
|
#private;
|
|
53
94
|
constructor(getCustomersDataInput: CustomerType);
|
|
54
95
|
get Reference(): string;
|
|
96
|
+
get WorkgroupCode(): string;
|
|
55
97
|
get CompanyName(): string;
|
|
56
98
|
get PartnerCompanyId(): string;
|
|
57
99
|
get AddressLine1(): string | undefined;
|
|
@@ -66,11 +108,27 @@ export declare class Customer extends AbstractEntity<CustomerType> {
|
|
|
66
108
|
get Headcount(): number;
|
|
67
109
|
get TaxNumber(): string;
|
|
68
110
|
get Ref(): string;
|
|
111
|
+
get RegistrationNumber(): string;
|
|
69
112
|
get BillingId(): string;
|
|
113
|
+
get BillingAddress1(): string | undefined;
|
|
114
|
+
get BillingAddress2(): string | undefined;
|
|
115
|
+
get BillingCity(): string | undefined;
|
|
116
|
+
get BillingState(): string | undefined;
|
|
117
|
+
get BillingZipCode(): string | undefined;
|
|
118
|
+
get BillingCountryCode(): string | undefined;
|
|
119
|
+
get AdminNote(): string | undefined;
|
|
120
|
+
get Isr(): string | undefined;
|
|
121
|
+
get Fsr(): string | undefined;
|
|
122
|
+
get PoNumberMandatory(): string | undefined;
|
|
123
|
+
get Type(): string;
|
|
70
124
|
get InternalReference(): string;
|
|
71
125
|
get Contact(): Contact;
|
|
72
126
|
get Details(): Details;
|
|
73
127
|
get DeletedAt(): string | null | undefined;
|
|
74
128
|
get ExtraInformation(): AdditionalExtraInformation | undefined;
|
|
129
|
+
get OrganisationUnit(): OrganizationUnit | undefined;
|
|
130
|
+
get Reseller(): CompanyReseller | undefined;
|
|
131
|
+
get PartnerTags(): PartnerTags[] | undefined;
|
|
75
132
|
toJSON(): CustomerType;
|
|
76
133
|
}
|
|
134
|
+
export {};
|
|
@@ -10,16 +10,18 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
|
|
|
10
10
|
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
11
11
|
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
12
12
|
};
|
|
13
|
-
var _Customer_reference, _Customer_companyName, _Customer_partnerCompanyId, _Customer_addressLine1, _Customer_addressLine2, _Customer_zip, _Customer_city, _Customer_countryCode, _Customer_state, _Customer_receptionPhone, _Customer_websiteUrl, _Customer_emailContact, _Customer_headcount, _Customer_taxNumber, _Customer_ref, _Customer_billingId, _Customer_internalReference, _Customer_contact, _Customer_deletedAt, _Customer_details, _Customer_extraInformation;
|
|
13
|
+
var _Customer_reference, _Customer_workgroupCode, _Customer_companyName, _Customer_partnerCompanyId, _Customer_addressLine1, _Customer_addressLine2, _Customer_zip, _Customer_city, _Customer_countryCode, _Customer_state, _Customer_receptionPhone, _Customer_websiteUrl, _Customer_emailContact, _Customer_headcount, _Customer_taxNumber, _Customer_ref, _Customer_registrationNumber, _Customer_billingId, _Customer_billingAddress1, _Customer_billingAddress2, _Customer_billingCity, _Customer_billingState, _Customer_billingZipCode, _Customer_billingCountryCode, _Customer_adminNote, _Customer_isr, _Customer_fsr, _Customer_poNumberMandatory, _Customer_type, _Customer_internalReference, _Customer_contact, _Customer_deletedAt, _Customer_details, _Customer_extraInformation, _Customer_organisationUnit, _Customer_reseller, _Customer_partnerTags;
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
15
|
exports.Customer = exports.CustomerFields = void 0;
|
|
16
16
|
const abstractEntity_1 = require("../../../abstractEntity");
|
|
17
17
|
const contact_1 = require("./contact/contact");
|
|
18
18
|
const details_1 = require("./details/details");
|
|
19
19
|
const shared_1 = require("../../../shared");
|
|
20
|
+
const organisationUnit_1 = require("../../../organisationUnit");
|
|
20
21
|
var CustomerFields;
|
|
21
22
|
(function (CustomerFields) {
|
|
22
23
|
CustomerFields["COLUMN_REFERENCE"] = "Reference";
|
|
24
|
+
CustomerFields["COLUMN_WORKGROUP_CODE"] = "WorkgroupCode";
|
|
23
25
|
CustomerFields["COLUMN_COMPANY_NAME"] = "CompanyName";
|
|
24
26
|
CustomerFields["COLUMN_PARTNER_COMPANY_ID"] = "PartnerCompanyId";
|
|
25
27
|
CustomerFields["COLUMN_ADDRESS_LINE_1"] = "AddressLine1";
|
|
@@ -34,17 +36,34 @@ var CustomerFields;
|
|
|
34
36
|
CustomerFields["COLUMN_HEADCOUNT"] = "Headcount";
|
|
35
37
|
CustomerFields["COLUMN_TAX_NUMBER"] = "TaxNumber";
|
|
36
38
|
CustomerFields["COLUMN_REF"] = "Ref";
|
|
39
|
+
CustomerFields["COLUMN_REGISTRATION_NUMBER"] = "RegistrationNumber";
|
|
37
40
|
CustomerFields["COLUMN_BILLING_ID"] = "BillingId";
|
|
41
|
+
CustomerFields["COLUMN_BILLING_ADDRESS_1"] = "BillingAddress1";
|
|
42
|
+
CustomerFields["COLUMN_BILLING_ADDRESS_2"] = "BillingAddress2";
|
|
43
|
+
CustomerFields["COLUMN_BILLING_CITY"] = "BillingCity";
|
|
44
|
+
CustomerFields["COLUMN_BILLING_STATE"] = "BillingState";
|
|
45
|
+
CustomerFields["COLUMN_BILLING_ZIP_CODE"] = "BillingZipCode";
|
|
46
|
+
CustomerFields["COLUMN_BILLING_COUNTRY_CODE"] = "BillingCountryCode";
|
|
47
|
+
CustomerFields["COLUMN_ADMIN_NOTE"] = "AdminNote";
|
|
48
|
+
CustomerFields["COLUMN_COMPANY_ISR"] = "Isr";
|
|
49
|
+
CustomerFields["COLUMN_COMPANY_FSR"] = "Fsr";
|
|
50
|
+
CustomerFields["COLUMN_PO_NUMBER_MANDATORY"] = "PoNumberMandatory";
|
|
51
|
+
CustomerFields["COLUMN_TYPE"] = "Type";
|
|
38
52
|
CustomerFields["COLUMN_INTERNAL_REFERENCE"] = "InternalReference";
|
|
39
53
|
CustomerFields["COLUMN_CONTACT"] = "Contact";
|
|
40
54
|
CustomerFields["COLUMN_DELETED_AT"] = "DeletedAt";
|
|
41
55
|
CustomerFields["COLUMN_DETAILS"] = "Details";
|
|
42
56
|
CustomerFields["COLUMN_EXTRA_INFORMATION"] = "extraInformation";
|
|
57
|
+
CustomerFields["COLUMN_ORGANISATION_UNIT"] = "OrganisationUnit";
|
|
58
|
+
CustomerFields["COLUMN_RESELLER"] = "Reseller";
|
|
59
|
+
CustomerFields["COLUMN_PARTNER_TAGS"] = "PartnerTags";
|
|
60
|
+
CustomerFields["COLUMN_PARTNER_TAGS_LABEL"] = "label";
|
|
43
61
|
})(CustomerFields = exports.CustomerFields || (exports.CustomerFields = {}));
|
|
44
62
|
class Customer extends abstractEntity_1.AbstractEntity {
|
|
45
63
|
constructor(getCustomersDataInput) {
|
|
46
64
|
super(getCustomersDataInput);
|
|
47
65
|
_Customer_reference.set(this, void 0);
|
|
66
|
+
_Customer_workgroupCode.set(this, void 0);
|
|
48
67
|
_Customer_companyName.set(this, void 0);
|
|
49
68
|
_Customer_partnerCompanyId.set(this, void 0);
|
|
50
69
|
_Customer_addressLine1.set(this, void 0);
|
|
@@ -59,13 +78,29 @@ class Customer extends abstractEntity_1.AbstractEntity {
|
|
|
59
78
|
_Customer_headcount.set(this, void 0);
|
|
60
79
|
_Customer_taxNumber.set(this, void 0);
|
|
61
80
|
_Customer_ref.set(this, void 0);
|
|
81
|
+
_Customer_registrationNumber.set(this, void 0);
|
|
62
82
|
_Customer_billingId.set(this, void 0);
|
|
83
|
+
_Customer_billingAddress1.set(this, void 0);
|
|
84
|
+
_Customer_billingAddress2.set(this, void 0);
|
|
85
|
+
_Customer_billingCity.set(this, void 0);
|
|
86
|
+
_Customer_billingState.set(this, void 0);
|
|
87
|
+
_Customer_billingZipCode.set(this, void 0);
|
|
88
|
+
_Customer_billingCountryCode.set(this, void 0);
|
|
89
|
+
_Customer_adminNote.set(this, void 0);
|
|
90
|
+
_Customer_isr.set(this, void 0);
|
|
91
|
+
_Customer_fsr.set(this, void 0);
|
|
92
|
+
_Customer_poNumberMandatory.set(this, void 0);
|
|
93
|
+
_Customer_type.set(this, void 0);
|
|
63
94
|
_Customer_internalReference.set(this, void 0);
|
|
64
95
|
_Customer_contact.set(this, void 0);
|
|
65
96
|
_Customer_deletedAt.set(this, void 0);
|
|
66
97
|
_Customer_details.set(this, void 0);
|
|
67
98
|
_Customer_extraInformation.set(this, void 0);
|
|
99
|
+
_Customer_organisationUnit.set(this, void 0);
|
|
100
|
+
_Customer_reseller.set(this, void 0);
|
|
101
|
+
_Customer_partnerTags.set(this, void 0);
|
|
68
102
|
__classPrivateFieldSet(this, _Customer_reference, getCustomersDataInput[CustomerFields.COLUMN_REFERENCE], "f");
|
|
103
|
+
__classPrivateFieldSet(this, _Customer_workgroupCode, getCustomersDataInput[CustomerFields.COLUMN_WORKGROUP_CODE], "f");
|
|
69
104
|
__classPrivateFieldSet(this, _Customer_companyName, getCustomersDataInput[CustomerFields.COLUMN_COMPANY_NAME], "f");
|
|
70
105
|
__classPrivateFieldSet(this, _Customer_partnerCompanyId, getCustomersDataInput[CustomerFields.COLUMN_PARTNER_COMPANY_ID], "f");
|
|
71
106
|
__classPrivateFieldSet(this, _Customer_addressLine1, getCustomersDataInput[CustomerFields.COLUMN_ADDRESS_LINE_1], "f");
|
|
@@ -80,7 +115,19 @@ class Customer extends abstractEntity_1.AbstractEntity {
|
|
|
80
115
|
__classPrivateFieldSet(this, _Customer_headcount, getCustomersDataInput[CustomerFields.COLUMN_HEADCOUNT], "f");
|
|
81
116
|
__classPrivateFieldSet(this, _Customer_taxNumber, getCustomersDataInput[CustomerFields.COLUMN_TAX_NUMBER], "f");
|
|
82
117
|
__classPrivateFieldSet(this, _Customer_ref, getCustomersDataInput[CustomerFields.COLUMN_REF], "f");
|
|
118
|
+
__classPrivateFieldSet(this, _Customer_registrationNumber, getCustomersDataInput[CustomerFields.COLUMN_REGISTRATION_NUMBER], "f");
|
|
83
119
|
__classPrivateFieldSet(this, _Customer_billingId, getCustomersDataInput[CustomerFields.COLUMN_BILLING_ID], "f");
|
|
120
|
+
__classPrivateFieldSet(this, _Customer_billingAddress1, getCustomersDataInput[CustomerFields.COLUMN_BILLING_ADDRESS_1], "f");
|
|
121
|
+
__classPrivateFieldSet(this, _Customer_billingAddress2, getCustomersDataInput[CustomerFields.COLUMN_BILLING_ADDRESS_2], "f");
|
|
122
|
+
__classPrivateFieldSet(this, _Customer_billingCity, getCustomersDataInput[CustomerFields.COLUMN_BILLING_CITY], "f");
|
|
123
|
+
__classPrivateFieldSet(this, _Customer_billingState, getCustomersDataInput[CustomerFields.COLUMN_BILLING_STATE], "f");
|
|
124
|
+
__classPrivateFieldSet(this, _Customer_billingZipCode, getCustomersDataInput[CustomerFields.COLUMN_BILLING_ZIP_CODE], "f");
|
|
125
|
+
__classPrivateFieldSet(this, _Customer_billingCountryCode, getCustomersDataInput[CustomerFields.COLUMN_BILLING_COUNTRY_CODE], "f");
|
|
126
|
+
__classPrivateFieldSet(this, _Customer_adminNote, getCustomersDataInput[CustomerFields.COLUMN_ADMIN_NOTE], "f");
|
|
127
|
+
__classPrivateFieldSet(this, _Customer_isr, getCustomersDataInput[CustomerFields.COLUMN_COMPANY_ISR], "f");
|
|
128
|
+
__classPrivateFieldSet(this, _Customer_fsr, getCustomersDataInput[CustomerFields.COLUMN_COMPANY_FSR], "f");
|
|
129
|
+
__classPrivateFieldSet(this, _Customer_poNumberMandatory, getCustomersDataInput[CustomerFields.COLUMN_PO_NUMBER_MANDATORY], "f");
|
|
130
|
+
__classPrivateFieldSet(this, _Customer_type, getCustomersDataInput[CustomerFields.COLUMN_TYPE], "f");
|
|
84
131
|
__classPrivateFieldSet(this, _Customer_internalReference, getCustomersDataInput[CustomerFields.COLUMN_INTERNAL_REFERENCE], "f");
|
|
85
132
|
__classPrivateFieldSet(this, _Customer_contact, new contact_1.Contact(getCustomersDataInput[CustomerFields.COLUMN_CONTACT]), "f");
|
|
86
133
|
__classPrivateFieldSet(this, _Customer_deletedAt, getCustomersDataInput[CustomerFields.COLUMN_DELETED_AT], "f");
|
|
@@ -88,10 +135,18 @@ class Customer extends abstractEntity_1.AbstractEntity {
|
|
|
88
135
|
__classPrivateFieldSet(this, _Customer_extraInformation, getCustomersDataInput[CustomerFields.COLUMN_EXTRA_INFORMATION]
|
|
89
136
|
? new shared_1.AdditionalExtraInformation(getCustomersDataInput[CustomerFields.COLUMN_EXTRA_INFORMATION])
|
|
90
137
|
: undefined, "f");
|
|
138
|
+
__classPrivateFieldSet(this, _Customer_organisationUnit, getCustomersDataInput[CustomerFields.COLUMN_ORGANISATION_UNIT]
|
|
139
|
+
? new organisationUnit_1.OrganizationUnit(getCustomersDataInput[CustomerFields.COLUMN_ORGANISATION_UNIT])
|
|
140
|
+
: undefined, "f");
|
|
141
|
+
__classPrivateFieldSet(this, _Customer_reseller, getCustomersDataInput[CustomerFields.COLUMN_RESELLER], "f");
|
|
142
|
+
__classPrivateFieldSet(this, _Customer_partnerTags, getCustomersDataInput[CustomerFields.COLUMN_PARTNER_TAGS], "f");
|
|
91
143
|
}
|
|
92
144
|
get Reference() {
|
|
93
145
|
return __classPrivateFieldGet(this, _Customer_reference, "f");
|
|
94
146
|
}
|
|
147
|
+
get WorkgroupCode() {
|
|
148
|
+
return __classPrivateFieldGet(this, _Customer_workgroupCode, "f");
|
|
149
|
+
}
|
|
95
150
|
get CompanyName() {
|
|
96
151
|
return __classPrivateFieldGet(this, _Customer_companyName, "f");
|
|
97
152
|
}
|
|
@@ -134,9 +189,45 @@ class Customer extends abstractEntity_1.AbstractEntity {
|
|
|
134
189
|
get Ref() {
|
|
135
190
|
return __classPrivateFieldGet(this, _Customer_ref, "f");
|
|
136
191
|
}
|
|
192
|
+
get RegistrationNumber() {
|
|
193
|
+
return __classPrivateFieldGet(this, _Customer_registrationNumber, "f");
|
|
194
|
+
}
|
|
137
195
|
get BillingId() {
|
|
138
196
|
return __classPrivateFieldGet(this, _Customer_billingId, "f");
|
|
139
197
|
}
|
|
198
|
+
get BillingAddress1() {
|
|
199
|
+
return __classPrivateFieldGet(this, _Customer_billingAddress1, "f");
|
|
200
|
+
}
|
|
201
|
+
get BillingAddress2() {
|
|
202
|
+
return __classPrivateFieldGet(this, _Customer_billingAddress2, "f");
|
|
203
|
+
}
|
|
204
|
+
get BillingCity() {
|
|
205
|
+
return __classPrivateFieldGet(this, _Customer_billingCity, "f");
|
|
206
|
+
}
|
|
207
|
+
get BillingState() {
|
|
208
|
+
return __classPrivateFieldGet(this, _Customer_billingState, "f");
|
|
209
|
+
}
|
|
210
|
+
get BillingZipCode() {
|
|
211
|
+
return __classPrivateFieldGet(this, _Customer_billingZipCode, "f");
|
|
212
|
+
}
|
|
213
|
+
get BillingCountryCode() {
|
|
214
|
+
return __classPrivateFieldGet(this, _Customer_billingCountryCode, "f");
|
|
215
|
+
}
|
|
216
|
+
get AdminNote() {
|
|
217
|
+
return __classPrivateFieldGet(this, _Customer_adminNote, "f");
|
|
218
|
+
}
|
|
219
|
+
get Isr() {
|
|
220
|
+
return __classPrivateFieldGet(this, _Customer_isr, "f");
|
|
221
|
+
}
|
|
222
|
+
get Fsr() {
|
|
223
|
+
return __classPrivateFieldGet(this, _Customer_fsr, "f");
|
|
224
|
+
}
|
|
225
|
+
get PoNumberMandatory() {
|
|
226
|
+
return __classPrivateFieldGet(this, _Customer_poNumberMandatory, "f");
|
|
227
|
+
}
|
|
228
|
+
get Type() {
|
|
229
|
+
return __classPrivateFieldGet(this, _Customer_type, "f");
|
|
230
|
+
}
|
|
140
231
|
get InternalReference() {
|
|
141
232
|
return __classPrivateFieldGet(this, _Customer_internalReference, "f");
|
|
142
233
|
}
|
|
@@ -152,10 +243,20 @@ class Customer extends abstractEntity_1.AbstractEntity {
|
|
|
152
243
|
get ExtraInformation() {
|
|
153
244
|
return __classPrivateFieldGet(this, _Customer_extraInformation, "f");
|
|
154
245
|
}
|
|
246
|
+
get OrganisationUnit() {
|
|
247
|
+
return __classPrivateFieldGet(this, _Customer_organisationUnit, "f");
|
|
248
|
+
}
|
|
249
|
+
get Reseller() {
|
|
250
|
+
return __classPrivateFieldGet(this, _Customer_reseller, "f");
|
|
251
|
+
}
|
|
252
|
+
get PartnerTags() {
|
|
253
|
+
return __classPrivateFieldGet(this, _Customer_partnerTags, "f");
|
|
254
|
+
}
|
|
155
255
|
toJSON() {
|
|
156
|
-
var _a;
|
|
256
|
+
var _a, _b;
|
|
157
257
|
return {
|
|
158
258
|
[CustomerFields.COLUMN_REFERENCE]: this.Reference,
|
|
259
|
+
[CustomerFields.COLUMN_WORKGROUP_CODE]: this.WorkgroupCode,
|
|
159
260
|
[CustomerFields.COLUMN_COMPANY_NAME]: this.CompanyName,
|
|
160
261
|
[CustomerFields.COLUMN_PARTNER_COMPANY_ID]: this.PartnerCompanyId,
|
|
161
262
|
[CustomerFields.COLUMN_ADDRESS_LINE_1]: this.AddressLine1,
|
|
@@ -170,15 +271,30 @@ class Customer extends abstractEntity_1.AbstractEntity {
|
|
|
170
271
|
[CustomerFields.COLUMN_HEADCOUNT]: this.Headcount,
|
|
171
272
|
[CustomerFields.COLUMN_TAX_NUMBER]: this.TaxNumber,
|
|
172
273
|
[CustomerFields.COLUMN_REF]: this.Ref,
|
|
274
|
+
[CustomerFields.COLUMN_REGISTRATION_NUMBER]: this.RegistrationNumber,
|
|
173
275
|
[CustomerFields.COLUMN_BILLING_ID]: this.BillingId,
|
|
276
|
+
[CustomerFields.COLUMN_BILLING_ADDRESS_1]: this.BillingAddress1,
|
|
277
|
+
[CustomerFields.COLUMN_BILLING_ADDRESS_2]: this.BillingAddress2,
|
|
278
|
+
[CustomerFields.COLUMN_BILLING_CITY]: this.BillingCity,
|
|
279
|
+
[CustomerFields.COLUMN_BILLING_STATE]: this.BillingState,
|
|
280
|
+
[CustomerFields.COLUMN_BILLING_ZIP_CODE]: this.BillingZipCode,
|
|
281
|
+
[CustomerFields.COLUMN_BILLING_COUNTRY_CODE]: this.BillingCountryCode,
|
|
282
|
+
[CustomerFields.COLUMN_ADMIN_NOTE]: this.AdminNote,
|
|
283
|
+
[CustomerFields.COLUMN_COMPANY_ISR]: this.Isr,
|
|
284
|
+
[CustomerFields.COLUMN_COMPANY_FSR]: this.Fsr,
|
|
285
|
+
[CustomerFields.COLUMN_PO_NUMBER_MANDATORY]: this.PoNumberMandatory,
|
|
286
|
+
[CustomerFields.COLUMN_TYPE]: this.Type,
|
|
174
287
|
[CustomerFields.COLUMN_INTERNAL_REFERENCE]: this.InternalReference,
|
|
175
288
|
[CustomerFields.COLUMN_CONTACT]: this.Contact.toJSON(),
|
|
176
289
|
[CustomerFields.COLUMN_DETAILS]: this.Details.toJSON(),
|
|
177
290
|
[CustomerFields.COLUMN_DELETED_AT]: this.DeletedAt,
|
|
178
291
|
[CustomerFields.COLUMN_EXTRA_INFORMATION]: (_a = this.ExtraInformation) === null || _a === void 0 ? void 0 : _a.toJSON(),
|
|
292
|
+
[CustomerFields.COLUMN_ORGANISATION_UNIT]: (_b = this.OrganisationUnit) === null || _b === void 0 ? void 0 : _b.toJSON(),
|
|
293
|
+
[CustomerFields.COLUMN_RESELLER]: this.Reseller,
|
|
294
|
+
[CustomerFields.COLUMN_PARTNER_TAGS]: this.PartnerTags,
|
|
179
295
|
};
|
|
180
296
|
}
|
|
181
297
|
}
|
|
182
298
|
exports.Customer = Customer;
|
|
183
|
-
_Customer_reference = new WeakMap(), _Customer_companyName = new WeakMap(), _Customer_partnerCompanyId = new WeakMap(), _Customer_addressLine1 = new WeakMap(), _Customer_addressLine2 = new WeakMap(), _Customer_zip = new WeakMap(), _Customer_city = new WeakMap(), _Customer_countryCode = new WeakMap(), _Customer_state = new WeakMap(), _Customer_receptionPhone = new WeakMap(), _Customer_websiteUrl = new WeakMap(), _Customer_emailContact = new WeakMap(), _Customer_headcount = new WeakMap(), _Customer_taxNumber = new WeakMap(), _Customer_ref = new WeakMap(), _Customer_billingId = new WeakMap(), _Customer_internalReference = new WeakMap(), _Customer_contact = new WeakMap(), _Customer_deletedAt = new WeakMap(), _Customer_details = new WeakMap(), _Customer_extraInformation = new WeakMap();
|
|
299
|
+
_Customer_reference = new WeakMap(), _Customer_workgroupCode = new WeakMap(), _Customer_companyName = new WeakMap(), _Customer_partnerCompanyId = new WeakMap(), _Customer_addressLine1 = new WeakMap(), _Customer_addressLine2 = new WeakMap(), _Customer_zip = new WeakMap(), _Customer_city = new WeakMap(), _Customer_countryCode = new WeakMap(), _Customer_state = new WeakMap(), _Customer_receptionPhone = new WeakMap(), _Customer_websiteUrl = new WeakMap(), _Customer_emailContact = new WeakMap(), _Customer_headcount = new WeakMap(), _Customer_taxNumber = new WeakMap(), _Customer_ref = new WeakMap(), _Customer_registrationNumber = new WeakMap(), _Customer_billingId = new WeakMap(), _Customer_billingAddress1 = new WeakMap(), _Customer_billingAddress2 = new WeakMap(), _Customer_billingCity = new WeakMap(), _Customer_billingState = new WeakMap(), _Customer_billingZipCode = new WeakMap(), _Customer_billingCountryCode = new WeakMap(), _Customer_adminNote = new WeakMap(), _Customer_isr = new WeakMap(), _Customer_fsr = new WeakMap(), _Customer_poNumberMandatory = new WeakMap(), _Customer_type = new WeakMap(), _Customer_internalReference = new WeakMap(), _Customer_contact = new WeakMap(), _Customer_deletedAt = new WeakMap(), _Customer_details = new WeakMap(), _Customer_extraInformation = new WeakMap(), _Customer_organisationUnit = new WeakMap(), _Customer_reseller = new WeakMap(), _Customer_partnerTags = new WeakMap();
|
|
184
300
|
//# sourceMappingURL=customer.js.map
|
|
@@ -335,13 +335,13 @@ class LicensesClient extends abstractRestfulClient_1.AbstractRestfulClient {
|
|
|
335
335
|
};
|
|
336
336
|
postData = postSetRateData;
|
|
337
337
|
}
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
}
|
|
338
|
+
else if (bulkData.actionType == bulkArguments_1.ActionTypes.UPLOAD_CHANGES) {
|
|
339
|
+
const payload = {
|
|
340
|
+
[abstractRestfulClient_1.FileUploadKeys.Fields]: postData,
|
|
341
|
+
[abstractRestfulClient_1.FileUploadKeys.File]: bulkData[bulkArguments_1.BulkBodyFields.FILE],
|
|
342
|
+
};
|
|
343
|
+
return await this.postFile(payload);
|
|
344
|
+
}
|
|
345
345
|
return await this.post(postData);
|
|
346
346
|
}
|
|
347
347
|
async updateConfig(reference, config) {
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
1
2
|
import type { Except } from 'type-fest';
|
|
3
|
+
import { File } from 'node:buffer';
|
|
2
4
|
export declare enum ActionTypes {
|
|
3
5
|
SET_RATE = "setRate",
|
|
4
6
|
AUTO_RENEW = "autoRenew",
|
|
@@ -37,7 +39,8 @@ export declare type BulkBodyArgument = {
|
|
|
37
39
|
[BulkBodyFields.SPECIAL_PRICE_RATE_TYPE]?: SpecialPriceRateTypes;
|
|
38
40
|
[BulkBodyFields.SPECIAL_PRICE_RATE_VALUE]?: string;
|
|
39
41
|
[BulkBodyFields.SPECIAL_RATE_EFFECTIVE_APPLICATION_DATE]?: SpecialRateEffectiveApplicationDate;
|
|
42
|
+
[BulkBodyFields.FILE]?: File;
|
|
40
43
|
};
|
|
41
44
|
export declare type BulkAutoRenewBody = Except<BulkBodyArgument, BulkBodyFields.SPECIAL_PRICE_RATE_TYPE & BulkBodyFields.SPECIAL_PRICE_RATE_VALUE & BulkBodyFields.SPECIAL_RATE_EFFECTIVE_APPLICATION_DATE & BulkBodyFields.FILE>;
|
|
42
45
|
export declare type BulkSetRateBody = Except<BulkBodyArgument, BulkBodyFields.AUTO_RENEW_STATUS & BulkBodyFields.FILE>;
|
|
43
|
-
export declare type BulkUploadChangesBody = Except<BulkBodyArgument, BulkBodyFields.AUTO_RENEW_STATUS & BulkBodyFields.SPECIAL_PRICE_RATE_TYPE & BulkBodyFields.SPECIAL_PRICE_RATE_VALUE & BulkBodyFields.SPECIAL_RATE_EFFECTIVE_APPLICATION_DATE>;
|
|
46
|
+
export declare type BulkUploadChangesBody = Except<BulkBodyArgument, BulkBodyFields.AUTO_RENEW_STATUS & BulkBodyFields.FILE & BulkBodyFields.SPECIAL_PRICE_RATE_TYPE & BulkBodyFields.SPECIAL_PRICE_RATE_VALUE & BulkBodyFields.SPECIAL_RATE_EFFECTIVE_APPLICATION_DATE>;
|
package/package.json
CHANGED