@arrowsphere/api-client 3.115.0-rc.bdj.4 → 3.115.0-rc.bdj.7
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.
|
@@ -2,8 +2,13 @@ import { ContactsType } from './contact';
|
|
|
2
2
|
export declare type UserType = {
|
|
3
3
|
id?: number;
|
|
4
4
|
allowDirectLogin?: boolean;
|
|
5
|
-
validatedAt?: string;
|
|
6
5
|
contact?: ContactsType;
|
|
6
|
+
extraData?: UserExtraDataType;
|
|
7
|
+
validatedAt?: string;
|
|
8
|
+
};
|
|
9
|
+
export declare type UserExtraDataType = {
|
|
10
|
+
id?: number;
|
|
11
|
+
canBeDeleted?: boolean;
|
|
7
12
|
};
|
|
8
13
|
export declare type UserHistoryType = {
|
|
9
14
|
id?: number;
|
|
@@ -4,7 +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 } from './entities/user';
|
|
7
|
+
import { UserHistoryType, UserType } from './entities/user';
|
|
8
8
|
import { WorkgroupType } from './entities/workgroup';
|
|
9
9
|
import { ErrorsSchema, PageSchema, SelectAllResponseDataSchema, SelectOneResponseDataSchema } from './graphqlApiSchemas';
|
|
10
10
|
/**
|
|
@@ -141,6 +141,7 @@ export declare type SelectAllResponseDataType = {
|
|
|
141
141
|
[SelectDataField.PARTNERTAG]?: PartnertagType[];
|
|
142
142
|
[SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramType[];
|
|
143
143
|
[SelectDataField.SUBSCRIPTION]?: SubscriptionType[];
|
|
144
|
+
[SelectDataField.USER]?: UserType[];
|
|
144
145
|
[SelectDataField.USER_HISTORY]?: UserHistoryType[];
|
|
145
146
|
[SelectDataField.WORKGROUP]?: WorkgroupType[];
|
|
146
147
|
};
|
|
@@ -187,6 +188,8 @@ export declare type SelectOneResponseDataType = {
|
|
|
187
188
|
[SelectDataField.PARTNERTAG]?: PartnertagType;
|
|
188
189
|
[SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramType;
|
|
189
190
|
[SelectDataField.SUBSCRIPTION]?: SubscriptionType;
|
|
191
|
+
[SelectDataField.USER]?: UserType;
|
|
192
|
+
[SelectDataField.USER_HISTORY]?: UserHistoryType;
|
|
190
193
|
[SelectDataField.WORKGROUP]?: WorkgroupType;
|
|
191
194
|
};
|
|
192
195
|
export declare enum QueryVariablesField {
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "https://github.com/ArrowSphere/nodejs-api-client.git"
|
|
6
6
|
},
|
|
7
|
-
"version": "3.115.0-rc.bdj.
|
|
7
|
+
"version": "3.115.0-rc.bdj.7",
|
|
8
8
|
"description": "Node.js client for ArrowSphere's public API",
|
|
9
9
|
"main": "build/index.js",
|
|
10
10
|
"types": "build/index.d.ts",
|