@adminide-stack/core 3.1.2-alpha.9 → 3.1.2-alpha.94
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 +639 -391
- 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: IUserAccount;
|
1457
1695
|
isSelf?: Maybe<Scalars['Boolean']>;
|
1458
1696
|
inactive?: Maybe<Scalars['Boolean']>;
|
1459
1697
|
name?: Maybe<Scalars['String']>;
|
@@ -1470,24 +1708,17 @@ export declare type IOrgType = {
|
|
1470
1708
|
name?: Maybe<Scalars['String']>;
|
1471
1709
|
settings?: Maybe<Scalars['AnyObject']>;
|
1472
1710
|
};
|
1711
|
+
/** Do not use it, it is deprected, use `UserAccount` instead */
|
1473
1712
|
export declare type IOrgUser = IIOrgUser & {
|
1474
1713
|
__typename?: 'OrgUser';
|
1475
1714
|
userId: Scalars['String'];
|
1476
1715
|
role?: Maybe<IApplicationRoles>;
|
1477
1716
|
inactive?: Maybe<Scalars['Boolean']>;
|
1478
1717
|
orgName: Scalars['String'];
|
1479
|
-
user:
|
1718
|
+
user: IUserAccount;
|
1480
1719
|
isSelf: Scalars['Boolean'];
|
1481
1720
|
crossCheckEmail?: Maybe<Scalars['String']>;
|
1482
1721
|
};
|
1483
|
-
export declare type IOrgUserAccunt = INode & {
|
1484
|
-
__typename?: 'OrgUserAccunt';
|
1485
|
-
id: Scalars['ID'];
|
1486
|
-
email?: Maybe<Scalars['String']>;
|
1487
|
-
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1488
|
-
username?: Maybe<Scalars['String']>;
|
1489
|
-
emailVerified?: Maybe<Scalars['Boolean']>;
|
1490
|
-
};
|
1491
1722
|
export declare type IOrgUserInput = {
|
1492
1723
|
userId?: Maybe<Scalars['String']>;
|
1493
1724
|
role?: Maybe<IApplicationRoles>;
|
@@ -1756,46 +1987,6 @@ export declare type IOrganizationRole = IIConfigurationModel & {
|
|
1756
1987
|
keys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1757
1988
|
overrides?: Maybe<Array<Maybe<IOverrides>>>;
|
1758
1989
|
};
|
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
1990
|
export declare enum IOrganizationServiceAction {
|
1800
1991
|
GetOrganization = "getOrganization",
|
1801
1992
|
CreateDefaultOrganization = "createDefaultOrganization",
|
@@ -1847,6 +2038,7 @@ export declare type IOrganizationsDeletedEvent = {
|
|
1847
2038
|
};
|
1848
2039
|
export declare type IOverrides = {
|
1849
2040
|
__typename?: 'Overrides';
|
2041
|
+
keys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1850
2042
|
contents?: Maybe<Scalars['AnyObject']>;
|
1851
2043
|
identifiers?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1852
2044
|
};
|
@@ -1898,6 +2090,17 @@ export declare type IPhoneNumberInput = {
|
|
1898
2090
|
countryCode?: Maybe<Scalars['String']>;
|
1899
2091
|
phoneNumber?: Maybe<Scalars['String']>;
|
1900
2092
|
};
|
2093
|
+
export declare type IPolicyConfiguration = IIConfigurationModel & {
|
2094
|
+
__typename?: 'PolicyConfiguration';
|
2095
|
+
/** The ID. */
|
2096
|
+
id?: Maybe<Scalars['ID']>;
|
2097
|
+
/** The URL to the user's settings. */
|
2098
|
+
resource: Scalars['URI'];
|
2099
|
+
target?: Maybe<Scalars['Int']>;
|
2100
|
+
contents?: Maybe<Scalars['AnyObject']>;
|
2101
|
+
keys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2102
|
+
overrides?: Maybe<Array<Maybe<IOverrides>>>;
|
2103
|
+
};
|
1901
2104
|
export declare type IPolicySubject = {
|
1902
2105
|
__typename?: 'PolicySubject';
|
1903
2106
|
/** The URL to the policies. */
|
@@ -2058,11 +2261,18 @@ export declare type IQuery = {
|
|
2058
2261
|
externalAccounts: IExternalAccountConnection;
|
2059
2262
|
/** Fetches a User from Auth0 Service */
|
2060
2263
|
fetchAuth0User?: Maybe<IUserProfile>;
|
2264
|
+
/**
|
2265
|
+
* fetchUserAuthorizedDevices
|
2266
|
+
* @deprecated not used
|
2267
|
+
* @deprecated Field no longer supported
|
2268
|
+
*/
|
2061
2269
|
fetchUserAuthorizedDevices?: Maybe<Array<Maybe<IUserDevice>>>;
|
2270
|
+
fetchUserSessions?: Maybe<Array<Maybe<IUserSession>>>;
|
2062
2271
|
filterIntegrationConfiguration?: Maybe<Array<Maybe<IIntegrationConfiguration>>>;
|
2063
2272
|
getAccounts?: Maybe<Array<Maybe<IUserAccount>>>;
|
2064
2273
|
getAllCountries?: Maybe<Array<Maybe<ICountry>>>;
|
2065
2274
|
getAllIntegrationConfigurations?: Maybe<IIntegrationConfigurationsOutput>;
|
2275
|
+
getAllUsersTokens?: Maybe<Array<Maybe<IUsersToken>>>;
|
2066
2276
|
getConfiguration?: Maybe<Array<Maybe<IConfiguration>>>;
|
2067
2277
|
getConfigurationData?: Maybe<IConfigurationData>;
|
2068
2278
|
getConfigurationPolicies?: Maybe<Array<Maybe<IConfigurationPolicy>>>;
|
@@ -2115,7 +2325,6 @@ export declare type IQuery = {
|
|
2115
2325
|
resolveConfiguration?: Maybe<Scalars['AnyObject']>;
|
2116
2326
|
resolveSettings?: Maybe<Array<Maybe<IContributionSettings>>>;
|
2117
2327
|
selectedOrgResource?: Maybe<IContext>;
|
2118
|
-
sidebarState?: Maybe<Scalars['Boolean']>;
|
2119
2328
|
team?: Maybe<IAccountTeam>;
|
2120
2329
|
teams?: Maybe<Array<Maybe<IAccountTeam>>>;
|
2121
2330
|
/** The policies for the viewer. */
|
@@ -2172,6 +2381,10 @@ export declare type IQueryGetAllIntegrationConfigurationsArgs = {
|
|
2172
2381
|
skip?: Maybe<Scalars['Int']>;
|
2173
2382
|
sort?: Maybe<ISort>;
|
2174
2383
|
};
|
2384
|
+
export declare type IQueryGetAllUsersTokensArgs = {
|
2385
|
+
userIds?: Maybe<Array<Scalars['String']>>;
|
2386
|
+
types: Array<ITokenTypesEnum>;
|
2387
|
+
};
|
2175
2388
|
export declare type IQueryGetConfigurationArgs = {
|
2176
2389
|
input?: Maybe<Array<Maybe<IConfigurationInput>>>;
|
2177
2390
|
};
|
@@ -2588,44 +2801,6 @@ export declare type ITeamRemoveRequest = {
|
|
2588
2801
|
id: Scalars['String'];
|
2589
2802
|
requestedUserId?: Maybe<Scalars['String']>;
|
2590
2803
|
};
|
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
2804
|
export declare enum ITeamServiceAction {
|
2630
2805
|
GetTeam = "getTeam",
|
2631
2806
|
GetUserTeams = "getUserTeams",
|
@@ -2789,7 +2964,7 @@ export declare type IUserAuth0SessionDeviceInfo = {
|
|
2789
2964
|
os?: Maybe<Scalars['String']>;
|
2790
2965
|
deviceName?: Maybe<Scalars['String']>;
|
2791
2966
|
browserName?: Maybe<Scalars['String']>;
|
2792
|
-
|
2967
|
+
platform: IDeviceInfoPlatform;
|
2793
2968
|
};
|
2794
2969
|
export declare type IUserAuth0SessionInfo = {
|
2795
2970
|
__typename?: 'UserAuth0SessionInfo';
|
@@ -2880,21 +3055,10 @@ export declare enum IUserOrderBy {
|
|
2880
3055
|
UpdatedAtAsc = "updatedAt_ASC",
|
2881
3056
|
UpdatedAtDesc = "updatedAt_DESC"
|
2882
3057
|
}
|
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
3058
|
export declare type IUserPasswordResetInput = {
|
2896
|
-
|
2897
|
-
|
3059
|
+
newPassword: Scalars['String'];
|
3060
|
+
currentPassword: Scalars['String'];
|
3061
|
+
email: Scalars['String'];
|
2898
3062
|
};
|
2899
3063
|
export declare type IUserPreviousValues = {
|
2900
3064
|
__typename?: 'UserPreviousValues';
|
@@ -2936,6 +3100,16 @@ export declare type IUserProfile = IIAuth0User & IIAuth0UserProfile & IIAuth0Tok
|
|
2936
3100
|
at_hash?: Maybe<Scalars['String']>;
|
2937
3101
|
nonce?: Maybe<Scalars['String']>;
|
2938
3102
|
};
|
3103
|
+
export declare enum IUserServiceAction {
|
3104
|
+
OnEmailVerified = "onEmailVerified"
|
3105
|
+
}
|
3106
|
+
export declare type IUserSession = {
|
3107
|
+
__typename?: 'UserSession';
|
3108
|
+
sessionId?: Maybe<Scalars['String']>;
|
3109
|
+
deviceInfo?: Maybe<IUserAuth0SessionDeviceInfo>;
|
3110
|
+
lastLoginAt?: Maybe<Scalars['Date']>;
|
3111
|
+
lastLoginIp?: Maybe<Scalars['String']>;
|
3112
|
+
};
|
2939
3113
|
export declare type IUserSessionId = {
|
2940
3114
|
__typename?: 'UserSessionId';
|
2941
3115
|
sessionId?: Maybe<Scalars['String']>;
|
@@ -2983,7 +3157,7 @@ export declare type IUserState = {
|
|
2983
3157
|
isProfileFetching?: Maybe<Scalars['Boolean']>;
|
2984
3158
|
/** True incase of social logged in user */
|
2985
3159
|
isSocialLogin?: Maybe<Scalars['Boolean']>;
|
2986
|
-
linkedIdentities?: Maybe<Array<Maybe<
|
3160
|
+
linkedIdentities?: Maybe<Array<Maybe<ILinkedIdentity>>>;
|
2987
3161
|
loggingInProgress?: Maybe<Scalars['Boolean']>;
|
2988
3162
|
/** True while Password verify link sending */
|
2989
3163
|
passwordResetProgress?: Maybe<Scalars['Boolean']>;
|
@@ -3009,6 +3183,11 @@ export declare type IUserTokenInput = {
|
|
3009
3183
|
token: Scalars['String'];
|
3010
3184
|
valid?: Maybe<Scalars['Boolean']>;
|
3011
3185
|
};
|
3186
|
+
export declare type IUsersToken = {
|
3187
|
+
__typename?: 'UsersToken';
|
3188
|
+
userId: Scalars['String'];
|
3189
|
+
tokens?: Maybe<Array<Maybe<IUserToken>>>;
|
3190
|
+
};
|
3012
3191
|
export declare type IViewerPoliciesInput = {
|
3013
3192
|
target: Scalars['Int'];
|
3014
3193
|
/**
|
@@ -3168,12 +3347,6 @@ export declare type IResendOrganizationInvitationMutationVariables = Exact<{
|
|
3168
3347
|
export declare type IResendOrganizationInvitationMutation = ({
|
3169
3348
|
__typename?: 'Mutation';
|
3170
3349
|
} & 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
3350
|
export declare type IResetUserPasswordMutationVariables = Exact<{
|
3178
3351
|
input: IUserPasswordResetInput;
|
3179
3352
|
}>;
|
@@ -3186,6 +3359,12 @@ export declare type ISendUserPasswordResetEmailMutationVariables = Exact<{
|
|
3186
3359
|
export declare type ISendUserPasswordResetEmailMutation = ({
|
3187
3360
|
__typename?: 'Mutation';
|
3188
3361
|
} & Pick<IMutation, 'sendUserPasswordResetEmail'>);
|
3362
|
+
export declare type ISendEmailVerificationMutationVariables = Exact<{
|
3363
|
+
email: Scalars['String'];
|
3364
|
+
}>;
|
3365
|
+
export declare type ISendEmailVerificationMutation = ({
|
3366
|
+
__typename?: 'Mutation';
|
3367
|
+
} & Pick<IMutation, 'sendEmailVerificationToken'>);
|
3189
3368
|
export declare type ISendOrganizationInvitationMutationVariables = Exact<{
|
3190
3369
|
request: IOrganizationInvitationRequest;
|
3191
3370
|
}>;
|
@@ -3227,12 +3406,19 @@ export declare type IUpdateUserAccountMutationVariables = Exact<{
|
|
3227
3406
|
export declare type IUpdateUserAccountMutation = ({
|
3228
3407
|
__typename?: 'Mutation';
|
3229
3408
|
} & Pick<IMutation, 'updateUserAccount'>);
|
3230
|
-
export declare type
|
3231
|
-
|
3409
|
+
export declare type IValidatePasswordResetOtpMutationVariables = Exact<{
|
3410
|
+
email: Scalars['String'];
|
3411
|
+
code: Scalars['String'];
|
3412
|
+
}>;
|
3413
|
+
export declare type IValidatePasswordResetOtpMutation = ({
|
3414
|
+
__typename?: 'Mutation';
|
3415
|
+
} & Pick<IMutation, 'validatePasswordResetOtp'>);
|
3416
|
+
export declare type IValidateUserEmailVerificationMutationVariables = Exact<{
|
3417
|
+
code: Scalars['String'];
|
3232
3418
|
}>;
|
3233
|
-
export declare type
|
3419
|
+
export declare type IValidateUserEmailVerificationMutation = ({
|
3234
3420
|
__typename?: 'Mutation';
|
3235
|
-
} & Pick<IMutation, '
|
3421
|
+
} & Pick<IMutation, 'validateUserEmailVerificationToken'>);
|
3236
3422
|
export declare type IGetUserOrganizationsListQueryVariables = Exact<{
|
3237
3423
|
[key: string]: never;
|
3238
3424
|
}>;
|
@@ -3349,8 +3535,8 @@ export declare type IGetOrganizationMembersWithNameQuery = ({
|
|
3349
3535
|
__typename?: 'OrgUser';
|
3350
3536
|
} & Pick<IOrgUser, 'userId' | 'inactive' | 'crossCheckEmail' | 'role'> & {
|
3351
3537
|
user: ({
|
3352
|
-
__typename?: '
|
3353
|
-
} & Pick<
|
3538
|
+
__typename?: 'UserAccount';
|
3539
|
+
} & Pick<IUserAccount, 'alias' | 'email' | 'username' | 'emailVerified' | 'familyName' | 'givenName'>);
|
3354
3540
|
})>>>;
|
3355
3541
|
})>;
|
3356
3542
|
});
|
@@ -3469,7 +3655,11 @@ export declare type IGetOrganizationMembersQuery = ({
|
|
3469
3655
|
} & Pick<IOrgMembersOutput, 'totalCount'> & {
|
3470
3656
|
data?: Maybe<Array<Maybe<({
|
3471
3657
|
__typename?: 'OrgMember';
|
3472
|
-
} & Pick<IOrgMember, 'userId' | 'isSelf' | 'role' | 'name' | 'email' | 'teamNames' | 'crossCheckEmail'>
|
3658
|
+
} & Pick<IOrgMember, 'userId' | 'isSelf' | 'role' | 'name' | 'email' | 'teamNames' | 'crossCheckEmail'> & {
|
3659
|
+
user: ({
|
3660
|
+
__typename?: 'UserAccount';
|
3661
|
+
} & Pick<IUserAccount, 'familyName' | 'givenName' | 'alias' | 'email'>);
|
3662
|
+
})>>>;
|
3473
3663
|
})>;
|
3474
3664
|
});
|
3475
3665
|
export declare type IOrganizationsQueryVariables = Exact<{
|
@@ -3626,18 +3816,6 @@ export declare type IUserCreationEventFragment = ({
|
|
3626
3816
|
__typename?: 'UserMetadata';
|
3627
3817
|
} & Pick<IUserMetadata, 'last_name' | 'first_name' | 'phone_number' | 'work_email' | 'country' | 'company_name' | 'dob' | 'zip_code'>)>;
|
3628
3818
|
});
|
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
3819
|
export declare type IConfigurationUpdateEventFragment = ({
|
3642
3820
|
__typename: 'ConfigurationUpdateEvent';
|
3643
3821
|
} & Pick<IConfigurationUpdateEvent, 'contents' | 'resource' | 'target'> & {
|
@@ -3655,6 +3833,13 @@ export declare type IDefaultSettingFragment = ({
|
|
3655
3833
|
export declare type IOverWriteRoleValueFragment = ({
|
3656
3834
|
__typename?: 'ContributionSettings';
|
3657
3835
|
} & Pick<IContributionSettings, 'key' | 'value'>);
|
3836
|
+
declare type IConfiguration_ApplicationConfiguration_Fragment = ({
|
3837
|
+
__typename: 'ApplicationConfiguration';
|
3838
|
+
} & Pick<IApplicationConfiguration, 'resource' | 'target' | 'contents' | 'keys'> & {
|
3839
|
+
overrides?: Maybe<Array<Maybe<({
|
3840
|
+
__typename?: 'Overrides';
|
3841
|
+
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
3842
|
+
});
|
3658
3843
|
declare type IConfiguration_ApplicationPolicy_Fragment = ({
|
3659
3844
|
__typename: 'ApplicationPolicy';
|
3660
3845
|
} & Pick<IApplicationPolicy, 'resource' | 'target' | 'contents' | 'keys'> & {
|
@@ -3725,6 +3910,13 @@ declare type IConfiguration_OrganizationRole_Fragment = ({
|
|
3725
3910
|
__typename?: 'Overrides';
|
3726
3911
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
3727
3912
|
});
|
3913
|
+
declare type IConfiguration_PolicyConfiguration_Fragment = ({
|
3914
|
+
__typename: 'PolicyConfiguration';
|
3915
|
+
} & Pick<IPolicyConfiguration, 'resource' | 'target' | 'contents' | 'keys'> & {
|
3916
|
+
overrides?: Maybe<Array<Maybe<({
|
3917
|
+
__typename?: 'Overrides';
|
3918
|
+
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
3919
|
+
});
|
3728
3920
|
declare type IConfiguration_ResourcePolicy_Fragment = ({
|
3729
3921
|
__typename: 'ResourcePolicy';
|
3730
3922
|
} & Pick<IResourcePolicy, 'resource' | 'target' | 'contents' | 'keys'> & {
|
@@ -3746,7 +3938,7 @@ declare type IConfiguration_UserConfiguration_Fragment = ({
|
|
3746
3938
|
__typename?: 'Overrides';
|
3747
3939
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
3748
3940
|
});
|
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;
|
3941
|
+
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
3942
|
export declare type IContextConfigurationFragment = ({
|
3751
3943
|
__typename?: 'OrganizationData';
|
3752
3944
|
} & Pick<IOrganizationData, 'id' | 'name' | 'configuration'> & {
|
@@ -4029,9 +4221,13 @@ export declare type IGetOrgConfigurationQuery = ({
|
|
4029
4221
|
getConfiguration?: Maybe<Array<Maybe<{
|
4030
4222
|
__typename?: 'DefaultConfiguration';
|
4031
4223
|
} | {
|
4032
|
-
__typename?: '
|
4224
|
+
__typename?: 'PolicyConfiguration';
|
4225
|
+
} | {
|
4226
|
+
__typename?: 'ApplicationConfiguration';
|
4033
4227
|
} | {
|
4034
4228
|
__typename?: 'UserConfiguration';
|
4229
|
+
} | {
|
4230
|
+
__typename?: 'MachineConfiguration';
|
4035
4231
|
} | ({
|
4036
4232
|
__typename?: 'OrganizationConfiguration';
|
4037
4233
|
} & IConfiguration_OrganizationConfiguration_Fragment) | {
|
@@ -4119,9 +4315,13 @@ export declare type IGetResourcesConfigurationQuery = ({
|
|
4119
4315
|
getConfiguration?: Maybe<Array<Maybe<{
|
4120
4316
|
__typename?: 'DefaultConfiguration';
|
4121
4317
|
} | {
|
4122
|
-
__typename?: '
|
4318
|
+
__typename?: 'PolicyConfiguration';
|
4319
|
+
} | {
|
4320
|
+
__typename?: 'ApplicationConfiguration';
|
4123
4321
|
} | {
|
4124
4322
|
__typename?: 'UserConfiguration';
|
4323
|
+
} | {
|
4324
|
+
__typename?: 'MachineConfiguration';
|
4125
4325
|
} | {
|
4126
4326
|
__typename?: 'OrganizationConfiguration';
|
4127
4327
|
} | ({
|
@@ -4136,11 +4336,15 @@ export declare type IGetUserConfigurationQuery = ({
|
|
4136
4336
|
} & {
|
4137
4337
|
getConfiguration?: Maybe<Array<Maybe<({
|
4138
4338
|
__typename?: 'DefaultConfiguration';
|
4139
|
-
} & IConfiguration_DefaultConfiguration_Fragment) |
|
4140
|
-
__typename?: '
|
4141
|
-
}
|
4339
|
+
} & IConfiguration_DefaultConfiguration_Fragment) | {
|
4340
|
+
__typename?: 'PolicyConfiguration';
|
4341
|
+
} | {
|
4342
|
+
__typename?: 'ApplicationConfiguration';
|
4343
|
+
} | ({
|
4142
4344
|
__typename?: 'UserConfiguration';
|
4143
|
-
} & IConfiguration_UserConfiguration_Fragment) | {
|
4345
|
+
} & IConfiguration_UserConfiguration_Fragment) | ({
|
4346
|
+
__typename?: 'MachineConfiguration';
|
4347
|
+
} & IConfiguration_MachineConfiguration_Fragment) | {
|
4144
4348
|
__typename?: 'OrganizationConfiguration';
|
4145
4349
|
} | {
|
4146
4350
|
__typename?: 'OrganizationResourceConfiguration';
|
@@ -4230,11 +4434,15 @@ export declare type IGetOrgWithResourcesConfigurationQuery = ({
|
|
4230
4434
|
} & {
|
4231
4435
|
getConfiguration?: Maybe<Array<Maybe<{
|
4232
4436
|
__typename?: 'DefaultConfiguration';
|
4233
|
-
} |
|
4234
|
-
__typename?: '
|
4235
|
-
}
|
4437
|
+
} | {
|
4438
|
+
__typename?: 'PolicyConfiguration';
|
4439
|
+
} | {
|
4440
|
+
__typename?: 'ApplicationConfiguration';
|
4441
|
+
} | {
|
4236
4442
|
__typename?: 'UserConfiguration';
|
4237
4443
|
} | ({
|
4444
|
+
__typename?: 'MachineConfiguration';
|
4445
|
+
} & IConfiguration_MachineConfiguration_Fragment) | ({
|
4238
4446
|
__typename?: 'OrganizationConfiguration';
|
4239
4447
|
} & IConfiguration_OrganizationConfiguration_Fragment) | ({
|
4240
4448
|
__typename?: 'OrganizationResourceConfiguration';
|
@@ -4249,10 +4457,14 @@ export declare type IGetUserWithDefaultConfigurationQuery = ({
|
|
4249
4457
|
getConfiguration?: Maybe<Array<Maybe<({
|
4250
4458
|
__typename?: 'DefaultConfiguration';
|
4251
4459
|
} & IConfiguration_DefaultConfiguration_Fragment) | {
|
4252
|
-
__typename?: '
|
4460
|
+
__typename?: 'PolicyConfiguration';
|
4461
|
+
} | {
|
4462
|
+
__typename?: 'ApplicationConfiguration';
|
4253
4463
|
} | ({
|
4254
4464
|
__typename?: 'UserConfiguration';
|
4255
4465
|
} & IConfiguration_UserConfiguration_Fragment) | {
|
4466
|
+
__typename?: 'MachineConfiguration';
|
4467
|
+
} | {
|
4256
4468
|
__typename?: 'OrganizationConfiguration';
|
4257
4469
|
} | {
|
4258
4470
|
__typename?: 'OrganizationResourceConfiguration';
|
@@ -4422,6 +4634,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4422
4634
|
__typename?: 'ConfigurationData';
|
4423
4635
|
} & Pick<IConfigurationData, 'isComplete'> & {
|
4424
4636
|
defaults?: Maybe<({
|
4637
|
+
__typename?: 'ApplicationConfiguration';
|
4638
|
+
} & IConfiguration_ApplicationConfiguration_Fragment) | ({
|
4425
4639
|
__typename?: 'ApplicationPolicy';
|
4426
4640
|
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4427
4641
|
__typename?: 'ApplicationRolePermission';
|
@@ -4442,6 +4656,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4442
4656
|
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
4443
4657
|
__typename?: 'OrganizationRole';
|
4444
4658
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
4659
|
+
__typename?: 'PolicyConfiguration';
|
4660
|
+
} & IConfiguration_PolicyConfiguration_Fragment) | ({
|
4445
4661
|
__typename?: 'ResourcePolicy';
|
4446
4662
|
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
4447
4663
|
__typename?: 'ResourceRole';
|
@@ -4449,6 +4665,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4449
4665
|
__typename?: 'UserConfiguration';
|
4450
4666
|
} & IConfiguration_UserConfiguration_Fragment)>;
|
4451
4667
|
user?: Maybe<({
|
4668
|
+
__typename?: 'ApplicationConfiguration';
|
4669
|
+
} & IConfiguration_ApplicationConfiguration_Fragment) | ({
|
4452
4670
|
__typename?: 'ApplicationPolicy';
|
4453
4671
|
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4454
4672
|
__typename?: 'ApplicationRolePermission';
|
@@ -4469,6 +4687,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4469
4687
|
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
4470
4688
|
__typename?: 'OrganizationRole';
|
4471
4689
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
4690
|
+
__typename?: 'PolicyConfiguration';
|
4691
|
+
} & IConfiguration_PolicyConfiguration_Fragment) | ({
|
4472
4692
|
__typename?: 'ResourcePolicy';
|
4473
4693
|
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
4474
4694
|
__typename?: 'ResourceRole';
|
@@ -4476,6 +4696,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4476
4696
|
__typename?: 'UserConfiguration';
|
4477
4697
|
} & IConfiguration_UserConfiguration_Fragment)>;
|
4478
4698
|
machine?: Maybe<({
|
4699
|
+
__typename?: 'ApplicationConfiguration';
|
4700
|
+
} & IConfiguration_ApplicationConfiguration_Fragment) | ({
|
4479
4701
|
__typename?: 'ApplicationPolicy';
|
4480
4702
|
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4481
4703
|
__typename?: 'ApplicationRolePermission';
|
@@ -4496,6 +4718,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4496
4718
|
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
4497
4719
|
__typename?: 'OrganizationRole';
|
4498
4720
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
4721
|
+
__typename?: 'PolicyConfiguration';
|
4722
|
+
} & IConfiguration_PolicyConfiguration_Fragment) | ({
|
4499
4723
|
__typename?: 'ResourcePolicy';
|
4500
4724
|
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
4501
4725
|
__typename?: 'ResourceRole';
|
@@ -4503,6 +4727,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4503
4727
|
__typename?: 'UserConfiguration';
|
4504
4728
|
} & IConfiguration_UserConfiguration_Fragment)>;
|
4505
4729
|
organization?: Maybe<({
|
4730
|
+
__typename?: 'ApplicationConfiguration';
|
4731
|
+
} & IConfiguration_ApplicationConfiguration_Fragment) | ({
|
4506
4732
|
__typename?: 'ApplicationPolicy';
|
4507
4733
|
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4508
4734
|
__typename?: 'ApplicationRolePermission';
|
@@ -4523,6 +4749,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4523
4749
|
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
4524
4750
|
__typename?: 'OrganizationRole';
|
4525
4751
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
4752
|
+
__typename?: 'PolicyConfiguration';
|
4753
|
+
} & IConfiguration_PolicyConfiguration_Fragment) | ({
|
4526
4754
|
__typename?: 'ResourcePolicy';
|
4527
4755
|
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
4528
4756
|
__typename?: 'ResourceRole';
|
@@ -4530,6 +4758,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4530
4758
|
__typename?: 'UserConfiguration';
|
4531
4759
|
} & IConfiguration_UserConfiguration_Fragment)>;
|
4532
4760
|
resources?: Maybe<Array<Maybe<({
|
4761
|
+
__typename?: 'ApplicationConfiguration';
|
4762
|
+
} & IConfiguration_ApplicationConfiguration_Fragment) | ({
|
4533
4763
|
__typename?: 'ApplicationPolicy';
|
4534
4764
|
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4535
4765
|
__typename?: 'ApplicationRolePermission';
|
@@ -4550,6 +4780,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4550
4780
|
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
4551
4781
|
__typename?: 'OrganizationRole';
|
4552
4782
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
4783
|
+
__typename?: 'PolicyConfiguration';
|
4784
|
+
} & IConfiguration_PolicyConfiguration_Fragment) | ({
|
4553
4785
|
__typename?: 'ResourcePolicy';
|
4554
4786
|
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
4555
4787
|
__typename?: 'ResourceRole';
|
@@ -4981,29 +5213,6 @@ export declare function useResendOrganizationInvitationMutation(baseOptions?: Ap
|
|
4981
5213
|
export declare type ResendOrganizationInvitationMutationHookResult = ReturnType<typeof useResendOrganizationInvitationMutation>;
|
4982
5214
|
export declare type ResendOrganizationInvitationMutationResult = Apollo.MutationResult<IResendOrganizationInvitationMutation>;
|
4983
5215
|
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
5216
|
export declare const ResetUserPasswordDocument: DocumentNode;
|
5008
5217
|
/**
|
5009
5218
|
* __useResetUserPasswordMutation__
|
@@ -5052,6 +5261,30 @@ export declare function useSendUserPasswordResetEmailMutation(baseOptions?: Apol
|
|
5052
5261
|
export declare type SendUserPasswordResetEmailMutationHookResult = ReturnType<typeof useSendUserPasswordResetEmailMutation>;
|
5053
5262
|
export declare type SendUserPasswordResetEmailMutationResult = Apollo.MutationResult<ISendUserPasswordResetEmailMutation>;
|
5054
5263
|
export declare type SendUserPasswordResetEmailMutationOptions = Apollo.BaseMutationOptions<ISendUserPasswordResetEmailMutation, ISendUserPasswordResetEmailMutationVariables>;
|
5264
|
+
export declare const SendEmailVerificationDocument: DocumentNode;
|
5265
|
+
/**
|
5266
|
+
* __useSendEmailVerificationMutation__
|
5267
|
+
*
|
5268
|
+
* To run a mutation, you first call `useSendEmailVerificationMutation` within a React component and pass it any options that fit your needs.
|
5269
|
+
* When your component renders, `useSendEmailVerificationMutation` returns a tuple that includes:
|
5270
|
+
* - A mutate function that you can call at any time to execute the mutation
|
5271
|
+
* - An object with fields that represent the current status of the mutation's execution
|
5272
|
+
*
|
5273
|
+
* @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;
|
5274
|
+
*
|
5275
|
+
* @example
|
5276
|
+
* const [sendEmailVerificationMutation, { data, loading, error }] = useSendEmailVerificationMutation({
|
5277
|
+
* variables: {
|
5278
|
+
* email: // value for 'email'
|
5279
|
+
* },
|
5280
|
+
* });
|
5281
|
+
*/
|
5282
|
+
export declare function useSendEmailVerificationMutation(baseOptions?: Apollo.MutationHookOptions<ISendEmailVerificationMutation, ISendEmailVerificationMutationVariables>): Apollo.MutationTuple<ISendEmailVerificationMutation, Exact<{
|
5283
|
+
email: string;
|
5284
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
5285
|
+
export declare type SendEmailVerificationMutationHookResult = ReturnType<typeof useSendEmailVerificationMutation>;
|
5286
|
+
export declare type SendEmailVerificationMutationResult = Apollo.MutationResult<ISendEmailVerificationMutation>;
|
5287
|
+
export declare type SendEmailVerificationMutationOptions = Apollo.BaseMutationOptions<ISendEmailVerificationMutation, ISendEmailVerificationMutationVariables>;
|
5055
5288
|
export declare const SendOrganizationInvitationDocument: DocumentNode;
|
5056
5289
|
/**
|
5057
5290
|
* __useSendOrganizationInvitationMutation__
|
@@ -5186,30 +5419,56 @@ export declare function useUpdateUserAccountMutation(baseOptions?: Apollo.Mutati
|
|
5186
5419
|
export declare type UpdateUserAccountMutationHookResult = ReturnType<typeof useUpdateUserAccountMutation>;
|
5187
5420
|
export declare type UpdateUserAccountMutationResult = Apollo.MutationResult<IUpdateUserAccountMutation>;
|
5188
5421
|
export declare type UpdateUserAccountMutationOptions = Apollo.BaseMutationOptions<IUpdateUserAccountMutation, IUpdateUserAccountMutationVariables>;
|
5189
|
-
export declare const
|
5422
|
+
export declare const ValidatePasswordResetOtpDocument: DocumentNode;
|
5190
5423
|
/**
|
5191
|
-
*
|
5424
|
+
* __useValidatePasswordResetOtpMutation__
|
5192
5425
|
*
|
5193
|
-
* To run a mutation, you first call `
|
5194
|
-
* When your component renders, `
|
5426
|
+
* To run a mutation, you first call `useValidatePasswordResetOtpMutation` within a React component and pass it any options that fit your needs.
|
5427
|
+
* When your component renders, `useValidatePasswordResetOtpMutation` returns a tuple that includes:
|
5195
5428
|
* - A mutate function that you can call at any time to execute the mutation
|
5196
5429
|
* - An object with fields that represent the current status of the mutation's execution
|
5197
5430
|
*
|
5198
5431
|
* @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
5432
|
*
|
5200
5433
|
* @example
|
5201
|
-
* const [
|
5434
|
+
* const [validatePasswordResetOtpMutation, { data, loading, error }] = useValidatePasswordResetOtpMutation({
|
5202
5435
|
* variables: {
|
5203
|
-
*
|
5436
|
+
* email: // value for 'email'
|
5437
|
+
* code: // value for 'code'
|
5204
5438
|
* },
|
5205
5439
|
* });
|
5206
5440
|
*/
|
5207
|
-
export declare function
|
5208
|
-
|
5441
|
+
export declare function useValidatePasswordResetOtpMutation(baseOptions?: Apollo.MutationHookOptions<IValidatePasswordResetOtpMutation, IValidatePasswordResetOtpMutationVariables>): Apollo.MutationTuple<IValidatePasswordResetOtpMutation, Exact<{
|
5442
|
+
email: string;
|
5443
|
+
code: string;
|
5209
5444
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
5210
|
-
export declare type
|
5211
|
-
export declare type
|
5212
|
-
export declare type
|
5445
|
+
export declare type ValidatePasswordResetOtpMutationHookResult = ReturnType<typeof useValidatePasswordResetOtpMutation>;
|
5446
|
+
export declare type ValidatePasswordResetOtpMutationResult = Apollo.MutationResult<IValidatePasswordResetOtpMutation>;
|
5447
|
+
export declare type ValidatePasswordResetOtpMutationOptions = Apollo.BaseMutationOptions<IValidatePasswordResetOtpMutation, IValidatePasswordResetOtpMutationVariables>;
|
5448
|
+
export declare const ValidateUserEmailVerificationDocument: DocumentNode;
|
5449
|
+
/**
|
5450
|
+
* __useValidateUserEmailVerificationMutation__
|
5451
|
+
*
|
5452
|
+
* To run a mutation, you first call `useValidateUserEmailVerificationMutation` within a React component and pass it any options that fit your needs.
|
5453
|
+
* When your component renders, `useValidateUserEmailVerificationMutation` returns a tuple that includes:
|
5454
|
+
* - A mutate function that you can call at any time to execute the mutation
|
5455
|
+
* - An object with fields that represent the current status of the mutation's execution
|
5456
|
+
*
|
5457
|
+
* @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;
|
5458
|
+
*
|
5459
|
+
* @example
|
5460
|
+
* const [validateUserEmailVerificationMutation, { data, loading, error }] = useValidateUserEmailVerificationMutation({
|
5461
|
+
* variables: {
|
5462
|
+
* code: // value for 'code'
|
5463
|
+
* },
|
5464
|
+
* });
|
5465
|
+
*/
|
5466
|
+
export declare function useValidateUserEmailVerificationMutation(baseOptions?: Apollo.MutationHookOptions<IValidateUserEmailVerificationMutation, IValidateUserEmailVerificationMutationVariables>): Apollo.MutationTuple<IValidateUserEmailVerificationMutation, Exact<{
|
5467
|
+
code: string;
|
5468
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
5469
|
+
export declare type ValidateUserEmailVerificationMutationHookResult = ReturnType<typeof useValidateUserEmailVerificationMutation>;
|
5470
|
+
export declare type ValidateUserEmailVerificationMutationResult = Apollo.MutationResult<IValidateUserEmailVerificationMutation>;
|
5471
|
+
export declare type ValidateUserEmailVerificationMutationOptions = Apollo.BaseMutationOptions<IValidateUserEmailVerificationMutation, IValidateUserEmailVerificationMutationVariables>;
|
5213
5472
|
export declare const GetUserOrganizationsListDocument: DocumentNode;
|
5214
5473
|
/**
|
5215
5474
|
* __useGetUserOrganizationsListQuery__
|
@@ -5975,55 +6234,6 @@ export declare function useFilterIntegrationConfigurationLazyQuery(baseOptions?:
|
|
5975
6234
|
export declare type FilterIntegrationConfigurationQueryHookResult = ReturnType<typeof useFilterIntegrationConfigurationQuery>;
|
5976
6235
|
export declare type FilterIntegrationConfigurationLazyQueryHookResult = ReturnType<typeof useFilterIntegrationConfigurationLazyQuery>;
|
5977
6236
|
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
6237
|
export declare const AddContributionRoleDocument: DocumentNode;
|
6028
6238
|
/**
|
6029
6239
|
* __useAddContributionRoleMutation__
|
@@ -7377,9 +7587,6 @@ export declare type IResolversTypes = {
|
|
7377
7587
|
AccessTokenConnection: ResolverTypeWrapper<IAccessTokenConnection>;
|
7378
7588
|
Int: ResolverTypeWrapper<Scalars['Int']>;
|
7379
7589
|
AccessToken_Input: IAccessToken_Input;
|
7380
|
-
AccountBroadcasterActions: IAccountBroadcasterActions;
|
7381
|
-
AccountService: ResolverTypeWrapper<IAccountService>;
|
7382
|
-
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
7383
7590
|
AccountServiceAction: IAccountServiceAction;
|
7384
7591
|
AccountTeam: ResolverTypeWrapper<IAccountTeam>;
|
7385
7592
|
AccountTeamInput: IAccountTeamInput;
|
@@ -7389,16 +7596,21 @@ export declare type IResolversTypes = {
|
|
7389
7596
|
ApiManagement: ResolverTypeWrapper<IApiManagement>;
|
7390
7597
|
ApiManagement_Input: IApiManagement_Input;
|
7391
7598
|
ApplicationBillingPlanPolicy: IApplicationBillingPlanPolicy;
|
7599
|
+
ApplicationConfiguration: ResolverTypeWrapper<IApplicationConfiguration>;
|
7392
7600
|
ApplicationPolicy: ResolverTypeWrapper<IApplicationPolicy>;
|
7393
7601
|
ApplicationRolePermission: ResolverTypeWrapper<IApplicationRolePermission>;
|
7394
7602
|
ApplicationRoles: IApplicationRoles;
|
7395
7603
|
ApplicationSettings: ResolverTypeWrapper<IApplicationSettings>;
|
7604
|
+
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
7396
7605
|
Auth0Identity: ResolverTypeWrapper<IAuth0Identity>;
|
7397
7606
|
Auth0IdentityProfileData: ResolverTypeWrapper<IAuth0IdentityProfileData>;
|
7398
7607
|
AuthErrorCodes: IAuthErrorCodes;
|
7399
7608
|
AuthTokens: ResolverTypeWrapper<IAuthTokens>;
|
7400
7609
|
AuthUser: ResolverTypeWrapper<IAuthUser>;
|
7401
7610
|
AuthUserInput: IAuthUserInput;
|
7611
|
+
BaseAccountService: ResolverTypeWrapper<IBaseAccountService>;
|
7612
|
+
BaseOrganizationService: ResolverTypeWrapper<IBaseOrganizationService>;
|
7613
|
+
BaseTeamService: ResolverTypeWrapper<IBaseTeamService>;
|
7402
7614
|
CacheControlScope: ICacheControlScope;
|
7403
7615
|
CityInput: ICityInput;
|
7404
7616
|
CityUpdateInput: ICityUpdateInput;
|
@@ -7407,7 +7619,7 @@ export declare type IResolversTypes = {
|
|
7407
7619
|
ClientTypes: IClientTypes;
|
7408
7620
|
ConfigCollectionName: IConfigCollectionName;
|
7409
7621
|
ConfigFragmentName: IConfigFragmentName;
|
7410
|
-
Configuration: IResolversTypes['DefaultConfiguration'] | IResolversTypes['
|
7622
|
+
Configuration: IResolversTypes['DefaultConfiguration'] | IResolversTypes['PolicyConfiguration'] | IResolversTypes['ApplicationConfiguration'] | IResolversTypes['UserConfiguration'] | IResolversTypes['MachineConfiguration'] | IResolversTypes['OrganizationConfiguration'] | IResolversTypes['OrganizationResourceConfiguration'];
|
7411
7623
|
ConfigurationContributionNames: IConfigurationContributionNames;
|
7412
7624
|
ConfigurationData: ResolverTypeWrapper<IConfigurationData>;
|
7413
7625
|
ConfigurationExtensionInfo: ResolverTypeWrapper<IConfigurationExtensionInfo>;
|
@@ -7436,6 +7648,7 @@ export declare type IResolversTypes = {
|
|
7436
7648
|
DefaultRole: ResolverTypeWrapper<IDefaultRole>;
|
7437
7649
|
DefaultSettings: ResolverTypeWrapper<IDefaultSettings>;
|
7438
7650
|
DeviceInfoInput: IDeviceInfoInput;
|
7651
|
+
DeviceInfoPlatform: IDeviceInfoPlatform;
|
7439
7652
|
EditPresentationTypes: IEditPresentationTypes;
|
7440
7653
|
EmptyResponse: ResolverTypeWrapper<IEmptyResponse>;
|
7441
7654
|
Environment: ResolverTypeWrapper<IEnvironment>;
|
@@ -7454,10 +7667,7 @@ export declare type IResolversTypes = {
|
|
7454
7667
|
IAuth0User: IResolversTypes['UserProfile'];
|
7455
7668
|
IAuth0UserProfile: IResolversTypes['UserProfile'];
|
7456
7669
|
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'];
|
7670
|
+
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
7671
|
IConfigurationService: never;
|
7462
7672
|
ICountry: never;
|
7463
7673
|
IEventWithContext: IResolversTypes['OrganizationCreatedEvent'] | IResolversTypes['OrganizationDeletedEvent'];
|
@@ -7472,18 +7682,19 @@ export declare type IResolversTypes = {
|
|
7472
7682
|
IUser: IResolversTypes['AuthUser'];
|
7473
7683
|
IUserMetadata: IResolversTypes['UserMetadata'];
|
7474
7684
|
IntegraitonConfigurationId: ResolverTypeWrapper<IIntegraitonConfigurationId>;
|
7475
|
-
IntegrationConfigServiceAction: IIntegrationConfigServiceAction;
|
7476
7685
|
IntegrationConfiguration: ResolverTypeWrapper<IIntegrationConfiguration>;
|
7477
7686
|
IntegrationConfigurationCreateOrUpdateInput: IIntegrationConfigurationCreateOrUpdateInput;
|
7478
7687
|
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
7479
7688
|
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
7480
7689
|
IntegrationConfigurationsOutput: ResolverTypeWrapper<IIntegrationConfigurationsOutput>;
|
7481
7690
|
IntegrationPreferences: ResolverTypeWrapper<IIntegrationPreferences>;
|
7691
|
+
IntegrationWorkflowServiceAction: IIntegrationWorkflowServiceAction;
|
7482
7692
|
InviteMember: ResolverTypeWrapper<IInviteMember>;
|
7483
7693
|
InviteStatus: IInviteStatus;
|
7484
7694
|
JSON: ResolverTypeWrapper<Scalars['JSON']>;
|
7485
7695
|
JSONObject: ResolverTypeWrapper<Scalars['JSONObject']>;
|
7486
7696
|
KeyPathSegment: IKeyPathSegment;
|
7697
|
+
LinkedIdentity: ResolverTypeWrapper<ILinkedIdentity>;
|
7487
7698
|
LoginError: ResolverTypeWrapper<ILoginError>;
|
7488
7699
|
MachineConfiguration: ResolverTypeWrapper<IMachineConfiguration>;
|
7489
7700
|
MachineSettings: ResolverTypeWrapper<IMachineSettings>;
|
@@ -7493,7 +7704,7 @@ export declare type IResolversTypes = {
|
|
7493
7704
|
MenuPosition: IMenuPosition;
|
7494
7705
|
MoleculerServiceName: IMoleculerServiceName;
|
7495
7706
|
Mutation: ResolverTypeWrapper<{}>;
|
7496
|
-
Node: IResolversTypes['AccessToken'] | IResolversTypes['ApiExternalAccount'] | IResolversTypes['ApiManagement'] | IResolversTypes['
|
7707
|
+
Node: IResolversTypes['AccessToken'] | IResolversTypes['ApiExternalAccount'] | IResolversTypes['ApiManagement'] | IResolversTypes['UserAccount'];
|
7497
7708
|
Observable: ResolverTypeWrapper<Scalars['Observable']>;
|
7498
7709
|
OrgDetailWhere: IOrgDetailWhere;
|
7499
7710
|
OrgInvitationMembers: ResolverTypeWrapper<IOrgInvitationMembers>;
|
@@ -7501,7 +7712,6 @@ export declare type IResolversTypes = {
|
|
7501
7712
|
OrgMembersOutput: ResolverTypeWrapper<IOrgMembersOutput>;
|
7502
7713
|
OrgType: IOrgType;
|
7503
7714
|
OrgUser: ResolverTypeWrapper<IOrgUser>;
|
7504
|
-
OrgUserAccunt: ResolverTypeWrapper<IOrgUserAccunt>;
|
7505
7715
|
OrgUserInput: IOrgUserInput;
|
7506
7716
|
OrgUserRole: IOrgUserRole;
|
7507
7717
|
OrgainizationInvitationRole: IOrgainizationInvitationRole;
|
@@ -7529,7 +7739,6 @@ export declare type IResolversTypes = {
|
|
7529
7739
|
OrganizationResourceData: ResolverTypeWrapper<IOrganizationResourceData>;
|
7530
7740
|
OrganizationResourceSettings: ResolverTypeWrapper<IOrganizationResourceSettings>;
|
7531
7741
|
OrganizationRole: ResolverTypeWrapper<IOrganizationRole>;
|
7532
|
-
OrganizationService: ResolverTypeWrapper<IOrganizationService>;
|
7533
7742
|
OrganizationServiceAction: IOrganizationServiceAction;
|
7534
7743
|
OrganizationSettings: ResolverTypeWrapper<IOrganizationSettings>;
|
7535
7744
|
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
@@ -7543,6 +7752,7 @@ export declare type IResolversTypes = {
|
|
7543
7752
|
PermissionType: IPermissionType;
|
7544
7753
|
PhoneNumber: ResolverTypeWrapper<IPhoneNumber>;
|
7545
7754
|
PhoneNumberInput: IPhoneNumberInput;
|
7755
|
+
PolicyConfiguration: ResolverTypeWrapper<IPolicyConfiguration>;
|
7546
7756
|
PolicySubject: ResolverTypeWrapper<IPolicySubject>;
|
7547
7757
|
PopupIntegrationAuthorization: ResolverTypeWrapper<IPopupIntegrationAuthorization>;
|
7548
7758
|
PortalLanguage: IPortalLanguage;
|
@@ -7608,7 +7818,6 @@ export declare type IResolversTypes = {
|
|
7608
7818
|
TeamMember: ResolverTypeWrapper<ITeamMember>;
|
7609
7819
|
TeamMemberInput: ITeamMemberInput;
|
7610
7820
|
TeamRemoveRequest: ITeamRemoveRequest;
|
7611
|
-
TeamService: ResolverTypeWrapper<ITeamService>;
|
7612
7821
|
TeamServiceAction: ITeamServiceAction;
|
7613
7822
|
TeamType: ITeamType;
|
7614
7823
|
TeamUpdateRequest: ITeamUpdateRequest;
|
@@ -7638,16 +7847,17 @@ export declare type IResolversTypes = {
|
|
7638
7847
|
UserDevice: ResolverTypeWrapper<IUserDevice>;
|
7639
7848
|
UserMetadata: ResolverTypeWrapper<IUserMetadata>;
|
7640
7849
|
UserOrderBy: IUserOrderBy;
|
7641
|
-
UserOrg: ResolverTypeWrapper<IUserOrg>;
|
7642
|
-
UserOrgInput: IUserOrgInput;
|
7643
7850
|
UserPasswordResetInput: IUserPasswordResetInput;
|
7644
7851
|
UserPreviousValues: ResolverTypeWrapper<IUserPreviousValues>;
|
7645
7852
|
UserProfile: ResolverTypeWrapper<IUserProfile>;
|
7853
|
+
UserServiceAction: IUserServiceAction;
|
7854
|
+
UserSession: ResolverTypeWrapper<IUserSession>;
|
7646
7855
|
UserSessionId: ResolverTypeWrapper<IUserSessionId>;
|
7647
7856
|
UserSettings: ResolverTypeWrapper<IUserSettings>;
|
7648
7857
|
UserState: ResolverTypeWrapper<IUserState>;
|
7649
7858
|
UserToken: ResolverTypeWrapper<IUserToken>;
|
7650
7859
|
UserTokenInput: IUserTokenInput;
|
7860
|
+
UsersToken: ResolverTypeWrapper<IUsersToken>;
|
7651
7861
|
ViewerPoliciesInput: IViewerPoliciesInput;
|
7652
7862
|
ViewerSettingsInput: IViewerSettingsInput;
|
7653
7863
|
ViewerSettingsSubject: ResolverTypeWrapper<IViewerSettingsSubject>;
|
@@ -7663,8 +7873,6 @@ export declare type IResolversParentTypes = {
|
|
7663
7873
|
AccessTokenConnection: IAccessTokenConnection;
|
7664
7874
|
Int: Scalars['Int'];
|
7665
7875
|
AccessToken_Input: IAccessToken_Input;
|
7666
|
-
AccountService: IAccountService;
|
7667
|
-
Boolean: Scalars['Boolean'];
|
7668
7876
|
AccountTeam: IAccountTeam;
|
7669
7877
|
AccountTeamInput: IAccountTeamInput;
|
7670
7878
|
AdminIdeSettings: IAdminIdeSettings;
|
@@ -7672,17 +7880,22 @@ export declare type IResolversParentTypes = {
|
|
7672
7880
|
ApiExternalAccount: IApiExternalAccount;
|
7673
7881
|
ApiManagement: IApiManagement;
|
7674
7882
|
ApiManagement_Input: IApiManagement_Input;
|
7883
|
+
ApplicationConfiguration: IApplicationConfiguration;
|
7675
7884
|
ApplicationPolicy: IApplicationPolicy;
|
7676
7885
|
ApplicationRolePermission: IApplicationRolePermission;
|
7677
7886
|
ApplicationSettings: IApplicationSettings;
|
7887
|
+
Boolean: Scalars['Boolean'];
|
7678
7888
|
Auth0Identity: IAuth0Identity;
|
7679
7889
|
Auth0IdentityProfileData: IAuth0IdentityProfileData;
|
7680
7890
|
AuthTokens: IAuthTokens;
|
7681
7891
|
AuthUser: IAuthUser;
|
7682
7892
|
AuthUserInput: IAuthUserInput;
|
7893
|
+
BaseAccountService: IBaseAccountService;
|
7894
|
+
BaseOrganizationService: IBaseOrganizationService;
|
7895
|
+
BaseTeamService: IBaseTeamService;
|
7683
7896
|
CityInput: ICityInput;
|
7684
7897
|
CityUpdateInput: ICityUpdateInput;
|
7685
|
-
Configuration: IResolversParentTypes['DefaultConfiguration'] | IResolversParentTypes['
|
7898
|
+
Configuration: IResolversParentTypes['DefaultConfiguration'] | IResolversParentTypes['PolicyConfiguration'] | IResolversParentTypes['ApplicationConfiguration'] | IResolversParentTypes['UserConfiguration'] | IResolversParentTypes['MachineConfiguration'] | IResolversParentTypes['OrganizationConfiguration'] | IResolversParentTypes['OrganizationResourceConfiguration'];
|
7686
7899
|
ConfigurationData: IConfigurationData;
|
7687
7900
|
ConfigurationExtensionInfo: IConfigurationExtensionInfo;
|
7688
7901
|
ConfigurationInput: IConfigurationInput;
|
@@ -7722,10 +7935,7 @@ export declare type IResolversParentTypes = {
|
|
7722
7935
|
IAuth0User: IResolversParentTypes['UserProfile'];
|
7723
7936
|
IAuth0UserProfile: IResolversParentTypes['UserProfile'];
|
7724
7937
|
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'];
|
7938
|
+
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
7939
|
IConfigurationService: never;
|
7730
7940
|
ICountry: never;
|
7731
7941
|
IEventWithContext: IResolversParentTypes['OrganizationCreatedEvent'] | IResolversParentTypes['OrganizationDeletedEvent'];
|
@@ -7750,13 +7960,14 @@ export declare type IResolversParentTypes = {
|
|
7750
7960
|
JSON: Scalars['JSON'];
|
7751
7961
|
JSONObject: Scalars['JSONObject'];
|
7752
7962
|
KeyPathSegment: IKeyPathSegment;
|
7963
|
+
LinkedIdentity: ILinkedIdentity;
|
7753
7964
|
LoginError: ILoginError;
|
7754
7965
|
MachineConfiguration: IMachineConfiguration;
|
7755
7966
|
MachineSettings: IMachineSettings;
|
7756
7967
|
MemorySettings: IMemorySettings;
|
7757
7968
|
MenuItem: IMenuItem;
|
7758
7969
|
Mutation: {};
|
7759
|
-
Node: IResolversParentTypes['AccessToken'] | IResolversParentTypes['ApiExternalAccount'] | IResolversParentTypes['ApiManagement'] | IResolversParentTypes['
|
7970
|
+
Node: IResolversParentTypes['AccessToken'] | IResolversParentTypes['ApiExternalAccount'] | IResolversParentTypes['ApiManagement'] | IResolversParentTypes['UserAccount'];
|
7760
7971
|
Observable: Scalars['Observable'];
|
7761
7972
|
OrgDetailWhere: IOrgDetailWhere;
|
7762
7973
|
OrgInvitationMembers: IOrgInvitationMembers;
|
@@ -7764,7 +7975,6 @@ export declare type IResolversParentTypes = {
|
|
7764
7975
|
OrgMembersOutput: IOrgMembersOutput;
|
7765
7976
|
OrgType: IOrgType;
|
7766
7977
|
OrgUser: IOrgUser;
|
7767
|
-
OrgUserAccunt: IOrgUserAccunt;
|
7768
7978
|
OrgUserInput: IOrgUserInput;
|
7769
7979
|
Organization: IOrganization;
|
7770
7980
|
OrganizationConfigValueInput: IOrganizationConfigValueInput;
|
@@ -7789,7 +7999,6 @@ export declare type IResolversParentTypes = {
|
|
7789
7999
|
OrganizationResourceData: IOrganizationResourceData;
|
7790
8000
|
OrganizationResourceSettings: IOrganizationResourceSettings;
|
7791
8001
|
OrganizationRole: IOrganizationRole;
|
7792
|
-
OrganizationService: IOrganizationService;
|
7793
8002
|
OrganizationSettings: IOrganizationSettings;
|
7794
8003
|
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
7795
8004
|
OrganizationsDeactivatedEvent: IOrganizationsDeactivatedEvent;
|
@@ -7799,6 +8008,7 @@ export declare type IResolversParentTypes = {
|
|
7799
8008
|
PermissionSubject: IPermissionSubject;
|
7800
8009
|
PhoneNumber: IPhoneNumber;
|
7801
8010
|
PhoneNumberInput: IPhoneNumberInput;
|
8011
|
+
PolicyConfiguration: IPolicyConfiguration;
|
7802
8012
|
PolicySubject: IPolicySubject;
|
7803
8013
|
PopupIntegrationAuthorization: IPopupIntegrationAuthorization;
|
7804
8014
|
Position: IPosition;
|
@@ -7854,7 +8064,6 @@ export declare type IResolversParentTypes = {
|
|
7854
8064
|
TeamMember: ITeamMember;
|
7855
8065
|
TeamMemberInput: ITeamMemberInput;
|
7856
8066
|
TeamRemoveRequest: ITeamRemoveRequest;
|
7857
|
-
TeamService: ITeamService;
|
7858
8067
|
TeamType: ITeamType;
|
7859
8068
|
TeamUpdateRequest: ITeamUpdateRequest;
|
7860
8069
|
TerritorialStateInput: ITerritorialStateInput;
|
@@ -7880,16 +8089,16 @@ export declare type IResolversParentTypes = {
|
|
7880
8089
|
UserContext: IUserContext;
|
7881
8090
|
UserDevice: IUserDevice;
|
7882
8091
|
UserMetadata: IUserMetadata;
|
7883
|
-
UserOrg: IUserOrg;
|
7884
|
-
UserOrgInput: IUserOrgInput;
|
7885
8092
|
UserPasswordResetInput: IUserPasswordResetInput;
|
7886
8093
|
UserPreviousValues: IUserPreviousValues;
|
7887
8094
|
UserProfile: IUserProfile;
|
8095
|
+
UserSession: IUserSession;
|
7888
8096
|
UserSessionId: IUserSessionId;
|
7889
8097
|
UserSettings: IUserSettings;
|
7890
8098
|
UserState: IUserState;
|
7891
8099
|
UserToken: IUserToken;
|
7892
8100
|
UserTokenInput: IUserTokenInput;
|
8101
|
+
UsersToken: IUsersToken;
|
7893
8102
|
ViewerPoliciesInput: IViewerPoliciesInput;
|
7894
8103
|
ViewerSettingsInput: IViewerSettingsInput;
|
7895
8104
|
ViewerSettingsSubject: IViewerSettingsSubject;
|
@@ -7931,17 +8140,6 @@ export declare type IAccessTokenConnectionResolvers<ContextType = MyContext, Par
|
|
7931
8140
|
pageInfo?: Resolver<IResolversTypes['PageInfo'], ParentType, ContextType>;
|
7932
8141
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
7933
8142
|
};
|
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
8143
|
export declare type IAccountTeamResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AccountTeam'] = IResolversParentTypes['AccountTeam']> = {
|
7946
8144
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
7947
8145
|
_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -7983,6 +8181,15 @@ export declare type IApiManagementResolvers<ContextType = MyContext, ParentType
|
|
7983
8181
|
user?: Resolver<IResolversTypes['UserAccount'], ParentType, ContextType>;
|
7984
8182
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
7985
8183
|
};
|
8184
|
+
export declare type IApplicationConfigurationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ApplicationConfiguration'] = IResolversParentTypes['ApplicationConfiguration']> = {
|
8185
|
+
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
8186
|
+
resource?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
|
8187
|
+
target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
8188
|
+
contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
8189
|
+
keys?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
8190
|
+
overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
|
8191
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8192
|
+
};
|
7986
8193
|
export declare type IApplicationPolicyResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ApplicationPolicy'] = IResolversParentTypes['ApplicationPolicy']> = {
|
7987
8194
|
resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
7988
8195
|
target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
@@ -8038,11 +8245,62 @@ export declare type IAuthUserResolvers<ContextType = MyContext, ParentType exten
|
|
8038
8245
|
phoneNo?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
8039
8246
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8040
8247
|
};
|
8248
|
+
export declare type IBaseAccountServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['BaseAccountService'] = IResolversParentTypes['BaseAccountService']> = {
|
8249
|
+
createDefaultAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceCreateDefaultAccountArgs, 'user'>>;
|
8250
|
+
createAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceCreateAccountArgs, 'account'>>;
|
8251
|
+
updateUserAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceUpdateUserAccountArgs, 'user' | 'userInfo'>>;
|
8252
|
+
findAccountById?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceFindAccountByIdArgs, 'id'>>;
|
8253
|
+
findAccountByUser?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceFindAccountByUserArgs, 'id'>>;
|
8254
|
+
findAccountByEmail?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceFindAccountByEmailArgs, 'email'>>;
|
8255
|
+
getUsers?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccount']>>>, ParentType, ContextType, RequireFields<IBaseAccountServiceGetUsersArgs, never>>;
|
8256
|
+
updateAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceUpdateAccountArgs, 'account'>>;
|
8257
|
+
deleteAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceDeleteAccountArgs, 'account'>>;
|
8258
|
+
accountOnBoarding?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceAccountOnBoardingArgs, 'input' | 'context'>>;
|
8259
|
+
verifyUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceVerifyUserEmailVerificationTokenArgs, 'userId' | 'token'>>;
|
8260
|
+
deleteUserAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceDeleteUserAccountArgs, 'id'>>;
|
8261
|
+
resendUserEmailVerificationEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceResendUserEmailVerificationEmailArgs, 'id'>>;
|
8262
|
+
dispatchUserVerificationEmail?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IBaseAccountServiceDispatchUserVerificationEmailArgs, 'email' | 'emailVerificationToken'>>;
|
8263
|
+
dispatchUserPasswordResetEmail?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IBaseAccountServiceDispatchUserPasswordResetEmailArgs, 'user' | 'token'>>;
|
8264
|
+
getUserTokenDetails?: Resolver<Maybe<IResolversTypes['UserToken']>, ParentType, ContextType, RequireFields<IBaseAccountServiceGetUserTokenDetailsArgs, 'userId' | 'type'>>;
|
8265
|
+
addUserToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceAddUserTokenArgs, 'userId' | 'token'>>;
|
8266
|
+
removeUserToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceRemoveUserTokenArgs, 'userId' | 'token'>>;
|
8267
|
+
getAllUserTokens?: Resolver<Maybe<Array<Maybe<IResolversTypes['UsersToken']>>>, ParentType, ContextType, RequireFields<IBaseAccountServiceGetAllUserTokensArgs, 'userIds' | 'tokenTypes'>>;
|
8268
|
+
initiatePasswordResetProcess?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceInitiatePasswordResetProcessArgs, 'email'>>;
|
8269
|
+
resetUserPassword?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceResetUserPasswordArgs, 'input'>>;
|
8270
|
+
validateUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceValidateUserEmailVerificationTokenArgs, 'code' | 'userAuth0Id' | 'email'>>;
|
8271
|
+
sendEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceSendEmailVerificationTokenArgs, 'email'>>;
|
8272
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8273
|
+
};
|
8274
|
+
export declare type IBaseOrganizationServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['BaseOrganizationService'] = IResolversParentTypes['BaseOrganizationService']> = {
|
8275
|
+
getOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceGetOrganizationArgs, never>>;
|
8276
|
+
createDefaultOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceCreateDefaultOrganizationArgs, never>>;
|
8277
|
+
getUserOrganizations?: Resolver<Maybe<Array<Maybe<IResolversTypes['Organization']>>>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceGetUserOrganizationsArgs, never>>;
|
8278
|
+
createOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceCreateOrganizationArgs, 'workspace'>>;
|
8279
|
+
updateOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceUpdateOrganizationArgs, 'workspace'>>;
|
8280
|
+
removeOrganization?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceRemoveOrganizationArgs, 'workspace'>>;
|
8281
|
+
getUserOrgRole?: Resolver<Maybe<IResolversTypes['OrgUserRole']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceGetUserOrgRoleArgs, 'orgName' | 'userId'>>;
|
8282
|
+
sendInvitation?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceSendInvitationArgs, 'request'>>;
|
8283
|
+
declineInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceDeclineInvitationArgs, 'id'>>;
|
8284
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8285
|
+
};
|
8286
|
+
export declare type IBaseTeamServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['BaseTeamService'] = IResolversParentTypes['BaseTeamService']> = {
|
8287
|
+
getTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceGetTeamArgs, never>>;
|
8288
|
+
getUserTeams?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccountTeam']>>>, ParentType, ContextType, RequireFields<IBaseTeamServiceGetUserTeamsArgs, never>>;
|
8289
|
+
createTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceCreateTeamArgs, never>>;
|
8290
|
+
updateTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceUpdateTeamArgs, never>>;
|
8291
|
+
addWorkspaces?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceAddWorkspacesArgs, never>>;
|
8292
|
+
removeTeam?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseTeamServiceRemoveTeamArgs, never>>;
|
8293
|
+
createDefaultTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceCreateDefaultTeamArgs, never>>;
|
8294
|
+
sendProjectNotification?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseTeamServiceSendProjectNotificationArgs, never>>;
|
8295
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8296
|
+
};
|
8041
8297
|
export declare type IConfigurationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Configuration'] = IResolversParentTypes['Configuration']> = {
|
8042
|
-
__resolveType: TypeResolveFn<'DefaultConfiguration' | '
|
8298
|
+
__resolveType: TypeResolveFn<'DefaultConfiguration' | 'PolicyConfiguration' | 'ApplicationConfiguration' | 'UserConfiguration' | 'MachineConfiguration' | 'OrganizationConfiguration' | 'OrganizationResourceConfiguration', ParentType, ContextType>;
|
8043
8299
|
};
|
8044
8300
|
export declare type IConfigurationDataResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ConfigurationData'] = IResolversParentTypes['ConfigurationData']> = {
|
8045
8301
|
defaults?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
|
8302
|
+
policy?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
|
8303
|
+
application?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
|
8046
8304
|
user?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
|
8047
8305
|
machine?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
|
8048
8306
|
organization?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
|
@@ -8083,6 +8341,8 @@ export declare type IConfigurationTargetResolvers = EnumResolverSignature<{
|
|
8083
8341
|
ORGANIZATION_RESOURCE?: any;
|
8084
8342
|
DEFAULT?: any;
|
8085
8343
|
MEMORY?: any;
|
8344
|
+
RESOURCE_OVERRIDABLE?: any;
|
8345
|
+
MACHINE_OVERRIDABLE?: any;
|
8086
8346
|
}, IResolversTypes['ConfigurationTarget']>;
|
8087
8347
|
export declare type IConfigurationUpdateEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ConfigurationUpdateEvent'] = IResolversParentTypes['ConfigurationUpdateEvent']> = {
|
8088
8348
|
resource?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
|
@@ -8309,16 +8569,8 @@ export declare type IICityResolvers<ContextType = MyContext, ParentType extends
|
|
8309
8569
|
createdAt?: Resolver<IResolversTypes['Date'], ParentType, ContextType>;
|
8310
8570
|
updatedAt?: Resolver<Maybe<IResolversTypes['Date']>, ParentType, ContextType>;
|
8311
8571
|
};
|
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
8572
|
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>;
|
8573
|
+
__resolveType: TypeResolveFn<'ApplicationConfiguration' | 'ApplicationPolicy' | 'ApplicationRolePermission' | 'DefaultConfiguration' | 'DefaultPolicy' | 'DefaultRole' | 'MachineConfiguration' | 'OrganizationConfiguration' | 'OrganizationPolicy' | 'OrganizationResourceConfiguration' | 'OrganizationRole' | 'PolicyConfiguration' | 'ResourcePolicy' | 'ResourceRole' | 'UserConfiguration', ParentType, ContextType>;
|
8322
8574
|
resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
8323
8575
|
target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
8324
8576
|
contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
@@ -8450,6 +8702,13 @@ export interface IJsonScalarConfig extends GraphQLScalarTypeConfig<IResolversTyp
|
|
8450
8702
|
export interface IJsonObjectScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['JSONObject'], any> {
|
8451
8703
|
name: 'JSONObject';
|
8452
8704
|
}
|
8705
|
+
export declare type ILinkedIdentityResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['LinkedIdentity'] = IResolversParentTypes['LinkedIdentity']> = {
|
8706
|
+
connection?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8707
|
+
isSocial?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8708
|
+
provider?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8709
|
+
user_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8710
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8711
|
+
};
|
8453
8712
|
export declare type ILoginErrorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['LoginError'] = IResolversParentTypes['LoginError']> = {
|
8454
8713
|
timeStamp?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
8455
8714
|
error?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
@@ -8534,12 +8793,11 @@ export declare type IMutationResolvers<ContextType = MyContext, ParentType exten
|
|
8534
8793
|
removedUserAuthIntegration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationRemovedUserAuthIntegrationArgs, never>>;
|
8535
8794
|
renewAuthToken?: Resolver<Maybe<IResolversTypes['AuthTokens']>, ParentType, ContextType, RequireFields<IMutationRenewAuthTokenArgs, never>>;
|
8536
8795
|
resendOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationResendOrganizationInvitationArgs, 'id'>>;
|
8537
|
-
resendUserEmailVerificationEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8538
8796
|
resetUserPassword?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationResetUserPasswordArgs, 'input'>>;
|
8797
|
+
sendEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSendEmailVerificationTokenArgs, 'email'>>;
|
8539
8798
|
sendOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSendOrganizationInvitationArgs, never>>;
|
8540
8799
|
sendUserPasswordResetEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSendUserPasswordResetEmailArgs, 'email'>>;
|
8541
8800
|
setSettingsValueByResource?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSetSettingsValueByResourceArgs, never>>;
|
8542
|
-
toggleSidebar?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationToggleSidebarArgs, 'state'>>;
|
8543
8801
|
updateAuth0UserPassword?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateAuth0UserPasswordArgs, never>>;
|
8544
8802
|
updateConfiguration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationArgs, 'input' | 'key' | 'value'>>;
|
8545
8803
|
updateConfigurationPolicyValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationPolicyValueArgs, 'key' | 'value'>>;
|
@@ -8555,10 +8813,11 @@ export declare type IMutationResolvers<ContextType = MyContext, ParentType exten
|
|
8555
8813
|
updateRoleValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateRoleValueArgs, 'key' | 'value'>>;
|
8556
8814
|
updateSelectedOrgResource?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateSelectedOrgResourceArgs, 'resource'>>;
|
8557
8815
|
updateUserAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateUserAccountArgs, never>>;
|
8558
|
-
|
8816
|
+
validatePasswordResetOtp?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationValidatePasswordResetOtpArgs, 'email' | 'code'>>;
|
8817
|
+
validateUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationValidateUserEmailVerificationTokenArgs, 'code'>>;
|
8559
8818
|
};
|
8560
8819
|
export declare type INodeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Node'] = IResolversParentTypes['Node']> = {
|
8561
|
-
__resolveType: TypeResolveFn<'AccessToken' | 'ApiExternalAccount' | 'ApiManagement' | '
|
8820
|
+
__resolveType: TypeResolveFn<'AccessToken' | 'ApiExternalAccount' | 'ApiManagement' | 'UserAccount', ParentType, ContextType>;
|
8562
8821
|
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
8563
8822
|
};
|
8564
8823
|
export interface IObservableScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Observable'], any> {
|
@@ -8573,6 +8832,7 @@ export declare type IOrgMemberResolvers<ContextType = MyContext, ParentType exte
|
|
8573
8832
|
_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8574
8833
|
userId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8575
8834
|
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
8835
|
+
user?: Resolver<IResolversTypes['UserAccount'], ParentType, ContextType>;
|
8576
8836
|
isSelf?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8577
8837
|
inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8578
8838
|
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -8591,19 +8851,11 @@ export declare type IOrgUserResolvers<ContextType = MyContext, ParentType extend
|
|
8591
8851
|
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
8592
8852
|
inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8593
8853
|
orgName?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
8594
|
-
user?: Resolver<IResolversTypes['
|
8854
|
+
user?: Resolver<IResolversTypes['UserAccount'], ParentType, ContextType>;
|
8595
8855
|
isSelf?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
8596
8856
|
crossCheckEmail?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8597
8857
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8598
8858
|
};
|
8599
|
-
export declare type IOrgUserAccuntResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrgUserAccunt'] = IResolversParentTypes['OrgUserAccunt']> = {
|
8600
|
-
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
8601
|
-
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8602
|
-
alias?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
8603
|
-
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8604
|
-
emailVerified?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8605
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8606
|
-
};
|
8607
8859
|
export declare type IOrganizationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Organization'] = IResolversParentTypes['Organization']> = {
|
8608
8860
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
8609
8861
|
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -8727,18 +8979,6 @@ export declare type IOrganizationRoleResolvers<ContextType = MyContext, ParentTy
|
|
8727
8979
|
overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
|
8728
8980
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8729
8981
|
};
|
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
8982
|
export declare type IOrganizationSettingsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrganizationSettings'] = IResolversParentTypes['OrganizationSettings']> = {
|
8743
8983
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
8744
8984
|
latestSettings?: Resolver<Maybe<IResolversTypes['Settings']>, ParentType, ContextType>;
|
@@ -8756,6 +8996,7 @@ export declare type IOrganizationsDeletedEventResolvers<ContextType = MyContext,
|
|
8756
8996
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8757
8997
|
};
|
8758
8998
|
export declare type IOverridesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Overrides'] = IResolversParentTypes['Overrides']> = {
|
8999
|
+
keys?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
8759
9000
|
contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
8760
9001
|
identifiers?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
8761
9002
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
@@ -8775,6 +9016,15 @@ export declare type IPhoneNumberResolvers<ContextType = MyContext, ParentType ex
|
|
8775
9016
|
phoneNumber?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8776
9017
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8777
9018
|
};
|
9019
|
+
export declare type IPolicyConfigurationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PolicyConfiguration'] = IResolversParentTypes['PolicyConfiguration']> = {
|
9020
|
+
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
9021
|
+
resource?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
|
9022
|
+
target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
9023
|
+
contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
9024
|
+
keys?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
9025
|
+
overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
|
9026
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9027
|
+
};
|
8778
9028
|
export declare type IPolicySubjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PolicySubject'] = IResolversParentTypes['PolicySubject']> = {
|
8779
9029
|
policyURL?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
|
8780
9030
|
createdAt?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -8875,10 +9125,12 @@ export declare type IQueryResolvers<ContextType = MyContext, ParentType extends
|
|
8875
9125
|
externalAccounts?: Resolver<IResolversTypes['ExternalAccountConnection'], ParentType, ContextType, RequireFields<IQueryExternalAccountsArgs, never>>;
|
8876
9126
|
fetchAuth0User?: Resolver<Maybe<IResolversTypes['UserProfile']>, ParentType, ContextType, RequireFields<IQueryFetchAuth0UserArgs, 'auth0UserId'>>;
|
8877
9127
|
fetchUserAuthorizedDevices?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserDevice']>>>, ParentType, ContextType, RequireFields<IQueryFetchUserAuthorizedDevicesArgs, 'auth0UserId'>>;
|
9128
|
+
fetchUserSessions?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserSession']>>>, ParentType, ContextType>;
|
8878
9129
|
filterIntegrationConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType, RequireFields<IQueryFilterIntegrationConfigurationArgs, never>>;
|
8879
9130
|
getAccounts?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccount']>>>, ParentType, ContextType, RequireFields<IQueryGetAccountsArgs, never>>;
|
8880
9131
|
getAllCountries?: Resolver<Maybe<Array<Maybe<IResolversTypes['Country']>>>, ParentType, ContextType, RequireFields<IQueryGetAllCountriesArgs, never>>;
|
8881
9132
|
getAllIntegrationConfigurations?: Resolver<Maybe<IResolversTypes['IntegrationConfigurationsOutput']>, ParentType, ContextType, RequireFields<IQueryGetAllIntegrationConfigurationsArgs, never>>;
|
9133
|
+
getAllUsersTokens?: Resolver<Maybe<Array<Maybe<IResolversTypes['UsersToken']>>>, ParentType, ContextType, RequireFields<IQueryGetAllUsersTokensArgs, 'types'>>;
|
8882
9134
|
getConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['Configuration']>>>, ParentType, ContextType, RequireFields<IQueryGetConfigurationArgs, never>>;
|
8883
9135
|
getConfigurationData?: Resolver<Maybe<IResolversTypes['ConfigurationData']>, ParentType, ContextType>;
|
8884
9136
|
getConfigurationPolicies?: Resolver<Maybe<Array<Maybe<IResolversTypes['ConfigurationPolicy']>>>, ParentType, ContextType, RequireFields<IQueryGetConfigurationPoliciesArgs, never>>;
|
@@ -8924,7 +9176,6 @@ export declare type IQueryResolvers<ContextType = MyContext, ParentType extends
|
|
8924
9176
|
resolveConfiguration?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IQueryResolveConfigurationArgs, 'input'>>;
|
8925
9177
|
resolveSettings?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionSettings']>>>, ParentType, ContextType, RequireFields<IQueryResolveSettingsArgs, 'uri'>>;
|
8926
9178
|
selectedOrgResource?: Resolver<Maybe<IResolversTypes['Context']>, ParentType, ContextType>;
|
8927
|
-
sidebarState?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8928
9179
|
team?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IQueryTeamArgs, 'teamId'>>;
|
8929
9180
|
teams?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccountTeam']>>>, ParentType, ContextType>;
|
8930
9181
|
viewerPolicies?: Resolver<Maybe<IResolversTypes['PolicySubject']>, ParentType, ContextType, RequireFields<IQueryViewerPoliciesArgs, 'input'>>;
|
@@ -9075,17 +9326,6 @@ export declare type ITeamMemberResolvers<ContextType = MyContext, ParentType ext
|
|
9075
9326
|
status?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9076
9327
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9077
9328
|
};
|
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
9329
|
export interface ITimeScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Time'], any> {
|
9090
9330
|
name: 'Time';
|
9091
9331
|
}
|
@@ -9148,7 +9388,7 @@ export declare type IUserAuth0SessionDeviceInfoResolvers<ContextType = MyContext
|
|
9148
9388
|
os?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9149
9389
|
deviceName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9150
9390
|
browserName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9151
|
-
|
9391
|
+
platform?: Resolver<IResolversTypes['DeviceInfoPlatform'], ParentType, ContextType>;
|
9152
9392
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9153
9393
|
};
|
9154
9394
|
export declare type IUserAuth0SessionInfoResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserAuth0SessionInfo'] = IResolversParentTypes['UserAuth0SessionInfo']> = {
|
@@ -9207,12 +9447,6 @@ export declare type IUserMetadataResolvers<ContextType = MyContext, ParentType e
|
|
9207
9447
|
zip_code?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
9208
9448
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9209
9449
|
};
|
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
9450
|
export declare type IUserPreviousValuesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserPreviousValues'] = IResolversParentTypes['UserPreviousValues']> = {
|
9217
9451
|
auth0UserId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9218
9452
|
createdAt?: Resolver<IResolversTypes['DateTime'], ParentType, ContextType>;
|
@@ -9253,6 +9487,13 @@ export declare type IUserProfileResolvers<ContextType = MyContext, ParentType ex
|
|
9253
9487
|
nonce?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9254
9488
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9255
9489
|
};
|
9490
|
+
export declare type IUserSessionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserSession'] = IResolversParentTypes['UserSession']> = {
|
9491
|
+
sessionId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9492
|
+
deviceInfo?: Resolver<Maybe<IResolversTypes['UserAuth0SessionDeviceInfo']>, ParentType, ContextType>;
|
9493
|
+
lastLoginAt?: Resolver<Maybe<IResolversTypes['Date']>, ParentType, ContextType>;
|
9494
|
+
lastLoginIp?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9495
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9496
|
+
};
|
9256
9497
|
export declare type IUserSessionIdResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserSessionId'] = IResolversParentTypes['UserSessionId']> = {
|
9257
9498
|
sessionId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9258
9499
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
@@ -9273,7 +9514,7 @@ export declare type IUserStateResolvers<ContextType = MyContext, ParentType exte
|
|
9273
9514
|
isNewlyLoggedIn?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9274
9515
|
isProfileFetching?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9275
9516
|
isSocialLogin?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9276
|
-
linkedIdentities?: Resolver<Maybe<Array<Maybe<IResolversTypes['
|
9517
|
+
linkedIdentities?: Resolver<Maybe<Array<Maybe<IResolversTypes['LinkedIdentity']>>>, ParentType, ContextType>;
|
9277
9518
|
loggingInProgress?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9278
9519
|
passwordResetProgress?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9279
9520
|
passwordResetSuccess?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
@@ -9290,6 +9531,11 @@ export declare type IUserTokenResolvers<ContextType = MyContext, ParentType exte
|
|
9290
9531
|
valid?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9291
9532
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9292
9533
|
};
|
9534
|
+
export declare type IUsersTokenResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UsersToken'] = IResolversParentTypes['UsersToken']> = {
|
9535
|
+
userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
9536
|
+
tokens?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserToken']>>>, ParentType, ContextType>;
|
9537
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9538
|
+
};
|
9293
9539
|
export declare type IViewerSettingsSubjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ViewerSettingsSubject'] = IResolversParentTypes['ViewerSettingsSubject']> = {
|
9294
9540
|
settingsURL?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
|
9295
9541
|
settings?: Resolver<Maybe<IResolversTypes['Preferences']>, ParentType, ContextType>;
|
@@ -9299,12 +9545,12 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9299
9545
|
AccessRole?: IAccessRoleResolvers<ContextType>;
|
9300
9546
|
AccessToken?: IAccessTokenResolvers<ContextType>;
|
9301
9547
|
AccessTokenConnection?: IAccessTokenConnectionResolvers<ContextType>;
|
9302
|
-
AccountService?: IAccountServiceResolvers<ContextType>;
|
9303
9548
|
AccountTeam?: IAccountTeamResolvers<ContextType>;
|
9304
9549
|
AdminIdeSettings?: IAdminIdeSettingsResolvers<ContextType>;
|
9305
9550
|
AnyObject?: GraphQLScalarType;
|
9306
9551
|
ApiExternalAccount?: IApiExternalAccountResolvers<ContextType>;
|
9307
9552
|
ApiManagement?: IApiManagementResolvers<ContextType>;
|
9553
|
+
ApplicationConfiguration?: IApplicationConfigurationResolvers<ContextType>;
|
9308
9554
|
ApplicationPolicy?: IApplicationPolicyResolvers<ContextType>;
|
9309
9555
|
ApplicationRolePermission?: IApplicationRolePermissionResolvers<ContextType>;
|
9310
9556
|
ApplicationSettings?: IApplicationSettingsResolvers<ContextType>;
|
@@ -9312,6 +9558,9 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9312
9558
|
Auth0IdentityProfileData?: IAuth0IdentityProfileDataResolvers<ContextType>;
|
9313
9559
|
AuthTokens?: IAuthTokensResolvers<ContextType>;
|
9314
9560
|
AuthUser?: IAuthUserResolvers<ContextType>;
|
9561
|
+
BaseAccountService?: IBaseAccountServiceResolvers<ContextType>;
|
9562
|
+
BaseOrganizationService?: IBaseOrganizationServiceResolvers<ContextType>;
|
9563
|
+
BaseTeamService?: IBaseTeamServiceResolvers<ContextType>;
|
9315
9564
|
Configuration?: IConfigurationResolvers<ContextType>;
|
9316
9565
|
ConfigurationData?: IConfigurationDataResolvers<ContextType>;
|
9317
9566
|
ConfigurationExtensionInfo?: IConfigurationExtensionInfoResolvers<ContextType>;
|
@@ -9345,7 +9594,6 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9345
9594
|
IAuth0User?: IIAuth0UserResolvers<ContextType>;
|
9346
9595
|
IAuth0UserProfile?: IIAuth0UserProfileResolvers<ContextType>;
|
9347
9596
|
ICity?: IICityResolvers<ContextType>;
|
9348
|
-
IConfigurationChangeEvent?: IIConfigurationChangeEventResolvers<ContextType>;
|
9349
9597
|
IConfigurationModel?: IIConfigurationModelResolvers<ContextType>;
|
9350
9598
|
IConfigurationService?: IIConfigurationServiceResolvers<ContextType>;
|
9351
9599
|
ICountry?: IICountryResolvers<ContextType>;
|
@@ -9366,6 +9614,7 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9366
9614
|
InviteMember?: IInviteMemberResolvers<ContextType>;
|
9367
9615
|
JSON?: GraphQLScalarType;
|
9368
9616
|
JSONObject?: GraphQLScalarType;
|
9617
|
+
LinkedIdentity?: ILinkedIdentityResolvers<ContextType>;
|
9369
9618
|
LoginError?: ILoginErrorResolvers<ContextType>;
|
9370
9619
|
MachineConfiguration?: IMachineConfigurationResolvers<ContextType>;
|
9371
9620
|
MachineSettings?: IMachineSettingsResolvers<ContextType>;
|
@@ -9378,7 +9627,6 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9378
9627
|
OrgMember?: IOrgMemberResolvers<ContextType>;
|
9379
9628
|
OrgMembersOutput?: IOrgMembersOutputResolvers<ContextType>;
|
9380
9629
|
OrgUser?: IOrgUserResolvers<ContextType>;
|
9381
|
-
OrgUserAccunt?: IOrgUserAccuntResolvers<ContextType>;
|
9382
9630
|
Organization?: IOrganizationResolvers<ContextType>;
|
9383
9631
|
OrganizationConfiguration?: IOrganizationConfigurationResolvers<ContextType>;
|
9384
9632
|
OrganizationCreatedEvent?: IOrganizationCreatedEventResolvers<ContextType>;
|
@@ -9393,7 +9641,6 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9393
9641
|
OrganizationResourceData?: IOrganizationResourceDataResolvers<ContextType>;
|
9394
9642
|
OrganizationResourceSettings?: IOrganizationResourceSettingsResolvers<ContextType>;
|
9395
9643
|
OrganizationRole?: IOrganizationRoleResolvers<ContextType>;
|
9396
|
-
OrganizationService?: IOrganizationServiceResolvers<ContextType>;
|
9397
9644
|
OrganizationSettings?: IOrganizationSettingsResolvers<ContextType>;
|
9398
9645
|
OrganizationsDeactivatedEvent?: IOrganizationsDeactivatedEventResolvers<ContextType>;
|
9399
9646
|
OrganizationsDeletedEvent?: IOrganizationsDeletedEventResolvers<ContextType>;
|
@@ -9401,6 +9648,7 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9401
9648
|
PageInfo?: IPageInfoResolvers<ContextType>;
|
9402
9649
|
PermissionSubject?: IPermissionSubjectResolvers<ContextType>;
|
9403
9650
|
PhoneNumber?: IPhoneNumberResolvers<ContextType>;
|
9651
|
+
PolicyConfiguration?: IPolicyConfigurationResolvers<ContextType>;
|
9404
9652
|
PolicySubject?: IPolicySubjectResolvers<ContextType>;
|
9405
9653
|
PopupIntegrationAuthorization?: IPopupIntegrationAuthorizationResolvers<ContextType>;
|
9406
9654
|
Position?: IPositionResolvers<ContextType>;
|
@@ -9440,7 +9688,6 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9440
9688
|
Subscription?: ISubscriptionResolvers<ContextType>;
|
9441
9689
|
TeamInvitationEmailVariables?: ITeamInvitationEmailVariablesResolvers<ContextType>;
|
9442
9690
|
TeamMember?: ITeamMemberResolvers<ContextType>;
|
9443
|
-
TeamService?: ITeamServiceResolvers<ContextType>;
|
9444
9691
|
Time?: GraphQLScalarType;
|
9445
9692
|
URI?: GraphQLScalarType;
|
9446
9693
|
URIInput?: GraphQLScalarType;
|
@@ -9456,13 +9703,14 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9456
9703
|
UserContext?: IUserContextResolvers<ContextType>;
|
9457
9704
|
UserDevice?: IUserDeviceResolvers<ContextType>;
|
9458
9705
|
UserMetadata?: IUserMetadataResolvers<ContextType>;
|
9459
|
-
UserOrg?: IUserOrgResolvers<ContextType>;
|
9460
9706
|
UserPreviousValues?: IUserPreviousValuesResolvers<ContextType>;
|
9461
9707
|
UserProfile?: IUserProfileResolvers<ContextType>;
|
9708
|
+
UserSession?: IUserSessionResolvers<ContextType>;
|
9462
9709
|
UserSessionId?: IUserSessionIdResolvers<ContextType>;
|
9463
9710
|
UserSettings?: IUserSettingsResolvers<ContextType>;
|
9464
9711
|
UserState?: IUserStateResolvers<ContextType>;
|
9465
9712
|
UserToken?: IUserTokenResolvers<ContextType>;
|
9713
|
+
UsersToken?: IUsersTokenResolvers<ContextType>;
|
9466
9714
|
ViewerSettingsSubject?: IViewerSettingsSubjectResolvers<ContextType>;
|
9467
9715
|
};
|
9468
9716
|
export declare type IDirectiveResolvers<ContextType = MyContext> = {
|