@adminide-stack/core 3.1.2-alpha.9 → 3.1.2-alpha.91
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 +649 -378
- package/lib/interfaces/generated/generated-models.js +110 -104
- 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/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
@@ -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
|
@@ -257,6 +233,17 @@ export declare enum IApplicationBillingPlanPolicy {
|
|
257
233
|
Alerts = "Alerts",
|
258
234
|
CustomFields = "CustomFields"
|
259
235
|
}
|
236
|
+
export declare type IApplicationConfiguration = IIConfigurationModel & {
|
237
|
+
__typename?: 'ApplicationConfiguration';
|
238
|
+
/** The ID. */
|
239
|
+
id?: Maybe<Scalars['ID']>;
|
240
|
+
/** The URL to the user's settings. */
|
241
|
+
resource: Scalars['URI'];
|
242
|
+
target?: Maybe<Scalars['Int']>;
|
243
|
+
contents?: Maybe<Scalars['AnyObject']>;
|
244
|
+
keys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
245
|
+
overrides?: Maybe<Array<Maybe<IOverrides>>>;
|
246
|
+
};
|
260
247
|
export declare type IApplicationPolicy = IIConfigurationModel & {
|
261
248
|
__typename?: 'ApplicationPolicy';
|
262
249
|
resource?: Maybe<Scalars['URI']>;
|
@@ -357,6 +344,234 @@ export declare type IAuthUserInput = {
|
|
357
344
|
picture?: Maybe<Scalars['String']>;
|
358
345
|
phoneNo?: Maybe<Scalars['Int']>;
|
359
346
|
};
|
347
|
+
/** Base Account Service */
|
348
|
+
export declare type IBaseAccountService = {
|
349
|
+
__typename?: 'BaseAccountService';
|
350
|
+
createDefaultAccount?: Maybe<IUserAccount>;
|
351
|
+
createAccount?: Maybe<IUserAccount>;
|
352
|
+
updateUserAccount?: Maybe<IUserAccount>;
|
353
|
+
findAccountById?: Maybe<IUserAccount>;
|
354
|
+
findAccountByUser?: Maybe<IUserAccount>;
|
355
|
+
findAccountByEmail?: Maybe<IUserAccount>;
|
356
|
+
getUsers?: Maybe<Array<Maybe<IUserAccount>>>;
|
357
|
+
updateAccount?: Maybe<IUserAccount>;
|
358
|
+
deleteAccount?: Maybe<Scalars['Boolean']>;
|
359
|
+
accountOnBoarding?: Maybe<Scalars['Boolean']>;
|
360
|
+
verifyUserEmailVerificationToken?: Maybe<Scalars['Boolean']>;
|
361
|
+
deleteUserAccount?: Maybe<Scalars['Boolean']>;
|
362
|
+
resendUserEmailVerificationEmail?: Maybe<Scalars['Boolean']>;
|
363
|
+
dispatchUserVerificationEmail?: Maybe<Scalars['AnyObject']>;
|
364
|
+
dispatchUserPasswordResetEmail?: Maybe<Scalars['AnyObject']>;
|
365
|
+
getUserTokenDetails?: Maybe<IUserToken>;
|
366
|
+
addUserToken?: Maybe<Scalars['Boolean']>;
|
367
|
+
removeUserToken?: Maybe<Scalars['Boolean']>;
|
368
|
+
getAllUserTokens?: Maybe<Array<Maybe<IUsersToken>>>;
|
369
|
+
initiatePasswordResetProcess?: Maybe<Scalars['Boolean']>;
|
370
|
+
resetUserPassword?: Maybe<Scalars['Boolean']>;
|
371
|
+
validateUserEmailVerificationToken?: Maybe<Scalars['Boolean']>;
|
372
|
+
sendEmailVerificationToken?: Maybe<Scalars['Boolean']>;
|
373
|
+
};
|
374
|
+
/** Base Account Service */
|
375
|
+
export declare type IBaseAccountServiceCreateDefaultAccountArgs = {
|
376
|
+
user: Scalars['AnyObject'];
|
377
|
+
optional?: Maybe<Scalars['AnyObject']>;
|
378
|
+
};
|
379
|
+
/** Base Account Service */
|
380
|
+
export declare type IBaseAccountServiceCreateAccountArgs = {
|
381
|
+
account: IUserAccountCreateRequest;
|
382
|
+
};
|
383
|
+
/** Base Account Service */
|
384
|
+
export declare type IBaseAccountServiceUpdateUserAccountArgs = {
|
385
|
+
user: Scalars['AnyObject'];
|
386
|
+
userInfo: IUserAuth0UpdateFields;
|
387
|
+
};
|
388
|
+
/** Base Account Service */
|
389
|
+
export declare type IBaseAccountServiceFindAccountByIdArgs = {
|
390
|
+
id: Scalars['String'];
|
391
|
+
};
|
392
|
+
/** Base Account Service */
|
393
|
+
export declare type IBaseAccountServiceFindAccountByUserArgs = {
|
394
|
+
id: Scalars['String'];
|
395
|
+
};
|
396
|
+
/** Base Account Service */
|
397
|
+
export declare type IBaseAccountServiceFindAccountByEmailArgs = {
|
398
|
+
email: Scalars['String'];
|
399
|
+
};
|
400
|
+
/** Base Account Service */
|
401
|
+
export declare type IBaseAccountServiceGetUsersArgs = {
|
402
|
+
where?: Maybe<IUserAccountWhere>;
|
403
|
+
};
|
404
|
+
/** Base Account Service */
|
405
|
+
export declare type IBaseAccountServiceUpdateAccountArgs = {
|
406
|
+
account: IUserAccountUpdateRequest;
|
407
|
+
};
|
408
|
+
/** Base Account Service */
|
409
|
+
export declare type IBaseAccountServiceDeleteAccountArgs = {
|
410
|
+
account: IUserAccountRemoveRequest;
|
411
|
+
};
|
412
|
+
/** Base Account Service */
|
413
|
+
export declare type IBaseAccountServiceAccountOnBoardingArgs = {
|
414
|
+
input: IIOnBoardingParams;
|
415
|
+
context: Scalars['AnyObject'];
|
416
|
+
};
|
417
|
+
/** Base Account Service */
|
418
|
+
export declare type IBaseAccountServiceVerifyUserEmailVerificationTokenArgs = {
|
419
|
+
userId: Scalars['String'];
|
420
|
+
token: Scalars['String'];
|
421
|
+
};
|
422
|
+
/** Base Account Service */
|
423
|
+
export declare type IBaseAccountServiceDeleteUserAccountArgs = {
|
424
|
+
id: Scalars['String'];
|
425
|
+
};
|
426
|
+
/** Base Account Service */
|
427
|
+
export declare type IBaseAccountServiceResendUserEmailVerificationEmailArgs = {
|
428
|
+
id: Scalars['String'];
|
429
|
+
};
|
430
|
+
/** Base Account Service */
|
431
|
+
export declare type IBaseAccountServiceDispatchUserVerificationEmailArgs = {
|
432
|
+
email: Scalars['String'];
|
433
|
+
emailVerificationToken: IUserTokenInput;
|
434
|
+
};
|
435
|
+
/** Base Account Service */
|
436
|
+
export declare type IBaseAccountServiceDispatchUserPasswordResetEmailArgs = {
|
437
|
+
user: IUserAccountInput;
|
438
|
+
token: Scalars['String'];
|
439
|
+
};
|
440
|
+
/** Base Account Service */
|
441
|
+
export declare type IBaseAccountServiceGetUserTokenDetailsArgs = {
|
442
|
+
userId: Scalars['String'];
|
443
|
+
type: ITokenTypesEnum;
|
444
|
+
};
|
445
|
+
/** Base Account Service */
|
446
|
+
export declare type IBaseAccountServiceAddUserTokenArgs = {
|
447
|
+
userId: Scalars['String'];
|
448
|
+
token: IUserTokenInput;
|
449
|
+
};
|
450
|
+
/** Base Account Service */
|
451
|
+
export declare type IBaseAccountServiceRemoveUserTokenArgs = {
|
452
|
+
userId: Scalars['String'];
|
453
|
+
token: IUserTokenInput;
|
454
|
+
};
|
455
|
+
/** Base Account Service */
|
456
|
+
export declare type IBaseAccountServiceGetAllUserTokensArgs = {
|
457
|
+
userIds: Array<Maybe<Scalars['String']>>;
|
458
|
+
tokenTypes: Array<ITokenTypesEnum>;
|
459
|
+
};
|
460
|
+
/** Base Account Service */
|
461
|
+
export declare type IBaseAccountServiceInitiatePasswordResetProcessArgs = {
|
462
|
+
email: Scalars['String'];
|
463
|
+
};
|
464
|
+
/** Base Account Service */
|
465
|
+
export declare type IBaseAccountServiceResetUserPasswordArgs = {
|
466
|
+
input: IUserPasswordResetInput;
|
467
|
+
};
|
468
|
+
/** Base Account Service */
|
469
|
+
export declare type IBaseAccountServiceValidateUserEmailVerificationTokenArgs = {
|
470
|
+
code: Scalars['String'];
|
471
|
+
userAuth0Id: Scalars['String'];
|
472
|
+
email: Scalars['String'];
|
473
|
+
};
|
474
|
+
/** Base Account Service */
|
475
|
+
export declare type IBaseAccountServiceSendEmailVerificationTokenArgs = {
|
476
|
+
email: Scalars['String'];
|
477
|
+
};
|
478
|
+
/** Base Organization Service */
|
479
|
+
export declare type IBaseOrganizationService = {
|
480
|
+
__typename?: 'BaseOrganizationService';
|
481
|
+
getOrganization?: Maybe<IOrganization>;
|
482
|
+
createDefaultOrganization?: Maybe<IOrganization>;
|
483
|
+
getUserOrganizations?: Maybe<Array<Maybe<IOrganization>>>;
|
484
|
+
createOrganization?: Maybe<IOrganization>;
|
485
|
+
updateOrganization?: Maybe<IOrganization>;
|
486
|
+
removeOrganization?: Maybe<Scalars['Boolean']>;
|
487
|
+
getUserOrgRole?: Maybe<IOrgUserRole>;
|
488
|
+
sendInvitation?: Maybe<Scalars['AnyObject']>;
|
489
|
+
declineInvitation?: Maybe<Scalars['Boolean']>;
|
490
|
+
};
|
491
|
+
/** Base Organization Service */
|
492
|
+
export declare type IBaseOrganizationServiceGetOrganizationArgs = {
|
493
|
+
id?: Maybe<Scalars['String']>;
|
494
|
+
};
|
495
|
+
/** Base Organization Service */
|
496
|
+
export declare type IBaseOrganizationServiceCreateDefaultOrganizationArgs = {
|
497
|
+
user?: Maybe<IAuthUserInput>;
|
498
|
+
};
|
499
|
+
/** Base Organization Service */
|
500
|
+
export declare type IBaseOrganizationServiceGetUserOrganizationsArgs = {
|
501
|
+
userId?: Maybe<Scalars['String']>;
|
502
|
+
};
|
503
|
+
/** Base Organization Service */
|
504
|
+
export declare type IBaseOrganizationServiceCreateOrganizationArgs = {
|
505
|
+
workspace: IOrganizationCreateRequest;
|
506
|
+
};
|
507
|
+
/** Base Organization Service */
|
508
|
+
export declare type IBaseOrganizationServiceUpdateOrganizationArgs = {
|
509
|
+
workspace: IOrganizationUpdateRequest;
|
510
|
+
};
|
511
|
+
/** Base Organization Service */
|
512
|
+
export declare type IBaseOrganizationServiceRemoveOrganizationArgs = {
|
513
|
+
workspace: IOrganizationRemoveRequest;
|
514
|
+
};
|
515
|
+
/** Base Organization Service */
|
516
|
+
export declare type IBaseOrganizationServiceGetUserOrgRoleArgs = {
|
517
|
+
orgName: Scalars['String'];
|
518
|
+
userId: Scalars['String'];
|
519
|
+
};
|
520
|
+
/** Base Organization Service */
|
521
|
+
export declare type IBaseOrganizationServiceSendInvitationArgs = {
|
522
|
+
request: IOrganizationInvitationRequest;
|
523
|
+
};
|
524
|
+
/** Base Organization Service */
|
525
|
+
export declare type IBaseOrganizationServiceDeclineInvitationArgs = {
|
526
|
+
id: Scalars['String'];
|
527
|
+
};
|
528
|
+
/** Base Team Service */
|
529
|
+
export declare type IBaseTeamService = {
|
530
|
+
__typename?: 'BaseTeamService';
|
531
|
+
getTeam?: Maybe<IAccountTeam>;
|
532
|
+
getUserTeams?: Maybe<Array<Maybe<IAccountTeam>>>;
|
533
|
+
createTeam?: Maybe<IAccountTeam>;
|
534
|
+
updateTeam?: Maybe<IAccountTeam>;
|
535
|
+
addWorkspaces?: Maybe<IAccountTeam>;
|
536
|
+
removeTeam?: Maybe<Scalars['Boolean']>;
|
537
|
+
createDefaultTeam?: Maybe<IAccountTeam>;
|
538
|
+
sendProjectNotification?: Maybe<Scalars['Boolean']>;
|
539
|
+
};
|
540
|
+
/** Base Team Service */
|
541
|
+
export declare type IBaseTeamServiceGetTeamArgs = {
|
542
|
+
id?: Maybe<Scalars['String']>;
|
543
|
+
};
|
544
|
+
/** Base Team Service */
|
545
|
+
export declare type IBaseTeamServiceGetUserTeamsArgs = {
|
546
|
+
userId?: Maybe<Scalars['String']>;
|
547
|
+
};
|
548
|
+
/** Base Team Service */
|
549
|
+
export declare type IBaseTeamServiceCreateTeamArgs = {
|
550
|
+
team?: Maybe<ITeamCreateRequest>;
|
551
|
+
};
|
552
|
+
/** Base Team Service */
|
553
|
+
export declare type IBaseTeamServiceUpdateTeamArgs = {
|
554
|
+
team?: Maybe<ITeamUpdateRequest>;
|
555
|
+
};
|
556
|
+
/** Base Team Service */
|
557
|
+
export declare type IBaseTeamServiceAddWorkspacesArgs = {
|
558
|
+
id?: Maybe<Scalars['String']>;
|
559
|
+
workspaces?: Maybe<Array<Maybe<Scalars['String']>>>;
|
560
|
+
};
|
561
|
+
/** Base Team Service */
|
562
|
+
export declare type IBaseTeamServiceRemoveTeamArgs = {
|
563
|
+
team?: Maybe<ITeamRemoveRequest>;
|
564
|
+
};
|
565
|
+
/** Base Team Service */
|
566
|
+
export declare type IBaseTeamServiceCreateDefaultTeamArgs = {
|
567
|
+
organization?: Maybe<IOrganizationInput>;
|
568
|
+
user?: Maybe<IAuthUserInput>;
|
569
|
+
};
|
570
|
+
/** Base Team Service */
|
571
|
+
export declare type IBaseTeamServiceSendProjectNotificationArgs = {
|
572
|
+
teamId?: Maybe<Scalars['String']>;
|
573
|
+
projectName?: Maybe<Scalars['String']>;
|
574
|
+
};
|
360
575
|
export declare enum ICacheControlScope {
|
361
576
|
Public = "PUBLIC",
|
362
577
|
Private = "PRIVATE"
|
@@ -374,6 +589,7 @@ export declare type ICityUpdateInput = {
|
|
374
589
|
state: ITerritorialStateUpdateInput;
|
375
590
|
};
|
376
591
|
export declare enum IClientCacheTypeNames {
|
592
|
+
ApplicationConfiguration = "ApplicationConfiguration",
|
377
593
|
ApplicationPolicy = "ApplicationPolicy",
|
378
594
|
ApplicationRolePermission = "ApplicationRolePermission",
|
379
595
|
Configuration = "Configuration",
|
@@ -396,6 +612,7 @@ export declare enum IClientCacheTypeNames {
|
|
396
612
|
OrganizationResourceConfiguration = "OrganizationResourceConfiguration",
|
397
613
|
OrganizationResourceData = "OrganizationResourceData",
|
398
614
|
OrganizationRole = "OrganizationRole",
|
615
|
+
PolicyConfiguration = "PolicyConfiguration",
|
399
616
|
ResourcePolicy = "ResourcePolicy",
|
400
617
|
ResourceRole = "ResourceRole",
|
401
618
|
ResourceUser = "ResourceUser",
|
@@ -428,6 +645,7 @@ export declare enum IConfigCollectionName {
|
|
428
645
|
Application = "application",
|
429
646
|
Clients = "clients",
|
430
647
|
IntegrationWorkflow = "integrationWorkflow",
|
648
|
+
Integrationconfigurations = "integrationconfigurations",
|
431
649
|
Machines = "machines",
|
432
650
|
Organizations = "organizations",
|
433
651
|
Projects = "projects",
|
@@ -450,7 +668,7 @@ export declare enum IConfigFragmentName {
|
|
450
668
|
/** Billing */
|
451
669
|
BillingPlanPolicies = "billingPlanPolicies"
|
452
670
|
}
|
453
|
-
export declare type IConfiguration = IDefaultConfiguration |
|
671
|
+
export declare type IConfiguration = IDefaultConfiguration | IPolicyConfiguration | IApplicationConfiguration | IUserConfiguration | IMachineConfiguration | IOrganizationConfiguration | IOrganizationResourceConfiguration;
|
454
672
|
export declare enum IConfigurationContributionNames {
|
455
673
|
DefaultPermissions = "defaultPermissions",
|
456
674
|
DefaultPolicies = "defaultPolicies",
|
@@ -461,6 +679,8 @@ export declare enum IConfigurationContributionNames {
|
|
461
679
|
export declare type IConfigurationData = {
|
462
680
|
__typename?: 'ConfigurationData';
|
463
681
|
defaults?: Maybe<IIConfigurationModel>;
|
682
|
+
policy?: Maybe<IIConfigurationModel>;
|
683
|
+
application?: Maybe<IIConfigurationModel>;
|
464
684
|
user?: Maybe<IIConfigurationModel>;
|
465
685
|
machine?: Maybe<IIConfigurationModel>;
|
466
686
|
organization?: Maybe<IIConfigurationModel>;
|
@@ -673,8 +893,13 @@ export declare type IDeviceInfoInput = {
|
|
673
893
|
os: Scalars['String'];
|
674
894
|
deviceName?: Maybe<Scalars['String']>;
|
675
895
|
browserName?: Maybe<Scalars['String']>;
|
676
|
-
|
896
|
+
platform: IDeviceInfoPlatform;
|
677
897
|
};
|
898
|
+
export declare enum IDeviceInfoPlatform {
|
899
|
+
Mobile = "MOBILE",
|
900
|
+
Web = "WEB",
|
901
|
+
Extension = "EXTENSION"
|
902
|
+
}
|
678
903
|
export declare enum IEditPresentationTypes {
|
679
904
|
Multiline = "Multiline",
|
680
905
|
Singleline = "Singleline"
|
@@ -809,14 +1034,6 @@ export declare type IICity = {
|
|
809
1034
|
createdAt: Scalars['Date'];
|
810
1035
|
updatedAt?: Maybe<Scalars['Date']>;
|
811
1036
|
};
|
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
1037
|
export declare type IIConfigurationModel = {
|
821
1038
|
resource?: Maybe<Scalars['URI']>;
|
822
1039
|
target?: Maybe<Scalars['Int']>;
|
@@ -928,9 +1145,6 @@ export declare type IIntegraitonConfigurationId = {
|
|
928
1145
|
__typename?: 'IntegraitonConfigurationId';
|
929
1146
|
id?: Maybe<Scalars['String']>;
|
930
1147
|
};
|
931
|
-
export declare enum IIntegrationConfigServiceAction {
|
932
|
-
OnIntegrationConfigurationDeleted = "onIntegrationConfigurationDeleted"
|
933
|
-
}
|
934
1148
|
export declare type IIntegrationConfiguration = {
|
935
1149
|
__typename?: 'IntegrationConfiguration';
|
936
1150
|
id?: Maybe<Scalars['ID']>;
|
@@ -954,6 +1168,8 @@ export declare type IIntegrationConfigurationCreateOrUpdateInput = {
|
|
954
1168
|
integrationInfo?: Maybe<Scalars['JSON']>;
|
955
1169
|
userId?: Maybe<Scalars['ID']>;
|
956
1170
|
orgName?: Maybe<Scalars['String']>;
|
1171
|
+
settings?: Maybe<Scalars['AnyObject']>;
|
1172
|
+
settingsConfiguration?: Maybe<Scalars['AnyObject']>;
|
957
1173
|
};
|
958
1174
|
export declare type IIntegrationConfigurationFilterInput = {
|
959
1175
|
id?: Maybe<Scalars['ID']>;
|
@@ -980,6 +1196,11 @@ export declare type IIntegrationPreferences = {
|
|
980
1196
|
__typename?: 'IntegrationPreferences';
|
981
1197
|
dummy?: Maybe<Scalars['String']>;
|
982
1198
|
};
|
1199
|
+
export declare enum IIntegrationWorkflowServiceAction {
|
1200
|
+
OnIntegrationWorkflowCreated = "onIntegrationWorkflowCreated",
|
1201
|
+
OnIntegrationWorkflowUpdated = "onIntegrationWorkflowUpdated",
|
1202
|
+
OnIntegrationWorkflowDeleted = "onIntegrationWorkflowDeleted"
|
1203
|
+
}
|
983
1204
|
export declare type IInviteMember = {
|
984
1205
|
__typename?: 'InviteMember';
|
985
1206
|
id?: Maybe<Scalars['String']>;
|
@@ -1006,6 +1227,13 @@ export declare type IKeyPathSegment = {
|
|
1006
1227
|
/** The index of the array at this location to descend into. */
|
1007
1228
|
index?: Maybe<Scalars['Int']>;
|
1008
1229
|
};
|
1230
|
+
export declare type ILinkedIdentity = {
|
1231
|
+
__typename?: 'LinkedIdentity';
|
1232
|
+
connection?: Maybe<Scalars['String']>;
|
1233
|
+
isSocial?: Maybe<Scalars['Boolean']>;
|
1234
|
+
provider?: Maybe<Scalars['String']>;
|
1235
|
+
user_id?: Maybe<Scalars['String']>;
|
1236
|
+
};
|
1009
1237
|
export declare type ILoginError = {
|
1010
1238
|
__typename?: 'LoginError';
|
1011
1239
|
timeStamp?: Maybe<Scalars['DateTime']>;
|
@@ -1042,6 +1270,8 @@ export declare enum IMailTemplateId {
|
|
1042
1270
|
BillingNotificationId = "BillingNotificationId",
|
1043
1271
|
/** Prefix with Db to make sure it look into the database */
|
1044
1272
|
DbTeamInivitationId = "DbTeamInivitationId",
|
1273
|
+
/** Prefix with Db to make sure it look into the database */
|
1274
|
+
EmailVerificationOtp = "EMAIL_VERIFICATION_OTP",
|
1045
1275
|
JoinNotifyMember = "JOIN_NOTIFY_MEMBER",
|
1046
1276
|
JoinNotifyOwner = "JOIN_NOTIFY_OWNER",
|
1047
1277
|
/** Prefix with Db to make sure it look into the database */
|
@@ -1094,6 +1324,7 @@ export declare enum IMoleculerServiceName {
|
|
1094
1324
|
AccountsPostEventsService = "AccountsPostEventsService",
|
1095
1325
|
ApiManagementMoleculerService = "ApiManagementMoleculerService",
|
1096
1326
|
AuthUserService = "AuthUserService",
|
1327
|
+
IntegrationWorkflowService = "IntegrationWorkflowService",
|
1097
1328
|
OrganizationContextService = "OrganizationContextService",
|
1098
1329
|
PaymentEventListener = "PaymentEventListener",
|
1099
1330
|
PaymentService = "PaymentService",
|
@@ -1173,12 +1404,11 @@ export declare type IMutation = {
|
|
1173
1404
|
removedUserAuthIntegration?: Maybe<Scalars['Boolean']>;
|
1174
1405
|
renewAuthToken?: Maybe<IAuthTokens>;
|
1175
1406
|
resendOrganizationInvitation?: Maybe<Scalars['Boolean']>;
|
1176
|
-
resendUserEmailVerificationEmail?: Maybe<Scalars['Boolean']>;
|
1177
1407
|
resetUserPassword?: Maybe<Scalars['Boolean']>;
|
1408
|
+
sendEmailVerificationToken?: Maybe<Scalars['Boolean']>;
|
1178
1409
|
sendOrganizationInvitation?: Maybe<Scalars['Boolean']>;
|
1179
1410
|
sendUserPasswordResetEmail?: Maybe<Scalars['Boolean']>;
|
1180
1411
|
setSettingsValueByResource?: Maybe<Scalars['Boolean']>;
|
1181
|
-
toggleSidebar?: Maybe<Scalars['Boolean']>;
|
1182
1412
|
/** Triggers onUserLoggedIn events */
|
1183
1413
|
updateAuth0UserPassword?: Maybe<Scalars['Boolean']>;
|
1184
1414
|
updateConfiguration?: Maybe<Scalars['Boolean']>;
|
@@ -1195,7 +1425,8 @@ export declare type IMutation = {
|
|
1195
1425
|
updateRoleValue?: Maybe<Scalars['Boolean']>;
|
1196
1426
|
updateSelectedOrgResource?: Maybe<Scalars['Boolean']>;
|
1197
1427
|
updateUserAccount?: Maybe<Scalars['Boolean']>;
|
1198
|
-
|
1428
|
+
validatePasswordResetOtp?: Maybe<Scalars['Boolean']>;
|
1429
|
+
validateUserEmailVerificationToken?: Maybe<Scalars['Boolean']>;
|
1199
1430
|
};
|
1200
1431
|
export declare type IMutationAddSshKeyArgs = {
|
1201
1432
|
key: ISshKeyInput;
|
@@ -1282,6 +1513,8 @@ export declare type IMutationInitializeOrgNameInContextArgs = {
|
|
1282
1513
|
};
|
1283
1514
|
export declare type IMutationInitializePopupIntegrationAuthorizationArgs = {
|
1284
1515
|
code?: Maybe<Scalars['String']>;
|
1516
|
+
codeVerifier?: Maybe<Scalars['String']>;
|
1517
|
+
platform?: Maybe<IDeviceInfoPlatform>;
|
1285
1518
|
};
|
1286
1519
|
export declare type IMutationInitializeTeamInContextArgs = {
|
1287
1520
|
teamName?: Maybe<Scalars['String']>;
|
@@ -1320,14 +1553,14 @@ export declare type IMutationRemoveTeamMemberArgs = {
|
|
1320
1553
|
};
|
1321
1554
|
export declare type IMutationRemoveUserAuthSessionArgs = {
|
1322
1555
|
sessionId?: Maybe<Scalars['String']>;
|
1323
|
-
|
1556
|
+
platform?: Maybe<IDeviceInfoPlatform>;
|
1324
1557
|
};
|
1325
1558
|
export declare type IMutationRemovedUserAuthIntegrationArgs = {
|
1326
1559
|
provider?: Maybe<Scalars['String']>;
|
1327
1560
|
};
|
1328
1561
|
export declare type IMutationRenewAuthTokenArgs = {
|
1329
1562
|
sessionId?: Maybe<Scalars['String']>;
|
1330
|
-
|
1563
|
+
platform?: Maybe<IDeviceInfoPlatform>;
|
1331
1564
|
};
|
1332
1565
|
export declare type IMutationResendOrganizationInvitationArgs = {
|
1333
1566
|
id: Scalars['ID'];
|
@@ -1335,6 +1568,9 @@ export declare type IMutationResendOrganizationInvitationArgs = {
|
|
1335
1568
|
export declare type IMutationResetUserPasswordArgs = {
|
1336
1569
|
input: IUserPasswordResetInput;
|
1337
1570
|
};
|
1571
|
+
export declare type IMutationSendEmailVerificationTokenArgs = {
|
1572
|
+
email: Scalars['String'];
|
1573
|
+
};
|
1338
1574
|
export declare type IMutationSendOrganizationInvitationArgs = {
|
1339
1575
|
request?: Maybe<IOrganizationInvitationRequest>;
|
1340
1576
|
};
|
@@ -1346,9 +1582,6 @@ export declare type IMutationSetSettingsValueByResourceArgs = {
|
|
1346
1582
|
key?: Maybe<Scalars['String']>;
|
1347
1583
|
value?: Maybe<Scalars['String']>;
|
1348
1584
|
};
|
1349
|
-
export declare type IMutationToggleSidebarArgs = {
|
1350
|
-
state: Scalars['Boolean'];
|
1351
|
-
};
|
1352
1585
|
export declare type IMutationUpdateAuth0UserPasswordArgs = {
|
1353
1586
|
userId?: Maybe<Scalars['String']>;
|
1354
1587
|
password?: Maybe<Scalars['String']>;
|
@@ -1432,8 +1665,12 @@ export declare type IMutationUpdateSelectedOrgResourceArgs = {
|
|
1432
1665
|
export declare type IMutationUpdateUserAccountArgs = {
|
1433
1666
|
userInfo?: Maybe<IUserAuth0UpdateFields>;
|
1434
1667
|
};
|
1435
|
-
export declare type
|
1436
|
-
|
1668
|
+
export declare type IMutationValidatePasswordResetOtpArgs = {
|
1669
|
+
email: Scalars['String'];
|
1670
|
+
code: Scalars['String'];
|
1671
|
+
};
|
1672
|
+
export declare type IMutationValidateUserEmailVerificationTokenArgs = {
|
1673
|
+
code: Scalars['String'];
|
1437
1674
|
};
|
1438
1675
|
/** An object with an ID. */
|
1439
1676
|
export declare type INode = {
|
@@ -1454,6 +1691,7 @@ export declare type IOrgMember = {
|
|
1454
1691
|
_id?: Maybe<Scalars['String']>;
|
1455
1692
|
userId?: Maybe<Scalars['String']>;
|
1456
1693
|
role?: Maybe<IApplicationRoles>;
|
1694
|
+
user: IOrgUserAccount;
|
1457
1695
|
isSelf?: Maybe<Scalars['Boolean']>;
|
1458
1696
|
inactive?: Maybe<Scalars['Boolean']>;
|
1459
1697
|
name?: Maybe<Scalars['String']>;
|
@@ -1476,17 +1714,20 @@ export declare type IOrgUser = IIOrgUser & {
|
|
1476
1714
|
role?: Maybe<IApplicationRoles>;
|
1477
1715
|
inactive?: Maybe<Scalars['Boolean']>;
|
1478
1716
|
orgName: Scalars['String'];
|
1479
|
-
user:
|
1717
|
+
user: IOrgUserAccount;
|
1480
1718
|
isSelf: Scalars['Boolean'];
|
1481
1719
|
crossCheckEmail?: Maybe<Scalars['String']>;
|
1482
1720
|
};
|
1483
|
-
|
1484
|
-
|
1721
|
+
/** Do not use it, it is deprected, use `UserAccount` instead */
|
1722
|
+
export declare type IOrgUserAccount = INode & {
|
1723
|
+
__typename?: 'OrgUserAccount';
|
1485
1724
|
id: Scalars['ID'];
|
1486
1725
|
email?: Maybe<Scalars['String']>;
|
1487
1726
|
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1488
1727
|
username?: Maybe<Scalars['String']>;
|
1489
1728
|
emailVerified?: Maybe<Scalars['Boolean']>;
|
1729
|
+
familyName?: Maybe<Scalars['String']>;
|
1730
|
+
givenName?: Maybe<Scalars['String']>;
|
1490
1731
|
};
|
1491
1732
|
export declare type IOrgUserInput = {
|
1492
1733
|
userId?: Maybe<Scalars['String']>;
|
@@ -1756,46 +1997,6 @@ export declare type IOrganizationRole = IIConfigurationModel & {
|
|
1756
1997
|
keys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1757
1998
|
overrides?: Maybe<Array<Maybe<IOverrides>>>;
|
1758
1999
|
};
|
1759
|
-
export declare type IOrganizationService = {
|
1760
|
-
__typename?: 'OrganizationService';
|
1761
|
-
getOrganization?: Maybe<IOrganization>;
|
1762
|
-
createDefaultOrganization?: Maybe<IOrganization>;
|
1763
|
-
getUserOrganizations?: Maybe<Array<Maybe<IOrganization>>>;
|
1764
|
-
createOrganization?: Maybe<IOrganization>;
|
1765
|
-
updateOrganization?: Maybe<IOrganization>;
|
1766
|
-
removeOrganization?: Maybe<Scalars['Boolean']>;
|
1767
|
-
getUserOrgRole?: Maybe<IOrgUserRole>;
|
1768
|
-
sendInvitation?: Maybe<Scalars['AnyObject']>;
|
1769
|
-
declineInvitation?: Maybe<Scalars['Boolean']>;
|
1770
|
-
};
|
1771
|
-
export declare type IOrganizationServiceGetOrganizationArgs = {
|
1772
|
-
id?: Maybe<Scalars['String']>;
|
1773
|
-
};
|
1774
|
-
export declare type IOrganizationServiceCreateDefaultOrganizationArgs = {
|
1775
|
-
user?: Maybe<IAuthUserInput>;
|
1776
|
-
};
|
1777
|
-
export declare type IOrganizationServiceGetUserOrganizationsArgs = {
|
1778
|
-
userId?: Maybe<Scalars['String']>;
|
1779
|
-
};
|
1780
|
-
export declare type IOrganizationServiceCreateOrganizationArgs = {
|
1781
|
-
workspace: IOrganizationCreateRequest;
|
1782
|
-
};
|
1783
|
-
export declare type IOrganizationServiceUpdateOrganizationArgs = {
|
1784
|
-
workspace: IOrganizationUpdateRequest;
|
1785
|
-
};
|
1786
|
-
export declare type IOrganizationServiceRemoveOrganizationArgs = {
|
1787
|
-
workspace: IOrganizationRemoveRequest;
|
1788
|
-
};
|
1789
|
-
export declare type IOrganizationServiceGetUserOrgRoleArgs = {
|
1790
|
-
orgName: Scalars['String'];
|
1791
|
-
userId: Scalars['String'];
|
1792
|
-
};
|
1793
|
-
export declare type IOrganizationServiceSendInvitationArgs = {
|
1794
|
-
request: IOrganizationInvitationRequest;
|
1795
|
-
};
|
1796
|
-
export declare type IOrganizationServiceDeclineInvitationArgs = {
|
1797
|
-
id: Scalars['String'];
|
1798
|
-
};
|
1799
2000
|
export declare enum IOrganizationServiceAction {
|
1800
2001
|
GetOrganization = "getOrganization",
|
1801
2002
|
CreateDefaultOrganization = "createDefaultOrganization",
|
@@ -1847,6 +2048,7 @@ export declare type IOrganizationsDeletedEvent = {
|
|
1847
2048
|
};
|
1848
2049
|
export declare type IOverrides = {
|
1849
2050
|
__typename?: 'Overrides';
|
2051
|
+
keys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1850
2052
|
contents?: Maybe<Scalars['AnyObject']>;
|
1851
2053
|
identifiers?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1852
2054
|
};
|
@@ -1898,6 +2100,17 @@ export declare type IPhoneNumberInput = {
|
|
1898
2100
|
countryCode?: Maybe<Scalars['String']>;
|
1899
2101
|
phoneNumber?: Maybe<Scalars['String']>;
|
1900
2102
|
};
|
2103
|
+
export declare type IPolicyConfiguration = IIConfigurationModel & {
|
2104
|
+
__typename?: 'PolicyConfiguration';
|
2105
|
+
/** The ID. */
|
2106
|
+
id?: Maybe<Scalars['ID']>;
|
2107
|
+
/** The URL to the user's settings. */
|
2108
|
+
resource: Scalars['URI'];
|
2109
|
+
target?: Maybe<Scalars['Int']>;
|
2110
|
+
contents?: Maybe<Scalars['AnyObject']>;
|
2111
|
+
keys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2112
|
+
overrides?: Maybe<Array<Maybe<IOverrides>>>;
|
2113
|
+
};
|
1901
2114
|
export declare type IPolicySubject = {
|
1902
2115
|
__typename?: 'PolicySubject';
|
1903
2116
|
/** The URL to the policies. */
|
@@ -2058,11 +2271,18 @@ export declare type IQuery = {
|
|
2058
2271
|
externalAccounts: IExternalAccountConnection;
|
2059
2272
|
/** Fetches a User from Auth0 Service */
|
2060
2273
|
fetchAuth0User?: Maybe<IUserProfile>;
|
2274
|
+
/**
|
2275
|
+
* fetchUserAuthorizedDevices
|
2276
|
+
* @deprecated not used
|
2277
|
+
* @deprecated Field no longer supported
|
2278
|
+
*/
|
2061
2279
|
fetchUserAuthorizedDevices?: Maybe<Array<Maybe<IUserDevice>>>;
|
2280
|
+
fetchUserSessions?: Maybe<Array<Maybe<IUserSession>>>;
|
2062
2281
|
filterIntegrationConfiguration?: Maybe<Array<Maybe<IIntegrationConfiguration>>>;
|
2063
2282
|
getAccounts?: Maybe<Array<Maybe<IUserAccount>>>;
|
2064
2283
|
getAllCountries?: Maybe<Array<Maybe<ICountry>>>;
|
2065
2284
|
getAllIntegrationConfigurations?: Maybe<IIntegrationConfigurationsOutput>;
|
2285
|
+
getAllUsersTokens?: Maybe<Array<Maybe<IUsersToken>>>;
|
2066
2286
|
getConfiguration?: Maybe<Array<Maybe<IConfiguration>>>;
|
2067
2287
|
getConfigurationData?: Maybe<IConfigurationData>;
|
2068
2288
|
getConfigurationPolicies?: Maybe<Array<Maybe<IConfigurationPolicy>>>;
|
@@ -2115,7 +2335,6 @@ export declare type IQuery = {
|
|
2115
2335
|
resolveConfiguration?: Maybe<Scalars['AnyObject']>;
|
2116
2336
|
resolveSettings?: Maybe<Array<Maybe<IContributionSettings>>>;
|
2117
2337
|
selectedOrgResource?: Maybe<IContext>;
|
2118
|
-
sidebarState?: Maybe<Scalars['Boolean']>;
|
2119
2338
|
team?: Maybe<IAccountTeam>;
|
2120
2339
|
teams?: Maybe<Array<Maybe<IAccountTeam>>>;
|
2121
2340
|
/** The policies for the viewer. */
|
@@ -2172,6 +2391,10 @@ export declare type IQueryGetAllIntegrationConfigurationsArgs = {
|
|
2172
2391
|
skip?: Maybe<Scalars['Int']>;
|
2173
2392
|
sort?: Maybe<ISort>;
|
2174
2393
|
};
|
2394
|
+
export declare type IQueryGetAllUsersTokensArgs = {
|
2395
|
+
userIds?: Maybe<Array<Scalars['String']>>;
|
2396
|
+
types: Array<ITokenTypesEnum>;
|
2397
|
+
};
|
2175
2398
|
export declare type IQueryGetConfigurationArgs = {
|
2176
2399
|
input?: Maybe<Array<Maybe<IConfigurationInput>>>;
|
2177
2400
|
};
|
@@ -2588,44 +2811,6 @@ export declare type ITeamRemoveRequest = {
|
|
2588
2811
|
id: Scalars['String'];
|
2589
2812
|
requestedUserId?: Maybe<Scalars['String']>;
|
2590
2813
|
};
|
2591
|
-
export declare type ITeamService = {
|
2592
|
-
__typename?: 'TeamService';
|
2593
|
-
getTeam?: Maybe<IAccountTeam>;
|
2594
|
-
getUserTeams?: Maybe<Array<Maybe<IAccountTeam>>>;
|
2595
|
-
createTeam?: Maybe<IAccountTeam>;
|
2596
|
-
updateTeam?: Maybe<IAccountTeam>;
|
2597
|
-
addWorkspaces?: Maybe<IAccountTeam>;
|
2598
|
-
removeTeam?: Maybe<Scalars['Boolean']>;
|
2599
|
-
createDefaultTeam?: Maybe<IAccountTeam>;
|
2600
|
-
sendProjectNotification?: Maybe<Scalars['Boolean']>;
|
2601
|
-
};
|
2602
|
-
export declare type ITeamServiceGetTeamArgs = {
|
2603
|
-
id?: Maybe<Scalars['String']>;
|
2604
|
-
};
|
2605
|
-
export declare type ITeamServiceGetUserTeamsArgs = {
|
2606
|
-
userId?: Maybe<Scalars['String']>;
|
2607
|
-
};
|
2608
|
-
export declare type ITeamServiceCreateTeamArgs = {
|
2609
|
-
team?: Maybe<ITeamCreateRequest>;
|
2610
|
-
};
|
2611
|
-
export declare type ITeamServiceUpdateTeamArgs = {
|
2612
|
-
team?: Maybe<ITeamUpdateRequest>;
|
2613
|
-
};
|
2614
|
-
export declare type ITeamServiceAddWorkspacesArgs = {
|
2615
|
-
id?: Maybe<Scalars['String']>;
|
2616
|
-
workspaces?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2617
|
-
};
|
2618
|
-
export declare type ITeamServiceRemoveTeamArgs = {
|
2619
|
-
team?: Maybe<ITeamRemoveRequest>;
|
2620
|
-
};
|
2621
|
-
export declare type ITeamServiceCreateDefaultTeamArgs = {
|
2622
|
-
organization?: Maybe<IOrganizationInput>;
|
2623
|
-
user?: Maybe<IAuthUserInput>;
|
2624
|
-
};
|
2625
|
-
export declare type ITeamServiceSendProjectNotificationArgs = {
|
2626
|
-
teamId?: Maybe<Scalars['String']>;
|
2627
|
-
projectName?: Maybe<Scalars['String']>;
|
2628
|
-
};
|
2629
2814
|
export declare enum ITeamServiceAction {
|
2630
2815
|
GetTeam = "getTeam",
|
2631
2816
|
GetUserTeams = "getUserTeams",
|
@@ -2789,7 +2974,7 @@ export declare type IUserAuth0SessionDeviceInfo = {
|
|
2789
2974
|
os?: Maybe<Scalars['String']>;
|
2790
2975
|
deviceName?: Maybe<Scalars['String']>;
|
2791
2976
|
browserName?: Maybe<Scalars['String']>;
|
2792
|
-
|
2977
|
+
platform: IDeviceInfoPlatform;
|
2793
2978
|
};
|
2794
2979
|
export declare type IUserAuth0SessionInfo = {
|
2795
2980
|
__typename?: 'UserAuth0SessionInfo';
|
@@ -2880,21 +3065,10 @@ export declare enum IUserOrderBy {
|
|
2880
3065
|
UpdatedAtAsc = "updatedAt_ASC",
|
2881
3066
|
UpdatedAtDesc = "updatedAt_DESC"
|
2882
3067
|
}
|
2883
|
-
/** The user/org M:F join, denormalized on the user/org tables. */
|
2884
|
-
export declare type IUserOrg = {
|
2885
|
-
__typename?: 'UserOrg';
|
2886
|
-
userId: Scalars['String'];
|
2887
|
-
role?: Maybe<IApplicationRoles>;
|
2888
|
-
inactive?: Maybe<Scalars['Boolean']>;
|
2889
|
-
};
|
2890
|
-
export declare type IUserOrgInput = {
|
2891
|
-
userId: Scalars['String'];
|
2892
|
-
role?: Maybe<IApplicationRoles>;
|
2893
|
-
inactive?: Maybe<Scalars['Boolean']>;
|
2894
|
-
};
|
2895
3068
|
export declare type IUserPasswordResetInput = {
|
2896
|
-
|
2897
|
-
|
3069
|
+
newPassword: Scalars['String'];
|
3070
|
+
currentPassword: Scalars['String'];
|
3071
|
+
email: Scalars['String'];
|
2898
3072
|
};
|
2899
3073
|
export declare type IUserPreviousValues = {
|
2900
3074
|
__typename?: 'UserPreviousValues';
|
@@ -2936,6 +3110,16 @@ export declare type IUserProfile = IIAuth0User & IIAuth0UserProfile & IIAuth0Tok
|
|
2936
3110
|
at_hash?: Maybe<Scalars['String']>;
|
2937
3111
|
nonce?: Maybe<Scalars['String']>;
|
2938
3112
|
};
|
3113
|
+
export declare enum IUserServiceAction {
|
3114
|
+
OnEmailVerified = "onEmailVerified"
|
3115
|
+
}
|
3116
|
+
export declare type IUserSession = {
|
3117
|
+
__typename?: 'UserSession';
|
3118
|
+
sessionId?: Maybe<Scalars['String']>;
|
3119
|
+
deviceInfo?: Maybe<IUserAuth0SessionDeviceInfo>;
|
3120
|
+
lastLoginAt?: Maybe<Scalars['Date']>;
|
3121
|
+
lastLoginIp?: Maybe<Scalars['String']>;
|
3122
|
+
};
|
2939
3123
|
export declare type IUserSessionId = {
|
2940
3124
|
__typename?: 'UserSessionId';
|
2941
3125
|
sessionId?: Maybe<Scalars['String']>;
|
@@ -2983,7 +3167,7 @@ export declare type IUserState = {
|
|
2983
3167
|
isProfileFetching?: Maybe<Scalars['Boolean']>;
|
2984
3168
|
/** True incase of social logged in user */
|
2985
3169
|
isSocialLogin?: Maybe<Scalars['Boolean']>;
|
2986
|
-
linkedIdentities?: Maybe<Array<Maybe<
|
3170
|
+
linkedIdentities?: Maybe<Array<Maybe<ILinkedIdentity>>>;
|
2987
3171
|
loggingInProgress?: Maybe<Scalars['Boolean']>;
|
2988
3172
|
/** True while Password verify link sending */
|
2989
3173
|
passwordResetProgress?: Maybe<Scalars['Boolean']>;
|
@@ -3009,6 +3193,11 @@ export declare type IUserTokenInput = {
|
|
3009
3193
|
token: Scalars['String'];
|
3010
3194
|
valid?: Maybe<Scalars['Boolean']>;
|
3011
3195
|
};
|
3196
|
+
export declare type IUsersToken = {
|
3197
|
+
__typename?: 'UsersToken';
|
3198
|
+
userId: Scalars['String'];
|
3199
|
+
tokens?: Maybe<Array<Maybe<IUserToken>>>;
|
3200
|
+
};
|
3012
3201
|
export declare type IViewerPoliciesInput = {
|
3013
3202
|
target: Scalars['Int'];
|
3014
3203
|
/**
|
@@ -3168,12 +3357,6 @@ export declare type IResendOrganizationInvitationMutationVariables = Exact<{
|
|
3168
3357
|
export declare type IResendOrganizationInvitationMutation = ({
|
3169
3358
|
__typename?: 'Mutation';
|
3170
3359
|
} & Pick<IMutation, 'resendOrganizationInvitation'>);
|
3171
|
-
export declare type IResendUserEmailVerificationEmailMutationVariables = Exact<{
|
3172
|
-
[key: string]: never;
|
3173
|
-
}>;
|
3174
|
-
export declare type IResendUserEmailVerificationEmailMutation = ({
|
3175
|
-
__typename?: 'Mutation';
|
3176
|
-
} & Pick<IMutation, 'resendUserEmailVerificationEmail'>);
|
3177
3360
|
export declare type IResetUserPasswordMutationVariables = Exact<{
|
3178
3361
|
input: IUserPasswordResetInput;
|
3179
3362
|
}>;
|
@@ -3186,6 +3369,12 @@ export declare type ISendUserPasswordResetEmailMutationVariables = Exact<{
|
|
3186
3369
|
export declare type ISendUserPasswordResetEmailMutation = ({
|
3187
3370
|
__typename?: 'Mutation';
|
3188
3371
|
} & Pick<IMutation, 'sendUserPasswordResetEmail'>);
|
3372
|
+
export declare type ISendEmailVerificationMutationVariables = Exact<{
|
3373
|
+
email: Scalars['String'];
|
3374
|
+
}>;
|
3375
|
+
export declare type ISendEmailVerificationMutation = ({
|
3376
|
+
__typename?: 'Mutation';
|
3377
|
+
} & Pick<IMutation, 'sendEmailVerificationToken'>);
|
3189
3378
|
export declare type ISendOrganizationInvitationMutationVariables = Exact<{
|
3190
3379
|
request: IOrganizationInvitationRequest;
|
3191
3380
|
}>;
|
@@ -3227,12 +3416,19 @@ export declare type IUpdateUserAccountMutationVariables = Exact<{
|
|
3227
3416
|
export declare type IUpdateUserAccountMutation = ({
|
3228
3417
|
__typename?: 'Mutation';
|
3229
3418
|
} & Pick<IMutation, 'updateUserAccount'>);
|
3230
|
-
export declare type
|
3231
|
-
|
3419
|
+
export declare type IValidatePasswordResetOtpMutationVariables = Exact<{
|
3420
|
+
email: Scalars['String'];
|
3421
|
+
code: Scalars['String'];
|
3232
3422
|
}>;
|
3233
|
-
export declare type
|
3423
|
+
export declare type IValidatePasswordResetOtpMutation = ({
|
3234
3424
|
__typename?: 'Mutation';
|
3235
|
-
} & Pick<IMutation, '
|
3425
|
+
} & Pick<IMutation, 'validatePasswordResetOtp'>);
|
3426
|
+
export declare type IValidateUserEmailVerificationMutationVariables = Exact<{
|
3427
|
+
code: Scalars['String'];
|
3428
|
+
}>;
|
3429
|
+
export declare type IValidateUserEmailVerificationMutation = ({
|
3430
|
+
__typename?: 'Mutation';
|
3431
|
+
} & Pick<IMutation, 'validateUserEmailVerificationToken'>);
|
3236
3432
|
export declare type IGetUserOrganizationsListQueryVariables = Exact<{
|
3237
3433
|
[key: string]: never;
|
3238
3434
|
}>;
|
@@ -3349,8 +3545,8 @@ export declare type IGetOrganizationMembersWithNameQuery = ({
|
|
3349
3545
|
__typename?: 'OrgUser';
|
3350
3546
|
} & Pick<IOrgUser, 'userId' | 'inactive' | 'crossCheckEmail' | 'role'> & {
|
3351
3547
|
user: ({
|
3352
|
-
__typename?: '
|
3353
|
-
} & Pick<
|
3548
|
+
__typename?: 'OrgUserAccount';
|
3549
|
+
} & Pick<IOrgUserAccount, 'alias' | 'email' | 'username' | 'emailVerified' | 'familyName' | 'givenName'>);
|
3354
3550
|
})>>>;
|
3355
3551
|
})>;
|
3356
3552
|
});
|
@@ -3469,7 +3665,11 @@ export declare type IGetOrganizationMembersQuery = ({
|
|
3469
3665
|
} & Pick<IOrgMembersOutput, 'totalCount'> & {
|
3470
3666
|
data?: Maybe<Array<Maybe<({
|
3471
3667
|
__typename?: 'OrgMember';
|
3472
|
-
} & Pick<IOrgMember, 'userId' | 'isSelf' | 'role' | 'name' | 'email' | 'teamNames' | 'crossCheckEmail'>
|
3668
|
+
} & Pick<IOrgMember, 'userId' | 'isSelf' | 'role' | 'name' | 'email' | 'teamNames' | 'crossCheckEmail'> & {
|
3669
|
+
user: ({
|
3670
|
+
__typename?: 'OrgUserAccount';
|
3671
|
+
} & Pick<IOrgUserAccount, 'familyName' | 'givenName' | 'alias' | 'email'>);
|
3672
|
+
})>>>;
|
3473
3673
|
})>;
|
3474
3674
|
});
|
3475
3675
|
export declare type IOrganizationsQueryVariables = Exact<{
|
@@ -3626,18 +3826,6 @@ export declare type IUserCreationEventFragment = ({
|
|
3626
3826
|
__typename?: 'UserMetadata';
|
3627
3827
|
} & Pick<IUserMetadata, 'last_name' | 'first_name' | 'phone_number' | 'work_email' | 'country' | 'company_name' | 'dob' | 'zip_code'>)>;
|
3628
3828
|
});
|
3629
|
-
export declare type IToggleSidebarMutationVariables = Exact<{
|
3630
|
-
state: Scalars['Boolean'];
|
3631
|
-
}>;
|
3632
|
-
export declare type IToggleSidebarMutation = ({
|
3633
|
-
__typename?: 'Mutation';
|
3634
|
-
} & Pick<IMutation, 'toggleSidebar'>);
|
3635
|
-
export declare type ISidebarStateQueryVariables = Exact<{
|
3636
|
-
[key: string]: never;
|
3637
|
-
}>;
|
3638
|
-
export declare type ISidebarStateQuery = ({
|
3639
|
-
__typename?: 'Query';
|
3640
|
-
} & Pick<IQuery, 'sidebarState'>);
|
3641
3829
|
export declare type IConfigurationUpdateEventFragment = ({
|
3642
3830
|
__typename: 'ConfigurationUpdateEvent';
|
3643
3831
|
} & Pick<IConfigurationUpdateEvent, 'contents' | 'resource' | 'target'> & {
|
@@ -3655,6 +3843,13 @@ export declare type IDefaultSettingFragment = ({
|
|
3655
3843
|
export declare type IOverWriteRoleValueFragment = ({
|
3656
3844
|
__typename?: 'ContributionSettings';
|
3657
3845
|
} & Pick<IContributionSettings, 'key' | 'value'>);
|
3846
|
+
declare type IConfiguration_ApplicationConfiguration_Fragment = ({
|
3847
|
+
__typename: 'ApplicationConfiguration';
|
3848
|
+
} & Pick<IApplicationConfiguration, 'resource' | 'target' | 'contents' | 'keys'> & {
|
3849
|
+
overrides?: Maybe<Array<Maybe<({
|
3850
|
+
__typename?: 'Overrides';
|
3851
|
+
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
3852
|
+
});
|
3658
3853
|
declare type IConfiguration_ApplicationPolicy_Fragment = ({
|
3659
3854
|
__typename: 'ApplicationPolicy';
|
3660
3855
|
} & Pick<IApplicationPolicy, 'resource' | 'target' | 'contents' | 'keys'> & {
|
@@ -3725,6 +3920,13 @@ declare type IConfiguration_OrganizationRole_Fragment = ({
|
|
3725
3920
|
__typename?: 'Overrides';
|
3726
3921
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
3727
3922
|
});
|
3923
|
+
declare type IConfiguration_PolicyConfiguration_Fragment = ({
|
3924
|
+
__typename: 'PolicyConfiguration';
|
3925
|
+
} & Pick<IPolicyConfiguration, 'resource' | 'target' | 'contents' | 'keys'> & {
|
3926
|
+
overrides?: Maybe<Array<Maybe<({
|
3927
|
+
__typename?: 'Overrides';
|
3928
|
+
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
3929
|
+
});
|
3728
3930
|
declare type IConfiguration_ResourcePolicy_Fragment = ({
|
3729
3931
|
__typename: 'ResourcePolicy';
|
3730
3932
|
} & Pick<IResourcePolicy, 'resource' | 'target' | 'contents' | 'keys'> & {
|
@@ -3746,7 +3948,7 @@ declare type IConfiguration_UserConfiguration_Fragment = ({
|
|
3746
3948
|
__typename?: 'Overrides';
|
3747
3949
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
3748
3950
|
});
|
3749
|
-
export declare type IConfigurationFragment = IConfiguration_ApplicationPolicy_Fragment | IConfiguration_ApplicationRolePermission_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_ResourcePolicy_Fragment | IConfiguration_ResourceRole_Fragment | IConfiguration_UserConfiguration_Fragment;
|
3951
|
+
export declare type IConfigurationFragment = IConfiguration_ApplicationConfiguration_Fragment | IConfiguration_ApplicationPolicy_Fragment | IConfiguration_ApplicationRolePermission_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;
|
3750
3952
|
export declare type IContextConfigurationFragment = ({
|
3751
3953
|
__typename?: 'OrganizationData';
|
3752
3954
|
} & Pick<IOrganizationData, 'id' | 'name' | 'configuration'> & {
|
@@ -4029,9 +4231,13 @@ export declare type IGetOrgConfigurationQuery = ({
|
|
4029
4231
|
getConfiguration?: Maybe<Array<Maybe<{
|
4030
4232
|
__typename?: 'DefaultConfiguration';
|
4031
4233
|
} | {
|
4032
|
-
__typename?: '
|
4234
|
+
__typename?: 'PolicyConfiguration';
|
4235
|
+
} | {
|
4236
|
+
__typename?: 'ApplicationConfiguration';
|
4033
4237
|
} | {
|
4034
4238
|
__typename?: 'UserConfiguration';
|
4239
|
+
} | {
|
4240
|
+
__typename?: 'MachineConfiguration';
|
4035
4241
|
} | ({
|
4036
4242
|
__typename?: 'OrganizationConfiguration';
|
4037
4243
|
} & IConfiguration_OrganizationConfiguration_Fragment) | {
|
@@ -4119,9 +4325,13 @@ export declare type IGetResourcesConfigurationQuery = ({
|
|
4119
4325
|
getConfiguration?: Maybe<Array<Maybe<{
|
4120
4326
|
__typename?: 'DefaultConfiguration';
|
4121
4327
|
} | {
|
4122
|
-
__typename?: '
|
4328
|
+
__typename?: 'PolicyConfiguration';
|
4329
|
+
} | {
|
4330
|
+
__typename?: 'ApplicationConfiguration';
|
4123
4331
|
} | {
|
4124
4332
|
__typename?: 'UserConfiguration';
|
4333
|
+
} | {
|
4334
|
+
__typename?: 'MachineConfiguration';
|
4125
4335
|
} | {
|
4126
4336
|
__typename?: 'OrganizationConfiguration';
|
4127
4337
|
} | ({
|
@@ -4136,11 +4346,15 @@ export declare type IGetUserConfigurationQuery = ({
|
|
4136
4346
|
} & {
|
4137
4347
|
getConfiguration?: Maybe<Array<Maybe<({
|
4138
4348
|
__typename?: 'DefaultConfiguration';
|
4139
|
-
} & IConfiguration_DefaultConfiguration_Fragment) |
|
4140
|
-
__typename?: '
|
4141
|
-
}
|
4349
|
+
} & IConfiguration_DefaultConfiguration_Fragment) | {
|
4350
|
+
__typename?: 'PolicyConfiguration';
|
4351
|
+
} | {
|
4352
|
+
__typename?: 'ApplicationConfiguration';
|
4353
|
+
} | ({
|
4142
4354
|
__typename?: 'UserConfiguration';
|
4143
|
-
} & IConfiguration_UserConfiguration_Fragment) | {
|
4355
|
+
} & IConfiguration_UserConfiguration_Fragment) | ({
|
4356
|
+
__typename?: 'MachineConfiguration';
|
4357
|
+
} & IConfiguration_MachineConfiguration_Fragment) | {
|
4144
4358
|
__typename?: 'OrganizationConfiguration';
|
4145
4359
|
} | {
|
4146
4360
|
__typename?: 'OrganizationResourceConfiguration';
|
@@ -4230,11 +4444,15 @@ export declare type IGetOrgWithResourcesConfigurationQuery = ({
|
|
4230
4444
|
} & {
|
4231
4445
|
getConfiguration?: Maybe<Array<Maybe<{
|
4232
4446
|
__typename?: 'DefaultConfiguration';
|
4233
|
-
} |
|
4234
|
-
__typename?: '
|
4235
|
-
}
|
4447
|
+
} | {
|
4448
|
+
__typename?: 'PolicyConfiguration';
|
4449
|
+
} | {
|
4450
|
+
__typename?: 'ApplicationConfiguration';
|
4451
|
+
} | {
|
4236
4452
|
__typename?: 'UserConfiguration';
|
4237
4453
|
} | ({
|
4454
|
+
__typename?: 'MachineConfiguration';
|
4455
|
+
} & IConfiguration_MachineConfiguration_Fragment) | ({
|
4238
4456
|
__typename?: 'OrganizationConfiguration';
|
4239
4457
|
} & IConfiguration_OrganizationConfiguration_Fragment) | ({
|
4240
4458
|
__typename?: 'OrganizationResourceConfiguration';
|
@@ -4249,10 +4467,14 @@ export declare type IGetUserWithDefaultConfigurationQuery = ({
|
|
4249
4467
|
getConfiguration?: Maybe<Array<Maybe<({
|
4250
4468
|
__typename?: 'DefaultConfiguration';
|
4251
4469
|
} & IConfiguration_DefaultConfiguration_Fragment) | {
|
4252
|
-
__typename?: '
|
4470
|
+
__typename?: 'PolicyConfiguration';
|
4471
|
+
} | {
|
4472
|
+
__typename?: 'ApplicationConfiguration';
|
4253
4473
|
} | ({
|
4254
4474
|
__typename?: 'UserConfiguration';
|
4255
4475
|
} & IConfiguration_UserConfiguration_Fragment) | {
|
4476
|
+
__typename?: 'MachineConfiguration';
|
4477
|
+
} | {
|
4256
4478
|
__typename?: 'OrganizationConfiguration';
|
4257
4479
|
} | {
|
4258
4480
|
__typename?: 'OrganizationResourceConfiguration';
|
@@ -4422,6 +4644,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4422
4644
|
__typename?: 'ConfigurationData';
|
4423
4645
|
} & Pick<IConfigurationData, 'isComplete'> & {
|
4424
4646
|
defaults?: Maybe<({
|
4647
|
+
__typename?: 'ApplicationConfiguration';
|
4648
|
+
} & IConfiguration_ApplicationConfiguration_Fragment) | ({
|
4425
4649
|
__typename?: 'ApplicationPolicy';
|
4426
4650
|
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4427
4651
|
__typename?: 'ApplicationRolePermission';
|
@@ -4442,6 +4666,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4442
4666
|
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
4443
4667
|
__typename?: 'OrganizationRole';
|
4444
4668
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
4669
|
+
__typename?: 'PolicyConfiguration';
|
4670
|
+
} & IConfiguration_PolicyConfiguration_Fragment) | ({
|
4445
4671
|
__typename?: 'ResourcePolicy';
|
4446
4672
|
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
4447
4673
|
__typename?: 'ResourceRole';
|
@@ -4449,6 +4675,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4449
4675
|
__typename?: 'UserConfiguration';
|
4450
4676
|
} & IConfiguration_UserConfiguration_Fragment)>;
|
4451
4677
|
user?: Maybe<({
|
4678
|
+
__typename?: 'ApplicationConfiguration';
|
4679
|
+
} & IConfiguration_ApplicationConfiguration_Fragment) | ({
|
4452
4680
|
__typename?: 'ApplicationPolicy';
|
4453
4681
|
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4454
4682
|
__typename?: 'ApplicationRolePermission';
|
@@ -4469,6 +4697,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4469
4697
|
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
4470
4698
|
__typename?: 'OrganizationRole';
|
4471
4699
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
4700
|
+
__typename?: 'PolicyConfiguration';
|
4701
|
+
} & IConfiguration_PolicyConfiguration_Fragment) | ({
|
4472
4702
|
__typename?: 'ResourcePolicy';
|
4473
4703
|
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
4474
4704
|
__typename?: 'ResourceRole';
|
@@ -4476,6 +4706,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4476
4706
|
__typename?: 'UserConfiguration';
|
4477
4707
|
} & IConfiguration_UserConfiguration_Fragment)>;
|
4478
4708
|
machine?: Maybe<({
|
4709
|
+
__typename?: 'ApplicationConfiguration';
|
4710
|
+
} & IConfiguration_ApplicationConfiguration_Fragment) | ({
|
4479
4711
|
__typename?: 'ApplicationPolicy';
|
4480
4712
|
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4481
4713
|
__typename?: 'ApplicationRolePermission';
|
@@ -4496,6 +4728,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4496
4728
|
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
4497
4729
|
__typename?: 'OrganizationRole';
|
4498
4730
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
4731
|
+
__typename?: 'PolicyConfiguration';
|
4732
|
+
} & IConfiguration_PolicyConfiguration_Fragment) | ({
|
4499
4733
|
__typename?: 'ResourcePolicy';
|
4500
4734
|
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
4501
4735
|
__typename?: 'ResourceRole';
|
@@ -4503,6 +4737,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4503
4737
|
__typename?: 'UserConfiguration';
|
4504
4738
|
} & IConfiguration_UserConfiguration_Fragment)>;
|
4505
4739
|
organization?: Maybe<({
|
4740
|
+
__typename?: 'ApplicationConfiguration';
|
4741
|
+
} & IConfiguration_ApplicationConfiguration_Fragment) | ({
|
4506
4742
|
__typename?: 'ApplicationPolicy';
|
4507
4743
|
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4508
4744
|
__typename?: 'ApplicationRolePermission';
|
@@ -4523,6 +4759,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4523
4759
|
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
4524
4760
|
__typename?: 'OrganizationRole';
|
4525
4761
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
4762
|
+
__typename?: 'PolicyConfiguration';
|
4763
|
+
} & IConfiguration_PolicyConfiguration_Fragment) | ({
|
4526
4764
|
__typename?: 'ResourcePolicy';
|
4527
4765
|
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
4528
4766
|
__typename?: 'ResourceRole';
|
@@ -4530,6 +4768,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4530
4768
|
__typename?: 'UserConfiguration';
|
4531
4769
|
} & IConfiguration_UserConfiguration_Fragment)>;
|
4532
4770
|
resources?: Maybe<Array<Maybe<({
|
4771
|
+
__typename?: 'ApplicationConfiguration';
|
4772
|
+
} & IConfiguration_ApplicationConfiguration_Fragment) | ({
|
4533
4773
|
__typename?: 'ApplicationPolicy';
|
4534
4774
|
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4535
4775
|
__typename?: 'ApplicationRolePermission';
|
@@ -4550,6 +4790,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4550
4790
|
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
4551
4791
|
__typename?: 'OrganizationRole';
|
4552
4792
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
4793
|
+
__typename?: 'PolicyConfiguration';
|
4794
|
+
} & IConfiguration_PolicyConfiguration_Fragment) | ({
|
4553
4795
|
__typename?: 'ResourcePolicy';
|
4554
4796
|
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
4555
4797
|
__typename?: 'ResourceRole';
|
@@ -4981,29 +5223,6 @@ export declare function useResendOrganizationInvitationMutation(baseOptions?: Ap
|
|
4981
5223
|
export declare type ResendOrganizationInvitationMutationHookResult = ReturnType<typeof useResendOrganizationInvitationMutation>;
|
4982
5224
|
export declare type ResendOrganizationInvitationMutationResult = Apollo.MutationResult<IResendOrganizationInvitationMutation>;
|
4983
5225
|
export declare type ResendOrganizationInvitationMutationOptions = Apollo.BaseMutationOptions<IResendOrganizationInvitationMutation, IResendOrganizationInvitationMutationVariables>;
|
4984
|
-
export declare const ResendUserEmailVerificationEmailDocument: DocumentNode;
|
4985
|
-
/**
|
4986
|
-
* __useResendUserEmailVerificationEmailMutation__
|
4987
|
-
*
|
4988
|
-
* To run a mutation, you first call `useResendUserEmailVerificationEmailMutation` within a React component and pass it any options that fit your needs.
|
4989
|
-
* When your component renders, `useResendUserEmailVerificationEmailMutation` returns a tuple that includes:
|
4990
|
-
* - A mutate function that you can call at any time to execute the mutation
|
4991
|
-
* - An object with fields that represent the current status of the mutation's execution
|
4992
|
-
*
|
4993
|
-
* @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;
|
4994
|
-
*
|
4995
|
-
* @example
|
4996
|
-
* const [resendUserEmailVerificationEmailMutation, { data, loading, error }] = useResendUserEmailVerificationEmailMutation({
|
4997
|
-
* variables: {
|
4998
|
-
* },
|
4999
|
-
* });
|
5000
|
-
*/
|
5001
|
-
export declare function useResendUserEmailVerificationEmailMutation(baseOptions?: Apollo.MutationHookOptions<IResendUserEmailVerificationEmailMutation, IResendUserEmailVerificationEmailMutationVariables>): Apollo.MutationTuple<IResendUserEmailVerificationEmailMutation, Exact<{
|
5002
|
-
[key: string]: never;
|
5003
|
-
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
5004
|
-
export declare type ResendUserEmailVerificationEmailMutationHookResult = ReturnType<typeof useResendUserEmailVerificationEmailMutation>;
|
5005
|
-
export declare type ResendUserEmailVerificationEmailMutationResult = Apollo.MutationResult<IResendUserEmailVerificationEmailMutation>;
|
5006
|
-
export declare type ResendUserEmailVerificationEmailMutationOptions = Apollo.BaseMutationOptions<IResendUserEmailVerificationEmailMutation, IResendUserEmailVerificationEmailMutationVariables>;
|
5007
5226
|
export declare const ResetUserPasswordDocument: DocumentNode;
|
5008
5227
|
/**
|
5009
5228
|
* __useResetUserPasswordMutation__
|
@@ -5052,6 +5271,30 @@ export declare function useSendUserPasswordResetEmailMutation(baseOptions?: Apol
|
|
5052
5271
|
export declare type SendUserPasswordResetEmailMutationHookResult = ReturnType<typeof useSendUserPasswordResetEmailMutation>;
|
5053
5272
|
export declare type SendUserPasswordResetEmailMutationResult = Apollo.MutationResult<ISendUserPasswordResetEmailMutation>;
|
5054
5273
|
export declare type SendUserPasswordResetEmailMutationOptions = Apollo.BaseMutationOptions<ISendUserPasswordResetEmailMutation, ISendUserPasswordResetEmailMutationVariables>;
|
5274
|
+
export declare const SendEmailVerificationDocument: DocumentNode;
|
5275
|
+
/**
|
5276
|
+
* __useSendEmailVerificationMutation__
|
5277
|
+
*
|
5278
|
+
* To run a mutation, you first call `useSendEmailVerificationMutation` within a React component and pass it any options that fit your needs.
|
5279
|
+
* When your component renders, `useSendEmailVerificationMutation` returns a tuple that includes:
|
5280
|
+
* - A mutate function that you can call at any time to execute the mutation
|
5281
|
+
* - An object with fields that represent the current status of the mutation's execution
|
5282
|
+
*
|
5283
|
+
* @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;
|
5284
|
+
*
|
5285
|
+
* @example
|
5286
|
+
* const [sendEmailVerificationMutation, { data, loading, error }] = useSendEmailVerificationMutation({
|
5287
|
+
* variables: {
|
5288
|
+
* email: // value for 'email'
|
5289
|
+
* },
|
5290
|
+
* });
|
5291
|
+
*/
|
5292
|
+
export declare function useSendEmailVerificationMutation(baseOptions?: Apollo.MutationHookOptions<ISendEmailVerificationMutation, ISendEmailVerificationMutationVariables>): Apollo.MutationTuple<ISendEmailVerificationMutation, Exact<{
|
5293
|
+
email: string;
|
5294
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
5295
|
+
export declare type SendEmailVerificationMutationHookResult = ReturnType<typeof useSendEmailVerificationMutation>;
|
5296
|
+
export declare type SendEmailVerificationMutationResult = Apollo.MutationResult<ISendEmailVerificationMutation>;
|
5297
|
+
export declare type SendEmailVerificationMutationOptions = Apollo.BaseMutationOptions<ISendEmailVerificationMutation, ISendEmailVerificationMutationVariables>;
|
5055
5298
|
export declare const SendOrganizationInvitationDocument: DocumentNode;
|
5056
5299
|
/**
|
5057
5300
|
* __useSendOrganizationInvitationMutation__
|
@@ -5186,30 +5429,56 @@ export declare function useUpdateUserAccountMutation(baseOptions?: Apollo.Mutati
|
|
5186
5429
|
export declare type UpdateUserAccountMutationHookResult = ReturnType<typeof useUpdateUserAccountMutation>;
|
5187
5430
|
export declare type UpdateUserAccountMutationResult = Apollo.MutationResult<IUpdateUserAccountMutation>;
|
5188
5431
|
export declare type UpdateUserAccountMutationOptions = Apollo.BaseMutationOptions<IUpdateUserAccountMutation, IUpdateUserAccountMutationVariables>;
|
5189
|
-
export declare const
|
5432
|
+
export declare const ValidatePasswordResetOtpDocument: DocumentNode;
|
5190
5433
|
/**
|
5191
|
-
*
|
5434
|
+
* __useValidatePasswordResetOtpMutation__
|
5192
5435
|
*
|
5193
|
-
* To run a mutation, you first call `
|
5194
|
-
* When your component renders, `
|
5436
|
+
* To run a mutation, you first call `useValidatePasswordResetOtpMutation` within a React component and pass it any options that fit your needs.
|
5437
|
+
* When your component renders, `useValidatePasswordResetOtpMutation` returns a tuple that includes:
|
5195
5438
|
* - A mutate function that you can call at any time to execute the mutation
|
5196
5439
|
* - An object with fields that represent the current status of the mutation's execution
|
5197
5440
|
*
|
5198
5441
|
* @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;
|
5199
5442
|
*
|
5200
5443
|
* @example
|
5201
|
-
* const [
|
5444
|
+
* const [validatePasswordResetOtpMutation, { data, loading, error }] = useValidatePasswordResetOtpMutation({
|
5202
5445
|
* variables: {
|
5203
|
-
*
|
5446
|
+
* email: // value for 'email'
|
5447
|
+
* code: // value for 'code'
|
5448
|
+
* },
|
5449
|
+
* });
|
5450
|
+
*/
|
5451
|
+
export declare function useValidatePasswordResetOtpMutation(baseOptions?: Apollo.MutationHookOptions<IValidatePasswordResetOtpMutation, IValidatePasswordResetOtpMutationVariables>): Apollo.MutationTuple<IValidatePasswordResetOtpMutation, Exact<{
|
5452
|
+
email: string;
|
5453
|
+
code: string;
|
5454
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
5455
|
+
export declare type ValidatePasswordResetOtpMutationHookResult = ReturnType<typeof useValidatePasswordResetOtpMutation>;
|
5456
|
+
export declare type ValidatePasswordResetOtpMutationResult = Apollo.MutationResult<IValidatePasswordResetOtpMutation>;
|
5457
|
+
export declare type ValidatePasswordResetOtpMutationOptions = Apollo.BaseMutationOptions<IValidatePasswordResetOtpMutation, IValidatePasswordResetOtpMutationVariables>;
|
5458
|
+
export declare const ValidateUserEmailVerificationDocument: DocumentNode;
|
5459
|
+
/**
|
5460
|
+
* __useValidateUserEmailVerificationMutation__
|
5461
|
+
*
|
5462
|
+
* To run a mutation, you first call `useValidateUserEmailVerificationMutation` within a React component and pass it any options that fit your needs.
|
5463
|
+
* When your component renders, `useValidateUserEmailVerificationMutation` returns a tuple that includes:
|
5464
|
+
* - A mutate function that you can call at any time to execute the mutation
|
5465
|
+
* - An object with fields that represent the current status of the mutation's execution
|
5466
|
+
*
|
5467
|
+
* @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;
|
5468
|
+
*
|
5469
|
+
* @example
|
5470
|
+
* const [validateUserEmailVerificationMutation, { data, loading, error }] = useValidateUserEmailVerificationMutation({
|
5471
|
+
* variables: {
|
5472
|
+
* code: // value for 'code'
|
5204
5473
|
* },
|
5205
5474
|
* });
|
5206
5475
|
*/
|
5207
|
-
export declare function
|
5208
|
-
|
5476
|
+
export declare function useValidateUserEmailVerificationMutation(baseOptions?: Apollo.MutationHookOptions<IValidateUserEmailVerificationMutation, IValidateUserEmailVerificationMutationVariables>): Apollo.MutationTuple<IValidateUserEmailVerificationMutation, Exact<{
|
5477
|
+
code: string;
|
5209
5478
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
5210
|
-
export declare type
|
5211
|
-
export declare type
|
5212
|
-
export declare type
|
5479
|
+
export declare type ValidateUserEmailVerificationMutationHookResult = ReturnType<typeof useValidateUserEmailVerificationMutation>;
|
5480
|
+
export declare type ValidateUserEmailVerificationMutationResult = Apollo.MutationResult<IValidateUserEmailVerificationMutation>;
|
5481
|
+
export declare type ValidateUserEmailVerificationMutationOptions = Apollo.BaseMutationOptions<IValidateUserEmailVerificationMutation, IValidateUserEmailVerificationMutationVariables>;
|
5213
5482
|
export declare const GetUserOrganizationsListDocument: DocumentNode;
|
5214
5483
|
/**
|
5215
5484
|
* __useGetUserOrganizationsListQuery__
|
@@ -5975,55 +6244,6 @@ export declare function useFilterIntegrationConfigurationLazyQuery(baseOptions?:
|
|
5975
6244
|
export declare type FilterIntegrationConfigurationQueryHookResult = ReturnType<typeof useFilterIntegrationConfigurationQuery>;
|
5976
6245
|
export declare type FilterIntegrationConfigurationLazyQueryHookResult = ReturnType<typeof useFilterIntegrationConfigurationLazyQuery>;
|
5977
6246
|
export declare type FilterIntegrationConfigurationQueryResult = Apollo.QueryResult<IFilterIntegrationConfigurationQuery, IFilterIntegrationConfigurationQueryVariables>;
|
5978
|
-
export declare const ToggleSidebarDocument: DocumentNode;
|
5979
|
-
/**
|
5980
|
-
* __useToggleSidebarMutation__
|
5981
|
-
*
|
5982
|
-
* To run a mutation, you first call `useToggleSidebarMutation` within a React component and pass it any options that fit your needs.
|
5983
|
-
* When your component renders, `useToggleSidebarMutation` returns a tuple that includes:
|
5984
|
-
* - A mutate function that you can call at any time to execute the mutation
|
5985
|
-
* - An object with fields that represent the current status of the mutation's execution
|
5986
|
-
*
|
5987
|
-
* @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;
|
5988
|
-
*
|
5989
|
-
* @example
|
5990
|
-
* const [toggleSidebarMutation, { data, loading, error }] = useToggleSidebarMutation({
|
5991
|
-
* variables: {
|
5992
|
-
* state: // value for 'state'
|
5993
|
-
* },
|
5994
|
-
* });
|
5995
|
-
*/
|
5996
|
-
export declare function useToggleSidebarMutation(baseOptions?: Apollo.MutationHookOptions<IToggleSidebarMutation, IToggleSidebarMutationVariables>): Apollo.MutationTuple<IToggleSidebarMutation, Exact<{
|
5997
|
-
state: boolean;
|
5998
|
-
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
5999
|
-
export declare type ToggleSidebarMutationHookResult = ReturnType<typeof useToggleSidebarMutation>;
|
6000
|
-
export declare type ToggleSidebarMutationResult = Apollo.MutationResult<IToggleSidebarMutation>;
|
6001
|
-
export declare type ToggleSidebarMutationOptions = Apollo.BaseMutationOptions<IToggleSidebarMutation, IToggleSidebarMutationVariables>;
|
6002
|
-
export declare const SidebarStateDocument: DocumentNode;
|
6003
|
-
/**
|
6004
|
-
* __useSidebarStateQuery__
|
6005
|
-
*
|
6006
|
-
* To run a query within a React component, call `useSidebarStateQuery` and pass it any options that fit your needs.
|
6007
|
-
* When your component renders, `useSidebarStateQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
6008
|
-
* you can use to render your UI.
|
6009
|
-
*
|
6010
|
-
* @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;
|
6011
|
-
*
|
6012
|
-
* @example
|
6013
|
-
* const { data, loading, error } = useSidebarStateQuery({
|
6014
|
-
* variables: {
|
6015
|
-
* },
|
6016
|
-
* });
|
6017
|
-
*/
|
6018
|
-
export declare function useSidebarStateQuery(baseOptions?: Apollo.QueryHookOptions<ISidebarStateQuery, ISidebarStateQueryVariables>): Apollo.QueryResult<ISidebarStateQuery, Exact<{
|
6019
|
-
[key: string]: never;
|
6020
|
-
}>>;
|
6021
|
-
export declare function useSidebarStateLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ISidebarStateQuery, ISidebarStateQueryVariables>): Apollo.LazyQueryResultTuple<ISidebarStateQuery, Exact<{
|
6022
|
-
[key: string]: never;
|
6023
|
-
}>>;
|
6024
|
-
export declare type SidebarStateQueryHookResult = ReturnType<typeof useSidebarStateQuery>;
|
6025
|
-
export declare type SidebarStateLazyQueryHookResult = ReturnType<typeof useSidebarStateLazyQuery>;
|
6026
|
-
export declare type SidebarStateQueryResult = Apollo.QueryResult<ISidebarStateQuery, ISidebarStateQueryVariables>;
|
6027
6247
|
export declare const AddContributionRoleDocument: DocumentNode;
|
6028
6248
|
/**
|
6029
6249
|
* __useAddContributionRoleMutation__
|
@@ -7377,9 +7597,6 @@ export declare type IResolversTypes = {
|
|
7377
7597
|
AccessTokenConnection: ResolverTypeWrapper<IAccessTokenConnection>;
|
7378
7598
|
Int: ResolverTypeWrapper<Scalars['Int']>;
|
7379
7599
|
AccessToken_Input: IAccessToken_Input;
|
7380
|
-
AccountBroadcasterActions: IAccountBroadcasterActions;
|
7381
|
-
AccountService: ResolverTypeWrapper<IAccountService>;
|
7382
|
-
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
7383
7600
|
AccountServiceAction: IAccountServiceAction;
|
7384
7601
|
AccountTeam: ResolverTypeWrapper<IAccountTeam>;
|
7385
7602
|
AccountTeamInput: IAccountTeamInput;
|
@@ -7389,16 +7606,21 @@ export declare type IResolversTypes = {
|
|
7389
7606
|
ApiManagement: ResolverTypeWrapper<IApiManagement>;
|
7390
7607
|
ApiManagement_Input: IApiManagement_Input;
|
7391
7608
|
ApplicationBillingPlanPolicy: IApplicationBillingPlanPolicy;
|
7609
|
+
ApplicationConfiguration: ResolverTypeWrapper<IApplicationConfiguration>;
|
7392
7610
|
ApplicationPolicy: ResolverTypeWrapper<IApplicationPolicy>;
|
7393
7611
|
ApplicationRolePermission: ResolverTypeWrapper<IApplicationRolePermission>;
|
7394
7612
|
ApplicationRoles: IApplicationRoles;
|
7395
7613
|
ApplicationSettings: ResolverTypeWrapper<IApplicationSettings>;
|
7614
|
+
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
7396
7615
|
Auth0Identity: ResolverTypeWrapper<IAuth0Identity>;
|
7397
7616
|
Auth0IdentityProfileData: ResolverTypeWrapper<IAuth0IdentityProfileData>;
|
7398
7617
|
AuthErrorCodes: IAuthErrorCodes;
|
7399
7618
|
AuthTokens: ResolverTypeWrapper<IAuthTokens>;
|
7400
7619
|
AuthUser: ResolverTypeWrapper<IAuthUser>;
|
7401
7620
|
AuthUserInput: IAuthUserInput;
|
7621
|
+
BaseAccountService: ResolverTypeWrapper<IBaseAccountService>;
|
7622
|
+
BaseOrganizationService: ResolverTypeWrapper<IBaseOrganizationService>;
|
7623
|
+
BaseTeamService: ResolverTypeWrapper<IBaseTeamService>;
|
7402
7624
|
CacheControlScope: ICacheControlScope;
|
7403
7625
|
CityInput: ICityInput;
|
7404
7626
|
CityUpdateInput: ICityUpdateInput;
|
@@ -7407,7 +7629,7 @@ export declare type IResolversTypes = {
|
|
7407
7629
|
ClientTypes: IClientTypes;
|
7408
7630
|
ConfigCollectionName: IConfigCollectionName;
|
7409
7631
|
ConfigFragmentName: IConfigFragmentName;
|
7410
|
-
Configuration: IResolversTypes['DefaultConfiguration'] | IResolversTypes['
|
7632
|
+
Configuration: IResolversTypes['DefaultConfiguration'] | IResolversTypes['PolicyConfiguration'] | IResolversTypes['ApplicationConfiguration'] | IResolversTypes['UserConfiguration'] | IResolversTypes['MachineConfiguration'] | IResolversTypes['OrganizationConfiguration'] | IResolversTypes['OrganizationResourceConfiguration'];
|
7411
7633
|
ConfigurationContributionNames: IConfigurationContributionNames;
|
7412
7634
|
ConfigurationData: ResolverTypeWrapper<IConfigurationData>;
|
7413
7635
|
ConfigurationExtensionInfo: ResolverTypeWrapper<IConfigurationExtensionInfo>;
|
@@ -7436,6 +7658,7 @@ export declare type IResolversTypes = {
|
|
7436
7658
|
DefaultRole: ResolverTypeWrapper<IDefaultRole>;
|
7437
7659
|
DefaultSettings: ResolverTypeWrapper<IDefaultSettings>;
|
7438
7660
|
DeviceInfoInput: IDeviceInfoInput;
|
7661
|
+
DeviceInfoPlatform: IDeviceInfoPlatform;
|
7439
7662
|
EditPresentationTypes: IEditPresentationTypes;
|
7440
7663
|
EmptyResponse: ResolverTypeWrapper<IEmptyResponse>;
|
7441
7664
|
Environment: ResolverTypeWrapper<IEnvironment>;
|
@@ -7454,10 +7677,7 @@ export declare type IResolversTypes = {
|
|
7454
7677
|
IAuth0User: IResolversTypes['UserProfile'];
|
7455
7678
|
IAuth0UserProfile: IResolversTypes['UserProfile'];
|
7456
7679
|
ICity: never;
|
7457
|
-
|
7458
|
-
changedConfiguration?: Maybe<IResolversTypes['Configuration']>;
|
7459
|
-
}>;
|
7460
|
-
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'];
|
7680
|
+
IConfigurationModel: IResolversTypes['ApplicationConfiguration'] | IResolversTypes['ApplicationPolicy'] | IResolversTypes['ApplicationRolePermission'] | IResolversTypes['DefaultConfiguration'] | IResolversTypes['DefaultPolicy'] | IResolversTypes['DefaultRole'] | IResolversTypes['MachineConfiguration'] | IResolversTypes['OrganizationConfiguration'] | IResolversTypes['OrganizationPolicy'] | IResolversTypes['OrganizationResourceConfiguration'] | IResolversTypes['OrganizationRole'] | IResolversTypes['PolicyConfiguration'] | IResolversTypes['ResourcePolicy'] | IResolversTypes['ResourceRole'] | IResolversTypes['UserConfiguration'];
|
7461
7681
|
IConfigurationService: never;
|
7462
7682
|
ICountry: never;
|
7463
7683
|
IEventWithContext: IResolversTypes['OrganizationCreatedEvent'] | IResolversTypes['OrganizationDeletedEvent'];
|
@@ -7472,18 +7692,19 @@ export declare type IResolversTypes = {
|
|
7472
7692
|
IUser: IResolversTypes['AuthUser'];
|
7473
7693
|
IUserMetadata: IResolversTypes['UserMetadata'];
|
7474
7694
|
IntegraitonConfigurationId: ResolverTypeWrapper<IIntegraitonConfigurationId>;
|
7475
|
-
IntegrationConfigServiceAction: IIntegrationConfigServiceAction;
|
7476
7695
|
IntegrationConfiguration: ResolverTypeWrapper<IIntegrationConfiguration>;
|
7477
7696
|
IntegrationConfigurationCreateOrUpdateInput: IIntegrationConfigurationCreateOrUpdateInput;
|
7478
7697
|
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
7479
7698
|
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
7480
7699
|
IntegrationConfigurationsOutput: ResolverTypeWrapper<IIntegrationConfigurationsOutput>;
|
7481
7700
|
IntegrationPreferences: ResolverTypeWrapper<IIntegrationPreferences>;
|
7701
|
+
IntegrationWorkflowServiceAction: IIntegrationWorkflowServiceAction;
|
7482
7702
|
InviteMember: ResolverTypeWrapper<IInviteMember>;
|
7483
7703
|
InviteStatus: IInviteStatus;
|
7484
7704
|
JSON: ResolverTypeWrapper<Scalars['JSON']>;
|
7485
7705
|
JSONObject: ResolverTypeWrapper<Scalars['JSONObject']>;
|
7486
7706
|
KeyPathSegment: IKeyPathSegment;
|
7707
|
+
LinkedIdentity: ResolverTypeWrapper<ILinkedIdentity>;
|
7487
7708
|
LoginError: ResolverTypeWrapper<ILoginError>;
|
7488
7709
|
MachineConfiguration: ResolverTypeWrapper<IMachineConfiguration>;
|
7489
7710
|
MachineSettings: ResolverTypeWrapper<IMachineSettings>;
|
@@ -7493,7 +7714,7 @@ export declare type IResolversTypes = {
|
|
7493
7714
|
MenuPosition: IMenuPosition;
|
7494
7715
|
MoleculerServiceName: IMoleculerServiceName;
|
7495
7716
|
Mutation: ResolverTypeWrapper<{}>;
|
7496
|
-
Node: IResolversTypes['AccessToken'] | IResolversTypes['ApiExternalAccount'] | IResolversTypes['ApiManagement'] | IResolversTypes['
|
7717
|
+
Node: IResolversTypes['AccessToken'] | IResolversTypes['ApiExternalAccount'] | IResolversTypes['ApiManagement'] | IResolversTypes['OrgUserAccount'] | IResolversTypes['UserAccount'];
|
7497
7718
|
Observable: ResolverTypeWrapper<Scalars['Observable']>;
|
7498
7719
|
OrgDetailWhere: IOrgDetailWhere;
|
7499
7720
|
OrgInvitationMembers: ResolverTypeWrapper<IOrgInvitationMembers>;
|
@@ -7501,7 +7722,7 @@ export declare type IResolversTypes = {
|
|
7501
7722
|
OrgMembersOutput: ResolverTypeWrapper<IOrgMembersOutput>;
|
7502
7723
|
OrgType: IOrgType;
|
7503
7724
|
OrgUser: ResolverTypeWrapper<IOrgUser>;
|
7504
|
-
|
7725
|
+
OrgUserAccount: ResolverTypeWrapper<IOrgUserAccount>;
|
7505
7726
|
OrgUserInput: IOrgUserInput;
|
7506
7727
|
OrgUserRole: IOrgUserRole;
|
7507
7728
|
OrgainizationInvitationRole: IOrgainizationInvitationRole;
|
@@ -7529,7 +7750,6 @@ export declare type IResolversTypes = {
|
|
7529
7750
|
OrganizationResourceData: ResolverTypeWrapper<IOrganizationResourceData>;
|
7530
7751
|
OrganizationResourceSettings: ResolverTypeWrapper<IOrganizationResourceSettings>;
|
7531
7752
|
OrganizationRole: ResolverTypeWrapper<IOrganizationRole>;
|
7532
|
-
OrganizationService: ResolverTypeWrapper<IOrganizationService>;
|
7533
7753
|
OrganizationServiceAction: IOrganizationServiceAction;
|
7534
7754
|
OrganizationSettings: ResolverTypeWrapper<IOrganizationSettings>;
|
7535
7755
|
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
@@ -7543,6 +7763,7 @@ export declare type IResolversTypes = {
|
|
7543
7763
|
PermissionType: IPermissionType;
|
7544
7764
|
PhoneNumber: ResolverTypeWrapper<IPhoneNumber>;
|
7545
7765
|
PhoneNumberInput: IPhoneNumberInput;
|
7766
|
+
PolicyConfiguration: ResolverTypeWrapper<IPolicyConfiguration>;
|
7546
7767
|
PolicySubject: ResolverTypeWrapper<IPolicySubject>;
|
7547
7768
|
PopupIntegrationAuthorization: ResolverTypeWrapper<IPopupIntegrationAuthorization>;
|
7548
7769
|
PortalLanguage: IPortalLanguage;
|
@@ -7608,7 +7829,6 @@ export declare type IResolversTypes = {
|
|
7608
7829
|
TeamMember: ResolverTypeWrapper<ITeamMember>;
|
7609
7830
|
TeamMemberInput: ITeamMemberInput;
|
7610
7831
|
TeamRemoveRequest: ITeamRemoveRequest;
|
7611
|
-
TeamService: ResolverTypeWrapper<ITeamService>;
|
7612
7832
|
TeamServiceAction: ITeamServiceAction;
|
7613
7833
|
TeamType: ITeamType;
|
7614
7834
|
TeamUpdateRequest: ITeamUpdateRequest;
|
@@ -7638,16 +7858,17 @@ export declare type IResolversTypes = {
|
|
7638
7858
|
UserDevice: ResolverTypeWrapper<IUserDevice>;
|
7639
7859
|
UserMetadata: ResolverTypeWrapper<IUserMetadata>;
|
7640
7860
|
UserOrderBy: IUserOrderBy;
|
7641
|
-
UserOrg: ResolverTypeWrapper<IUserOrg>;
|
7642
|
-
UserOrgInput: IUserOrgInput;
|
7643
7861
|
UserPasswordResetInput: IUserPasswordResetInput;
|
7644
7862
|
UserPreviousValues: ResolverTypeWrapper<IUserPreviousValues>;
|
7645
7863
|
UserProfile: ResolverTypeWrapper<IUserProfile>;
|
7864
|
+
UserServiceAction: IUserServiceAction;
|
7865
|
+
UserSession: ResolverTypeWrapper<IUserSession>;
|
7646
7866
|
UserSessionId: ResolverTypeWrapper<IUserSessionId>;
|
7647
7867
|
UserSettings: ResolverTypeWrapper<IUserSettings>;
|
7648
7868
|
UserState: ResolverTypeWrapper<IUserState>;
|
7649
7869
|
UserToken: ResolverTypeWrapper<IUserToken>;
|
7650
7870
|
UserTokenInput: IUserTokenInput;
|
7871
|
+
UsersToken: ResolverTypeWrapper<IUsersToken>;
|
7651
7872
|
ViewerPoliciesInput: IViewerPoliciesInput;
|
7652
7873
|
ViewerSettingsInput: IViewerSettingsInput;
|
7653
7874
|
ViewerSettingsSubject: ResolverTypeWrapper<IViewerSettingsSubject>;
|
@@ -7663,8 +7884,6 @@ export declare type IResolversParentTypes = {
|
|
7663
7884
|
AccessTokenConnection: IAccessTokenConnection;
|
7664
7885
|
Int: Scalars['Int'];
|
7665
7886
|
AccessToken_Input: IAccessToken_Input;
|
7666
|
-
AccountService: IAccountService;
|
7667
|
-
Boolean: Scalars['Boolean'];
|
7668
7887
|
AccountTeam: IAccountTeam;
|
7669
7888
|
AccountTeamInput: IAccountTeamInput;
|
7670
7889
|
AdminIdeSettings: IAdminIdeSettings;
|
@@ -7672,17 +7891,22 @@ export declare type IResolversParentTypes = {
|
|
7672
7891
|
ApiExternalAccount: IApiExternalAccount;
|
7673
7892
|
ApiManagement: IApiManagement;
|
7674
7893
|
ApiManagement_Input: IApiManagement_Input;
|
7894
|
+
ApplicationConfiguration: IApplicationConfiguration;
|
7675
7895
|
ApplicationPolicy: IApplicationPolicy;
|
7676
7896
|
ApplicationRolePermission: IApplicationRolePermission;
|
7677
7897
|
ApplicationSettings: IApplicationSettings;
|
7898
|
+
Boolean: Scalars['Boolean'];
|
7678
7899
|
Auth0Identity: IAuth0Identity;
|
7679
7900
|
Auth0IdentityProfileData: IAuth0IdentityProfileData;
|
7680
7901
|
AuthTokens: IAuthTokens;
|
7681
7902
|
AuthUser: IAuthUser;
|
7682
7903
|
AuthUserInput: IAuthUserInput;
|
7904
|
+
BaseAccountService: IBaseAccountService;
|
7905
|
+
BaseOrganizationService: IBaseOrganizationService;
|
7906
|
+
BaseTeamService: IBaseTeamService;
|
7683
7907
|
CityInput: ICityInput;
|
7684
7908
|
CityUpdateInput: ICityUpdateInput;
|
7685
|
-
Configuration: IResolversParentTypes['DefaultConfiguration'] | IResolversParentTypes['
|
7909
|
+
Configuration: IResolversParentTypes['DefaultConfiguration'] | IResolversParentTypes['PolicyConfiguration'] | IResolversParentTypes['ApplicationConfiguration'] | IResolversParentTypes['UserConfiguration'] | IResolversParentTypes['MachineConfiguration'] | IResolversParentTypes['OrganizationConfiguration'] | IResolversParentTypes['OrganizationResourceConfiguration'];
|
7686
7910
|
ConfigurationData: IConfigurationData;
|
7687
7911
|
ConfigurationExtensionInfo: IConfigurationExtensionInfo;
|
7688
7912
|
ConfigurationInput: IConfigurationInput;
|
@@ -7722,10 +7946,7 @@ export declare type IResolversParentTypes = {
|
|
7722
7946
|
IAuth0User: IResolversParentTypes['UserProfile'];
|
7723
7947
|
IAuth0UserProfile: IResolversParentTypes['UserProfile'];
|
7724
7948
|
ICity: never;
|
7725
|
-
|
7726
|
-
changedConfiguration?: Maybe<IResolversParentTypes['Configuration']>;
|
7727
|
-
};
|
7728
|
-
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'];
|
7949
|
+
IConfigurationModel: IResolversParentTypes['ApplicationConfiguration'] | IResolversParentTypes['ApplicationPolicy'] | IResolversParentTypes['ApplicationRolePermission'] | IResolversParentTypes['DefaultConfiguration'] | IResolversParentTypes['DefaultPolicy'] | IResolversParentTypes['DefaultRole'] | IResolversParentTypes['MachineConfiguration'] | IResolversParentTypes['OrganizationConfiguration'] | IResolversParentTypes['OrganizationPolicy'] | IResolversParentTypes['OrganizationResourceConfiguration'] | IResolversParentTypes['OrganizationRole'] | IResolversParentTypes['PolicyConfiguration'] | IResolversParentTypes['ResourcePolicy'] | IResolversParentTypes['ResourceRole'] | IResolversParentTypes['UserConfiguration'];
|
7729
7950
|
IConfigurationService: never;
|
7730
7951
|
ICountry: never;
|
7731
7952
|
IEventWithContext: IResolversParentTypes['OrganizationCreatedEvent'] | IResolversParentTypes['OrganizationDeletedEvent'];
|
@@ -7750,13 +7971,14 @@ export declare type IResolversParentTypes = {
|
|
7750
7971
|
JSON: Scalars['JSON'];
|
7751
7972
|
JSONObject: Scalars['JSONObject'];
|
7752
7973
|
KeyPathSegment: IKeyPathSegment;
|
7974
|
+
LinkedIdentity: ILinkedIdentity;
|
7753
7975
|
LoginError: ILoginError;
|
7754
7976
|
MachineConfiguration: IMachineConfiguration;
|
7755
7977
|
MachineSettings: IMachineSettings;
|
7756
7978
|
MemorySettings: IMemorySettings;
|
7757
7979
|
MenuItem: IMenuItem;
|
7758
7980
|
Mutation: {};
|
7759
|
-
Node: IResolversParentTypes['AccessToken'] | IResolversParentTypes['ApiExternalAccount'] | IResolversParentTypes['ApiManagement'] | IResolversParentTypes['
|
7981
|
+
Node: IResolversParentTypes['AccessToken'] | IResolversParentTypes['ApiExternalAccount'] | IResolversParentTypes['ApiManagement'] | IResolversParentTypes['OrgUserAccount'] | IResolversParentTypes['UserAccount'];
|
7760
7982
|
Observable: Scalars['Observable'];
|
7761
7983
|
OrgDetailWhere: IOrgDetailWhere;
|
7762
7984
|
OrgInvitationMembers: IOrgInvitationMembers;
|
@@ -7764,7 +7986,7 @@ export declare type IResolversParentTypes = {
|
|
7764
7986
|
OrgMembersOutput: IOrgMembersOutput;
|
7765
7987
|
OrgType: IOrgType;
|
7766
7988
|
OrgUser: IOrgUser;
|
7767
|
-
|
7989
|
+
OrgUserAccount: IOrgUserAccount;
|
7768
7990
|
OrgUserInput: IOrgUserInput;
|
7769
7991
|
Organization: IOrganization;
|
7770
7992
|
OrganizationConfigValueInput: IOrganizationConfigValueInput;
|
@@ -7789,7 +8011,6 @@ export declare type IResolversParentTypes = {
|
|
7789
8011
|
OrganizationResourceData: IOrganizationResourceData;
|
7790
8012
|
OrganizationResourceSettings: IOrganizationResourceSettings;
|
7791
8013
|
OrganizationRole: IOrganizationRole;
|
7792
|
-
OrganizationService: IOrganizationService;
|
7793
8014
|
OrganizationSettings: IOrganizationSettings;
|
7794
8015
|
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
7795
8016
|
OrganizationsDeactivatedEvent: IOrganizationsDeactivatedEvent;
|
@@ -7799,6 +8020,7 @@ export declare type IResolversParentTypes = {
|
|
7799
8020
|
PermissionSubject: IPermissionSubject;
|
7800
8021
|
PhoneNumber: IPhoneNumber;
|
7801
8022
|
PhoneNumberInput: IPhoneNumberInput;
|
8023
|
+
PolicyConfiguration: IPolicyConfiguration;
|
7802
8024
|
PolicySubject: IPolicySubject;
|
7803
8025
|
PopupIntegrationAuthorization: IPopupIntegrationAuthorization;
|
7804
8026
|
Position: IPosition;
|
@@ -7854,7 +8076,6 @@ export declare type IResolversParentTypes = {
|
|
7854
8076
|
TeamMember: ITeamMember;
|
7855
8077
|
TeamMemberInput: ITeamMemberInput;
|
7856
8078
|
TeamRemoveRequest: ITeamRemoveRequest;
|
7857
|
-
TeamService: ITeamService;
|
7858
8079
|
TeamType: ITeamType;
|
7859
8080
|
TeamUpdateRequest: ITeamUpdateRequest;
|
7860
8081
|
TerritorialStateInput: ITerritorialStateInput;
|
@@ -7880,16 +8101,16 @@ export declare type IResolversParentTypes = {
|
|
7880
8101
|
UserContext: IUserContext;
|
7881
8102
|
UserDevice: IUserDevice;
|
7882
8103
|
UserMetadata: IUserMetadata;
|
7883
|
-
UserOrg: IUserOrg;
|
7884
|
-
UserOrgInput: IUserOrgInput;
|
7885
8104
|
UserPasswordResetInput: IUserPasswordResetInput;
|
7886
8105
|
UserPreviousValues: IUserPreviousValues;
|
7887
8106
|
UserProfile: IUserProfile;
|
8107
|
+
UserSession: IUserSession;
|
7888
8108
|
UserSessionId: IUserSessionId;
|
7889
8109
|
UserSettings: IUserSettings;
|
7890
8110
|
UserState: IUserState;
|
7891
8111
|
UserToken: IUserToken;
|
7892
8112
|
UserTokenInput: IUserTokenInput;
|
8113
|
+
UsersToken: IUsersToken;
|
7893
8114
|
ViewerPoliciesInput: IViewerPoliciesInput;
|
7894
8115
|
ViewerSettingsInput: IViewerSettingsInput;
|
7895
8116
|
ViewerSettingsSubject: IViewerSettingsSubject;
|
@@ -7931,17 +8152,6 @@ export declare type IAccessTokenConnectionResolvers<ContextType = MyContext, Par
|
|
7931
8152
|
pageInfo?: Resolver<IResolversTypes['PageInfo'], ParentType, ContextType>;
|
7932
8153
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
7933
8154
|
};
|
7934
|
-
export declare type IAccountServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AccountService'] = IResolversParentTypes['AccountService']> = {
|
7935
|
-
createDefaultAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IAccountServiceCreateDefaultAccountArgs, never>>;
|
7936
|
-
createAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IAccountServiceCreateAccountArgs, never>>;
|
7937
|
-
findAccountById?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IAccountServiceFindAccountByIdArgs, never>>;
|
7938
|
-
findAccountByUser?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IAccountServiceFindAccountByUserArgs, never>>;
|
7939
|
-
updateAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IAccountServiceUpdateAccountArgs, never>>;
|
7940
|
-
deleteAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IAccountServiceDeleteAccountArgs, never>>;
|
7941
|
-
dispatchUserVerificationEmail?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IAccountServiceDispatchUserVerificationEmailArgs, never>>;
|
7942
|
-
verifyUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IAccountServiceVerifyUserEmailVerificationTokenArgs, never>>;
|
7943
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
7944
|
-
};
|
7945
8155
|
export declare type IAccountTeamResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AccountTeam'] = IResolversParentTypes['AccountTeam']> = {
|
7946
8156
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
7947
8157
|
_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -7983,6 +8193,15 @@ export declare type IApiManagementResolvers<ContextType = MyContext, ParentType
|
|
7983
8193
|
user?: Resolver<IResolversTypes['UserAccount'], ParentType, ContextType>;
|
7984
8194
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
7985
8195
|
};
|
8196
|
+
export declare type IApplicationConfigurationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ApplicationConfiguration'] = IResolversParentTypes['ApplicationConfiguration']> = {
|
8197
|
+
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
8198
|
+
resource?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
|
8199
|
+
target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
8200
|
+
contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
8201
|
+
keys?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
8202
|
+
overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
|
8203
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8204
|
+
};
|
7986
8205
|
export declare type IApplicationPolicyResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ApplicationPolicy'] = IResolversParentTypes['ApplicationPolicy']> = {
|
7987
8206
|
resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
7988
8207
|
target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
@@ -8038,11 +8257,62 @@ export declare type IAuthUserResolvers<ContextType = MyContext, ParentType exten
|
|
8038
8257
|
phoneNo?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
8039
8258
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8040
8259
|
};
|
8260
|
+
export declare type IBaseAccountServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['BaseAccountService'] = IResolversParentTypes['BaseAccountService']> = {
|
8261
|
+
createDefaultAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceCreateDefaultAccountArgs, 'user'>>;
|
8262
|
+
createAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceCreateAccountArgs, 'account'>>;
|
8263
|
+
updateUserAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceUpdateUserAccountArgs, 'user' | 'userInfo'>>;
|
8264
|
+
findAccountById?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceFindAccountByIdArgs, 'id'>>;
|
8265
|
+
findAccountByUser?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceFindAccountByUserArgs, 'id'>>;
|
8266
|
+
findAccountByEmail?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceFindAccountByEmailArgs, 'email'>>;
|
8267
|
+
getUsers?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccount']>>>, ParentType, ContextType, RequireFields<IBaseAccountServiceGetUsersArgs, never>>;
|
8268
|
+
updateAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceUpdateAccountArgs, 'account'>>;
|
8269
|
+
deleteAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceDeleteAccountArgs, 'account'>>;
|
8270
|
+
accountOnBoarding?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceAccountOnBoardingArgs, 'input' | 'context'>>;
|
8271
|
+
verifyUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceVerifyUserEmailVerificationTokenArgs, 'userId' | 'token'>>;
|
8272
|
+
deleteUserAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceDeleteUserAccountArgs, 'id'>>;
|
8273
|
+
resendUserEmailVerificationEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceResendUserEmailVerificationEmailArgs, 'id'>>;
|
8274
|
+
dispatchUserVerificationEmail?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IBaseAccountServiceDispatchUserVerificationEmailArgs, 'email' | 'emailVerificationToken'>>;
|
8275
|
+
dispatchUserPasswordResetEmail?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IBaseAccountServiceDispatchUserPasswordResetEmailArgs, 'user' | 'token'>>;
|
8276
|
+
getUserTokenDetails?: Resolver<Maybe<IResolversTypes['UserToken']>, ParentType, ContextType, RequireFields<IBaseAccountServiceGetUserTokenDetailsArgs, 'userId' | 'type'>>;
|
8277
|
+
addUserToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceAddUserTokenArgs, 'userId' | 'token'>>;
|
8278
|
+
removeUserToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceRemoveUserTokenArgs, 'userId' | 'token'>>;
|
8279
|
+
getAllUserTokens?: Resolver<Maybe<Array<Maybe<IResolversTypes['UsersToken']>>>, ParentType, ContextType, RequireFields<IBaseAccountServiceGetAllUserTokensArgs, 'userIds' | 'tokenTypes'>>;
|
8280
|
+
initiatePasswordResetProcess?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceInitiatePasswordResetProcessArgs, 'email'>>;
|
8281
|
+
resetUserPassword?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceResetUserPasswordArgs, 'input'>>;
|
8282
|
+
validateUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceValidateUserEmailVerificationTokenArgs, 'code' | 'userAuth0Id' | 'email'>>;
|
8283
|
+
sendEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceSendEmailVerificationTokenArgs, 'email'>>;
|
8284
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8285
|
+
};
|
8286
|
+
export declare type IBaseOrganizationServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['BaseOrganizationService'] = IResolversParentTypes['BaseOrganizationService']> = {
|
8287
|
+
getOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceGetOrganizationArgs, never>>;
|
8288
|
+
createDefaultOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceCreateDefaultOrganizationArgs, never>>;
|
8289
|
+
getUserOrganizations?: Resolver<Maybe<Array<Maybe<IResolversTypes['Organization']>>>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceGetUserOrganizationsArgs, never>>;
|
8290
|
+
createOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceCreateOrganizationArgs, 'workspace'>>;
|
8291
|
+
updateOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceUpdateOrganizationArgs, 'workspace'>>;
|
8292
|
+
removeOrganization?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceRemoveOrganizationArgs, 'workspace'>>;
|
8293
|
+
getUserOrgRole?: Resolver<Maybe<IResolversTypes['OrgUserRole']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceGetUserOrgRoleArgs, 'orgName' | 'userId'>>;
|
8294
|
+
sendInvitation?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceSendInvitationArgs, 'request'>>;
|
8295
|
+
declineInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceDeclineInvitationArgs, 'id'>>;
|
8296
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8297
|
+
};
|
8298
|
+
export declare type IBaseTeamServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['BaseTeamService'] = IResolversParentTypes['BaseTeamService']> = {
|
8299
|
+
getTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceGetTeamArgs, never>>;
|
8300
|
+
getUserTeams?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccountTeam']>>>, ParentType, ContextType, RequireFields<IBaseTeamServiceGetUserTeamsArgs, never>>;
|
8301
|
+
createTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceCreateTeamArgs, never>>;
|
8302
|
+
updateTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceUpdateTeamArgs, never>>;
|
8303
|
+
addWorkspaces?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceAddWorkspacesArgs, never>>;
|
8304
|
+
removeTeam?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseTeamServiceRemoveTeamArgs, never>>;
|
8305
|
+
createDefaultTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceCreateDefaultTeamArgs, never>>;
|
8306
|
+
sendProjectNotification?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseTeamServiceSendProjectNotificationArgs, never>>;
|
8307
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8308
|
+
};
|
8041
8309
|
export declare type IConfigurationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Configuration'] = IResolversParentTypes['Configuration']> = {
|
8042
|
-
__resolveType: TypeResolveFn<'DefaultConfiguration' | '
|
8310
|
+
__resolveType: TypeResolveFn<'DefaultConfiguration' | 'PolicyConfiguration' | 'ApplicationConfiguration' | 'UserConfiguration' | 'MachineConfiguration' | 'OrganizationConfiguration' | 'OrganizationResourceConfiguration', ParentType, ContextType>;
|
8043
8311
|
};
|
8044
8312
|
export declare type IConfigurationDataResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ConfigurationData'] = IResolversParentTypes['ConfigurationData']> = {
|
8045
8313
|
defaults?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
|
8314
|
+
policy?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
|
8315
|
+
application?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
|
8046
8316
|
user?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
|
8047
8317
|
machine?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
|
8048
8318
|
organization?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
|
@@ -8083,6 +8353,8 @@ export declare type IConfigurationTargetResolvers = EnumResolverSignature<{
|
|
8083
8353
|
ORGANIZATION_RESOURCE?: any;
|
8084
8354
|
DEFAULT?: any;
|
8085
8355
|
MEMORY?: any;
|
8356
|
+
RESOURCE_OVERRIDABLE?: any;
|
8357
|
+
MACHINE_OVERRIDABLE?: any;
|
8086
8358
|
}, IResolversTypes['ConfigurationTarget']>;
|
8087
8359
|
export declare type IConfigurationUpdateEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ConfigurationUpdateEvent'] = IResolversParentTypes['ConfigurationUpdateEvent']> = {
|
8088
8360
|
resource?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
|
@@ -8309,16 +8581,8 @@ export declare type IICityResolvers<ContextType = MyContext, ParentType extends
|
|
8309
8581
|
createdAt?: Resolver<IResolversTypes['Date'], ParentType, ContextType>;
|
8310
8582
|
updatedAt?: Resolver<Maybe<IResolversTypes['Date']>, ParentType, ContextType>;
|
8311
8583
|
};
|
8312
|
-
export declare type IIConfigurationChangeEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IConfigurationChangeEvent'] = IResolversParentTypes['IConfigurationChangeEvent']> = {
|
8313
|
-
source?: Resolver<Maybe<IResolversTypes['ConfigurationTarget']>, ParentType, ContextType>;
|
8314
|
-
affectedKeys?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
8315
|
-
sourceConfig?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
8316
|
-
changedConfiguration?: Resolver<Maybe<IResolversTypes['Configuration']>, ParentType, ContextType>;
|
8317
|
-
changedConfigurationByResource?: Resolver<Maybe<IResolversTypes['OrganizationResourceConfiguration']>, ParentType, ContextType>;
|
8318
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8319
|
-
};
|
8320
8584
|
export declare type IIConfigurationModelResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IConfigurationModel'] = IResolversParentTypes['IConfigurationModel']> = {
|
8321
|
-
__resolveType: TypeResolveFn<'ApplicationPolicy' | 'ApplicationRolePermission' | 'DefaultConfiguration' | 'DefaultPolicy' | 'DefaultRole' | 'MachineConfiguration' | 'OrganizationConfiguration' | 'OrganizationPolicy' | 'OrganizationResourceConfiguration' | 'OrganizationRole' | 'ResourcePolicy' | 'ResourceRole' | 'UserConfiguration', ParentType, ContextType>;
|
8585
|
+
__resolveType: TypeResolveFn<'ApplicationConfiguration' | 'ApplicationPolicy' | 'ApplicationRolePermission' | 'DefaultConfiguration' | 'DefaultPolicy' | 'DefaultRole' | 'MachineConfiguration' | 'OrganizationConfiguration' | 'OrganizationPolicy' | 'OrganizationResourceConfiguration' | 'OrganizationRole' | 'PolicyConfiguration' | 'ResourcePolicy' | 'ResourceRole' | 'UserConfiguration', ParentType, ContextType>;
|
8322
8586
|
resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
8323
8587
|
target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
8324
8588
|
contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
@@ -8450,6 +8714,13 @@ export interface IJsonScalarConfig extends GraphQLScalarTypeConfig<IResolversTyp
|
|
8450
8714
|
export interface IJsonObjectScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['JSONObject'], any> {
|
8451
8715
|
name: 'JSONObject';
|
8452
8716
|
}
|
8717
|
+
export declare type ILinkedIdentityResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['LinkedIdentity'] = IResolversParentTypes['LinkedIdentity']> = {
|
8718
|
+
connection?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8719
|
+
isSocial?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8720
|
+
provider?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8721
|
+
user_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8722
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8723
|
+
};
|
8453
8724
|
export declare type ILoginErrorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['LoginError'] = IResolversParentTypes['LoginError']> = {
|
8454
8725
|
timeStamp?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
8455
8726
|
error?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
@@ -8534,12 +8805,11 @@ export declare type IMutationResolvers<ContextType = MyContext, ParentType exten
|
|
8534
8805
|
removedUserAuthIntegration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationRemovedUserAuthIntegrationArgs, never>>;
|
8535
8806
|
renewAuthToken?: Resolver<Maybe<IResolversTypes['AuthTokens']>, ParentType, ContextType, RequireFields<IMutationRenewAuthTokenArgs, never>>;
|
8536
8807
|
resendOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationResendOrganizationInvitationArgs, 'id'>>;
|
8537
|
-
resendUserEmailVerificationEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8538
8808
|
resetUserPassword?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationResetUserPasswordArgs, 'input'>>;
|
8809
|
+
sendEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSendEmailVerificationTokenArgs, 'email'>>;
|
8539
8810
|
sendOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSendOrganizationInvitationArgs, never>>;
|
8540
8811
|
sendUserPasswordResetEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSendUserPasswordResetEmailArgs, 'email'>>;
|
8541
8812
|
setSettingsValueByResource?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSetSettingsValueByResourceArgs, never>>;
|
8542
|
-
toggleSidebar?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationToggleSidebarArgs, 'state'>>;
|
8543
8813
|
updateAuth0UserPassword?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateAuth0UserPasswordArgs, never>>;
|
8544
8814
|
updateConfiguration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationArgs, 'input' | 'key' | 'value'>>;
|
8545
8815
|
updateConfigurationPolicyValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationPolicyValueArgs, 'key' | 'value'>>;
|
@@ -8555,10 +8825,11 @@ export declare type IMutationResolvers<ContextType = MyContext, ParentType exten
|
|
8555
8825
|
updateRoleValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateRoleValueArgs, 'key' | 'value'>>;
|
8556
8826
|
updateSelectedOrgResource?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateSelectedOrgResourceArgs, 'resource'>>;
|
8557
8827
|
updateUserAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateUserAccountArgs, never>>;
|
8558
|
-
|
8828
|
+
validatePasswordResetOtp?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationValidatePasswordResetOtpArgs, 'email' | 'code'>>;
|
8829
|
+
validateUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationValidateUserEmailVerificationTokenArgs, 'code'>>;
|
8559
8830
|
};
|
8560
8831
|
export declare type INodeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Node'] = IResolversParentTypes['Node']> = {
|
8561
|
-
__resolveType: TypeResolveFn<'AccessToken' | 'ApiExternalAccount' | 'ApiManagement' | '
|
8832
|
+
__resolveType: TypeResolveFn<'AccessToken' | 'ApiExternalAccount' | 'ApiManagement' | 'OrgUserAccount' | 'UserAccount', ParentType, ContextType>;
|
8562
8833
|
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
8563
8834
|
};
|
8564
8835
|
export interface IObservableScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Observable'], any> {
|
@@ -8573,6 +8844,7 @@ export declare type IOrgMemberResolvers<ContextType = MyContext, ParentType exte
|
|
8573
8844
|
_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8574
8845
|
userId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8575
8846
|
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
8847
|
+
user?: Resolver<IResolversTypes['OrgUserAccount'], ParentType, ContextType>;
|
8576
8848
|
isSelf?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8577
8849
|
inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8578
8850
|
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -8591,17 +8863,19 @@ export declare type IOrgUserResolvers<ContextType = MyContext, ParentType extend
|
|
8591
8863
|
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
8592
8864
|
inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8593
8865
|
orgName?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
8594
|
-
user?: Resolver<IResolversTypes['
|
8866
|
+
user?: Resolver<IResolversTypes['OrgUserAccount'], ParentType, ContextType>;
|
8595
8867
|
isSelf?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
8596
8868
|
crossCheckEmail?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8597
8869
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8598
8870
|
};
|
8599
|
-
export declare type
|
8871
|
+
export declare type IOrgUserAccountResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrgUserAccount'] = IResolversParentTypes['OrgUserAccount']> = {
|
8600
8872
|
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
8601
8873
|
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8602
8874
|
alias?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
8603
8875
|
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8604
8876
|
emailVerified?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8877
|
+
familyName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8878
|
+
givenName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8605
8879
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8606
8880
|
};
|
8607
8881
|
export declare type IOrganizationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Organization'] = IResolversParentTypes['Organization']> = {
|
@@ -8727,18 +9001,6 @@ export declare type IOrganizationRoleResolvers<ContextType = MyContext, ParentTy
|
|
8727
9001
|
overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
|
8728
9002
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8729
9003
|
};
|
8730
|
-
export declare type IOrganizationServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrganizationService'] = IResolversParentTypes['OrganizationService']> = {
|
8731
|
-
getOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IOrganizationServiceGetOrganizationArgs, never>>;
|
8732
|
-
createDefaultOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IOrganizationServiceCreateDefaultOrganizationArgs, never>>;
|
8733
|
-
getUserOrganizations?: Resolver<Maybe<Array<Maybe<IResolversTypes['Organization']>>>, ParentType, ContextType, RequireFields<IOrganizationServiceGetUserOrganizationsArgs, never>>;
|
8734
|
-
createOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IOrganizationServiceCreateOrganizationArgs, 'workspace'>>;
|
8735
|
-
updateOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IOrganizationServiceUpdateOrganizationArgs, 'workspace'>>;
|
8736
|
-
removeOrganization?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IOrganizationServiceRemoveOrganizationArgs, 'workspace'>>;
|
8737
|
-
getUserOrgRole?: Resolver<Maybe<IResolversTypes['OrgUserRole']>, ParentType, ContextType, RequireFields<IOrganizationServiceGetUserOrgRoleArgs, 'orgName' | 'userId'>>;
|
8738
|
-
sendInvitation?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IOrganizationServiceSendInvitationArgs, 'request'>>;
|
8739
|
-
declineInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IOrganizationServiceDeclineInvitationArgs, 'id'>>;
|
8740
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8741
|
-
};
|
8742
9004
|
export declare type IOrganizationSettingsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrganizationSettings'] = IResolversParentTypes['OrganizationSettings']> = {
|
8743
9005
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
8744
9006
|
latestSettings?: Resolver<Maybe<IResolversTypes['Settings']>, ParentType, ContextType>;
|
@@ -8756,6 +9018,7 @@ export declare type IOrganizationsDeletedEventResolvers<ContextType = MyContext,
|
|
8756
9018
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8757
9019
|
};
|
8758
9020
|
export declare type IOverridesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Overrides'] = IResolversParentTypes['Overrides']> = {
|
9021
|
+
keys?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
8759
9022
|
contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
8760
9023
|
identifiers?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
8761
9024
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
@@ -8775,6 +9038,15 @@ export declare type IPhoneNumberResolvers<ContextType = MyContext, ParentType ex
|
|
8775
9038
|
phoneNumber?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8776
9039
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8777
9040
|
};
|
9041
|
+
export declare type IPolicyConfigurationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PolicyConfiguration'] = IResolversParentTypes['PolicyConfiguration']> = {
|
9042
|
+
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
9043
|
+
resource?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
|
9044
|
+
target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
9045
|
+
contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
9046
|
+
keys?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
9047
|
+
overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
|
9048
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9049
|
+
};
|
8778
9050
|
export declare type IPolicySubjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PolicySubject'] = IResolversParentTypes['PolicySubject']> = {
|
8779
9051
|
policyURL?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
|
8780
9052
|
createdAt?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -8875,10 +9147,12 @@ export declare type IQueryResolvers<ContextType = MyContext, ParentType extends
|
|
8875
9147
|
externalAccounts?: Resolver<IResolversTypes['ExternalAccountConnection'], ParentType, ContextType, RequireFields<IQueryExternalAccountsArgs, never>>;
|
8876
9148
|
fetchAuth0User?: Resolver<Maybe<IResolversTypes['UserProfile']>, ParentType, ContextType, RequireFields<IQueryFetchAuth0UserArgs, 'auth0UserId'>>;
|
8877
9149
|
fetchUserAuthorizedDevices?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserDevice']>>>, ParentType, ContextType, RequireFields<IQueryFetchUserAuthorizedDevicesArgs, 'auth0UserId'>>;
|
9150
|
+
fetchUserSessions?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserSession']>>>, ParentType, ContextType>;
|
8878
9151
|
filterIntegrationConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType, RequireFields<IQueryFilterIntegrationConfigurationArgs, never>>;
|
8879
9152
|
getAccounts?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccount']>>>, ParentType, ContextType, RequireFields<IQueryGetAccountsArgs, never>>;
|
8880
9153
|
getAllCountries?: Resolver<Maybe<Array<Maybe<IResolversTypes['Country']>>>, ParentType, ContextType, RequireFields<IQueryGetAllCountriesArgs, never>>;
|
8881
9154
|
getAllIntegrationConfigurations?: Resolver<Maybe<IResolversTypes['IntegrationConfigurationsOutput']>, ParentType, ContextType, RequireFields<IQueryGetAllIntegrationConfigurationsArgs, never>>;
|
9155
|
+
getAllUsersTokens?: Resolver<Maybe<Array<Maybe<IResolversTypes['UsersToken']>>>, ParentType, ContextType, RequireFields<IQueryGetAllUsersTokensArgs, 'types'>>;
|
8882
9156
|
getConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['Configuration']>>>, ParentType, ContextType, RequireFields<IQueryGetConfigurationArgs, never>>;
|
8883
9157
|
getConfigurationData?: Resolver<Maybe<IResolversTypes['ConfigurationData']>, ParentType, ContextType>;
|
8884
9158
|
getConfigurationPolicies?: Resolver<Maybe<Array<Maybe<IResolversTypes['ConfigurationPolicy']>>>, ParentType, ContextType, RequireFields<IQueryGetConfigurationPoliciesArgs, never>>;
|
@@ -8924,7 +9198,6 @@ export declare type IQueryResolvers<ContextType = MyContext, ParentType extends
|
|
8924
9198
|
resolveConfiguration?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IQueryResolveConfigurationArgs, 'input'>>;
|
8925
9199
|
resolveSettings?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionSettings']>>>, ParentType, ContextType, RequireFields<IQueryResolveSettingsArgs, 'uri'>>;
|
8926
9200
|
selectedOrgResource?: Resolver<Maybe<IResolversTypes['Context']>, ParentType, ContextType>;
|
8927
|
-
sidebarState?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8928
9201
|
team?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IQueryTeamArgs, 'teamId'>>;
|
8929
9202
|
teams?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccountTeam']>>>, ParentType, ContextType>;
|
8930
9203
|
viewerPolicies?: Resolver<Maybe<IResolversTypes['PolicySubject']>, ParentType, ContextType, RequireFields<IQueryViewerPoliciesArgs, 'input'>>;
|
@@ -9075,17 +9348,6 @@ export declare type ITeamMemberResolvers<ContextType = MyContext, ParentType ext
|
|
9075
9348
|
status?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9076
9349
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9077
9350
|
};
|
9078
|
-
export declare type ITeamServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['TeamService'] = IResolversParentTypes['TeamService']> = {
|
9079
|
-
getTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<ITeamServiceGetTeamArgs, never>>;
|
9080
|
-
getUserTeams?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccountTeam']>>>, ParentType, ContextType, RequireFields<ITeamServiceGetUserTeamsArgs, never>>;
|
9081
|
-
createTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<ITeamServiceCreateTeamArgs, never>>;
|
9082
|
-
updateTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<ITeamServiceUpdateTeamArgs, never>>;
|
9083
|
-
addWorkspaces?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<ITeamServiceAddWorkspacesArgs, never>>;
|
9084
|
-
removeTeam?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<ITeamServiceRemoveTeamArgs, never>>;
|
9085
|
-
createDefaultTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<ITeamServiceCreateDefaultTeamArgs, never>>;
|
9086
|
-
sendProjectNotification?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<ITeamServiceSendProjectNotificationArgs, never>>;
|
9087
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9088
|
-
};
|
9089
9351
|
export interface ITimeScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Time'], any> {
|
9090
9352
|
name: 'Time';
|
9091
9353
|
}
|
@@ -9148,7 +9410,7 @@ export declare type IUserAuth0SessionDeviceInfoResolvers<ContextType = MyContext
|
|
9148
9410
|
os?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9149
9411
|
deviceName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9150
9412
|
browserName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9151
|
-
|
9413
|
+
platform?: Resolver<IResolversTypes['DeviceInfoPlatform'], ParentType, ContextType>;
|
9152
9414
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9153
9415
|
};
|
9154
9416
|
export declare type IUserAuth0SessionInfoResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserAuth0SessionInfo'] = IResolversParentTypes['UserAuth0SessionInfo']> = {
|
@@ -9207,12 +9469,6 @@ export declare type IUserMetadataResolvers<ContextType = MyContext, ParentType e
|
|
9207
9469
|
zip_code?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
9208
9470
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9209
9471
|
};
|
9210
|
-
export declare type IUserOrgResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserOrg'] = IResolversParentTypes['UserOrg']> = {
|
9211
|
-
userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
9212
|
-
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
9213
|
-
inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9214
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9215
|
-
};
|
9216
9472
|
export declare type IUserPreviousValuesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserPreviousValues'] = IResolversParentTypes['UserPreviousValues']> = {
|
9217
9473
|
auth0UserId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9218
9474
|
createdAt?: Resolver<IResolversTypes['DateTime'], ParentType, ContextType>;
|
@@ -9253,6 +9509,13 @@ export declare type IUserProfileResolvers<ContextType = MyContext, ParentType ex
|
|
9253
9509
|
nonce?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9254
9510
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9255
9511
|
};
|
9512
|
+
export declare type IUserSessionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserSession'] = IResolversParentTypes['UserSession']> = {
|
9513
|
+
sessionId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9514
|
+
deviceInfo?: Resolver<Maybe<IResolversTypes['UserAuth0SessionDeviceInfo']>, ParentType, ContextType>;
|
9515
|
+
lastLoginAt?: Resolver<Maybe<IResolversTypes['Date']>, ParentType, ContextType>;
|
9516
|
+
lastLoginIp?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9517
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9518
|
+
};
|
9256
9519
|
export declare type IUserSessionIdResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserSessionId'] = IResolversParentTypes['UserSessionId']> = {
|
9257
9520
|
sessionId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9258
9521
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
@@ -9273,7 +9536,7 @@ export declare type IUserStateResolvers<ContextType = MyContext, ParentType exte
|
|
9273
9536
|
isNewlyLoggedIn?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9274
9537
|
isProfileFetching?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9275
9538
|
isSocialLogin?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9276
|
-
linkedIdentities?: Resolver<Maybe<Array<Maybe<IResolversTypes['
|
9539
|
+
linkedIdentities?: Resolver<Maybe<Array<Maybe<IResolversTypes['LinkedIdentity']>>>, ParentType, ContextType>;
|
9277
9540
|
loggingInProgress?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9278
9541
|
passwordResetProgress?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9279
9542
|
passwordResetSuccess?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
@@ -9290,6 +9553,11 @@ export declare type IUserTokenResolvers<ContextType = MyContext, ParentType exte
|
|
9290
9553
|
valid?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9291
9554
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9292
9555
|
};
|
9556
|
+
export declare type IUsersTokenResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UsersToken'] = IResolversParentTypes['UsersToken']> = {
|
9557
|
+
userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
9558
|
+
tokens?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserToken']>>>, ParentType, ContextType>;
|
9559
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9560
|
+
};
|
9293
9561
|
export declare type IViewerSettingsSubjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ViewerSettingsSubject'] = IResolversParentTypes['ViewerSettingsSubject']> = {
|
9294
9562
|
settingsURL?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
|
9295
9563
|
settings?: Resolver<Maybe<IResolversTypes['Preferences']>, ParentType, ContextType>;
|
@@ -9299,12 +9567,12 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9299
9567
|
AccessRole?: IAccessRoleResolvers<ContextType>;
|
9300
9568
|
AccessToken?: IAccessTokenResolvers<ContextType>;
|
9301
9569
|
AccessTokenConnection?: IAccessTokenConnectionResolvers<ContextType>;
|
9302
|
-
AccountService?: IAccountServiceResolvers<ContextType>;
|
9303
9570
|
AccountTeam?: IAccountTeamResolvers<ContextType>;
|
9304
9571
|
AdminIdeSettings?: IAdminIdeSettingsResolvers<ContextType>;
|
9305
9572
|
AnyObject?: GraphQLScalarType;
|
9306
9573
|
ApiExternalAccount?: IApiExternalAccountResolvers<ContextType>;
|
9307
9574
|
ApiManagement?: IApiManagementResolvers<ContextType>;
|
9575
|
+
ApplicationConfiguration?: IApplicationConfigurationResolvers<ContextType>;
|
9308
9576
|
ApplicationPolicy?: IApplicationPolicyResolvers<ContextType>;
|
9309
9577
|
ApplicationRolePermission?: IApplicationRolePermissionResolvers<ContextType>;
|
9310
9578
|
ApplicationSettings?: IApplicationSettingsResolvers<ContextType>;
|
@@ -9312,6 +9580,9 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9312
9580
|
Auth0IdentityProfileData?: IAuth0IdentityProfileDataResolvers<ContextType>;
|
9313
9581
|
AuthTokens?: IAuthTokensResolvers<ContextType>;
|
9314
9582
|
AuthUser?: IAuthUserResolvers<ContextType>;
|
9583
|
+
BaseAccountService?: IBaseAccountServiceResolvers<ContextType>;
|
9584
|
+
BaseOrganizationService?: IBaseOrganizationServiceResolvers<ContextType>;
|
9585
|
+
BaseTeamService?: IBaseTeamServiceResolvers<ContextType>;
|
9315
9586
|
Configuration?: IConfigurationResolvers<ContextType>;
|
9316
9587
|
ConfigurationData?: IConfigurationDataResolvers<ContextType>;
|
9317
9588
|
ConfigurationExtensionInfo?: IConfigurationExtensionInfoResolvers<ContextType>;
|
@@ -9345,7 +9616,6 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9345
9616
|
IAuth0User?: IIAuth0UserResolvers<ContextType>;
|
9346
9617
|
IAuth0UserProfile?: IIAuth0UserProfileResolvers<ContextType>;
|
9347
9618
|
ICity?: IICityResolvers<ContextType>;
|
9348
|
-
IConfigurationChangeEvent?: IIConfigurationChangeEventResolvers<ContextType>;
|
9349
9619
|
IConfigurationModel?: IIConfigurationModelResolvers<ContextType>;
|
9350
9620
|
IConfigurationService?: IIConfigurationServiceResolvers<ContextType>;
|
9351
9621
|
ICountry?: IICountryResolvers<ContextType>;
|
@@ -9366,6 +9636,7 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9366
9636
|
InviteMember?: IInviteMemberResolvers<ContextType>;
|
9367
9637
|
JSON?: GraphQLScalarType;
|
9368
9638
|
JSONObject?: GraphQLScalarType;
|
9639
|
+
LinkedIdentity?: ILinkedIdentityResolvers<ContextType>;
|
9369
9640
|
LoginError?: ILoginErrorResolvers<ContextType>;
|
9370
9641
|
MachineConfiguration?: IMachineConfigurationResolvers<ContextType>;
|
9371
9642
|
MachineSettings?: IMachineSettingsResolvers<ContextType>;
|
@@ -9378,7 +9649,7 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9378
9649
|
OrgMember?: IOrgMemberResolvers<ContextType>;
|
9379
9650
|
OrgMembersOutput?: IOrgMembersOutputResolvers<ContextType>;
|
9380
9651
|
OrgUser?: IOrgUserResolvers<ContextType>;
|
9381
|
-
|
9652
|
+
OrgUserAccount?: IOrgUserAccountResolvers<ContextType>;
|
9382
9653
|
Organization?: IOrganizationResolvers<ContextType>;
|
9383
9654
|
OrganizationConfiguration?: IOrganizationConfigurationResolvers<ContextType>;
|
9384
9655
|
OrganizationCreatedEvent?: IOrganizationCreatedEventResolvers<ContextType>;
|
@@ -9393,7 +9664,6 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9393
9664
|
OrganizationResourceData?: IOrganizationResourceDataResolvers<ContextType>;
|
9394
9665
|
OrganizationResourceSettings?: IOrganizationResourceSettingsResolvers<ContextType>;
|
9395
9666
|
OrganizationRole?: IOrganizationRoleResolvers<ContextType>;
|
9396
|
-
OrganizationService?: IOrganizationServiceResolvers<ContextType>;
|
9397
9667
|
OrganizationSettings?: IOrganizationSettingsResolvers<ContextType>;
|
9398
9668
|
OrganizationsDeactivatedEvent?: IOrganizationsDeactivatedEventResolvers<ContextType>;
|
9399
9669
|
OrganizationsDeletedEvent?: IOrganizationsDeletedEventResolvers<ContextType>;
|
@@ -9401,6 +9671,7 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9401
9671
|
PageInfo?: IPageInfoResolvers<ContextType>;
|
9402
9672
|
PermissionSubject?: IPermissionSubjectResolvers<ContextType>;
|
9403
9673
|
PhoneNumber?: IPhoneNumberResolvers<ContextType>;
|
9674
|
+
PolicyConfiguration?: IPolicyConfigurationResolvers<ContextType>;
|
9404
9675
|
PolicySubject?: IPolicySubjectResolvers<ContextType>;
|
9405
9676
|
PopupIntegrationAuthorization?: IPopupIntegrationAuthorizationResolvers<ContextType>;
|
9406
9677
|
Position?: IPositionResolvers<ContextType>;
|
@@ -9440,7 +9711,6 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9440
9711
|
Subscription?: ISubscriptionResolvers<ContextType>;
|
9441
9712
|
TeamInvitationEmailVariables?: ITeamInvitationEmailVariablesResolvers<ContextType>;
|
9442
9713
|
TeamMember?: ITeamMemberResolvers<ContextType>;
|
9443
|
-
TeamService?: ITeamServiceResolvers<ContextType>;
|
9444
9714
|
Time?: GraphQLScalarType;
|
9445
9715
|
URI?: GraphQLScalarType;
|
9446
9716
|
URIInput?: GraphQLScalarType;
|
@@ -9456,13 +9726,14 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9456
9726
|
UserContext?: IUserContextResolvers<ContextType>;
|
9457
9727
|
UserDevice?: IUserDeviceResolvers<ContextType>;
|
9458
9728
|
UserMetadata?: IUserMetadataResolvers<ContextType>;
|
9459
|
-
UserOrg?: IUserOrgResolvers<ContextType>;
|
9460
9729
|
UserPreviousValues?: IUserPreviousValuesResolvers<ContextType>;
|
9461
9730
|
UserProfile?: IUserProfileResolvers<ContextType>;
|
9731
|
+
UserSession?: IUserSessionResolvers<ContextType>;
|
9462
9732
|
UserSessionId?: IUserSessionIdResolvers<ContextType>;
|
9463
9733
|
UserSettings?: IUserSettingsResolvers<ContextType>;
|
9464
9734
|
UserState?: IUserStateResolvers<ContextType>;
|
9465
9735
|
UserToken?: IUserTokenResolvers<ContextType>;
|
9736
|
+
UsersToken?: IUsersTokenResolvers<ContextType>;
|
9466
9737
|
ViewerSettingsSubject?: IViewerSettingsSubjectResolvers<ContextType>;
|
9467
9738
|
};
|
9468
9739
|
export declare type IDirectiveResolvers<ContextType = MyContext> = {
|