@adminide-stack/core 3.1.2-alpha.13 → 3.1.2-alpha.136
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 +708 -430
- package/lib/interfaces/generated/generated-models.js +121 -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,6 +614,7 @@ 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",
|
@@ -428,6 +647,7 @@ export declare enum IConfigCollectionName {
|
|
428
647
|
Application = "application",
|
429
648
|
Clients = "clients",
|
430
649
|
IntegrationWorkflow = "integrationWorkflow",
|
650
|
+
Integrationconfigurations = "integrationconfigurations",
|
431
651
|
Machines = "machines",
|
432
652
|
Organizations = "organizations",
|
433
653
|
Projects = "projects",
|
@@ -450,7 +670,7 @@ export declare enum IConfigFragmentName {
|
|
450
670
|
/** Billing */
|
451
671
|
BillingPlanPolicies = "billingPlanPolicies"
|
452
672
|
}
|
453
|
-
export declare type IConfiguration = IDefaultConfiguration |
|
673
|
+
export declare type IConfiguration = IDefaultConfiguration | IPolicyConfiguration | IApplicationConfiguration | IUserConfiguration | IMachineConfiguration | IOrganizationConfiguration | IOrganizationResourceConfiguration;
|
454
674
|
export declare enum IConfigurationContributionNames {
|
455
675
|
DefaultPermissions = "defaultPermissions",
|
456
676
|
DefaultPolicies = "defaultPolicies",
|
@@ -461,6 +681,8 @@ export declare enum IConfigurationContributionNames {
|
|
461
681
|
export declare type IConfigurationData = {
|
462
682
|
__typename?: 'ConfigurationData';
|
463
683
|
defaults?: Maybe<IIConfigurationModel>;
|
684
|
+
policy?: Maybe<IIConfigurationModel>;
|
685
|
+
application?: Maybe<IIConfigurationModel>;
|
464
686
|
user?: Maybe<IIConfigurationModel>;
|
465
687
|
machine?: Maybe<IIConfigurationModel>;
|
466
688
|
organization?: Maybe<IIConfigurationModel>;
|
@@ -499,6 +721,15 @@ export declare type IConfigurationOverridesInput = {
|
|
499
721
|
};
|
500
722
|
export declare type IConfigurationPolicy = IDefaultPolicy | IOrganizationPolicy | IResourcePolicy | IApplicationPolicy;
|
501
723
|
export { ConfigurationScope };
|
724
|
+
export declare enum IConfigurationServiceAction {
|
725
|
+
GetAllConfigurationData = "getAllConfigurationData",
|
726
|
+
GetConfiguration = "getConfiguration",
|
727
|
+
GetDefaultSettings = "getDefaultSettings",
|
728
|
+
GetDefaultSettingsResource = "getDefaultSettingsResource",
|
729
|
+
Parser = "parser",
|
730
|
+
ReadFile = "readFile",
|
731
|
+
UpdateValue = "updateValue"
|
732
|
+
}
|
502
733
|
export { ConfigurationTarget };
|
503
734
|
export declare type IConfigurationUpdateEvent = {
|
504
735
|
__typename?: 'ConfigurationUpdateEvent';
|
@@ -673,8 +904,13 @@ export declare type IDeviceInfoInput = {
|
|
673
904
|
os: Scalars['String'];
|
674
905
|
deviceName?: Maybe<Scalars['String']>;
|
675
906
|
browserName?: Maybe<Scalars['String']>;
|
676
|
-
|
907
|
+
platform: IDeviceInfoPlatform;
|
677
908
|
};
|
909
|
+
export declare enum IDeviceInfoPlatform {
|
910
|
+
Mobile = "MOBILE",
|
911
|
+
Web = "WEB",
|
912
|
+
Extension = "EXTENSION"
|
913
|
+
}
|
678
914
|
export declare enum IEditPresentationTypes {
|
679
915
|
Multiline = "Multiline",
|
680
916
|
Singleline = "Singleline"
|
@@ -809,14 +1045,6 @@ export declare type IICity = {
|
|
809
1045
|
createdAt: Scalars['Date'];
|
810
1046
|
updatedAt?: Maybe<Scalars['Date']>;
|
811
1047
|
};
|
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
1048
|
export declare type IIConfigurationModel = {
|
821
1049
|
resource?: Maybe<Scalars['URI']>;
|
822
1050
|
target?: Maybe<Scalars['Int']>;
|
@@ -951,6 +1179,8 @@ export declare type IIntegrationConfigurationCreateOrUpdateInput = {
|
|
951
1179
|
integrationInfo?: Maybe<Scalars['JSON']>;
|
952
1180
|
userId?: Maybe<Scalars['ID']>;
|
953
1181
|
orgName?: Maybe<Scalars['String']>;
|
1182
|
+
settings?: Maybe<Scalars['AnyObject']>;
|
1183
|
+
settingsConfiguration?: Maybe<Scalars['AnyObject']>;
|
954
1184
|
};
|
955
1185
|
export declare type IIntegrationConfigurationFilterInput = {
|
956
1186
|
id?: Maybe<Scalars['ID']>;
|
@@ -1008,6 +1238,13 @@ export declare type IKeyPathSegment = {
|
|
1008
1238
|
/** The index of the array at this location to descend into. */
|
1009
1239
|
index?: Maybe<Scalars['Int']>;
|
1010
1240
|
};
|
1241
|
+
export declare type ILinkedIdentity = {
|
1242
|
+
__typename?: 'LinkedIdentity';
|
1243
|
+
connection?: Maybe<Scalars['String']>;
|
1244
|
+
isSocial?: Maybe<Scalars['Boolean']>;
|
1245
|
+
provider?: Maybe<Scalars['String']>;
|
1246
|
+
user_id?: Maybe<Scalars['String']>;
|
1247
|
+
};
|
1011
1248
|
export declare type ILoginError = {
|
1012
1249
|
__typename?: 'LoginError';
|
1013
1250
|
timeStamp?: Maybe<Scalars['DateTime']>;
|
@@ -1044,6 +1281,8 @@ export declare enum IMailTemplateId {
|
|
1044
1281
|
BillingNotificationId = "BillingNotificationId",
|
1045
1282
|
/** Prefix with Db to make sure it look into the database */
|
1046
1283
|
DbTeamInivitationId = "DbTeamInivitationId",
|
1284
|
+
/** Prefix with Db to make sure it look into the database */
|
1285
|
+
EmailVerificationOtp = "EMAIL_VERIFICATION_OTP",
|
1047
1286
|
JoinNotifyMember = "JOIN_NOTIFY_MEMBER",
|
1048
1287
|
JoinNotifyOwner = "JOIN_NOTIFY_OWNER",
|
1049
1288
|
/** Prefix with Db to make sure it look into the database */
|
@@ -1096,6 +1335,7 @@ export declare enum IMoleculerServiceName {
|
|
1096
1335
|
AccountsPostEventsService = "AccountsPostEventsService",
|
1097
1336
|
ApiManagementMoleculerService = "ApiManagementMoleculerService",
|
1098
1337
|
AuthUserService = "AuthUserService",
|
1338
|
+
ConfigurationService = "ConfigurationService",
|
1099
1339
|
IntegrationWorkflowService = "IntegrationWorkflowService",
|
1100
1340
|
OrganizationContextService = "OrganizationContextService",
|
1101
1341
|
PaymentEventListener = "PaymentEventListener",
|
@@ -1176,12 +1416,11 @@ export declare type IMutation = {
|
|
1176
1416
|
removedUserAuthIntegration?: Maybe<Scalars['Boolean']>;
|
1177
1417
|
renewAuthToken?: Maybe<IAuthTokens>;
|
1178
1418
|
resendOrganizationInvitation?: Maybe<Scalars['Boolean']>;
|
1179
|
-
resendUserEmailVerificationEmail?: Maybe<Scalars['Boolean']>;
|
1180
1419
|
resetUserPassword?: Maybe<Scalars['Boolean']>;
|
1420
|
+
sendEmailVerificationToken?: Maybe<Scalars['Boolean']>;
|
1181
1421
|
sendOrganizationInvitation?: Maybe<Scalars['Boolean']>;
|
1182
1422
|
sendUserPasswordResetEmail?: Maybe<Scalars['Boolean']>;
|
1183
1423
|
setSettingsValueByResource?: Maybe<Scalars['Boolean']>;
|
1184
|
-
toggleSidebar?: Maybe<Scalars['Boolean']>;
|
1185
1424
|
/** Triggers onUserLoggedIn events */
|
1186
1425
|
updateAuth0UserPassword?: Maybe<Scalars['Boolean']>;
|
1187
1426
|
updateConfiguration?: Maybe<Scalars['Boolean']>;
|
@@ -1198,7 +1437,8 @@ export declare type IMutation = {
|
|
1198
1437
|
updateRoleValue?: Maybe<Scalars['Boolean']>;
|
1199
1438
|
updateSelectedOrgResource?: Maybe<Scalars['Boolean']>;
|
1200
1439
|
updateUserAccount?: Maybe<Scalars['Boolean']>;
|
1201
|
-
|
1440
|
+
validatePasswordResetOtp?: Maybe<Scalars['Boolean']>;
|
1441
|
+
validateUserEmailVerificationToken?: Maybe<Scalars['Boolean']>;
|
1202
1442
|
};
|
1203
1443
|
export declare type IMutationAddSshKeyArgs = {
|
1204
1444
|
key: ISshKeyInput;
|
@@ -1285,6 +1525,8 @@ export declare type IMutationInitializeOrgNameInContextArgs = {
|
|
1285
1525
|
};
|
1286
1526
|
export declare type IMutationInitializePopupIntegrationAuthorizationArgs = {
|
1287
1527
|
code?: Maybe<Scalars['String']>;
|
1528
|
+
codeVerifier?: Maybe<Scalars['String']>;
|
1529
|
+
platform?: Maybe<IDeviceInfoPlatform>;
|
1288
1530
|
};
|
1289
1531
|
export declare type IMutationInitializeTeamInContextArgs = {
|
1290
1532
|
teamName?: Maybe<Scalars['String']>;
|
@@ -1323,14 +1565,14 @@ export declare type IMutationRemoveTeamMemberArgs = {
|
|
1323
1565
|
};
|
1324
1566
|
export declare type IMutationRemoveUserAuthSessionArgs = {
|
1325
1567
|
sessionId?: Maybe<Scalars['String']>;
|
1326
|
-
|
1568
|
+
platform?: Maybe<IDeviceInfoPlatform>;
|
1327
1569
|
};
|
1328
1570
|
export declare type IMutationRemovedUserAuthIntegrationArgs = {
|
1329
1571
|
provider?: Maybe<Scalars['String']>;
|
1330
1572
|
};
|
1331
1573
|
export declare type IMutationRenewAuthTokenArgs = {
|
1332
1574
|
sessionId?: Maybe<Scalars['String']>;
|
1333
|
-
|
1575
|
+
platform?: Maybe<IDeviceInfoPlatform>;
|
1334
1576
|
};
|
1335
1577
|
export declare type IMutationResendOrganizationInvitationArgs = {
|
1336
1578
|
id: Scalars['ID'];
|
@@ -1338,6 +1580,9 @@ export declare type IMutationResendOrganizationInvitationArgs = {
|
|
1338
1580
|
export declare type IMutationResetUserPasswordArgs = {
|
1339
1581
|
input: IUserPasswordResetInput;
|
1340
1582
|
};
|
1583
|
+
export declare type IMutationSendEmailVerificationTokenArgs = {
|
1584
|
+
email: Scalars['String'];
|
1585
|
+
};
|
1341
1586
|
export declare type IMutationSendOrganizationInvitationArgs = {
|
1342
1587
|
request?: Maybe<IOrganizationInvitationRequest>;
|
1343
1588
|
};
|
@@ -1349,9 +1594,6 @@ export declare type IMutationSetSettingsValueByResourceArgs = {
|
|
1349
1594
|
key?: Maybe<Scalars['String']>;
|
1350
1595
|
value?: Maybe<Scalars['String']>;
|
1351
1596
|
};
|
1352
|
-
export declare type IMutationToggleSidebarArgs = {
|
1353
|
-
state: Scalars['Boolean'];
|
1354
|
-
};
|
1355
1597
|
export declare type IMutationUpdateAuth0UserPasswordArgs = {
|
1356
1598
|
userId?: Maybe<Scalars['String']>;
|
1357
1599
|
password?: Maybe<Scalars['String']>;
|
@@ -1435,8 +1677,12 @@ export declare type IMutationUpdateSelectedOrgResourceArgs = {
|
|
1435
1677
|
export declare type IMutationUpdateUserAccountArgs = {
|
1436
1678
|
userInfo?: Maybe<IUserAuth0UpdateFields>;
|
1437
1679
|
};
|
1438
|
-
export declare type
|
1439
|
-
|
1680
|
+
export declare type IMutationValidatePasswordResetOtpArgs = {
|
1681
|
+
email: Scalars['String'];
|
1682
|
+
code: Scalars['String'];
|
1683
|
+
};
|
1684
|
+
export declare type IMutationValidateUserEmailVerificationTokenArgs = {
|
1685
|
+
code: Scalars['String'];
|
1440
1686
|
};
|
1441
1687
|
/** An object with an ID. */
|
1442
1688
|
export declare type INode = {
|
@@ -1457,6 +1703,7 @@ export declare type IOrgMember = {
|
|
1457
1703
|
_id?: Maybe<Scalars['String']>;
|
1458
1704
|
userId?: Maybe<Scalars['String']>;
|
1459
1705
|
role?: Maybe<IApplicationRoles>;
|
1706
|
+
user: IUserAccount;
|
1460
1707
|
isSelf?: Maybe<Scalars['Boolean']>;
|
1461
1708
|
inactive?: Maybe<Scalars['Boolean']>;
|
1462
1709
|
name?: Maybe<Scalars['String']>;
|
@@ -1479,18 +1726,10 @@ export declare type IOrgUser = IIOrgUser & {
|
|
1479
1726
|
role?: Maybe<IApplicationRoles>;
|
1480
1727
|
inactive?: Maybe<Scalars['Boolean']>;
|
1481
1728
|
orgName: Scalars['String'];
|
1482
|
-
user:
|
1729
|
+
user: IUserAccount;
|
1483
1730
|
isSelf: Scalars['Boolean'];
|
1484
1731
|
crossCheckEmail?: Maybe<Scalars['String']>;
|
1485
1732
|
};
|
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
1733
|
export declare type IOrgUserInput = {
|
1495
1734
|
userId?: Maybe<Scalars['String']>;
|
1496
1735
|
role?: Maybe<IApplicationRoles>;
|
@@ -1759,46 +1998,6 @@ export declare type IOrganizationRole = IIConfigurationModel & {
|
|
1759
1998
|
keys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1760
1999
|
overrides?: Maybe<Array<Maybe<IOverrides>>>;
|
1761
2000
|
};
|
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
2001
|
export declare enum IOrganizationServiceAction {
|
1803
2002
|
GetOrganization = "getOrganization",
|
1804
2003
|
CreateDefaultOrganization = "createDefaultOrganization",
|
@@ -1850,6 +2049,7 @@ export declare type IOrganizationsDeletedEvent = {
|
|
1850
2049
|
};
|
1851
2050
|
export declare type IOverrides = {
|
1852
2051
|
__typename?: 'Overrides';
|
2052
|
+
keys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1853
2053
|
contents?: Maybe<Scalars['AnyObject']>;
|
1854
2054
|
identifiers?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1855
2055
|
};
|
@@ -1901,6 +2101,17 @@ export declare type IPhoneNumberInput = {
|
|
1901
2101
|
countryCode?: Maybe<Scalars['String']>;
|
1902
2102
|
phoneNumber?: Maybe<Scalars['String']>;
|
1903
2103
|
};
|
2104
|
+
export declare type IPolicyConfiguration = IIConfigurationModel & {
|
2105
|
+
__typename?: 'PolicyConfiguration';
|
2106
|
+
/** The ID. */
|
2107
|
+
id?: Maybe<Scalars['ID']>;
|
2108
|
+
/** The URL to the user's settings. */
|
2109
|
+
resource: Scalars['URI'];
|
2110
|
+
target?: Maybe<Scalars['Int']>;
|
2111
|
+
contents?: Maybe<Scalars['AnyObject']>;
|
2112
|
+
keys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2113
|
+
overrides?: Maybe<Array<Maybe<IOverrides>>>;
|
2114
|
+
};
|
1904
2115
|
export declare type IPolicySubject = {
|
1905
2116
|
__typename?: 'PolicySubject';
|
1906
2117
|
/** The URL to the policies. */
|
@@ -2061,11 +2272,18 @@ export declare type IQuery = {
|
|
2061
2272
|
externalAccounts: IExternalAccountConnection;
|
2062
2273
|
/** Fetches a User from Auth0 Service */
|
2063
2274
|
fetchAuth0User?: Maybe<IUserProfile>;
|
2275
|
+
/**
|
2276
|
+
* fetchUserAuthorizedDevices
|
2277
|
+
* @deprecated not used
|
2278
|
+
* @deprecated Field no longer supported
|
2279
|
+
*/
|
2064
2280
|
fetchUserAuthorizedDevices?: Maybe<Array<Maybe<IUserDevice>>>;
|
2281
|
+
fetchUserSessions?: Maybe<Array<Maybe<IUserSession>>>;
|
2065
2282
|
filterIntegrationConfiguration?: Maybe<Array<Maybe<IIntegrationConfiguration>>>;
|
2066
2283
|
getAccounts?: Maybe<Array<Maybe<IUserAccount>>>;
|
2067
2284
|
getAllCountries?: Maybe<Array<Maybe<ICountry>>>;
|
2068
2285
|
getAllIntegrationConfigurations?: Maybe<IIntegrationConfigurationsOutput>;
|
2286
|
+
getAllUsersTokens?: Maybe<Array<Maybe<IUsersToken>>>;
|
2069
2287
|
getConfiguration?: Maybe<Array<Maybe<IConfiguration>>>;
|
2070
2288
|
getConfigurationData?: Maybe<IConfigurationData>;
|
2071
2289
|
getConfigurationPolicies?: Maybe<Array<Maybe<IConfigurationPolicy>>>;
|
@@ -2118,7 +2336,6 @@ export declare type IQuery = {
|
|
2118
2336
|
resolveConfiguration?: Maybe<Scalars['AnyObject']>;
|
2119
2337
|
resolveSettings?: Maybe<Array<Maybe<IContributionSettings>>>;
|
2120
2338
|
selectedOrgResource?: Maybe<IContext>;
|
2121
|
-
sidebarState?: Maybe<Scalars['Boolean']>;
|
2122
2339
|
team?: Maybe<IAccountTeam>;
|
2123
2340
|
teams?: Maybe<Array<Maybe<IAccountTeam>>>;
|
2124
2341
|
/** The policies for the viewer. */
|
@@ -2175,6 +2392,10 @@ export declare type IQueryGetAllIntegrationConfigurationsArgs = {
|
|
2175
2392
|
skip?: Maybe<Scalars['Int']>;
|
2176
2393
|
sort?: Maybe<ISort>;
|
2177
2394
|
};
|
2395
|
+
export declare type IQueryGetAllUsersTokensArgs = {
|
2396
|
+
userIds?: Maybe<Array<Scalars['String']>>;
|
2397
|
+
types: Array<ITokenTypesEnum>;
|
2398
|
+
};
|
2178
2399
|
export declare type IQueryGetConfigurationArgs = {
|
2179
2400
|
input?: Maybe<Array<Maybe<IConfigurationInput>>>;
|
2180
2401
|
};
|
@@ -2546,7 +2767,6 @@ export declare type ISubscriptionSubscribeToPolicyUpdateArgs = {
|
|
2546
2767
|
export declare type ITeamCreateRequest = {
|
2547
2768
|
name?: Maybe<Scalars['String']>;
|
2548
2769
|
title: Scalars['String'];
|
2549
|
-
orgName: Scalars['String'];
|
2550
2770
|
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2551
2771
|
emails?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2552
2772
|
teamMembers?: Maybe<Array<Maybe<ITeamMemberInput>>>;
|
@@ -2556,7 +2776,6 @@ export declare type ITeamCreateRequest = {
|
|
2556
2776
|
export declare type ITeamCreationRequest = {
|
2557
2777
|
name?: Maybe<Scalars['String']>;
|
2558
2778
|
title: Scalars['String'];
|
2559
|
-
orgName: Scalars['String'];
|
2560
2779
|
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2561
2780
|
emails?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2562
2781
|
parentTeam?: Maybe<Scalars['String']>;
|
@@ -2591,44 +2810,6 @@ export declare type ITeamRemoveRequest = {
|
|
2591
2810
|
id: Scalars['String'];
|
2592
2811
|
requestedUserId?: Maybe<Scalars['String']>;
|
2593
2812
|
};
|
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
2813
|
export declare enum ITeamServiceAction {
|
2633
2814
|
GetTeam = "getTeam",
|
2634
2815
|
GetUserTeams = "getUserTeams",
|
@@ -2666,6 +2847,10 @@ export declare type ITerritorialStateUpdateInput = {
|
|
2666
2847
|
name?: Maybe<Scalars['String']>;
|
2667
2848
|
country: Scalars['Int'];
|
2668
2849
|
};
|
2850
|
+
export declare enum ITokenTypesEnum {
|
2851
|
+
EmailVerification = "EMAIL_VERIFICATION",
|
2852
|
+
PasswordReset = "PASSWORD_RESET"
|
2853
|
+
}
|
2669
2854
|
/**
|
2670
2855
|
* The User Account.
|
2671
2856
|
*
|
@@ -2678,8 +2863,8 @@ export declare type ITerritorialStateUpdateInput = {
|
|
2678
2863
|
* @property
|
2679
2864
|
* featureFlags: Any super power given to the user via a super user
|
2680
2865
|
* @property
|
2681
|
-
*
|
2682
|
-
* More than one will exists
|
2866
|
+
* tokens: An array of objects with information about the user's tokens.
|
2867
|
+
* More than one will exists.
|
2683
2868
|
* @property
|
2684
2869
|
* inactive: true if the user is not currently being billed for service.
|
2685
2870
|
* @property
|
@@ -2687,10 +2872,6 @@ export declare type ITerritorialStateUpdateInput = {
|
|
2687
2872
|
* @property
|
2688
2873
|
* userOgs: the orgs and roles for this user on each.
|
2689
2874
|
*/
|
2690
|
-
export declare enum ITokenTypesEnum {
|
2691
|
-
EmailVerification = "EMAIL_VERIFICATION",
|
2692
|
-
PasswordReset = "PASSWORD_RESET"
|
2693
|
-
}
|
2694
2875
|
export declare type IUserAccount = INode & {
|
2695
2876
|
__typename?: 'UserAccount';
|
2696
2877
|
/**
|
@@ -2711,6 +2892,27 @@ export declare type IUserAccount = INode & {
|
|
2711
2892
|
tokens?: Maybe<Array<Maybe<IUserToken>>>;
|
2712
2893
|
username?: Maybe<Scalars['String']>;
|
2713
2894
|
};
|
2895
|
+
/**
|
2896
|
+
* The User Account.
|
2897
|
+
*
|
2898
|
+
* @property
|
2899
|
+
* id: User ID
|
2900
|
+
* @property
|
2901
|
+
* email: The user email
|
2902
|
+
* @property
|
2903
|
+
* emailVerified: ture if email is verified, otherwise false
|
2904
|
+
* @property
|
2905
|
+
* featureFlags: Any super power given to the user via a super user
|
2906
|
+
* @property
|
2907
|
+
* tokens: An array of objects with information about the user's tokens.
|
2908
|
+
* More than one will exists.
|
2909
|
+
* @property
|
2910
|
+
* inactive: true if the user is not currently being billed for service.
|
2911
|
+
* @property
|
2912
|
+
* isBillingLeader: true if user is BillingLeader
|
2913
|
+
* @property
|
2914
|
+
* userOgs: the orgs and roles for this user on each.
|
2915
|
+
*/
|
2714
2916
|
export declare type IUserAccountAccessTokensArgs = {
|
2715
2917
|
first?: Maybe<Scalars['Int']>;
|
2716
2918
|
last?: Maybe<Scalars['Int']>;
|
@@ -2792,7 +2994,7 @@ export declare type IUserAuth0SessionDeviceInfo = {
|
|
2792
2994
|
os?: Maybe<Scalars['String']>;
|
2793
2995
|
deviceName?: Maybe<Scalars['String']>;
|
2794
2996
|
browserName?: Maybe<Scalars['String']>;
|
2795
|
-
|
2997
|
+
platform: IDeviceInfoPlatform;
|
2796
2998
|
};
|
2797
2999
|
export declare type IUserAuth0SessionInfo = {
|
2798
3000
|
__typename?: 'UserAuth0SessionInfo';
|
@@ -2818,7 +3020,9 @@ export declare enum IUserBroadcasterAction {
|
|
2818
3020
|
OnUserLoggedIn = "onUserLoggedIn",
|
2819
3021
|
OnUserCreated = "onUserCreated",
|
2820
3022
|
OnUserUpdated = "onUserUpdated",
|
2821
|
-
OnUserDeleted = "onUserDeleted"
|
3023
|
+
OnUserDeleted = "onUserDeleted",
|
3024
|
+
OnUserSessionRevoked = "onUserSessionRevoked",
|
3025
|
+
OnUserSessionInitialized = "onUserSessionInitialized"
|
2822
3026
|
}
|
2823
3027
|
export declare type IUserConfiguration = IIConfigurationModel & {
|
2824
3028
|
__typename?: 'UserConfiguration';
|
@@ -2883,21 +3087,10 @@ export declare enum IUserOrderBy {
|
|
2883
3087
|
UpdatedAtAsc = "updatedAt_ASC",
|
2884
3088
|
UpdatedAtDesc = "updatedAt_DESC"
|
2885
3089
|
}
|
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
3090
|
export declare type IUserPasswordResetInput = {
|
2899
|
-
|
2900
|
-
|
3091
|
+
newPassword: Scalars['String'];
|
3092
|
+
currentPassword: Scalars['String'];
|
3093
|
+
email: Scalars['String'];
|
2901
3094
|
};
|
2902
3095
|
export declare type IUserPreviousValues = {
|
2903
3096
|
__typename?: 'UserPreviousValues';
|
@@ -2939,6 +3132,16 @@ export declare type IUserProfile = IIAuth0User & IIAuth0UserProfile & IIAuth0Tok
|
|
2939
3132
|
at_hash?: Maybe<Scalars['String']>;
|
2940
3133
|
nonce?: Maybe<Scalars['String']>;
|
2941
3134
|
};
|
3135
|
+
export declare enum IUserServiceAction {
|
3136
|
+
OnEmailVerified = "onEmailVerified"
|
3137
|
+
}
|
3138
|
+
export declare type IUserSession = {
|
3139
|
+
__typename?: 'UserSession';
|
3140
|
+
sessionId?: Maybe<Scalars['String']>;
|
3141
|
+
deviceInfo?: Maybe<IUserAuth0SessionDeviceInfo>;
|
3142
|
+
lastLoginAt?: Maybe<Scalars['Date']>;
|
3143
|
+
lastLoginIp?: Maybe<Scalars['String']>;
|
3144
|
+
};
|
2942
3145
|
export declare type IUserSessionId = {
|
2943
3146
|
__typename?: 'UserSessionId';
|
2944
3147
|
sessionId?: Maybe<Scalars['String']>;
|
@@ -2986,7 +3189,7 @@ export declare type IUserState = {
|
|
2986
3189
|
isProfileFetching?: Maybe<Scalars['Boolean']>;
|
2987
3190
|
/** True incase of social logged in user */
|
2988
3191
|
isSocialLogin?: Maybe<Scalars['Boolean']>;
|
2989
|
-
linkedIdentities?: Maybe<Array<Maybe<
|
3192
|
+
linkedIdentities?: Maybe<Array<Maybe<ILinkedIdentity>>>;
|
2990
3193
|
loggingInProgress?: Maybe<Scalars['Boolean']>;
|
2991
3194
|
/** True while Password verify link sending */
|
2992
3195
|
passwordResetProgress?: Maybe<Scalars['Boolean']>;
|
@@ -3012,6 +3215,11 @@ export declare type IUserTokenInput = {
|
|
3012
3215
|
token: Scalars['String'];
|
3013
3216
|
valid?: Maybe<Scalars['Boolean']>;
|
3014
3217
|
};
|
3218
|
+
export declare type IUsersToken = {
|
3219
|
+
__typename?: 'UsersToken';
|
3220
|
+
userId: Scalars['String'];
|
3221
|
+
tokens?: Maybe<Array<Maybe<IUserToken>>>;
|
3222
|
+
};
|
3015
3223
|
export declare type IViewerPoliciesInput = {
|
3016
3224
|
target: Scalars['Int'];
|
3017
3225
|
/**
|
@@ -3171,12 +3379,6 @@ export declare type IResendOrganizationInvitationMutationVariables = Exact<{
|
|
3171
3379
|
export declare type IResendOrganizationInvitationMutation = ({
|
3172
3380
|
__typename?: 'Mutation';
|
3173
3381
|
} & 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
3382
|
export declare type IResetUserPasswordMutationVariables = Exact<{
|
3181
3383
|
input: IUserPasswordResetInput;
|
3182
3384
|
}>;
|
@@ -3189,6 +3391,12 @@ export declare type ISendUserPasswordResetEmailMutationVariables = Exact<{
|
|
3189
3391
|
export declare type ISendUserPasswordResetEmailMutation = ({
|
3190
3392
|
__typename?: 'Mutation';
|
3191
3393
|
} & Pick<IMutation, 'sendUserPasswordResetEmail'>);
|
3394
|
+
export declare type ISendEmailVerificationMutationVariables = Exact<{
|
3395
|
+
email: Scalars['String'];
|
3396
|
+
}>;
|
3397
|
+
export declare type ISendEmailVerificationMutation = ({
|
3398
|
+
__typename?: 'Mutation';
|
3399
|
+
} & Pick<IMutation, 'sendEmailVerificationToken'>);
|
3192
3400
|
export declare type ISendOrganizationInvitationMutationVariables = Exact<{
|
3193
3401
|
request: IOrganizationInvitationRequest;
|
3194
3402
|
}>;
|
@@ -3230,12 +3438,19 @@ export declare type IUpdateUserAccountMutationVariables = Exact<{
|
|
3230
3438
|
export declare type IUpdateUserAccountMutation = ({
|
3231
3439
|
__typename?: 'Mutation';
|
3232
3440
|
} & Pick<IMutation, 'updateUserAccount'>);
|
3233
|
-
export declare type
|
3234
|
-
|
3441
|
+
export declare type IValidatePasswordResetOtpMutationVariables = Exact<{
|
3442
|
+
email: Scalars['String'];
|
3443
|
+
code: Scalars['String'];
|
3444
|
+
}>;
|
3445
|
+
export declare type IValidatePasswordResetOtpMutation = ({
|
3446
|
+
__typename?: 'Mutation';
|
3447
|
+
} & Pick<IMutation, 'validatePasswordResetOtp'>);
|
3448
|
+
export declare type IValidateUserEmailVerificationMutationVariables = Exact<{
|
3449
|
+
code: Scalars['String'];
|
3235
3450
|
}>;
|
3236
|
-
export declare type
|
3451
|
+
export declare type IValidateUserEmailVerificationMutation = ({
|
3237
3452
|
__typename?: 'Mutation';
|
3238
|
-
} & Pick<IMutation, '
|
3453
|
+
} & Pick<IMutation, 'validateUserEmailVerificationToken'>);
|
3239
3454
|
export declare type IGetUserOrganizationsListQueryVariables = Exact<{
|
3240
3455
|
[key: string]: never;
|
3241
3456
|
}>;
|
@@ -3352,8 +3567,8 @@ export declare type IGetOrganizationMembersWithNameQuery = ({
|
|
3352
3567
|
__typename?: 'OrgUser';
|
3353
3568
|
} & Pick<IOrgUser, 'userId' | 'inactive' | 'crossCheckEmail' | 'role'> & {
|
3354
3569
|
user: ({
|
3355
|
-
__typename?: '
|
3356
|
-
} & Pick<
|
3570
|
+
__typename?: 'UserAccount';
|
3571
|
+
} & Pick<IUserAccount, 'alias' | 'email' | 'username' | 'emailVerified' | 'familyName' | 'givenName'>);
|
3357
3572
|
})>>>;
|
3358
3573
|
})>;
|
3359
3574
|
});
|
@@ -3472,7 +3687,11 @@ export declare type IGetOrganizationMembersQuery = ({
|
|
3472
3687
|
} & Pick<IOrgMembersOutput, 'totalCount'> & {
|
3473
3688
|
data?: Maybe<Array<Maybe<({
|
3474
3689
|
__typename?: 'OrgMember';
|
3475
|
-
} & Pick<IOrgMember, 'userId' | 'isSelf' | 'role' | 'name' | 'email' | 'teamNames' | 'crossCheckEmail'>
|
3690
|
+
} & Pick<IOrgMember, 'userId' | 'isSelf' | 'role' | 'name' | 'email' | 'teamNames' | 'crossCheckEmail'> & {
|
3691
|
+
user: ({
|
3692
|
+
__typename?: 'UserAccount';
|
3693
|
+
} & Pick<IUserAccount, 'familyName' | 'givenName' | 'username' | 'alias' | 'email'>);
|
3694
|
+
})>>>;
|
3476
3695
|
})>;
|
3477
3696
|
});
|
3478
3697
|
export declare type IOrganizationsQueryVariables = Exact<{
|
@@ -3629,18 +3848,6 @@ export declare type IUserCreationEventFragment = ({
|
|
3629
3848
|
__typename?: 'UserMetadata';
|
3630
3849
|
} & Pick<IUserMetadata, 'last_name' | 'first_name' | 'phone_number' | 'work_email' | 'country' | 'company_name' | 'dob' | 'zip_code'>)>;
|
3631
3850
|
});
|
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
3851
|
export declare type IConfigurationUpdateEventFragment = ({
|
3645
3852
|
__typename: 'ConfigurationUpdateEvent';
|
3646
3853
|
} & Pick<IConfigurationUpdateEvent, 'contents' | 'resource' | 'target'> & {
|
@@ -3658,6 +3865,13 @@ export declare type IDefaultSettingFragment = ({
|
|
3658
3865
|
export declare type IOverWriteRoleValueFragment = ({
|
3659
3866
|
__typename?: 'ContributionSettings';
|
3660
3867
|
} & Pick<IContributionSettings, 'key' | 'value'>);
|
3868
|
+
declare type IConfiguration_ApplicationConfiguration_Fragment = ({
|
3869
|
+
__typename: 'ApplicationConfiguration';
|
3870
|
+
} & Pick<IApplicationConfiguration, 'resource' | 'target' | 'contents' | 'keys'> & {
|
3871
|
+
overrides?: Maybe<Array<Maybe<({
|
3872
|
+
__typename?: 'Overrides';
|
3873
|
+
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
3874
|
+
});
|
3661
3875
|
declare type IConfiguration_ApplicationPolicy_Fragment = ({
|
3662
3876
|
__typename: 'ApplicationPolicy';
|
3663
3877
|
} & Pick<IApplicationPolicy, 'resource' | 'target' | 'contents' | 'keys'> & {
|
@@ -3665,9 +3879,9 @@ declare type IConfiguration_ApplicationPolicy_Fragment = ({
|
|
3665
3879
|
__typename?: 'Overrides';
|
3666
3880
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
3667
3881
|
});
|
3668
|
-
declare type
|
3669
|
-
__typename: '
|
3670
|
-
} & Pick<
|
3882
|
+
declare type IConfiguration_ApplicationRole_Fragment = ({
|
3883
|
+
__typename: 'ApplicationRole';
|
3884
|
+
} & Pick<IApplicationRole, 'resource' | 'target' | 'contents' | 'keys'> & {
|
3671
3885
|
overrides?: Maybe<Array<Maybe<({
|
3672
3886
|
__typename?: 'Overrides';
|
3673
3887
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
@@ -3728,6 +3942,13 @@ declare type IConfiguration_OrganizationRole_Fragment = ({
|
|
3728
3942
|
__typename?: 'Overrides';
|
3729
3943
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
3730
3944
|
});
|
3945
|
+
declare type IConfiguration_PolicyConfiguration_Fragment = ({
|
3946
|
+
__typename: 'PolicyConfiguration';
|
3947
|
+
} & Pick<IPolicyConfiguration, 'resource' | 'target' | 'contents' | 'keys'> & {
|
3948
|
+
overrides?: Maybe<Array<Maybe<({
|
3949
|
+
__typename?: 'Overrides';
|
3950
|
+
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
3951
|
+
});
|
3731
3952
|
declare type IConfiguration_ResourcePolicy_Fragment = ({
|
3732
3953
|
__typename: 'ResourcePolicy';
|
3733
3954
|
} & Pick<IResourcePolicy, 'resource' | 'target' | 'contents' | 'keys'> & {
|
@@ -3749,7 +3970,7 @@ declare type IConfiguration_UserConfiguration_Fragment = ({
|
|
3749
3970
|
__typename?: 'Overrides';
|
3750
3971
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
3751
3972
|
});
|
3752
|
-
export declare type IConfigurationFragment = IConfiguration_ApplicationPolicy_Fragment |
|
3973
|
+
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
3974
|
export declare type IContextConfigurationFragment = ({
|
3754
3975
|
__typename?: 'OrganizationData';
|
3755
3976
|
} & Pick<IOrganizationData, 'id' | 'name' | 'configuration'> & {
|
@@ -3880,8 +4101,8 @@ export declare type IGetApplicationRoleQuery = ({
|
|
3880
4101
|
} | {
|
3881
4102
|
__typename?: 'ResourceRole';
|
3882
4103
|
} | ({
|
3883
|
-
__typename?: '
|
3884
|
-
} &
|
4104
|
+
__typename?: 'ApplicationRole';
|
4105
|
+
} & IConfiguration_ApplicationRole_Fragment)>>>;
|
3885
4106
|
});
|
3886
4107
|
export declare type IDefaultResolveSettingsQueryVariables = Exact<{
|
3887
4108
|
uri: Scalars['URI'];
|
@@ -3965,7 +4186,7 @@ export declare type IGetDefaultRoleQuery = ({
|
|
3965
4186
|
} | {
|
3966
4187
|
__typename?: 'ResourceRole';
|
3967
4188
|
} | {
|
3968
|
-
__typename?: '
|
4189
|
+
__typename?: 'ApplicationRole';
|
3969
4190
|
}>>>;
|
3970
4191
|
});
|
3971
4192
|
export declare type IGetTeamContextQueryVariables = Exact<{
|
@@ -4004,7 +4225,7 @@ export declare type IGetUserAccessRoleQuery = ({
|
|
4004
4225
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
4005
4226
|
__typename?: 'ResourceRole';
|
4006
4227
|
} & IConfiguration_ResourceRole_Fragment) | {
|
4007
|
-
__typename?: '
|
4228
|
+
__typename?: 'ApplicationRole';
|
4008
4229
|
}>>>;
|
4009
4230
|
resourceUserRoles?: Maybe<Array<Maybe<({
|
4010
4231
|
__typename?: 'ResourceUser';
|
@@ -4032,9 +4253,13 @@ export declare type IGetOrgConfigurationQuery = ({
|
|
4032
4253
|
getConfiguration?: Maybe<Array<Maybe<{
|
4033
4254
|
__typename?: 'DefaultConfiguration';
|
4034
4255
|
} | {
|
4035
|
-
__typename?: '
|
4256
|
+
__typename?: 'PolicyConfiguration';
|
4257
|
+
} | {
|
4258
|
+
__typename?: 'ApplicationConfiguration';
|
4036
4259
|
} | {
|
4037
4260
|
__typename?: 'UserConfiguration';
|
4261
|
+
} | {
|
4262
|
+
__typename?: 'MachineConfiguration';
|
4038
4263
|
} | ({
|
4039
4264
|
__typename?: 'OrganizationConfiguration';
|
4040
4265
|
} & IConfiguration_OrganizationConfiguration_Fragment) | {
|
@@ -4070,7 +4295,7 @@ export declare type IGetOrgRoleQuery = ({
|
|
4070
4295
|
} & IConfiguration_OrganizationRole_Fragment) | {
|
4071
4296
|
__typename?: 'ResourceRole';
|
4072
4297
|
} | {
|
4073
|
-
__typename?: '
|
4298
|
+
__typename?: 'ApplicationRole';
|
4074
4299
|
}>>>;
|
4075
4300
|
});
|
4076
4301
|
export declare type IGetOrgWithResourcesPolicyQueryVariables = Exact<{
|
@@ -4101,9 +4326,9 @@ export declare type IGetOrgWithResourcesRoleQuery = ({
|
|
4101
4326
|
__typename?: 'OrganizationRole';
|
4102
4327
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
4103
4328
|
__typename?: 'ResourceRole';
|
4104
|
-
} & IConfiguration_ResourceRole_Fragment) | {
|
4105
|
-
__typename?: '
|
4106
|
-
}>>>;
|
4329
|
+
} & IConfiguration_ResourceRole_Fragment) | ({
|
4330
|
+
__typename?: 'ApplicationRole';
|
4331
|
+
} & IConfiguration_ApplicationRole_Fragment)>>>;
|
4107
4332
|
});
|
4108
4333
|
export declare type IResolveConfigurationQueryVariables = Exact<{
|
4109
4334
|
input: IPreferencesInputInput;
|
@@ -4122,9 +4347,13 @@ export declare type IGetResourcesConfigurationQuery = ({
|
|
4122
4347
|
getConfiguration?: Maybe<Array<Maybe<{
|
4123
4348
|
__typename?: 'DefaultConfiguration';
|
4124
4349
|
} | {
|
4125
|
-
__typename?: '
|
4350
|
+
__typename?: 'PolicyConfiguration';
|
4351
|
+
} | {
|
4352
|
+
__typename?: 'ApplicationConfiguration';
|
4126
4353
|
} | {
|
4127
4354
|
__typename?: 'UserConfiguration';
|
4355
|
+
} | {
|
4356
|
+
__typename?: 'MachineConfiguration';
|
4128
4357
|
} | {
|
4129
4358
|
__typename?: 'OrganizationConfiguration';
|
4130
4359
|
} | ({
|
@@ -4139,11 +4368,15 @@ export declare type IGetUserConfigurationQuery = ({
|
|
4139
4368
|
} & {
|
4140
4369
|
getConfiguration?: Maybe<Array<Maybe<({
|
4141
4370
|
__typename?: 'DefaultConfiguration';
|
4142
|
-
} & IConfiguration_DefaultConfiguration_Fragment) |
|
4143
|
-
__typename?: '
|
4144
|
-
}
|
4371
|
+
} & IConfiguration_DefaultConfiguration_Fragment) | {
|
4372
|
+
__typename?: 'PolicyConfiguration';
|
4373
|
+
} | {
|
4374
|
+
__typename?: 'ApplicationConfiguration';
|
4375
|
+
} | ({
|
4145
4376
|
__typename?: 'UserConfiguration';
|
4146
|
-
} & IConfiguration_UserConfiguration_Fragment) | {
|
4377
|
+
} & IConfiguration_UserConfiguration_Fragment) | ({
|
4378
|
+
__typename?: 'MachineConfiguration';
|
4379
|
+
} & IConfiguration_MachineConfiguration_Fragment) | {
|
4147
4380
|
__typename?: 'OrganizationConfiguration';
|
4148
4381
|
} | {
|
4149
4382
|
__typename?: 'OrganizationResourceConfiguration';
|
@@ -4222,7 +4455,7 @@ export declare type IGetRoleQuery = ({
|
|
4222
4455
|
} & Pick<IOrganizationRole, 'contents' | 'keys'>) | {
|
4223
4456
|
__typename?: 'ResourceRole';
|
4224
4457
|
} | {
|
4225
|
-
__typename?: '
|
4458
|
+
__typename?: 'ApplicationRole';
|
4226
4459
|
}>;
|
4227
4460
|
});
|
4228
4461
|
export declare type IGetOrgWithResourcesConfigurationQueryVariables = Exact<{
|
@@ -4233,11 +4466,15 @@ export declare type IGetOrgWithResourcesConfigurationQuery = ({
|
|
4233
4466
|
} & {
|
4234
4467
|
getConfiguration?: Maybe<Array<Maybe<{
|
4235
4468
|
__typename?: 'DefaultConfiguration';
|
4236
|
-
} |
|
4237
|
-
__typename?: '
|
4238
|
-
}
|
4469
|
+
} | {
|
4470
|
+
__typename?: 'PolicyConfiguration';
|
4471
|
+
} | {
|
4472
|
+
__typename?: 'ApplicationConfiguration';
|
4473
|
+
} | {
|
4239
4474
|
__typename?: 'UserConfiguration';
|
4240
4475
|
} | ({
|
4476
|
+
__typename?: 'MachineConfiguration';
|
4477
|
+
} & IConfiguration_MachineConfiguration_Fragment) | ({
|
4241
4478
|
__typename?: 'OrganizationConfiguration';
|
4242
4479
|
} & IConfiguration_OrganizationConfiguration_Fragment) | ({
|
4243
4480
|
__typename?: 'OrganizationResourceConfiguration';
|
@@ -4252,10 +4489,14 @@ export declare type IGetUserWithDefaultConfigurationQuery = ({
|
|
4252
4489
|
getConfiguration?: Maybe<Array<Maybe<({
|
4253
4490
|
__typename?: 'DefaultConfiguration';
|
4254
4491
|
} & IConfiguration_DefaultConfiguration_Fragment) | {
|
4255
|
-
__typename?: '
|
4492
|
+
__typename?: 'PolicyConfiguration';
|
4493
|
+
} | {
|
4494
|
+
__typename?: 'ApplicationConfiguration';
|
4256
4495
|
} | ({
|
4257
4496
|
__typename?: 'UserConfiguration';
|
4258
4497
|
} & IConfiguration_UserConfiguration_Fragment) | {
|
4498
|
+
__typename?: 'MachineConfiguration';
|
4499
|
+
} | {
|
4259
4500
|
__typename?: 'OrganizationConfiguration';
|
4260
4501
|
} | {
|
4261
4502
|
__typename?: 'OrganizationResourceConfiguration';
|
@@ -4425,10 +4666,12 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4425
4666
|
__typename?: 'ConfigurationData';
|
4426
4667
|
} & Pick<IConfigurationData, 'isComplete'> & {
|
4427
4668
|
defaults?: Maybe<({
|
4669
|
+
__typename?: 'ApplicationConfiguration';
|
4670
|
+
} & IConfiguration_ApplicationConfiguration_Fragment) | ({
|
4428
4671
|
__typename?: 'ApplicationPolicy';
|
4429
4672
|
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4430
|
-
__typename?: '
|
4431
|
-
} &
|
4673
|
+
__typename?: 'ApplicationRole';
|
4674
|
+
} & IConfiguration_ApplicationRole_Fragment) | ({
|
4432
4675
|
__typename?: 'DefaultConfiguration';
|
4433
4676
|
} & IConfiguration_DefaultConfiguration_Fragment) | ({
|
4434
4677
|
__typename?: 'DefaultPolicy';
|
@@ -4445,6 +4688,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4445
4688
|
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
4446
4689
|
__typename?: 'OrganizationRole';
|
4447
4690
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
4691
|
+
__typename?: 'PolicyConfiguration';
|
4692
|
+
} & IConfiguration_PolicyConfiguration_Fragment) | ({
|
4448
4693
|
__typename?: 'ResourcePolicy';
|
4449
4694
|
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
4450
4695
|
__typename?: 'ResourceRole';
|
@@ -4452,10 +4697,12 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4452
4697
|
__typename?: 'UserConfiguration';
|
4453
4698
|
} & IConfiguration_UserConfiguration_Fragment)>;
|
4454
4699
|
user?: Maybe<({
|
4700
|
+
__typename?: 'ApplicationConfiguration';
|
4701
|
+
} & IConfiguration_ApplicationConfiguration_Fragment) | ({
|
4455
4702
|
__typename?: 'ApplicationPolicy';
|
4456
4703
|
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4457
|
-
__typename?: '
|
4458
|
-
} &
|
4704
|
+
__typename?: 'ApplicationRole';
|
4705
|
+
} & IConfiguration_ApplicationRole_Fragment) | ({
|
4459
4706
|
__typename?: 'DefaultConfiguration';
|
4460
4707
|
} & IConfiguration_DefaultConfiguration_Fragment) | ({
|
4461
4708
|
__typename?: 'DefaultPolicy';
|
@@ -4472,6 +4719,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4472
4719
|
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
4473
4720
|
__typename?: 'OrganizationRole';
|
4474
4721
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
4722
|
+
__typename?: 'PolicyConfiguration';
|
4723
|
+
} & IConfiguration_PolicyConfiguration_Fragment) | ({
|
4475
4724
|
__typename?: 'ResourcePolicy';
|
4476
4725
|
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
4477
4726
|
__typename?: 'ResourceRole';
|
@@ -4479,10 +4728,12 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4479
4728
|
__typename?: 'UserConfiguration';
|
4480
4729
|
} & IConfiguration_UserConfiguration_Fragment)>;
|
4481
4730
|
machine?: Maybe<({
|
4731
|
+
__typename?: 'ApplicationConfiguration';
|
4732
|
+
} & IConfiguration_ApplicationConfiguration_Fragment) | ({
|
4482
4733
|
__typename?: 'ApplicationPolicy';
|
4483
4734
|
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4484
|
-
__typename?: '
|
4485
|
-
} &
|
4735
|
+
__typename?: 'ApplicationRole';
|
4736
|
+
} & IConfiguration_ApplicationRole_Fragment) | ({
|
4486
4737
|
__typename?: 'DefaultConfiguration';
|
4487
4738
|
} & IConfiguration_DefaultConfiguration_Fragment) | ({
|
4488
4739
|
__typename?: 'DefaultPolicy';
|
@@ -4499,6 +4750,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4499
4750
|
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
4500
4751
|
__typename?: 'OrganizationRole';
|
4501
4752
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
4753
|
+
__typename?: 'PolicyConfiguration';
|
4754
|
+
} & IConfiguration_PolicyConfiguration_Fragment) | ({
|
4502
4755
|
__typename?: 'ResourcePolicy';
|
4503
4756
|
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
4504
4757
|
__typename?: 'ResourceRole';
|
@@ -4506,10 +4759,12 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4506
4759
|
__typename?: 'UserConfiguration';
|
4507
4760
|
} & IConfiguration_UserConfiguration_Fragment)>;
|
4508
4761
|
organization?: Maybe<({
|
4762
|
+
__typename?: 'ApplicationConfiguration';
|
4763
|
+
} & IConfiguration_ApplicationConfiguration_Fragment) | ({
|
4509
4764
|
__typename?: 'ApplicationPolicy';
|
4510
4765
|
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4511
|
-
__typename?: '
|
4512
|
-
} &
|
4766
|
+
__typename?: 'ApplicationRole';
|
4767
|
+
} & IConfiguration_ApplicationRole_Fragment) | ({
|
4513
4768
|
__typename?: 'DefaultConfiguration';
|
4514
4769
|
} & IConfiguration_DefaultConfiguration_Fragment) | ({
|
4515
4770
|
__typename?: 'DefaultPolicy';
|
@@ -4526,6 +4781,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4526
4781
|
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
4527
4782
|
__typename?: 'OrganizationRole';
|
4528
4783
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
4784
|
+
__typename?: 'PolicyConfiguration';
|
4785
|
+
} & IConfiguration_PolicyConfiguration_Fragment) | ({
|
4529
4786
|
__typename?: 'ResourcePolicy';
|
4530
4787
|
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
4531
4788
|
__typename?: 'ResourceRole';
|
@@ -4533,10 +4790,12 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4533
4790
|
__typename?: 'UserConfiguration';
|
4534
4791
|
} & IConfiguration_UserConfiguration_Fragment)>;
|
4535
4792
|
resources?: Maybe<Array<Maybe<({
|
4793
|
+
__typename?: 'ApplicationConfiguration';
|
4794
|
+
} & IConfiguration_ApplicationConfiguration_Fragment) | ({
|
4536
4795
|
__typename?: 'ApplicationPolicy';
|
4537
4796
|
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4538
|
-
__typename?: '
|
4539
|
-
} &
|
4797
|
+
__typename?: 'ApplicationRole';
|
4798
|
+
} & IConfiguration_ApplicationRole_Fragment) | ({
|
4540
4799
|
__typename?: 'DefaultConfiguration';
|
4541
4800
|
} & IConfiguration_DefaultConfiguration_Fragment) | ({
|
4542
4801
|
__typename?: 'DefaultPolicy';
|
@@ -4553,6 +4812,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4553
4812
|
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
4554
4813
|
__typename?: 'OrganizationRole';
|
4555
4814
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
4815
|
+
__typename?: 'PolicyConfiguration';
|
4816
|
+
} & IConfiguration_PolicyConfiguration_Fragment) | ({
|
4556
4817
|
__typename?: 'ResourcePolicy';
|
4557
4818
|
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
4558
4819
|
__typename?: 'ResourceRole';
|
@@ -4984,29 +5245,6 @@ export declare function useResendOrganizationInvitationMutation(baseOptions?: Ap
|
|
4984
5245
|
export declare type ResendOrganizationInvitationMutationHookResult = ReturnType<typeof useResendOrganizationInvitationMutation>;
|
4985
5246
|
export declare type ResendOrganizationInvitationMutationResult = Apollo.MutationResult<IResendOrganizationInvitationMutation>;
|
4986
5247
|
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
5248
|
export declare const ResetUserPasswordDocument: DocumentNode;
|
5011
5249
|
/**
|
5012
5250
|
* __useResetUserPasswordMutation__
|
@@ -5055,6 +5293,30 @@ export declare function useSendUserPasswordResetEmailMutation(baseOptions?: Apol
|
|
5055
5293
|
export declare type SendUserPasswordResetEmailMutationHookResult = ReturnType<typeof useSendUserPasswordResetEmailMutation>;
|
5056
5294
|
export declare type SendUserPasswordResetEmailMutationResult = Apollo.MutationResult<ISendUserPasswordResetEmailMutation>;
|
5057
5295
|
export declare type SendUserPasswordResetEmailMutationOptions = Apollo.BaseMutationOptions<ISendUserPasswordResetEmailMutation, ISendUserPasswordResetEmailMutationVariables>;
|
5296
|
+
export declare const SendEmailVerificationDocument: DocumentNode;
|
5297
|
+
/**
|
5298
|
+
* __useSendEmailVerificationMutation__
|
5299
|
+
*
|
5300
|
+
* To run a mutation, you first call `useSendEmailVerificationMutation` within a React component and pass it any options that fit your needs.
|
5301
|
+
* When your component renders, `useSendEmailVerificationMutation` returns a tuple that includes:
|
5302
|
+
* - A mutate function that you can call at any time to execute the mutation
|
5303
|
+
* - An object with fields that represent the current status of the mutation's execution
|
5304
|
+
*
|
5305
|
+
* @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;
|
5306
|
+
*
|
5307
|
+
* @example
|
5308
|
+
* const [sendEmailVerificationMutation, { data, loading, error }] = useSendEmailVerificationMutation({
|
5309
|
+
* variables: {
|
5310
|
+
* email: // value for 'email'
|
5311
|
+
* },
|
5312
|
+
* });
|
5313
|
+
*/
|
5314
|
+
export declare function useSendEmailVerificationMutation(baseOptions?: Apollo.MutationHookOptions<ISendEmailVerificationMutation, ISendEmailVerificationMutationVariables>): Apollo.MutationTuple<ISendEmailVerificationMutation, Exact<{
|
5315
|
+
email: string;
|
5316
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
5317
|
+
export declare type SendEmailVerificationMutationHookResult = ReturnType<typeof useSendEmailVerificationMutation>;
|
5318
|
+
export declare type SendEmailVerificationMutationResult = Apollo.MutationResult<ISendEmailVerificationMutation>;
|
5319
|
+
export declare type SendEmailVerificationMutationOptions = Apollo.BaseMutationOptions<ISendEmailVerificationMutation, ISendEmailVerificationMutationVariables>;
|
5058
5320
|
export declare const SendOrganizationInvitationDocument: DocumentNode;
|
5059
5321
|
/**
|
5060
5322
|
* __useSendOrganizationInvitationMutation__
|
@@ -5189,30 +5451,56 @@ export declare function useUpdateUserAccountMutation(baseOptions?: Apollo.Mutati
|
|
5189
5451
|
export declare type UpdateUserAccountMutationHookResult = ReturnType<typeof useUpdateUserAccountMutation>;
|
5190
5452
|
export declare type UpdateUserAccountMutationResult = Apollo.MutationResult<IUpdateUserAccountMutation>;
|
5191
5453
|
export declare type UpdateUserAccountMutationOptions = Apollo.BaseMutationOptions<IUpdateUserAccountMutation, IUpdateUserAccountMutationVariables>;
|
5192
|
-
export declare const
|
5454
|
+
export declare const ValidatePasswordResetOtpDocument: DocumentNode;
|
5193
5455
|
/**
|
5194
|
-
*
|
5456
|
+
* __useValidatePasswordResetOtpMutation__
|
5195
5457
|
*
|
5196
|
-
* To run a mutation, you first call `
|
5197
|
-
* When your component renders, `
|
5458
|
+
* To run a mutation, you first call `useValidatePasswordResetOtpMutation` within a React component and pass it any options that fit your needs.
|
5459
|
+
* When your component renders, `useValidatePasswordResetOtpMutation` returns a tuple that includes:
|
5198
5460
|
* - A mutate function that you can call at any time to execute the mutation
|
5199
5461
|
* - An object with fields that represent the current status of the mutation's execution
|
5200
5462
|
*
|
5201
5463
|
* @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
5464
|
*
|
5203
5465
|
* @example
|
5204
|
-
* const [
|
5466
|
+
* const [validatePasswordResetOtpMutation, { data, loading, error }] = useValidatePasswordResetOtpMutation({
|
5205
5467
|
* variables: {
|
5206
|
-
*
|
5468
|
+
* email: // value for 'email'
|
5469
|
+
* code: // value for 'code'
|
5470
|
+
* },
|
5471
|
+
* });
|
5472
|
+
*/
|
5473
|
+
export declare function useValidatePasswordResetOtpMutation(baseOptions?: Apollo.MutationHookOptions<IValidatePasswordResetOtpMutation, IValidatePasswordResetOtpMutationVariables>): Apollo.MutationTuple<IValidatePasswordResetOtpMutation, Exact<{
|
5474
|
+
email: string;
|
5475
|
+
code: string;
|
5476
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
5477
|
+
export declare type ValidatePasswordResetOtpMutationHookResult = ReturnType<typeof useValidatePasswordResetOtpMutation>;
|
5478
|
+
export declare type ValidatePasswordResetOtpMutationResult = Apollo.MutationResult<IValidatePasswordResetOtpMutation>;
|
5479
|
+
export declare type ValidatePasswordResetOtpMutationOptions = Apollo.BaseMutationOptions<IValidatePasswordResetOtpMutation, IValidatePasswordResetOtpMutationVariables>;
|
5480
|
+
export declare const ValidateUserEmailVerificationDocument: DocumentNode;
|
5481
|
+
/**
|
5482
|
+
* __useValidateUserEmailVerificationMutation__
|
5483
|
+
*
|
5484
|
+
* To run a mutation, you first call `useValidateUserEmailVerificationMutation` within a React component and pass it any options that fit your needs.
|
5485
|
+
* When your component renders, `useValidateUserEmailVerificationMutation` returns a tuple that includes:
|
5486
|
+
* - A mutate function that you can call at any time to execute the mutation
|
5487
|
+
* - An object with fields that represent the current status of the mutation's execution
|
5488
|
+
*
|
5489
|
+
* @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;
|
5490
|
+
*
|
5491
|
+
* @example
|
5492
|
+
* const [validateUserEmailVerificationMutation, { data, loading, error }] = useValidateUserEmailVerificationMutation({
|
5493
|
+
* variables: {
|
5494
|
+
* code: // value for 'code'
|
5207
5495
|
* },
|
5208
5496
|
* });
|
5209
5497
|
*/
|
5210
|
-
export declare function
|
5211
|
-
|
5498
|
+
export declare function useValidateUserEmailVerificationMutation(baseOptions?: Apollo.MutationHookOptions<IValidateUserEmailVerificationMutation, IValidateUserEmailVerificationMutationVariables>): Apollo.MutationTuple<IValidateUserEmailVerificationMutation, Exact<{
|
5499
|
+
code: string;
|
5212
5500
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
5213
|
-
export declare type
|
5214
|
-
export declare type
|
5215
|
-
export declare type
|
5501
|
+
export declare type ValidateUserEmailVerificationMutationHookResult = ReturnType<typeof useValidateUserEmailVerificationMutation>;
|
5502
|
+
export declare type ValidateUserEmailVerificationMutationResult = Apollo.MutationResult<IValidateUserEmailVerificationMutation>;
|
5503
|
+
export declare type ValidateUserEmailVerificationMutationOptions = Apollo.BaseMutationOptions<IValidateUserEmailVerificationMutation, IValidateUserEmailVerificationMutationVariables>;
|
5216
5504
|
export declare const GetUserOrganizationsListDocument: DocumentNode;
|
5217
5505
|
/**
|
5218
5506
|
* __useGetUserOrganizationsListQuery__
|
@@ -5978,55 +6266,6 @@ export declare function useFilterIntegrationConfigurationLazyQuery(baseOptions?:
|
|
5978
6266
|
export declare type FilterIntegrationConfigurationQueryHookResult = ReturnType<typeof useFilterIntegrationConfigurationQuery>;
|
5979
6267
|
export declare type FilterIntegrationConfigurationLazyQueryHookResult = ReturnType<typeof useFilterIntegrationConfigurationLazyQuery>;
|
5980
6268
|
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
6269
|
export declare const AddContributionRoleDocument: DocumentNode;
|
6031
6270
|
/**
|
6032
6271
|
* __useAddContributionRoleMutation__
|
@@ -7373,16 +7612,13 @@ export declare type NextResolverFn<T> = () => Promise<T>;
|
|
7373
7612
|
export declare type DirectiveResolverFn<TResult = {}, TParent = {}, TContext = {}, TArgs = {}> = (next: NextResolverFn<TResult>, parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => TResult | Promise<TResult>;
|
7374
7613
|
/** Mapping between all available schema types and the resolvers types */
|
7375
7614
|
export declare type IResolversTypes = {
|
7376
|
-
AccessRole: IResolversTypes['DefaultRole'] | IResolversTypes['OrganizationRole'] | IResolversTypes['ResourceRole'] | IResolversTypes['
|
7615
|
+
AccessRole: IResolversTypes['DefaultRole'] | IResolversTypes['OrganizationRole'] | IResolversTypes['ResourceRole'] | IResolversTypes['ApplicationRole'];
|
7377
7616
|
AccessToken: ResolverTypeWrapper<IAccessToken>;
|
7378
7617
|
ID: ResolverTypeWrapper<Scalars['ID']>;
|
7379
7618
|
String: ResolverTypeWrapper<Scalars['String']>;
|
7380
7619
|
AccessTokenConnection: ResolverTypeWrapper<IAccessTokenConnection>;
|
7381
7620
|
Int: ResolverTypeWrapper<Scalars['Int']>;
|
7382
7621
|
AccessToken_Input: IAccessToken_Input;
|
7383
|
-
AccountBroadcasterActions: IAccountBroadcasterActions;
|
7384
|
-
AccountService: ResolverTypeWrapper<IAccountService>;
|
7385
|
-
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
7386
7622
|
AccountServiceAction: IAccountServiceAction;
|
7387
7623
|
AccountTeam: ResolverTypeWrapper<IAccountTeam>;
|
7388
7624
|
AccountTeamInput: IAccountTeamInput;
|
@@ -7392,16 +7628,21 @@ export declare type IResolversTypes = {
|
|
7392
7628
|
ApiManagement: ResolverTypeWrapper<IApiManagement>;
|
7393
7629
|
ApiManagement_Input: IApiManagement_Input;
|
7394
7630
|
ApplicationBillingPlanPolicy: IApplicationBillingPlanPolicy;
|
7631
|
+
ApplicationConfiguration: ResolverTypeWrapper<IApplicationConfiguration>;
|
7395
7632
|
ApplicationPolicy: ResolverTypeWrapper<IApplicationPolicy>;
|
7396
|
-
|
7633
|
+
ApplicationRole: ResolverTypeWrapper<IApplicationRole>;
|
7397
7634
|
ApplicationRoles: IApplicationRoles;
|
7398
7635
|
ApplicationSettings: ResolverTypeWrapper<IApplicationSettings>;
|
7636
|
+
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
7399
7637
|
Auth0Identity: ResolverTypeWrapper<IAuth0Identity>;
|
7400
7638
|
Auth0IdentityProfileData: ResolverTypeWrapper<IAuth0IdentityProfileData>;
|
7401
7639
|
AuthErrorCodes: IAuthErrorCodes;
|
7402
7640
|
AuthTokens: ResolverTypeWrapper<IAuthTokens>;
|
7403
7641
|
AuthUser: ResolverTypeWrapper<IAuthUser>;
|
7404
7642
|
AuthUserInput: IAuthUserInput;
|
7643
|
+
BaseAccountService: ResolverTypeWrapper<IBaseAccountService>;
|
7644
|
+
BaseOrganizationService: ResolverTypeWrapper<IBaseOrganizationService>;
|
7645
|
+
BaseTeamService: ResolverTypeWrapper<IBaseTeamService>;
|
7405
7646
|
CacheControlScope: ICacheControlScope;
|
7406
7647
|
CityInput: ICityInput;
|
7407
7648
|
CityUpdateInput: ICityUpdateInput;
|
@@ -7410,7 +7651,7 @@ export declare type IResolversTypes = {
|
|
7410
7651
|
ClientTypes: IClientTypes;
|
7411
7652
|
ConfigCollectionName: IConfigCollectionName;
|
7412
7653
|
ConfigFragmentName: IConfigFragmentName;
|
7413
|
-
Configuration: IResolversTypes['DefaultConfiguration'] | IResolversTypes['
|
7654
|
+
Configuration: IResolversTypes['DefaultConfiguration'] | IResolversTypes['PolicyConfiguration'] | IResolversTypes['ApplicationConfiguration'] | IResolversTypes['UserConfiguration'] | IResolversTypes['MachineConfiguration'] | IResolversTypes['OrganizationConfiguration'] | IResolversTypes['OrganizationResourceConfiguration'];
|
7414
7655
|
ConfigurationContributionNames: IConfigurationContributionNames;
|
7415
7656
|
ConfigurationData: ResolverTypeWrapper<IConfigurationData>;
|
7416
7657
|
ConfigurationExtensionInfo: ResolverTypeWrapper<IConfigurationExtensionInfo>;
|
@@ -7420,6 +7661,7 @@ export declare type IResolversTypes = {
|
|
7420
7661
|
ConfigurationOverridesInput: IConfigurationOverridesInput;
|
7421
7662
|
ConfigurationPolicy: IResolversTypes['DefaultPolicy'] | IResolversTypes['OrganizationPolicy'] | IResolversTypes['ResourcePolicy'] | IResolversTypes['ApplicationPolicy'];
|
7422
7663
|
ConfigurationScope: ConfigurationScope;
|
7664
|
+
ConfigurationServiceAction: IConfigurationServiceAction;
|
7423
7665
|
ConfigurationTarget: ConfigurationTarget;
|
7424
7666
|
ConfigurationUpdateEvent: ResolverTypeWrapper<IConfigurationUpdateEvent>;
|
7425
7667
|
Context: ResolverTypeWrapper<IContext>;
|
@@ -7439,6 +7681,7 @@ export declare type IResolversTypes = {
|
|
7439
7681
|
DefaultRole: ResolverTypeWrapper<IDefaultRole>;
|
7440
7682
|
DefaultSettings: ResolverTypeWrapper<IDefaultSettings>;
|
7441
7683
|
DeviceInfoInput: IDeviceInfoInput;
|
7684
|
+
DeviceInfoPlatform: IDeviceInfoPlatform;
|
7442
7685
|
EditPresentationTypes: IEditPresentationTypes;
|
7443
7686
|
EmptyResponse: ResolverTypeWrapper<IEmptyResponse>;
|
7444
7687
|
Environment: ResolverTypeWrapper<IEnvironment>;
|
@@ -7457,10 +7700,7 @@ export declare type IResolversTypes = {
|
|
7457
7700
|
IAuth0User: IResolversTypes['UserProfile'];
|
7458
7701
|
IAuth0UserProfile: IResolversTypes['UserProfile'];
|
7459
7702
|
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'];
|
7703
|
+
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
7704
|
IConfigurationService: never;
|
7465
7705
|
ICountry: never;
|
7466
7706
|
IEventWithContext: IResolversTypes['OrganizationCreatedEvent'] | IResolversTypes['OrganizationDeletedEvent'];
|
@@ -7487,6 +7727,7 @@ export declare type IResolversTypes = {
|
|
7487
7727
|
JSON: ResolverTypeWrapper<Scalars['JSON']>;
|
7488
7728
|
JSONObject: ResolverTypeWrapper<Scalars['JSONObject']>;
|
7489
7729
|
KeyPathSegment: IKeyPathSegment;
|
7730
|
+
LinkedIdentity: ResolverTypeWrapper<ILinkedIdentity>;
|
7490
7731
|
LoginError: ResolverTypeWrapper<ILoginError>;
|
7491
7732
|
MachineConfiguration: ResolverTypeWrapper<IMachineConfiguration>;
|
7492
7733
|
MachineSettings: ResolverTypeWrapper<IMachineSettings>;
|
@@ -7496,7 +7737,7 @@ export declare type IResolversTypes = {
|
|
7496
7737
|
MenuPosition: IMenuPosition;
|
7497
7738
|
MoleculerServiceName: IMoleculerServiceName;
|
7498
7739
|
Mutation: ResolverTypeWrapper<{}>;
|
7499
|
-
Node: IResolversTypes['AccessToken'] | IResolversTypes['ApiExternalAccount'] | IResolversTypes['ApiManagement'] | IResolversTypes['
|
7740
|
+
Node: IResolversTypes['AccessToken'] | IResolversTypes['ApiExternalAccount'] | IResolversTypes['ApiManagement'] | IResolversTypes['UserAccount'];
|
7500
7741
|
Observable: ResolverTypeWrapper<Scalars['Observable']>;
|
7501
7742
|
OrgDetailWhere: IOrgDetailWhere;
|
7502
7743
|
OrgInvitationMembers: ResolverTypeWrapper<IOrgInvitationMembers>;
|
@@ -7504,7 +7745,6 @@ export declare type IResolversTypes = {
|
|
7504
7745
|
OrgMembersOutput: ResolverTypeWrapper<IOrgMembersOutput>;
|
7505
7746
|
OrgType: IOrgType;
|
7506
7747
|
OrgUser: ResolverTypeWrapper<IOrgUser>;
|
7507
|
-
OrgUserAccunt: ResolverTypeWrapper<IOrgUserAccunt>;
|
7508
7748
|
OrgUserInput: IOrgUserInput;
|
7509
7749
|
OrgUserRole: IOrgUserRole;
|
7510
7750
|
OrgainizationInvitationRole: IOrgainizationInvitationRole;
|
@@ -7532,7 +7772,6 @@ export declare type IResolversTypes = {
|
|
7532
7772
|
OrganizationResourceData: ResolverTypeWrapper<IOrganizationResourceData>;
|
7533
7773
|
OrganizationResourceSettings: ResolverTypeWrapper<IOrganizationResourceSettings>;
|
7534
7774
|
OrganizationRole: ResolverTypeWrapper<IOrganizationRole>;
|
7535
|
-
OrganizationService: ResolverTypeWrapper<IOrganizationService>;
|
7536
7775
|
OrganizationServiceAction: IOrganizationServiceAction;
|
7537
7776
|
OrganizationSettings: ResolverTypeWrapper<IOrganizationSettings>;
|
7538
7777
|
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
@@ -7546,6 +7785,7 @@ export declare type IResolversTypes = {
|
|
7546
7785
|
PermissionType: IPermissionType;
|
7547
7786
|
PhoneNumber: ResolverTypeWrapper<IPhoneNumber>;
|
7548
7787
|
PhoneNumberInput: IPhoneNumberInput;
|
7788
|
+
PolicyConfiguration: ResolverTypeWrapper<IPolicyConfiguration>;
|
7549
7789
|
PolicySubject: ResolverTypeWrapper<IPolicySubject>;
|
7550
7790
|
PopupIntegrationAuthorization: ResolverTypeWrapper<IPopupIntegrationAuthorization>;
|
7551
7791
|
PortalLanguage: IPortalLanguage;
|
@@ -7611,7 +7851,6 @@ export declare type IResolversTypes = {
|
|
7611
7851
|
TeamMember: ResolverTypeWrapper<ITeamMember>;
|
7612
7852
|
TeamMemberInput: ITeamMemberInput;
|
7613
7853
|
TeamRemoveRequest: ITeamRemoveRequest;
|
7614
|
-
TeamService: ResolverTypeWrapper<ITeamService>;
|
7615
7854
|
TeamServiceAction: ITeamServiceAction;
|
7616
7855
|
TeamType: ITeamType;
|
7617
7856
|
TeamUpdateRequest: ITeamUpdateRequest;
|
@@ -7641,16 +7880,17 @@ export declare type IResolversTypes = {
|
|
7641
7880
|
UserDevice: ResolverTypeWrapper<IUserDevice>;
|
7642
7881
|
UserMetadata: ResolverTypeWrapper<IUserMetadata>;
|
7643
7882
|
UserOrderBy: IUserOrderBy;
|
7644
|
-
UserOrg: ResolverTypeWrapper<IUserOrg>;
|
7645
|
-
UserOrgInput: IUserOrgInput;
|
7646
7883
|
UserPasswordResetInput: IUserPasswordResetInput;
|
7647
7884
|
UserPreviousValues: ResolverTypeWrapper<IUserPreviousValues>;
|
7648
7885
|
UserProfile: ResolverTypeWrapper<IUserProfile>;
|
7886
|
+
UserServiceAction: IUserServiceAction;
|
7887
|
+
UserSession: ResolverTypeWrapper<IUserSession>;
|
7649
7888
|
UserSessionId: ResolverTypeWrapper<IUserSessionId>;
|
7650
7889
|
UserSettings: ResolverTypeWrapper<IUserSettings>;
|
7651
7890
|
UserState: ResolverTypeWrapper<IUserState>;
|
7652
7891
|
UserToken: ResolverTypeWrapper<IUserToken>;
|
7653
7892
|
UserTokenInput: IUserTokenInput;
|
7893
|
+
UsersToken: ResolverTypeWrapper<IUsersToken>;
|
7654
7894
|
ViewerPoliciesInput: IViewerPoliciesInput;
|
7655
7895
|
ViewerSettingsInput: IViewerSettingsInput;
|
7656
7896
|
ViewerSettingsSubject: ResolverTypeWrapper<IViewerSettingsSubject>;
|
@@ -7659,15 +7899,13 @@ export declare type IResolversTypes = {
|
|
7659
7899
|
};
|
7660
7900
|
/** Mapping between all available schema types and the resolvers parents */
|
7661
7901
|
export declare type IResolversParentTypes = {
|
7662
|
-
AccessRole: IResolversParentTypes['DefaultRole'] | IResolversParentTypes['OrganizationRole'] | IResolversParentTypes['ResourceRole'] | IResolversParentTypes['
|
7902
|
+
AccessRole: IResolversParentTypes['DefaultRole'] | IResolversParentTypes['OrganizationRole'] | IResolversParentTypes['ResourceRole'] | IResolversParentTypes['ApplicationRole'];
|
7663
7903
|
AccessToken: IAccessToken;
|
7664
7904
|
ID: Scalars['ID'];
|
7665
7905
|
String: Scalars['String'];
|
7666
7906
|
AccessTokenConnection: IAccessTokenConnection;
|
7667
7907
|
Int: Scalars['Int'];
|
7668
7908
|
AccessToken_Input: IAccessToken_Input;
|
7669
|
-
AccountService: IAccountService;
|
7670
|
-
Boolean: Scalars['Boolean'];
|
7671
7909
|
AccountTeam: IAccountTeam;
|
7672
7910
|
AccountTeamInput: IAccountTeamInput;
|
7673
7911
|
AdminIdeSettings: IAdminIdeSettings;
|
@@ -7675,17 +7913,22 @@ export declare type IResolversParentTypes = {
|
|
7675
7913
|
ApiExternalAccount: IApiExternalAccount;
|
7676
7914
|
ApiManagement: IApiManagement;
|
7677
7915
|
ApiManagement_Input: IApiManagement_Input;
|
7916
|
+
ApplicationConfiguration: IApplicationConfiguration;
|
7678
7917
|
ApplicationPolicy: IApplicationPolicy;
|
7679
|
-
|
7918
|
+
ApplicationRole: IApplicationRole;
|
7680
7919
|
ApplicationSettings: IApplicationSettings;
|
7920
|
+
Boolean: Scalars['Boolean'];
|
7681
7921
|
Auth0Identity: IAuth0Identity;
|
7682
7922
|
Auth0IdentityProfileData: IAuth0IdentityProfileData;
|
7683
7923
|
AuthTokens: IAuthTokens;
|
7684
7924
|
AuthUser: IAuthUser;
|
7685
7925
|
AuthUserInput: IAuthUserInput;
|
7926
|
+
BaseAccountService: IBaseAccountService;
|
7927
|
+
BaseOrganizationService: IBaseOrganizationService;
|
7928
|
+
BaseTeamService: IBaseTeamService;
|
7686
7929
|
CityInput: ICityInput;
|
7687
7930
|
CityUpdateInput: ICityUpdateInput;
|
7688
|
-
Configuration: IResolversParentTypes['DefaultConfiguration'] | IResolversParentTypes['
|
7931
|
+
Configuration: IResolversParentTypes['DefaultConfiguration'] | IResolversParentTypes['PolicyConfiguration'] | IResolversParentTypes['ApplicationConfiguration'] | IResolversParentTypes['UserConfiguration'] | IResolversParentTypes['MachineConfiguration'] | IResolversParentTypes['OrganizationConfiguration'] | IResolversParentTypes['OrganizationResourceConfiguration'];
|
7689
7932
|
ConfigurationData: IConfigurationData;
|
7690
7933
|
ConfigurationExtensionInfo: IConfigurationExtensionInfo;
|
7691
7934
|
ConfigurationInput: IConfigurationInput;
|
@@ -7725,10 +7968,7 @@ export declare type IResolversParentTypes = {
|
|
7725
7968
|
IAuth0User: IResolversParentTypes['UserProfile'];
|
7726
7969
|
IAuth0UserProfile: IResolversParentTypes['UserProfile'];
|
7727
7970
|
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'];
|
7971
|
+
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
7972
|
IConfigurationService: never;
|
7733
7973
|
ICountry: never;
|
7734
7974
|
IEventWithContext: IResolversParentTypes['OrganizationCreatedEvent'] | IResolversParentTypes['OrganizationDeletedEvent'];
|
@@ -7753,13 +7993,14 @@ export declare type IResolversParentTypes = {
|
|
7753
7993
|
JSON: Scalars['JSON'];
|
7754
7994
|
JSONObject: Scalars['JSONObject'];
|
7755
7995
|
KeyPathSegment: IKeyPathSegment;
|
7996
|
+
LinkedIdentity: ILinkedIdentity;
|
7756
7997
|
LoginError: ILoginError;
|
7757
7998
|
MachineConfiguration: IMachineConfiguration;
|
7758
7999
|
MachineSettings: IMachineSettings;
|
7759
8000
|
MemorySettings: IMemorySettings;
|
7760
8001
|
MenuItem: IMenuItem;
|
7761
8002
|
Mutation: {};
|
7762
|
-
Node: IResolversParentTypes['AccessToken'] | IResolversParentTypes['ApiExternalAccount'] | IResolversParentTypes['ApiManagement'] | IResolversParentTypes['
|
8003
|
+
Node: IResolversParentTypes['AccessToken'] | IResolversParentTypes['ApiExternalAccount'] | IResolversParentTypes['ApiManagement'] | IResolversParentTypes['UserAccount'];
|
7763
8004
|
Observable: Scalars['Observable'];
|
7764
8005
|
OrgDetailWhere: IOrgDetailWhere;
|
7765
8006
|
OrgInvitationMembers: IOrgInvitationMembers;
|
@@ -7767,7 +8008,6 @@ export declare type IResolversParentTypes = {
|
|
7767
8008
|
OrgMembersOutput: IOrgMembersOutput;
|
7768
8009
|
OrgType: IOrgType;
|
7769
8010
|
OrgUser: IOrgUser;
|
7770
|
-
OrgUserAccunt: IOrgUserAccunt;
|
7771
8011
|
OrgUserInput: IOrgUserInput;
|
7772
8012
|
Organization: IOrganization;
|
7773
8013
|
OrganizationConfigValueInput: IOrganizationConfigValueInput;
|
@@ -7792,7 +8032,6 @@ export declare type IResolversParentTypes = {
|
|
7792
8032
|
OrganizationResourceData: IOrganizationResourceData;
|
7793
8033
|
OrganizationResourceSettings: IOrganizationResourceSettings;
|
7794
8034
|
OrganizationRole: IOrganizationRole;
|
7795
|
-
OrganizationService: IOrganizationService;
|
7796
8035
|
OrganizationSettings: IOrganizationSettings;
|
7797
8036
|
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
7798
8037
|
OrganizationsDeactivatedEvent: IOrganizationsDeactivatedEvent;
|
@@ -7802,6 +8041,7 @@ export declare type IResolversParentTypes = {
|
|
7802
8041
|
PermissionSubject: IPermissionSubject;
|
7803
8042
|
PhoneNumber: IPhoneNumber;
|
7804
8043
|
PhoneNumberInput: IPhoneNumberInput;
|
8044
|
+
PolicyConfiguration: IPolicyConfiguration;
|
7805
8045
|
PolicySubject: IPolicySubject;
|
7806
8046
|
PopupIntegrationAuthorization: IPopupIntegrationAuthorization;
|
7807
8047
|
Position: IPosition;
|
@@ -7857,7 +8097,6 @@ export declare type IResolversParentTypes = {
|
|
7857
8097
|
TeamMember: ITeamMember;
|
7858
8098
|
TeamMemberInput: ITeamMemberInput;
|
7859
8099
|
TeamRemoveRequest: ITeamRemoveRequest;
|
7860
|
-
TeamService: ITeamService;
|
7861
8100
|
TeamType: ITeamType;
|
7862
8101
|
TeamUpdateRequest: ITeamUpdateRequest;
|
7863
8102
|
TerritorialStateInput: ITerritorialStateInput;
|
@@ -7883,16 +8122,16 @@ export declare type IResolversParentTypes = {
|
|
7883
8122
|
UserContext: IUserContext;
|
7884
8123
|
UserDevice: IUserDevice;
|
7885
8124
|
UserMetadata: IUserMetadata;
|
7886
|
-
UserOrg: IUserOrg;
|
7887
|
-
UserOrgInput: IUserOrgInput;
|
7888
8125
|
UserPasswordResetInput: IUserPasswordResetInput;
|
7889
8126
|
UserPreviousValues: IUserPreviousValues;
|
7890
8127
|
UserProfile: IUserProfile;
|
8128
|
+
UserSession: IUserSession;
|
7891
8129
|
UserSessionId: IUserSessionId;
|
7892
8130
|
UserSettings: IUserSettings;
|
7893
8131
|
UserState: IUserState;
|
7894
8132
|
UserToken: IUserToken;
|
7895
8133
|
UserTokenInput: IUserTokenInput;
|
8134
|
+
UsersToken: IUsersToken;
|
7896
8135
|
ViewerPoliciesInput: IViewerPoliciesInput;
|
7897
8136
|
ViewerSettingsInput: IViewerSettingsInput;
|
7898
8137
|
ViewerSettingsSubject: IViewerSettingsSubject;
|
@@ -7916,7 +8155,7 @@ export declare type IIsAuthenticatedDirectiveResolver<Result, Parent, ContextTyp
|
|
7916
8155
|
export declare type IProfileDirectiveArgs = {};
|
7917
8156
|
export declare type IProfileDirectiveResolver<Result, Parent, ContextType = MyContext, Args = IProfileDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
7918
8157
|
export declare type IAccessRoleResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AccessRole'] = IResolversParentTypes['AccessRole']> = {
|
7919
|
-
__resolveType: TypeResolveFn<'DefaultRole' | 'OrganizationRole' | 'ResourceRole' | '
|
8158
|
+
__resolveType: TypeResolveFn<'DefaultRole' | 'OrganizationRole' | 'ResourceRole' | 'ApplicationRole', ParentType, ContextType>;
|
7920
8159
|
};
|
7921
8160
|
export declare type IAccessTokenResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AccessToken'] = IResolversParentTypes['AccessToken']> = {
|
7922
8161
|
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
@@ -7934,17 +8173,6 @@ export declare type IAccessTokenConnectionResolvers<ContextType = MyContext, Par
|
|
7934
8173
|
pageInfo?: Resolver<IResolversTypes['PageInfo'], ParentType, ContextType>;
|
7935
8174
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
7936
8175
|
};
|
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
8176
|
export declare type IAccountTeamResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AccountTeam'] = IResolversParentTypes['AccountTeam']> = {
|
7949
8177
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
7950
8178
|
_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -7986,6 +8214,15 @@ export declare type IApiManagementResolvers<ContextType = MyContext, ParentType
|
|
7986
8214
|
user?: Resolver<IResolversTypes['UserAccount'], ParentType, ContextType>;
|
7987
8215
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
7988
8216
|
};
|
8217
|
+
export declare type IApplicationConfigurationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ApplicationConfiguration'] = IResolversParentTypes['ApplicationConfiguration']> = {
|
8218
|
+
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
8219
|
+
resource?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
|
8220
|
+
target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
8221
|
+
contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
8222
|
+
keys?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
8223
|
+
overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
|
8224
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8225
|
+
};
|
7989
8226
|
export declare type IApplicationPolicyResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ApplicationPolicy'] = IResolversParentTypes['ApplicationPolicy']> = {
|
7990
8227
|
resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
7991
8228
|
target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
@@ -7994,7 +8231,7 @@ export declare type IApplicationPolicyResolvers<ContextType = MyContext, ParentT
|
|
7994
8231
|
overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
|
7995
8232
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
7996
8233
|
};
|
7997
|
-
export declare type
|
8234
|
+
export declare type IApplicationRoleResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ApplicationRole'] = IResolversParentTypes['ApplicationRole']> = {
|
7998
8235
|
resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
7999
8236
|
target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
8000
8237
|
contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
@@ -8041,11 +8278,62 @@ export declare type IAuthUserResolvers<ContextType = MyContext, ParentType exten
|
|
8041
8278
|
phoneNo?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
8042
8279
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8043
8280
|
};
|
8281
|
+
export declare type IBaseAccountServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['BaseAccountService'] = IResolversParentTypes['BaseAccountService']> = {
|
8282
|
+
createDefaultAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceCreateDefaultAccountArgs, 'user'>>;
|
8283
|
+
createAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceCreateAccountArgs, 'account'>>;
|
8284
|
+
updateUserAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceUpdateUserAccountArgs, 'user' | 'userInfo'>>;
|
8285
|
+
findAccountById?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceFindAccountByIdArgs, 'id'>>;
|
8286
|
+
findAccountByUser?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceFindAccountByUserArgs, 'id'>>;
|
8287
|
+
findAccountByEmail?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceFindAccountByEmailArgs, 'email'>>;
|
8288
|
+
getUsers?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccount']>>>, ParentType, ContextType, RequireFields<IBaseAccountServiceGetUsersArgs, never>>;
|
8289
|
+
updateAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceUpdateAccountArgs, 'account'>>;
|
8290
|
+
deleteAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceDeleteAccountArgs, 'account'>>;
|
8291
|
+
accountOnBoarding?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceAccountOnBoardingArgs, 'input' | 'context'>>;
|
8292
|
+
verifyUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceVerifyUserEmailVerificationTokenArgs, 'userId' | 'token'>>;
|
8293
|
+
deleteUserAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceDeleteUserAccountArgs, 'id'>>;
|
8294
|
+
resendUserEmailVerificationEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceResendUserEmailVerificationEmailArgs, 'id'>>;
|
8295
|
+
dispatchUserVerificationEmail?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IBaseAccountServiceDispatchUserVerificationEmailArgs, 'email' | 'emailVerificationToken'>>;
|
8296
|
+
dispatchUserPasswordResetEmail?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IBaseAccountServiceDispatchUserPasswordResetEmailArgs, 'user' | 'token'>>;
|
8297
|
+
getUserTokenDetails?: Resolver<Maybe<IResolversTypes['UserToken']>, ParentType, ContextType, RequireFields<IBaseAccountServiceGetUserTokenDetailsArgs, 'userId' | 'type'>>;
|
8298
|
+
addUserToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceAddUserTokenArgs, 'userId' | 'token'>>;
|
8299
|
+
removeUserToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceRemoveUserTokenArgs, 'userId' | 'token'>>;
|
8300
|
+
getAllUserTokens?: Resolver<Maybe<Array<Maybe<IResolversTypes['UsersToken']>>>, ParentType, ContextType, RequireFields<IBaseAccountServiceGetAllUserTokensArgs, 'userIds' | 'tokenTypes'>>;
|
8301
|
+
initiatePasswordResetProcess?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceInitiatePasswordResetProcessArgs, 'email'>>;
|
8302
|
+
resetUserPassword?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceResetUserPasswordArgs, 'input'>>;
|
8303
|
+
validateUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceValidateUserEmailVerificationTokenArgs, 'code' | 'userAuth0Id' | 'email'>>;
|
8304
|
+
sendEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceSendEmailVerificationTokenArgs, 'email'>>;
|
8305
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8306
|
+
};
|
8307
|
+
export declare type IBaseOrganizationServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['BaseOrganizationService'] = IResolversParentTypes['BaseOrganizationService']> = {
|
8308
|
+
getOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceGetOrganizationArgs, never>>;
|
8309
|
+
createDefaultOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceCreateDefaultOrganizationArgs, never>>;
|
8310
|
+
getUserOrganizations?: Resolver<Maybe<Array<Maybe<IResolversTypes['Organization']>>>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceGetUserOrganizationsArgs, never>>;
|
8311
|
+
createOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceCreateOrganizationArgs, 'workspace'>>;
|
8312
|
+
updateOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceUpdateOrganizationArgs, 'workspace'>>;
|
8313
|
+
removeOrganization?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceRemoveOrganizationArgs, 'workspace'>>;
|
8314
|
+
getUserOrgRole?: Resolver<Maybe<IResolversTypes['OrgUserRole']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceGetUserOrgRoleArgs, 'orgName' | 'userId'>>;
|
8315
|
+
sendInvitation?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceSendInvitationArgs, 'request'>>;
|
8316
|
+
declineInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceDeclineInvitationArgs, 'id'>>;
|
8317
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8318
|
+
};
|
8319
|
+
export declare type IBaseTeamServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['BaseTeamService'] = IResolversParentTypes['BaseTeamService']> = {
|
8320
|
+
getTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceGetTeamArgs, never>>;
|
8321
|
+
getUserTeams?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccountTeam']>>>, ParentType, ContextType, RequireFields<IBaseTeamServiceGetUserTeamsArgs, never>>;
|
8322
|
+
createTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceCreateTeamArgs, never>>;
|
8323
|
+
updateTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceUpdateTeamArgs, never>>;
|
8324
|
+
addWorkspaces?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceAddWorkspacesArgs, never>>;
|
8325
|
+
removeTeam?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseTeamServiceRemoveTeamArgs, never>>;
|
8326
|
+
createDefaultTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceCreateDefaultTeamArgs, never>>;
|
8327
|
+
sendProjectNotification?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseTeamServiceSendProjectNotificationArgs, never>>;
|
8328
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8329
|
+
};
|
8044
8330
|
export declare type IConfigurationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Configuration'] = IResolversParentTypes['Configuration']> = {
|
8045
|
-
__resolveType: TypeResolveFn<'DefaultConfiguration' | '
|
8331
|
+
__resolveType: TypeResolveFn<'DefaultConfiguration' | 'PolicyConfiguration' | 'ApplicationConfiguration' | 'UserConfiguration' | 'MachineConfiguration' | 'OrganizationConfiguration' | 'OrganizationResourceConfiguration', ParentType, ContextType>;
|
8046
8332
|
};
|
8047
8333
|
export declare type IConfigurationDataResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ConfigurationData'] = IResolversParentTypes['ConfigurationData']> = {
|
8048
8334
|
defaults?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
|
8335
|
+
policy?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
|
8336
|
+
application?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
|
8049
8337
|
user?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
|
8050
8338
|
machine?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
|
8051
8339
|
organization?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
|
@@ -8086,6 +8374,8 @@ export declare type IConfigurationTargetResolvers = EnumResolverSignature<{
|
|
8086
8374
|
ORGANIZATION_RESOURCE?: any;
|
8087
8375
|
DEFAULT?: any;
|
8088
8376
|
MEMORY?: any;
|
8377
|
+
RESOURCE_OVERRIDABLE?: any;
|
8378
|
+
MACHINE_OVERRIDABLE?: any;
|
8089
8379
|
}, IResolversTypes['ConfigurationTarget']>;
|
8090
8380
|
export declare type IConfigurationUpdateEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ConfigurationUpdateEvent'] = IResolversParentTypes['ConfigurationUpdateEvent']> = {
|
8091
8381
|
resource?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
|
@@ -8312,16 +8602,8 @@ export declare type IICityResolvers<ContextType = MyContext, ParentType extends
|
|
8312
8602
|
createdAt?: Resolver<IResolversTypes['Date'], ParentType, ContextType>;
|
8313
8603
|
updatedAt?: Resolver<Maybe<IResolversTypes['Date']>, ParentType, ContextType>;
|
8314
8604
|
};
|
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
8605
|
export declare type IIConfigurationModelResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IConfigurationModel'] = IResolversParentTypes['IConfigurationModel']> = {
|
8324
|
-
__resolveType: TypeResolveFn<'ApplicationPolicy' | '
|
8606
|
+
__resolveType: TypeResolveFn<'ApplicationConfiguration' | 'ApplicationPolicy' | 'ApplicationRole' | 'DefaultConfiguration' | 'DefaultPolicy' | 'DefaultRole' | 'MachineConfiguration' | 'OrganizationConfiguration' | 'OrganizationPolicy' | 'OrganizationResourceConfiguration' | 'OrganizationRole' | 'PolicyConfiguration' | 'ResourcePolicy' | 'ResourceRole' | 'UserConfiguration', ParentType, ContextType>;
|
8325
8607
|
resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
8326
8608
|
target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
8327
8609
|
contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
@@ -8453,6 +8735,13 @@ export interface IJsonScalarConfig extends GraphQLScalarTypeConfig<IResolversTyp
|
|
8453
8735
|
export interface IJsonObjectScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['JSONObject'], any> {
|
8454
8736
|
name: 'JSONObject';
|
8455
8737
|
}
|
8738
|
+
export declare type ILinkedIdentityResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['LinkedIdentity'] = IResolversParentTypes['LinkedIdentity']> = {
|
8739
|
+
connection?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8740
|
+
isSocial?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8741
|
+
provider?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8742
|
+
user_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8743
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8744
|
+
};
|
8456
8745
|
export declare type ILoginErrorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['LoginError'] = IResolversParentTypes['LoginError']> = {
|
8457
8746
|
timeStamp?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
8458
8747
|
error?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
@@ -8537,12 +8826,11 @@ export declare type IMutationResolvers<ContextType = MyContext, ParentType exten
|
|
8537
8826
|
removedUserAuthIntegration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationRemovedUserAuthIntegrationArgs, never>>;
|
8538
8827
|
renewAuthToken?: Resolver<Maybe<IResolversTypes['AuthTokens']>, ParentType, ContextType, RequireFields<IMutationRenewAuthTokenArgs, never>>;
|
8539
8828
|
resendOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationResendOrganizationInvitationArgs, 'id'>>;
|
8540
|
-
resendUserEmailVerificationEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8541
8829
|
resetUserPassword?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationResetUserPasswordArgs, 'input'>>;
|
8830
|
+
sendEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSendEmailVerificationTokenArgs, 'email'>>;
|
8542
8831
|
sendOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSendOrganizationInvitationArgs, never>>;
|
8543
8832
|
sendUserPasswordResetEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSendUserPasswordResetEmailArgs, 'email'>>;
|
8544
8833
|
setSettingsValueByResource?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSetSettingsValueByResourceArgs, never>>;
|
8545
|
-
toggleSidebar?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationToggleSidebarArgs, 'state'>>;
|
8546
8834
|
updateAuth0UserPassword?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateAuth0UserPasswordArgs, never>>;
|
8547
8835
|
updateConfiguration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationArgs, 'input' | 'key' | 'value'>>;
|
8548
8836
|
updateConfigurationPolicyValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationPolicyValueArgs, 'key' | 'value'>>;
|
@@ -8558,10 +8846,11 @@ export declare type IMutationResolvers<ContextType = MyContext, ParentType exten
|
|
8558
8846
|
updateRoleValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateRoleValueArgs, 'key' | 'value'>>;
|
8559
8847
|
updateSelectedOrgResource?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateSelectedOrgResourceArgs, 'resource'>>;
|
8560
8848
|
updateUserAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateUserAccountArgs, never>>;
|
8561
|
-
|
8849
|
+
validatePasswordResetOtp?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationValidatePasswordResetOtpArgs, 'email' | 'code'>>;
|
8850
|
+
validateUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationValidateUserEmailVerificationTokenArgs, 'code'>>;
|
8562
8851
|
};
|
8563
8852
|
export declare type INodeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Node'] = IResolversParentTypes['Node']> = {
|
8564
|
-
__resolveType: TypeResolveFn<'AccessToken' | 'ApiExternalAccount' | 'ApiManagement' | '
|
8853
|
+
__resolveType: TypeResolveFn<'AccessToken' | 'ApiExternalAccount' | 'ApiManagement' | 'UserAccount', ParentType, ContextType>;
|
8565
8854
|
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
8566
8855
|
};
|
8567
8856
|
export interface IObservableScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Observable'], any> {
|
@@ -8576,6 +8865,7 @@ export declare type IOrgMemberResolvers<ContextType = MyContext, ParentType exte
|
|
8576
8865
|
_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8577
8866
|
userId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8578
8867
|
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
8868
|
+
user?: Resolver<IResolversTypes['UserAccount'], ParentType, ContextType>;
|
8579
8869
|
isSelf?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8580
8870
|
inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8581
8871
|
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -8594,19 +8884,11 @@ export declare type IOrgUserResolvers<ContextType = MyContext, ParentType extend
|
|
8594
8884
|
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
8595
8885
|
inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8596
8886
|
orgName?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
8597
|
-
user?: Resolver<IResolversTypes['
|
8887
|
+
user?: Resolver<IResolversTypes['UserAccount'], ParentType, ContextType>;
|
8598
8888
|
isSelf?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
8599
8889
|
crossCheckEmail?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8600
8890
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8601
8891
|
};
|
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
8892
|
export declare type IOrganizationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Organization'] = IResolversParentTypes['Organization']> = {
|
8611
8893
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
8612
8894
|
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -8730,18 +9012,6 @@ export declare type IOrganizationRoleResolvers<ContextType = MyContext, ParentTy
|
|
8730
9012
|
overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
|
8731
9013
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8732
9014
|
};
|
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
9015
|
export declare type IOrganizationSettingsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrganizationSettings'] = IResolversParentTypes['OrganizationSettings']> = {
|
8746
9016
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
8747
9017
|
latestSettings?: Resolver<Maybe<IResolversTypes['Settings']>, ParentType, ContextType>;
|
@@ -8759,6 +9029,7 @@ export declare type IOrganizationsDeletedEventResolvers<ContextType = MyContext,
|
|
8759
9029
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8760
9030
|
};
|
8761
9031
|
export declare type IOverridesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Overrides'] = IResolversParentTypes['Overrides']> = {
|
9032
|
+
keys?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
8762
9033
|
contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
8763
9034
|
identifiers?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
8764
9035
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
@@ -8778,6 +9049,15 @@ export declare type IPhoneNumberResolvers<ContextType = MyContext, ParentType ex
|
|
8778
9049
|
phoneNumber?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8779
9050
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8780
9051
|
};
|
9052
|
+
export declare type IPolicyConfigurationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PolicyConfiguration'] = IResolversParentTypes['PolicyConfiguration']> = {
|
9053
|
+
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
9054
|
+
resource?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
|
9055
|
+
target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
9056
|
+
contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
9057
|
+
keys?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
9058
|
+
overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
|
9059
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9060
|
+
};
|
8781
9061
|
export declare type IPolicySubjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PolicySubject'] = IResolversParentTypes['PolicySubject']> = {
|
8782
9062
|
policyURL?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
|
8783
9063
|
createdAt?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -8878,10 +9158,12 @@ export declare type IQueryResolvers<ContextType = MyContext, ParentType extends
|
|
8878
9158
|
externalAccounts?: Resolver<IResolversTypes['ExternalAccountConnection'], ParentType, ContextType, RequireFields<IQueryExternalAccountsArgs, never>>;
|
8879
9159
|
fetchAuth0User?: Resolver<Maybe<IResolversTypes['UserProfile']>, ParentType, ContextType, RequireFields<IQueryFetchAuth0UserArgs, 'auth0UserId'>>;
|
8880
9160
|
fetchUserAuthorizedDevices?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserDevice']>>>, ParentType, ContextType, RequireFields<IQueryFetchUserAuthorizedDevicesArgs, 'auth0UserId'>>;
|
9161
|
+
fetchUserSessions?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserSession']>>>, ParentType, ContextType>;
|
8881
9162
|
filterIntegrationConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType, RequireFields<IQueryFilterIntegrationConfigurationArgs, never>>;
|
8882
9163
|
getAccounts?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccount']>>>, ParentType, ContextType, RequireFields<IQueryGetAccountsArgs, never>>;
|
8883
9164
|
getAllCountries?: Resolver<Maybe<Array<Maybe<IResolversTypes['Country']>>>, ParentType, ContextType, RequireFields<IQueryGetAllCountriesArgs, never>>;
|
8884
9165
|
getAllIntegrationConfigurations?: Resolver<Maybe<IResolversTypes['IntegrationConfigurationsOutput']>, ParentType, ContextType, RequireFields<IQueryGetAllIntegrationConfigurationsArgs, never>>;
|
9166
|
+
getAllUsersTokens?: Resolver<Maybe<Array<Maybe<IResolversTypes['UsersToken']>>>, ParentType, ContextType, RequireFields<IQueryGetAllUsersTokensArgs, 'types'>>;
|
8885
9167
|
getConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['Configuration']>>>, ParentType, ContextType, RequireFields<IQueryGetConfigurationArgs, never>>;
|
8886
9168
|
getConfigurationData?: Resolver<Maybe<IResolversTypes['ConfigurationData']>, ParentType, ContextType>;
|
8887
9169
|
getConfigurationPolicies?: Resolver<Maybe<Array<Maybe<IResolversTypes['ConfigurationPolicy']>>>, ParentType, ContextType, RequireFields<IQueryGetConfigurationPoliciesArgs, never>>;
|
@@ -8927,7 +9209,6 @@ export declare type IQueryResolvers<ContextType = MyContext, ParentType extends
|
|
8927
9209
|
resolveConfiguration?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IQueryResolveConfigurationArgs, 'input'>>;
|
8928
9210
|
resolveSettings?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionSettings']>>>, ParentType, ContextType, RequireFields<IQueryResolveSettingsArgs, 'uri'>>;
|
8929
9211
|
selectedOrgResource?: Resolver<Maybe<IResolversTypes['Context']>, ParentType, ContextType>;
|
8930
|
-
sidebarState?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8931
9212
|
team?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IQueryTeamArgs, 'teamId'>>;
|
8932
9213
|
teams?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccountTeam']>>>, ParentType, ContextType>;
|
8933
9214
|
viewerPolicies?: Resolver<Maybe<IResolversTypes['PolicySubject']>, ParentType, ContextType, RequireFields<IQueryViewerPoliciesArgs, 'input'>>;
|
@@ -9078,17 +9359,6 @@ export declare type ITeamMemberResolvers<ContextType = MyContext, ParentType ext
|
|
9078
9359
|
status?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9079
9360
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9080
9361
|
};
|
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
9362
|
export interface ITimeScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Time'], any> {
|
9093
9363
|
name: 'Time';
|
9094
9364
|
}
|
@@ -9151,7 +9421,7 @@ export declare type IUserAuth0SessionDeviceInfoResolvers<ContextType = MyContext
|
|
9151
9421
|
os?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9152
9422
|
deviceName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9153
9423
|
browserName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9154
|
-
|
9424
|
+
platform?: Resolver<IResolversTypes['DeviceInfoPlatform'], ParentType, ContextType>;
|
9155
9425
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9156
9426
|
};
|
9157
9427
|
export declare type IUserAuth0SessionInfoResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserAuth0SessionInfo'] = IResolversParentTypes['UserAuth0SessionInfo']> = {
|
@@ -9210,12 +9480,6 @@ export declare type IUserMetadataResolvers<ContextType = MyContext, ParentType e
|
|
9210
9480
|
zip_code?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
9211
9481
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9212
9482
|
};
|
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
9483
|
export declare type IUserPreviousValuesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserPreviousValues'] = IResolversParentTypes['UserPreviousValues']> = {
|
9220
9484
|
auth0UserId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9221
9485
|
createdAt?: Resolver<IResolversTypes['DateTime'], ParentType, ContextType>;
|
@@ -9256,6 +9520,13 @@ export declare type IUserProfileResolvers<ContextType = MyContext, ParentType ex
|
|
9256
9520
|
nonce?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9257
9521
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9258
9522
|
};
|
9523
|
+
export declare type IUserSessionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserSession'] = IResolversParentTypes['UserSession']> = {
|
9524
|
+
sessionId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9525
|
+
deviceInfo?: Resolver<Maybe<IResolversTypes['UserAuth0SessionDeviceInfo']>, ParentType, ContextType>;
|
9526
|
+
lastLoginAt?: Resolver<Maybe<IResolversTypes['Date']>, ParentType, ContextType>;
|
9527
|
+
lastLoginIp?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9528
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9529
|
+
};
|
9259
9530
|
export declare type IUserSessionIdResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserSessionId'] = IResolversParentTypes['UserSessionId']> = {
|
9260
9531
|
sessionId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9261
9532
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
@@ -9276,7 +9547,7 @@ export declare type IUserStateResolvers<ContextType = MyContext, ParentType exte
|
|
9276
9547
|
isNewlyLoggedIn?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9277
9548
|
isProfileFetching?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9278
9549
|
isSocialLogin?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9279
|
-
linkedIdentities?: Resolver<Maybe<Array<Maybe<IResolversTypes['
|
9550
|
+
linkedIdentities?: Resolver<Maybe<Array<Maybe<IResolversTypes['LinkedIdentity']>>>, ParentType, ContextType>;
|
9280
9551
|
loggingInProgress?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9281
9552
|
passwordResetProgress?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9282
9553
|
passwordResetSuccess?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
@@ -9293,6 +9564,11 @@ export declare type IUserTokenResolvers<ContextType = MyContext, ParentType exte
|
|
9293
9564
|
valid?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9294
9565
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9295
9566
|
};
|
9567
|
+
export declare type IUsersTokenResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UsersToken'] = IResolversParentTypes['UsersToken']> = {
|
9568
|
+
userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
9569
|
+
tokens?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserToken']>>>, ParentType, ContextType>;
|
9570
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9571
|
+
};
|
9296
9572
|
export declare type IViewerSettingsSubjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ViewerSettingsSubject'] = IResolversParentTypes['ViewerSettingsSubject']> = {
|
9297
9573
|
settingsURL?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
|
9298
9574
|
settings?: Resolver<Maybe<IResolversTypes['Preferences']>, ParentType, ContextType>;
|
@@ -9302,19 +9578,22 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9302
9578
|
AccessRole?: IAccessRoleResolvers<ContextType>;
|
9303
9579
|
AccessToken?: IAccessTokenResolvers<ContextType>;
|
9304
9580
|
AccessTokenConnection?: IAccessTokenConnectionResolvers<ContextType>;
|
9305
|
-
AccountService?: IAccountServiceResolvers<ContextType>;
|
9306
9581
|
AccountTeam?: IAccountTeamResolvers<ContextType>;
|
9307
9582
|
AdminIdeSettings?: IAdminIdeSettingsResolvers<ContextType>;
|
9308
9583
|
AnyObject?: GraphQLScalarType;
|
9309
9584
|
ApiExternalAccount?: IApiExternalAccountResolvers<ContextType>;
|
9310
9585
|
ApiManagement?: IApiManagementResolvers<ContextType>;
|
9586
|
+
ApplicationConfiguration?: IApplicationConfigurationResolvers<ContextType>;
|
9311
9587
|
ApplicationPolicy?: IApplicationPolicyResolvers<ContextType>;
|
9312
|
-
|
9588
|
+
ApplicationRole?: IApplicationRoleResolvers<ContextType>;
|
9313
9589
|
ApplicationSettings?: IApplicationSettingsResolvers<ContextType>;
|
9314
9590
|
Auth0Identity?: IAuth0IdentityResolvers<ContextType>;
|
9315
9591
|
Auth0IdentityProfileData?: IAuth0IdentityProfileDataResolvers<ContextType>;
|
9316
9592
|
AuthTokens?: IAuthTokensResolvers<ContextType>;
|
9317
9593
|
AuthUser?: IAuthUserResolvers<ContextType>;
|
9594
|
+
BaseAccountService?: IBaseAccountServiceResolvers<ContextType>;
|
9595
|
+
BaseOrganizationService?: IBaseOrganizationServiceResolvers<ContextType>;
|
9596
|
+
BaseTeamService?: IBaseTeamServiceResolvers<ContextType>;
|
9318
9597
|
Configuration?: IConfigurationResolvers<ContextType>;
|
9319
9598
|
ConfigurationData?: IConfigurationDataResolvers<ContextType>;
|
9320
9599
|
ConfigurationExtensionInfo?: IConfigurationExtensionInfoResolvers<ContextType>;
|
@@ -9348,7 +9627,6 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9348
9627
|
IAuth0User?: IIAuth0UserResolvers<ContextType>;
|
9349
9628
|
IAuth0UserProfile?: IIAuth0UserProfileResolvers<ContextType>;
|
9350
9629
|
ICity?: IICityResolvers<ContextType>;
|
9351
|
-
IConfigurationChangeEvent?: IIConfigurationChangeEventResolvers<ContextType>;
|
9352
9630
|
IConfigurationModel?: IIConfigurationModelResolvers<ContextType>;
|
9353
9631
|
IConfigurationService?: IIConfigurationServiceResolvers<ContextType>;
|
9354
9632
|
ICountry?: IICountryResolvers<ContextType>;
|
@@ -9369,6 +9647,7 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9369
9647
|
InviteMember?: IInviteMemberResolvers<ContextType>;
|
9370
9648
|
JSON?: GraphQLScalarType;
|
9371
9649
|
JSONObject?: GraphQLScalarType;
|
9650
|
+
LinkedIdentity?: ILinkedIdentityResolvers<ContextType>;
|
9372
9651
|
LoginError?: ILoginErrorResolvers<ContextType>;
|
9373
9652
|
MachineConfiguration?: IMachineConfigurationResolvers<ContextType>;
|
9374
9653
|
MachineSettings?: IMachineSettingsResolvers<ContextType>;
|
@@ -9381,7 +9660,6 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9381
9660
|
OrgMember?: IOrgMemberResolvers<ContextType>;
|
9382
9661
|
OrgMembersOutput?: IOrgMembersOutputResolvers<ContextType>;
|
9383
9662
|
OrgUser?: IOrgUserResolvers<ContextType>;
|
9384
|
-
OrgUserAccunt?: IOrgUserAccuntResolvers<ContextType>;
|
9385
9663
|
Organization?: IOrganizationResolvers<ContextType>;
|
9386
9664
|
OrganizationConfiguration?: IOrganizationConfigurationResolvers<ContextType>;
|
9387
9665
|
OrganizationCreatedEvent?: IOrganizationCreatedEventResolvers<ContextType>;
|
@@ -9396,7 +9674,6 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9396
9674
|
OrganizationResourceData?: IOrganizationResourceDataResolvers<ContextType>;
|
9397
9675
|
OrganizationResourceSettings?: IOrganizationResourceSettingsResolvers<ContextType>;
|
9398
9676
|
OrganizationRole?: IOrganizationRoleResolvers<ContextType>;
|
9399
|
-
OrganizationService?: IOrganizationServiceResolvers<ContextType>;
|
9400
9677
|
OrganizationSettings?: IOrganizationSettingsResolvers<ContextType>;
|
9401
9678
|
OrganizationsDeactivatedEvent?: IOrganizationsDeactivatedEventResolvers<ContextType>;
|
9402
9679
|
OrganizationsDeletedEvent?: IOrganizationsDeletedEventResolvers<ContextType>;
|
@@ -9404,6 +9681,7 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9404
9681
|
PageInfo?: IPageInfoResolvers<ContextType>;
|
9405
9682
|
PermissionSubject?: IPermissionSubjectResolvers<ContextType>;
|
9406
9683
|
PhoneNumber?: IPhoneNumberResolvers<ContextType>;
|
9684
|
+
PolicyConfiguration?: IPolicyConfigurationResolvers<ContextType>;
|
9407
9685
|
PolicySubject?: IPolicySubjectResolvers<ContextType>;
|
9408
9686
|
PopupIntegrationAuthorization?: IPopupIntegrationAuthorizationResolvers<ContextType>;
|
9409
9687
|
Position?: IPositionResolvers<ContextType>;
|
@@ -9443,7 +9721,6 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9443
9721
|
Subscription?: ISubscriptionResolvers<ContextType>;
|
9444
9722
|
TeamInvitationEmailVariables?: ITeamInvitationEmailVariablesResolvers<ContextType>;
|
9445
9723
|
TeamMember?: ITeamMemberResolvers<ContextType>;
|
9446
|
-
TeamService?: ITeamServiceResolvers<ContextType>;
|
9447
9724
|
Time?: GraphQLScalarType;
|
9448
9725
|
URI?: GraphQLScalarType;
|
9449
9726
|
URIInput?: GraphQLScalarType;
|
@@ -9459,13 +9736,14 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9459
9736
|
UserContext?: IUserContextResolvers<ContextType>;
|
9460
9737
|
UserDevice?: IUserDeviceResolvers<ContextType>;
|
9461
9738
|
UserMetadata?: IUserMetadataResolvers<ContextType>;
|
9462
|
-
UserOrg?: IUserOrgResolvers<ContextType>;
|
9463
9739
|
UserPreviousValues?: IUserPreviousValuesResolvers<ContextType>;
|
9464
9740
|
UserProfile?: IUserProfileResolvers<ContextType>;
|
9741
|
+
UserSession?: IUserSessionResolvers<ContextType>;
|
9465
9742
|
UserSessionId?: IUserSessionIdResolvers<ContextType>;
|
9466
9743
|
UserSettings?: IUserSettingsResolvers<ContextType>;
|
9467
9744
|
UserState?: IUserStateResolvers<ContextType>;
|
9468
9745
|
UserToken?: IUserTokenResolvers<ContextType>;
|
9746
|
+
UsersToken?: IUsersTokenResolvers<ContextType>;
|
9469
9747
|
ViewerSettingsSubject?: IViewerSettingsSubjectResolvers<ContextType>;
|
9470
9748
|
};
|
9471
9749
|
export declare type IDirectiveResolvers<ContextType = MyContext> = {
|