@arrowsphere/api-client 3.179.0 → 3.180.0-rc-bdj-2
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/build/graphqlApi/types/entities/order.d.ts +9 -0
- package/build/graphqlApi/types/entities/program.d.ts +3 -1
- package/build/graphqlApi/types/graphqlApiQueries.d.ts +4 -0
- package/build/graphqlApi/types/graphqlApiQueries.js +1 -0
- package/build/graphqlApi/types/graphqlApiSchemas.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,12 +1,21 @@
|
|
|
1
|
+
import { EndCustomerType, PartnerType } from './company';
|
|
2
|
+
import { GraphqlApiProgramType } from './program';
|
|
3
|
+
import { ItemData } from './quote';
|
|
1
4
|
import { SpecialPriceRateType } from './specialPriceRate';
|
|
2
5
|
import { GraphqlApiUnitType } from './unit';
|
|
3
6
|
export declare type OrdersType = {
|
|
4
7
|
id?: number;
|
|
8
|
+
endCustomer?: EndCustomerType;
|
|
5
9
|
items?: OrderItemsType[];
|
|
10
|
+
partner?: PartnerType;
|
|
6
11
|
};
|
|
7
12
|
export declare type OrderItemsType = {
|
|
8
13
|
id?: number;
|
|
14
|
+
itemData?: ItemData;
|
|
15
|
+
name?: string;
|
|
9
16
|
priceRates?: SpecialPriceRateType[];
|
|
17
|
+
program?: GraphqlApiProgramType;
|
|
18
|
+
reference?: string;
|
|
10
19
|
};
|
|
11
20
|
export declare type GraphqlApiOrderSoftwareType = {
|
|
12
21
|
id?: number;
|
|
@@ -10,9 +10,11 @@ export declare type GraphqlApiProgramType = {
|
|
|
10
10
|
levels?: ProgramLevelType[];
|
|
11
11
|
name?: string;
|
|
12
12
|
subscriptionExtraFields?: SubscriptionExtraFieldType[];
|
|
13
|
+
type?: GraphqlApiProgramTypeType;
|
|
13
14
|
url?: string;
|
|
14
15
|
vendor?: VendorsType;
|
|
15
|
-
|
|
16
|
+
vendorReference?: string;
|
|
17
|
+
xacVendorCode?: string;
|
|
16
18
|
};
|
|
17
19
|
export declare type GraphqlApiProgramTypeType = {
|
|
18
20
|
id?: number;
|
|
@@ -2,6 +2,7 @@ import { ArrowCompanyType, EndCustomerType, PartnerType } from './entities/compa
|
|
|
2
2
|
import { ContactsType } from './entities/contact';
|
|
3
3
|
import { ContinentType, CountryType } from './entities/country';
|
|
4
4
|
import { LicenseBudgetType } from './entities/licenseBudget';
|
|
5
|
+
import { OrdersType } from './entities/order';
|
|
5
6
|
import { OrganizationUnitsType } from './entities/organizationUnit';
|
|
6
7
|
import { PartnertagType } from './entities/partnertag';
|
|
7
8
|
import { GraphqlApiProgramType, ProgramLevelOptionGroupType, SubscribedProgramType } from './entities/program';
|
|
@@ -123,6 +124,7 @@ export declare enum SelectDataField {
|
|
|
123
124
|
END_CUSTOMER = "endCustomer",
|
|
124
125
|
LICENSE_BUDGET = "licenseBudget",
|
|
125
126
|
ORGANIZATION_UNIT = "organizationUnit",
|
|
127
|
+
ORDER = "order",
|
|
126
128
|
PARTNER = "partner",
|
|
127
129
|
PARTNERTAG = "partnertag",
|
|
128
130
|
PROGRAM = "program",
|
|
@@ -152,6 +154,7 @@ export declare type SelectAllResponseDataType = {
|
|
|
152
154
|
[SelectDataField.END_CUSTOMER]?: EndCustomerType[];
|
|
153
155
|
[SelectDataField.LICENSE_BUDGET]?: LicenseBudgetType[];
|
|
154
156
|
[SelectDataField.ORGANIZATION_UNIT]?: OrganizationUnitsType[];
|
|
157
|
+
[SelectDataField.ORDER]?: OrdersType[];
|
|
155
158
|
[SelectDataField.PARTNER]?: PartnerType[];
|
|
156
159
|
[SelectDataField.PARTNERTAG]?: PartnertagType[];
|
|
157
160
|
[SelectDataField.PROGRAM]?: GraphqlApiProgramType[];
|
|
@@ -230,6 +233,7 @@ export declare type SelectOneResponseDataType = {
|
|
|
230
233
|
[SelectDataField.END_CUSTOMER]?: EndCustomerType;
|
|
231
234
|
[SelectDataField.LICENSE_BUDGET]?: LicenseBudgetType;
|
|
232
235
|
[SelectDataField.ORGANIZATION_UNIT]?: OrganizationUnitsType;
|
|
236
|
+
[SelectDataField.ORDER]?: OrdersType;
|
|
233
237
|
[SelectDataField.PARTNER]?: PartnerType;
|
|
234
238
|
[SelectDataField.PARTNERTAG]?: PartnertagType;
|
|
235
239
|
[SelectDataField.PROGRAM]?: GraphqlApiProgramType;
|
|
@@ -97,6 +97,7 @@ var SelectDataField;
|
|
|
97
97
|
SelectDataField["END_CUSTOMER"] = "endCustomer";
|
|
98
98
|
SelectDataField["LICENSE_BUDGET"] = "licenseBudget";
|
|
99
99
|
SelectDataField["ORGANIZATION_UNIT"] = "organizationUnit";
|
|
100
|
+
SelectDataField["ORDER"] = "order";
|
|
100
101
|
SelectDataField["PARTNER"] = "partner";
|
|
101
102
|
SelectDataField["PARTNERTAG"] = "partnertag";
|
|
102
103
|
SelectDataField["PROGRAM"] = "program";
|
|
@@ -143,6 +143,7 @@ export declare type SelectAllResponseDataSchema = {
|
|
|
143
143
|
[SelectDataField.END_CUSTOMER]?: EndCustomerSchema;
|
|
144
144
|
[SelectDataField.LICENSE_BUDGET]?: LicenseBudgetSchema;
|
|
145
145
|
[SelectDataField.ORGANIZATION_UNIT]?: OrganizationUnitSchema;
|
|
146
|
+
[SelectDataField.ORDER]?: OrdersSchema;
|
|
146
147
|
[SelectDataField.PARTNER]?: PartnerSchema;
|
|
147
148
|
[SelectDataField.PARTNERTAG]?: PartnertagSchema;
|
|
148
149
|
[SelectDataField.PROGRAM]?: GraphqlApiProgramSchema;
|
package/package.json
CHANGED