@arrowsphere/api-client 3.99.0 → 3.100.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.
- package/build/graphqlApi/index.d.ts +1 -0
- package/build/graphqlApi/index.js +1 -0
- package/build/graphqlApi/types/entities/licenseBudget.d.ts +11 -0
- package/build/graphqlApi/types/entities/licenseBudget.js +3 -0
- package/build/graphqlApi/types/graphqlApiQueries.d.ts +4 -0
- package/build/graphqlApi/types/graphqlApiQueries.js +1 -0
- package/build/graphqlApi/types/graphqlApiSchemas.d.ts +8 -0
- package/package.json +1 -1
|
@@ -3,6 +3,7 @@ export * from './types/graphqlApiSchemas';
|
|
|
3
3
|
export * from './types/entities/contact';
|
|
4
4
|
export * from './types/entities/company';
|
|
5
5
|
export * from './types/entities/country';
|
|
6
|
+
export * from './types/entities/licenseBudget';
|
|
6
7
|
export * from './types/entities/order';
|
|
7
8
|
export * from './types/entities/partnertag';
|
|
8
9
|
export * from './types/entities/subscription';
|
|
@@ -19,6 +19,7 @@ __exportStar(require("./types/graphqlApiSchemas"), exports);
|
|
|
19
19
|
__exportStar(require("./types/entities/contact"), exports);
|
|
20
20
|
__exportStar(require("./types/entities/company"), exports);
|
|
21
21
|
__exportStar(require("./types/entities/country"), exports);
|
|
22
|
+
__exportStar(require("./types/entities/licenseBudget"), exports);
|
|
22
23
|
__exportStar(require("./types/entities/order"), exports);
|
|
23
24
|
__exportStar(require("./types/entities/partnertag"), exports);
|
|
24
25
|
__exportStar(require("./types/entities/subscription"), exports);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare type LicenseBudgetType = {
|
|
2
|
+
id?: number;
|
|
3
|
+
licenseId?: number;
|
|
4
|
+
notifications?: LicenseBudgetNotificationType[];
|
|
5
|
+
threshold?: number;
|
|
6
|
+
type?: string;
|
|
7
|
+
};
|
|
8
|
+
export declare type LicenseBudgetNotificationType = {
|
|
9
|
+
id?: number;
|
|
10
|
+
name?: string;
|
|
11
|
+
};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ArrowCompanyType, EndCustomerType, PartnerType } from './entities/company';
|
|
2
2
|
import { ContinentType, CountryType } from './entities/country';
|
|
3
|
+
import { LicenseBudgetType } from './entities/licenseBudget';
|
|
3
4
|
import { PartnertagType } from './entities/partnertag';
|
|
4
5
|
import { SubscribedProgramType } from './entities/program';
|
|
5
6
|
import { SubscriptionType } from './entities/subscription';
|
|
@@ -113,6 +114,7 @@ export declare enum SelectDataField {
|
|
|
113
114
|
CONTINENT = "continent",
|
|
114
115
|
COUNTRY = "country",
|
|
115
116
|
END_CUSTOMER = "endCustomer",
|
|
117
|
+
LICENSE_BUDGET = "licenseBudget",
|
|
116
118
|
PARTNER = "partner",
|
|
117
119
|
PARTNERTAG = "partnertag",
|
|
118
120
|
SUBSCRIBED_PROGRAM = "subscribedProgram",
|
|
@@ -131,6 +133,7 @@ export declare type SelectAllResponseDataType = {
|
|
|
131
133
|
[SelectDataField.CONTINENT]?: ContinentType[];
|
|
132
134
|
[SelectDataField.COUNTRY]?: CountryType[];
|
|
133
135
|
[SelectDataField.END_CUSTOMER]?: EndCustomerType[];
|
|
136
|
+
[SelectDataField.LICENSE_BUDGET]?: LicenseBudgetType[];
|
|
134
137
|
[SelectDataField.PARTNER]?: PartnerType[];
|
|
135
138
|
[SelectDataField.PARTNERTAG]?: PartnertagType[];
|
|
136
139
|
[SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramType[];
|
|
@@ -175,6 +178,7 @@ export declare type SelectOneResponseDataType = {
|
|
|
175
178
|
[SelectDataField.CONTINENT]?: ContinentType;
|
|
176
179
|
[SelectDataField.COUNTRY]?: CountryType;
|
|
177
180
|
[SelectDataField.END_CUSTOMER]?: EndCustomerType;
|
|
181
|
+
[SelectDataField.LICENSE_BUDGET]?: LicenseBudgetType;
|
|
178
182
|
[SelectDataField.PARTNER]?: PartnerType;
|
|
179
183
|
[SelectDataField.PARTNERTAG]?: PartnertagType;
|
|
180
184
|
[SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramType;
|
|
@@ -94,6 +94,7 @@ var SelectDataField;
|
|
|
94
94
|
SelectDataField["CONTINENT"] = "continent";
|
|
95
95
|
SelectDataField["COUNTRY"] = "country";
|
|
96
96
|
SelectDataField["END_CUSTOMER"] = "endCustomer";
|
|
97
|
+
SelectDataField["LICENSE_BUDGET"] = "licenseBudget";
|
|
97
98
|
SelectDataField["PARTNER"] = "partner";
|
|
98
99
|
SelectDataField["PARTNERTAG"] = "partnertag";
|
|
99
100
|
SelectDataField["SUBSCRIBED_PROGRAM"] = "subscribedProgram";
|
|
@@ -11,6 +11,7 @@ import { SpecialPriceRateType } from './entities/specialPriceRate';
|
|
|
11
11
|
import { OrderItemsType, OrdersType } from './entities/order';
|
|
12
12
|
import { VendorsType } from './entities/vendor';
|
|
13
13
|
import { SubscribedProgramType } from './entities/program';
|
|
14
|
+
import { LicenseBudgetNotificationType, LicenseBudgetType } from './entities/licenseBudget';
|
|
14
15
|
export declare type PartnertagSchema = Schema<PartnertagType, boolean>;
|
|
15
16
|
declare type MissingFieldsOfCompanySchema = {
|
|
16
17
|
contacts?: ContactsSchema;
|
|
@@ -38,6 +39,10 @@ declare type MissingFieldsOfOrderItemSchema = {
|
|
|
38
39
|
declare type MissingFieldsOfOrdersSchema = {
|
|
39
40
|
items?: OrderItemsSchema;
|
|
40
41
|
};
|
|
42
|
+
declare type MissingFieldsOfLicenseBudgetSchema = {
|
|
43
|
+
notifications?: LicenseBudgetNotificationSchema;
|
|
44
|
+
};
|
|
45
|
+
export declare type LicenseBudgetSchema = Merge<Schema<LicenseBudgetType, boolean>, MissingFieldsOfLicenseBudgetSchema>;
|
|
41
46
|
export declare type OrderItemsSchema = Merge<Schema<OrderItemsType, boolean>, MissingFieldsOfOrderItemSchema>;
|
|
42
47
|
export declare type OrdersSchema = Merge<Schema<OrdersType, boolean>, MissingFieldsOfOrdersSchema>;
|
|
43
48
|
export declare type EndCustomerSchema = Merge<Schema<EndCustomerType, boolean>, MissingFieldsOfEndCustomerSchema>;
|
|
@@ -48,6 +53,7 @@ export declare type ContactsSchema = Schema<ContactsType, boolean>;
|
|
|
48
53
|
export declare type ContinentSchema = Schema<ContinentType, boolean>;
|
|
49
54
|
export declare type CountrySchema = Schema<CountryType, boolean>;
|
|
50
55
|
export declare type ErrorsSchema = Schema<ErrorsType, boolean>;
|
|
56
|
+
export declare type LicenseBudgetNotificationSchema = Schema<LicenseBudgetNotificationType, boolean>;
|
|
51
57
|
export declare type PageSchema = Schema<PageType, boolean>;
|
|
52
58
|
export declare type ProgramSchema = Schema<ProgramType, boolean>;
|
|
53
59
|
export declare type SpecialPriceRateSchema = Schema<SpecialPriceRateType, boolean>;
|
|
@@ -65,6 +71,7 @@ export declare type SelectAllResponseDataSchema = {
|
|
|
65
71
|
[SelectDataField.CONTINENT]?: ContinentSchema;
|
|
66
72
|
[SelectDataField.COUNTRY]?: CountrySchema;
|
|
67
73
|
[SelectDataField.END_CUSTOMER]?: EndCustomerSchema;
|
|
74
|
+
[SelectDataField.LICENSE_BUDGET]?: LicenseBudgetSchema;
|
|
68
75
|
[SelectDataField.PARTNER]?: PartnerSchema;
|
|
69
76
|
[SelectDataField.PARTNERTAG]?: PartnertagSchema;
|
|
70
77
|
[SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramSchema;
|
|
@@ -80,6 +87,7 @@ export declare type SelectOneResponseDataSchema = {
|
|
|
80
87
|
[SelectDataField.CONTINENT]?: ContinentSchema;
|
|
81
88
|
[SelectDataField.COUNTRY]?: CountrySchema;
|
|
82
89
|
[SelectDataField.END_CUSTOMER]?: EndCustomerSchema;
|
|
90
|
+
[SelectDataField.LICENSE_BUDGET]?: LicenseBudgetSchema;
|
|
83
91
|
[SelectDataField.PARTNER]?: PartnerSchema;
|
|
84
92
|
[SelectDataField.PARTNERTAG]?: PartnertagSchema;
|
|
85
93
|
[SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramSchema;
|
package/package.json
CHANGED