@adminide-stack/core 3.1.2-alpha.13 → 3.1.2-alpha.140
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/lib/constants/configuration.d.ts +2 -1
- package/lib/constants/configuration.js +3 -2
- package/lib/constants/configuration.js.map +1 -1
- package/lib/core/configurations/configuration.d.ts +31 -15
- package/lib/core/configurations/configuration.js +279 -47
- package/lib/core/configurations/configuration.js.map +1 -1
- package/lib/core/configurations/configuration.test.d.ts +1 -0
- package/lib/core/configurations/configuration.test.js +20 -0
- package/lib/core/configurations/configuration.test.js.map +1 -0
- package/lib/core/configurations/events/AbstractConfigurationChangEvent.d.ts +0 -0
- package/lib/core/configurations/events/AbstractConfigurationChangEvent.js +25 -0
- package/lib/core/configurations/events/AbstractConfigurationChangEvent.js.map +1 -0
- package/lib/core/configurations/events/AllKeysConfigurationChangeEvent.d.ts +0 -0
- package/lib/core/configurations/events/AllKeysConfigurationChangeEvent.js +27 -0
- package/lib/core/configurations/events/AllKeysConfigurationChangeEvent.js.map +1 -0
- package/lib/core/configurations/events/ConfigurationChangeEvent.d.ts +21 -0
- package/lib/core/configurations/events/ConfigurationChangeEvent.js +59 -0
- package/lib/core/configurations/events/ConfigurationChangeEvent.js.map +1 -0
- package/lib/core/configurations/events/OrganizationConfigurationChangeEvent.d.ts +0 -0
- package/lib/core/configurations/events/OrganizationConfigurationChangeEvent.js +37 -0
- package/lib/core/configurations/events/OrganizationConfigurationChangeEvent.js.map +1 -0
- package/lib/core/configurations/events/index.d.ts +1 -4
- package/lib/core/configurations/events/index.js +4 -4
- package/lib/core/configurations/events/index.js.map +1 -1
- package/lib/core/configurations/helpers/configuration.d.ts +2 -8
- package/lib/core/configurations/helpers/configuration.js +23 -40
- package/lib/core/configurations/helpers/configuration.js.map +1 -1
- package/lib/core/configurations/models/{configuration-model.d.ts → ConfigurationModel.d.ts} +11 -4
- package/lib/core/configurations/models/{configuration-model.js → ConfigurationModel.js} +89 -29
- package/lib/core/configurations/models/ConfigurationModel.js.map +1 -0
- package/lib/core/configurations/models/ConfigurationModel.test.d.ts +1 -0
- package/lib/core/configurations/models/ConfigurationModel.test.js +172 -0
- package/lib/core/configurations/models/ConfigurationModel.test.js.map +1 -0
- package/lib/core/configurations/models/index.d.ts +1 -1
- package/lib/core/configurations/models/index.js +1 -1
- package/lib/core/configurations/models/index.js.map +1 -1
- package/lib/core/organization/configuration.d.ts +4 -19
- package/lib/core/organization/configuration.js +2 -68
- package/lib/core/organization/configuration.js.map +1 -1
- package/lib/enums/integrations.d.ts +2 -1
- package/lib/enums/integrations.js +1 -0
- package/lib/enums/integrations.js.map +1 -1
- package/lib/errors/auth-error-messages.js +1 -1
- package/lib/interfaces/configuration/configuration.d.ts +89 -1
- package/lib/interfaces/configuration/configuration.js +8 -0
- package/lib/interfaces/configuration/configuration.js.map +1 -1
- package/lib/interfaces/configuration/configurationRegistry.d.ts +144 -0
- package/lib/interfaces/configuration/configurationRegistry.js +3 -0
- package/lib/interfaces/configuration/configurationRegistry.js.map +1 -0
- package/lib/interfaces/configuration/configuraton-service.d.ts +7 -11
- package/lib/interfaces/configuration/event.d.ts +7 -10
- package/lib/interfaces/configuration/index.d.ts +1 -0
- package/lib/interfaces/configuration/index.js +1 -0
- package/lib/interfaces/configuration/index.js.map +1 -1
- package/lib/interfaces/generated/generated-models.d.ts +709 -430
- package/lib/interfaces/generated/generated-models.js +122 -124
- package/lib/interfaces/generated/generated-models.js.map +1 -1
- package/lib/interfaces/workbench-exports.d.ts +0 -4
- package/lib/interfaces/workbench-exports.js +3 -0
- package/lib/interfaces/workbench-exports.js.map +1 -1
- package/lib/modules/account-api/enums/index.d.ts +22 -11
- package/lib/modules/account-api/enums/index.js +26 -11
- package/lib/modules/account-api/enums/index.js.map +1 -1
- package/lib/services/abstract-configuration.d.ts +12 -12
- package/lib/services/abstract-configuration.js +59 -6
- package/lib/services/abstract-configuration.js.map +1 -1
- package/lib/services/abstract-organization-context-service.js +5 -5
- package/lib/services/abstract-organization-context-service.js.map +1 -1
- package/package.json +5 -2
- package/lib/core/configurations/events/abstract-configuration-change-event.d.ts +0 -6
- package/lib/core/configurations/events/abstract-configuration-change-event.js +0 -27
- package/lib/core/configurations/events/abstract-configuration-change-event.js.map +0 -1
- package/lib/core/configurations/events/all-keys-configuration-change-event.d.ts +0 -17
- package/lib/core/configurations/events/all-keys-configuration-change-event.js +0 -33
- package/lib/core/configurations/events/all-keys-configuration-change-event.js.map +0 -1
- package/lib/core/configurations/events/configuration-change-event.d.ts +0 -24
- package/lib/core/configurations/events/configuration-change-event.js +0 -84
- package/lib/core/configurations/events/configuration-change-event.js.map +0 -1
- package/lib/core/configurations/events/organization-configuration-change-event.d.ts +0 -15
- package/lib/core/configurations/events/organization-configuration-change-event.js +0 -39
- package/lib/core/configurations/events/organization-configuration-change-event.js.map +0 -1
- package/lib/core/configurations/models/configuration-model.js.map +0 -1
@@ -43,7 +43,7 @@ export declare type Scalars = {
|
|
43
43
|
URI: URI;
|
44
44
|
URIInput: URI | UriComponents;
|
45
45
|
};
|
46
|
-
export declare type IAccessRole = IDefaultRole | IOrganizationRole | IResourceRole |
|
46
|
+
export declare type IAccessRole = IDefaultRole | IOrganizationRole | IResourceRole | IApplicationRole;
|
47
47
|
/** An access token that grants to the holder the privileges of the user who created it. */
|
48
48
|
export declare type IAccessToken = INode & {
|
49
49
|
__typename?: 'AccessToken';
|
@@ -97,62 +97,38 @@ export declare type IAccessToken_Input = {
|
|
97
97
|
lastUsedAt?: Maybe<Scalars['DateTime']>;
|
98
98
|
orgName: Scalars['String'];
|
99
99
|
};
|
100
|
-
export declare enum
|
100
|
+
export declare enum IAccountServiceAction {
|
101
101
|
OnAccountCreated = "onAccountCreated",
|
102
|
+
OnAccountDeleted = "onAccountDeleted",
|
102
103
|
OnAccountUpdated = "onAccountUpdated",
|
103
104
|
OnEmailVerified = "onEmailVerified",
|
104
|
-
OnAccountDeleted = "onAccountDeleted",
|
105
105
|
OnPasswordReset = "onPasswordReset",
|
106
|
-
OnPictureChanged = "onPictureChanged"
|
107
|
-
}
|
108
|
-
export declare type IAccountService = {
|
109
|
-
__typename?: 'AccountService';
|
110
|
-
createDefaultAccount?: Maybe<IUserAccount>;
|
111
|
-
createAccount?: Maybe<IUserAccount>;
|
112
|
-
findAccountById?: Maybe<IUserAccount>;
|
113
|
-
findAccountByUser?: Maybe<IUserAccount>;
|
114
|
-
updateAccount?: Maybe<IUserAccount>;
|
115
|
-
deleteAccount?: Maybe<Scalars['Boolean']>;
|
116
|
-
dispatchUserVerificationEmail?: Maybe<Scalars['AnyObject']>;
|
117
|
-
verifyUserEmailVerificationToken?: Maybe<Scalars['Boolean']>;
|
118
|
-
};
|
119
|
-
export declare type IAccountServiceCreateDefaultAccountArgs = {
|
120
|
-
user?: Maybe<Scalars['AnyObject']>;
|
121
|
-
optional?: Maybe<Scalars['AnyObject']>;
|
122
|
-
};
|
123
|
-
export declare type IAccountServiceCreateAccountArgs = {
|
124
|
-
account?: Maybe<IUserAccountCreateRequest>;
|
125
|
-
};
|
126
|
-
export declare type IAccountServiceFindAccountByIdArgs = {
|
127
|
-
id?: Maybe<Scalars['String']>;
|
128
|
-
};
|
129
|
-
export declare type IAccountServiceFindAccountByUserArgs = {
|
130
|
-
id?: Maybe<Scalars['String']>;
|
131
|
-
};
|
132
|
-
export declare type IAccountServiceUpdateAccountArgs = {
|
133
|
-
account?: Maybe<IUserAccountUpdateRequest>;
|
134
|
-
};
|
135
|
-
export declare type IAccountServiceDeleteAccountArgs = {
|
136
|
-
account?: Maybe<IUserAccountRemoveRequest>;
|
137
|
-
};
|
138
|
-
export declare type IAccountServiceDispatchUserVerificationEmailArgs = {
|
139
|
-
token?: Maybe<IUserTokenInput>;
|
140
|
-
};
|
141
|
-
export declare type IAccountServiceVerifyUserEmailVerificationTokenArgs = {
|
142
|
-
userId?: Maybe<Scalars['String']>;
|
143
|
-
token?: Maybe<Scalars['String']>;
|
144
|
-
};
|
145
|
-
export declare enum IAccountServiceAction {
|
106
|
+
OnPictureChanged = "onPictureChanged",
|
146
107
|
CreateDefaultAccount = "createDefaultAccount",
|
108
|
+
UpdateUserAccount = "updateUserAccount",
|
147
109
|
CreateAccount = "createAccount",
|
148
110
|
FindAccountById = "findAccountById",
|
149
111
|
FindAccountByUser = "findAccountByUser",
|
150
112
|
FindAccountByEmail = "findAccountByEmail",
|
113
|
+
GetUsers = "getUsers",
|
151
114
|
UpdateAccount = "updateAccount",
|
152
115
|
DeleteAccount = "deleteAccount",
|
153
|
-
|
154
|
-
|
155
|
-
|
116
|
+
AccountOnBoarding = "accountOnBoarding",
|
117
|
+
VerifyUserEmailVerificationToken = "verifyUserEmailVerificationToken",
|
118
|
+
DeleteUserAccount = "deleteUserAccount",
|
119
|
+
ResendUserEmailVerificationEmail = "resendUserEmailVerificationEmail",
|
120
|
+
DispatchUserVerificationEmail = "dispatchUserVerificationEmail",
|
121
|
+
DispatchUserPasswordResetEmail = "dispatchUserPasswordResetEmail",
|
122
|
+
GetUserTokenDetails = "getUserTokenDetails",
|
123
|
+
AddUserToken = "addUserToken",
|
124
|
+
RemoveUserToken = "removeUserToken",
|
125
|
+
GetAllUserTokens = "getAllUserTokens",
|
126
|
+
GetUserTokens = "getUserTokens",
|
127
|
+
InitiatePasswordResetProcess = "initiatePasswordResetProcess",
|
128
|
+
ResetUserPassword = "resetUserPassword",
|
129
|
+
SendEmailVerificationCode = "sendEmailVerificationCode",
|
130
|
+
ValidateEmailVerificationCode = "validateEmailVerificationCode",
|
131
|
+
GetUserAccountByEmail = "getUserAccountByEmail"
|
156
132
|
}
|
157
133
|
/**
|
158
134
|
* Teams are groups of organization members that reflect yoru company or group's structure
|
@@ -192,7 +168,6 @@ export declare type IAccountTeamInput = {
|
|
192
168
|
_id?: Maybe<Scalars['String']>;
|
193
169
|
name?: Maybe<Scalars['String']>;
|
194
170
|
title?: Maybe<Scalars['String']>;
|
195
|
-
orgName?: Maybe<Scalars['String']>;
|
196
171
|
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
197
172
|
description?: Maybe<Scalars['String']>;
|
198
173
|
parentTeam?: Maybe<IAccountTeamInput>;
|
@@ -257,6 +232,17 @@ export declare enum IApplicationBillingPlanPolicy {
|
|
257
232
|
Alerts = "Alerts",
|
258
233
|
CustomFields = "CustomFields"
|
259
234
|
}
|
235
|
+
export declare type IApplicationConfiguration = IIConfigurationModel & {
|
236
|
+
__typename?: 'ApplicationConfiguration';
|
237
|
+
/** The ID. */
|
238
|
+
id?: Maybe<Scalars['ID']>;
|
239
|
+
/** The URL to the user's settings. */
|
240
|
+
resource: Scalars['URI'];
|
241
|
+
target?: Maybe<Scalars['Int']>;
|
242
|
+
contents?: Maybe<Scalars['AnyObject']>;
|
243
|
+
keys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
244
|
+
overrides?: Maybe<Array<Maybe<IOverrides>>>;
|
245
|
+
};
|
260
246
|
export declare type IApplicationPolicy = IIConfigurationModel & {
|
261
247
|
__typename?: 'ApplicationPolicy';
|
262
248
|
resource?: Maybe<Scalars['URI']>;
|
@@ -265,8 +251,8 @@ export declare type IApplicationPolicy = IIConfigurationModel & {
|
|
265
251
|
keys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
266
252
|
overrides?: Maybe<Array<Maybe<IOverrides>>>;
|
267
253
|
};
|
268
|
-
export declare type
|
269
|
-
__typename?: '
|
254
|
+
export declare type IApplicationRole = IIConfigurationModel & {
|
255
|
+
__typename?: 'ApplicationRole';
|
270
256
|
resource?: Maybe<Scalars['URI']>;
|
271
257
|
target?: Maybe<Scalars['Int']>;
|
272
258
|
contents?: Maybe<Scalars['AnyObject']>;
|
@@ -291,6 +277,8 @@ export declare enum IApplicationRoles {
|
|
291
277
|
ProjectViewer = "PROJECT_VIEWER",
|
292
278
|
TeamMaintainer = "TEAM_MAINTAINER",
|
293
279
|
TeamMember = "TEAM_MEMBER",
|
280
|
+
/** Role is unknown */
|
281
|
+
Unknown = "UNKNOWN",
|
294
282
|
/** User who is logged in */
|
295
283
|
User = "USER"
|
296
284
|
}
|
@@ -357,6 +345,235 @@ export declare type IAuthUserInput = {
|
|
357
345
|
picture?: Maybe<Scalars['String']>;
|
358
346
|
phoneNo?: Maybe<Scalars['Int']>;
|
359
347
|
};
|
348
|
+
/** Base Account Service */
|
349
|
+
export declare type IBaseAccountService = {
|
350
|
+
__typename?: 'BaseAccountService';
|
351
|
+
createDefaultAccount?: Maybe<IUserAccount>;
|
352
|
+
createAccount?: Maybe<IUserAccount>;
|
353
|
+
updateUserAccount?: Maybe<IUserAccount>;
|
354
|
+
findAccountById?: Maybe<IUserAccount>;
|
355
|
+
findAccountByUser?: Maybe<IUserAccount>;
|
356
|
+
findAccountByEmail?: Maybe<IUserAccount>;
|
357
|
+
getUsers?: Maybe<Array<Maybe<IUserAccount>>>;
|
358
|
+
updateAccount?: Maybe<IUserAccount>;
|
359
|
+
deleteAccount?: Maybe<Scalars['Boolean']>;
|
360
|
+
accountOnBoarding?: Maybe<Scalars['Boolean']>;
|
361
|
+
verifyUserEmailVerificationToken?: Maybe<Scalars['Boolean']>;
|
362
|
+
deleteUserAccount?: Maybe<Scalars['Boolean']>;
|
363
|
+
resendUserEmailVerificationEmail?: Maybe<Scalars['Boolean']>;
|
364
|
+
dispatchUserVerificationEmail?: Maybe<Scalars['AnyObject']>;
|
365
|
+
dispatchUserPasswordResetEmail?: Maybe<Scalars['AnyObject']>;
|
366
|
+
getUserTokenDetails?: Maybe<IUserToken>;
|
367
|
+
addUserToken?: Maybe<Scalars['Boolean']>;
|
368
|
+
removeUserToken?: Maybe<Scalars['Boolean']>;
|
369
|
+
getAllUserTokens?: Maybe<Array<Maybe<IUsersToken>>>;
|
370
|
+
initiatePasswordResetProcess?: Maybe<Scalars['Boolean']>;
|
371
|
+
resetUserPassword?: Maybe<Scalars['Boolean']>;
|
372
|
+
validateUserEmailVerificationToken?: Maybe<Scalars['Boolean']>;
|
373
|
+
sendEmailVerificationToken?: Maybe<Scalars['Boolean']>;
|
374
|
+
};
|
375
|
+
/** Base Account Service */
|
376
|
+
export declare type IBaseAccountServiceCreateDefaultAccountArgs = {
|
377
|
+
user: Scalars['AnyObject'];
|
378
|
+
optional?: Maybe<Scalars['AnyObject']>;
|
379
|
+
};
|
380
|
+
/** Base Account Service */
|
381
|
+
export declare type IBaseAccountServiceCreateAccountArgs = {
|
382
|
+
account: IUserAccountCreateRequest;
|
383
|
+
};
|
384
|
+
/** Base Account Service */
|
385
|
+
export declare type IBaseAccountServiceUpdateUserAccountArgs = {
|
386
|
+
user: Scalars['AnyObject'];
|
387
|
+
userInfo: IUserAuth0UpdateFields;
|
388
|
+
};
|
389
|
+
/** Base Account Service */
|
390
|
+
export declare type IBaseAccountServiceFindAccountByIdArgs = {
|
391
|
+
id: Scalars['String'];
|
392
|
+
};
|
393
|
+
/** Base Account Service */
|
394
|
+
export declare type IBaseAccountServiceFindAccountByUserArgs = {
|
395
|
+
id: Scalars['String'];
|
396
|
+
};
|
397
|
+
/** Base Account Service */
|
398
|
+
export declare type IBaseAccountServiceFindAccountByEmailArgs = {
|
399
|
+
email: Scalars['String'];
|
400
|
+
};
|
401
|
+
/** Base Account Service */
|
402
|
+
export declare type IBaseAccountServiceGetUsersArgs = {
|
403
|
+
where?: Maybe<IUserAccountWhere>;
|
404
|
+
};
|
405
|
+
/** Base Account Service */
|
406
|
+
export declare type IBaseAccountServiceUpdateAccountArgs = {
|
407
|
+
account: IUserAccountUpdateRequest;
|
408
|
+
};
|
409
|
+
/** Base Account Service */
|
410
|
+
export declare type IBaseAccountServiceDeleteAccountArgs = {
|
411
|
+
account: IUserAccountRemoveRequest;
|
412
|
+
};
|
413
|
+
/** Base Account Service */
|
414
|
+
export declare type IBaseAccountServiceAccountOnBoardingArgs = {
|
415
|
+
input: IIOnBoardingParams;
|
416
|
+
context: Scalars['AnyObject'];
|
417
|
+
};
|
418
|
+
/** Base Account Service */
|
419
|
+
export declare type IBaseAccountServiceVerifyUserEmailVerificationTokenArgs = {
|
420
|
+
userId: Scalars['String'];
|
421
|
+
token: Scalars['String'];
|
422
|
+
};
|
423
|
+
/** Base Account Service */
|
424
|
+
export declare type IBaseAccountServiceDeleteUserAccountArgs = {
|
425
|
+
id: Scalars['String'];
|
426
|
+
};
|
427
|
+
/** Base Account Service */
|
428
|
+
export declare type IBaseAccountServiceResendUserEmailVerificationEmailArgs = {
|
429
|
+
id: Scalars['String'];
|
430
|
+
};
|
431
|
+
/** Base Account Service */
|
432
|
+
export declare type IBaseAccountServiceDispatchUserVerificationEmailArgs = {
|
433
|
+
email: Scalars['String'];
|
434
|
+
emailVerificationToken: IUserTokenInput;
|
435
|
+
};
|
436
|
+
/** Base Account Service */
|
437
|
+
export declare type IBaseAccountServiceDispatchUserPasswordResetEmailArgs = {
|
438
|
+
user: IUserAccountInput;
|
439
|
+
token: Scalars['String'];
|
440
|
+
};
|
441
|
+
/** Base Account Service */
|
442
|
+
export declare type IBaseAccountServiceGetUserTokenDetailsArgs = {
|
443
|
+
userId: Scalars['String'];
|
444
|
+
type: ITokenTypesEnum;
|
445
|
+
};
|
446
|
+
/** Base Account Service */
|
447
|
+
export declare type IBaseAccountServiceAddUserTokenArgs = {
|
448
|
+
userId: Scalars['String'];
|
449
|
+
token: IUserTokenInput;
|
450
|
+
};
|
451
|
+
/** Base Account Service */
|
452
|
+
export declare type IBaseAccountServiceRemoveUserTokenArgs = {
|
453
|
+
userId: Scalars['String'];
|
454
|
+
token: IUserTokenInput;
|
455
|
+
};
|
456
|
+
/** Base Account Service */
|
457
|
+
export declare type IBaseAccountServiceGetAllUserTokensArgs = {
|
458
|
+
userIds: Array<Maybe<Scalars['String']>>;
|
459
|
+
tokenTypes: Array<ITokenTypesEnum>;
|
460
|
+
};
|
461
|
+
/** Base Account Service */
|
462
|
+
export declare type IBaseAccountServiceInitiatePasswordResetProcessArgs = {
|
463
|
+
email: Scalars['String'];
|
464
|
+
};
|
465
|
+
/** Base Account Service */
|
466
|
+
export declare type IBaseAccountServiceResetUserPasswordArgs = {
|
467
|
+
input: IUserPasswordResetInput;
|
468
|
+
};
|
469
|
+
/** Base Account Service */
|
470
|
+
export declare type IBaseAccountServiceValidateUserEmailVerificationTokenArgs = {
|
471
|
+
code: Scalars['String'];
|
472
|
+
userAuth0Id: Scalars['String'];
|
473
|
+
email: Scalars['String'];
|
474
|
+
};
|
475
|
+
/** Base Account Service */
|
476
|
+
export declare type IBaseAccountServiceSendEmailVerificationTokenArgs = {
|
477
|
+
email: Scalars['String'];
|
478
|
+
};
|
479
|
+
/** Base Organization Service */
|
480
|
+
export declare type IBaseOrganizationService = {
|
481
|
+
__typename?: 'BaseOrganizationService';
|
482
|
+
getOrganization?: Maybe<IOrganization>;
|
483
|
+
createDefaultOrganization?: Maybe<IOrganization>;
|
484
|
+
getUserOrganizations?: Maybe<Array<Maybe<IOrganization>>>;
|
485
|
+
createOrganization?: Maybe<IOrganization>;
|
486
|
+
updateOrganization?: Maybe<IOrganization>;
|
487
|
+
removeOrganization?: Maybe<Scalars['Boolean']>;
|
488
|
+
getUserOrgRole?: Maybe<IOrgUserRole>;
|
489
|
+
sendInvitation?: Maybe<Scalars['AnyObject']>;
|
490
|
+
declineInvitation?: Maybe<Scalars['Boolean']>;
|
491
|
+
};
|
492
|
+
/** Base Organization Service */
|
493
|
+
export declare type IBaseOrganizationServiceGetOrganizationArgs = {
|
494
|
+
id?: Maybe<Scalars['String']>;
|
495
|
+
};
|
496
|
+
/** Base Organization Service */
|
497
|
+
export declare type IBaseOrganizationServiceCreateDefaultOrganizationArgs = {
|
498
|
+
user?: Maybe<IAuthUserInput>;
|
499
|
+
};
|
500
|
+
/** Base Organization Service */
|
501
|
+
export declare type IBaseOrganizationServiceGetUserOrganizationsArgs = {
|
502
|
+
userId?: Maybe<Scalars['String']>;
|
503
|
+
};
|
504
|
+
/** Base Organization Service */
|
505
|
+
export declare type IBaseOrganizationServiceCreateOrganizationArgs = {
|
506
|
+
workspace: IOrganizationCreateRequest;
|
507
|
+
};
|
508
|
+
/** Base Organization Service */
|
509
|
+
export declare type IBaseOrganizationServiceUpdateOrganizationArgs = {
|
510
|
+
workspace: IOrganizationUpdateRequest;
|
511
|
+
};
|
512
|
+
/** Base Organization Service */
|
513
|
+
export declare type IBaseOrganizationServiceRemoveOrganizationArgs = {
|
514
|
+
workspace: IOrganizationRemoveRequest;
|
515
|
+
};
|
516
|
+
/** Base Organization Service */
|
517
|
+
export declare type IBaseOrganizationServiceGetUserOrgRoleArgs = {
|
518
|
+
orgName: Scalars['String'];
|
519
|
+
userId: Scalars['String'];
|
520
|
+
};
|
521
|
+
/** Base Organization Service */
|
522
|
+
export declare type IBaseOrganizationServiceSendInvitationArgs = {
|
523
|
+
request: IOrganizationInvitationRequest;
|
524
|
+
};
|
525
|
+
/** Base Organization Service */
|
526
|
+
export declare type IBaseOrganizationServiceDeclineInvitationArgs = {
|
527
|
+
id: Scalars['String'];
|
528
|
+
};
|
529
|
+
/** Base Team Service */
|
530
|
+
export declare type IBaseTeamService = {
|
531
|
+
__typename?: 'BaseTeamService';
|
532
|
+
getTeam?: Maybe<IAccountTeam>;
|
533
|
+
getUserTeams?: Maybe<Array<Maybe<IAccountTeam>>>;
|
534
|
+
createTeam?: Maybe<IAccountTeam>;
|
535
|
+
updateTeam?: Maybe<IAccountTeam>;
|
536
|
+
addWorkspaces?: Maybe<IAccountTeam>;
|
537
|
+
removeTeam?: Maybe<Scalars['Boolean']>;
|
538
|
+
createDefaultTeam?: Maybe<IAccountTeam>;
|
539
|
+
sendProjectNotification?: Maybe<Scalars['Boolean']>;
|
540
|
+
};
|
541
|
+
/** Base Team Service */
|
542
|
+
export declare type IBaseTeamServiceGetTeamArgs = {
|
543
|
+
id?: Maybe<Scalars['String']>;
|
544
|
+
};
|
545
|
+
/** Base Team Service */
|
546
|
+
export declare type IBaseTeamServiceGetUserTeamsArgs = {
|
547
|
+
userId?: Maybe<Scalars['String']>;
|
548
|
+
};
|
549
|
+
/** Base Team Service */
|
550
|
+
export declare type IBaseTeamServiceCreateTeamArgs = {
|
551
|
+
team?: Maybe<ITeamCreateRequest>;
|
552
|
+
orgName?: Maybe<Scalars['String']>;
|
553
|
+
};
|
554
|
+
/** Base Team Service */
|
555
|
+
export declare type IBaseTeamServiceUpdateTeamArgs = {
|
556
|
+
team?: Maybe<ITeamUpdateRequest>;
|
557
|
+
};
|
558
|
+
/** Base Team Service */
|
559
|
+
export declare type IBaseTeamServiceAddWorkspacesArgs = {
|
560
|
+
id?: Maybe<Scalars['String']>;
|
561
|
+
workspaces?: Maybe<Array<Maybe<Scalars['String']>>>;
|
562
|
+
};
|
563
|
+
/** Base Team Service */
|
564
|
+
export declare type IBaseTeamServiceRemoveTeamArgs = {
|
565
|
+
team?: Maybe<ITeamRemoveRequest>;
|
566
|
+
};
|
567
|
+
/** Base Team Service */
|
568
|
+
export declare type IBaseTeamServiceCreateDefaultTeamArgs = {
|
569
|
+
organization?: Maybe<IOrganizationInput>;
|
570
|
+
user?: Maybe<IAuthUserInput>;
|
571
|
+
};
|
572
|
+
/** Base Team Service */
|
573
|
+
export declare type IBaseTeamServiceSendProjectNotificationArgs = {
|
574
|
+
teamId?: Maybe<Scalars['String']>;
|
575
|
+
projectName?: Maybe<Scalars['String']>;
|
576
|
+
};
|
360
577
|
export declare enum ICacheControlScope {
|
361
578
|
Public = "PUBLIC",
|
362
579
|
Private = "PRIVATE"
|
@@ -374,8 +591,9 @@ export declare type ICityUpdateInput = {
|
|
374
591
|
state: ITerritorialStateUpdateInput;
|
375
592
|
};
|
376
593
|
export declare enum IClientCacheTypeNames {
|
594
|
+
ApplicationConfiguration = "ApplicationConfiguration",
|
377
595
|
ApplicationPolicy = "ApplicationPolicy",
|
378
|
-
|
596
|
+
ApplicationRole = "ApplicationRole",
|
379
597
|
Configuration = "Configuration",
|
380
598
|
Context = "Context",
|
381
599
|
ContextKeyService = "ContextKeyService",
|
@@ -396,11 +614,13 @@ export declare enum IClientCacheTypeNames {
|
|
396
614
|
OrganizationResourceConfiguration = "OrganizationResourceConfiguration",
|
397
615
|
OrganizationResourceData = "OrganizationResourceData",
|
398
616
|
OrganizationRole = "OrganizationRole",
|
617
|
+
PolicyConfiguration = "PolicyConfiguration",
|
399
618
|
ResourcePolicy = "ResourcePolicy",
|
400
619
|
ResourceRole = "ResourceRole",
|
401
620
|
ResourceUser = "ResourceUser",
|
402
621
|
SettingsGroup = "SettingsGroup",
|
403
622
|
SettingsSection = "SettingsSection",
|
623
|
+
UserAccount = "UserAccount",
|
404
624
|
UserConfiguration = "UserConfiguration"
|
405
625
|
}
|
406
626
|
export declare enum IClientContainerService {
|
@@ -428,6 +648,7 @@ export declare enum IConfigCollectionName {
|
|
428
648
|
Application = "application",
|
429
649
|
Clients = "clients",
|
430
650
|
IntegrationWorkflow = "integrationWorkflow",
|
651
|
+
Integrationconfigurations = "integrationconfigurations",
|
431
652
|
Machines = "machines",
|
432
653
|
Organizations = "organizations",
|
433
654
|
Projects = "projects",
|
@@ -450,7 +671,7 @@ export declare enum IConfigFragmentName {
|
|
450
671
|
/** Billing */
|
451
672
|
BillingPlanPolicies = "billingPlanPolicies"
|
452
673
|
}
|
453
|
-
export declare type IConfiguration = IDefaultConfiguration |
|
674
|
+
export declare type IConfiguration = IDefaultConfiguration | IPolicyConfiguration | IApplicationConfiguration | IUserConfiguration | IMachineConfiguration | IOrganizationConfiguration | IOrganizationResourceConfiguration;
|
454
675
|
export declare enum IConfigurationContributionNames {
|
455
676
|
DefaultPermissions = "defaultPermissions",
|
456
677
|
DefaultPolicies = "defaultPolicies",
|
@@ -461,6 +682,8 @@ export declare enum IConfigurationContributionNames {
|
|
461
682
|
export declare type IConfigurationData = {
|
462
683
|
__typename?: 'ConfigurationData';
|
463
684
|
defaults?: Maybe<IIConfigurationModel>;
|
685
|
+
policy?: Maybe<IIConfigurationModel>;
|
686
|
+
application?: Maybe<IIConfigurationModel>;
|
464
687
|
user?: Maybe<IIConfigurationModel>;
|
465
688
|
machine?: Maybe<IIConfigurationModel>;
|
466
689
|
organization?: Maybe<IIConfigurationModel>;
|
@@ -499,6 +722,15 @@ export declare type IConfigurationOverridesInput = {
|
|
499
722
|
};
|
500
723
|
export declare type IConfigurationPolicy = IDefaultPolicy | IOrganizationPolicy | IResourcePolicy | IApplicationPolicy;
|
501
724
|
export { ConfigurationScope };
|
725
|
+
export declare enum IConfigurationServiceAction {
|
726
|
+
GetAllConfigurationData = "getAllConfigurationData",
|
727
|
+
GetConfiguration = "getConfiguration",
|
728
|
+
GetDefaultSettings = "getDefaultSettings",
|
729
|
+
GetDefaultSettingsResource = "getDefaultSettingsResource",
|
730
|
+
Parser = "parser",
|
731
|
+
ReadFile = "readFile",
|
732
|
+
UpdateValue = "updateValue"
|
733
|
+
}
|
502
734
|
export { ConfigurationTarget };
|
503
735
|
export declare type IConfigurationUpdateEvent = {
|
504
736
|
__typename?: 'ConfigurationUpdateEvent';
|
@@ -673,8 +905,13 @@ export declare type IDeviceInfoInput = {
|
|
673
905
|
os: Scalars['String'];
|
674
906
|
deviceName?: Maybe<Scalars['String']>;
|
675
907
|
browserName?: Maybe<Scalars['String']>;
|
676
|
-
|
908
|
+
platform: IDeviceInfoPlatform;
|
677
909
|
};
|
910
|
+
export declare enum IDeviceInfoPlatform {
|
911
|
+
Mobile = "MOBILE",
|
912
|
+
Web = "WEB",
|
913
|
+
Extension = "EXTENSION"
|
914
|
+
}
|
678
915
|
export declare enum IEditPresentationTypes {
|
679
916
|
Multiline = "Multiline",
|
680
917
|
Singleline = "Singleline"
|
@@ -809,14 +1046,6 @@ export declare type IICity = {
|
|
809
1046
|
createdAt: Scalars['Date'];
|
810
1047
|
updatedAt?: Maybe<Scalars['Date']>;
|
811
1048
|
};
|
812
|
-
export declare type IIConfigurationChangeEvent = {
|
813
|
-
__typename?: 'IConfigurationChangeEvent';
|
814
|
-
source?: Maybe<ConfigurationTarget>;
|
815
|
-
affectedKeys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
816
|
-
sourceConfig?: Maybe<Scalars['AnyObject']>;
|
817
|
-
changedConfiguration?: Maybe<IConfiguration>;
|
818
|
-
changedConfigurationByResource?: Maybe<IOrganizationResourceConfiguration>;
|
819
|
-
};
|
820
1049
|
export declare type IIConfigurationModel = {
|
821
1050
|
resource?: Maybe<Scalars['URI']>;
|
822
1051
|
target?: Maybe<Scalars['Int']>;
|
@@ -951,6 +1180,8 @@ export declare type IIntegrationConfigurationCreateOrUpdateInput = {
|
|
951
1180
|
integrationInfo?: Maybe<Scalars['JSON']>;
|
952
1181
|
userId?: Maybe<Scalars['ID']>;
|
953
1182
|
orgName?: Maybe<Scalars['String']>;
|
1183
|
+
settings?: Maybe<Scalars['AnyObject']>;
|
1184
|
+
settingsConfiguration?: Maybe<Scalars['AnyObject']>;
|
954
1185
|
};
|
955
1186
|
export declare type IIntegrationConfigurationFilterInput = {
|
956
1187
|
id?: Maybe<Scalars['ID']>;
|
@@ -1008,6 +1239,13 @@ export declare type IKeyPathSegment = {
|
|
1008
1239
|
/** The index of the array at this location to descend into. */
|
1009
1240
|
index?: Maybe<Scalars['Int']>;
|
1010
1241
|
};
|
1242
|
+
export declare type ILinkedIdentity = {
|
1243
|
+
__typename?: 'LinkedIdentity';
|
1244
|
+
connection?: Maybe<Scalars['String']>;
|
1245
|
+
isSocial?: Maybe<Scalars['Boolean']>;
|
1246
|
+
provider?: Maybe<Scalars['String']>;
|
1247
|
+
user_id?: Maybe<Scalars['String']>;
|
1248
|
+
};
|
1011
1249
|
export declare type ILoginError = {
|
1012
1250
|
__typename?: 'LoginError';
|
1013
1251
|
timeStamp?: Maybe<Scalars['DateTime']>;
|
@@ -1044,6 +1282,8 @@ export declare enum IMailTemplateId {
|
|
1044
1282
|
BillingNotificationId = "BillingNotificationId",
|
1045
1283
|
/** Prefix with Db to make sure it look into the database */
|
1046
1284
|
DbTeamInivitationId = "DbTeamInivitationId",
|
1285
|
+
/** Prefix with Db to make sure it look into the database */
|
1286
|
+
EmailVerificationOtp = "EMAIL_VERIFICATION_OTP",
|
1047
1287
|
JoinNotifyMember = "JOIN_NOTIFY_MEMBER",
|
1048
1288
|
JoinNotifyOwner = "JOIN_NOTIFY_OWNER",
|
1049
1289
|
/** Prefix with Db to make sure it look into the database */
|
@@ -1096,6 +1336,7 @@ export declare enum IMoleculerServiceName {
|
|
1096
1336
|
AccountsPostEventsService = "AccountsPostEventsService",
|
1097
1337
|
ApiManagementMoleculerService = "ApiManagementMoleculerService",
|
1098
1338
|
AuthUserService = "AuthUserService",
|
1339
|
+
ConfigurationService = "ConfigurationService",
|
1099
1340
|
IntegrationWorkflowService = "IntegrationWorkflowService",
|
1100
1341
|
OrganizationContextService = "OrganizationContextService",
|
1101
1342
|
PaymentEventListener = "PaymentEventListener",
|
@@ -1176,12 +1417,11 @@ export declare type IMutation = {
|
|
1176
1417
|
removedUserAuthIntegration?: Maybe<Scalars['Boolean']>;
|
1177
1418
|
renewAuthToken?: Maybe<IAuthTokens>;
|
1178
1419
|
resendOrganizationInvitation?: Maybe<Scalars['Boolean']>;
|
1179
|
-
resendUserEmailVerificationEmail?: Maybe<Scalars['Boolean']>;
|
1180
1420
|
resetUserPassword?: Maybe<Scalars['Boolean']>;
|
1421
|
+
sendEmailVerificationToken?: Maybe<Scalars['Boolean']>;
|
1181
1422
|
sendOrganizationInvitation?: Maybe<Scalars['Boolean']>;
|
1182
1423
|
sendUserPasswordResetEmail?: Maybe<Scalars['Boolean']>;
|
1183
1424
|
setSettingsValueByResource?: Maybe<Scalars['Boolean']>;
|
1184
|
-
toggleSidebar?: Maybe<Scalars['Boolean']>;
|
1185
1425
|
/** Triggers onUserLoggedIn events */
|
1186
1426
|
updateAuth0UserPassword?: Maybe<Scalars['Boolean']>;
|
1187
1427
|
updateConfiguration?: Maybe<Scalars['Boolean']>;
|
@@ -1198,7 +1438,8 @@ export declare type IMutation = {
|
|
1198
1438
|
updateRoleValue?: Maybe<Scalars['Boolean']>;
|
1199
1439
|
updateSelectedOrgResource?: Maybe<Scalars['Boolean']>;
|
1200
1440
|
updateUserAccount?: Maybe<Scalars['Boolean']>;
|
1201
|
-
|
1441
|
+
validatePasswordResetOtp?: Maybe<Scalars['Boolean']>;
|
1442
|
+
validateUserEmailVerificationToken?: Maybe<Scalars['Boolean']>;
|
1202
1443
|
};
|
1203
1444
|
export declare type IMutationAddSshKeyArgs = {
|
1204
1445
|
key: ISshKeyInput;
|
@@ -1285,6 +1526,8 @@ export declare type IMutationInitializeOrgNameInContextArgs = {
|
|
1285
1526
|
};
|
1286
1527
|
export declare type IMutationInitializePopupIntegrationAuthorizationArgs = {
|
1287
1528
|
code?: Maybe<Scalars['String']>;
|
1529
|
+
codeVerifier?: Maybe<Scalars['String']>;
|
1530
|
+
platform?: Maybe<IDeviceInfoPlatform>;
|
1288
1531
|
};
|
1289
1532
|
export declare type IMutationInitializeTeamInContextArgs = {
|
1290
1533
|
teamName?: Maybe<Scalars['String']>;
|
@@ -1323,14 +1566,14 @@ export declare type IMutationRemoveTeamMemberArgs = {
|
|
1323
1566
|
};
|
1324
1567
|
export declare type IMutationRemoveUserAuthSessionArgs = {
|
1325
1568
|
sessionId?: Maybe<Scalars['String']>;
|
1326
|
-
|
1569
|
+
platform?: Maybe<IDeviceInfoPlatform>;
|
1327
1570
|
};
|
1328
1571
|
export declare type IMutationRemovedUserAuthIntegrationArgs = {
|
1329
1572
|
provider?: Maybe<Scalars['String']>;
|
1330
1573
|
};
|
1331
1574
|
export declare type IMutationRenewAuthTokenArgs = {
|
1332
1575
|
sessionId?: Maybe<Scalars['String']>;
|
1333
|
-
|
1576
|
+
platform?: Maybe<IDeviceInfoPlatform>;
|
1334
1577
|
};
|
1335
1578
|
export declare type IMutationResendOrganizationInvitationArgs = {
|
1336
1579
|
id: Scalars['ID'];
|
@@ -1338,6 +1581,9 @@ export declare type IMutationResendOrganizationInvitationArgs = {
|
|
1338
1581
|
export declare type IMutationResetUserPasswordArgs = {
|
1339
1582
|
input: IUserPasswordResetInput;
|
1340
1583
|
};
|
1584
|
+
export declare type IMutationSendEmailVerificationTokenArgs = {
|
1585
|
+
email: Scalars['String'];
|
1586
|
+
};
|
1341
1587
|
export declare type IMutationSendOrganizationInvitationArgs = {
|
1342
1588
|
request?: Maybe<IOrganizationInvitationRequest>;
|
1343
1589
|
};
|
@@ -1349,9 +1595,6 @@ export declare type IMutationSetSettingsValueByResourceArgs = {
|
|
1349
1595
|
key?: Maybe<Scalars['String']>;
|
1350
1596
|
value?: Maybe<Scalars['String']>;
|
1351
1597
|
};
|
1352
|
-
export declare type IMutationToggleSidebarArgs = {
|
1353
|
-
state: Scalars['Boolean'];
|
1354
|
-
};
|
1355
1598
|
export declare type IMutationUpdateAuth0UserPasswordArgs = {
|
1356
1599
|
userId?: Maybe<Scalars['String']>;
|
1357
1600
|
password?: Maybe<Scalars['String']>;
|
@@ -1435,8 +1678,12 @@ export declare type IMutationUpdateSelectedOrgResourceArgs = {
|
|
1435
1678
|
export declare type IMutationUpdateUserAccountArgs = {
|
1436
1679
|
userInfo?: Maybe<IUserAuth0UpdateFields>;
|
1437
1680
|
};
|
1438
|
-
export declare type
|
1439
|
-
|
1681
|
+
export declare type IMutationValidatePasswordResetOtpArgs = {
|
1682
|
+
email: Scalars['String'];
|
1683
|
+
code: Scalars['String'];
|
1684
|
+
};
|
1685
|
+
export declare type IMutationValidateUserEmailVerificationTokenArgs = {
|
1686
|
+
code: Scalars['String'];
|
1440
1687
|
};
|
1441
1688
|
/** An object with an ID. */
|
1442
1689
|
export declare type INode = {
|
@@ -1457,6 +1704,7 @@ export declare type IOrgMember = {
|
|
1457
1704
|
_id?: Maybe<Scalars['String']>;
|
1458
1705
|
userId?: Maybe<Scalars['String']>;
|
1459
1706
|
role?: Maybe<IApplicationRoles>;
|
1707
|
+
user: IUserAccount;
|
1460
1708
|
isSelf?: Maybe<Scalars['Boolean']>;
|
1461
1709
|
inactive?: Maybe<Scalars['Boolean']>;
|
1462
1710
|
name?: Maybe<Scalars['String']>;
|
@@ -1479,18 +1727,10 @@ export declare type IOrgUser = IIOrgUser & {
|
|
1479
1727
|
role?: Maybe<IApplicationRoles>;
|
1480
1728
|
inactive?: Maybe<Scalars['Boolean']>;
|
1481
1729
|
orgName: Scalars['String'];
|
1482
|
-
user:
|
1730
|
+
user: IUserAccount;
|
1483
1731
|
isSelf: Scalars['Boolean'];
|
1484
1732
|
crossCheckEmail?: Maybe<Scalars['String']>;
|
1485
1733
|
};
|
1486
|
-
export declare type IOrgUserAccunt = INode & {
|
1487
|
-
__typename?: 'OrgUserAccunt';
|
1488
|
-
id: Scalars['ID'];
|
1489
|
-
email?: Maybe<Scalars['String']>;
|
1490
|
-
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1491
|
-
username?: Maybe<Scalars['String']>;
|
1492
|
-
emailVerified?: Maybe<Scalars['Boolean']>;
|
1493
|
-
};
|
1494
1734
|
export declare type IOrgUserInput = {
|
1495
1735
|
userId?: Maybe<Scalars['String']>;
|
1496
1736
|
role?: Maybe<IApplicationRoles>;
|
@@ -1759,46 +1999,6 @@ export declare type IOrganizationRole = IIConfigurationModel & {
|
|
1759
1999
|
keys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1760
2000
|
overrides?: Maybe<Array<Maybe<IOverrides>>>;
|
1761
2001
|
};
|
1762
|
-
export declare type IOrganizationService = {
|
1763
|
-
__typename?: 'OrganizationService';
|
1764
|
-
getOrganization?: Maybe<IOrganization>;
|
1765
|
-
createDefaultOrganization?: Maybe<IOrganization>;
|
1766
|
-
getUserOrganizations?: Maybe<Array<Maybe<IOrganization>>>;
|
1767
|
-
createOrganization?: Maybe<IOrganization>;
|
1768
|
-
updateOrganization?: Maybe<IOrganization>;
|
1769
|
-
removeOrganization?: Maybe<Scalars['Boolean']>;
|
1770
|
-
getUserOrgRole?: Maybe<IOrgUserRole>;
|
1771
|
-
sendInvitation?: Maybe<Scalars['AnyObject']>;
|
1772
|
-
declineInvitation?: Maybe<Scalars['Boolean']>;
|
1773
|
-
};
|
1774
|
-
export declare type IOrganizationServiceGetOrganizationArgs = {
|
1775
|
-
id?: Maybe<Scalars['String']>;
|
1776
|
-
};
|
1777
|
-
export declare type IOrganizationServiceCreateDefaultOrganizationArgs = {
|
1778
|
-
user?: Maybe<IAuthUserInput>;
|
1779
|
-
};
|
1780
|
-
export declare type IOrganizationServiceGetUserOrganizationsArgs = {
|
1781
|
-
userId?: Maybe<Scalars['String']>;
|
1782
|
-
};
|
1783
|
-
export declare type IOrganizationServiceCreateOrganizationArgs = {
|
1784
|
-
workspace: IOrganizationCreateRequest;
|
1785
|
-
};
|
1786
|
-
export declare type IOrganizationServiceUpdateOrganizationArgs = {
|
1787
|
-
workspace: IOrganizationUpdateRequest;
|
1788
|
-
};
|
1789
|
-
export declare type IOrganizationServiceRemoveOrganizationArgs = {
|
1790
|
-
workspace: IOrganizationRemoveRequest;
|
1791
|
-
};
|
1792
|
-
export declare type IOrganizationServiceGetUserOrgRoleArgs = {
|
1793
|
-
orgName: Scalars['String'];
|
1794
|
-
userId: Scalars['String'];
|
1795
|
-
};
|
1796
|
-
export declare type IOrganizationServiceSendInvitationArgs = {
|
1797
|
-
request: IOrganizationInvitationRequest;
|
1798
|
-
};
|
1799
|
-
export declare type IOrganizationServiceDeclineInvitationArgs = {
|
1800
|
-
id: Scalars['String'];
|
1801
|
-
};
|
1802
2002
|
export declare enum IOrganizationServiceAction {
|
1803
2003
|
GetOrganization = "getOrganization",
|
1804
2004
|
CreateDefaultOrganization = "createDefaultOrganization",
|
@@ -1850,6 +2050,7 @@ export declare type IOrganizationsDeletedEvent = {
|
|
1850
2050
|
};
|
1851
2051
|
export declare type IOverrides = {
|
1852
2052
|
__typename?: 'Overrides';
|
2053
|
+
keys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1853
2054
|
contents?: Maybe<Scalars['AnyObject']>;
|
1854
2055
|
identifiers?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1855
2056
|
};
|
@@ -1901,6 +2102,17 @@ export declare type IPhoneNumberInput = {
|
|
1901
2102
|
countryCode?: Maybe<Scalars['String']>;
|
1902
2103
|
phoneNumber?: Maybe<Scalars['String']>;
|
1903
2104
|
};
|
2105
|
+
export declare type IPolicyConfiguration = IIConfigurationModel & {
|
2106
|
+
__typename?: 'PolicyConfiguration';
|
2107
|
+
/** The ID. */
|
2108
|
+
id?: Maybe<Scalars['ID']>;
|
2109
|
+
/** The URL to the user's settings. */
|
2110
|
+
resource: Scalars['URI'];
|
2111
|
+
target?: Maybe<Scalars['Int']>;
|
2112
|
+
contents?: Maybe<Scalars['AnyObject']>;
|
2113
|
+
keys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2114
|
+
overrides?: Maybe<Array<Maybe<IOverrides>>>;
|
2115
|
+
};
|
1904
2116
|
export declare type IPolicySubject = {
|
1905
2117
|
__typename?: 'PolicySubject';
|
1906
2118
|
/** The URL to the policies. */
|
@@ -2061,11 +2273,18 @@ export declare type IQuery = {
|
|
2061
2273
|
externalAccounts: IExternalAccountConnection;
|
2062
2274
|
/** Fetches a User from Auth0 Service */
|
2063
2275
|
fetchAuth0User?: Maybe<IUserProfile>;
|
2276
|
+
/**
|
2277
|
+
* fetchUserAuthorizedDevices
|
2278
|
+
* @deprecated not used
|
2279
|
+
* @deprecated Field no longer supported
|
2280
|
+
*/
|
2064
2281
|
fetchUserAuthorizedDevices?: Maybe<Array<Maybe<IUserDevice>>>;
|
2282
|
+
fetchUserSessions?: Maybe<Array<Maybe<IUserSession>>>;
|
2065
2283
|
filterIntegrationConfiguration?: Maybe<Array<Maybe<IIntegrationConfiguration>>>;
|
2066
2284
|
getAccounts?: Maybe<Array<Maybe<IUserAccount>>>;
|
2067
2285
|
getAllCountries?: Maybe<Array<Maybe<ICountry>>>;
|
2068
2286
|
getAllIntegrationConfigurations?: Maybe<IIntegrationConfigurationsOutput>;
|
2287
|
+
getAllUsersTokens?: Maybe<Array<Maybe<IUsersToken>>>;
|
2069
2288
|
getConfiguration?: Maybe<Array<Maybe<IConfiguration>>>;
|
2070
2289
|
getConfigurationData?: Maybe<IConfigurationData>;
|
2071
2290
|
getConfigurationPolicies?: Maybe<Array<Maybe<IConfigurationPolicy>>>;
|
@@ -2118,7 +2337,6 @@ export declare type IQuery = {
|
|
2118
2337
|
resolveConfiguration?: Maybe<Scalars['AnyObject']>;
|
2119
2338
|
resolveSettings?: Maybe<Array<Maybe<IContributionSettings>>>;
|
2120
2339
|
selectedOrgResource?: Maybe<IContext>;
|
2121
|
-
sidebarState?: Maybe<Scalars['Boolean']>;
|
2122
2340
|
team?: Maybe<IAccountTeam>;
|
2123
2341
|
teams?: Maybe<Array<Maybe<IAccountTeam>>>;
|
2124
2342
|
/** The policies for the viewer. */
|
@@ -2175,6 +2393,10 @@ export declare type IQueryGetAllIntegrationConfigurationsArgs = {
|
|
2175
2393
|
skip?: Maybe<Scalars['Int']>;
|
2176
2394
|
sort?: Maybe<ISort>;
|
2177
2395
|
};
|
2396
|
+
export declare type IQueryGetAllUsersTokensArgs = {
|
2397
|
+
userIds?: Maybe<Array<Scalars['String']>>;
|
2398
|
+
types: Array<ITokenTypesEnum>;
|
2399
|
+
};
|
2178
2400
|
export declare type IQueryGetConfigurationArgs = {
|
2179
2401
|
input?: Maybe<Array<Maybe<IConfigurationInput>>>;
|
2180
2402
|
};
|
@@ -2546,7 +2768,6 @@ export declare type ISubscriptionSubscribeToPolicyUpdateArgs = {
|
|
2546
2768
|
export declare type ITeamCreateRequest = {
|
2547
2769
|
name?: Maybe<Scalars['String']>;
|
2548
2770
|
title: Scalars['String'];
|
2549
|
-
orgName: Scalars['String'];
|
2550
2771
|
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2551
2772
|
emails?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2552
2773
|
teamMembers?: Maybe<Array<Maybe<ITeamMemberInput>>>;
|
@@ -2556,7 +2777,6 @@ export declare type ITeamCreateRequest = {
|
|
2556
2777
|
export declare type ITeamCreationRequest = {
|
2557
2778
|
name?: Maybe<Scalars['String']>;
|
2558
2779
|
title: Scalars['String'];
|
2559
|
-
orgName: Scalars['String'];
|
2560
2780
|
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2561
2781
|
emails?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2562
2782
|
parentTeam?: Maybe<Scalars['String']>;
|
@@ -2591,44 +2811,6 @@ export declare type ITeamRemoveRequest = {
|
|
2591
2811
|
id: Scalars['String'];
|
2592
2812
|
requestedUserId?: Maybe<Scalars['String']>;
|
2593
2813
|
};
|
2594
|
-
export declare type ITeamService = {
|
2595
|
-
__typename?: 'TeamService';
|
2596
|
-
getTeam?: Maybe<IAccountTeam>;
|
2597
|
-
getUserTeams?: Maybe<Array<Maybe<IAccountTeam>>>;
|
2598
|
-
createTeam?: Maybe<IAccountTeam>;
|
2599
|
-
updateTeam?: Maybe<IAccountTeam>;
|
2600
|
-
addWorkspaces?: Maybe<IAccountTeam>;
|
2601
|
-
removeTeam?: Maybe<Scalars['Boolean']>;
|
2602
|
-
createDefaultTeam?: Maybe<IAccountTeam>;
|
2603
|
-
sendProjectNotification?: Maybe<Scalars['Boolean']>;
|
2604
|
-
};
|
2605
|
-
export declare type ITeamServiceGetTeamArgs = {
|
2606
|
-
id?: Maybe<Scalars['String']>;
|
2607
|
-
};
|
2608
|
-
export declare type ITeamServiceGetUserTeamsArgs = {
|
2609
|
-
userId?: Maybe<Scalars['String']>;
|
2610
|
-
};
|
2611
|
-
export declare type ITeamServiceCreateTeamArgs = {
|
2612
|
-
team?: Maybe<ITeamCreateRequest>;
|
2613
|
-
};
|
2614
|
-
export declare type ITeamServiceUpdateTeamArgs = {
|
2615
|
-
team?: Maybe<ITeamUpdateRequest>;
|
2616
|
-
};
|
2617
|
-
export declare type ITeamServiceAddWorkspacesArgs = {
|
2618
|
-
id?: Maybe<Scalars['String']>;
|
2619
|
-
workspaces?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2620
|
-
};
|
2621
|
-
export declare type ITeamServiceRemoveTeamArgs = {
|
2622
|
-
team?: Maybe<ITeamRemoveRequest>;
|
2623
|
-
};
|
2624
|
-
export declare type ITeamServiceCreateDefaultTeamArgs = {
|
2625
|
-
organization?: Maybe<IOrganizationInput>;
|
2626
|
-
user?: Maybe<IAuthUserInput>;
|
2627
|
-
};
|
2628
|
-
export declare type ITeamServiceSendProjectNotificationArgs = {
|
2629
|
-
teamId?: Maybe<Scalars['String']>;
|
2630
|
-
projectName?: Maybe<Scalars['String']>;
|
2631
|
-
};
|
2632
2814
|
export declare enum ITeamServiceAction {
|
2633
2815
|
GetTeam = "getTeam",
|
2634
2816
|
GetUserTeams = "getUserTeams",
|
@@ -2666,6 +2848,10 @@ export declare type ITerritorialStateUpdateInput = {
|
|
2666
2848
|
name?: Maybe<Scalars['String']>;
|
2667
2849
|
country: Scalars['Int'];
|
2668
2850
|
};
|
2851
|
+
export declare enum ITokenTypesEnum {
|
2852
|
+
EmailVerification = "EMAIL_VERIFICATION",
|
2853
|
+
PasswordReset = "PASSWORD_RESET"
|
2854
|
+
}
|
2669
2855
|
/**
|
2670
2856
|
* The User Account.
|
2671
2857
|
*
|
@@ -2678,8 +2864,8 @@ export declare type ITerritorialStateUpdateInput = {
|
|
2678
2864
|
* @property
|
2679
2865
|
* featureFlags: Any super power given to the user via a super user
|
2680
2866
|
* @property
|
2681
|
-
*
|
2682
|
-
* More than one will exists
|
2867
|
+
* tokens: An array of objects with information about the user's tokens.
|
2868
|
+
* More than one will exists.
|
2683
2869
|
* @property
|
2684
2870
|
* inactive: true if the user is not currently being billed for service.
|
2685
2871
|
* @property
|
@@ -2687,10 +2873,6 @@ export declare type ITerritorialStateUpdateInput = {
|
|
2687
2873
|
* @property
|
2688
2874
|
* userOgs: the orgs and roles for this user on each.
|
2689
2875
|
*/
|
2690
|
-
export declare enum ITokenTypesEnum {
|
2691
|
-
EmailVerification = "EMAIL_VERIFICATION",
|
2692
|
-
PasswordReset = "PASSWORD_RESET"
|
2693
|
-
}
|
2694
2876
|
export declare type IUserAccount = INode & {
|
2695
2877
|
__typename?: 'UserAccount';
|
2696
2878
|
/**
|
@@ -2711,6 +2893,27 @@ export declare type IUserAccount = INode & {
|
|
2711
2893
|
tokens?: Maybe<Array<Maybe<IUserToken>>>;
|
2712
2894
|
username?: Maybe<Scalars['String']>;
|
2713
2895
|
};
|
2896
|
+
/**
|
2897
|
+
* The User Account.
|
2898
|
+
*
|
2899
|
+
* @property
|
2900
|
+
* id: User ID
|
2901
|
+
* @property
|
2902
|
+
* email: The user email
|
2903
|
+
* @property
|
2904
|
+
* emailVerified: ture if email is verified, otherwise false
|
2905
|
+
* @property
|
2906
|
+
* featureFlags: Any super power given to the user via a super user
|
2907
|
+
* @property
|
2908
|
+
* tokens: An array of objects with information about the user's tokens.
|
2909
|
+
* More than one will exists.
|
2910
|
+
* @property
|
2911
|
+
* inactive: true if the user is not currently being billed for service.
|
2912
|
+
* @property
|
2913
|
+
* isBillingLeader: true if user is BillingLeader
|
2914
|
+
* @property
|
2915
|
+
* userOgs: the orgs and roles for this user on each.
|
2916
|
+
*/
|
2714
2917
|
export declare type IUserAccountAccessTokensArgs = {
|
2715
2918
|
first?: Maybe<Scalars['Int']>;
|
2716
2919
|
last?: Maybe<Scalars['Int']>;
|
@@ -2792,7 +2995,7 @@ export declare type IUserAuth0SessionDeviceInfo = {
|
|
2792
2995
|
os?: Maybe<Scalars['String']>;
|
2793
2996
|
deviceName?: Maybe<Scalars['String']>;
|
2794
2997
|
browserName?: Maybe<Scalars['String']>;
|
2795
|
-
|
2998
|
+
platform: IDeviceInfoPlatform;
|
2796
2999
|
};
|
2797
3000
|
export declare type IUserAuth0SessionInfo = {
|
2798
3001
|
__typename?: 'UserAuth0SessionInfo';
|
@@ -2818,7 +3021,9 @@ export declare enum IUserBroadcasterAction {
|
|
2818
3021
|
OnUserLoggedIn = "onUserLoggedIn",
|
2819
3022
|
OnUserCreated = "onUserCreated",
|
2820
3023
|
OnUserUpdated = "onUserUpdated",
|
2821
|
-
OnUserDeleted = "onUserDeleted"
|
3024
|
+
OnUserDeleted = "onUserDeleted",
|
3025
|
+
OnUserSessionRevoked = "onUserSessionRevoked",
|
3026
|
+
OnUserSessionInitialized = "onUserSessionInitialized"
|
2822
3027
|
}
|
2823
3028
|
export declare type IUserConfiguration = IIConfigurationModel & {
|
2824
3029
|
__typename?: 'UserConfiguration';
|
@@ -2883,21 +3088,10 @@ export declare enum IUserOrderBy {
|
|
2883
3088
|
UpdatedAtAsc = "updatedAt_ASC",
|
2884
3089
|
UpdatedAtDesc = "updatedAt_DESC"
|
2885
3090
|
}
|
2886
|
-
/** The user/org M:F join, denormalized on the user/org tables. */
|
2887
|
-
export declare type IUserOrg = {
|
2888
|
-
__typename?: 'UserOrg';
|
2889
|
-
userId: Scalars['String'];
|
2890
|
-
role?: Maybe<IApplicationRoles>;
|
2891
|
-
inactive?: Maybe<Scalars['Boolean']>;
|
2892
|
-
};
|
2893
|
-
export declare type IUserOrgInput = {
|
2894
|
-
userId: Scalars['String'];
|
2895
|
-
role?: Maybe<IApplicationRoles>;
|
2896
|
-
inactive?: Maybe<Scalars['Boolean']>;
|
2897
|
-
};
|
2898
3091
|
export declare type IUserPasswordResetInput = {
|
2899
|
-
|
2900
|
-
|
3092
|
+
newPassword: Scalars['String'];
|
3093
|
+
currentPassword: Scalars['String'];
|
3094
|
+
email: Scalars['String'];
|
2901
3095
|
};
|
2902
3096
|
export declare type IUserPreviousValues = {
|
2903
3097
|
__typename?: 'UserPreviousValues';
|
@@ -2939,6 +3133,16 @@ export declare type IUserProfile = IIAuth0User & IIAuth0UserProfile & IIAuth0Tok
|
|
2939
3133
|
at_hash?: Maybe<Scalars['String']>;
|
2940
3134
|
nonce?: Maybe<Scalars['String']>;
|
2941
3135
|
};
|
3136
|
+
export declare enum IUserServiceAction {
|
3137
|
+
OnEmailVerified = "onEmailVerified"
|
3138
|
+
}
|
3139
|
+
export declare type IUserSession = {
|
3140
|
+
__typename?: 'UserSession';
|
3141
|
+
sessionId?: Maybe<Scalars['String']>;
|
3142
|
+
deviceInfo?: Maybe<IUserAuth0SessionDeviceInfo>;
|
3143
|
+
lastLoginAt?: Maybe<Scalars['Date']>;
|
3144
|
+
lastLoginIp?: Maybe<Scalars['String']>;
|
3145
|
+
};
|
2942
3146
|
export declare type IUserSessionId = {
|
2943
3147
|
__typename?: 'UserSessionId';
|
2944
3148
|
sessionId?: Maybe<Scalars['String']>;
|
@@ -2986,7 +3190,7 @@ export declare type IUserState = {
|
|
2986
3190
|
isProfileFetching?: Maybe<Scalars['Boolean']>;
|
2987
3191
|
/** True incase of social logged in user */
|
2988
3192
|
isSocialLogin?: Maybe<Scalars['Boolean']>;
|
2989
|
-
linkedIdentities?: Maybe<Array<Maybe<
|
3193
|
+
linkedIdentities?: Maybe<Array<Maybe<ILinkedIdentity>>>;
|
2990
3194
|
loggingInProgress?: Maybe<Scalars['Boolean']>;
|
2991
3195
|
/** True while Password verify link sending */
|
2992
3196
|
passwordResetProgress?: Maybe<Scalars['Boolean']>;
|
@@ -3012,6 +3216,11 @@ export declare type IUserTokenInput = {
|
|
3012
3216
|
token: Scalars['String'];
|
3013
3217
|
valid?: Maybe<Scalars['Boolean']>;
|
3014
3218
|
};
|
3219
|
+
export declare type IUsersToken = {
|
3220
|
+
__typename?: 'UsersToken';
|
3221
|
+
userId: Scalars['String'];
|
3222
|
+
tokens?: Maybe<Array<Maybe<IUserToken>>>;
|
3223
|
+
};
|
3015
3224
|
export declare type IViewerPoliciesInput = {
|
3016
3225
|
target: Scalars['Int'];
|
3017
3226
|
/**
|
@@ -3171,12 +3380,6 @@ export declare type IResendOrganizationInvitationMutationVariables = Exact<{
|
|
3171
3380
|
export declare type IResendOrganizationInvitationMutation = ({
|
3172
3381
|
__typename?: 'Mutation';
|
3173
3382
|
} & Pick<IMutation, 'resendOrganizationInvitation'>);
|
3174
|
-
export declare type IResendUserEmailVerificationEmailMutationVariables = Exact<{
|
3175
|
-
[key: string]: never;
|
3176
|
-
}>;
|
3177
|
-
export declare type IResendUserEmailVerificationEmailMutation = ({
|
3178
|
-
__typename?: 'Mutation';
|
3179
|
-
} & Pick<IMutation, 'resendUserEmailVerificationEmail'>);
|
3180
3383
|
export declare type IResetUserPasswordMutationVariables = Exact<{
|
3181
3384
|
input: IUserPasswordResetInput;
|
3182
3385
|
}>;
|
@@ -3189,6 +3392,12 @@ export declare type ISendUserPasswordResetEmailMutationVariables = Exact<{
|
|
3189
3392
|
export declare type ISendUserPasswordResetEmailMutation = ({
|
3190
3393
|
__typename?: 'Mutation';
|
3191
3394
|
} & Pick<IMutation, 'sendUserPasswordResetEmail'>);
|
3395
|
+
export declare type ISendEmailVerificationMutationVariables = Exact<{
|
3396
|
+
email: Scalars['String'];
|
3397
|
+
}>;
|
3398
|
+
export declare type ISendEmailVerificationMutation = ({
|
3399
|
+
__typename?: 'Mutation';
|
3400
|
+
} & Pick<IMutation, 'sendEmailVerificationToken'>);
|
3192
3401
|
export declare type ISendOrganizationInvitationMutationVariables = Exact<{
|
3193
3402
|
request: IOrganizationInvitationRequest;
|
3194
3403
|
}>;
|
@@ -3230,12 +3439,19 @@ export declare type IUpdateUserAccountMutationVariables = Exact<{
|
|
3230
3439
|
export declare type IUpdateUserAccountMutation = ({
|
3231
3440
|
__typename?: 'Mutation';
|
3232
3441
|
} & Pick<IMutation, 'updateUserAccount'>);
|
3233
|
-
export declare type
|
3234
|
-
|
3442
|
+
export declare type IValidatePasswordResetOtpMutationVariables = Exact<{
|
3443
|
+
email: Scalars['String'];
|
3444
|
+
code: Scalars['String'];
|
3445
|
+
}>;
|
3446
|
+
export declare type IValidatePasswordResetOtpMutation = ({
|
3447
|
+
__typename?: 'Mutation';
|
3448
|
+
} & Pick<IMutation, 'validatePasswordResetOtp'>);
|
3449
|
+
export declare type IValidateUserEmailVerificationMutationVariables = Exact<{
|
3450
|
+
code: Scalars['String'];
|
3235
3451
|
}>;
|
3236
|
-
export declare type
|
3452
|
+
export declare type IValidateUserEmailVerificationMutation = ({
|
3237
3453
|
__typename?: 'Mutation';
|
3238
|
-
} & Pick<IMutation, '
|
3454
|
+
} & Pick<IMutation, 'validateUserEmailVerificationToken'>);
|
3239
3455
|
export declare type IGetUserOrganizationsListQueryVariables = Exact<{
|
3240
3456
|
[key: string]: never;
|
3241
3457
|
}>;
|
@@ -3352,8 +3568,8 @@ export declare type IGetOrganizationMembersWithNameQuery = ({
|
|
3352
3568
|
__typename?: 'OrgUser';
|
3353
3569
|
} & Pick<IOrgUser, 'userId' | 'inactive' | 'crossCheckEmail' | 'role'> & {
|
3354
3570
|
user: ({
|
3355
|
-
__typename?: '
|
3356
|
-
} & Pick<
|
3571
|
+
__typename?: 'UserAccount';
|
3572
|
+
} & Pick<IUserAccount, 'alias' | 'email' | 'username' | 'emailVerified' | 'familyName' | 'givenName'>);
|
3357
3573
|
})>>>;
|
3358
3574
|
})>;
|
3359
3575
|
});
|
@@ -3472,7 +3688,11 @@ export declare type IGetOrganizationMembersQuery = ({
|
|
3472
3688
|
} & Pick<IOrgMembersOutput, 'totalCount'> & {
|
3473
3689
|
data?: Maybe<Array<Maybe<({
|
3474
3690
|
__typename?: 'OrgMember';
|
3475
|
-
} & Pick<IOrgMember, 'userId' | 'isSelf' | 'role' | 'name' | 'email' | 'teamNames' | 'crossCheckEmail'>
|
3691
|
+
} & Pick<IOrgMember, 'userId' | 'isSelf' | 'role' | 'name' | 'email' | 'teamNames' | 'crossCheckEmail'> & {
|
3692
|
+
user: ({
|
3693
|
+
__typename?: 'UserAccount';
|
3694
|
+
} & Pick<IUserAccount, 'familyName' | 'givenName' | 'username' | 'alias' | 'email'>);
|
3695
|
+
})>>>;
|
3476
3696
|
})>;
|
3477
3697
|
});
|
3478
3698
|
export declare type IOrganizationsQueryVariables = Exact<{
|
@@ -3629,18 +3849,6 @@ export declare type IUserCreationEventFragment = ({
|
|
3629
3849
|
__typename?: 'UserMetadata';
|
3630
3850
|
} & Pick<IUserMetadata, 'last_name' | 'first_name' | 'phone_number' | 'work_email' | 'country' | 'company_name' | 'dob' | 'zip_code'>)>;
|
3631
3851
|
});
|
3632
|
-
export declare type IToggleSidebarMutationVariables = Exact<{
|
3633
|
-
state: Scalars['Boolean'];
|
3634
|
-
}>;
|
3635
|
-
export declare type IToggleSidebarMutation = ({
|
3636
|
-
__typename?: 'Mutation';
|
3637
|
-
} & Pick<IMutation, 'toggleSidebar'>);
|
3638
|
-
export declare type ISidebarStateQueryVariables = Exact<{
|
3639
|
-
[key: string]: never;
|
3640
|
-
}>;
|
3641
|
-
export declare type ISidebarStateQuery = ({
|
3642
|
-
__typename?: 'Query';
|
3643
|
-
} & Pick<IQuery, 'sidebarState'>);
|
3644
3852
|
export declare type IConfigurationUpdateEventFragment = ({
|
3645
3853
|
__typename: 'ConfigurationUpdateEvent';
|
3646
3854
|
} & Pick<IConfigurationUpdateEvent, 'contents' | 'resource' | 'target'> & {
|
@@ -3658,6 +3866,13 @@ export declare type IDefaultSettingFragment = ({
|
|
3658
3866
|
export declare type IOverWriteRoleValueFragment = ({
|
3659
3867
|
__typename?: 'ContributionSettings';
|
3660
3868
|
} & Pick<IContributionSettings, 'key' | 'value'>);
|
3869
|
+
declare type IConfiguration_ApplicationConfiguration_Fragment = ({
|
3870
|
+
__typename: 'ApplicationConfiguration';
|
3871
|
+
} & Pick<IApplicationConfiguration, 'resource' | 'target' | 'contents' | 'keys'> & {
|
3872
|
+
overrides?: Maybe<Array<Maybe<({
|
3873
|
+
__typename?: 'Overrides';
|
3874
|
+
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
3875
|
+
});
|
3661
3876
|
declare type IConfiguration_ApplicationPolicy_Fragment = ({
|
3662
3877
|
__typename: 'ApplicationPolicy';
|
3663
3878
|
} & Pick<IApplicationPolicy, 'resource' | 'target' | 'contents' | 'keys'> & {
|
@@ -3665,9 +3880,9 @@ declare type IConfiguration_ApplicationPolicy_Fragment = ({
|
|
3665
3880
|
__typename?: 'Overrides';
|
3666
3881
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
3667
3882
|
});
|
3668
|
-
declare type
|
3669
|
-
__typename: '
|
3670
|
-
} & Pick<
|
3883
|
+
declare type IConfiguration_ApplicationRole_Fragment = ({
|
3884
|
+
__typename: 'ApplicationRole';
|
3885
|
+
} & Pick<IApplicationRole, 'resource' | 'target' | 'contents' | 'keys'> & {
|
3671
3886
|
overrides?: Maybe<Array<Maybe<({
|
3672
3887
|
__typename?: 'Overrides';
|
3673
3888
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
@@ -3728,6 +3943,13 @@ declare type IConfiguration_OrganizationRole_Fragment = ({
|
|
3728
3943
|
__typename?: 'Overrides';
|
3729
3944
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
3730
3945
|
});
|
3946
|
+
declare type IConfiguration_PolicyConfiguration_Fragment = ({
|
3947
|
+
__typename: 'PolicyConfiguration';
|
3948
|
+
} & Pick<IPolicyConfiguration, 'resource' | 'target' | 'contents' | 'keys'> & {
|
3949
|
+
overrides?: Maybe<Array<Maybe<({
|
3950
|
+
__typename?: 'Overrides';
|
3951
|
+
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
3952
|
+
});
|
3731
3953
|
declare type IConfiguration_ResourcePolicy_Fragment = ({
|
3732
3954
|
__typename: 'ResourcePolicy';
|
3733
3955
|
} & Pick<IResourcePolicy, 'resource' | 'target' | 'contents' | 'keys'> & {
|
@@ -3749,7 +3971,7 @@ declare type IConfiguration_UserConfiguration_Fragment = ({
|
|
3749
3971
|
__typename?: 'Overrides';
|
3750
3972
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
3751
3973
|
});
|
3752
|
-
export declare type IConfigurationFragment = IConfiguration_ApplicationPolicy_Fragment |
|
3974
|
+
export declare type IConfigurationFragment = IConfiguration_ApplicationConfiguration_Fragment | IConfiguration_ApplicationPolicy_Fragment | IConfiguration_ApplicationRole_Fragment | IConfiguration_DefaultConfiguration_Fragment | IConfiguration_DefaultPolicy_Fragment | IConfiguration_DefaultRole_Fragment | IConfiguration_MachineConfiguration_Fragment | IConfiguration_OrganizationConfiguration_Fragment | IConfiguration_OrganizationPolicy_Fragment | IConfiguration_OrganizationResourceConfiguration_Fragment | IConfiguration_OrganizationRole_Fragment | IConfiguration_PolicyConfiguration_Fragment | IConfiguration_ResourcePolicy_Fragment | IConfiguration_ResourceRole_Fragment | IConfiguration_UserConfiguration_Fragment;
|
3753
3975
|
export declare type IContextConfigurationFragment = ({
|
3754
3976
|
__typename?: 'OrganizationData';
|
3755
3977
|
} & Pick<IOrganizationData, 'id' | 'name' | 'configuration'> & {
|
@@ -3880,8 +4102,8 @@ export declare type IGetApplicationRoleQuery = ({
|
|
3880
4102
|
} | {
|
3881
4103
|
__typename?: 'ResourceRole';
|
3882
4104
|
} | ({
|
3883
|
-
__typename?: '
|
3884
|
-
} &
|
4105
|
+
__typename?: 'ApplicationRole';
|
4106
|
+
} & IConfiguration_ApplicationRole_Fragment)>>>;
|
3885
4107
|
});
|
3886
4108
|
export declare type IDefaultResolveSettingsQueryVariables = Exact<{
|
3887
4109
|
uri: Scalars['URI'];
|
@@ -3965,7 +4187,7 @@ export declare type IGetDefaultRoleQuery = ({
|
|
3965
4187
|
} | {
|
3966
4188
|
__typename?: 'ResourceRole';
|
3967
4189
|
} | {
|
3968
|
-
__typename?: '
|
4190
|
+
__typename?: 'ApplicationRole';
|
3969
4191
|
}>>>;
|
3970
4192
|
});
|
3971
4193
|
export declare type IGetTeamContextQueryVariables = Exact<{
|
@@ -4004,7 +4226,7 @@ export declare type IGetUserAccessRoleQuery = ({
|
|
4004
4226
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
4005
4227
|
__typename?: 'ResourceRole';
|
4006
4228
|
} & IConfiguration_ResourceRole_Fragment) | {
|
4007
|
-
__typename?: '
|
4229
|
+
__typename?: 'ApplicationRole';
|
4008
4230
|
}>>>;
|
4009
4231
|
resourceUserRoles?: Maybe<Array<Maybe<({
|
4010
4232
|
__typename?: 'ResourceUser';
|
@@ -4032,9 +4254,13 @@ export declare type IGetOrgConfigurationQuery = ({
|
|
4032
4254
|
getConfiguration?: Maybe<Array<Maybe<{
|
4033
4255
|
__typename?: 'DefaultConfiguration';
|
4034
4256
|
} | {
|
4035
|
-
__typename?: '
|
4257
|
+
__typename?: 'PolicyConfiguration';
|
4258
|
+
} | {
|
4259
|
+
__typename?: 'ApplicationConfiguration';
|
4036
4260
|
} | {
|
4037
4261
|
__typename?: 'UserConfiguration';
|
4262
|
+
} | {
|
4263
|
+
__typename?: 'MachineConfiguration';
|
4038
4264
|
} | ({
|
4039
4265
|
__typename?: 'OrganizationConfiguration';
|
4040
4266
|
} & IConfiguration_OrganizationConfiguration_Fragment) | {
|
@@ -4070,7 +4296,7 @@ export declare type IGetOrgRoleQuery = ({
|
|
4070
4296
|
} & IConfiguration_OrganizationRole_Fragment) | {
|
4071
4297
|
__typename?: 'ResourceRole';
|
4072
4298
|
} | {
|
4073
|
-
__typename?: '
|
4299
|
+
__typename?: 'ApplicationRole';
|
4074
4300
|
}>>>;
|
4075
4301
|
});
|
4076
4302
|
export declare type IGetOrgWithResourcesPolicyQueryVariables = Exact<{
|
@@ -4101,9 +4327,9 @@ export declare type IGetOrgWithResourcesRoleQuery = ({
|
|
4101
4327
|
__typename?: 'OrganizationRole';
|
4102
4328
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
4103
4329
|
__typename?: 'ResourceRole';
|
4104
|
-
} & IConfiguration_ResourceRole_Fragment) | {
|
4105
|
-
__typename?: '
|
4106
|
-
}>>>;
|
4330
|
+
} & IConfiguration_ResourceRole_Fragment) | ({
|
4331
|
+
__typename?: 'ApplicationRole';
|
4332
|
+
} & IConfiguration_ApplicationRole_Fragment)>>>;
|
4107
4333
|
});
|
4108
4334
|
export declare type IResolveConfigurationQueryVariables = Exact<{
|
4109
4335
|
input: IPreferencesInputInput;
|
@@ -4122,9 +4348,13 @@ export declare type IGetResourcesConfigurationQuery = ({
|
|
4122
4348
|
getConfiguration?: Maybe<Array<Maybe<{
|
4123
4349
|
__typename?: 'DefaultConfiguration';
|
4124
4350
|
} | {
|
4125
|
-
__typename?: '
|
4351
|
+
__typename?: 'PolicyConfiguration';
|
4352
|
+
} | {
|
4353
|
+
__typename?: 'ApplicationConfiguration';
|
4126
4354
|
} | {
|
4127
4355
|
__typename?: 'UserConfiguration';
|
4356
|
+
} | {
|
4357
|
+
__typename?: 'MachineConfiguration';
|
4128
4358
|
} | {
|
4129
4359
|
__typename?: 'OrganizationConfiguration';
|
4130
4360
|
} | ({
|
@@ -4139,11 +4369,15 @@ export declare type IGetUserConfigurationQuery = ({
|
|
4139
4369
|
} & {
|
4140
4370
|
getConfiguration?: Maybe<Array<Maybe<({
|
4141
4371
|
__typename?: 'DefaultConfiguration';
|
4142
|
-
} & IConfiguration_DefaultConfiguration_Fragment) |
|
4143
|
-
__typename?: '
|
4144
|
-
}
|
4372
|
+
} & IConfiguration_DefaultConfiguration_Fragment) | {
|
4373
|
+
__typename?: 'PolicyConfiguration';
|
4374
|
+
} | {
|
4375
|
+
__typename?: 'ApplicationConfiguration';
|
4376
|
+
} | ({
|
4145
4377
|
__typename?: 'UserConfiguration';
|
4146
|
-
} & IConfiguration_UserConfiguration_Fragment) | {
|
4378
|
+
} & IConfiguration_UserConfiguration_Fragment) | ({
|
4379
|
+
__typename?: 'MachineConfiguration';
|
4380
|
+
} & IConfiguration_MachineConfiguration_Fragment) | {
|
4147
4381
|
__typename?: 'OrganizationConfiguration';
|
4148
4382
|
} | {
|
4149
4383
|
__typename?: 'OrganizationResourceConfiguration';
|
@@ -4222,7 +4456,7 @@ export declare type IGetRoleQuery = ({
|
|
4222
4456
|
} & Pick<IOrganizationRole, 'contents' | 'keys'>) | {
|
4223
4457
|
__typename?: 'ResourceRole';
|
4224
4458
|
} | {
|
4225
|
-
__typename?: '
|
4459
|
+
__typename?: 'ApplicationRole';
|
4226
4460
|
}>;
|
4227
4461
|
});
|
4228
4462
|
export declare type IGetOrgWithResourcesConfigurationQueryVariables = Exact<{
|
@@ -4233,11 +4467,15 @@ export declare type IGetOrgWithResourcesConfigurationQuery = ({
|
|
4233
4467
|
} & {
|
4234
4468
|
getConfiguration?: Maybe<Array<Maybe<{
|
4235
4469
|
__typename?: 'DefaultConfiguration';
|
4236
|
-
} |
|
4237
|
-
__typename?: '
|
4238
|
-
}
|
4470
|
+
} | {
|
4471
|
+
__typename?: 'PolicyConfiguration';
|
4472
|
+
} | {
|
4473
|
+
__typename?: 'ApplicationConfiguration';
|
4474
|
+
} | {
|
4239
4475
|
__typename?: 'UserConfiguration';
|
4240
4476
|
} | ({
|
4477
|
+
__typename?: 'MachineConfiguration';
|
4478
|
+
} & IConfiguration_MachineConfiguration_Fragment) | ({
|
4241
4479
|
__typename?: 'OrganizationConfiguration';
|
4242
4480
|
} & IConfiguration_OrganizationConfiguration_Fragment) | ({
|
4243
4481
|
__typename?: 'OrganizationResourceConfiguration';
|
@@ -4252,10 +4490,14 @@ export declare type IGetUserWithDefaultConfigurationQuery = ({
|
|
4252
4490
|
getConfiguration?: Maybe<Array<Maybe<({
|
4253
4491
|
__typename?: 'DefaultConfiguration';
|
4254
4492
|
} & IConfiguration_DefaultConfiguration_Fragment) | {
|
4255
|
-
__typename?: '
|
4493
|
+
__typename?: 'PolicyConfiguration';
|
4494
|
+
} | {
|
4495
|
+
__typename?: 'ApplicationConfiguration';
|
4256
4496
|
} | ({
|
4257
4497
|
__typename?: 'UserConfiguration';
|
4258
4498
|
} & IConfiguration_UserConfiguration_Fragment) | {
|
4499
|
+
__typename?: 'MachineConfiguration';
|
4500
|
+
} | {
|
4259
4501
|
__typename?: 'OrganizationConfiguration';
|
4260
4502
|
} | {
|
4261
4503
|
__typename?: 'OrganizationResourceConfiguration';
|
@@ -4425,10 +4667,12 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4425
4667
|
__typename?: 'ConfigurationData';
|
4426
4668
|
} & Pick<IConfigurationData, 'isComplete'> & {
|
4427
4669
|
defaults?: Maybe<({
|
4670
|
+
__typename?: 'ApplicationConfiguration';
|
4671
|
+
} & IConfiguration_ApplicationConfiguration_Fragment) | ({
|
4428
4672
|
__typename?: 'ApplicationPolicy';
|
4429
4673
|
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4430
|
-
__typename?: '
|
4431
|
-
} &
|
4674
|
+
__typename?: 'ApplicationRole';
|
4675
|
+
} & IConfiguration_ApplicationRole_Fragment) | ({
|
4432
4676
|
__typename?: 'DefaultConfiguration';
|
4433
4677
|
} & IConfiguration_DefaultConfiguration_Fragment) | ({
|
4434
4678
|
__typename?: 'DefaultPolicy';
|
@@ -4445,6 +4689,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4445
4689
|
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
4446
4690
|
__typename?: 'OrganizationRole';
|
4447
4691
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
4692
|
+
__typename?: 'PolicyConfiguration';
|
4693
|
+
} & IConfiguration_PolicyConfiguration_Fragment) | ({
|
4448
4694
|
__typename?: 'ResourcePolicy';
|
4449
4695
|
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
4450
4696
|
__typename?: 'ResourceRole';
|
@@ -4452,10 +4698,12 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4452
4698
|
__typename?: 'UserConfiguration';
|
4453
4699
|
} & IConfiguration_UserConfiguration_Fragment)>;
|
4454
4700
|
user?: Maybe<({
|
4701
|
+
__typename?: 'ApplicationConfiguration';
|
4702
|
+
} & IConfiguration_ApplicationConfiguration_Fragment) | ({
|
4455
4703
|
__typename?: 'ApplicationPolicy';
|
4456
4704
|
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4457
|
-
__typename?: '
|
4458
|
-
} &
|
4705
|
+
__typename?: 'ApplicationRole';
|
4706
|
+
} & IConfiguration_ApplicationRole_Fragment) | ({
|
4459
4707
|
__typename?: 'DefaultConfiguration';
|
4460
4708
|
} & IConfiguration_DefaultConfiguration_Fragment) | ({
|
4461
4709
|
__typename?: 'DefaultPolicy';
|
@@ -4472,6 +4720,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4472
4720
|
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
4473
4721
|
__typename?: 'OrganizationRole';
|
4474
4722
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
4723
|
+
__typename?: 'PolicyConfiguration';
|
4724
|
+
} & IConfiguration_PolicyConfiguration_Fragment) | ({
|
4475
4725
|
__typename?: 'ResourcePolicy';
|
4476
4726
|
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
4477
4727
|
__typename?: 'ResourceRole';
|
@@ -4479,10 +4729,12 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4479
4729
|
__typename?: 'UserConfiguration';
|
4480
4730
|
} & IConfiguration_UserConfiguration_Fragment)>;
|
4481
4731
|
machine?: Maybe<({
|
4732
|
+
__typename?: 'ApplicationConfiguration';
|
4733
|
+
} & IConfiguration_ApplicationConfiguration_Fragment) | ({
|
4482
4734
|
__typename?: 'ApplicationPolicy';
|
4483
4735
|
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4484
|
-
__typename?: '
|
4485
|
-
} &
|
4736
|
+
__typename?: 'ApplicationRole';
|
4737
|
+
} & IConfiguration_ApplicationRole_Fragment) | ({
|
4486
4738
|
__typename?: 'DefaultConfiguration';
|
4487
4739
|
} & IConfiguration_DefaultConfiguration_Fragment) | ({
|
4488
4740
|
__typename?: 'DefaultPolicy';
|
@@ -4499,6 +4751,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4499
4751
|
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
4500
4752
|
__typename?: 'OrganizationRole';
|
4501
4753
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
4754
|
+
__typename?: 'PolicyConfiguration';
|
4755
|
+
} & IConfiguration_PolicyConfiguration_Fragment) | ({
|
4502
4756
|
__typename?: 'ResourcePolicy';
|
4503
4757
|
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
4504
4758
|
__typename?: 'ResourceRole';
|
@@ -4506,10 +4760,12 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4506
4760
|
__typename?: 'UserConfiguration';
|
4507
4761
|
} & IConfiguration_UserConfiguration_Fragment)>;
|
4508
4762
|
organization?: Maybe<({
|
4763
|
+
__typename?: 'ApplicationConfiguration';
|
4764
|
+
} & IConfiguration_ApplicationConfiguration_Fragment) | ({
|
4509
4765
|
__typename?: 'ApplicationPolicy';
|
4510
4766
|
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4511
|
-
__typename?: '
|
4512
|
-
} &
|
4767
|
+
__typename?: 'ApplicationRole';
|
4768
|
+
} & IConfiguration_ApplicationRole_Fragment) | ({
|
4513
4769
|
__typename?: 'DefaultConfiguration';
|
4514
4770
|
} & IConfiguration_DefaultConfiguration_Fragment) | ({
|
4515
4771
|
__typename?: 'DefaultPolicy';
|
@@ -4526,6 +4782,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4526
4782
|
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
4527
4783
|
__typename?: 'OrganizationRole';
|
4528
4784
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
4785
|
+
__typename?: 'PolicyConfiguration';
|
4786
|
+
} & IConfiguration_PolicyConfiguration_Fragment) | ({
|
4529
4787
|
__typename?: 'ResourcePolicy';
|
4530
4788
|
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
4531
4789
|
__typename?: 'ResourceRole';
|
@@ -4533,10 +4791,12 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4533
4791
|
__typename?: 'UserConfiguration';
|
4534
4792
|
} & IConfiguration_UserConfiguration_Fragment)>;
|
4535
4793
|
resources?: Maybe<Array<Maybe<({
|
4794
|
+
__typename?: 'ApplicationConfiguration';
|
4795
|
+
} & IConfiguration_ApplicationConfiguration_Fragment) | ({
|
4536
4796
|
__typename?: 'ApplicationPolicy';
|
4537
4797
|
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4538
|
-
__typename?: '
|
4539
|
-
} &
|
4798
|
+
__typename?: 'ApplicationRole';
|
4799
|
+
} & IConfiguration_ApplicationRole_Fragment) | ({
|
4540
4800
|
__typename?: 'DefaultConfiguration';
|
4541
4801
|
} & IConfiguration_DefaultConfiguration_Fragment) | ({
|
4542
4802
|
__typename?: 'DefaultPolicy';
|
@@ -4553,6 +4813,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4553
4813
|
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
4554
4814
|
__typename?: 'OrganizationRole';
|
4555
4815
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
4816
|
+
__typename?: 'PolicyConfiguration';
|
4817
|
+
} & IConfiguration_PolicyConfiguration_Fragment) | ({
|
4556
4818
|
__typename?: 'ResourcePolicy';
|
4557
4819
|
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
4558
4820
|
__typename?: 'ResourceRole';
|
@@ -4984,29 +5246,6 @@ export declare function useResendOrganizationInvitationMutation(baseOptions?: Ap
|
|
4984
5246
|
export declare type ResendOrganizationInvitationMutationHookResult = ReturnType<typeof useResendOrganizationInvitationMutation>;
|
4985
5247
|
export declare type ResendOrganizationInvitationMutationResult = Apollo.MutationResult<IResendOrganizationInvitationMutation>;
|
4986
5248
|
export declare type ResendOrganizationInvitationMutationOptions = Apollo.BaseMutationOptions<IResendOrganizationInvitationMutation, IResendOrganizationInvitationMutationVariables>;
|
4987
|
-
export declare const ResendUserEmailVerificationEmailDocument: DocumentNode;
|
4988
|
-
/**
|
4989
|
-
* __useResendUserEmailVerificationEmailMutation__
|
4990
|
-
*
|
4991
|
-
* To run a mutation, you first call `useResendUserEmailVerificationEmailMutation` within a React component and pass it any options that fit your needs.
|
4992
|
-
* When your component renders, `useResendUserEmailVerificationEmailMutation` returns a tuple that includes:
|
4993
|
-
* - A mutate function that you can call at any time to execute the mutation
|
4994
|
-
* - An object with fields that represent the current status of the mutation's execution
|
4995
|
-
*
|
4996
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
4997
|
-
*
|
4998
|
-
* @example
|
4999
|
-
* const [resendUserEmailVerificationEmailMutation, { data, loading, error }] = useResendUserEmailVerificationEmailMutation({
|
5000
|
-
* variables: {
|
5001
|
-
* },
|
5002
|
-
* });
|
5003
|
-
*/
|
5004
|
-
export declare function useResendUserEmailVerificationEmailMutation(baseOptions?: Apollo.MutationHookOptions<IResendUserEmailVerificationEmailMutation, IResendUserEmailVerificationEmailMutationVariables>): Apollo.MutationTuple<IResendUserEmailVerificationEmailMutation, Exact<{
|
5005
|
-
[key: string]: never;
|
5006
|
-
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
5007
|
-
export declare type ResendUserEmailVerificationEmailMutationHookResult = ReturnType<typeof useResendUserEmailVerificationEmailMutation>;
|
5008
|
-
export declare type ResendUserEmailVerificationEmailMutationResult = Apollo.MutationResult<IResendUserEmailVerificationEmailMutation>;
|
5009
|
-
export declare type ResendUserEmailVerificationEmailMutationOptions = Apollo.BaseMutationOptions<IResendUserEmailVerificationEmailMutation, IResendUserEmailVerificationEmailMutationVariables>;
|
5010
5249
|
export declare const ResetUserPasswordDocument: DocumentNode;
|
5011
5250
|
/**
|
5012
5251
|
* __useResetUserPasswordMutation__
|
@@ -5055,6 +5294,30 @@ export declare function useSendUserPasswordResetEmailMutation(baseOptions?: Apol
|
|
5055
5294
|
export declare type SendUserPasswordResetEmailMutationHookResult = ReturnType<typeof useSendUserPasswordResetEmailMutation>;
|
5056
5295
|
export declare type SendUserPasswordResetEmailMutationResult = Apollo.MutationResult<ISendUserPasswordResetEmailMutation>;
|
5057
5296
|
export declare type SendUserPasswordResetEmailMutationOptions = Apollo.BaseMutationOptions<ISendUserPasswordResetEmailMutation, ISendUserPasswordResetEmailMutationVariables>;
|
5297
|
+
export declare const SendEmailVerificationDocument: DocumentNode;
|
5298
|
+
/**
|
5299
|
+
* __useSendEmailVerificationMutation__
|
5300
|
+
*
|
5301
|
+
* To run a mutation, you first call `useSendEmailVerificationMutation` within a React component and pass it any options that fit your needs.
|
5302
|
+
* When your component renders, `useSendEmailVerificationMutation` returns a tuple that includes:
|
5303
|
+
* - A mutate function that you can call at any time to execute the mutation
|
5304
|
+
* - An object with fields that represent the current status of the mutation's execution
|
5305
|
+
*
|
5306
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
5307
|
+
*
|
5308
|
+
* @example
|
5309
|
+
* const [sendEmailVerificationMutation, { data, loading, error }] = useSendEmailVerificationMutation({
|
5310
|
+
* variables: {
|
5311
|
+
* email: // value for 'email'
|
5312
|
+
* },
|
5313
|
+
* });
|
5314
|
+
*/
|
5315
|
+
export declare function useSendEmailVerificationMutation(baseOptions?: Apollo.MutationHookOptions<ISendEmailVerificationMutation, ISendEmailVerificationMutationVariables>): Apollo.MutationTuple<ISendEmailVerificationMutation, Exact<{
|
5316
|
+
email: string;
|
5317
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
5318
|
+
export declare type SendEmailVerificationMutationHookResult = ReturnType<typeof useSendEmailVerificationMutation>;
|
5319
|
+
export declare type SendEmailVerificationMutationResult = Apollo.MutationResult<ISendEmailVerificationMutation>;
|
5320
|
+
export declare type SendEmailVerificationMutationOptions = Apollo.BaseMutationOptions<ISendEmailVerificationMutation, ISendEmailVerificationMutationVariables>;
|
5058
5321
|
export declare const SendOrganizationInvitationDocument: DocumentNode;
|
5059
5322
|
/**
|
5060
5323
|
* __useSendOrganizationInvitationMutation__
|
@@ -5189,30 +5452,56 @@ export declare function useUpdateUserAccountMutation(baseOptions?: Apollo.Mutati
|
|
5189
5452
|
export declare type UpdateUserAccountMutationHookResult = ReturnType<typeof useUpdateUserAccountMutation>;
|
5190
5453
|
export declare type UpdateUserAccountMutationResult = Apollo.MutationResult<IUpdateUserAccountMutation>;
|
5191
5454
|
export declare type UpdateUserAccountMutationOptions = Apollo.BaseMutationOptions<IUpdateUserAccountMutation, IUpdateUserAccountMutationVariables>;
|
5192
|
-
export declare const
|
5455
|
+
export declare const ValidatePasswordResetOtpDocument: DocumentNode;
|
5193
5456
|
/**
|
5194
|
-
*
|
5457
|
+
* __useValidatePasswordResetOtpMutation__
|
5195
5458
|
*
|
5196
|
-
* To run a mutation, you first call `
|
5197
|
-
* When your component renders, `
|
5459
|
+
* To run a mutation, you first call `useValidatePasswordResetOtpMutation` within a React component and pass it any options that fit your needs.
|
5460
|
+
* When your component renders, `useValidatePasswordResetOtpMutation` returns a tuple that includes:
|
5198
5461
|
* - A mutate function that you can call at any time to execute the mutation
|
5199
5462
|
* - An object with fields that represent the current status of the mutation's execution
|
5200
5463
|
*
|
5201
5464
|
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
5202
5465
|
*
|
5203
5466
|
* @example
|
5204
|
-
* const [
|
5467
|
+
* const [validatePasswordResetOtpMutation, { data, loading, error }] = useValidatePasswordResetOtpMutation({
|
5205
5468
|
* variables: {
|
5206
|
-
*
|
5469
|
+
* email: // value for 'email'
|
5470
|
+
* code: // value for 'code'
|
5471
|
+
* },
|
5472
|
+
* });
|
5473
|
+
*/
|
5474
|
+
export declare function useValidatePasswordResetOtpMutation(baseOptions?: Apollo.MutationHookOptions<IValidatePasswordResetOtpMutation, IValidatePasswordResetOtpMutationVariables>): Apollo.MutationTuple<IValidatePasswordResetOtpMutation, Exact<{
|
5475
|
+
email: string;
|
5476
|
+
code: string;
|
5477
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
5478
|
+
export declare type ValidatePasswordResetOtpMutationHookResult = ReturnType<typeof useValidatePasswordResetOtpMutation>;
|
5479
|
+
export declare type ValidatePasswordResetOtpMutationResult = Apollo.MutationResult<IValidatePasswordResetOtpMutation>;
|
5480
|
+
export declare type ValidatePasswordResetOtpMutationOptions = Apollo.BaseMutationOptions<IValidatePasswordResetOtpMutation, IValidatePasswordResetOtpMutationVariables>;
|
5481
|
+
export declare const ValidateUserEmailVerificationDocument: DocumentNode;
|
5482
|
+
/**
|
5483
|
+
* __useValidateUserEmailVerificationMutation__
|
5484
|
+
*
|
5485
|
+
* To run a mutation, you first call `useValidateUserEmailVerificationMutation` within a React component and pass it any options that fit your needs.
|
5486
|
+
* When your component renders, `useValidateUserEmailVerificationMutation` returns a tuple that includes:
|
5487
|
+
* - A mutate function that you can call at any time to execute the mutation
|
5488
|
+
* - An object with fields that represent the current status of the mutation's execution
|
5489
|
+
*
|
5490
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
5491
|
+
*
|
5492
|
+
* @example
|
5493
|
+
* const [validateUserEmailVerificationMutation, { data, loading, error }] = useValidateUserEmailVerificationMutation({
|
5494
|
+
* variables: {
|
5495
|
+
* code: // value for 'code'
|
5207
5496
|
* },
|
5208
5497
|
* });
|
5209
5498
|
*/
|
5210
|
-
export declare function
|
5211
|
-
|
5499
|
+
export declare function useValidateUserEmailVerificationMutation(baseOptions?: Apollo.MutationHookOptions<IValidateUserEmailVerificationMutation, IValidateUserEmailVerificationMutationVariables>): Apollo.MutationTuple<IValidateUserEmailVerificationMutation, Exact<{
|
5500
|
+
code: string;
|
5212
5501
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
5213
|
-
export declare type
|
5214
|
-
export declare type
|
5215
|
-
export declare type
|
5502
|
+
export declare type ValidateUserEmailVerificationMutationHookResult = ReturnType<typeof useValidateUserEmailVerificationMutation>;
|
5503
|
+
export declare type ValidateUserEmailVerificationMutationResult = Apollo.MutationResult<IValidateUserEmailVerificationMutation>;
|
5504
|
+
export declare type ValidateUserEmailVerificationMutationOptions = Apollo.BaseMutationOptions<IValidateUserEmailVerificationMutation, IValidateUserEmailVerificationMutationVariables>;
|
5216
5505
|
export declare const GetUserOrganizationsListDocument: DocumentNode;
|
5217
5506
|
/**
|
5218
5507
|
* __useGetUserOrganizationsListQuery__
|
@@ -5978,55 +6267,6 @@ export declare function useFilterIntegrationConfigurationLazyQuery(baseOptions?:
|
|
5978
6267
|
export declare type FilterIntegrationConfigurationQueryHookResult = ReturnType<typeof useFilterIntegrationConfigurationQuery>;
|
5979
6268
|
export declare type FilterIntegrationConfigurationLazyQueryHookResult = ReturnType<typeof useFilterIntegrationConfigurationLazyQuery>;
|
5980
6269
|
export declare type FilterIntegrationConfigurationQueryResult = Apollo.QueryResult<IFilterIntegrationConfigurationQuery, IFilterIntegrationConfigurationQueryVariables>;
|
5981
|
-
export declare const ToggleSidebarDocument: DocumentNode;
|
5982
|
-
/**
|
5983
|
-
* __useToggleSidebarMutation__
|
5984
|
-
*
|
5985
|
-
* To run a mutation, you first call `useToggleSidebarMutation` within a React component and pass it any options that fit your needs.
|
5986
|
-
* When your component renders, `useToggleSidebarMutation` returns a tuple that includes:
|
5987
|
-
* - A mutate function that you can call at any time to execute the mutation
|
5988
|
-
* - An object with fields that represent the current status of the mutation's execution
|
5989
|
-
*
|
5990
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
5991
|
-
*
|
5992
|
-
* @example
|
5993
|
-
* const [toggleSidebarMutation, { data, loading, error }] = useToggleSidebarMutation({
|
5994
|
-
* variables: {
|
5995
|
-
* state: // value for 'state'
|
5996
|
-
* },
|
5997
|
-
* });
|
5998
|
-
*/
|
5999
|
-
export declare function useToggleSidebarMutation(baseOptions?: Apollo.MutationHookOptions<IToggleSidebarMutation, IToggleSidebarMutationVariables>): Apollo.MutationTuple<IToggleSidebarMutation, Exact<{
|
6000
|
-
state: boolean;
|
6001
|
-
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
6002
|
-
export declare type ToggleSidebarMutationHookResult = ReturnType<typeof useToggleSidebarMutation>;
|
6003
|
-
export declare type ToggleSidebarMutationResult = Apollo.MutationResult<IToggleSidebarMutation>;
|
6004
|
-
export declare type ToggleSidebarMutationOptions = Apollo.BaseMutationOptions<IToggleSidebarMutation, IToggleSidebarMutationVariables>;
|
6005
|
-
export declare const SidebarStateDocument: DocumentNode;
|
6006
|
-
/**
|
6007
|
-
* __useSidebarStateQuery__
|
6008
|
-
*
|
6009
|
-
* To run a query within a React component, call `useSidebarStateQuery` and pass it any options that fit your needs.
|
6010
|
-
* When your component renders, `useSidebarStateQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
6011
|
-
* you can use to render your UI.
|
6012
|
-
*
|
6013
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
6014
|
-
*
|
6015
|
-
* @example
|
6016
|
-
* const { data, loading, error } = useSidebarStateQuery({
|
6017
|
-
* variables: {
|
6018
|
-
* },
|
6019
|
-
* });
|
6020
|
-
*/
|
6021
|
-
export declare function useSidebarStateQuery(baseOptions?: Apollo.QueryHookOptions<ISidebarStateQuery, ISidebarStateQueryVariables>): Apollo.QueryResult<ISidebarStateQuery, Exact<{
|
6022
|
-
[key: string]: never;
|
6023
|
-
}>>;
|
6024
|
-
export declare function useSidebarStateLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ISidebarStateQuery, ISidebarStateQueryVariables>): Apollo.LazyQueryResultTuple<ISidebarStateQuery, Exact<{
|
6025
|
-
[key: string]: never;
|
6026
|
-
}>>;
|
6027
|
-
export declare type SidebarStateQueryHookResult = ReturnType<typeof useSidebarStateQuery>;
|
6028
|
-
export declare type SidebarStateLazyQueryHookResult = ReturnType<typeof useSidebarStateLazyQuery>;
|
6029
|
-
export declare type SidebarStateQueryResult = Apollo.QueryResult<ISidebarStateQuery, ISidebarStateQueryVariables>;
|
6030
6270
|
export declare const AddContributionRoleDocument: DocumentNode;
|
6031
6271
|
/**
|
6032
6272
|
* __useAddContributionRoleMutation__
|
@@ -7373,16 +7613,13 @@ export declare type NextResolverFn<T> = () => Promise<T>;
|
|
7373
7613
|
export declare type DirectiveResolverFn<TResult = {}, TParent = {}, TContext = {}, TArgs = {}> = (next: NextResolverFn<TResult>, parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => TResult | Promise<TResult>;
|
7374
7614
|
/** Mapping between all available schema types and the resolvers types */
|
7375
7615
|
export declare type IResolversTypes = {
|
7376
|
-
AccessRole: IResolversTypes['DefaultRole'] | IResolversTypes['OrganizationRole'] | IResolversTypes['ResourceRole'] | IResolversTypes['
|
7616
|
+
AccessRole: IResolversTypes['DefaultRole'] | IResolversTypes['OrganizationRole'] | IResolversTypes['ResourceRole'] | IResolversTypes['ApplicationRole'];
|
7377
7617
|
AccessToken: ResolverTypeWrapper<IAccessToken>;
|
7378
7618
|
ID: ResolverTypeWrapper<Scalars['ID']>;
|
7379
7619
|
String: ResolverTypeWrapper<Scalars['String']>;
|
7380
7620
|
AccessTokenConnection: ResolverTypeWrapper<IAccessTokenConnection>;
|
7381
7621
|
Int: ResolverTypeWrapper<Scalars['Int']>;
|
7382
7622
|
AccessToken_Input: IAccessToken_Input;
|
7383
|
-
AccountBroadcasterActions: IAccountBroadcasterActions;
|
7384
|
-
AccountService: ResolverTypeWrapper<IAccountService>;
|
7385
|
-
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
7386
7623
|
AccountServiceAction: IAccountServiceAction;
|
7387
7624
|
AccountTeam: ResolverTypeWrapper<IAccountTeam>;
|
7388
7625
|
AccountTeamInput: IAccountTeamInput;
|
@@ -7392,16 +7629,21 @@ export declare type IResolversTypes = {
|
|
7392
7629
|
ApiManagement: ResolverTypeWrapper<IApiManagement>;
|
7393
7630
|
ApiManagement_Input: IApiManagement_Input;
|
7394
7631
|
ApplicationBillingPlanPolicy: IApplicationBillingPlanPolicy;
|
7632
|
+
ApplicationConfiguration: ResolverTypeWrapper<IApplicationConfiguration>;
|
7395
7633
|
ApplicationPolicy: ResolverTypeWrapper<IApplicationPolicy>;
|
7396
|
-
|
7634
|
+
ApplicationRole: ResolverTypeWrapper<IApplicationRole>;
|
7397
7635
|
ApplicationRoles: IApplicationRoles;
|
7398
7636
|
ApplicationSettings: ResolverTypeWrapper<IApplicationSettings>;
|
7637
|
+
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
7399
7638
|
Auth0Identity: ResolverTypeWrapper<IAuth0Identity>;
|
7400
7639
|
Auth0IdentityProfileData: ResolverTypeWrapper<IAuth0IdentityProfileData>;
|
7401
7640
|
AuthErrorCodes: IAuthErrorCodes;
|
7402
7641
|
AuthTokens: ResolverTypeWrapper<IAuthTokens>;
|
7403
7642
|
AuthUser: ResolverTypeWrapper<IAuthUser>;
|
7404
7643
|
AuthUserInput: IAuthUserInput;
|
7644
|
+
BaseAccountService: ResolverTypeWrapper<IBaseAccountService>;
|
7645
|
+
BaseOrganizationService: ResolverTypeWrapper<IBaseOrganizationService>;
|
7646
|
+
BaseTeamService: ResolverTypeWrapper<IBaseTeamService>;
|
7405
7647
|
CacheControlScope: ICacheControlScope;
|
7406
7648
|
CityInput: ICityInput;
|
7407
7649
|
CityUpdateInput: ICityUpdateInput;
|
@@ -7410,7 +7652,7 @@ export declare type IResolversTypes = {
|
|
7410
7652
|
ClientTypes: IClientTypes;
|
7411
7653
|
ConfigCollectionName: IConfigCollectionName;
|
7412
7654
|
ConfigFragmentName: IConfigFragmentName;
|
7413
|
-
Configuration: IResolversTypes['DefaultConfiguration'] | IResolversTypes['
|
7655
|
+
Configuration: IResolversTypes['DefaultConfiguration'] | IResolversTypes['PolicyConfiguration'] | IResolversTypes['ApplicationConfiguration'] | IResolversTypes['UserConfiguration'] | IResolversTypes['MachineConfiguration'] | IResolversTypes['OrganizationConfiguration'] | IResolversTypes['OrganizationResourceConfiguration'];
|
7414
7656
|
ConfigurationContributionNames: IConfigurationContributionNames;
|
7415
7657
|
ConfigurationData: ResolverTypeWrapper<IConfigurationData>;
|
7416
7658
|
ConfigurationExtensionInfo: ResolverTypeWrapper<IConfigurationExtensionInfo>;
|
@@ -7420,6 +7662,7 @@ export declare type IResolversTypes = {
|
|
7420
7662
|
ConfigurationOverridesInput: IConfigurationOverridesInput;
|
7421
7663
|
ConfigurationPolicy: IResolversTypes['DefaultPolicy'] | IResolversTypes['OrganizationPolicy'] | IResolversTypes['ResourcePolicy'] | IResolversTypes['ApplicationPolicy'];
|
7422
7664
|
ConfigurationScope: ConfigurationScope;
|
7665
|
+
ConfigurationServiceAction: IConfigurationServiceAction;
|
7423
7666
|
ConfigurationTarget: ConfigurationTarget;
|
7424
7667
|
ConfigurationUpdateEvent: ResolverTypeWrapper<IConfigurationUpdateEvent>;
|
7425
7668
|
Context: ResolverTypeWrapper<IContext>;
|
@@ -7439,6 +7682,7 @@ export declare type IResolversTypes = {
|
|
7439
7682
|
DefaultRole: ResolverTypeWrapper<IDefaultRole>;
|
7440
7683
|
DefaultSettings: ResolverTypeWrapper<IDefaultSettings>;
|
7441
7684
|
DeviceInfoInput: IDeviceInfoInput;
|
7685
|
+
DeviceInfoPlatform: IDeviceInfoPlatform;
|
7442
7686
|
EditPresentationTypes: IEditPresentationTypes;
|
7443
7687
|
EmptyResponse: ResolverTypeWrapper<IEmptyResponse>;
|
7444
7688
|
Environment: ResolverTypeWrapper<IEnvironment>;
|
@@ -7457,10 +7701,7 @@ export declare type IResolversTypes = {
|
|
7457
7701
|
IAuth0User: IResolversTypes['UserProfile'];
|
7458
7702
|
IAuth0UserProfile: IResolversTypes['UserProfile'];
|
7459
7703
|
ICity: never;
|
7460
|
-
|
7461
|
-
changedConfiguration?: Maybe<IResolversTypes['Configuration']>;
|
7462
|
-
}>;
|
7463
|
-
IConfigurationModel: IResolversTypes['ApplicationPolicy'] | IResolversTypes['ApplicationRolePermission'] | IResolversTypes['DefaultConfiguration'] | IResolversTypes['DefaultPolicy'] | IResolversTypes['DefaultRole'] | IResolversTypes['MachineConfiguration'] | IResolversTypes['OrganizationConfiguration'] | IResolversTypes['OrganizationPolicy'] | IResolversTypes['OrganizationResourceConfiguration'] | IResolversTypes['OrganizationRole'] | IResolversTypes['ResourcePolicy'] | IResolversTypes['ResourceRole'] | IResolversTypes['UserConfiguration'];
|
7704
|
+
IConfigurationModel: IResolversTypes['ApplicationConfiguration'] | IResolversTypes['ApplicationPolicy'] | IResolversTypes['ApplicationRole'] | IResolversTypes['DefaultConfiguration'] | IResolversTypes['DefaultPolicy'] | IResolversTypes['DefaultRole'] | IResolversTypes['MachineConfiguration'] | IResolversTypes['OrganizationConfiguration'] | IResolversTypes['OrganizationPolicy'] | IResolversTypes['OrganizationResourceConfiguration'] | IResolversTypes['OrganizationRole'] | IResolversTypes['PolicyConfiguration'] | IResolversTypes['ResourcePolicy'] | IResolversTypes['ResourceRole'] | IResolversTypes['UserConfiguration'];
|
7464
7705
|
IConfigurationService: never;
|
7465
7706
|
ICountry: never;
|
7466
7707
|
IEventWithContext: IResolversTypes['OrganizationCreatedEvent'] | IResolversTypes['OrganizationDeletedEvent'];
|
@@ -7487,6 +7728,7 @@ export declare type IResolversTypes = {
|
|
7487
7728
|
JSON: ResolverTypeWrapper<Scalars['JSON']>;
|
7488
7729
|
JSONObject: ResolverTypeWrapper<Scalars['JSONObject']>;
|
7489
7730
|
KeyPathSegment: IKeyPathSegment;
|
7731
|
+
LinkedIdentity: ResolverTypeWrapper<ILinkedIdentity>;
|
7490
7732
|
LoginError: ResolverTypeWrapper<ILoginError>;
|
7491
7733
|
MachineConfiguration: ResolverTypeWrapper<IMachineConfiguration>;
|
7492
7734
|
MachineSettings: ResolverTypeWrapper<IMachineSettings>;
|
@@ -7496,7 +7738,7 @@ export declare type IResolversTypes = {
|
|
7496
7738
|
MenuPosition: IMenuPosition;
|
7497
7739
|
MoleculerServiceName: IMoleculerServiceName;
|
7498
7740
|
Mutation: ResolverTypeWrapper<{}>;
|
7499
|
-
Node: IResolversTypes['AccessToken'] | IResolversTypes['ApiExternalAccount'] | IResolversTypes['ApiManagement'] | IResolversTypes['
|
7741
|
+
Node: IResolversTypes['AccessToken'] | IResolversTypes['ApiExternalAccount'] | IResolversTypes['ApiManagement'] | IResolversTypes['UserAccount'];
|
7500
7742
|
Observable: ResolverTypeWrapper<Scalars['Observable']>;
|
7501
7743
|
OrgDetailWhere: IOrgDetailWhere;
|
7502
7744
|
OrgInvitationMembers: ResolverTypeWrapper<IOrgInvitationMembers>;
|
@@ -7504,7 +7746,6 @@ export declare type IResolversTypes = {
|
|
7504
7746
|
OrgMembersOutput: ResolverTypeWrapper<IOrgMembersOutput>;
|
7505
7747
|
OrgType: IOrgType;
|
7506
7748
|
OrgUser: ResolverTypeWrapper<IOrgUser>;
|
7507
|
-
OrgUserAccunt: ResolverTypeWrapper<IOrgUserAccunt>;
|
7508
7749
|
OrgUserInput: IOrgUserInput;
|
7509
7750
|
OrgUserRole: IOrgUserRole;
|
7510
7751
|
OrgainizationInvitationRole: IOrgainizationInvitationRole;
|
@@ -7532,7 +7773,6 @@ export declare type IResolversTypes = {
|
|
7532
7773
|
OrganizationResourceData: ResolverTypeWrapper<IOrganizationResourceData>;
|
7533
7774
|
OrganizationResourceSettings: ResolverTypeWrapper<IOrganizationResourceSettings>;
|
7534
7775
|
OrganizationRole: ResolverTypeWrapper<IOrganizationRole>;
|
7535
|
-
OrganizationService: ResolverTypeWrapper<IOrganizationService>;
|
7536
7776
|
OrganizationServiceAction: IOrganizationServiceAction;
|
7537
7777
|
OrganizationSettings: ResolverTypeWrapper<IOrganizationSettings>;
|
7538
7778
|
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
@@ -7546,6 +7786,7 @@ export declare type IResolversTypes = {
|
|
7546
7786
|
PermissionType: IPermissionType;
|
7547
7787
|
PhoneNumber: ResolverTypeWrapper<IPhoneNumber>;
|
7548
7788
|
PhoneNumberInput: IPhoneNumberInput;
|
7789
|
+
PolicyConfiguration: ResolverTypeWrapper<IPolicyConfiguration>;
|
7549
7790
|
PolicySubject: ResolverTypeWrapper<IPolicySubject>;
|
7550
7791
|
PopupIntegrationAuthorization: ResolverTypeWrapper<IPopupIntegrationAuthorization>;
|
7551
7792
|
PortalLanguage: IPortalLanguage;
|
@@ -7611,7 +7852,6 @@ export declare type IResolversTypes = {
|
|
7611
7852
|
TeamMember: ResolverTypeWrapper<ITeamMember>;
|
7612
7853
|
TeamMemberInput: ITeamMemberInput;
|
7613
7854
|
TeamRemoveRequest: ITeamRemoveRequest;
|
7614
|
-
TeamService: ResolverTypeWrapper<ITeamService>;
|
7615
7855
|
TeamServiceAction: ITeamServiceAction;
|
7616
7856
|
TeamType: ITeamType;
|
7617
7857
|
TeamUpdateRequest: ITeamUpdateRequest;
|
@@ -7641,16 +7881,17 @@ export declare type IResolversTypes = {
|
|
7641
7881
|
UserDevice: ResolverTypeWrapper<IUserDevice>;
|
7642
7882
|
UserMetadata: ResolverTypeWrapper<IUserMetadata>;
|
7643
7883
|
UserOrderBy: IUserOrderBy;
|
7644
|
-
UserOrg: ResolverTypeWrapper<IUserOrg>;
|
7645
|
-
UserOrgInput: IUserOrgInput;
|
7646
7884
|
UserPasswordResetInput: IUserPasswordResetInput;
|
7647
7885
|
UserPreviousValues: ResolverTypeWrapper<IUserPreviousValues>;
|
7648
7886
|
UserProfile: ResolverTypeWrapper<IUserProfile>;
|
7887
|
+
UserServiceAction: IUserServiceAction;
|
7888
|
+
UserSession: ResolverTypeWrapper<IUserSession>;
|
7649
7889
|
UserSessionId: ResolverTypeWrapper<IUserSessionId>;
|
7650
7890
|
UserSettings: ResolverTypeWrapper<IUserSettings>;
|
7651
7891
|
UserState: ResolverTypeWrapper<IUserState>;
|
7652
7892
|
UserToken: ResolverTypeWrapper<IUserToken>;
|
7653
7893
|
UserTokenInput: IUserTokenInput;
|
7894
|
+
UsersToken: ResolverTypeWrapper<IUsersToken>;
|
7654
7895
|
ViewerPoliciesInput: IViewerPoliciesInput;
|
7655
7896
|
ViewerSettingsInput: IViewerSettingsInput;
|
7656
7897
|
ViewerSettingsSubject: ResolverTypeWrapper<IViewerSettingsSubject>;
|
@@ -7659,15 +7900,13 @@ export declare type IResolversTypes = {
|
|
7659
7900
|
};
|
7660
7901
|
/** Mapping between all available schema types and the resolvers parents */
|
7661
7902
|
export declare type IResolversParentTypes = {
|
7662
|
-
AccessRole: IResolversParentTypes['DefaultRole'] | IResolversParentTypes['OrganizationRole'] | IResolversParentTypes['ResourceRole'] | IResolversParentTypes['
|
7903
|
+
AccessRole: IResolversParentTypes['DefaultRole'] | IResolversParentTypes['OrganizationRole'] | IResolversParentTypes['ResourceRole'] | IResolversParentTypes['ApplicationRole'];
|
7663
7904
|
AccessToken: IAccessToken;
|
7664
7905
|
ID: Scalars['ID'];
|
7665
7906
|
String: Scalars['String'];
|
7666
7907
|
AccessTokenConnection: IAccessTokenConnection;
|
7667
7908
|
Int: Scalars['Int'];
|
7668
7909
|
AccessToken_Input: IAccessToken_Input;
|
7669
|
-
AccountService: IAccountService;
|
7670
|
-
Boolean: Scalars['Boolean'];
|
7671
7910
|
AccountTeam: IAccountTeam;
|
7672
7911
|
AccountTeamInput: IAccountTeamInput;
|
7673
7912
|
AdminIdeSettings: IAdminIdeSettings;
|
@@ -7675,17 +7914,22 @@ export declare type IResolversParentTypes = {
|
|
7675
7914
|
ApiExternalAccount: IApiExternalAccount;
|
7676
7915
|
ApiManagement: IApiManagement;
|
7677
7916
|
ApiManagement_Input: IApiManagement_Input;
|
7917
|
+
ApplicationConfiguration: IApplicationConfiguration;
|
7678
7918
|
ApplicationPolicy: IApplicationPolicy;
|
7679
|
-
|
7919
|
+
ApplicationRole: IApplicationRole;
|
7680
7920
|
ApplicationSettings: IApplicationSettings;
|
7921
|
+
Boolean: Scalars['Boolean'];
|
7681
7922
|
Auth0Identity: IAuth0Identity;
|
7682
7923
|
Auth0IdentityProfileData: IAuth0IdentityProfileData;
|
7683
7924
|
AuthTokens: IAuthTokens;
|
7684
7925
|
AuthUser: IAuthUser;
|
7685
7926
|
AuthUserInput: IAuthUserInput;
|
7927
|
+
BaseAccountService: IBaseAccountService;
|
7928
|
+
BaseOrganizationService: IBaseOrganizationService;
|
7929
|
+
BaseTeamService: IBaseTeamService;
|
7686
7930
|
CityInput: ICityInput;
|
7687
7931
|
CityUpdateInput: ICityUpdateInput;
|
7688
|
-
Configuration: IResolversParentTypes['DefaultConfiguration'] | IResolversParentTypes['
|
7932
|
+
Configuration: IResolversParentTypes['DefaultConfiguration'] | IResolversParentTypes['PolicyConfiguration'] | IResolversParentTypes['ApplicationConfiguration'] | IResolversParentTypes['UserConfiguration'] | IResolversParentTypes['MachineConfiguration'] | IResolversParentTypes['OrganizationConfiguration'] | IResolversParentTypes['OrganizationResourceConfiguration'];
|
7689
7933
|
ConfigurationData: IConfigurationData;
|
7690
7934
|
ConfigurationExtensionInfo: IConfigurationExtensionInfo;
|
7691
7935
|
ConfigurationInput: IConfigurationInput;
|
@@ -7725,10 +7969,7 @@ export declare type IResolversParentTypes = {
|
|
7725
7969
|
IAuth0User: IResolversParentTypes['UserProfile'];
|
7726
7970
|
IAuth0UserProfile: IResolversParentTypes['UserProfile'];
|
7727
7971
|
ICity: never;
|
7728
|
-
|
7729
|
-
changedConfiguration?: Maybe<IResolversParentTypes['Configuration']>;
|
7730
|
-
};
|
7731
|
-
IConfigurationModel: IResolversParentTypes['ApplicationPolicy'] | IResolversParentTypes['ApplicationRolePermission'] | IResolversParentTypes['DefaultConfiguration'] | IResolversParentTypes['DefaultPolicy'] | IResolversParentTypes['DefaultRole'] | IResolversParentTypes['MachineConfiguration'] | IResolversParentTypes['OrganizationConfiguration'] | IResolversParentTypes['OrganizationPolicy'] | IResolversParentTypes['OrganizationResourceConfiguration'] | IResolversParentTypes['OrganizationRole'] | IResolversParentTypes['ResourcePolicy'] | IResolversParentTypes['ResourceRole'] | IResolversParentTypes['UserConfiguration'];
|
7972
|
+
IConfigurationModel: IResolversParentTypes['ApplicationConfiguration'] | IResolversParentTypes['ApplicationPolicy'] | IResolversParentTypes['ApplicationRole'] | IResolversParentTypes['DefaultConfiguration'] | IResolversParentTypes['DefaultPolicy'] | IResolversParentTypes['DefaultRole'] | IResolversParentTypes['MachineConfiguration'] | IResolversParentTypes['OrganizationConfiguration'] | IResolversParentTypes['OrganizationPolicy'] | IResolversParentTypes['OrganizationResourceConfiguration'] | IResolversParentTypes['OrganizationRole'] | IResolversParentTypes['PolicyConfiguration'] | IResolversParentTypes['ResourcePolicy'] | IResolversParentTypes['ResourceRole'] | IResolversParentTypes['UserConfiguration'];
|
7732
7973
|
IConfigurationService: never;
|
7733
7974
|
ICountry: never;
|
7734
7975
|
IEventWithContext: IResolversParentTypes['OrganizationCreatedEvent'] | IResolversParentTypes['OrganizationDeletedEvent'];
|
@@ -7753,13 +7994,14 @@ export declare type IResolversParentTypes = {
|
|
7753
7994
|
JSON: Scalars['JSON'];
|
7754
7995
|
JSONObject: Scalars['JSONObject'];
|
7755
7996
|
KeyPathSegment: IKeyPathSegment;
|
7997
|
+
LinkedIdentity: ILinkedIdentity;
|
7756
7998
|
LoginError: ILoginError;
|
7757
7999
|
MachineConfiguration: IMachineConfiguration;
|
7758
8000
|
MachineSettings: IMachineSettings;
|
7759
8001
|
MemorySettings: IMemorySettings;
|
7760
8002
|
MenuItem: IMenuItem;
|
7761
8003
|
Mutation: {};
|
7762
|
-
Node: IResolversParentTypes['AccessToken'] | IResolversParentTypes['ApiExternalAccount'] | IResolversParentTypes['ApiManagement'] | IResolversParentTypes['
|
8004
|
+
Node: IResolversParentTypes['AccessToken'] | IResolversParentTypes['ApiExternalAccount'] | IResolversParentTypes['ApiManagement'] | IResolversParentTypes['UserAccount'];
|
7763
8005
|
Observable: Scalars['Observable'];
|
7764
8006
|
OrgDetailWhere: IOrgDetailWhere;
|
7765
8007
|
OrgInvitationMembers: IOrgInvitationMembers;
|
@@ -7767,7 +8009,6 @@ export declare type IResolversParentTypes = {
|
|
7767
8009
|
OrgMembersOutput: IOrgMembersOutput;
|
7768
8010
|
OrgType: IOrgType;
|
7769
8011
|
OrgUser: IOrgUser;
|
7770
|
-
OrgUserAccunt: IOrgUserAccunt;
|
7771
8012
|
OrgUserInput: IOrgUserInput;
|
7772
8013
|
Organization: IOrganization;
|
7773
8014
|
OrganizationConfigValueInput: IOrganizationConfigValueInput;
|
@@ -7792,7 +8033,6 @@ export declare type IResolversParentTypes = {
|
|
7792
8033
|
OrganizationResourceData: IOrganizationResourceData;
|
7793
8034
|
OrganizationResourceSettings: IOrganizationResourceSettings;
|
7794
8035
|
OrganizationRole: IOrganizationRole;
|
7795
|
-
OrganizationService: IOrganizationService;
|
7796
8036
|
OrganizationSettings: IOrganizationSettings;
|
7797
8037
|
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
7798
8038
|
OrganizationsDeactivatedEvent: IOrganizationsDeactivatedEvent;
|
@@ -7802,6 +8042,7 @@ export declare type IResolversParentTypes = {
|
|
7802
8042
|
PermissionSubject: IPermissionSubject;
|
7803
8043
|
PhoneNumber: IPhoneNumber;
|
7804
8044
|
PhoneNumberInput: IPhoneNumberInput;
|
8045
|
+
PolicyConfiguration: IPolicyConfiguration;
|
7805
8046
|
PolicySubject: IPolicySubject;
|
7806
8047
|
PopupIntegrationAuthorization: IPopupIntegrationAuthorization;
|
7807
8048
|
Position: IPosition;
|
@@ -7857,7 +8098,6 @@ export declare type IResolversParentTypes = {
|
|
7857
8098
|
TeamMember: ITeamMember;
|
7858
8099
|
TeamMemberInput: ITeamMemberInput;
|
7859
8100
|
TeamRemoveRequest: ITeamRemoveRequest;
|
7860
|
-
TeamService: ITeamService;
|
7861
8101
|
TeamType: ITeamType;
|
7862
8102
|
TeamUpdateRequest: ITeamUpdateRequest;
|
7863
8103
|
TerritorialStateInput: ITerritorialStateInput;
|
@@ -7883,16 +8123,16 @@ export declare type IResolversParentTypes = {
|
|
7883
8123
|
UserContext: IUserContext;
|
7884
8124
|
UserDevice: IUserDevice;
|
7885
8125
|
UserMetadata: IUserMetadata;
|
7886
|
-
UserOrg: IUserOrg;
|
7887
|
-
UserOrgInput: IUserOrgInput;
|
7888
8126
|
UserPasswordResetInput: IUserPasswordResetInput;
|
7889
8127
|
UserPreviousValues: IUserPreviousValues;
|
7890
8128
|
UserProfile: IUserProfile;
|
8129
|
+
UserSession: IUserSession;
|
7891
8130
|
UserSessionId: IUserSessionId;
|
7892
8131
|
UserSettings: IUserSettings;
|
7893
8132
|
UserState: IUserState;
|
7894
8133
|
UserToken: IUserToken;
|
7895
8134
|
UserTokenInput: IUserTokenInput;
|
8135
|
+
UsersToken: IUsersToken;
|
7896
8136
|
ViewerPoliciesInput: IViewerPoliciesInput;
|
7897
8137
|
ViewerSettingsInput: IViewerSettingsInput;
|
7898
8138
|
ViewerSettingsSubject: IViewerSettingsSubject;
|
@@ -7916,7 +8156,7 @@ export declare type IIsAuthenticatedDirectiveResolver<Result, Parent, ContextTyp
|
|
7916
8156
|
export declare type IProfileDirectiveArgs = {};
|
7917
8157
|
export declare type IProfileDirectiveResolver<Result, Parent, ContextType = MyContext, Args = IProfileDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
7918
8158
|
export declare type IAccessRoleResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AccessRole'] = IResolversParentTypes['AccessRole']> = {
|
7919
|
-
__resolveType: TypeResolveFn<'DefaultRole' | 'OrganizationRole' | 'ResourceRole' | '
|
8159
|
+
__resolveType: TypeResolveFn<'DefaultRole' | 'OrganizationRole' | 'ResourceRole' | 'ApplicationRole', ParentType, ContextType>;
|
7920
8160
|
};
|
7921
8161
|
export declare type IAccessTokenResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AccessToken'] = IResolversParentTypes['AccessToken']> = {
|
7922
8162
|
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
@@ -7934,17 +8174,6 @@ export declare type IAccessTokenConnectionResolvers<ContextType = MyContext, Par
|
|
7934
8174
|
pageInfo?: Resolver<IResolversTypes['PageInfo'], ParentType, ContextType>;
|
7935
8175
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
7936
8176
|
};
|
7937
|
-
export declare type IAccountServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AccountService'] = IResolversParentTypes['AccountService']> = {
|
7938
|
-
createDefaultAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IAccountServiceCreateDefaultAccountArgs, never>>;
|
7939
|
-
createAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IAccountServiceCreateAccountArgs, never>>;
|
7940
|
-
findAccountById?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IAccountServiceFindAccountByIdArgs, never>>;
|
7941
|
-
findAccountByUser?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IAccountServiceFindAccountByUserArgs, never>>;
|
7942
|
-
updateAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IAccountServiceUpdateAccountArgs, never>>;
|
7943
|
-
deleteAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IAccountServiceDeleteAccountArgs, never>>;
|
7944
|
-
dispatchUserVerificationEmail?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IAccountServiceDispatchUserVerificationEmailArgs, never>>;
|
7945
|
-
verifyUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IAccountServiceVerifyUserEmailVerificationTokenArgs, never>>;
|
7946
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
7947
|
-
};
|
7948
8177
|
export declare type IAccountTeamResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AccountTeam'] = IResolversParentTypes['AccountTeam']> = {
|
7949
8178
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
7950
8179
|
_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -7986,6 +8215,15 @@ export declare type IApiManagementResolvers<ContextType = MyContext, ParentType
|
|
7986
8215
|
user?: Resolver<IResolversTypes['UserAccount'], ParentType, ContextType>;
|
7987
8216
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
7988
8217
|
};
|
8218
|
+
export declare type IApplicationConfigurationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ApplicationConfiguration'] = IResolversParentTypes['ApplicationConfiguration']> = {
|
8219
|
+
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
8220
|
+
resource?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
|
8221
|
+
target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
8222
|
+
contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
8223
|
+
keys?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
8224
|
+
overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
|
8225
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8226
|
+
};
|
7989
8227
|
export declare type IApplicationPolicyResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ApplicationPolicy'] = IResolversParentTypes['ApplicationPolicy']> = {
|
7990
8228
|
resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
7991
8229
|
target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
@@ -7994,7 +8232,7 @@ export declare type IApplicationPolicyResolvers<ContextType = MyContext, ParentT
|
|
7994
8232
|
overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
|
7995
8233
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
7996
8234
|
};
|
7997
|
-
export declare type
|
8235
|
+
export declare type IApplicationRoleResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ApplicationRole'] = IResolversParentTypes['ApplicationRole']> = {
|
7998
8236
|
resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
7999
8237
|
target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
8000
8238
|
contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
@@ -8041,11 +8279,62 @@ export declare type IAuthUserResolvers<ContextType = MyContext, ParentType exten
|
|
8041
8279
|
phoneNo?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
8042
8280
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8043
8281
|
};
|
8282
|
+
export declare type IBaseAccountServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['BaseAccountService'] = IResolversParentTypes['BaseAccountService']> = {
|
8283
|
+
createDefaultAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceCreateDefaultAccountArgs, 'user'>>;
|
8284
|
+
createAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceCreateAccountArgs, 'account'>>;
|
8285
|
+
updateUserAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceUpdateUserAccountArgs, 'user' | 'userInfo'>>;
|
8286
|
+
findAccountById?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceFindAccountByIdArgs, 'id'>>;
|
8287
|
+
findAccountByUser?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceFindAccountByUserArgs, 'id'>>;
|
8288
|
+
findAccountByEmail?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceFindAccountByEmailArgs, 'email'>>;
|
8289
|
+
getUsers?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccount']>>>, ParentType, ContextType, RequireFields<IBaseAccountServiceGetUsersArgs, never>>;
|
8290
|
+
updateAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceUpdateAccountArgs, 'account'>>;
|
8291
|
+
deleteAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceDeleteAccountArgs, 'account'>>;
|
8292
|
+
accountOnBoarding?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceAccountOnBoardingArgs, 'input' | 'context'>>;
|
8293
|
+
verifyUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceVerifyUserEmailVerificationTokenArgs, 'userId' | 'token'>>;
|
8294
|
+
deleteUserAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceDeleteUserAccountArgs, 'id'>>;
|
8295
|
+
resendUserEmailVerificationEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceResendUserEmailVerificationEmailArgs, 'id'>>;
|
8296
|
+
dispatchUserVerificationEmail?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IBaseAccountServiceDispatchUserVerificationEmailArgs, 'email' | 'emailVerificationToken'>>;
|
8297
|
+
dispatchUserPasswordResetEmail?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IBaseAccountServiceDispatchUserPasswordResetEmailArgs, 'user' | 'token'>>;
|
8298
|
+
getUserTokenDetails?: Resolver<Maybe<IResolversTypes['UserToken']>, ParentType, ContextType, RequireFields<IBaseAccountServiceGetUserTokenDetailsArgs, 'userId' | 'type'>>;
|
8299
|
+
addUserToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceAddUserTokenArgs, 'userId' | 'token'>>;
|
8300
|
+
removeUserToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceRemoveUserTokenArgs, 'userId' | 'token'>>;
|
8301
|
+
getAllUserTokens?: Resolver<Maybe<Array<Maybe<IResolversTypes['UsersToken']>>>, ParentType, ContextType, RequireFields<IBaseAccountServiceGetAllUserTokensArgs, 'userIds' | 'tokenTypes'>>;
|
8302
|
+
initiatePasswordResetProcess?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceInitiatePasswordResetProcessArgs, 'email'>>;
|
8303
|
+
resetUserPassword?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceResetUserPasswordArgs, 'input'>>;
|
8304
|
+
validateUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceValidateUserEmailVerificationTokenArgs, 'code' | 'userAuth0Id' | 'email'>>;
|
8305
|
+
sendEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceSendEmailVerificationTokenArgs, 'email'>>;
|
8306
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8307
|
+
};
|
8308
|
+
export declare type IBaseOrganizationServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['BaseOrganizationService'] = IResolversParentTypes['BaseOrganizationService']> = {
|
8309
|
+
getOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceGetOrganizationArgs, never>>;
|
8310
|
+
createDefaultOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceCreateDefaultOrganizationArgs, never>>;
|
8311
|
+
getUserOrganizations?: Resolver<Maybe<Array<Maybe<IResolversTypes['Organization']>>>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceGetUserOrganizationsArgs, never>>;
|
8312
|
+
createOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceCreateOrganizationArgs, 'workspace'>>;
|
8313
|
+
updateOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceUpdateOrganizationArgs, 'workspace'>>;
|
8314
|
+
removeOrganization?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceRemoveOrganizationArgs, 'workspace'>>;
|
8315
|
+
getUserOrgRole?: Resolver<Maybe<IResolversTypes['OrgUserRole']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceGetUserOrgRoleArgs, 'orgName' | 'userId'>>;
|
8316
|
+
sendInvitation?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceSendInvitationArgs, 'request'>>;
|
8317
|
+
declineInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceDeclineInvitationArgs, 'id'>>;
|
8318
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8319
|
+
};
|
8320
|
+
export declare type IBaseTeamServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['BaseTeamService'] = IResolversParentTypes['BaseTeamService']> = {
|
8321
|
+
getTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceGetTeamArgs, never>>;
|
8322
|
+
getUserTeams?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccountTeam']>>>, ParentType, ContextType, RequireFields<IBaseTeamServiceGetUserTeamsArgs, never>>;
|
8323
|
+
createTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceCreateTeamArgs, never>>;
|
8324
|
+
updateTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceUpdateTeamArgs, never>>;
|
8325
|
+
addWorkspaces?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceAddWorkspacesArgs, never>>;
|
8326
|
+
removeTeam?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseTeamServiceRemoveTeamArgs, never>>;
|
8327
|
+
createDefaultTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceCreateDefaultTeamArgs, never>>;
|
8328
|
+
sendProjectNotification?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseTeamServiceSendProjectNotificationArgs, never>>;
|
8329
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8330
|
+
};
|
8044
8331
|
export declare type IConfigurationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Configuration'] = IResolversParentTypes['Configuration']> = {
|
8045
|
-
__resolveType: TypeResolveFn<'DefaultConfiguration' | '
|
8332
|
+
__resolveType: TypeResolveFn<'DefaultConfiguration' | 'PolicyConfiguration' | 'ApplicationConfiguration' | 'UserConfiguration' | 'MachineConfiguration' | 'OrganizationConfiguration' | 'OrganizationResourceConfiguration', ParentType, ContextType>;
|
8046
8333
|
};
|
8047
8334
|
export declare type IConfigurationDataResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ConfigurationData'] = IResolversParentTypes['ConfigurationData']> = {
|
8048
8335
|
defaults?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
|
8336
|
+
policy?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
|
8337
|
+
application?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
|
8049
8338
|
user?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
|
8050
8339
|
machine?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
|
8051
8340
|
organization?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
|
@@ -8086,6 +8375,8 @@ export declare type IConfigurationTargetResolvers = EnumResolverSignature<{
|
|
8086
8375
|
ORGANIZATION_RESOURCE?: any;
|
8087
8376
|
DEFAULT?: any;
|
8088
8377
|
MEMORY?: any;
|
8378
|
+
RESOURCE_OVERRIDABLE?: any;
|
8379
|
+
MACHINE_OVERRIDABLE?: any;
|
8089
8380
|
}, IResolversTypes['ConfigurationTarget']>;
|
8090
8381
|
export declare type IConfigurationUpdateEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ConfigurationUpdateEvent'] = IResolversParentTypes['ConfigurationUpdateEvent']> = {
|
8091
8382
|
resource?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
|
@@ -8312,16 +8603,8 @@ export declare type IICityResolvers<ContextType = MyContext, ParentType extends
|
|
8312
8603
|
createdAt?: Resolver<IResolversTypes['Date'], ParentType, ContextType>;
|
8313
8604
|
updatedAt?: Resolver<Maybe<IResolversTypes['Date']>, ParentType, ContextType>;
|
8314
8605
|
};
|
8315
|
-
export declare type IIConfigurationChangeEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IConfigurationChangeEvent'] = IResolversParentTypes['IConfigurationChangeEvent']> = {
|
8316
|
-
source?: Resolver<Maybe<IResolversTypes['ConfigurationTarget']>, ParentType, ContextType>;
|
8317
|
-
affectedKeys?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
8318
|
-
sourceConfig?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
8319
|
-
changedConfiguration?: Resolver<Maybe<IResolversTypes['Configuration']>, ParentType, ContextType>;
|
8320
|
-
changedConfigurationByResource?: Resolver<Maybe<IResolversTypes['OrganizationResourceConfiguration']>, ParentType, ContextType>;
|
8321
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8322
|
-
};
|
8323
8606
|
export declare type IIConfigurationModelResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IConfigurationModel'] = IResolversParentTypes['IConfigurationModel']> = {
|
8324
|
-
__resolveType: TypeResolveFn<'ApplicationPolicy' | '
|
8607
|
+
__resolveType: TypeResolveFn<'ApplicationConfiguration' | 'ApplicationPolicy' | 'ApplicationRole' | 'DefaultConfiguration' | 'DefaultPolicy' | 'DefaultRole' | 'MachineConfiguration' | 'OrganizationConfiguration' | 'OrganizationPolicy' | 'OrganizationResourceConfiguration' | 'OrganizationRole' | 'PolicyConfiguration' | 'ResourcePolicy' | 'ResourceRole' | 'UserConfiguration', ParentType, ContextType>;
|
8325
8608
|
resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
8326
8609
|
target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
8327
8610
|
contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
@@ -8453,6 +8736,13 @@ export interface IJsonScalarConfig extends GraphQLScalarTypeConfig<IResolversTyp
|
|
8453
8736
|
export interface IJsonObjectScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['JSONObject'], any> {
|
8454
8737
|
name: 'JSONObject';
|
8455
8738
|
}
|
8739
|
+
export declare type ILinkedIdentityResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['LinkedIdentity'] = IResolversParentTypes['LinkedIdentity']> = {
|
8740
|
+
connection?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8741
|
+
isSocial?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8742
|
+
provider?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8743
|
+
user_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8744
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8745
|
+
};
|
8456
8746
|
export declare type ILoginErrorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['LoginError'] = IResolversParentTypes['LoginError']> = {
|
8457
8747
|
timeStamp?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
8458
8748
|
error?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
@@ -8537,12 +8827,11 @@ export declare type IMutationResolvers<ContextType = MyContext, ParentType exten
|
|
8537
8827
|
removedUserAuthIntegration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationRemovedUserAuthIntegrationArgs, never>>;
|
8538
8828
|
renewAuthToken?: Resolver<Maybe<IResolversTypes['AuthTokens']>, ParentType, ContextType, RequireFields<IMutationRenewAuthTokenArgs, never>>;
|
8539
8829
|
resendOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationResendOrganizationInvitationArgs, 'id'>>;
|
8540
|
-
resendUserEmailVerificationEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8541
8830
|
resetUserPassword?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationResetUserPasswordArgs, 'input'>>;
|
8831
|
+
sendEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSendEmailVerificationTokenArgs, 'email'>>;
|
8542
8832
|
sendOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSendOrganizationInvitationArgs, never>>;
|
8543
8833
|
sendUserPasswordResetEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSendUserPasswordResetEmailArgs, 'email'>>;
|
8544
8834
|
setSettingsValueByResource?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSetSettingsValueByResourceArgs, never>>;
|
8545
|
-
toggleSidebar?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationToggleSidebarArgs, 'state'>>;
|
8546
8835
|
updateAuth0UserPassword?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateAuth0UserPasswordArgs, never>>;
|
8547
8836
|
updateConfiguration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationArgs, 'input' | 'key' | 'value'>>;
|
8548
8837
|
updateConfigurationPolicyValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationPolicyValueArgs, 'key' | 'value'>>;
|
@@ -8558,10 +8847,11 @@ export declare type IMutationResolvers<ContextType = MyContext, ParentType exten
|
|
8558
8847
|
updateRoleValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateRoleValueArgs, 'key' | 'value'>>;
|
8559
8848
|
updateSelectedOrgResource?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateSelectedOrgResourceArgs, 'resource'>>;
|
8560
8849
|
updateUserAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateUserAccountArgs, never>>;
|
8561
|
-
|
8850
|
+
validatePasswordResetOtp?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationValidatePasswordResetOtpArgs, 'email' | 'code'>>;
|
8851
|
+
validateUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationValidateUserEmailVerificationTokenArgs, 'code'>>;
|
8562
8852
|
};
|
8563
8853
|
export declare type INodeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Node'] = IResolversParentTypes['Node']> = {
|
8564
|
-
__resolveType: TypeResolveFn<'AccessToken' | 'ApiExternalAccount' | 'ApiManagement' | '
|
8854
|
+
__resolveType: TypeResolveFn<'AccessToken' | 'ApiExternalAccount' | 'ApiManagement' | 'UserAccount', ParentType, ContextType>;
|
8565
8855
|
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
8566
8856
|
};
|
8567
8857
|
export interface IObservableScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Observable'], any> {
|
@@ -8576,6 +8866,7 @@ export declare type IOrgMemberResolvers<ContextType = MyContext, ParentType exte
|
|
8576
8866
|
_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8577
8867
|
userId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8578
8868
|
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
8869
|
+
user?: Resolver<IResolversTypes['UserAccount'], ParentType, ContextType>;
|
8579
8870
|
isSelf?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8580
8871
|
inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8581
8872
|
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -8594,19 +8885,11 @@ export declare type IOrgUserResolvers<ContextType = MyContext, ParentType extend
|
|
8594
8885
|
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
8595
8886
|
inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8596
8887
|
orgName?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
8597
|
-
user?: Resolver<IResolversTypes['
|
8888
|
+
user?: Resolver<IResolversTypes['UserAccount'], ParentType, ContextType>;
|
8598
8889
|
isSelf?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
8599
8890
|
crossCheckEmail?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8600
8891
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8601
8892
|
};
|
8602
|
-
export declare type IOrgUserAccuntResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrgUserAccunt'] = IResolversParentTypes['OrgUserAccunt']> = {
|
8603
|
-
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
8604
|
-
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8605
|
-
alias?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
8606
|
-
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8607
|
-
emailVerified?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8608
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8609
|
-
};
|
8610
8893
|
export declare type IOrganizationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Organization'] = IResolversParentTypes['Organization']> = {
|
8611
8894
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
8612
8895
|
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -8730,18 +9013,6 @@ export declare type IOrganizationRoleResolvers<ContextType = MyContext, ParentTy
|
|
8730
9013
|
overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
|
8731
9014
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8732
9015
|
};
|
8733
|
-
export declare type IOrganizationServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrganizationService'] = IResolversParentTypes['OrganizationService']> = {
|
8734
|
-
getOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IOrganizationServiceGetOrganizationArgs, never>>;
|
8735
|
-
createDefaultOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IOrganizationServiceCreateDefaultOrganizationArgs, never>>;
|
8736
|
-
getUserOrganizations?: Resolver<Maybe<Array<Maybe<IResolversTypes['Organization']>>>, ParentType, ContextType, RequireFields<IOrganizationServiceGetUserOrganizationsArgs, never>>;
|
8737
|
-
createOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IOrganizationServiceCreateOrganizationArgs, 'workspace'>>;
|
8738
|
-
updateOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IOrganizationServiceUpdateOrganizationArgs, 'workspace'>>;
|
8739
|
-
removeOrganization?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IOrganizationServiceRemoveOrganizationArgs, 'workspace'>>;
|
8740
|
-
getUserOrgRole?: Resolver<Maybe<IResolversTypes['OrgUserRole']>, ParentType, ContextType, RequireFields<IOrganizationServiceGetUserOrgRoleArgs, 'orgName' | 'userId'>>;
|
8741
|
-
sendInvitation?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IOrganizationServiceSendInvitationArgs, 'request'>>;
|
8742
|
-
declineInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IOrganizationServiceDeclineInvitationArgs, 'id'>>;
|
8743
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8744
|
-
};
|
8745
9016
|
export declare type IOrganizationSettingsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrganizationSettings'] = IResolversParentTypes['OrganizationSettings']> = {
|
8746
9017
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
8747
9018
|
latestSettings?: Resolver<Maybe<IResolversTypes['Settings']>, ParentType, ContextType>;
|
@@ -8759,6 +9030,7 @@ export declare type IOrganizationsDeletedEventResolvers<ContextType = MyContext,
|
|
8759
9030
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8760
9031
|
};
|
8761
9032
|
export declare type IOverridesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Overrides'] = IResolversParentTypes['Overrides']> = {
|
9033
|
+
keys?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
8762
9034
|
contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
8763
9035
|
identifiers?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
8764
9036
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
@@ -8778,6 +9050,15 @@ export declare type IPhoneNumberResolvers<ContextType = MyContext, ParentType ex
|
|
8778
9050
|
phoneNumber?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8779
9051
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8780
9052
|
};
|
9053
|
+
export declare type IPolicyConfigurationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PolicyConfiguration'] = IResolversParentTypes['PolicyConfiguration']> = {
|
9054
|
+
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
9055
|
+
resource?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
|
9056
|
+
target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
9057
|
+
contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
9058
|
+
keys?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
9059
|
+
overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
|
9060
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9061
|
+
};
|
8781
9062
|
export declare type IPolicySubjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PolicySubject'] = IResolversParentTypes['PolicySubject']> = {
|
8782
9063
|
policyURL?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
|
8783
9064
|
createdAt?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -8878,10 +9159,12 @@ export declare type IQueryResolvers<ContextType = MyContext, ParentType extends
|
|
8878
9159
|
externalAccounts?: Resolver<IResolversTypes['ExternalAccountConnection'], ParentType, ContextType, RequireFields<IQueryExternalAccountsArgs, never>>;
|
8879
9160
|
fetchAuth0User?: Resolver<Maybe<IResolversTypes['UserProfile']>, ParentType, ContextType, RequireFields<IQueryFetchAuth0UserArgs, 'auth0UserId'>>;
|
8880
9161
|
fetchUserAuthorizedDevices?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserDevice']>>>, ParentType, ContextType, RequireFields<IQueryFetchUserAuthorizedDevicesArgs, 'auth0UserId'>>;
|
9162
|
+
fetchUserSessions?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserSession']>>>, ParentType, ContextType>;
|
8881
9163
|
filterIntegrationConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType, RequireFields<IQueryFilterIntegrationConfigurationArgs, never>>;
|
8882
9164
|
getAccounts?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccount']>>>, ParentType, ContextType, RequireFields<IQueryGetAccountsArgs, never>>;
|
8883
9165
|
getAllCountries?: Resolver<Maybe<Array<Maybe<IResolversTypes['Country']>>>, ParentType, ContextType, RequireFields<IQueryGetAllCountriesArgs, never>>;
|
8884
9166
|
getAllIntegrationConfigurations?: Resolver<Maybe<IResolversTypes['IntegrationConfigurationsOutput']>, ParentType, ContextType, RequireFields<IQueryGetAllIntegrationConfigurationsArgs, never>>;
|
9167
|
+
getAllUsersTokens?: Resolver<Maybe<Array<Maybe<IResolversTypes['UsersToken']>>>, ParentType, ContextType, RequireFields<IQueryGetAllUsersTokensArgs, 'types'>>;
|
8885
9168
|
getConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['Configuration']>>>, ParentType, ContextType, RequireFields<IQueryGetConfigurationArgs, never>>;
|
8886
9169
|
getConfigurationData?: Resolver<Maybe<IResolversTypes['ConfigurationData']>, ParentType, ContextType>;
|
8887
9170
|
getConfigurationPolicies?: Resolver<Maybe<Array<Maybe<IResolversTypes['ConfigurationPolicy']>>>, ParentType, ContextType, RequireFields<IQueryGetConfigurationPoliciesArgs, never>>;
|
@@ -8927,7 +9210,6 @@ export declare type IQueryResolvers<ContextType = MyContext, ParentType extends
|
|
8927
9210
|
resolveConfiguration?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IQueryResolveConfigurationArgs, 'input'>>;
|
8928
9211
|
resolveSettings?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionSettings']>>>, ParentType, ContextType, RequireFields<IQueryResolveSettingsArgs, 'uri'>>;
|
8929
9212
|
selectedOrgResource?: Resolver<Maybe<IResolversTypes['Context']>, ParentType, ContextType>;
|
8930
|
-
sidebarState?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8931
9213
|
team?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IQueryTeamArgs, 'teamId'>>;
|
8932
9214
|
teams?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccountTeam']>>>, ParentType, ContextType>;
|
8933
9215
|
viewerPolicies?: Resolver<Maybe<IResolversTypes['PolicySubject']>, ParentType, ContextType, RequireFields<IQueryViewerPoliciesArgs, 'input'>>;
|
@@ -9078,17 +9360,6 @@ export declare type ITeamMemberResolvers<ContextType = MyContext, ParentType ext
|
|
9078
9360
|
status?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9079
9361
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9080
9362
|
};
|
9081
|
-
export declare type ITeamServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['TeamService'] = IResolversParentTypes['TeamService']> = {
|
9082
|
-
getTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<ITeamServiceGetTeamArgs, never>>;
|
9083
|
-
getUserTeams?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccountTeam']>>>, ParentType, ContextType, RequireFields<ITeamServiceGetUserTeamsArgs, never>>;
|
9084
|
-
createTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<ITeamServiceCreateTeamArgs, never>>;
|
9085
|
-
updateTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<ITeamServiceUpdateTeamArgs, never>>;
|
9086
|
-
addWorkspaces?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<ITeamServiceAddWorkspacesArgs, never>>;
|
9087
|
-
removeTeam?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<ITeamServiceRemoveTeamArgs, never>>;
|
9088
|
-
createDefaultTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<ITeamServiceCreateDefaultTeamArgs, never>>;
|
9089
|
-
sendProjectNotification?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<ITeamServiceSendProjectNotificationArgs, never>>;
|
9090
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9091
|
-
};
|
9092
9363
|
export interface ITimeScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Time'], any> {
|
9093
9364
|
name: 'Time';
|
9094
9365
|
}
|
@@ -9151,7 +9422,7 @@ export declare type IUserAuth0SessionDeviceInfoResolvers<ContextType = MyContext
|
|
9151
9422
|
os?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9152
9423
|
deviceName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9153
9424
|
browserName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9154
|
-
|
9425
|
+
platform?: Resolver<IResolversTypes['DeviceInfoPlatform'], ParentType, ContextType>;
|
9155
9426
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9156
9427
|
};
|
9157
9428
|
export declare type IUserAuth0SessionInfoResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserAuth0SessionInfo'] = IResolversParentTypes['UserAuth0SessionInfo']> = {
|
@@ -9210,12 +9481,6 @@ export declare type IUserMetadataResolvers<ContextType = MyContext, ParentType e
|
|
9210
9481
|
zip_code?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
9211
9482
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9212
9483
|
};
|
9213
|
-
export declare type IUserOrgResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserOrg'] = IResolversParentTypes['UserOrg']> = {
|
9214
|
-
userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
9215
|
-
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
9216
|
-
inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9217
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9218
|
-
};
|
9219
9484
|
export declare type IUserPreviousValuesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserPreviousValues'] = IResolversParentTypes['UserPreviousValues']> = {
|
9220
9485
|
auth0UserId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9221
9486
|
createdAt?: Resolver<IResolversTypes['DateTime'], ParentType, ContextType>;
|
@@ -9256,6 +9521,13 @@ export declare type IUserProfileResolvers<ContextType = MyContext, ParentType ex
|
|
9256
9521
|
nonce?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9257
9522
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9258
9523
|
};
|
9524
|
+
export declare type IUserSessionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserSession'] = IResolversParentTypes['UserSession']> = {
|
9525
|
+
sessionId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9526
|
+
deviceInfo?: Resolver<Maybe<IResolversTypes['UserAuth0SessionDeviceInfo']>, ParentType, ContextType>;
|
9527
|
+
lastLoginAt?: Resolver<Maybe<IResolversTypes['Date']>, ParentType, ContextType>;
|
9528
|
+
lastLoginIp?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9529
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9530
|
+
};
|
9259
9531
|
export declare type IUserSessionIdResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserSessionId'] = IResolversParentTypes['UserSessionId']> = {
|
9260
9532
|
sessionId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9261
9533
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
@@ -9276,7 +9548,7 @@ export declare type IUserStateResolvers<ContextType = MyContext, ParentType exte
|
|
9276
9548
|
isNewlyLoggedIn?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9277
9549
|
isProfileFetching?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9278
9550
|
isSocialLogin?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9279
|
-
linkedIdentities?: Resolver<Maybe<Array<Maybe<IResolversTypes['
|
9551
|
+
linkedIdentities?: Resolver<Maybe<Array<Maybe<IResolversTypes['LinkedIdentity']>>>, ParentType, ContextType>;
|
9280
9552
|
loggingInProgress?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9281
9553
|
passwordResetProgress?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9282
9554
|
passwordResetSuccess?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
@@ -9293,6 +9565,11 @@ export declare type IUserTokenResolvers<ContextType = MyContext, ParentType exte
|
|
9293
9565
|
valid?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9294
9566
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9295
9567
|
};
|
9568
|
+
export declare type IUsersTokenResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UsersToken'] = IResolversParentTypes['UsersToken']> = {
|
9569
|
+
userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
9570
|
+
tokens?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserToken']>>>, ParentType, ContextType>;
|
9571
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9572
|
+
};
|
9296
9573
|
export declare type IViewerSettingsSubjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ViewerSettingsSubject'] = IResolversParentTypes['ViewerSettingsSubject']> = {
|
9297
9574
|
settingsURL?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
|
9298
9575
|
settings?: Resolver<Maybe<IResolversTypes['Preferences']>, ParentType, ContextType>;
|
@@ -9302,19 +9579,22 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9302
9579
|
AccessRole?: IAccessRoleResolvers<ContextType>;
|
9303
9580
|
AccessToken?: IAccessTokenResolvers<ContextType>;
|
9304
9581
|
AccessTokenConnection?: IAccessTokenConnectionResolvers<ContextType>;
|
9305
|
-
AccountService?: IAccountServiceResolvers<ContextType>;
|
9306
9582
|
AccountTeam?: IAccountTeamResolvers<ContextType>;
|
9307
9583
|
AdminIdeSettings?: IAdminIdeSettingsResolvers<ContextType>;
|
9308
9584
|
AnyObject?: GraphQLScalarType;
|
9309
9585
|
ApiExternalAccount?: IApiExternalAccountResolvers<ContextType>;
|
9310
9586
|
ApiManagement?: IApiManagementResolvers<ContextType>;
|
9587
|
+
ApplicationConfiguration?: IApplicationConfigurationResolvers<ContextType>;
|
9311
9588
|
ApplicationPolicy?: IApplicationPolicyResolvers<ContextType>;
|
9312
|
-
|
9589
|
+
ApplicationRole?: IApplicationRoleResolvers<ContextType>;
|
9313
9590
|
ApplicationSettings?: IApplicationSettingsResolvers<ContextType>;
|
9314
9591
|
Auth0Identity?: IAuth0IdentityResolvers<ContextType>;
|
9315
9592
|
Auth0IdentityProfileData?: IAuth0IdentityProfileDataResolvers<ContextType>;
|
9316
9593
|
AuthTokens?: IAuthTokensResolvers<ContextType>;
|
9317
9594
|
AuthUser?: IAuthUserResolvers<ContextType>;
|
9595
|
+
BaseAccountService?: IBaseAccountServiceResolvers<ContextType>;
|
9596
|
+
BaseOrganizationService?: IBaseOrganizationServiceResolvers<ContextType>;
|
9597
|
+
BaseTeamService?: IBaseTeamServiceResolvers<ContextType>;
|
9318
9598
|
Configuration?: IConfigurationResolvers<ContextType>;
|
9319
9599
|
ConfigurationData?: IConfigurationDataResolvers<ContextType>;
|
9320
9600
|
ConfigurationExtensionInfo?: IConfigurationExtensionInfoResolvers<ContextType>;
|
@@ -9348,7 +9628,6 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9348
9628
|
IAuth0User?: IIAuth0UserResolvers<ContextType>;
|
9349
9629
|
IAuth0UserProfile?: IIAuth0UserProfileResolvers<ContextType>;
|
9350
9630
|
ICity?: IICityResolvers<ContextType>;
|
9351
|
-
IConfigurationChangeEvent?: IIConfigurationChangeEventResolvers<ContextType>;
|
9352
9631
|
IConfigurationModel?: IIConfigurationModelResolvers<ContextType>;
|
9353
9632
|
IConfigurationService?: IIConfigurationServiceResolvers<ContextType>;
|
9354
9633
|
ICountry?: IICountryResolvers<ContextType>;
|
@@ -9369,6 +9648,7 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9369
9648
|
InviteMember?: IInviteMemberResolvers<ContextType>;
|
9370
9649
|
JSON?: GraphQLScalarType;
|
9371
9650
|
JSONObject?: GraphQLScalarType;
|
9651
|
+
LinkedIdentity?: ILinkedIdentityResolvers<ContextType>;
|
9372
9652
|
LoginError?: ILoginErrorResolvers<ContextType>;
|
9373
9653
|
MachineConfiguration?: IMachineConfigurationResolvers<ContextType>;
|
9374
9654
|
MachineSettings?: IMachineSettingsResolvers<ContextType>;
|
@@ -9381,7 +9661,6 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9381
9661
|
OrgMember?: IOrgMemberResolvers<ContextType>;
|
9382
9662
|
OrgMembersOutput?: IOrgMembersOutputResolvers<ContextType>;
|
9383
9663
|
OrgUser?: IOrgUserResolvers<ContextType>;
|
9384
|
-
OrgUserAccunt?: IOrgUserAccuntResolvers<ContextType>;
|
9385
9664
|
Organization?: IOrganizationResolvers<ContextType>;
|
9386
9665
|
OrganizationConfiguration?: IOrganizationConfigurationResolvers<ContextType>;
|
9387
9666
|
OrganizationCreatedEvent?: IOrganizationCreatedEventResolvers<ContextType>;
|
@@ -9396,7 +9675,6 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9396
9675
|
OrganizationResourceData?: IOrganizationResourceDataResolvers<ContextType>;
|
9397
9676
|
OrganizationResourceSettings?: IOrganizationResourceSettingsResolvers<ContextType>;
|
9398
9677
|
OrganizationRole?: IOrganizationRoleResolvers<ContextType>;
|
9399
|
-
OrganizationService?: IOrganizationServiceResolvers<ContextType>;
|
9400
9678
|
OrganizationSettings?: IOrganizationSettingsResolvers<ContextType>;
|
9401
9679
|
OrganizationsDeactivatedEvent?: IOrganizationsDeactivatedEventResolvers<ContextType>;
|
9402
9680
|
OrganizationsDeletedEvent?: IOrganizationsDeletedEventResolvers<ContextType>;
|
@@ -9404,6 +9682,7 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9404
9682
|
PageInfo?: IPageInfoResolvers<ContextType>;
|
9405
9683
|
PermissionSubject?: IPermissionSubjectResolvers<ContextType>;
|
9406
9684
|
PhoneNumber?: IPhoneNumberResolvers<ContextType>;
|
9685
|
+
PolicyConfiguration?: IPolicyConfigurationResolvers<ContextType>;
|
9407
9686
|
PolicySubject?: IPolicySubjectResolvers<ContextType>;
|
9408
9687
|
PopupIntegrationAuthorization?: IPopupIntegrationAuthorizationResolvers<ContextType>;
|
9409
9688
|
Position?: IPositionResolvers<ContextType>;
|
@@ -9443,7 +9722,6 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9443
9722
|
Subscription?: ISubscriptionResolvers<ContextType>;
|
9444
9723
|
TeamInvitationEmailVariables?: ITeamInvitationEmailVariablesResolvers<ContextType>;
|
9445
9724
|
TeamMember?: ITeamMemberResolvers<ContextType>;
|
9446
|
-
TeamService?: ITeamServiceResolvers<ContextType>;
|
9447
9725
|
Time?: GraphQLScalarType;
|
9448
9726
|
URI?: GraphQLScalarType;
|
9449
9727
|
URIInput?: GraphQLScalarType;
|
@@ -9459,13 +9737,14 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9459
9737
|
UserContext?: IUserContextResolvers<ContextType>;
|
9460
9738
|
UserDevice?: IUserDeviceResolvers<ContextType>;
|
9461
9739
|
UserMetadata?: IUserMetadataResolvers<ContextType>;
|
9462
|
-
UserOrg?: IUserOrgResolvers<ContextType>;
|
9463
9740
|
UserPreviousValues?: IUserPreviousValuesResolvers<ContextType>;
|
9464
9741
|
UserProfile?: IUserProfileResolvers<ContextType>;
|
9742
|
+
UserSession?: IUserSessionResolvers<ContextType>;
|
9465
9743
|
UserSessionId?: IUserSessionIdResolvers<ContextType>;
|
9466
9744
|
UserSettings?: IUserSettingsResolvers<ContextType>;
|
9467
9745
|
UserState?: IUserStateResolvers<ContextType>;
|
9468
9746
|
UserToken?: IUserTokenResolvers<ContextType>;
|
9747
|
+
UsersToken?: IUsersTokenResolvers<ContextType>;
|
9469
9748
|
ViewerSettingsSubject?: IViewerSettingsSubjectResolvers<ContextType>;
|
9470
9749
|
};
|
9471
9750
|
export declare type IDirectiveResolvers<ContextType = MyContext> = {
|