@arrowsphere/api-client 3.177.0 → 3.178.0-rc-bdj-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.
|
@@ -34,6 +34,7 @@ declare type BaseCompanyType = {
|
|
|
34
34
|
phone?: string;
|
|
35
35
|
resellerId?: number;
|
|
36
36
|
state?: string;
|
|
37
|
+
type?: CompanyTypeType;
|
|
37
38
|
vatNumber?: string;
|
|
38
39
|
workgroup?: WorkgroupType;
|
|
39
40
|
zip?: string;
|
|
@@ -68,7 +69,6 @@ export declare type PartnerType = BaseCompanyType & {
|
|
|
68
69
|
subscriptions?: SubscriptionType[];
|
|
69
70
|
subscriptionsCount?: CountableType;
|
|
70
71
|
subscriptionsPendingCount?: CountableType;
|
|
71
|
-
type?: CompanyTypeType;
|
|
72
72
|
};
|
|
73
73
|
export declare type ArrowCompanyType = Omit<BaseCompanyType, 'partnerTags'> & {
|
|
74
74
|
subscriptions?: SubscriptionType[];
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
import { EndCustomerType } from './company';
|
|
1
2
|
import { OrganizationUnitsType } from './organizationUnit';
|
|
2
3
|
export declare type ContactsType = {
|
|
3
4
|
id?: number;
|
|
4
5
|
active?: boolean;
|
|
5
6
|
communicationEmail?: string;
|
|
7
|
+
companies?: EndCustomerType[];
|
|
6
8
|
effectiveDate?: string;
|
|
7
9
|
email?: string;
|
|
8
10
|
erpId?: string;
|
|
@@ -144,6 +144,7 @@ export declare type SelectAllResultType = {
|
|
|
144
144
|
};
|
|
145
145
|
export declare type SelectAllResponseDataType = {
|
|
146
146
|
[SelectDataField.ARROW_COMPANY]?: ArrowCompanyType[];
|
|
147
|
+
[SelectDataField.CONTACT]?: ContactsType[];
|
|
147
148
|
[SelectDataField.CONTINENT]?: ContinentType[];
|
|
148
149
|
[SelectDataField.COUNTRY]?: CountryType[];
|
|
149
150
|
[SelectDataField.END_CUSTOMER]?: EndCustomerType[];
|
|
@@ -220,6 +221,7 @@ export declare type GetSpecialPriceRatesHistoryResultType = {
|
|
|
220
221
|
};
|
|
221
222
|
export declare type SelectOneResponseDataType = {
|
|
222
223
|
[SelectDataField.ARROW_COMPANY]?: ArrowCompanyType;
|
|
224
|
+
[SelectDataField.CONTACT]?: ContactsType;
|
|
223
225
|
[SelectDataField.CONTINENT]?: ContinentType;
|
|
224
226
|
[SelectDataField.COUNTRY]?: CountryType;
|
|
225
227
|
[SelectDataField.END_CUSTOMER]?: EndCustomerType;
|
package/package.json
CHANGED