@arrowsphere/api-client 3.115.0 → 3.116.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/user.d.ts +15 -0
- package/build/graphqlApi/types/entities/user.js +3 -0
- package/build/graphqlApi/types/graphqlApiQueries.d.ts +7 -0
- package/build/graphqlApi/types/graphqlApiQueries.js +2 -0
- package/build/graphqlApi/types/graphqlApiSchemas.d.ts +7 -0
- package/package.json +1 -1
|
@@ -8,6 +8,7 @@ export * from './types/entities/order';
|
|
|
8
8
|
export * from './types/entities/partnertag';
|
|
9
9
|
export * from './types/entities/subscription';
|
|
10
10
|
export * from './types/entities/specialPriceRate';
|
|
11
|
+
export * from './types/entities/user';
|
|
11
12
|
export * from './types/entities/vendor';
|
|
12
13
|
export * from './types/entities/workgroup';
|
|
13
14
|
export * from './graphqlApiClient';
|
|
@@ -24,6 +24,7 @@ __exportStar(require("./types/entities/order"), exports);
|
|
|
24
24
|
__exportStar(require("./types/entities/partnertag"), exports);
|
|
25
25
|
__exportStar(require("./types/entities/subscription"), exports);
|
|
26
26
|
__exportStar(require("./types/entities/specialPriceRate"), exports);
|
|
27
|
+
__exportStar(require("./types/entities/user"), exports);
|
|
27
28
|
__exportStar(require("./types/entities/vendor"), exports);
|
|
28
29
|
__exportStar(require("./types/entities/workgroup"), exports);
|
|
29
30
|
__exportStar(require("./graphqlApiClient"), exports);
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ContactsType } from './contact';
|
|
2
|
+
export declare type UserType = {
|
|
3
|
+
id?: number;
|
|
4
|
+
allowDirectLogin?: boolean;
|
|
5
|
+
contact?: ContactsType;
|
|
6
|
+
validatedAt?: string;
|
|
7
|
+
};
|
|
8
|
+
export declare type UserHistoryType = {
|
|
9
|
+
id?: number;
|
|
10
|
+
action?: string;
|
|
11
|
+
createdAt?: string;
|
|
12
|
+
description?: string;
|
|
13
|
+
impactedUser?: UserType;
|
|
14
|
+
originatorUser?: UserType;
|
|
15
|
+
};
|
|
@@ -4,6 +4,7 @@ import { LicenseBudgetType } from './entities/licenseBudget';
|
|
|
4
4
|
import { PartnertagType } from './entities/partnertag';
|
|
5
5
|
import { SubscribedProgramType } from './entities/program';
|
|
6
6
|
import { SubscriptionType } from './entities/subscription';
|
|
7
|
+
import { UserHistoryType, UserType } from './entities/user';
|
|
7
8
|
import { WorkgroupType } from './entities/workgroup';
|
|
8
9
|
import { ErrorsSchema, PageSchema, SelectAllResponseDataSchema, SelectOneResponseDataSchema } from './graphqlApiSchemas';
|
|
9
10
|
/**
|
|
@@ -119,6 +120,8 @@ export declare enum SelectDataField {
|
|
|
119
120
|
PARTNERTAG = "partnertag",
|
|
120
121
|
SUBSCRIBED_PROGRAM = "subscribedProgram",
|
|
121
122
|
SUBSCRIPTION = "subscription",
|
|
123
|
+
USER = "user",
|
|
124
|
+
USER_HISTORY = "userHistory",
|
|
122
125
|
WORKGROUP = "workgroup"
|
|
123
126
|
}
|
|
124
127
|
export declare type SelectAllResultType = {
|
|
@@ -138,6 +141,8 @@ export declare type SelectAllResponseDataType = {
|
|
|
138
141
|
[SelectDataField.PARTNERTAG]?: PartnertagType[];
|
|
139
142
|
[SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramType[];
|
|
140
143
|
[SelectDataField.SUBSCRIPTION]?: SubscriptionType[];
|
|
144
|
+
[SelectDataField.USER]?: UserType[];
|
|
145
|
+
[SelectDataField.USER_HISTORY]?: UserHistoryType[];
|
|
141
146
|
[SelectDataField.WORKGROUP]?: WorkgroupType[];
|
|
142
147
|
};
|
|
143
148
|
export declare enum ErrorsField {
|
|
@@ -183,6 +188,8 @@ export declare type SelectOneResponseDataType = {
|
|
|
183
188
|
[SelectDataField.PARTNERTAG]?: PartnertagType;
|
|
184
189
|
[SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramType;
|
|
185
190
|
[SelectDataField.SUBSCRIPTION]?: SubscriptionType;
|
|
191
|
+
[SelectDataField.USER]?: UserType;
|
|
192
|
+
[SelectDataField.USER_HISTORY]?: UserHistoryType;
|
|
186
193
|
[SelectDataField.WORKGROUP]?: WorkgroupType;
|
|
187
194
|
};
|
|
188
195
|
export declare enum QueryVariablesField {
|
|
@@ -99,6 +99,8 @@ var SelectDataField;
|
|
|
99
99
|
SelectDataField["PARTNERTAG"] = "partnertag";
|
|
100
100
|
SelectDataField["SUBSCRIBED_PROGRAM"] = "subscribedProgram";
|
|
101
101
|
SelectDataField["SUBSCRIPTION"] = "subscription";
|
|
102
|
+
SelectDataField["USER"] = "user";
|
|
103
|
+
SelectDataField["USER_HISTORY"] = "userHistory";
|
|
102
104
|
SelectDataField["WORKGROUP"] = "workgroup";
|
|
103
105
|
})(SelectDataField = exports.SelectDataField || (exports.SelectDataField = {}));
|
|
104
106
|
var ErrorsField;
|
|
@@ -12,6 +12,7 @@ import { OrderItemsType, OrdersType } from './entities/order';
|
|
|
12
12
|
import { VendorsType } from './entities/vendor';
|
|
13
13
|
import { SubscribedProgramType } from './entities/program';
|
|
14
14
|
import { LicenseBudgetNotificationType, LicenseBudgetType } from './entities/licenseBudget';
|
|
15
|
+
import { UserHistoryType, UserType } from './entities/user';
|
|
15
16
|
export declare type PartnertagSchema = Schema<PartnertagType, boolean>;
|
|
16
17
|
declare type MissingFieldsOfCompanySchema = {
|
|
17
18
|
contacts?: ContactsSchema;
|
|
@@ -59,6 +60,8 @@ export declare type ProgramSchema = Schema<ProgramType, boolean>;
|
|
|
59
60
|
export declare type SpecialPriceRateSchema = Schema<SpecialPriceRateType, boolean>;
|
|
60
61
|
export declare type SubscribedProgramSchema = Schema<SubscribedProgramType, boolean>;
|
|
61
62
|
export declare type SubscriptionSchema = Schema<SubscriptionType, boolean>;
|
|
63
|
+
export declare type UserSchema = Schema<UserType, boolean>;
|
|
64
|
+
export declare type UserHistorySchema = Schema<UserHistoryType, boolean>;
|
|
62
65
|
export declare type VendorSchema = Schema<VendorsType, boolean>;
|
|
63
66
|
export declare type WorkgroupSchema = Schema<WorkgroupType, boolean>;
|
|
64
67
|
export declare type SelectAllResultSchema = {
|
|
@@ -76,6 +79,8 @@ export declare type SelectAllResponseDataSchema = {
|
|
|
76
79
|
[SelectDataField.PARTNERTAG]?: PartnertagSchema;
|
|
77
80
|
[SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramSchema;
|
|
78
81
|
[SelectDataField.SUBSCRIPTION]?: SubscriptionSchema;
|
|
82
|
+
[SelectDataField.USER]?: UserSchema;
|
|
83
|
+
[SelectDataField.USER_HISTORY]?: UserHistorySchema;
|
|
79
84
|
[SelectDataField.WORKGROUP]?: WorkgroupSchema;
|
|
80
85
|
};
|
|
81
86
|
export declare type SelectOneResultSchema = {
|
|
@@ -92,6 +97,8 @@ export declare type SelectOneResponseDataSchema = {
|
|
|
92
97
|
[SelectDataField.PARTNERTAG]?: PartnertagSchema;
|
|
93
98
|
[SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramSchema;
|
|
94
99
|
[SelectDataField.SUBSCRIPTION]?: SubscriptionSchema;
|
|
100
|
+
[SelectDataField.USER]?: UserSchema;
|
|
101
|
+
[SelectDataField.USER_HISTORY]?: UserHistorySchema;
|
|
95
102
|
[SelectDataField.WORKGROUP]?: WorkgroupSchema;
|
|
96
103
|
};
|
|
97
104
|
export declare type SelectAllQuerySchema = {
|
package/package.json
CHANGED