@arrowsphere/api-client 3.20.0-rc.3 → 3.20.0-rc.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.
|
@@ -14,7 +14,7 @@ declare enum CustomerContactPayloadFields {
|
|
|
14
14
|
COLUMN_TYPE = "type",
|
|
15
15
|
COLUMN_ROLE = "role"
|
|
16
16
|
}
|
|
17
|
-
declare type PostCustomerContactPayload = {
|
|
17
|
+
export declare type PostCustomerContactPayload = {
|
|
18
18
|
[CustomerContactPayloadFields.COLUMN_FIRST_NAME]: string;
|
|
19
19
|
[CustomerContactPayloadFields.COLUMN_LAST_NAME]: string;
|
|
20
20
|
[CustomerContactPayloadFields.COLUMN_EMAIL]: string;
|
|
@@ -23,7 +23,7 @@ declare type PostCustomerContactPayload = {
|
|
|
23
23
|
[CustomerContactPayloadFields.COLUMN_TYPE]: CustomerContactTypeType;
|
|
24
24
|
[CustomerContactPayloadFields.COLUMN_ROLE]: CustomerContactRoleType;
|
|
25
25
|
};
|
|
26
|
-
declare type PatchCustomerContactPayload = {
|
|
26
|
+
export declare type PatchCustomerContactPayload = {
|
|
27
27
|
[Property in keyof PostCustomerContactPayload]?: PostCustomerContactPayload[Property];
|
|
28
28
|
};
|
|
29
29
|
export declare class CustomersClient extends AbstractClient {
|
package/package.json
CHANGED