@adminide-stack/core 3.1.2-alpha.1 → 3.1.2-alpha.101

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.
Files changed (79) hide show
  1. package/lib/constants/configuration.d.ts +2 -1
  2. package/lib/constants/configuration.js +3 -2
  3. package/lib/constants/configuration.js.map +1 -1
  4. package/lib/core/configurations/configuration.d.ts +31 -15
  5. package/lib/core/configurations/configuration.js +279 -47
  6. package/lib/core/configurations/configuration.js.map +1 -1
  7. package/lib/core/configurations/configuration.test.d.ts +1 -0
  8. package/lib/core/configurations/configuration.test.js +20 -0
  9. package/lib/core/configurations/configuration.test.js.map +1 -0
  10. package/lib/core/configurations/events/AbstractConfigurationChangEvent.d.ts +0 -0
  11. package/lib/core/configurations/events/AbstractConfigurationChangEvent.js +25 -0
  12. package/lib/core/configurations/events/AbstractConfigurationChangEvent.js.map +1 -0
  13. package/lib/core/configurations/events/AllKeysConfigurationChangeEvent.d.ts +0 -0
  14. package/lib/core/configurations/events/AllKeysConfigurationChangeEvent.js +27 -0
  15. package/lib/core/configurations/events/AllKeysConfigurationChangeEvent.js.map +1 -0
  16. package/lib/core/configurations/events/ConfigurationChangeEvent.d.ts +21 -0
  17. package/lib/core/configurations/events/ConfigurationChangeEvent.js +59 -0
  18. package/lib/core/configurations/events/ConfigurationChangeEvent.js.map +1 -0
  19. package/lib/core/configurations/events/OrganizationConfigurationChangeEvent.d.ts +0 -0
  20. package/lib/core/configurations/events/OrganizationConfigurationChangeEvent.js +37 -0
  21. package/lib/core/configurations/events/OrganizationConfigurationChangeEvent.js.map +1 -0
  22. package/lib/core/configurations/events/index.d.ts +1 -4
  23. package/lib/core/configurations/events/index.js +4 -4
  24. package/lib/core/configurations/events/index.js.map +1 -1
  25. package/lib/core/configurations/helpers/configuration.d.ts +2 -8
  26. package/lib/core/configurations/helpers/configuration.js +23 -40
  27. package/lib/core/configurations/helpers/configuration.js.map +1 -1
  28. package/lib/core/configurations/models/{configuration-model.d.ts → ConfigurationModel.d.ts} +11 -4
  29. package/lib/core/configurations/models/{configuration-model.js → ConfigurationModel.js} +89 -29
  30. package/lib/core/configurations/models/ConfigurationModel.js.map +1 -0
  31. package/lib/core/configurations/models/ConfigurationModel.test.d.ts +1 -0
  32. package/lib/core/configurations/models/ConfigurationModel.test.js +172 -0
  33. package/lib/core/configurations/models/ConfigurationModel.test.js.map +1 -0
  34. package/lib/core/configurations/models/index.d.ts +1 -1
  35. package/lib/core/configurations/models/index.js +1 -1
  36. package/lib/core/configurations/models/index.js.map +1 -1
  37. package/lib/core/organization/configuration.d.ts +4 -19
  38. package/lib/core/organization/configuration.js +2 -68
  39. package/lib/core/organization/configuration.js.map +1 -1
  40. package/lib/enums/integrations.d.ts +2 -1
  41. package/lib/enums/integrations.js +1 -0
  42. package/lib/enums/integrations.js.map +1 -1
  43. package/lib/errors/auth-error-messages.js +1 -1
  44. package/lib/interfaces/configuration/configuration.d.ts +89 -1
  45. package/lib/interfaces/configuration/configuration.js +8 -0
  46. package/lib/interfaces/configuration/configuration.js.map +1 -1
  47. package/lib/interfaces/configuration/configurationRegistry.d.ts +144 -0
  48. package/lib/interfaces/configuration/configurationRegistry.js +3 -0
  49. package/lib/interfaces/configuration/configurationRegistry.js.map +1 -0
  50. package/lib/interfaces/configuration/configuraton-service.d.ts +7 -11
  51. package/lib/interfaces/configuration/event.d.ts +7 -10
  52. package/lib/interfaces/configuration/index.d.ts +1 -0
  53. package/lib/interfaces/configuration/index.js +1 -0
  54. package/lib/interfaces/configuration/index.js.map +1 -1
  55. package/lib/interfaces/generated/generated-models.d.ts +700 -430
  56. package/lib/interfaces/generated/generated-models.js +115 -128
  57. package/lib/interfaces/generated/generated-models.js.map +1 -1
  58. package/lib/interfaces/workbench-exports.d.ts +0 -4
  59. package/lib/interfaces/workbench-exports.js +3 -0
  60. package/lib/interfaces/workbench-exports.js.map +1 -1
  61. package/lib/services/abstract-configuration.d.ts +12 -12
  62. package/lib/services/abstract-configuration.js +59 -6
  63. package/lib/services/abstract-configuration.js.map +1 -1
  64. package/lib/services/abstract-organization-context-service.js +5 -5
  65. package/lib/services/abstract-organization-context-service.js.map +1 -1
  66. package/package.json +6 -3
  67. package/lib/core/configurations/events/abstract-configuration-change-event.d.ts +0 -6
  68. package/lib/core/configurations/events/abstract-configuration-change-event.js +0 -27
  69. package/lib/core/configurations/events/abstract-configuration-change-event.js.map +0 -1
  70. package/lib/core/configurations/events/all-keys-configuration-change-event.d.ts +0 -17
  71. package/lib/core/configurations/events/all-keys-configuration-change-event.js +0 -33
  72. package/lib/core/configurations/events/all-keys-configuration-change-event.js.map +0 -1
  73. package/lib/core/configurations/events/configuration-change-event.d.ts +0 -24
  74. package/lib/core/configurations/events/configuration-change-event.js +0 -84
  75. package/lib/core/configurations/events/configuration-change-event.js.map +0 -1
  76. package/lib/core/configurations/events/organization-configuration-change-event.d.ts +0 -15
  77. package/lib/core/configurations/events/organization-configuration-change-event.js +0 -39
  78. package/lib/core/configurations/events/organization-configuration-change-event.js.map +0 -1
  79. package/lib/core/configurations/models/configuration-model.js.map +0 -1
@@ -43,7 +43,7 @@ export declare type Scalars = {
43
43
  URI: URI;
44
44
  URIInput: URI | UriComponents;
45
45
  };
46
- export declare type IAccessRole = IDefaultRole | IOrganizationRole | IResourceRole | IApplicationRolePermission;
46
+ export declare type IAccessRole = IDefaultRole | IOrganizationRole | IResourceRole | IApplicationRole;
47
47
  /** An access token that grants to the holder the privileges of the user who created it. */
