@arrowsphere/api-client 3.175.0-rc-bdj-2 → 3.175.0-rc-bdj-4
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.
|
@@ -129,4 +129,5 @@ export declare class CustomersClient extends AbstractRestfulClient {
|
|
|
129
129
|
reactivateCustomer(customerRef: string, parameters?: Parameters): Promise<void>;
|
|
130
130
|
postCustomerInvitation(payload: PostCustomerInvitation, parameters?: Parameters): Promise<GetResult<DataInvitation>>;
|
|
131
131
|
postCustomerMigration(customerReference: string, payload: PostCustomerMigrationPayload, parameters?: Parameters, returnAxiosData?: boolean): Promise<APIResponseCustomerMigration | APIResponseError>;
|
|
132
|
+
postReconciliationCustomers(program: string, parameters?: Parameters): Promise<void>;
|
|
132
133
|
}
|
|
@@ -106,6 +106,10 @@ class CustomersClient extends abstractRestfulClient_1.AbstractRestfulClient {
|
|
|
106
106
|
this.path = `/${customerReference}/migration`;
|
|
107
107
|
return await this.post(payload, parameters, {}, { returnAxiosData });
|
|
108
108
|
}
|
|
109
|
+
async postReconciliationCustomers(program, parameters = {}) {
|
|
110
|
+
this.path = '/reconciliation';
|
|
111
|
+
await this.post({ program }, parameters);
|
|
112
|
+
}
|
|
109
113
|
}
|
|
110
114
|
exports.CustomersClient = CustomersClient;
|
|
111
115
|
//# sourceMappingURL=customersClient.js.map
|
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.175.0-rc-bdj-
|
|
7
|
+
"version": "3.175.0-rc-bdj-4",
|
|
8
8
|
"description": "Node.js client for ArrowSphere's public API",
|
|
9
9
|
"main": "build/index.js",
|
|
10
10
|
"types": "build/index.d.ts",
|