@arrowsphere/api-client 3.89.0 → 3.90.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/company.d.ts +2 -0
- package/build/graphqlApi/types/entities/program.d.ts +18 -0
- package/build/graphqlApi/types/entities/vendor.d.ts +10 -0
- package/build/graphqlApi/types/entities/vendor.js +3 -0
- package/build/graphqlApi/types/graphqlApiQueries.d.ts +8 -0
- package/build/graphqlApi/types/graphqlApiQueries.js +2 -0
- package/build/graphqlApi/types/graphqlApiSchemas.d.ts +9 -0
- package/package.json +1 -1
|
@@ -7,5 +7,6 @@ export * from './types/entities/order';
|
|
|
7
7
|
export * from './types/entities/partnertag';
|
|
8
8
|
export * from './types/entities/subscription';
|
|
9
9
|
export * from './types/entities/specialPriceRate';
|
|
10
|
+
export * from './types/entities/vendor';
|
|
10
11
|
export * from './types/entities/workgroup';
|
|
11
12
|
export * from './graphqlApiClient';
|
|
@@ -23,6 +23,7 @@ __exportStar(require("./types/entities/order"), exports);
|
|
|
23
23
|
__exportStar(require("./types/entities/partnertag"), exports);
|
|
24
24
|
__exportStar(require("./types/entities/subscription"), exports);
|
|
25
25
|
__exportStar(require("./types/entities/specialPriceRate"), exports);
|
|
26
|
+
__exportStar(require("./types/entities/vendor"), exports);
|
|
26
27
|
__exportStar(require("./types/entities/workgroup"), exports);
|
|
27
28
|
__exportStar(require("./graphqlApiClient"), exports);
|
|
28
29
|
//# sourceMappingURL=index.js.map
|
|
@@ -2,6 +2,7 @@ import { ContactsType } from './contact';
|
|
|
2
2
|
import { CountryType } from './country';
|
|
3
3
|
import { OrdersType } from './order';
|
|
4
4
|
import { PartnertagType } from './partnertag';
|
|
5
|
+
import { SubscribedProgramType } from './program';
|
|
5
6
|
import { SubscriptionType } from './subscription';
|
|
6
7
|
import { WorkgroupType } from './workgroup';
|
|
7
8
|
export declare type CompanyTypeType = {
|
|
@@ -58,6 +59,7 @@ export declare type PartnerType = BaseCompanyType & {
|
|
|
58
59
|
ordersCount?: CountableType;
|
|
59
60
|
ordersNeedCount?: CountableType;
|
|
60
61
|
reportsCount?: CountableType;
|
|
62
|
+
subscribedPrograms?: SubscribedProgramType[];
|
|
61
63
|
subscriptions?: SubscriptionType[];
|
|
62
64
|
subscriptionsCount?: CountableType;
|
|
63
65
|
subscriptionsPendingCount?: CountableType;
|
|
@@ -1,5 +1,23 @@
|
|
|
1
|
+
import { PartnerType } from './company';
|
|
2
|
+
import { SubscriptionType } from './subscription';
|
|
3
|
+
import { VendorsType } from './vendor';
|
|
1
4
|
export declare type ProgramType = {
|
|
2
5
|
id?: number;
|
|
3
6
|
internalName?: string;
|
|
4
7
|
name?: string;
|
|
8
|
+
vendor?: VendorsType;
|
|
9
|
+
};
|
|
10
|
+
export declare type SubscribedProgramType = {
|
|
11
|
+
id?: number;
|
|
12
|
+
availabilityEndedAt?: string;
|
|
13
|
+
availabilityStartedAt?: string;
|
|
14
|
+
companyId?: number;
|
|
15
|
+
internalName?: string;
|
|
16
|
+
subscriptionEndedAt?: string;
|
|
17
|
+
partner?: PartnerType;
|
|
18
|
+
program?: ProgramType;
|
|
19
|
+
subscription?: SubscriptionType;
|
|
20
|
+
vendor?: VendorsType;
|
|
21
|
+
vendorCode?: string;
|
|
22
|
+
vendorName?: string;
|
|
5
23
|
};
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { ArrowCompanyType, EndCustomerType, PartnerType } from './entities/company';
|
|
2
2
|
import { ContinentType, CountryType } from './entities/country';
|
|
3
3
|
import { PartnertagType } from './entities/partnertag';
|
|
4
|
+
import { SubscribedProgramType } from './entities/program';
|
|
4
5
|
import { SubscriptionType } from './entities/subscription';
|
|
6
|
+
import { VendorsType } from './entities/vendor';
|
|
5
7
|
import { WorkgroupType } from './entities/workgroup';
|
|
6
8
|
import { ErrorsSchema, PageSchema, SelectAllResponseDataSchema, SelectOneResponseDataSchema } from './graphqlApiSchemas';
|
|
7
9
|
/**
|
|
@@ -114,7 +116,9 @@ export declare enum SelectDataField {
|
|
|
114
116
|
END_CUSTOMER = "endCustomer",
|
|
115
117
|
PARTNER = "partner",
|
|
116
118
|
PARTNERTAG = "partnertag",
|
|
119
|
+
SUBSCRIBED_PROGRAM = "subscribedProgram",
|
|
117
120
|
SUBSCRIPTION = "subscription",
|
|
121
|
+
VENDOR = "vendor",
|
|
118
122
|
WORKGROUP = "workgroup"
|
|
119
123
|
}
|
|
120
124
|
export declare type SelectAllResultType = {
|
|
@@ -131,7 +135,9 @@ export declare type SelectAllResponseDataType = {
|
|
|
131
135
|
[SelectDataField.END_CUSTOMER]?: EndCustomerType[];
|
|
132
136
|
[SelectDataField.PARTNER]?: PartnerType[];
|
|
133
137
|
[SelectDataField.PARTNERTAG]?: PartnertagType[];
|
|
138
|
+
[SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramType[];
|
|
134
139
|
[SelectDataField.SUBSCRIPTION]?: SubscriptionType[];
|
|
140
|
+
[SelectDataField.VENDOR]?: VendorsType[];
|
|
135
141
|
[SelectDataField.WORKGROUP]?: WorkgroupType[];
|
|
136
142
|
};
|
|
137
143
|
export declare enum ErrorsField {
|
|
@@ -174,7 +180,9 @@ export declare type SelectOneResponseDataType = {
|
|
|
174
180
|
[SelectDataField.END_CUSTOMER]?: EndCustomerType;
|
|
175
181
|
[SelectDataField.PARTNER]?: PartnerType;
|
|
176
182
|
[SelectDataField.PARTNERTAG]?: PartnertagType;
|
|
183
|
+
[SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramType;
|
|
177
184
|
[SelectDataField.SUBSCRIPTION]?: SubscriptionType;
|
|
185
|
+
[SelectDataField.VENDOR]?: VendorsType;
|
|
178
186
|
[SelectDataField.WORKGROUP]?: WorkgroupType;
|
|
179
187
|
};
|
|
180
188
|
export declare enum QueryVariablesField {
|
|
@@ -96,7 +96,9 @@ var SelectDataField;
|
|
|
96
96
|
SelectDataField["END_CUSTOMER"] = "endCustomer";
|
|
97
97
|
SelectDataField["PARTNER"] = "partner";
|
|
98
98
|
SelectDataField["PARTNERTAG"] = "partnertag";
|
|
99
|
+
SelectDataField["SUBSCRIBED_PROGRAM"] = "subscribedProgram";
|
|
99
100
|
SelectDataField["SUBSCRIPTION"] = "subscription";
|
|
101
|
+
SelectDataField["VENDOR"] = "vendor";
|
|
100
102
|
SelectDataField["WORKGROUP"] = "workgroup";
|
|
101
103
|
})(SelectDataField = exports.SelectDataField || (exports.SelectDataField = {}));
|
|
102
104
|
var ErrorsField;
|
|
@@ -9,12 +9,15 @@ import { ProgramType } from '../../catalog';
|
|
|
9
9
|
import { SubscriptionType } from './entities/subscription';
|
|
10
10
|
import { SpecialPriceRateType } from './entities/specialPriceRate';
|
|
11
11
|
import { OrderItemsType, OrdersType } from './entities/order';
|
|
12
|
+
import { VendorsType } from './entities/vendor';
|
|
13
|
+
import { SubscribedProgramType } from './entities/program';
|
|
12
14
|
export declare type PartnertagSchema = Schema<PartnertagType, boolean>;
|
|
13
15
|
declare type MissingFieldsOfCompanySchema = {
|
|
14
16
|
contacts?: ContactsSchema;
|
|
15
17
|
extraInformations?: CompanyExtraInformationSchema;
|
|
16
18
|
orders?: OrdersSchema;
|
|
17
19
|
partnerTags?: PartnertagSchema;
|
|
20
|
+
subscribedPrograms?: SubscribedProgramSchema;
|
|
18
21
|
subscriptions?: SubscriptionSchema;
|
|
19
22
|
};
|
|
20
23
|
declare type MissingFieldsOfArrowCompanySchema = {
|
|
@@ -48,7 +51,9 @@ export declare type ErrorsSchema = Schema<ErrorsType, boolean>;
|
|
|
48
51
|
export declare type PageSchema = Schema<PageType, boolean>;
|
|
49
52
|
export declare type ProgramSchema = Schema<ProgramType, boolean>;
|
|
50
53
|
export declare type SpecialPriceRateSchema = Schema<SpecialPriceRateType, boolean>;
|
|
54
|
+
export declare type SubscribedProgramSchema = Schema<SubscribedProgramType, boolean>;
|
|
51
55
|
export declare type SubscriptionSchema = Schema<SubscriptionType, boolean>;
|
|
56
|
+
export declare type VendorSchema = Schema<VendorsType, boolean>;
|
|
52
57
|
export declare type WorkgroupSchema = Schema<WorkgroupType, boolean>;
|
|
53
58
|
export declare type SelectAllResultSchema = {
|
|
54
59
|
[SelectableField.DATA]?: SelectAllResponseDataSchema;
|
|
@@ -62,7 +67,9 @@ export declare type SelectAllResponseDataSchema = {
|
|
|
62
67
|
[SelectDataField.END_CUSTOMER]?: EndCustomerSchema;
|
|
63
68
|
[SelectDataField.PARTNER]?: PartnerSchema;
|
|
64
69
|
[SelectDataField.PARTNERTAG]?: PartnertagSchema;
|
|
70
|
+
[SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramSchema;
|
|
65
71
|
[SelectDataField.SUBSCRIPTION]?: SubscriptionSchema;
|
|
72
|
+
[SelectDataField.VENDOR]?: VendorSchema;
|
|
66
73
|
[SelectDataField.WORKGROUP]?: WorkgroupSchema;
|
|
67
74
|
};
|
|
68
75
|
export declare type SelectOneResultSchema = {
|
|
@@ -76,7 +83,9 @@ export declare type SelectOneResponseDataSchema = {
|
|
|
76
83
|
[SelectDataField.END_CUSTOMER]?: EndCustomerSchema;
|
|
77
84
|
[SelectDataField.PARTNER]?: PartnerSchema;
|
|
78
85
|
[SelectDataField.PARTNERTAG]?: PartnertagSchema;
|
|
86
|
+
[SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramSchema;
|
|
79
87
|
[SelectDataField.SUBSCRIPTION]?: SubscriptionSchema;
|
|
88
|
+
[SelectDataField.VENDOR]?: VendorSchema;
|
|
80
89
|
[SelectDataField.WORKGROUP]?: WorkgroupSchema;
|
|
81
90
|
};
|
|
82
91
|
export declare type SelectAllQuerySchema = {
|
package/package.json
CHANGED