48
48
  export declare type IAccessToken = INode & {
49
49
  __typename?: 'AccessToken';
@@ -97,62 +97,38 @@ export declare type IAccessToken_Input = {
97
97
  lastUsedAt?: Maybe<Scalars['DateTime']>;
98
98
  orgName: Scalars['String'];
99
99
  };
100
- export declare enum IAccountBroadcasterActions {
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
- OnAccountCreated = "onAccountCreated",
154
- OnAccountDeleted = "onAccountDeleted",
155
- AccountOnBoarding = "accountOnBoarding"
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']>;
@@ -265,8 +252,8 @@ export declare type IApplicationPolicy = IIConfigurationModel & {
265
252
  keys?: Maybe<Array<Maybe<Scalars['String']>>>;
266
253
  overrides?: Maybe<Array<Maybe<IOverrides>>>;
267
254
  };
268
- export declare type IApplicationRolePermission = IIConfigurationModel & {
269
- __typename?: 'ApplicationRolePermission';
255
+ export declare type IApplicationRole = IIConfigurationModel & {
256
+ __typename?: 'ApplicationRole';
270
257
  resource?: Maybe<Scalars['URI']>;
271
258
  target?: Maybe<Scalars['Int']>;
272
259
  contents?: Maybe<Scalars['AnyObject']>;
@@ -291,6 +278,8 @@ export declare enum IApplicationRoles {
291
278
  ProjectViewer = "PROJECT_VIEWER",
292
279
  TeamMaintainer = "TEAM_MAINTAINER",
293
280
  TeamMember = "TEAM_MEMBER",
281
+ /** Role is unknown */
282
+ Unknown = "UNKNOWN",
294
283
  /** User who is logged in */
295
284
  User = "USER"
296
285
  }
@@ -357,6 +346,234 @@ export declare type IAuthUserInput = {
357
346
  picture?: Maybe<Scalars['String']>;
358
347
  phoneNo?: Maybe<Scalars['Int']>;
359
348
  };
349
+ /** Base Account Service */
350
+ export declare type IBaseAccountService = {
351
+ __typename?: 'BaseAccountService';
352
+ createDefaultAccount?: Maybe<IUserAccount>;
353
+ createAccount?: Maybe<IUserAccount>;
354
+ updateUserAccount?: Maybe<IUserAccount>;
355
+ findAccountById?: Maybe<IUserAccount>;
356
+ findAccountByUser?: Maybe<IUserAccount>;
357
+ findAccountByEmail?: Maybe<IUserAccount>;
358
+ getUsers?: Maybe<Array<Maybe<IUserAccount>>>;
359
+ updateAccount?: Maybe<IUserAccount>;
360
+ deleteAccount?: Maybe<Scalars['Boolean']>;
361
+ accountOnBoarding?: Maybe<Scalars['Boolean']>;
362
+ verifyUserEmailVerificationToken?: Maybe<Scalars['Boolean']>;
363
+ deleteUserAccount?: Maybe<Scalars['Boolean']>;
364
+ resendUserEmailVerificationEmail?: Maybe<Scalars['Boolean']>;
365
+ dispatchUserVerificationEmail?: Maybe<Scalars['AnyObject']>;
366
+ dispatchUserPasswordResetEmail?: Maybe<Scalars['AnyObject']>;
367
+ getUserTokenDetails?: Maybe<IUserToken>;
368
+ addUserToken?: Maybe<Scalars['Boolean']>;
369
+ removeUserToken?: Maybe<Scalars['Boolean']>;
370
+ getAllUserTokens?: Maybe<Array<Maybe<IUsersToken>>>;
371
+ initiatePasswordResetProcess?: Maybe<Scalars['Boolean']>;
372
+ resetUserPassword?: Maybe<Scalars['Boolean']>;
373
+ validateUserEmailVerificationToken?: Maybe<Scalars['Boolean']>;
374
+ sendEmailVerificationToken?: Maybe<Scalars['Boolean']>;
375
+ };
376
+ /** Base Account Service */
377
+ export declare type IBaseAccountServiceCreateDefaultAccountArgs = {
378
+ user: Scalars['AnyObject'];
379
+ optional?: Maybe<Scalars['AnyObject']>;
380
+ };
381
+ /** Base Account Service */
382
+ export declare type IBaseAccountServiceCreateAccountArgs = {
383
+ account: IUserAccountCreateRequest;
384
+ };
385
+ /** Base Account Service */
386
+ export declare type IBaseAccountServiceUpdateUserAccountArgs = {
387
+ user: Scalars['AnyObject'];
388
+ userInfo: IUserAuth0UpdateFields;
389
+ };
390
+ /** Base Account Service */
391
+ export declare type IBaseAccountServiceFindAccountByIdArgs = {
392
+ id: Scalars['String'];
393
+ };
394
+ /** Base Account Service */
395
+ export declare type IBaseAccountServiceFindAccountByUserArgs = {
396
+ id: Scalars['String'];
397
+ };
398
+ /** Base Account Service */
399
+ export declare type IBaseAccountServiceFindAccountByEmailArgs = {
400
+ email: Scalars['String'];
401
+ };
402
+ /** Base Account Service */
403
+ export declare type IBaseAccountServiceGetUsersArgs = {
404
+ where?: Maybe<IUserAccountWhere>;
405
+ };
406
+ /** Base Account Service */
407
+ export declare type IBaseAccountServiceUpdateAccountArgs = {
408
+ account: IUserAccountUpdateRequest;
409
+ };
410
+ /** Base Account Service */
411
+ export declare type IBaseAccountServiceDeleteAccountArgs = {
412
+ account: IUserAccountRemoveRequest;
413
+ };
414
+ /** Base Account Service */
415
+ export declare type IBaseAccountServiceAccountOnBoardingArgs = {
416
+ input: IIOnBoardingParams;
417
+ context: Scalars['AnyObject'];
418
+ };
419
+ /** Base Account Service */
420
+ export declare type IBaseAccountServiceVerifyUserEmailVerificationTokenArgs = {
421
+ userId: Scalars['String'];
422
+ token: Scalars['String'];
423
+ };
424
+ /** Base Account Service */
425
+ export declare type IBaseAccountServiceDeleteUserAccountArgs = {
426
+ id: Scalars['String'];
427
+ };
428
+ /** Base Account Service */
429
+ export declare type IBaseAccountServiceResendUserEmailVerificationEmailArgs = {
430
+ id: Scalars['String'];
431
+ };
432
+ /** Base Account Service */
433
+ export declare type IBaseAccountServiceDispatchUserVerificationEmailArgs = {
434
+ email: Scalars['String'];
435
+ emailVerificationToken: IUserTokenInput;
436
+ };
437
+ /** Base Account Service */
438
+ export declare type IBaseAccountServiceDispatchUserPasswordResetEmailArgs = {
439
+ user: IUserAccountInput;
440
+ token: Scalars['String'];
441
+ };
442
+ /** Base Account Service */
443
+ export declare type IBaseAccountServiceGetUserTokenDetailsArgs = {
444
+ userId: Scalars['String'];
445
+ type: ITokenTypesEnum;
446
+ };
447
+ /** Base Account Service */
448
+ export declare type IBaseAccountServiceAddUserTokenArgs = {
449
+ userId: Scalars['String'];
450
+ token: IUserTokenInput;
451
+ };
452
+ /** Base Account Service */
453
+ export declare type IBaseAccountServiceRemoveUserTokenArgs = {
454
+ userId: Scalars['String'];
455
+ token: IUserTokenInput;
456
+ };
457
+ /** Base Account Service */
458
+ export declare type IBaseAccountServiceGetAllUserTokensArgs = {
459
+ userIds: Array<Maybe<Scalars['String']>>;
460
+ tokenTypes: Array<ITokenTypesEnum>;
461
+ };
462
+ /** Base Account Service */
463
+ export declare type IBaseAccountServiceInitiatePasswordResetProcessArgs = {
464
+ email: Scalars['String'];
465
+ };
466
+ /** Base Account Service */
467
+ export declare type IBaseAccountServiceResetUserPasswordArgs = {
468
+ input: IUserPasswordResetInput;
469
+ };
470
+ /** Base Account Service */
471
+ export declare type IBaseAccountServiceValidateUserEmailVerificationTokenArgs = {
472
+ code: Scalars['String'];
473
+ userAuth0Id: Scalars['String'];
474
+ email: Scalars['String'];
475
+ };
476
+ /** Base Account Service */
477
+ export declare type IBaseAccountServiceSendEmailVerificationTokenArgs = {
478
+ email: Scalars['String'];
479
+ };
480
+ /** Base Organization Service */
481
+ export declare type IBaseOrganizationService = {
482
+ __typename?: 'BaseOrganizationService';
483
+ getOrganization?: Maybe<IOrganization>;
484
+ createDefaultOrganization?: Maybe<IOrganization>;
485
+ getUserOrganizations?: Maybe<Array<Maybe<IOrganization>>>;
486
+ createOrganization?: Maybe<IOrganization>;
487
+ updateOrganization?: Maybe<IOrganization>;
488
+ removeOrganization?: Maybe<Scalars['Boolean']>;
489
+ getUserOrgRole?: Maybe<IOrgUserRole>;
490
+ sendInvitation?: Maybe<Scalars['AnyObject']>;
491
+ declineInvitation?: Maybe<Scalars['Boolean']>;
492
+ };
493
+ /** Base Organization Service */
494
+ export declare type IBaseOrganizationServiceGetOrganizationArgs = {
495
+ id?: Maybe<Scalars['String']>;
496
+ };
497
+ /** Base Organization Service */
498
+ export declare type IBaseOrganizationServiceCreateDefaultOrganizationArgs = {
499
+ user?: Maybe<IAuthUserInput>;
500
+ };
501
+ /** Base Organization Service */
502
+ export declare type IBaseOrganizationServiceGetUserOrganizationsArgs = {
503
+ userId?: Maybe<Scalars['String']>;
504
+ };
505
+ /** Base Organization Service */
506
+ export declare type IBaseOrganizationServiceCreateOrganizationArgs = {
507
+ workspace: IOrganizationCreateRequest;
508
+ };
509
+ /** Base Organization Service */
510
+ export declare type IBaseOrganizationServiceUpdateOrganizationArgs = {
511
+ workspace: IOrganizationUpdateRequest;
512
+ };
513
+ /** Base Organization Service */
514
+ export declare type IBaseOrganizationServiceRemoveOrganizationArgs = {
515
+ workspace: IOrganizationRemoveRequest;
516
+ };
517
+ /** Base Organization Service */
518
+ export declare type IBaseOrganizationServiceGetUserOrgRoleArgs = {
519
+ orgName: Scalars['String'];
520
+ userId: Scalars['String'];
521
+ };
522
+ /** Base Organization Service */
523
+ export declare type IBaseOrganizationServiceSendInvitationArgs = {
524
+ request: IOrganizationInvitationRequest;
525
+ };
526
+ /** Base Organization Service */
527
+ export declare type IBaseOrganizationServiceDeclineInvitationArgs = {
528
+ id: Scalars['String'];
529
+ };
530
+ /** Base Team Service */
531
+ export declare type IBaseTeamService = {
532
+ __typename?: 'BaseTeamService';
533
+ getTeam?: Maybe<IAccountTeam>;
534
+ getUserTeams?: Maybe<Array<Maybe<IAccountTeam>>>;
535
+ createTeam?: Maybe<IAccountTeam>;
536
+ updateTeam?: Maybe<IAccountTeam>;
537
+ addWorkspaces?: Maybe<IAccountTeam>;
538
+ removeTeam?: Maybe<Scalars['Boolean']>;
539
+ createDefaultTeam?: Maybe<IAccountTeam>;
540
+ sendProjectNotification?: Maybe<Scalars['Boolean']>;
541
+ };
542
+ /** Base Team Service */
543
+ export declare type IBaseTeamServiceGetTeamArgs = {
544
+ id?: Maybe<Scalars['String']>;
545
+ };
546
+ /** Base Team Service */
547
+ export declare type IBaseTeamServiceGetUserTeamsArgs = {
548
+ userId?: Maybe<Scalars['String']>;
549
+ };
550
+ /** Base Team Service */
551
+ export declare type IBaseTeamServiceCreateTeamArgs = {
552
+ team?: Maybe<ITeamCreateRequest>;
553
+ };
554
+ /** Base Team Service */
555
+ export declare type IBaseTeamServiceUpdateTeamArgs = {
556
+ team?: Maybe<ITeamUpdateRequest>;
557
+ };
558
+ /** Base Team Service */
559
+ export declare type IBaseTeamServiceAddWorkspacesArgs = {
560
+ id?: Maybe<Scalars['String']>;
561
+ workspaces?: Maybe<Array<Maybe<Scalars['String']>>>;
562
+ };
563
+ /** Base Team Service */
564
+ export declare type IBaseTeamServiceRemoveTeamArgs = {
565
+ team?: Maybe<ITeamRemoveRequest>;
566
+ };
567
+ /** Base Team Service */
568
+ export declare type IBaseTeamServiceCreateDefaultTeamArgs = {
569
+ organization?: Maybe<IOrganizationInput>;
570
+ user?: Maybe<IAuthUserInput>;
571
+ };
572
+ /** Base Team Service */
573
+ export declare type IBaseTeamServiceSendProjectNotificationArgs = {
574
+ teamId?: Maybe<Scalars['String']>;
575
+ projectName?: Maybe<Scalars['String']>;
576
+ };
360
577
  export declare enum ICacheControlScope {
361
578
  Public = "PUBLIC",
362
579
  Private = "PRIVATE"
@@ -374,8 +591,9 @@ export declare type ICityUpdateInput = {
374
591
  state: ITerritorialStateUpdateInput;
375
592
  };
376
593
  export declare enum IClientCacheTypeNames {
594
+ ApplicationConfiguration = "ApplicationConfiguration",
377
595
  ApplicationPolicy = "ApplicationPolicy",
378
- ApplicationRolePermission = "ApplicationRolePermission",
596
+ ApplicationRole = "ApplicationRole",
379
597
  Configuration = "Configuration",
380
598
  Context = "Context",
381
599
  ContextKeyService = "ContextKeyService",
@@ -396,6 +614,7 @@ export declare enum IClientCacheTypeNames {
396
614
  OrganizationResourceConfiguration = "OrganizationResourceConfiguration",
397
615
  OrganizationResourceData = "OrganizationResourceData",
398
616
  OrganizationRole = "OrganizationRole",
617
+ PolicyConfiguration = "PolicyConfiguration",
399
618
  ResourcePolicy = "ResourcePolicy",
400
619
  ResourceRole = "ResourceRole",
401
620
  ResourceUser = "ResourceUser",
@@ -428,6 +647,7 @@ export declare enum IConfigCollectionName {
428
647
  Application = "application",
429
648
  Clients = "clients",
430
649
  IntegrationWorkflow = "integrationWorkflow",
650
+ Integrationconfigurations = "integrationconfigurations",
431
651
  Machines = "machines",
432
652
  Organizations = "organizations",
433
653
  Projects = "projects",
@@ -450,7 +670,7 @@ export declare enum IConfigFragmentName {
450
670
  /** Billing */
451
671
  BillingPlanPolicies = "billingPlanPolicies"
452
672
  }
453
- export declare type IConfiguration = IDefaultConfiguration | IMachineConfiguration | IUserConfiguration | IOrganizationConfiguration | IOrganizationResourceConfiguration;
673
+ export declare type IConfiguration = IDefaultConfiguration | IPolicyConfiguration | IApplicationConfiguration | IUserConfiguration | IMachineConfiguration | IOrganizationConfiguration | IOrganizationResourceConfiguration;
454
674
  export declare enum IConfigurationContributionNames {
455
675
  DefaultPermissions = "defaultPermissions",
456
676
  DefaultPolicies = "defaultPolicies",
@@ -461,6 +681,8 @@ export declare enum IConfigurationContributionNames {
461
681
  export declare type IConfigurationData = {
462
682
  __typename?: 'ConfigurationData';
463
683
  defaults?: Maybe<IIConfigurationModel>;
684
+ policy?: Maybe<IIConfigurationModel>;
685
+ application?: Maybe<IIConfigurationModel>;
464
686
  user?: Maybe<IIConfigurationModel>;
465
687
  machine?: Maybe<IIConfigurationModel>;
466
688
  organization?: Maybe<IIConfigurationModel>;
@@ -673,8 +895,13 @@ export declare type IDeviceInfoInput = {
673
895
  os: Scalars['String'];
674
896
  deviceName?: Maybe<Scalars['String']>;
675
897
  browserName?: Maybe<Scalars['String']>;
676
- isMobile: Scalars['Boolean'];
898
+ platform: IDeviceInfoPlatform;
677
899
  };
900
+ export declare enum IDeviceInfoPlatform {
901
+ Mobile = "MOBILE",
902
+ Web = "WEB",
903
+ Extension = "EXTENSION"
904
+ }
678
905
  export declare enum IEditPresentationTypes {
679
906
  Multiline = "Multiline",
680
907
  Singleline = "Singleline"
@@ -809,14 +1036,6 @@ export declare type IICity = {
809
1036
  createdAt: Scalars['Date'];
810
1037
  updatedAt?: Maybe<Scalars['Date']>;
811
1038
  };
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
1039
  export declare type IIConfigurationModel = {
821
1040
  resource?: Maybe<Scalars['URI']>;
822
1041
  target?: Maybe<Scalars['Int']>;
@@ -928,9 +1147,6 @@ export declare type IIntegraitonConfigurationId = {
928
1147
  __typename?: 'IntegraitonConfigurationId';
929
1148
  id?: Maybe<Scalars['String']>;
930
1149
  };
931
- export declare enum IIntegrationConfigServiceAction {
932
- OnIntegrationConfigurationDeleted = "onIntegrationConfigurationDeleted"
933
- }
934
1150
  export declare type IIntegrationConfiguration = {
935
1151
  __typename?: 'IntegrationConfiguration';
936
1152
  id?: Maybe<Scalars['ID']>;
@@ -954,6 +1170,8 @@ export declare type IIntegrationConfigurationCreateOrUpdateInput = {
954
1170
  integrationInfo?: Maybe<Scalars['JSON']>;
955
1171
  userId?: Maybe<Scalars['ID']>;
956
1172
  orgName?: Maybe<Scalars['String']>;
1173
+ settings?: Maybe<Scalars['AnyObject']>;
1174
+ settingsConfiguration?: Maybe<Scalars['AnyObject']>;
957
1175
  };
958
1176
  export declare type IIntegrationConfigurationFilterInput = {
959
1177
  id?: Maybe<Scalars['ID']>;
@@ -980,6 +1198,11 @@ export declare type IIntegrationPreferences = {
980
1198
  __typename?: 'IntegrationPreferences';
981
1199
  dummy?: Maybe<Scalars['String']>;
982
1200
  };
1201
+ export declare enum IIntegrationWorkflowServiceAction {
1202
+ OnIntegrationWorkflowCreated = "onIntegrationWorkflowCreated",
1203
+ OnIntegrationWorkflowUpdated = "onIntegrationWorkflowUpdated",
1204
+ OnIntegrationWorkflowDeleted = "onIntegrationWorkflowDeleted"
1205
+ }
983
1206
  export declare type IInviteMember = {
984
1207
  __typename?: 'InviteMember';
985
1208
  id?: Maybe<Scalars['String']>;
@@ -1006,6 +1229,13 @@ export declare type IKeyPathSegment = {
1006
1229
  /** The index of the array at this location to descend into. */
1007
1230
  index?: Maybe<Scalars['Int']>;
1008
1231
  };
1232
+ export declare type ILinkedIdentity = {
1233
+ __typename?: 'LinkedIdentity';
1234
+ connection?: Maybe<Scalars['String']>;
1235
+ isSocial?: Maybe<Scalars['Boolean']>;
1236
+ provider?: Maybe<Scalars['String']>;
1237
+ user_id?: Maybe<Scalars['String']>;
1238
+ };
1009
1239
  export declare type ILoginError = {
1010
1240
  __typename?: 'LoginError';
1011
1241
  timeStamp?: Maybe<Scalars['DateTime']>;
@@ -1042,6 +1272,8 @@ export declare enum IMailTemplateId {
1042
1272
  BillingNotificationId = "BillingNotificationId",
1043
1273
  /** Prefix with Db to make sure it look into the database */
1044
1274
  DbTeamInivitationId = "DbTeamInivitationId",
1275
+ /** Prefix with Db to make sure it look into the database */
1276
+ EmailVerificationOtp = "EMAIL_VERIFICATION_OTP",
1045
1277
  JoinNotifyMember = "JOIN_NOTIFY_MEMBER",
1046
1278
  JoinNotifyOwner = "JOIN_NOTIFY_OWNER",
1047
1279
  /** Prefix with Db to make sure it look into the database */
@@ -1094,6 +1326,7 @@ export declare enum IMoleculerServiceName {
1094
1326
  AccountsPostEventsService = "AccountsPostEventsService",
1095
1327
  ApiManagementMoleculerService = "ApiManagementMoleculerService",
1096
1328
  AuthUserService = "AuthUserService",
1329
+ IntegrationWorkflowService = "IntegrationWorkflowService",
1097
1330
  OrganizationContextService = "OrganizationContextService",
1098
1331
  PaymentEventListener = "PaymentEventListener",
1099
1332
  PaymentService = "PaymentService",
@@ -1173,12 +1406,11 @@ export declare type IMutation = {
1173
1406
  removedUserAuthIntegration?: Maybe<Scalars['Boolean']>;
1174
1407
  renewAuthToken?: Maybe<IAuthTokens>;
1175
1408
  resendOrganizationInvitation?: Maybe<Scalars['Boolean']>;
1176
- resendUserEmailVerificationEmail?: Maybe<Scalars['Boolean']>;
1177
1409
  resetUserPassword?: Maybe<Scalars['Boolean']>;
1410
+ sendEmailVerificationToken?: Maybe<Scalars['Boolean']>;
1178
1411
  sendOrganizationInvitation?: Maybe<Scalars['Boolean']>;
1179
1412
  sendUserPasswordResetEmail?: Maybe<Scalars['Boolean']>;
1180
1413
  setSettingsValueByResource?: Maybe<Scalars['Boolean']>;
1181
- toggleSidebar?: Maybe<Scalars['Boolean']>;
1182
1414
  /** Triggers onUserLoggedIn events */
1183
1415
  updateAuth0UserPassword?: Maybe<Scalars['Boolean']>;
1184
1416
  updateConfiguration?: Maybe<Scalars['Boolean']>;
@@ -1195,7 +1427,8 @@ export declare type IMutation = {
1195
1427
  updateRoleValue?: Maybe<Scalars['Boolean']>;
1196
1428
  updateSelectedOrgResource?: Maybe<Scalars['Boolean']>;
1197
1429
  updateUserAccount?: Maybe<Scalars['Boolean']>;
1198
- verifyUserEmailVerificationToken?: Maybe<Scalars['Boolean']>;
1430
+ validatePasswordResetOtp?: Maybe<Scalars['Boolean']>;
1431
+ validateUserEmailVerificationToken?: Maybe<Scalars['Boolean']>;
1199
1432
  };
1200
1433
  export declare type IMutationAddSshKeyArgs = {
1201
1434
  key: ISshKeyInput;
@@ -1282,6 +1515,8 @@ export declare type IMutationInitializeOrgNameInContextArgs = {
1282
1515
  };
1283
1516
  export declare type IMutationInitializePopupIntegrationAuthorizationArgs = {
1284
1517
  code?: Maybe<Scalars['String']>;
1518
+ codeVerifier?: Maybe<Scalars['String']>;
1519
+ platform?: Maybe<IDeviceInfoPlatform>;
1285
1520
  };
1286
1521
  export declare type IMutationInitializeTeamInContextArgs = {
1287
1522
  teamName?: Maybe<Scalars['String']>;
@@ -1320,14 +1555,14 @@ export declare type IMutationRemoveTeamMemberArgs = {
1320
1555
  };
1321
1556
  export declare type IMutationRemoveUserAuthSessionArgs = {
1322
1557
  sessionId?: Maybe<Scalars['String']>;
1323
- isMobile?: Maybe<Scalars['Boolean']>;
1558
+ platform?: Maybe<IDeviceInfoPlatform>;
1324
1559
  };
1325
1560
  export declare type IMutationRemovedUserAuthIntegrationArgs = {
1326
1561
  provider?: Maybe<Scalars['String']>;
1327
1562
  };
1328
1563
  export declare type IMutationRenewAuthTokenArgs = {
1329
1564
  sessionId?: Maybe<Scalars['String']>;
1330
- isMobile?: Maybe<Scalars['Boolean']>;
1565
+ platform?: Maybe<IDeviceInfoPlatform>;
1331
1566
  };
1332
1567
  export declare type IMutationResendOrganizationInvitationArgs = {
1333
1568
  id: Scalars['ID'];
@@ -1335,6 +1570,9 @@ export declare type IMutationResendOrganizationInvitationArgs = {
1335
1570
  export declare type IMutationResetUserPasswordArgs = {
1336
1571
  input: IUserPasswordResetInput;
1337
1572
  };
1573
+ export declare type IMutationSendEmailVerificationTokenArgs = {
1574
+ email: Scalars['String'];
1575
+ };
1338
1576
  export declare type IMutationSendOrganizationInvitationArgs = {
1339
1577
  request?: Maybe<IOrganizationInvitationRequest>;
1340
1578
  };
@@ -1346,9 +1584,6 @@ export declare type IMutationSetSettingsValueByResourceArgs = {
1346
1584
  key?: Maybe<Scalars['String']>;
1347
1585
  value?: Maybe<Scalars['String']>;
1348
1586
  };
1349
- export declare type IMutationToggleSidebarArgs = {
1350
- state: Scalars['Boolean'];
1351
- };
1352
1587
  export declare type IMutationUpdateAuth0UserPasswordArgs = {
1353
1588
  userId?: Maybe<Scalars['String']>;
1354
1589
  password?: Maybe<Scalars['String']>;
@@ -1432,8 +1667,12 @@ export declare type IMutationUpdateSelectedOrgResourceArgs = {
1432
1667
  export declare type IMutationUpdateUserAccountArgs = {
1433
1668
  userInfo?: Maybe<IUserAuth0UpdateFields>;
1434
1669
  };
1435
- export declare type IMutationVerifyUserEmailVerificationTokenArgs = {
1436
- token?: Maybe<Scalars['String']>;
1670
+ export declare type IMutationValidatePasswordResetOtpArgs = {
1671
+ email: Scalars['String'];
1672
+ code: Scalars['String'];
1673
+ };
1674
+ export declare type IMutationValidateUserEmailVerificationTokenArgs = {
1675
+ code: Scalars['String'];
1437
1676
  };
1438
1677
  /** An object with an ID. */
1439
1678
  export declare type INode = {
@@ -1454,6 +1693,7 @@ export declare type IOrgMember = {
1454
1693
  _id?: Maybe<Scalars['String']>;
1455
1694
  userId?: Maybe<Scalars['String']>;
1456
1695
  role?: Maybe<IApplicationRoles>;
1696
+ user: IUserAccount;
1457
1697
  isSelf?: Maybe<Scalars['Boolean']>;
1458
1698
  inactive?: Maybe<Scalars['Boolean']>;
1459
1699
  name?: Maybe<Scalars['String']>;
@@ -1476,18 +1716,10 @@ export declare type IOrgUser = IIOrgUser & {
1476
1716
  role?: Maybe<IApplicationRoles>;
1477
1717
  inactive?: Maybe<Scalars['Boolean']>;
1478
1718
  orgName: Scalars['String'];
1479
- user: IOrgUserAccunt;
1719
+ user: IUserAccount;
1480
1720
  isSelf: Scalars['Boolean'];
1481
1721
  crossCheckEmail?: Maybe<Scalars['String']>;
1482
1722
  };
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
1723
  export declare type IOrgUserInput = {
1492
1724
  userId?: Maybe<Scalars['String']>;
1493
1725
  role?: Maybe<IApplicationRoles>;
@@ -1756,46 +1988,6 @@ export declare type IOrganizationRole = IIConfigurationModel & {
1756
1988
  keys?: Maybe<Array<Maybe<Scalars['String']>>>;
1757
1989
  overrides?: Maybe<Array<Maybe<IOverrides>>>;
1758
1990
  };
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
1991
  export declare enum IOrganizationServiceAction {
1800
1992
  GetOrganization = "getOrganization",
1801
1993
  CreateDefaultOrganization = "createDefaultOrganization",
@@ -1847,6 +2039,7 @@ export declare type IOrganizationsDeletedEvent = {
1847
2039
  };
1848
2040
  export declare type IOverrides = {
1849
2041
  __typename?: 'Overrides';
2042
+ keys?: Maybe<Array<Maybe<Scalars['String']>>>;
1850
2043
  contents?: Maybe<Scalars['AnyObject']>;
1851
2044
  identifiers?: Maybe<Array<Maybe<Scalars['String']>>>;
1852
2045
  };
@@ -1898,6 +2091,17 @@ export declare type IPhoneNumberInput = {
1898
2091
  countryCode?: Maybe<Scalars['String']>;
1899
2092
  phoneNumber?: Maybe<Scalars['String']>;
1900
2093
  };
2094
+ export declare type IPolicyConfiguration = IIConfigurationModel & {
2095
+ __typename?: 'PolicyConfiguration';
2096
+ /** The ID. */
2097
+ id?: Maybe<Scalars['ID']>;
2098
+ /** The URL to the user's settings. */
2099
+ resource: Scalars['URI'];
2100
+ target?: Maybe<Scalars['Int']>;
2101
+ contents?: Maybe<Scalars['AnyObject']>;
2102
+ keys?: Maybe<Array<Maybe<Scalars['String']>>>;
2103
+ overrides?: Maybe<Array<Maybe<IOverrides>>>;
2104
+ };
1901
2105
  export declare type IPolicySubject = {
1902
2106
  __typename?: 'PolicySubject';
1903
2107
  /** The URL to the policies. */
@@ -2058,11 +2262,18 @@ export declare type IQuery = {
2058
2262
  externalAccounts: IExternalAccountConnection;
2059
2263
  /** Fetches a User from Auth0 Service */
2060
2264
  fetchAuth0User?: Maybe<IUserProfile>;
2265
+ /**
2266
+ * fetchUserAuthorizedDevices
2267
+ * @deprecated not used
2268
+ * @deprecated Field no longer supported
2269
+ */
2061
2270
  fetchUserAuthorizedDevices?: Maybe<Array<Maybe<IUserDevice>>>;
2271
+ fetchUserSessions?: Maybe<Array<Maybe<IUserSession>>>;
2062
2272
  filterIntegrationConfiguration?: Maybe<Array<Maybe<IIntegrationConfiguration>>>;
2063
2273
  getAccounts?: Maybe<Array<Maybe<IUserAccount>>>;
2064
2274
  getAllCountries?: Maybe<Array<Maybe<ICountry>>>;
2065
2275
  getAllIntegrationConfigurations?: Maybe<IIntegrationConfigurationsOutput>;
2276
+ getAllUsersTokens?: Maybe<Array<Maybe<IUsersToken>>>;
2066
2277
  getConfiguration?: Maybe<Array<Maybe<IConfiguration>>>;
2067
2278
  getConfigurationData?: Maybe<IConfigurationData>;
2068
2279
  getConfigurationPolicies?: Maybe<Array<Maybe<IConfigurationPolicy>>>;
@@ -2115,7 +2326,6 @@ export declare type IQuery = {
2115
2326
  resolveConfiguration?: Maybe<Scalars['AnyObject']>;
2116
2327
  resolveSettings?: Maybe<Array<Maybe<IContributionSettings>>>;
2117
2328
  selectedOrgResource?: Maybe<IContext>;
2118
- sidebarState?: Maybe<Scalars['Boolean']>;
2119
2329
  team?: Maybe<IAccountTeam>;
2120
2330
  teams?: Maybe<Array<Maybe<IAccountTeam>>>;
2121
2331
  /** The policies for the viewer. */
@@ -2172,6 +2382,10 @@ export declare type IQueryGetAllIntegrationConfigurationsArgs = {
2172
2382
  skip?: Maybe<Scalars['Int']>;
2173
2383
  sort?: Maybe<ISort>;
2174
2384
  };
2385
+ export declare type IQueryGetAllUsersTokensArgs = {
2386
+ userIds?: Maybe<Array<Scalars['String']>>;
2387
+ types: Array<ITokenTypesEnum>;
2388
+ };
2175
2389
  export declare type IQueryGetConfigurationArgs = {
2176
2390
  input?: Maybe<Array<Maybe<IConfigurationInput>>>;
2177
2391
  };
@@ -2588,44 +2802,6 @@ export declare type ITeamRemoveRequest = {
2588
2802
  id: Scalars['String'];
2589
2803
  requestedUserId?: Maybe<Scalars['String']>;
2590
2804
  };
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
2805
  export declare enum ITeamServiceAction {
2630
2806
  GetTeam = "getTeam",
2631
2807
  GetUserTeams = "getUserTeams",
@@ -2663,6 +2839,10 @@ export declare type ITerritorialStateUpdateInput = {
2663
2839
  name?: Maybe<Scalars['String']>;
2664
2840
  country: Scalars['Int'];
2665
2841
  };
2842
+ export declare enum ITokenTypesEnum {
2843
+ EmailVerification = "EMAIL_VERIFICATION",
2844
+ PasswordReset = "PASSWORD_RESET"
2845
+ }
2666
2846
  /**
2667
2847
  * The User Account.
2668
2848
  *
@@ -2675,8 +2855,8 @@ export declare type ITerritorialStateUpdateInput = {
2675
2855
  * @property
2676
2856
  * featureFlags: Any super power given to the user via a super user
2677
2857
  * @property
2678
- * identities: An array of objects with information about the user's identities.
2679
- * More than one will exists in case accounts are linked.
2858
+ * tokens: An array of objects with information about the user's tokens.
2859
+ * More than one will exists.
2680
2860
  * @property
2681
2861
  * inactive: true if the user is not currently being billed for service.
2682
2862
  * @property
@@ -2684,10 +2864,6 @@ export declare type ITerritorialStateUpdateInput = {
2684
2864
  * @property
2685
2865
  * userOgs: the orgs and roles for this user on each.
2686
2866
  */
2687
- export declare enum ITokenTypesEnum {
2688
- EmailVerification = "EMAIL_VERIFICATION",
2689
- PasswordReset = "PASSWORD_RESET"
2690
- }
2691
2867
  export declare type IUserAccount = INode & {
2692
2868
  __typename?: 'UserAccount';
2693
2869
  /**
@@ -2708,6 +2884,27 @@ export declare type IUserAccount = INode & {
2708
2884
  tokens?: Maybe<Array<Maybe<IUserToken>>>;
2709
2885
  username?: Maybe<Scalars['String']>;
2710
2886
  };
2887
+ /**
2888
+ * The User Account.
2889
+ *
2890
+ * @property
2891
+ * id: User ID
2892
+ * @property
2893
+ * email: The user email
2894
+ * @property
2895
+ * emailVerified: ture if email is verified, otherwise false
2896
+ * @property
2897
+ * featureFlags: Any super power given to the user via a super user
2898
+ * @property
2899
+ * tokens: An array of objects with information about the user's tokens.
2900
+ * More than one will exists.
2901
+ * @property
2902
+ * inactive: true if the user is not currently being billed for service.
2903
+ * @property
2904
+ * isBillingLeader: true if user is BillingLeader
2905
+ * @property
2906
+ * userOgs: the orgs and roles for this user on each.
2907
+ */
2711
2908
  export declare type IUserAccountAccessTokensArgs = {
2712
2909
  first?: Maybe<Scalars['Int']>;
2713
2910
  last?: Maybe<Scalars['Int']>;
@@ -2789,7 +2986,7 @@ export declare type IUserAuth0SessionDeviceInfo = {
2789
2986
  os?: Maybe<Scalars['String']>;
2790
2987
  deviceName?: Maybe<Scalars['String']>;
2791
2988
  browserName?: Maybe<Scalars['String']>;
2792
- isMobile: Scalars['Boolean'];
2989
+ platform: IDeviceInfoPlatform;
2793
2990
  };
2794
2991
  export declare type IUserAuth0SessionInfo = {
2795
2992
  __typename?: 'UserAuth0SessionInfo';
@@ -2880,21 +3077,10 @@ export declare enum IUserOrderBy {
2880
3077
  UpdatedAtAsc = "updatedAt_ASC",
2881
3078
  UpdatedAtDesc = "updatedAt_DESC"
2882
3079
  }
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
3080
  export declare type IUserPasswordResetInput = {
2896
- password: Scalars['String'];
2897
- token: Scalars['String'];
3081
+ newPassword: Scalars['String'];
3082
+ currentPassword: Scalars['String'];
3083
+ email: Scalars['String'];
2898
3084
  };
2899
3085
  export declare type IUserPreviousValues = {
2900
3086
  __typename?: 'UserPreviousValues';
@@ -2936,6 +3122,16 @@ export declare type IUserProfile = IIAuth0User & IIAuth0UserProfile & IIAuth0Tok
2936
3122
  at_hash?: Maybe<Scalars['String']>;
2937
3123
  nonce?: Maybe<Scalars['String']>;
2938
3124
  };
3125
+ export declare enum IUserServiceAction {
3126
+ OnEmailVerified = "onEmailVerified"
3127
+ }
3128
+ export declare type IUserSession = {
3129
+ __typename?: 'UserSession';
3130
+ sessionId?: Maybe<Scalars['String']>;
3131
+ deviceInfo?: Maybe<IUserAuth0SessionDeviceInfo>;
3132
+ lastLoginAt?: Maybe<Scalars['Date']>;
3133
+ lastLoginIp?: Maybe<Scalars['String']>;
3134
+ };
2939
3135
  export declare type IUserSessionId = {
2940
3136
  __typename?: 'UserSessionId';
2941
3137
  sessionId?: Maybe<Scalars['String']>;
@@ -2983,7 +3179,7 @@ export declare type IUserState = {
2983
3179
  isProfileFetching?: Maybe<Scalars['Boolean']>;
2984
3180
  /** True incase of social logged in user */
2985
3181
  isSocialLogin?: Maybe<Scalars['Boolean']>;
2986
- linkedIdentities?: Maybe<Array<Maybe<Scalars['String']>>>;
3182
+ linkedIdentities?: Maybe<Array<Maybe<ILinkedIdentity>>>;
2987
3183
  loggingInProgress?: Maybe<Scalars['Boolean']>;
2988
3184
  /** True while Password verify link sending */
2989
3185
  passwordResetProgress?: Maybe<Scalars['Boolean']>;
@@ -3009,6 +3205,11 @@ export declare type IUserTokenInput = {
3009
3205
  token: Scalars['String'];
3010
3206
  valid?: Maybe<Scalars['Boolean']>;
3011
3207
  };
3208
+ export declare type IUsersToken = {
3209
+ __typename?: 'UsersToken';
3210
+ userId: Scalars['String'];
3211
+ tokens?: Maybe<Array<Maybe<IUserToken>>>;
3212
+ };
3012
3213
  export declare type IViewerPoliciesInput = {
3013
3214
  target: Scalars['Int'];
3014
3215
  /**
@@ -3168,12 +3369,6 @@ export declare type IResendOrganizationInvitationMutationVariables = Exact<{
3168
3369
  export declare type IResendOrganizationInvitationMutation = ({
3169
3370
  __typename?: 'Mutation';
3170
3371
  } & 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
3372
  export declare type IResetUserPasswordMutationVariables = Exact<{
3178
3373
  input: IUserPasswordResetInput;
3179
3374
  }>;
@@ -3186,6 +3381,12 @@ export declare type ISendUserPasswordResetEmailMutationVariables = Exact<{
3186
3381
  export declare type ISendUserPasswordResetEmailMutation = ({
3187
3382
  __typename?: 'Mutation';
3188
3383
  } & Pick<IMutation, 'sendUserPasswordResetEmail'>);
3384
+ export declare type ISendEmailVerificationMutationVariables = Exact<{
3385
+ email: Scalars['String'];
3386
+ }>;
3387
+ export declare type ISendEmailVerificationMutation = ({
3388
+ __typename?: 'Mutation';
3389
+ } & Pick<IMutation, 'sendEmailVerificationToken'>);
3189
3390
  export declare type ISendOrganizationInvitationMutationVariables = Exact<{
3190
3391
  request: IOrganizationInvitationRequest;
3191
3392
  }>;
@@ -3227,12 +3428,19 @@ export declare type IUpdateUserAccountMutationVariables = Exact<{
3227
3428
  export declare type IUpdateUserAccountMutation = ({
3228
3429
  __typename?: 'Mutation';
3229
3430
  } & Pick<IMutation, 'updateUserAccount'>);
3230
- export declare type IVerifyUserEmailVerificationTokenMutationVariables = Exact<{
3231
- token?: Maybe<Scalars['String']>;
3431
+ export declare type IValidatePasswordResetOtpMutationVariables = Exact<{
3432
+ email: Scalars['String'];
3433
+ code: Scalars['String'];
3434
+ }>;
3435
+ export declare type IValidatePasswordResetOtpMutation = ({
3436
+ __typename?: 'Mutation';
3437
+ } & Pick<IMutation, 'validatePasswordResetOtp'>);
3438
+ export declare type IValidateUserEmailVerificationMutationVariables = Exact<{
3439
+ code: Scalars['String'];
3232
3440
  }>;
3233
- export declare type IVerifyUserEmailVerificationTokenMutation = ({
3441
+ export declare type IValidateUserEmailVerificationMutation = ({
3234
3442
  __typename?: 'Mutation';
3235
- } & Pick<IMutation, 'verifyUserEmailVerificationToken'>);
3443
+ } & Pick<IMutation, 'validateUserEmailVerificationToken'>);
3236
3444
  export declare type IGetUserOrganizationsListQueryVariables = Exact<{
3237
3445
  [key: string]: never;
3238
3446
  }>;
@@ -3349,8 +3557,8 @@ export declare type IGetOrganizationMembersWithNameQuery = ({
3349
3557
  __typename?: 'OrgUser';
3350
3558
  } & Pick<IOrgUser, 'userId' | 'inactive' | 'crossCheckEmail' | 'role'> & {
3351
3559
  user: ({
3352
- __typename?: 'OrgUserAccunt';
3353
- } & Pick<IOrgUserAccunt, 'alias' | 'email' | 'username' | 'emailVerified'>);
3560
+ __typename?: 'UserAccount';
3561
+ } & Pick<IUserAccount, 'alias' | 'email' | 'username' | 'emailVerified' | 'familyName' | 'givenName'>);
3354
3562
  })>>>;
3355
3563
  })>;
3356
3564
  });
@@ -3469,7 +3677,11 @@ export declare type IGetOrganizationMembersQuery = ({
3469
3677
  } & Pick<IOrgMembersOutput, 'totalCount'> & {
3470
3678
  data?: Maybe<Array<Maybe<({
3471
3679
  __typename?: 'OrgMember';
3472
- } & Pick<IOrgMember, 'userId' | 'isSelf' | 'role' | 'name' | 'email' | 'teamNames' | 'crossCheckEmail'>)>>>;
3680
+ } & Pick<IOrgMember, 'userId' | 'isSelf' | 'role' | 'name' | 'email' | 'teamNames' | 'crossCheckEmail'> & {
3681
+ user: ({
3682
+ __typename?: 'UserAccount';
3683
+ } & Pick<IUserAccount, 'familyName' | 'givenName' | 'alias' | 'email'>);
3684
+ })>>>;
3473
3685
  })>;
3474
3686
  });
3475
3687
  export declare type IOrganizationsQueryVariables = Exact<{
@@ -3626,18 +3838,6 @@ export declare type IUserCreationEventFragment = ({
3626
3838
  __typename?: 'UserMetadata';
3627
3839
  } & Pick<IUserMetadata, 'last_name' | 'first_name' | 'phone_number' | 'work_email' | 'country' | 'company_name' | 'dob' | 'zip_code'>)>;
3628
3840
  });
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
3841
  export declare type IConfigurationUpdateEventFragment = ({
3642
3842
  __typename: 'ConfigurationUpdateEvent';
3643
3843
  } & Pick<IConfigurationUpdateEvent, 'contents' | 'resource' | 'target'> & {
@@ -3655,6 +3855,13 @@ export declare type IDefaultSettingFragment = ({
3655
3855
  export declare type IOverWriteRoleValueFragment = ({
3656
3856
  __typename?: 'ContributionSettings';
3657
3857
  } & Pick<IContributionSettings, 'key' | 'value'>);
3858
+ declare type IConfiguration_ApplicationConfiguration_Fragment = ({
3859
+ __typename: 'ApplicationConfiguration';
3860
+ } & Pick<IApplicationConfiguration, 'resource' | 'target' | 'contents' | 'keys'> & {
3861
+ overrides?: Maybe<Array<Maybe<({
3862
+ __typename?: 'Overrides';
3863
+ } & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
3864
+ });
3658
3865
  declare type IConfiguration_ApplicationPolicy_Fragment = ({
3659
3866
  __typename: 'ApplicationPolicy';
3660
3867
  } & Pick<IApplicationPolicy, 'resource' | 'target' | 'contents' | 'keys'> & {
@@ -3662,9 +3869,9 @@ declare type IConfiguration_ApplicationPolicy_Fragment = ({
3662
3869
  __typename?: 'Overrides';
3663
3870
  } & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
3664
3871
  });
3665
- declare type IConfiguration_ApplicationRolePermission_Fragment = ({
3666
- __typename: 'ApplicationRolePermission';
3667
- } & Pick<IApplicationRolePermission, 'resource' | 'target' | 'contents' | 'keys'> & {
3872
+ declare type IConfiguration_ApplicationRole_Fragment = ({
3873
+ __typename: 'ApplicationRole';
3874
+ } & Pick<IApplicationRole, 'resource' | 'target' | 'contents' | 'keys'> & {
3668
3875
  overrides?: Maybe<Array<Maybe<({
3669
3876
  __typename?: 'Overrides';
3670
3877
  } & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
@@ -3725,6 +3932,13 @@ declare type IConfiguration_OrganizationRole_Fragment = ({
3725
3932
  __typename?: 'Overrides';
3726
3933
  } & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
3727
3934
  });
3935
+ declare type IConfiguration_PolicyConfiguration_Fragment = ({
3936
+ __typename: 'PolicyConfiguration';
3937
+ } & Pick<IPolicyConfiguration, 'resource' | 'target' | 'contents' | 'keys'> & {
3938
+ overrides?: Maybe<Array<Maybe<({
3939
+ __typename?: 'Overrides';
3940
+ } & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
3941
+ });
3728
3942
  declare type IConfiguration_ResourcePolicy_Fragment = ({
3729
3943
  __typename: 'ResourcePolicy';
3730
3944
  } & Pick<IResourcePolicy, 'resource' | 'target' | 'contents' | 'keys'> & {
@@ -3746,7 +3960,7 @@ declare type IConfiguration_UserConfiguration_Fragment = ({
3746
3960
  __typename?: 'Overrides';
3747
3961
  } & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
3748
3962
  });
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;
3963
+ export declare type IConfigurationFragment = IConfiguration_ApplicationConfiguration_Fragment | IConfiguration_ApplicationPolicy_Fragment | IConfiguration_ApplicationRole_Fragment | IConfiguration_DefaultConfiguration_Fragment | IConfiguration_DefaultPolicy_Fragment | IConfiguration_DefaultRole_Fragment | IConfiguration_MachineConfiguration_Fragment | IConfiguration_OrganizationConfiguration_Fragment | IConfiguration_OrganizationPolicy_Fragment | IConfiguration_OrganizationResourceConfiguration_Fragment | IConfiguration_OrganizationRole_Fragment | IConfiguration_PolicyConfiguration_Fragment | IConfiguration_ResourcePolicy_Fragment | IConfiguration_ResourceRole_Fragment | IConfiguration_UserConfiguration_Fragment;
3750
3964
  export declare type IContextConfigurationFragment = ({
3751
3965
  __typename?: 'OrganizationData';
3752
3966
  } & Pick<IOrganizationData, 'id' | 'name' | 'configuration'> & {
@@ -3877,8 +4091,8 @@ export declare type IGetApplicationRoleQuery = ({
3877
4091
  } | {
3878
4092
  __typename?: 'ResourceRole';
3879
4093
  } | ({
3880
- __typename?: 'ApplicationRolePermission';
3881
- } & IConfiguration_ApplicationRolePermission_Fragment)>>>;
4094
+ __typename?: 'ApplicationRole';
4095
+ } & IConfiguration_ApplicationRole_Fragment)>>>;
3882
4096
  });
3883
4097
  export declare type IDefaultResolveSettingsQueryVariables = Exact<{
3884
4098
  uri: Scalars['URI'];
@@ -3962,7 +4176,7 @@ export declare type IGetDefaultRoleQuery = ({
3962
4176
  } | {
3963
4177
  __typename?: 'ResourceRole';
3964
4178
  } | {
3965
- __typename?: 'ApplicationRolePermission';
4179
+ __typename?: 'ApplicationRole';
3966
4180
  }>>>;
3967
4181
  });
3968
4182
  export declare type IGetTeamContextQueryVariables = Exact<{
@@ -4001,7 +4215,7 @@ export declare type IGetUserAccessRoleQuery = ({
4001
4215
  } & IConfiguration_OrganizationRole_Fragment) | ({
4002
4216
  __typename?: 'ResourceRole';
4003
4217
  } & IConfiguration_ResourceRole_Fragment) | {
4004
- __typename?: 'ApplicationRolePermission';
4218
+ __typename?: 'ApplicationRole';
4005
4219
  }>>>;
4006
4220
  resourceUserRoles?: Maybe<Array<Maybe<({
4007
4221
  __typename?: 'ResourceUser';
@@ -4029,9 +4243,13 @@ export declare type IGetOrgConfigurationQuery = ({
4029
4243
  getConfiguration?: Maybe<Array<Maybe<{
4030
4244
  __typename?: 'DefaultConfiguration';
4031
4245
  } | {
4032
- __typename?: 'MachineConfiguration';
4246
+ __typename?: 'PolicyConfiguration';
4247
+ } | {
4248
+ __typename?: 'ApplicationConfiguration';
4033
4249
  } | {
4034
4250
  __typename?: 'UserConfiguration';
4251
+ } | {
4252
+ __typename?: 'MachineConfiguration';
4035
4253
  } | ({
4036
4254
  __typename?: 'OrganizationConfiguration';
4037
4255
  } & IConfiguration_OrganizationConfiguration_Fragment) | {
@@ -4067,7 +4285,7 @@ export declare type IGetOrgRoleQuery = ({
4067
4285
  } & IConfiguration_OrganizationRole_Fragment) | {
4068
4286
  __typename?: 'ResourceRole';
4069
4287
  } | {
4070
- __typename?: 'ApplicationRolePermission';
4288
+ __typename?: 'ApplicationRole';
4071
4289
  }>>>;
4072
4290
  });
4073
4291
  export declare type IGetOrgWithResourcesPolicyQueryVariables = Exact<{
@@ -4098,9 +4316,9 @@ export declare type IGetOrgWithResourcesRoleQuery = ({
4098
4316
  __typename?: 'OrganizationRole';
4099
4317
  } & IConfiguration_OrganizationRole_Fragment) | ({
4100
4318
  __typename?: 'ResourceRole';
4101
- } & IConfiguration_ResourceRole_Fragment) | {
4102
- __typename?: 'ApplicationRolePermission';
4103
- }>>>;
4319
+ } & IConfiguration_ResourceRole_Fragment) | ({
4320
+ __typename?: 'ApplicationRole';
4321
+ } & IConfiguration_ApplicationRole_Fragment)>>>;
4104
4322
  });
4105
4323
  export declare type IResolveConfigurationQueryVariables = Exact<{
4106
4324
  input: IPreferencesInputInput;
@@ -4119,9 +4337,13 @@ export declare type IGetResourcesConfigurationQuery = ({
4119
4337
  getConfiguration?: Maybe<Array<Maybe<{
4120
4338
  __typename?: 'DefaultConfiguration';
4121
4339
  } | {
4122
- __typename?: 'MachineConfiguration';
4340
+ __typename?: 'PolicyConfiguration';
4341
+ } | {
4342
+ __typename?: 'ApplicationConfiguration';
4123
4343
  } | {
4124
4344
  __typename?: 'UserConfiguration';
4345
+ } | {
4346
+ __typename?: 'MachineConfiguration';
4125
4347
  } | {
4126
4348
  __typename?: 'OrganizationConfiguration';
4127
4349
  } | ({
@@ -4136,11 +4358,15 @@ export declare type IGetUserConfigurationQuery = ({
4136
4358
  } & {
4137
4359
  getConfiguration?: Maybe<Array<Maybe<({
4138
4360
  __typename?: 'DefaultConfiguration';
4139
- } & IConfiguration_DefaultConfiguration_Fragment) | ({
4140
- __typename?: 'MachineConfiguration';
4141
- } & IConfiguration_MachineConfiguration_Fragment) | ({
4361
+ } & IConfiguration_DefaultConfiguration_Fragment) | {
4362
+ __typename?: 'PolicyConfiguration';
4363
+ } | {
4364
+ __typename?: 'ApplicationConfiguration';
4365
+ } | ({
4142
4366
  __typename?: 'UserConfiguration';
4143
- } & IConfiguration_UserConfiguration_Fragment) | {
4367
+ } & IConfiguration_UserConfiguration_Fragment) | ({
4368
+ __typename?: 'MachineConfiguration';
4369
+ } & IConfiguration_MachineConfiguration_Fragment) | {
4144
4370
  __typename?: 'OrganizationConfiguration';
4145
4371
  } | {
4146
4372
  __typename?: 'OrganizationResourceConfiguration';
@@ -4219,7 +4445,7 @@ export declare type IGetRoleQuery = ({
4219
4445
  } & Pick<IOrganizationRole, 'contents' | 'keys'>) | {
4220
4446
  __typename?: 'ResourceRole';
4221
4447
  } | {
4222
- __typename?: 'ApplicationRolePermission';
4448
+ __typename?: 'ApplicationRole';
4223
4449
  }>;
4224
4450
  });
4225
4451
  export declare type IGetOrgWithResourcesConfigurationQueryVariables = Exact<{
@@ -4230,11 +4456,15 @@ export declare type IGetOrgWithResourcesConfigurationQuery = ({
4230
4456
  } & {
4231
4457
  getConfiguration?: Maybe<Array<Maybe<{
4232
4458
  __typename?: 'DefaultConfiguration';
4233
- } | ({
4234
- __typename?: 'MachineConfiguration';
4235
- } & IConfiguration_MachineConfiguration_Fragment) | {
4459
+ } | {
4460
+ __typename?: 'PolicyConfiguration';
4461
+ } | {
4462
+ __typename?: 'ApplicationConfiguration';
4463
+ } | {
4236
4464
  __typename?: 'UserConfiguration';
4237
4465
  } | ({
4466
+ __typename?: 'MachineConfiguration';
4467
+ } & IConfiguration_MachineConfiguration_Fragment) | ({
4238
4468
  __typename?: 'OrganizationConfiguration';
4239
4469
  } & IConfiguration_OrganizationConfiguration_Fragment) | ({
4240
4470
  __typename?: 'OrganizationResourceConfiguration';
@@ -4249,10 +4479,14 @@ export declare type IGetUserWithDefaultConfigurationQuery = ({
4249
4479
  getConfiguration?: Maybe<Array<Maybe<({
4250
4480
  __typename?: 'DefaultConfiguration';
4251
4481
  } & IConfiguration_DefaultConfiguration_Fragment) | {
4252
- __typename?: 'MachineConfiguration';
4482
+ __typename?: 'PolicyConfiguration';
4483
+ } | {
4484
+ __typename?: 'ApplicationConfiguration';
4253
4485
  } | ({
4254
4486
  __typename?: 'UserConfiguration';
4255
4487
  } & IConfiguration_UserConfiguration_Fragment) | {
4488
+ __typename?: 'MachineConfiguration';
4489
+ } | {
4256
4490
  __typename?: 'OrganizationConfiguration';
4257
4491
  } | {
4258
4492
  __typename?: 'OrganizationResourceConfiguration';
@@ -4422,10 +4656,12 @@ export declare type IGetConfigurationDataQuery = ({
4422
4656
  __typename?: 'ConfigurationData';
4423
4657
  } & Pick<IConfigurationData, 'isComplete'> & {
4424
4658
  defaults?: Maybe<({
4659
+ __typename?: 'ApplicationConfiguration';
4660
+ } & IConfiguration_ApplicationConfiguration_Fragment) | ({
4425
4661
  __typename?: 'ApplicationPolicy';
4426
4662
  } & IConfiguration_ApplicationPolicy_Fragment) | ({
4427
- __typename?: 'ApplicationRolePermission';
4428
- } & IConfiguration_ApplicationRolePermission_Fragment) | ({
4663
+ __typename?: 'ApplicationRole';
4664
+ } & IConfiguration_ApplicationRole_Fragment) | ({
4429
4665
  __typename?: 'DefaultConfiguration';
4430
4666
  } & IConfiguration_DefaultConfiguration_Fragment) | ({
4431
4667
  __typename?: 'DefaultPolicy';
@@ -4442,6 +4678,8 @@ export declare type IGetConfigurationDataQuery = ({
4442
4678
  } & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
4443
4679
  __typename?: 'OrganizationRole';
4444
4680
  } & IConfiguration_OrganizationRole_Fragment) | ({
4681
+ __typename?: 'PolicyConfiguration';
4682
+ } & IConfiguration_PolicyConfiguration_Fragment) | ({
4445
4683
  __typename?: 'ResourcePolicy';
4446
4684
  } & IConfiguration_ResourcePolicy_Fragment) | ({
4447
4685
  __typename?: 'ResourceRole';
@@ -4449,10 +4687,12 @@ export declare type IGetConfigurationDataQuery = ({
4449
4687
  __typename?: 'UserConfiguration';
4450
4688
  } & IConfiguration_UserConfiguration_Fragment)>;
4451
4689
  user?: Maybe<({
4690
+ __typename?: 'ApplicationConfiguration';
4691
+ } & IConfiguration_ApplicationConfiguration_Fragment) | ({
4452
4692
  __typename?: 'ApplicationPolicy';
4453
4693
  } & IConfiguration_ApplicationPolicy_Fragment) | ({
4454
- __typename?: 'ApplicationRolePermission';
4455
- } & IConfiguration_ApplicationRolePermission_Fragment) | ({
4694
+ __typename?: 'ApplicationRole';
4695
+ } & IConfiguration_ApplicationRole_Fragment) | ({
4456
4696
  __typename?: 'DefaultConfiguration';
4457
4697
  } & IConfiguration_DefaultConfiguration_Fragment) | ({
4458
4698
  __typename?: 'DefaultPolicy';
@@ -4469,6 +4709,8 @@ export declare type IGetConfigurationDataQuery = ({
4469
4709
  } & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
4470
4710
  __typename?: 'OrganizationRole';
4471
4711
  } & IConfiguration_OrganizationRole_Fragment) | ({
4712
+ __typename?: 'PolicyConfiguration';
4713
+ } & IConfiguration_PolicyConfiguration_Fragment) | ({
4472
4714
  __typename?: 'ResourcePolicy';
4473
4715
  } & IConfiguration_ResourcePolicy_Fragment) | ({
4474
4716
  __typename?: 'ResourceRole';
@@ -4476,10 +4718,12 @@ export declare type IGetConfigurationDataQuery = ({
4476
4718
  __typename?: 'UserConfiguration';
4477
4719
  } & IConfiguration_UserConfiguration_Fragment)>;
4478
4720
  machine?: Maybe<({
4721
+ __typename?: 'ApplicationConfiguration';
4722
+ } & IConfiguration_ApplicationConfiguration_Fragment) | ({
4479
4723
  __typename?: 'ApplicationPolicy';
4480
4724
  } & IConfiguration_ApplicationPolicy_Fragment) | ({
4481
- __typename?: 'ApplicationRolePermission';
4482
- } & IConfiguration_ApplicationRolePermission_Fragment) | ({
4725
+ __typename?: 'ApplicationRole';
4726
+ } & IConfiguration_ApplicationRole_Fragment) | ({
4483
4727
  __typename?: 'DefaultConfiguration';
4484
4728
  } & IConfiguration_DefaultConfiguration_Fragment) | ({
4485
4729
  __typename?: 'DefaultPolicy';
@@ -4496,6 +4740,8 @@ export declare type IGetConfigurationDataQuery = ({
4496
4740
  } & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
4497
4741
  __typename?: 'OrganizationRole';
4498
4742
  } & IConfiguration_OrganizationRole_Fragment) | ({
4743
+ __typename?: 'PolicyConfiguration';
4744
+ } & IConfiguration_PolicyConfiguration_Fragment) | ({
4499
4745
  __typename?: 'ResourcePolicy';
4500
4746
  } & IConfiguration_ResourcePolicy_Fragment) | ({
4501
4747
  __typename?: 'ResourceRole';
@@ -4503,10 +4749,12 @@ export declare type IGetConfigurationDataQuery = ({
4503
4749
  __typename?: 'UserConfiguration';
4504
4750
  } & IConfiguration_UserConfiguration_Fragment)>;
4505
4751
  organization?: Maybe<({
4752
+ __typename?: 'ApplicationConfiguration';
4753
+ } & IConfiguration_ApplicationConfiguration_Fragment) | ({
4506
4754
  __typename?: 'ApplicationPolicy';
4507
4755
  } & IConfiguration_ApplicationPolicy_Fragment) | ({
4508
- __typename?: 'ApplicationRolePermission';
4509
- } & IConfiguration_ApplicationRolePermission_Fragment) | ({
4756
+ __typename?: 'ApplicationRole';
4757
+ } & IConfiguration_ApplicationRole_Fragment) | ({
4510
4758
  __typename?: 'DefaultConfiguration';
4511
4759
  } & IConfiguration_DefaultConfiguration_Fragment) | ({
4512
4760
  __typename?: 'DefaultPolicy';
@@ -4523,6 +4771,8 @@ export declare type IGetConfigurationDataQuery = ({
4523
4771
  } & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
4524
4772
  __typename?: 'OrganizationRole';
4525
4773
  } & IConfiguration_OrganizationRole_Fragment) | ({
4774
+ __typename?: 'PolicyConfiguration';
4775
+ } & IConfiguration_PolicyConfiguration_Fragment) | ({
4526
4776
  __typename?: 'ResourcePolicy';
4527
4777
  } & IConfiguration_ResourcePolicy_Fragment) | ({
4528
4778
  __typename?: 'ResourceRole';
@@ -4530,10 +4780,12 @@ export declare type IGetConfigurationDataQuery = ({
4530
4780
  __typename?: 'UserConfiguration';
4531
4781
  } & IConfiguration_UserConfiguration_Fragment)>;
4532
4782
  resources?: Maybe<Array<Maybe<({
4783
+ __typename?: 'ApplicationConfiguration';
4784
+ } & IConfiguration_ApplicationConfiguration_Fragment) | ({
4533
4785
  __typename?: 'ApplicationPolicy';
4534
4786
  } & IConfiguration_ApplicationPolicy_Fragment) | ({
4535
- __typename?: 'ApplicationRolePermission';
4536
- } & IConfiguration_ApplicationRolePermission_Fragment) | ({
4787
+ __typename?: 'ApplicationRole';
4788
+ } & IConfiguration_ApplicationRole_Fragment) | ({
4537
4789
  __typename?: 'DefaultConfiguration';
4538
4790
  } & IConfiguration_DefaultConfiguration_Fragment) | ({
4539
4791
  __typename?: 'DefaultPolicy';
@@ -4550,6 +4802,8 @@ export declare type IGetConfigurationDataQuery = ({
4550
4802
  } & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
4551
4803
  __typename?: 'OrganizationRole';
4552
4804
  } & IConfiguration_OrganizationRole_Fragment) | ({
4805
+ __typename?: 'PolicyConfiguration';
4806
+ } & IConfiguration_PolicyConfiguration_Fragment) | ({
4553
4807
  __typename?: 'ResourcePolicy';
4554
4808
  } & IConfiguration_ResourcePolicy_Fragment) | ({
4555
4809
  __typename?: 'ResourceRole';
@@ -4981,29 +5235,6 @@ export declare function useResendOrganizationInvitationMutation(baseOptions?: Ap
4981
5235
  export declare type ResendOrganizationInvitationMutationHookResult = ReturnType<typeof useResendOrganizationInvitationMutation>;
4982
5236
  export declare type ResendOrganizationInvitationMutationResult = Apollo.MutationResult<IResendOrganizationInvitationMutation>;
4983
5237
  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
5238
  export declare const ResetUserPasswordDocument: DocumentNode;
5008
5239
  /**
5009
5240
  * __useResetUserPasswordMutation__
@@ -5052,6 +5283,30 @@ export declare function useSendUserPasswordResetEmailMutation(baseOptions?: Apol
5052
5283
  export declare type SendUserPasswordResetEmailMutationHookResult = ReturnType<typeof useSendUserPasswordResetEmailMutation>;
5053
5284
  export declare type SendUserPasswordResetEmailMutationResult = Apollo.MutationResult<ISendUserPasswordResetEmailMutation>;
5054
5285
  export declare type SendUserPasswordResetEmailMutationOptions = Apollo.BaseMutationOptions<ISendUserPasswordResetEmailMutation, ISendUserPasswordResetEmailMutationVariables>;
5286
+ export declare const SendEmailVerificationDocument: DocumentNode;
5287
+ /**
5288
+ * __useSendEmailVerificationMutation__
5289
+ *
5290
+ * To run a mutation, you first call `useSendEmailVerificationMutation` within a React component and pass it any options that fit your needs.
5291
+ * When your component renders, `useSendEmailVerificationMutation` returns a tuple that includes:
5292
+ * - A mutate function that you can call at any time to execute the mutation
5293
+ * - An object with fields that represent the current status of the mutation's execution
5294
+ *
5295
+ * @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;
5296
+ *
5297
+ * @example
5298
+ * const [sendEmailVerificationMutation, { data, loading, error }] = useSendEmailVerificationMutation({
5299
+ * variables: {
5300
+ * email: // value for 'email'
5301
+ * },
5302
+ * });
5303
+ */
5304
+ export declare function useSendEmailVerificationMutation(baseOptions?: Apollo.MutationHookOptions<ISendEmailVerificationMutation, ISendEmailVerificationMutationVariables>): Apollo.MutationTuple<ISendEmailVerificationMutation, Exact<{
5305
+ email: string;
5306
+ }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
5307
+ export declare type SendEmailVerificationMutationHookResult = ReturnType<typeof useSendEmailVerificationMutation>;
5308
+ export declare type SendEmailVerificationMutationResult = Apollo.MutationResult<ISendEmailVerificationMutation>;
5309
+ export declare type SendEmailVerificationMutationOptions = Apollo.BaseMutationOptions<ISendEmailVerificationMutation, ISendEmailVerificationMutationVariables>;
5055
5310
  export declare const SendOrganizationInvitationDocument: DocumentNode;
5056
5311
  /**
5057
5312
  * __useSendOrganizationInvitationMutation__
@@ -5186,30 +5441,56 @@ export declare function useUpdateUserAccountMutation(baseOptions?: Apollo.Mutati
5186
5441
  export declare type UpdateUserAccountMutationHookResult = ReturnType<typeof useUpdateUserAccountMutation>;
5187
5442
  export declare type UpdateUserAccountMutationResult = Apollo.MutationResult<IUpdateUserAccountMutation>;
5188
5443
  export declare type UpdateUserAccountMutationOptions = Apollo.BaseMutationOptions<IUpdateUserAccountMutation, IUpdateUserAccountMutationVariables>;
5189
- export declare const VerifyUserEmailVerificationTokenDocument: DocumentNode;
5444
+ export declare const ValidatePasswordResetOtpDocument: DocumentNode;
5190
5445
  /**
5191
- * __useVerifyUserEmailVerificationTokenMutation__
5446
+ * __useValidatePasswordResetOtpMutation__
5192
5447
  *
5193
- * To run a mutation, you first call `useVerifyUserEmailVerificationTokenMutation` within a React component and pass it any options that fit your needs.
5194
- * When your component renders, `useVerifyUserEmailVerificationTokenMutation` returns a tuple that includes:
5448
+ * To run a mutation, you first call `useValidatePasswordResetOtpMutation` within a React component and pass it any options that fit your needs.
5449
+ * When your component renders, `useValidatePasswordResetOtpMutation` returns a tuple that includes:
5195
5450
  * - A mutate function that you can call at any time to execute the mutation
5196
5451
  * - An object with fields that represent the current status of the mutation's execution
5197
5452
  *
5198
5453
  * @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
5454
  *
5200
5455
  * @example
5201
- * const [verifyUserEmailVerificationTokenMutation, { data, loading, error }] = useVerifyUserEmailVerificationTokenMutation({
5456
+ * const [validatePasswordResetOtpMutation, { data, loading, error }] = useValidatePasswordResetOtpMutation({
5202
5457
  * variables: {
5203
- * token: // value for 'token'
5458
+ * email: // value for 'email'
5459
+ * code: // value for 'code'
5460
+ * },
5461
+ * });
5462
+ */
5463
+ export declare function useValidatePasswordResetOtpMutation(baseOptions?: Apollo.MutationHookOptions<IValidatePasswordResetOtpMutation, IValidatePasswordResetOtpMutationVariables>): Apollo.MutationTuple<IValidatePasswordResetOtpMutation, Exact<{
5464
+ email: string;
5465
+ code: string;
5466
+ }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
5467
+ export declare type ValidatePasswordResetOtpMutationHookResult = ReturnType<typeof useValidatePasswordResetOtpMutation>;
5468
+ export declare type ValidatePasswordResetOtpMutationResult = Apollo.MutationResult<IValidatePasswordResetOtpMutation>;
5469
+ export declare type ValidatePasswordResetOtpMutationOptions = Apollo.BaseMutationOptions<IValidatePasswordResetOtpMutation, IValidatePasswordResetOtpMutationVariables>;
5470
+ export declare const ValidateUserEmailVerificationDocument: DocumentNode;
5471
+ /**
5472
+ * __useValidateUserEmailVerificationMutation__
5473
+ *
5474
+ * To run a mutation, you first call `useValidateUserEmailVerificationMutation` within a React component and pass it any options that fit your needs.
5475
+ * When your component renders, `useValidateUserEmailVerificationMutation` returns a tuple that includes:
5476
+ * - A mutate function that you can call at any time to execute the mutation
5477
+ * - An object with fields that represent the current status of the mutation's execution
5478
+ *
5479
+ * @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;
5480
+ *
5481
+ * @example
5482
+ * const [validateUserEmailVerificationMutation, { data, loading, error }] = useValidateUserEmailVerificationMutation({
5483
+ * variables: {
5484
+ * code: // value for 'code'
5204
5485
  * },
5205
5486
  * });
5206
5487
  */
5207
- export declare function useVerifyUserEmailVerificationTokenMutation(baseOptions?: Apollo.MutationHookOptions<IVerifyUserEmailVerificationTokenMutation, IVerifyUserEmailVerificationTokenMutationVariables>): Apollo.MutationTuple<IVerifyUserEmailVerificationTokenMutation, Exact<{
5208
- token?: string;
5488
+ export declare function useValidateUserEmailVerificationMutation(baseOptions?: Apollo.MutationHookOptions<IValidateUserEmailVerificationMutation, IValidateUserEmailVerificationMutationVariables>): Apollo.MutationTuple<IValidateUserEmailVerificationMutation, Exact<{
5489
+ code: string;
5209
5490
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
5210
- export declare type VerifyUserEmailVerificationTokenMutationHookResult = ReturnType<typeof useVerifyUserEmailVerificationTokenMutation>;
5211
- export declare type VerifyUserEmailVerificationTokenMutationResult = Apollo.MutationResult<IVerifyUserEmailVerificationTokenMutation>;
5212
- export declare type VerifyUserEmailVerificationTokenMutationOptions = Apollo.BaseMutationOptions<IVerifyUserEmailVerificationTokenMutation, IVerifyUserEmailVerificationTokenMutationVariables>;
5491
+ export declare type ValidateUserEmailVerificationMutationHookResult = ReturnType<typeof useValidateUserEmailVerificationMutation>;
5492
+ export declare type ValidateUserEmailVerificationMutationResult = Apollo.MutationResult<IValidateUserEmailVerificationMutation>;
5493
+ export declare type ValidateUserEmailVerificationMutationOptions = Apollo.BaseMutationOptions<IValidateUserEmailVerificationMutation, IValidateUserEmailVerificationMutationVariables>;
5213
5494
  export declare const GetUserOrganizationsListDocument: DocumentNode;
5214
5495
  /**
5215
5496
  * __useGetUserOrganizationsListQuery__
@@ -5975,55 +6256,6 @@ export declare function useFilterIntegrationConfigurationLazyQuery(baseOptions?:
5975
6256
  export declare type FilterIntegrationConfigurationQueryHookResult = ReturnType<typeof useFilterIntegrationConfigurationQuery>;
5976
6257
  export declare type FilterIntegrationConfigurationLazyQueryHookResult = ReturnType<typeof useFilterIntegrationConfigurationLazyQuery>;
5977
6258
  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
6259
  export declare const AddContributionRoleDocument: DocumentNode;
6028
6260
  /**
6029
6261
  * __useAddContributionRoleMutation__
@@ -7370,16 +7602,13 @@ export declare type NextResolverFn<T> = () => Promise<T>;
7370
7602
  export declare type DirectiveResolverFn<TResult = {}, TParent = {}, TContext = {}, TArgs = {}> = (next: NextResolverFn<TResult>, parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => TResult | Promise<TResult>;
7371
7603
  /** Mapping between all available schema types and the resolvers types */
7372
7604
  export declare type IResolversTypes = {
7373
- AccessRole: IResolversTypes['DefaultRole'] | IResolversTypes['OrganizationRole'] | IResolversTypes['ResourceRole'] | IResolversTypes['ApplicationRolePermission'];
7605
+ AccessRole: IResolversTypes['DefaultRole'] | IResolversTypes['OrganizationRole'] | IResolversTypes['ResourceRole'] | IResolversTypes['ApplicationRole'];
7374
7606
  AccessToken: ResolverTypeWrapper<IAccessToken>;
7375
7607
  ID: ResolverTypeWrapper<Scalars['ID']>;
7376
7608
  String: ResolverTypeWrapper<Scalars['String']>;
7377
7609
  AccessTokenConnection: ResolverTypeWrapper<IAccessTokenConnection>;
7378
7610
  Int: ResolverTypeWrapper<Scalars['Int']>;
7379
7611
  AccessToken_Input: IAccessToken_Input;
7380
- AccountBroadcasterActions: IAccountBroadcasterActions;
7381
- AccountService: ResolverTypeWrapper<IAccountService>;
7382
- Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
7383
7612
  AccountServiceAction: IAccountServiceAction;
7384
7613
  AccountTeam: ResolverTypeWrapper<IAccountTeam>;
7385
7614
  AccountTeamInput: IAccountTeamInput;
@@ -7389,16 +7618,21 @@ export declare type IResolversTypes = {
7389
7618
  ApiManagement: ResolverTypeWrapper<IApiManagement>;
7390
7619
  ApiManagement_Input: IApiManagement_Input;
7391
7620
  ApplicationBillingPlanPolicy: IApplicationBillingPlanPolicy;
7621
+ ApplicationConfiguration: ResolverTypeWrapper<IApplicationConfiguration>;
7392
7622
  ApplicationPolicy: ResolverTypeWrapper<IApplicationPolicy>;
7393
- ApplicationRolePermission: ResolverTypeWrapper<IApplicationRolePermission>;
7623
+ ApplicationRole: ResolverTypeWrapper<IApplicationRole>;
7394
7624
  ApplicationRoles: IApplicationRoles;
7395
7625
  ApplicationSettings: ResolverTypeWrapper<IApplicationSettings>;
7626
+ Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
7396
7627
  Auth0Identity: ResolverTypeWrapper<IAuth0Identity>;
7397
7628
  Auth0IdentityProfileData: ResolverTypeWrapper<IAuth0IdentityProfileData>;
7398
7629
  AuthErrorCodes: IAuthErrorCodes;
7399
7630
  AuthTokens: ResolverTypeWrapper<IAuthTokens>;
7400
7631
  AuthUser: ResolverTypeWrapper<IAuthUser>;
7401
7632
  AuthUserInput: IAuthUserInput;
7633
+ BaseAccountService: ResolverTypeWrapper<IBaseAccountService>;
7634
+ BaseOrganizationService: ResolverTypeWrapper<IBaseOrganizationService>;
7635
+ BaseTeamService: ResolverTypeWrapper<IBaseTeamService>;
7402
7636
  CacheControlScope: ICacheControlScope;
7403
7637
  CityInput: ICityInput;
7404
7638
  CityUpdateInput: ICityUpdateInput;
@@ -7407,7 +7641,7 @@ export declare type IResolversTypes = {
7407
7641
  ClientTypes: IClientTypes;
7408
7642
  ConfigCollectionName: IConfigCollectionName;
7409
7643
  ConfigFragmentName: IConfigFragmentName;
7410
- Configuration: IResolversTypes['DefaultConfiguration'] | IResolversTypes['MachineConfiguration'] | IResolversTypes['UserConfiguration'] | IResolversTypes['OrganizationConfiguration'] | IResolversTypes['OrganizationResourceConfiguration'];
7644
+ Configuration: IResolversTypes['DefaultConfiguration'] | IResolversTypes['PolicyConfiguration'] | IResolversTypes['ApplicationConfiguration'] | IResolversTypes['UserConfiguration'] | IResolversTypes['MachineConfiguration'] | IResolversTypes['OrganizationConfiguration'] | IResolversTypes['OrganizationResourceConfiguration'];
7411
7645
  ConfigurationContributionNames: IConfigurationContributionNames;
7412
7646
  ConfigurationData: ResolverTypeWrapper<IConfigurationData>;
7413
7647
  ConfigurationExtensionInfo: ResolverTypeWrapper<IConfigurationExtensionInfo>;
@@ -7436,6 +7670,7 @@ export declare type IResolversTypes = {
7436
7670
  DefaultRole: ResolverTypeWrapper<IDefaultRole>;
7437
7671
  DefaultSettings: ResolverTypeWrapper<IDefaultSettings>;
7438
7672
  DeviceInfoInput: IDeviceInfoInput;
7673
+ DeviceInfoPlatform: IDeviceInfoPlatform;
7439
7674
  EditPresentationTypes: IEditPresentationTypes;
7440
7675
  EmptyResponse: ResolverTypeWrapper<IEmptyResponse>;
7441
7676
  Environment: ResolverTypeWrapper<IEnvironment>;
@@ -7454,10 +7689,7 @@ export declare type IResolversTypes = {
7454
7689
  IAuth0User: IResolversTypes['UserProfile'];
7455
7690
  IAuth0UserProfile: IResolversTypes['UserProfile'];
7456
7691
  ICity: never;
7457
- IConfigurationChangeEvent: ResolverTypeWrapper<Omit<IIConfigurationChangeEvent, 'changedConfiguration'> & {
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'];
7692
+ IConfigurationModel: IResolversTypes['ApplicationConfiguration'] | IResolversTypes['ApplicationPolicy'] | IResolversTypes['ApplicationRole'] | IResolversTypes['DefaultConfiguration'] | IResolversTypes['DefaultPolicy'] | IResolversTypes['DefaultRole'] | IResolversTypes['MachineConfiguration'] | IResolversTypes['OrganizationConfiguration'] | IResolversTypes['OrganizationPolicy'] | IResolversTypes['OrganizationResourceConfiguration'] | IResolversTypes['OrganizationRole'] | IResolversTypes['PolicyConfiguration'] | IResolversTypes['ResourcePolicy'] | IResolversTypes['ResourceRole'] | IResolversTypes['UserConfiguration'];
7461
7693
  IConfigurationService: never;
7462
7694
  ICountry: never;
7463
7695
  IEventWithContext: IResolversTypes['OrganizationCreatedEvent'] | IResolversTypes['OrganizationDeletedEvent'];
@@ -7472,18 +7704,19 @@ export declare type IResolversTypes = {
7472
7704
  IUser: IResolversTypes['AuthUser'];
7473
7705
  IUserMetadata: IResolversTypes['UserMetadata'];
7474
7706
  IntegraitonConfigurationId: ResolverTypeWrapper<IIntegraitonConfigurationId>;
7475
- IntegrationConfigServiceAction: IIntegrationConfigServiceAction;
7476
7707
  IntegrationConfiguration: ResolverTypeWrapper<IIntegrationConfiguration>;
7477
7708
  IntegrationConfigurationCreateOrUpdateInput: IIntegrationConfigurationCreateOrUpdateInput;
7478
7709
  IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
7479
7710
  IntegrationConfigurationInput: IIntegrationConfigurationInput;
7480
7711
  IntegrationConfigurationsOutput: ResolverTypeWrapper<IIntegrationConfigurationsOutput>;
7481
7712
  IntegrationPreferences: ResolverTypeWrapper<IIntegrationPreferences>;
7713
+ IntegrationWorkflowServiceAction: IIntegrationWorkflowServiceAction;
7482
7714
  InviteMember: ResolverTypeWrapper<IInviteMember>;
7483
7715
  InviteStatus: IInviteStatus;
7484
7716
  JSON: ResolverTypeWrapper<Scalars['JSON']>;
7485
7717
  JSONObject: ResolverTypeWrapper<Scalars['JSONObject']>;
7486
7718
  KeyPathSegment: IKeyPathSegment;
7719
+ LinkedIdentity: ResolverTypeWrapper<ILinkedIdentity>;
7487
7720
  LoginError: ResolverTypeWrapper<ILoginError>;
7488
7721
  MachineConfiguration: ResolverTypeWrapper<IMachineConfiguration>;
7489
7722
  MachineSettings: ResolverTypeWrapper<IMachineSettings>;
@@ -7493,7 +7726,7 @@ export declare type IResolversTypes = {
7493
7726
  MenuPosition: IMenuPosition;
7494
7727
  MoleculerServiceName: IMoleculerServiceName;
7495
7728
  Mutation: ResolverTypeWrapper<{}>;
7496
- Node: IResolversTypes['AccessToken'] | IResolversTypes['ApiExternalAccount'] | IResolversTypes['ApiManagement'] | IResolversTypes['OrgUserAccunt'] | IResolversTypes['UserAccount'];
7729
+ Node: IResolversTypes['AccessToken'] | IResolversTypes['ApiExternalAccount'] | IResolversTypes['ApiManagement'] | IResolversTypes['UserAccount'];
7497
7730
  Observable: ResolverTypeWrapper<Scalars['Observable']>;
7498
7731
  OrgDetailWhere: IOrgDetailWhere;
7499
7732
  OrgInvitationMembers: ResolverTypeWrapper<IOrgInvitationMembers>;
@@ -7501,7 +7734,6 @@ export declare type IResolversTypes = {
7501
7734
  OrgMembersOutput: ResolverTypeWrapper<IOrgMembersOutput>;
7502
7735
  OrgType: IOrgType;
7503
7736
  OrgUser: ResolverTypeWrapper<IOrgUser>;
7504
- OrgUserAccunt: ResolverTypeWrapper<IOrgUserAccunt>;
7505
7737
  OrgUserInput: IOrgUserInput;
7506
7738
  OrgUserRole: IOrgUserRole;
7507
7739
  OrgainizationInvitationRole: IOrgainizationInvitationRole;
@@ -7529,7 +7761,6 @@ export declare type IResolversTypes = {
7529
7761
  OrganizationResourceData: ResolverTypeWrapper<IOrganizationResourceData>;
7530
7762
  OrganizationResourceSettings: ResolverTypeWrapper<IOrganizationResourceSettings>;
7531
7763
  OrganizationRole: ResolverTypeWrapper<IOrganizationRole>;
7532
- OrganizationService: ResolverTypeWrapper<IOrganizationService>;
7533
7764
  OrganizationServiceAction: IOrganizationServiceAction;
7534
7765
  OrganizationSettings: ResolverTypeWrapper<IOrganizationSettings>;
7535
7766
  OrganizationUpdateRequest: IOrganizationUpdateRequest;
@@ -7543,6 +7774,7 @@ export declare type IResolversTypes = {
7543
7774
  PermissionType: IPermissionType;
7544
7775
  PhoneNumber: ResolverTypeWrapper<IPhoneNumber>;
7545
7776
  PhoneNumberInput: IPhoneNumberInput;
7777
+ PolicyConfiguration: ResolverTypeWrapper<IPolicyConfiguration>;
7546
7778
  PolicySubject: ResolverTypeWrapper<IPolicySubject>;
7547
7779
  PopupIntegrationAuthorization: ResolverTypeWrapper<IPopupIntegrationAuthorization>;
7548
7780
  PortalLanguage: IPortalLanguage;
@@ -7608,7 +7840,6 @@ export declare type IResolversTypes = {
7608
7840
  TeamMember: ResolverTypeWrapper<ITeamMember>;
7609
7841
  TeamMemberInput: ITeamMemberInput;
7610
7842
  TeamRemoveRequest: ITeamRemoveRequest;
7611
- TeamService: ResolverTypeWrapper<ITeamService>;
7612
7843
  TeamServiceAction: ITeamServiceAction;
7613
7844
  TeamType: ITeamType;
7614
7845
  TeamUpdateRequest: ITeamUpdateRequest;
@@ -7638,16 +7869,17 @@ export declare type IResolversTypes = {
7638
7869
  UserDevice: ResolverTypeWrapper<IUserDevice>;
7639
7870
  UserMetadata: ResolverTypeWrapper<IUserMetadata>;
7640
7871
  UserOrderBy: IUserOrderBy;
7641
- UserOrg: ResolverTypeWrapper<IUserOrg>;
7642
- UserOrgInput: IUserOrgInput;
7643
7872
  UserPasswordResetInput: IUserPasswordResetInput;
7644
7873
  UserPreviousValues: ResolverTypeWrapper<IUserPreviousValues>;
7645
7874
  UserProfile: ResolverTypeWrapper<IUserProfile>;
7875
+ UserServiceAction: IUserServiceAction;
7876
+ UserSession: ResolverTypeWrapper<IUserSession>;
7646
7877
  UserSessionId: ResolverTypeWrapper<IUserSessionId>;
7647
7878
  UserSettings: ResolverTypeWrapper<IUserSettings>;
7648
7879
  UserState: ResolverTypeWrapper<IUserState>;
7649
7880
  UserToken: ResolverTypeWrapper<IUserToken>;
7650
7881
  UserTokenInput: IUserTokenInput;
7882
+ UsersToken: ResolverTypeWrapper<IUsersToken>;
7651
7883
  ViewerPoliciesInput: IViewerPoliciesInput;
7652
7884
  ViewerSettingsInput: IViewerSettingsInput;
7653
7885
  ViewerSettingsSubject: ResolverTypeWrapper<IViewerSettingsSubject>;
@@ -7656,15 +7888,13 @@ export declare type IResolversTypes = {
7656
7888
  };
7657
7889
  /** Mapping between all available schema types and the resolvers parents */
7658
7890
  export declare type IResolversParentTypes = {
7659
- AccessRole: IResolversParentTypes['DefaultRole'] | IResolversParentTypes['OrganizationRole'] | IResolversParentTypes['ResourceRole'] | IResolversParentTypes['ApplicationRolePermission'];
7891
+ AccessRole: IResolversParentTypes['DefaultRole'] | IResolversParentTypes['OrganizationRole'] | IResolversParentTypes['ResourceRole'] | IResolversParentTypes['ApplicationRole'];
7660
7892
  AccessToken: IAccessToken;
7661
7893
  ID: Scalars['ID'];
7662
7894
  String: Scalars['String'];
7663
7895
  AccessTokenConnection: IAccessTokenConnection;
7664
7896
  Int: Scalars['Int'];
7665
7897
  AccessToken_Input: IAccessToken_Input;
7666
- AccountService: IAccountService;
7667
- Boolean: Scalars['Boolean'];
7668
7898
  AccountTeam: IAccountTeam;
7669
7899
  AccountTeamInput: IAccountTeamInput;
7670
7900
  AdminIdeSettings: IAdminIdeSettings;
@@ -7672,17 +7902,22 @@ export declare type IResolversParentTypes = {
7672
7902
  ApiExternalAccount: IApiExternalAccount;
7673
7903
  ApiManagement: IApiManagement;
7674
7904
  ApiManagement_Input: IApiManagement_Input;
7905
+ ApplicationConfiguration: IApplicationConfiguration;
7675
7906
  ApplicationPolicy: IApplicationPolicy;
7676
- ApplicationRolePermission: IApplicationRolePermission;
7907
+ ApplicationRole: IApplicationRole;
7677
7908
  ApplicationSettings: IApplicationSettings;
7909
+ Boolean: Scalars['Boolean'];
7678
7910
  Auth0Identity: IAuth0Identity;
7679
7911
  Auth0IdentityProfileData: IAuth0IdentityProfileData;
7680
7912
  AuthTokens: IAuthTokens;
7681
7913
  AuthUser: IAuthUser;
7682
7914
  AuthUserInput: IAuthUserInput;
7915
+ BaseAccountService: IBaseAccountService;
7916
+ BaseOrganizationService: IBaseOrganizationService;
7917
+ BaseTeamService: IBaseTeamService;
7683
7918
  CityInput: ICityInput;
7684
7919
  CityUpdateInput: ICityUpdateInput;
7685
- Configuration: IResolversParentTypes['DefaultConfiguration'] | IResolversParentTypes['MachineConfiguration'] | IResolversParentTypes['UserConfiguration'] | IResolversParentTypes['OrganizationConfiguration'] | IResolversParentTypes['OrganizationResourceConfiguration'];
7920
+ Configuration: IResolversParentTypes['DefaultConfiguration'] | IResolversParentTypes['PolicyConfiguration'] | IResolversParentTypes['ApplicationConfiguration'] | IResolversParentTypes['UserConfiguration'] | IResolversParentTypes['MachineConfiguration'] | IResolversParentTypes['OrganizationConfiguration'] | IResolversParentTypes['OrganizationResourceConfiguration'];
7686
7921
  ConfigurationData: IConfigurationData;
7687
7922
  ConfigurationExtensionInfo: IConfigurationExtensionInfo;
7688
7923
  ConfigurationInput: IConfigurationInput;
@@ -7722,10 +7957,7 @@ export declare type IResolversParentTypes = {
7722
7957
  IAuth0User: IResolversParentTypes['UserProfile'];
7723
7958
  IAuth0UserProfile: IResolversParentTypes['UserProfile'];
7724
7959
  ICity: never;
7725
- IConfigurationChangeEvent: Omit<IIConfigurationChangeEvent, 'changedConfiguration'> & {
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'];
7960
+ IConfigurationModel: IResolversParentTypes['ApplicationConfiguration'] | IResolversParentTypes['ApplicationPolicy'] | IResolversParentTypes['ApplicationRole'] | IResolversParentTypes['DefaultConfiguration'] | IResolversParentTypes['DefaultPolicy'] | IResolversParentTypes['DefaultRole'] | IResolversParentTypes['MachineConfiguration'] | IResolversParentTypes['OrganizationConfiguration'] | IResolversParentTypes['OrganizationPolicy'] | IResolversParentTypes['OrganizationResourceConfiguration'] | IResolversParentTypes['OrganizationRole'] | IResolversParentTypes['PolicyConfiguration'] | IResolversParentTypes['ResourcePolicy'] | IResolversParentTypes['ResourceRole'] | IResolversParentTypes['UserConfiguration'];
7729
7961
  IConfigurationService: never;
7730
7962
  ICountry: never;
7731
7963
  IEventWithContext: IResolversParentTypes['OrganizationCreatedEvent'] | IResolversParentTypes['OrganizationDeletedEvent'];
@@ -7750,13 +7982,14 @@ export declare type IResolversParentTypes = {
7750
7982
  JSON: Scalars['JSON'];
7751
7983
  JSONObject: Scalars['JSONObject'];
7752
7984
  KeyPathSegment: IKeyPathSegment;
7985
+ LinkedIdentity: ILinkedIdentity;
7753
7986
  LoginError: ILoginError;
7754
7987
  MachineConfiguration: IMachineConfiguration;
7755
7988
  MachineSettings: IMachineSettings;
7756
7989
  MemorySettings: IMemorySettings;
7757
7990
  MenuItem: IMenuItem;
7758
7991
  Mutation: {};
7759
- Node: IResolversParentTypes['AccessToken'] | IResolversParentTypes['ApiExternalAccount'] | IResolversParentTypes['ApiManagement'] | IResolversParentTypes['OrgUserAccunt'] | IResolversParentTypes['UserAccount'];
7992
+ Node: IResolversParentTypes['AccessToken'] | IResolversParentTypes['ApiExternalAccount'] | IResolversParentTypes['ApiManagement'] | IResolversParentTypes['UserAccount'];
7760
7993
  Observable: Scalars['Observable'];
7761
7994
  OrgDetailWhere: IOrgDetailWhere;
7762
7995
  OrgInvitationMembers: IOrgInvitationMembers;
@@ -7764,7 +7997,6 @@ export declare type IResolversParentTypes = {
7764
7997
  OrgMembersOutput: IOrgMembersOutput;
7765
7998
  OrgType: IOrgType;
7766
7999
  OrgUser: IOrgUser;
7767
- OrgUserAccunt: IOrgUserAccunt;
7768
8000
  OrgUserInput: IOrgUserInput;
7769
8001
  Organization: IOrganization;
7770
8002
  OrganizationConfigValueInput: IOrganizationConfigValueInput;
@@ -7789,7 +8021,6 @@ export declare type IResolversParentTypes = {
7789
8021
  OrganizationResourceData: IOrganizationResourceData;
7790
8022
  OrganizationResourceSettings: IOrganizationResourceSettings;
7791
8023
  OrganizationRole: IOrganizationRole;
7792
- OrganizationService: IOrganizationService;
7793
8024
  OrganizationSettings: IOrganizationSettings;
7794
8025
  OrganizationUpdateRequest: IOrganizationUpdateRequest;
7795
8026
  OrganizationsDeactivatedEvent: IOrganizationsDeactivatedEvent;
@@ -7799,6 +8030,7 @@ export declare type IResolversParentTypes = {
7799
8030
  PermissionSubject: IPermissionSubject;
7800
8031
  PhoneNumber: IPhoneNumber;
7801
8032
  PhoneNumberInput: IPhoneNumberInput;
8033
+ PolicyConfiguration: IPolicyConfiguration;
7802
8034
  PolicySubject: IPolicySubject;
7803
8035
  PopupIntegrationAuthorization: IPopupIntegrationAuthorization;
7804
8036
  Position: IPosition;
@@ -7854,7 +8086,6 @@ export declare type IResolversParentTypes = {
7854
8086
  TeamMember: ITeamMember;
7855
8087
  TeamMemberInput: ITeamMemberInput;
7856
8088
  TeamRemoveRequest: ITeamRemoveRequest;
7857
- TeamService: ITeamService;
7858
8089
  TeamType: ITeamType;
7859
8090
  TeamUpdateRequest: ITeamUpdateRequest;
7860
8091
  TerritorialStateInput: ITerritorialStateInput;
@@ -7880,16 +8111,16 @@ export declare type IResolversParentTypes = {
7880
8111
  UserContext: IUserContext;
7881
8112
  UserDevice: IUserDevice;
7882
8113
  UserMetadata: IUserMetadata;
7883
- UserOrg: IUserOrg;
7884
- UserOrgInput: IUserOrgInput;
7885
8114
  UserPasswordResetInput: IUserPasswordResetInput;
7886
8115
  UserPreviousValues: IUserPreviousValues;
7887
8116
  UserProfile: IUserProfile;
8117
+ UserSession: IUserSession;
7888
8118
  UserSessionId: IUserSessionId;
7889
8119
  UserSettings: IUserSettings;
7890
8120
  UserState: IUserState;
7891
8121
  UserToken: IUserToken;
7892
8122
  UserTokenInput: IUserTokenInput;
8123
+ UsersToken: IUsersToken;
7893
8124
  ViewerPoliciesInput: IViewerPoliciesInput;
7894
8125
  ViewerSettingsInput: IViewerSettingsInput;
7895
8126
  ViewerSettingsSubject: IViewerSettingsSubject;
@@ -7913,7 +8144,7 @@ export declare type IIsAuthenticatedDirectiveResolver<Result, Parent, ContextTyp
7913
8144
  export declare type IProfileDirectiveArgs = {};
7914
8145
  export declare type IProfileDirectiveResolver<Result, Parent, ContextType = MyContext, Args = IProfileDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
7915
8146
  export declare type IAccessRoleResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AccessRole'] = IResolversParentTypes['AccessRole']> = {
7916
- __resolveType: TypeResolveFn<'DefaultRole' | 'OrganizationRole' | 'ResourceRole' | 'ApplicationRolePermission', ParentType, ContextType>;
8147
+ __resolveType: TypeResolveFn<'DefaultRole' | 'OrganizationRole' | 'ResourceRole' | 'ApplicationRole', ParentType, ContextType>;
7917
8148
  };
7918
8149
  export declare type IAccessTokenResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AccessToken'] = IResolversParentTypes['AccessToken']> = {
7919
8150
  id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
@@ -7931,17 +8162,6 @@ export declare type IAccessTokenConnectionResolvers<ContextType = MyContext, Par
7931
8162
  pageInfo?: Resolver<IResolversTypes['PageInfo'], ParentType, ContextType>;
7932
8163
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
7933
8164
  };
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
8165
  export declare type IAccountTeamResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AccountTeam'] = IResolversParentTypes['AccountTeam']> = {
7946
8166
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
7947
8167
  _id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -7983,6 +8203,15 @@ export declare type IApiManagementResolvers<ContextType = MyContext, ParentType
7983
8203
  user?: Resolver<IResolversTypes['UserAccount'], ParentType, ContextType>;
7984
8204
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
7985
8205
  };
8206
+ export declare type IApplicationConfigurationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ApplicationConfiguration'] = IResolversParentTypes['ApplicationConfiguration']> = {
8207
+ id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
8208
+ resource?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
8209
+ target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
8210
+ contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
8211
+ keys?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
8212
+ overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
8213
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
8214
+ };
7986
8215
  export declare type IApplicationPolicyResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ApplicationPolicy'] = IResolversParentTypes['ApplicationPolicy']> = {
7987
8216
  resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
7988
8217
  target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
@@ -7991,7 +8220,7 @@ export declare type IApplicationPolicyResolvers<ContextType = MyContext, ParentT
7991
8220
  overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
7992
8221
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
7993
8222
  };
7994
- export declare type IApplicationRolePermissionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ApplicationRolePermission'] = IResolversParentTypes['ApplicationRolePermission']> = {
8223
+ export declare type IApplicationRoleResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ApplicationRole'] = IResolversParentTypes['ApplicationRole']> = {
7995
8224
  resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
7996
8225
  target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
7997
8226
  contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
@@ -8038,11 +8267,62 @@ export declare type IAuthUserResolvers<ContextType = MyContext, ParentType exten
8038
8267
  phoneNo?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
8039
8268
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
8040
8269
  };
8270
+ export declare type IBaseAccountServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['BaseAccountService'] = IResolversParentTypes['BaseAccountService']> = {
8271
+ createDefaultAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceCreateDefaultAccountArgs, 'user'>>;
8272
+ createAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceCreateAccountArgs, 'account'>>;
8273
+ updateUserAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceUpdateUserAccountArgs, 'user' | 'userInfo'>>;
8274
+ findAccountById?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceFindAccountByIdArgs, 'id'>>;
8275
+ findAccountByUser?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceFindAccountByUserArgs, 'id'>>;
8276
+ findAccountByEmail?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceFindAccountByEmailArgs, 'email'>>;
8277
+ getUsers?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccount']>>>, ParentType, ContextType, RequireFields<IBaseAccountServiceGetUsersArgs, never>>;
8278
+ updateAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceUpdateAccountArgs, 'account'>>;
8279
+ deleteAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceDeleteAccountArgs, 'account'>>;
8280
+ accountOnBoarding?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceAccountOnBoardingArgs, 'input' | 'context'>>;
8281
+ verifyUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceVerifyUserEmailVerificationTokenArgs, 'userId' | 'token'>>;
8282
+ deleteUserAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceDeleteUserAccountArgs, 'id'>>;
8283
+ resendUserEmailVerificationEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceResendUserEmailVerificationEmailArgs, 'id'>>;
8284
+ dispatchUserVerificationEmail?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IBaseAccountServiceDispatchUserVerificationEmailArgs, 'email' | 'emailVerificationToken'>>;
8285
+ dispatchUserPasswordResetEmail?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IBaseAccountServiceDispatchUserPasswordResetEmailArgs, 'user' | 'token'>>;
8286
+ getUserTokenDetails?: Resolver<Maybe<IResolversTypes['UserToken']>, ParentType, ContextType, RequireFields<IBaseAccountServiceGetUserTokenDetailsArgs, 'userId' | 'type'>>;
8287
+ addUserToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceAddUserTokenArgs, 'userId' | 'token'>>;
8288
+ removeUserToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceRemoveUserTokenArgs, 'userId' | 'token'>>;
8289
+ getAllUserTokens?: Resolver<Maybe<Array<Maybe<IResolversTypes['UsersToken']>>>, ParentType, ContextType, RequireFields<IBaseAccountServiceGetAllUserTokensArgs, 'userIds' | 'tokenTypes'>>;
8290
+ initiatePasswordResetProcess?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceInitiatePasswordResetProcessArgs, 'email'>>;
8291
+ resetUserPassword?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceResetUserPasswordArgs, 'input'>>;
8292
+ validateUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceValidateUserEmailVerificationTokenArgs, 'code' | 'userAuth0Id' | 'email'>>;
8293
+ sendEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceSendEmailVerificationTokenArgs, 'email'>>;
8294
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
8295
+ };
8296
+ export declare type IBaseOrganizationServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['BaseOrganizationService'] = IResolversParentTypes['BaseOrganizationService']> = {
8297
+ getOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceGetOrganizationArgs, never>>;
8298
+ createDefaultOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceCreateDefaultOrganizationArgs, never>>;
8299
+ getUserOrganizations?: Resolver<Maybe<Array<Maybe<IResolversTypes['Organization']>>>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceGetUserOrganizationsArgs, never>>;
8300
+ createOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceCreateOrganizationArgs, 'workspace'>>;
8301
+ updateOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceUpdateOrganizationArgs, 'workspace'>>;
8302
+ removeOrganization?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceRemoveOrganizationArgs, 'workspace'>>;
8303
+ getUserOrgRole?: Resolver<Maybe<IResolversTypes['OrgUserRole']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceGetUserOrgRoleArgs, 'orgName' | 'userId'>>;
8304
+ sendInvitation?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceSendInvitationArgs, 'request'>>;
8305
+ declineInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceDeclineInvitationArgs, 'id'>>;
8306
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
8307
+ };
8308
+ export declare type IBaseTeamServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['BaseTeamService'] = IResolversParentTypes['BaseTeamService']> = {
8309
+ getTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceGetTeamArgs, never>>;
8310
+ getUserTeams?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccountTeam']>>>, ParentType, ContextType, RequireFields<IBaseTeamServiceGetUserTeamsArgs, never>>;
8311
+ createTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceCreateTeamArgs, never>>;
8312
+ updateTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceUpdateTeamArgs, never>>;
8313
+ addWorkspaces?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceAddWorkspacesArgs, never>>;
8314
+ removeTeam?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseTeamServiceRemoveTeamArgs, never>>;
8315
+ createDefaultTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceCreateDefaultTeamArgs, never>>;
8316
+ sendProjectNotification?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseTeamServiceSendProjectNotificationArgs, never>>;
8317
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
8318
+ };
8041
8319
  export declare type IConfigurationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Configuration'] = IResolversParentTypes['Configuration']> = {
8042
- __resolveType: TypeResolveFn<'DefaultConfiguration' | 'MachineConfiguration' | 'UserConfiguration' | 'OrganizationConfiguration' | 'OrganizationResourceConfiguration', ParentType, ContextType>;
8320
+ __resolveType: TypeResolveFn<'DefaultConfiguration' | 'PolicyConfiguration' | 'ApplicationConfiguration' | 'UserConfiguration' | 'MachineConfiguration' | 'OrganizationConfiguration' | 'OrganizationResourceConfiguration', ParentType, ContextType>;
8043
8321
  };
8044
8322
  export declare type IConfigurationDataResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ConfigurationData'] = IResolversParentTypes['ConfigurationData']> = {
8045
8323
  defaults?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
8324
+ policy?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
8325
+ application?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
8046
8326
  user?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
8047
8327
  machine?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
8048
8328
  organization?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
@@ -8083,6 +8363,8 @@ export declare type IConfigurationTargetResolvers = EnumResolverSignature<{
8083
8363
  ORGANIZATION_RESOURCE?: any;
8084
8364
  DEFAULT?: any;
8085
8365
  MEMORY?: any;
8366
+ RESOURCE_OVERRIDABLE?: any;
8367
+ MACHINE_OVERRIDABLE?: any;
8086
8368
  }, IResolversTypes['ConfigurationTarget']>;
8087
8369
  export declare type IConfigurationUpdateEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ConfigurationUpdateEvent'] = IResolversParentTypes['ConfigurationUpdateEvent']> = {
8088
8370
  resource?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
@@ -8309,16 +8591,8 @@ export declare type IICityResolvers<ContextType = MyContext, ParentType extends
8309
8591
  createdAt?: Resolver<IResolversTypes['Date'], ParentType, ContextType>;
8310
8592
  updatedAt?: Resolver<Maybe<IResolversTypes['Date']>, ParentType, ContextType>;
8311
8593
  };
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
8594
  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>;
8595
+ __resolveType: TypeResolveFn<'ApplicationConfiguration' | 'ApplicationPolicy' | 'ApplicationRole' | 'DefaultConfiguration' | 'DefaultPolicy' | 'DefaultRole' | 'MachineConfiguration' | 'OrganizationConfiguration' | 'OrganizationPolicy' | 'OrganizationResourceConfiguration' | 'OrganizationRole' | 'PolicyConfiguration' | 'ResourcePolicy' | 'ResourceRole' | 'UserConfiguration', ParentType, ContextType>;
8322
8596
  resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
8323
8597
  target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
8324
8598
  contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
@@ -8450,6 +8724,13 @@ export interface IJsonScalarConfig extends GraphQLScalarTypeConfig<IResolversTyp
8450
8724
  export interface IJsonObjectScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['JSONObject'], any> {
8451
8725
  name: 'JSONObject';
8452
8726
  }
8727
+ export declare type ILinkedIdentityResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['LinkedIdentity'] = IResolversParentTypes['LinkedIdentity']> = {
8728
+ connection?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
8729
+ isSocial?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
8730
+ provider?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
8731
+ user_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
8732
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
8733
+ };
8453
8734
  export declare type ILoginErrorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['LoginError'] = IResolversParentTypes['LoginError']> = {
8454
8735
  timeStamp?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
8455
8736
  error?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
@@ -8534,12 +8815,11 @@ export declare type IMutationResolvers<ContextType = MyContext, ParentType exten
8534
8815
  removedUserAuthIntegration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationRemovedUserAuthIntegrationArgs, never>>;
8535
8816
  renewAuthToken?: Resolver<Maybe<IResolversTypes['AuthTokens']>, ParentType, ContextType, RequireFields<IMutationRenewAuthTokenArgs, never>>;
8536
8817
  resendOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationResendOrganizationInvitationArgs, 'id'>>;
8537
- resendUserEmailVerificationEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
8538
8818
  resetUserPassword?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationResetUserPasswordArgs, 'input'>>;
8819
+ sendEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSendEmailVerificationTokenArgs, 'email'>>;
8539
8820
  sendOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSendOrganizationInvitationArgs, never>>;
8540
8821
  sendUserPasswordResetEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSendUserPasswordResetEmailArgs, 'email'>>;
8541
8822
  setSettingsValueByResource?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSetSettingsValueByResourceArgs, never>>;
8542
- toggleSidebar?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationToggleSidebarArgs, 'state'>>;
8543
8823
  updateAuth0UserPassword?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateAuth0UserPasswordArgs, never>>;
8544
8824
  updateConfiguration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationArgs, 'input' | 'key' | 'value'>>;
8545
8825
  updateConfigurationPolicyValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationPolicyValueArgs, 'key' | 'value'>>;
@@ -8555,10 +8835,11 @@ export declare type IMutationResolvers<ContextType = MyContext, ParentType exten
8555
8835
  updateRoleValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateRoleValueArgs, 'key' | 'value'>>;
8556
8836
  updateSelectedOrgResource?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateSelectedOrgResourceArgs, 'resource'>>;
8557
8837
  updateUserAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateUserAccountArgs, never>>;
8558
- verifyUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationVerifyUserEmailVerificationTokenArgs, never>>;
8838
+ validatePasswordResetOtp?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationValidatePasswordResetOtpArgs, 'email' | 'code'>>;
8839
+ validateUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationValidateUserEmailVerificationTokenArgs, 'code'>>;
8559
8840
  };
8560
8841
  export declare type INodeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Node'] = IResolversParentTypes['Node']> = {
8561
- __resolveType: TypeResolveFn<'AccessToken' | 'ApiExternalAccount' | 'ApiManagement' | 'OrgUserAccunt' | 'UserAccount', ParentType, ContextType>;
8842
+ __resolveType: TypeResolveFn<'AccessToken' | 'ApiExternalAccount' | 'ApiManagement' | 'UserAccount', ParentType, ContextType>;
8562
8843
  id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
8563
8844
  };
8564
8845
  export interface IObservableScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Observable'], any> {
@@ -8573,6 +8854,7 @@ export declare type IOrgMemberResolvers<ContextType = MyContext, ParentType exte
8573
8854
  _id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
8574
8855
  userId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
8575
8856
  role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
8857
+ user?: Resolver<IResolversTypes['UserAccount'], ParentType, ContextType>;
8576
8858
  isSelf?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
8577
8859
  inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
8578
8860
  name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -8591,19 +8873,11 @@ export declare type IOrgUserResolvers<ContextType = MyContext, ParentType extend
8591
8873
  role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
8592
8874
  inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
8593
8875
  orgName?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
8594
- user?: Resolver<IResolversTypes['OrgUserAccunt'], ParentType, ContextType>;
8876
+ user?: Resolver<IResolversTypes['UserAccount'], ParentType, ContextType>;
8595
8877
  isSelf?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
8596
8878
  crossCheckEmail?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
8597
8879
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
8598
8880
  };
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
8881
  export declare type IOrganizationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Organization'] = IResolversParentTypes['Organization']> = {
8608
8882
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
8609
8883
  name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -8727,18 +9001,6 @@ export declare type IOrganizationRoleResolvers<ContextType = MyContext, ParentTy
8727
9001
  overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
8728
9002
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
8729
9003
  };
8730
- export declare type IOrganizationServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrganizationService'] = IResolversParentTypes['OrganizationService']> = {
8731
- getOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IOrganizationServiceGetOrganizationArgs, never>>;
8732
- createDefaultOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IOrganizationServiceCreateDefaultOrganizationArgs, never>>;
8733
- getUserOrganizations?: Resolver<Maybe<Array<Maybe<IResolversTypes['Organization']>>>, ParentType, ContextType, RequireFields<IOrganizationServiceGetUserOrganizationsArgs, never>>;
8734
- createOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IOrganizationServiceCreateOrganizationArgs, 'workspace'>>;
8735
- updateOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IOrganizationServiceUpdateOrganizationArgs, 'workspace'>>;
8736
- removeOrganization?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IOrganizationServiceRemoveOrganizationArgs, 'workspace'>>;
8737
- getUserOrgRole?: Resolver<Maybe<IResolversTypes['OrgUserRole']>, ParentType, ContextType, RequireFields<IOrganizationServiceGetUserOrgRoleArgs, 'orgName' | 'userId'>>;
8738
- sendInvitation?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IOrganizationServiceSendInvitationArgs, 'request'>>;
8739
- declineInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IOrganizationServiceDeclineInvitationArgs, 'id'>>;
8740
- __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
8741
- };
8742
9004
  export declare type IOrganizationSettingsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrganizationSettings'] = IResolversParentTypes['OrganizationSettings']> = {
8743
9005
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
8744
9006
  latestSettings?: Resolver<Maybe<IResolversTypes['Settings']>, ParentType, ContextType>;
@@ -8756,6 +9018,7 @@ export declare type IOrganizationsDeletedEventResolvers<ContextType = MyContext,
8756
9018
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
8757
9019
  };
8758
9020
  export declare type IOverridesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Overrides'] = IResolversParentTypes['Overrides']> = {
9021
+ keys?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
8759
9022
  contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
8760
9023
  identifiers?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
8761
9024
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
@@ -8775,6 +9038,15 @@ export declare type IPhoneNumberResolvers<ContextType = MyContext, ParentType ex
8775
9038
  phoneNumber?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
8776
9039
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
8777
9040
  };
9041
+ export declare type IPolicyConfigurationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PolicyConfiguration'] = IResolversParentTypes['PolicyConfiguration']> = {
9042
+ id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
9043
+ resource?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
9044
+ target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
9045
+ contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
9046
+ keys?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
9047
+ overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
9048
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
9049
+ };
8778
9050
  export declare type IPolicySubjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PolicySubject'] = IResolversParentTypes['PolicySubject']> = {
8779
9051
  policyURL?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
8780
9052
  createdAt?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -8875,10 +9147,12 @@ export declare type IQueryResolvers<ContextType = MyContext, ParentType extends
8875
9147
  externalAccounts?: Resolver<IResolversTypes['ExternalAccountConnection'], ParentType, ContextType, RequireFields<IQueryExternalAccountsArgs, never>>;
8876
9148
  fetchAuth0User?: Resolver<Maybe<IResolversTypes['UserProfile']>, ParentType, ContextType, RequireFields<IQueryFetchAuth0UserArgs, 'auth0UserId'>>;
8877
9149
  fetchUserAuthorizedDevices?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserDevice']>>>, ParentType, ContextType, RequireFields<IQueryFetchUserAuthorizedDevicesArgs, 'auth0UserId'>>;
9150
+ fetchUserSessions?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserSession']>>>, ParentType, ContextType>;
8878
9151
  filterIntegrationConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType, RequireFields<IQueryFilterIntegrationConfigurationArgs, never>>;
8879
9152
  getAccounts?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccount']>>>, ParentType, ContextType, RequireFields<IQueryGetAccountsArgs, never>>;
8880
9153
  getAllCountries?: Resolver<Maybe<Array<Maybe<IResolversTypes['Country']>>>, ParentType, ContextType, RequireFields<IQueryGetAllCountriesArgs, never>>;
8881
9154
  getAllIntegrationConfigurations?: Resolver<Maybe<IResolversTypes['IntegrationConfigurationsOutput']>, ParentType, ContextType, RequireFields<IQueryGetAllIntegrationConfigurationsArgs, never>>;
9155
+ getAllUsersTokens?: Resolver<Maybe<Array<Maybe<IResolversTypes['UsersToken']>>>, ParentType, ContextType, RequireFields<IQueryGetAllUsersTokensArgs, 'types'>>;
8882
9156
  getConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['Configuration']>>>, ParentType, ContextType, RequireFields<IQueryGetConfigurationArgs, never>>;
8883
9157
  getConfigurationData?: Resolver<Maybe<IResolversTypes['ConfigurationData']>, ParentType, ContextType>;
8884
9158
  getConfigurationPolicies?: Resolver<Maybe<Array<Maybe<IResolversTypes['ConfigurationPolicy']>>>, ParentType, ContextType, RequireFields<IQueryGetConfigurationPoliciesArgs, never>>;
@@ -8924,7 +9198,6 @@ export declare type IQueryResolvers<ContextType = MyContext, ParentType extends
8924
9198
  resolveConfiguration?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IQueryResolveConfigurationArgs, 'input'>>;
8925
9199
  resolveSettings?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionSettings']>>>, ParentType, ContextType, RequireFields<IQueryResolveSettingsArgs, 'uri'>>;
8926
9200
  selectedOrgResource?: Resolver<Maybe<IResolversTypes['Context']>, ParentType, ContextType>;
8927
- sidebarState?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
8928
9201
  team?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IQueryTeamArgs, 'teamId'>>;
8929
9202
  teams?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccountTeam']>>>, ParentType, ContextType>;
8930
9203
  viewerPolicies?: Resolver<Maybe<IResolversTypes['PolicySubject']>, ParentType, ContextType, RequireFields<IQueryViewerPoliciesArgs, 'input'>>;
@@ -9075,17 +9348,6 @@ export declare type ITeamMemberResolvers<ContextType = MyContext, ParentType ext
9075
9348
  status?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
9076
9349
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
9077
9350
  };
9078
- export declare type ITeamServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['TeamService'] = IResolversParentTypes['TeamService']> = {
9079
- getTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<ITeamServiceGetTeamArgs, never>>;
9080
- getUserTeams?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccountTeam']>>>, ParentType, ContextType, RequireFields<ITeamServiceGetUserTeamsArgs, never>>;
9081
- createTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<ITeamServiceCreateTeamArgs, never>>;
9082
- updateTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<ITeamServiceUpdateTeamArgs, never>>;
9083
- addWorkspaces?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<ITeamServiceAddWorkspacesArgs, never>>;
9084
- removeTeam?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<ITeamServiceRemoveTeamArgs, never>>;
9085
- createDefaultTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<ITeamServiceCreateDefaultTeamArgs, never>>;
9086
- sendProjectNotification?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<ITeamServiceSendProjectNotificationArgs, never>>;
9087
- __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
9088
- };
9089
9351
  export interface ITimeScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Time'], any> {
9090
9352
  name: 'Time';
9091
9353
  }
@@ -9148,7 +9410,7 @@ export declare type IUserAuth0SessionDeviceInfoResolvers<ContextType = MyContext
9148
9410
  os?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
9149
9411
  deviceName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
9150
9412
  browserName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
9151
- isMobile?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
9413
+ platform?: Resolver<IResolversTypes['DeviceInfoPlatform'], ParentType, ContextType>;
9152
9414
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
9153
9415
  };
9154
9416
  export declare type IUserAuth0SessionInfoResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserAuth0SessionInfo'] = IResolversParentTypes['UserAuth0SessionInfo']> = {
@@ -9207,12 +9469,6 @@ export declare type IUserMetadataResolvers<ContextType = MyContext, ParentType e
9207
9469
  zip_code?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
9208
9470
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
9209
9471
  };
9210
- export declare type IUserOrgResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserOrg'] = IResolversParentTypes['UserOrg']> = {
9211
- userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
9212
- role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
9213
- inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
9214
- __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
9215
- };
9216
9472
  export declare type IUserPreviousValuesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserPreviousValues'] = IResolversParentTypes['UserPreviousValues']> = {
9217
9473
  auth0UserId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
9218
9474
  createdAt?: Resolver<IResolversTypes['DateTime'], ParentType, ContextType>;
@@ -9253,6 +9509,13 @@ export declare type IUserProfileResolvers<ContextType = MyContext, ParentType ex
9253
9509
  nonce?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
9254
9510
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
9255
9511
  };
9512
+ export declare type IUserSessionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserSession'] = IResolversParentTypes['UserSession']> = {
9513
+ sessionId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
9514
+ deviceInfo?: Resolver<Maybe<IResolversTypes['UserAuth0SessionDeviceInfo']>, ParentType, ContextType>;
9515
+ lastLoginAt?: Resolver<Maybe<IResolversTypes['Date']>, ParentType, ContextType>;
9516
+ lastLoginIp?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
9517
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
9518
+ };
9256
9519
  export declare type IUserSessionIdResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserSessionId'] = IResolversParentTypes['UserSessionId']> = {
9257
9520
  sessionId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
9258
9521
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
@@ -9273,7 +9536,7 @@ export declare type IUserStateResolvers<ContextType = MyContext, ParentType exte
9273
9536
  isNewlyLoggedIn?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
9274
9537
  isProfileFetching?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
9275
9538
  isSocialLogin?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
9276
- linkedIdentities?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
9539
+ linkedIdentities?: Resolver<Maybe<Array<Maybe<IResolversTypes['LinkedIdentity']>>>, ParentType, ContextType>;
9277
9540
  loggingInProgress?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
9278
9541
  passwordResetProgress?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
9279
9542
  passwordResetSuccess?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
@@ -9290,6 +9553,11 @@ export declare type IUserTokenResolvers<ContextType = MyContext, ParentType exte
9290
9553
  valid?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
9291
9554
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
9292
9555
  };
9556
+ export declare type IUsersTokenResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UsersToken'] = IResolversParentTypes['UsersToken']> = {
9557
+ userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
9558
+ tokens?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserToken']>>>, ParentType, ContextType>;
9559
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
9560
+ };
9293
9561
  export declare type IViewerSettingsSubjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ViewerSettingsSubject'] = IResolversParentTypes['ViewerSettingsSubject']> = {
9294
9562
  settingsURL?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
9295
9563
  settings?: Resolver<Maybe<IResolversTypes['Preferences']>, ParentType, ContextType>;
@@ -9299,19 +9567,22 @@ export declare type IResolvers<ContextType = MyContext> = {
9299
9567
  AccessRole?: IAccessRoleResolvers<ContextType>;
9300
9568
  AccessToken?: IAccessTokenResolvers<ContextType>;
9301
9569
  AccessTokenConnection?: IAccessTokenConnectionResolvers<ContextType>;
9302
- AccountService?: IAccountServiceResolvers<ContextType>;
9303
9570
  AccountTeam?: IAccountTeamResolvers<ContextType>;
9304
9571
  AdminIdeSettings?: IAdminIdeSettingsResolvers<ContextType>;
9305
9572
  AnyObject?: GraphQLScalarType;
9306
9573
  ApiExternalAccount?: IApiExternalAccountResolvers<ContextType>;
9307
9574
  ApiManagement?: IApiManagementResolvers<ContextType>;
9575
+ ApplicationConfiguration?: IApplicationConfigurationResolvers<ContextType>;
9308
9576
  ApplicationPolicy?: IApplicationPolicyResolvers<ContextType>;
9309
- ApplicationRolePermission?: IApplicationRolePermissionResolvers<ContextType>;
9577
+ ApplicationRole?: IApplicationRoleResolvers<ContextType>;
9310
9578
  ApplicationSettings?: IApplicationSettingsResolvers<ContextType>;
9311
9579
  Auth0Identity?: IAuth0IdentityResolvers<ContextType>;
9312
9580
  Auth0IdentityProfileData?: IAuth0IdentityProfileDataResolvers<ContextType>;
9313
9581
  AuthTokens?: IAuthTokensResolvers<ContextType>;
9314
9582
  AuthUser?: IAuthUserResolvers<ContextType>;
9583
+ BaseAccountService?: IBaseAccountServiceResolvers<ContextType>;
9584
+ BaseOrganizationService?: IBaseOrganizationServiceResolvers<ContextType>;
9585
+ BaseTeamService?: IBaseTeamServiceResolvers<ContextType>;
9315
9586
  Configuration?: IConfigurationResolvers<ContextType>;
9316
9587
  ConfigurationData?: IConfigurationDataResolvers<ContextType>;
9317
9588
  ConfigurationExtensionInfo?: IConfigurationExtensionInfoResolvers<ContextType>;
@@ -9345,7 +9616,6 @@ export declare type IResolvers<ContextType = MyContext> = {
9345
9616
  IAuth0User?: IIAuth0UserResolvers<ContextType>;
9346
9617
  IAuth0UserProfile?: IIAuth0UserProfileResolvers<ContextType>;
9347
9618
  ICity?: IICityResolvers<ContextType>;
9348
- IConfigurationChangeEvent?: IIConfigurationChangeEventResolvers<ContextType>;
9349
9619
  IConfigurationModel?: IIConfigurationModelResolvers<ContextType>;
9350
9620
  IConfigurationService?: IIConfigurationServiceResolvers<ContextType>;
9351
9621
  ICountry?: IICountryResolvers<ContextType>;
@@ -9366,6 +9636,7 @@ export declare type IResolvers<ContextType = MyContext> = {
9366
9636
  InviteMember?: IInviteMemberResolvers<ContextType>;
9367
9637
  JSON?: GraphQLScalarType;
9368
9638
  JSONObject?: GraphQLScalarType;
9639
+ LinkedIdentity?: ILinkedIdentityResolvers<ContextType>;
9369
9640
  LoginError?: ILoginErrorResolvers<ContextType>;
9370
9641
  MachineConfiguration?: IMachineConfigurationResolvers<ContextType>;
9371
9642
  MachineSettings?: IMachineSettingsResolvers<ContextType>;
@@ -9378,7 +9649,6 @@ export declare type IResolvers<ContextType = MyContext> = {
9378
9649
  OrgMember?: IOrgMemberResolvers<ContextType>;
9379
9650
  OrgMembersOutput?: IOrgMembersOutputResolvers<ContextType>;
9380
9651
  OrgUser?: IOrgUserResolvers<ContextType>;
9381
- OrgUserAccunt?: IOrgUserAccuntResolvers<ContextType>;
9382
9652
  Organization?: IOrganizationResolvers<ContextType>;
9383
9653
  OrganizationConfiguration?: IOrganizationConfigurationResolvers<ContextType>;
9384
9654
  OrganizationCreatedEvent?: IOrganizationCreatedEventResolvers<ContextType>;
@@ -9393,7 +9663,6 @@ export declare type IResolvers<ContextType = MyContext> = {
9393
9663
  OrganizationResourceData?: IOrganizationResourceDataResolvers<ContextType>;
9394
9664
  OrganizationResourceSettings?: IOrganizationResourceSettingsResolvers<ContextType>;
9395
9665
  OrganizationRole?: IOrganizationRoleResolvers<ContextType>;
9396
- OrganizationService?: IOrganizationServiceResolvers<ContextType>;
9397
9666
  OrganizationSettings?: IOrganizationSettingsResolvers<ContextType>;
9398
9667
  OrganizationsDeactivatedEvent?: IOrganizationsDeactivatedEventResolvers<ContextType>;
9399
9668
  OrganizationsDeletedEvent?: IOrganizationsDeletedEventResolvers<ContextType>;
@@ -9401,6 +9670,7 @@ export declare type IResolvers<ContextType = MyContext> = {
9401
9670
  PageInfo?: IPageInfoResolvers<ContextType>;
9402
9671
  PermissionSubject?: IPermissionSubjectResolvers<ContextType>;
9403
9672
  PhoneNumber?: IPhoneNumberResolvers<ContextType>;
9673
+ PolicyConfiguration?: IPolicyConfigurationResolvers<ContextType>;
9404
9674
  PolicySubject?: IPolicySubjectResolvers<ContextType>;
9405
9675
  PopupIntegrationAuthorization?: IPopupIntegrationAuthorizationResolvers<ContextType>;
9406
9676
  Position?: IPositionResolvers<ContextType>;
@@ -9440,7 +9710,6 @@ export declare type IResolvers<ContextType = MyContext> = {
9440
9710
  Subscription?: ISubscriptionResolvers<ContextType>;
9441
9711
  TeamInvitationEmailVariables?: ITeamInvitationEmailVariablesResolvers<ContextType>;
9442
9712
  TeamMember?: ITeamMemberResolvers<ContextType>;
9443
- TeamService?: ITeamServiceResolvers<ContextType>;
9444
9713
  Time?: GraphQLScalarType;
9445
9714
  URI?: GraphQLScalarType;
9446
9715
  URIInput?: GraphQLScalarType;
@@ -9456,13 +9725,14 @@ export declare type IResolvers<ContextType = MyContext> = {
9456
9725
  UserContext?: IUserContextResolvers<ContextType>;
9457
9726
  UserDevice?: IUserDeviceResolvers<ContextType>;
9458
9727
  UserMetadata?: IUserMetadataResolvers<ContextType>;
9459
- UserOrg?: IUserOrgResolvers<ContextType>;
9460
9728
  UserPreviousValues?: IUserPreviousValuesResolvers<ContextType>;
9461
9729
  UserProfile?: IUserProfileResolvers<ContextType>;
9730
+ UserSession?: IUserSessionResolvers<ContextType>;
9462
9731
  UserSessionId?: IUserSessionIdResolvers<ContextType>;
9463
9732
  UserSettings?: IUserSettingsResolvers<ContextType>;
9464
9733
  UserState?: IUserStateResolvers<ContextType>;
9465
9734
  UserToken?: IUserTokenResolvers<ContextType>;
9735
+ UsersToken?: IUsersTokenResolvers<ContextType>;
9466
9736
  ViewerSettingsSubject?: IViewerSettingsSubjectResolvers<ContextType>;
9467
9737
  };
9468
9738
  export declare type IDirectiveResolvers<ContextType = MyContext> = {