@arrowsphere/api-client 3.192.0 → 3.193.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.
|
@@ -69,3 +69,27 @@ export declare type GraphqlApiOrderHistoryType = {
|
|
|
69
69
|
order?: OrdersType;
|
|
70
70
|
user?: UserType;
|
|
71
71
|
};
|
|
72
|
+
export declare type GraphqlApiOrderListType = {
|
|
73
|
+
id?: number;
|
|
74
|
+
country?: string;
|
|
75
|
+
createdAt?: string;
|
|
76
|
+
createdBy?: string;
|
|
77
|
+
createdByImpersonate?: string;
|
|
78
|
+
endCustomerName?: string;
|
|
79
|
+
orderType?: string;
|
|
80
|
+
partnerName?: string;
|
|
81
|
+
programName?: string;
|
|
82
|
+
partnerId?: number;
|
|
83
|
+
partnerTags?: string;
|
|
84
|
+
programId?: number;
|
|
85
|
+
reference?: string;
|
|
86
|
+
scheduledAt?: string;
|
|
87
|
+
status?: string;
|
|
88
|
+
statusId?: number;
|
|
89
|
+
totalCommitment?: number;
|
|
90
|
+
totalPrice?: number;
|
|
91
|
+
unitSymbol?: string;
|
|
92
|
+
updatedAt?: string;
|
|
93
|
+
uuid?: number;
|
|
94
|
+
vendorName?: string;
|
|
95
|
+
};
|
|
@@ -3,7 +3,7 @@ import { ContactsType } from './entities/contact';
|
|
|
3
3
|
import { GraphqlApiStaffType } from './entities/contributor';
|
|
4
4
|
import { ContinentType, CountryType } from './entities/country';
|
|
5
5
|
import { LicenseBudgetType } from './entities/licenseBudget';
|
|
6
|
-
import { GraphqlApiOrderHistoryType, OrdersType } from './entities/order';
|
|
6
|
+
import { GraphqlApiOrderHistoryType, GraphqlApiOrderListType, OrdersType } from './entities/order';
|
|
7
7
|
import { OrganizationUnitsType } from './entities/organizationUnit';
|
|
8
8
|
import { PartnertagType } from './entities/partnertag';
|
|
9
9
|
import { GraphqlApiProgramType, ProgramLevelOptionGroupType, ProgramLevelType, SubscribedProgramType } from './entities/program';
|
|
@@ -127,6 +127,7 @@ export declare enum SelectDataField {
|
|
|
127
127
|
ORGANIZATION_UNIT = "organizationUnit",
|
|
128
128
|
ORDER = "order",
|
|
129
129
|
ORDER_HISTORY = "orderHistory",
|
|
130
|
+
ORDER_LIST = "orderList",
|
|
130
131
|
PARTNER = "partner",
|
|
131
132
|
PARTNERTAG = "partnertag",
|
|
132
133
|
PROGRAM = "program",
|
|
@@ -160,6 +161,7 @@ export declare type SelectAllResponseDataType = {
|
|
|
160
161
|
[SelectDataField.ORGANIZATION_UNIT]?: OrganizationUnitsType[];
|
|
161
162
|
[SelectDataField.ORDER]?: OrdersType[];
|
|
162
163
|
[SelectDataField.ORDER_HISTORY]?: GraphqlApiOrderHistoryType[];
|
|
164
|
+
[SelectDataField.ORDER_LIST]?: GraphqlApiOrderListType[];
|
|
163
165
|
[SelectDataField.PARTNER]?: PartnerType[];
|
|
164
166
|
[SelectDataField.PARTNERTAG]?: PartnertagType[];
|
|
165
167
|
[SelectDataField.PROGRAM]?: GraphqlApiProgramType[];
|
|
@@ -99,6 +99,7 @@ var SelectDataField;
|
|
|
99
99
|
SelectDataField["ORGANIZATION_UNIT"] = "organizationUnit";
|
|
100
100
|
SelectDataField["ORDER"] = "order";
|
|
101
101
|
SelectDataField["ORDER_HISTORY"] = "orderHistory";
|
|
102
|
+
SelectDataField["ORDER_LIST"] = "orderList";
|
|
102
103
|
SelectDataField["PARTNER"] = "partner";
|
|
103
104
|
SelectDataField["PARTNERTAG"] = "partnertag";
|
|
104
105
|
SelectDataField["PROGRAM"] = "program";
|
|
@@ -7,7 +7,7 @@ import { ErrorsType, PageType, Queries, SelectDataField, SelectableField } from
|
|
|
7
7
|
import { ContactsType } from './entities/contact';
|
|
8
8
|
import { SubscriptionType } from './entities/subscription';
|
|
9
9
|
import { SpecialPriceRateType } from './entities/specialPriceRate';
|
|
10
|
-
import { GraphqlApiOrderHistoryType, GraphqlApiOrderLinkType, OrderItemsType, OrdersType } from './entities/order';
|
|
10
|
+
import { GraphqlApiOrderHistoryType, GraphqlApiOrderLinkType, GraphqlApiOrderListType, OrderItemsType, OrdersType } from './entities/order';
|
|
11
11
|
import { GraphqlApiProgramType, ProgramBenefitType, ProgramLevelType, ProgramRequirementType, ProgramLevelOptionGroupType, ProgramLevelOptionType, SubscribedProgramType, SubscriptionExtraFieldType } from './entities/program';
|
|
12
12
|
import { LicenseBudgetNotificationType, LicenseBudgetType } from './entities/licenseBudget';
|
|
13
13
|
import { UserHistoryType, UserType } from './entities/user';
|
|
@@ -109,6 +109,7 @@ export declare type ErrorsSchema = Schema<ErrorsType, boolean>;
|
|
|
109
109
|
export declare type GraphqlApiEavSchema = Schema<GraphqlApiEavType, boolean>;
|
|
110
110
|
export declare type GraphqlApiOrderHistorySchema = Schema<GraphqlApiOrderHistoryType, boolean>;
|
|
111
111
|
export declare type GraphqlApiOrderLinkSchema = Schema<GraphqlApiOrderLinkType, boolean>;
|
|
112
|
+
export declare type GraphqlApiOrderListSchema = Schema<GraphqlApiOrderListType, boolean>;
|
|
112
113
|
export declare type LicenseBudgetNotificationSchema = Schema<LicenseBudgetNotificationType, boolean>;
|
|
113
114
|
export declare type BaseCompanySchema = Schema<BaseCompanyType, boolean>;
|
|
114
115
|
export declare type OrganizationUnitSchema = Schema<OrganizationUnitsType, boolean>;
|
package/package.json
CHANGED