@arrowsphere/api-client 3.119.0-rc.MBI.1 → 3.119.0-rc.MBI.pfe.1
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.
|
@@ -7,13 +7,21 @@ import { CustomerContactList } from './entities/customers/customerContact/custom
|
|
|
7
7
|
import { CustomerContact, CustomerContactRoleType, CustomerContactTypeType } from './entities/customers/customerContact/customerContact';
|
|
8
8
|
import { CustomerFields, CustomerType } from './entities/customers/customer';
|
|
9
9
|
import { ContactFields } from './entities/customers/contact/contact';
|
|
10
|
+
export declare enum CustomerMigrationAttributeFields {
|
|
11
|
+
NAME = "name",
|
|
12
|
+
VALUE = "value"
|
|
13
|
+
}
|
|
10
14
|
export declare enum CustomerMigrationPayloadFields {
|
|
11
15
|
PROGRAM = "program",
|
|
12
|
-
|
|
16
|
+
ATTRIBUTES = "attributes"
|
|
13
17
|
}
|
|
18
|
+
export declare type PostCustomerMigrationAttribute = {
|
|
19
|
+
[CustomerMigrationAttributeFields.NAME]: string;
|
|
20
|
+
[CustomerMigrationAttributeFields.VALUE]: string;
|
|
21
|
+
};
|
|
14
22
|
export declare type PostCustomerMigrationPayload = {
|
|
15
23
|
[CustomerMigrationPayloadFields.PROGRAM]: string;
|
|
16
|
-
[CustomerMigrationPayloadFields.
|
|
24
|
+
[CustomerMigrationPayloadFields.ATTRIBUTES]?: PostCustomerMigrationAttribute[];
|
|
17
25
|
};
|
|
18
26
|
export declare enum CustomerContactPayloadFields {
|
|
19
27
|
COLUMN_FIRST_NAME = "firstName",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CustomersClient = exports.PostCustomerInvitationFields = exports.CustomerContactPayloadFields = exports.CustomerMigrationPayloadFields = void 0;
|
|
3
|
+
exports.CustomersClient = exports.PostCustomerInvitationFields = exports.CustomerContactPayloadFields = exports.CustomerMigrationPayloadFields = exports.CustomerMigrationAttributeFields = void 0;
|
|
4
4
|
const abstractRestfulClient_1 = require("../abstractRestfulClient");
|
|
5
5
|
const getResult_1 = require("../getResult");
|
|
6
6
|
const dataCustomers_1 = require("./entities/dataCustomers");
|
|
@@ -10,10 +10,15 @@ const customerContactList_1 = require("./entities/customers/customerContact/cust
|
|
|
10
10
|
const customerContact_1 = require("./entities/customers/customerContact/customerContact");
|
|
11
11
|
const customer_1 = require("./entities/customers/customer");
|
|
12
12
|
const contact_1 = require("./entities/customers/contact/contact");
|
|
13
|
+
var CustomerMigrationAttributeFields;
|
|
14
|
+
(function (CustomerMigrationAttributeFields) {
|
|
15
|
+
CustomerMigrationAttributeFields["NAME"] = "name";
|
|
16
|
+
CustomerMigrationAttributeFields["VALUE"] = "value";
|
|
17
|
+
})(CustomerMigrationAttributeFields = exports.CustomerMigrationAttributeFields || (exports.CustomerMigrationAttributeFields = {}));
|
|
13
18
|
var CustomerMigrationPayloadFields;
|
|
14
19
|
(function (CustomerMigrationPayloadFields) {
|
|
15
20
|
CustomerMigrationPayloadFields["PROGRAM"] = "program";
|
|
16
|
-
CustomerMigrationPayloadFields["
|
|
21
|
+
CustomerMigrationPayloadFields["ATTRIBUTES"] = "attributes";
|
|
17
22
|
})(CustomerMigrationPayloadFields = exports.CustomerMigrationPayloadFields || (exports.CustomerMigrationPayloadFields = {}));
|
|
18
23
|
var CustomerContactPayloadFields;
|
|
19
24
|
(function (CustomerContactPayloadFields) {
|
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.119.0-rc.MBI.1",
|
|
7
|
+
"version": "3.119.0-rc.MBI.pfe.1",
|
|
8
8
|
"description": "Node.js client for ArrowSphere's public API",
|
|
9
9
|
"main": "build/index.js",
|
|
10
10
|
"types": "build/index.d.ts",
|