@adminide-stack/core 3.1.1-alpha.7 → 3.1.2-alpha.1

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.
@@ -44,6 +44,59 @@ export declare type Scalars = {
44
44
  URIInput: URI | UriComponents;
45
45
  };
46
46
  export declare type IAccessRole = IDefaultRole | IOrganizationRole | IResourceRole | IApplicationRolePermission;
47
+ /** An access token that grants to the holder the privileges of the user who created it. */
48
+ export declare type IAccessToken = INode & {
49
+ __typename?: 'AccessToken';
50
+ /** The unique ID for the access token. */
51
+ id: Scalars['ID'];
52
+ /** The user whose privileges the access token grants. */
53
+ subject: IUserAccount;
54
+ /** The scopes that define the allowed set of operations that can be performed using this access token. */
55
+ scopes: Array<Scalars['AnyObject']>;
56
+ /** A user-supplied descriptive note for the access token. */
57
+ note: Scalars['String'];
58
+ /**
59
+ * The user who created the access token. This is either the subject `user` (if the access token
60
+ * was created by teh same user) or a site `admin` (who can create access tokens for any user).
61
+ */
62
+ creator: IUserAccount;
63
+ /** The date when the access token was created */
64
+ createdAt: Scalars['DateTime'];
65
+ /** The date when the access token was last used to authenticate a request. */
66
+ lastUsedAt?: Maybe<Scalars['DateTime']>;
67
+ };
68
+ /** A list of access tokens. */
69
+ export declare type IAccessTokenConnection = {
70
+ __typename?: 'AccessTokenConnection';
71
+ /** A list of access tokens. */
72
+ nodes: Array<IAccessToken>;
73
+ /**
74
+ * The total count of access tokens in the connection. This total count may be larger than the number of nodes
75
+ * in this object when the result is paginated.
76
+ */
77
+ totalCount: Scalars['Int'];
78
+ /** Pagination information. */
79
+ pageInfo: IPageInfo;
80
+ };
81
+ /** An access token that grants to the holder the privileges of the user who created it. */
82
+ export declare type IAccessToken_Input = {
83
+ /** The user whose privileges the access token grants. */
84
+ subject?: Maybe<Scalars['String']>;
85
+ /** The scopes that define the allowed set of operations that can be performed using this access token. */
86
+ scopes: Array<Scalars['AnyObject']>;
87
+ /** A user-supplied descriptive note for the access token. */
88
+ note: Scalars['String'];
89
+ /**
90
+ * The user who created the access token. This is either the subject `user` (if the access token
91
+ * was created by teh same user) or a site `admin` (who can create access tokens for any user).
92
+ */
93
+ creator?: Maybe<Scalars['String']>;
94
+ /** The date when the access token was created */
95
+ createdAt?: Maybe<Scalars['DateTime']>;
96
+ /** The date when the access token was last used to authenticate a request. */
97
+ lastUsedAt?: Maybe<Scalars['DateTime']>;
98
+ orgName: Scalars['String'];
99
+ };
47
100
  export declare enum IAccountBroadcasterActions {
48
101
  OnAccountCreated = "onAccountCreated",
49
102
  OnAccountUpdated = "onAccountUpdated",
@@ -149,6 +202,53 @@ export declare type IAdminIdeSettings = {
149
202
  __typename?: 'AdminIdeSettings';
150
203
  dummy?: Maybe<Scalars['Int']>;
151
204
  };
205
+ /** An external account associated with a user. */
206
+ export declare type IApiExternalAccount = INode & {
207
+ __typename?: 'ApiExternalAccount';
208
+ /** The unique ID for the external account. */
209
+ id: Scalars['ID'];
210
+ /** The user on CDEBase. */
211
+ user: IUserAccount;
212
+ /** The type of the external service where the external account resides. */
213
+ serviceType: Scalars['String'];
214
+ /** An identifier for the external service where the external account resides. */
215
+ serviceID: Scalars['String'];
216
+ /**
217
+ * An identifier for the client of the external service where the external account resides. This distinguishes
218
+ * amount multiple autentication providers that access the same service with different parameters.
219
+ */
220
+ clientID: Scalars['String'];
221
+ /** An identifier for the external `account` (typically equal to or derived from the ID on the external service). */
222
+ accountID: Scalars['String'];
223
+ /** The creation date of this external account on CDEBase. */
224
+ createdAt: Scalars['DateTime'];
225
+ /** The last-updated date of this external account on CDEBase. */
226
+ updatedAt: Scalars['DateTime'];
227
+ /** A URL that, when visted, re-initates the autentication process. */
228
+ refreshURL?: Maybe<Scalars['String']>;
229
+ /**
230
+ * Provider-specific data about the external account.
231
+ * Only site admins may query this field.
232
+ */
233
+ accountData?: Maybe<Scalars['AnyObject']>;
234
+ };
235
+ /** List all user access tokens */
236
+ export declare type IApiManagement = INode & {
237
+ __typename?: 'ApiManagement';
238
+ /** The unique ID for the access token. */
239
+ id: Scalars['ID'];
240
+ /** List of access token that grants to the holder the privileges of the user who created it. */
241
+ accessTokens?: Maybe<Array<Maybe<IAccessToken>>>;
242
+ /** Id of user to whom these access tokens relates to */
243
+ user: IUserAccount;
244
+ };
245
+ /** List all user access tokens */
246
+ export declare type IApiManagement_Input = {
247
+ /** List of access token that grants to the holder the privileges of the user who created it. */
248
+ accessTokens?: Maybe<Array<Maybe<IAccessToken_Input>>>;
249
+ /** Id of user to whom these access tokens relates to */
250
+ user?: Maybe<Scalars['String']>;
251
+ };
152
252
  export declare enum IApplicationBillingPlanPolicy {
153
253
  Invoicing = "Invoicing",
154
254
  ManagerRole = "ManagerRole",
@@ -324,14 +424,17 @@ export declare enum IClientTypes {
324
424
  Individuals = "Individuals"
325
425
  }
326
426
  export declare enum IConfigCollectionName {
327
- Application = "application",
328
427
  Accounts = "accounts",
329
- Organizations = "organizations",
428
+ Application = "application",
429
+ Clients = "clients",
430
+ IntegrationWorkflow = "integrationWorkflow",
330
431
  Machines = "machines",
331
- Workspaces = "workspaces",
332
- Teams = "teams",
432
+ Organizations = "organizations",
333
433
  Projects = "projects",
334
- Clients = "clients"
434
+ Tags = "tags",
435
+ Tasks = "tasks",
436
+ Teams = "teams",
437
+ Workspaces = "workspaces"
335
438
  }
336
439
  export declare enum IConfigFragmentName {
337
440
  Resources = "resources",
@@ -350,8 +453,10 @@ export declare enum IConfigFragmentName {
350
453
  export declare type IConfiguration = IDefaultConfiguration | IMachineConfiguration | IUserConfiguration | IOrganizationConfiguration | IOrganizationResourceConfiguration;
351
454
  export declare enum IConfigurationContributionNames {
352
455
  DefaultPermissions = "defaultPermissions",
456
+ DefaultPolicies = "defaultPolicies",
353
457
  DefaultSettings = "defaultSettings",
354
- DefaultPolicies = "defaultPolicies"
458
+ /** Integration settings */
459
+ Integration = "integration"
355
460
  }
356
461
  export declare type IConfigurationData = {
357
462
  __typename?: 'ConfigurationData';
@@ -510,6 +615,17 @@ export declare type ICountry = {
510
615
  export declare type ICountryInput = {
511
616
  name: Scalars['String'];
512
617
  };
618
+ /** The result for Mutation.createAccessToken */
619
+ export declare type ICreateAccessTokenResult = {
620
+ __typename?: 'CreateAccessTokenResult';
621
+ /** The ID of the newly created access token. */
622
+ id: Scalars['ID'];
623
+ /**
624
+ * The secret token value that is used to authenticate API clients. The caller is responsible for storing this
625
+ * value secretly.
626
+ */
627
+ token: Scalars['String'];
628
+ };
513
629
  export declare type IDefaultConfiguration = IIConfigurationModel & {
514
630
  __typename?: 'DefaultConfiguration';
515
631
  /** The ID. */
@@ -580,6 +696,19 @@ export declare type IEnvironment = {
580
696
  export declare type IEnvironmentPayload = {
581
697
  args?: Maybe<Scalars['AnyObject']>;
582
698
  };
699
+ /** A list of external accounts. */
700
+ export declare type IExternalAccountConnection = {
701
+ __typename?: 'ExternalAccountConnection';
702
+ /** A list of external accounts. */
703
+ nodes: Array<IApiExternalAccount>;
704
+ /**
705
+ * The total count of external accounts in the connection. This total count may be larger than the number of nodes
706
+ * in this object when the result is paginated.
707
+ */
708
+ totalCount: Scalars['Int'];
709
+ /** Pagination information. */
710
+ pageInfo: IPageInfo;
711
+ };
583
712
  export declare type IExternalResourceData = IIResourceData & {
584
713
  __typename?: 'ExternalResourceData';
585
714
  /** The associated URI for this external resource. */
@@ -809,8 +938,13 @@ export declare type IIntegrationConfiguration = {
809
938
  userId?: Maybe<Scalars['ID']>;
810
939
  integrationName?: Maybe<Scalars['String']>;
811
940
  status?: Maybe<Scalars['String']>;
941
+ orgName?: Maybe<Scalars['String']>;
812
942
  updatedAt?: Maybe<Scalars['DateTime']>;
813
943
  integrationInfo?: Maybe<Scalars['JSON']>;
944
+ /** Raw Settings Stored in DB */
945
+ settings?: Maybe<Scalars['JSON']>;
946
+ /** Settings Configuration */
947
+ settingsConfiguration?: Maybe<IMachineConfiguration>;
814
948
  };
815
949
  export declare type IIntegrationConfigurationCreateOrUpdateInput = {
816
950
  id?: Maybe<Scalars['ID']>;
@@ -819,6 +953,7 @@ export declare type IIntegrationConfigurationCreateOrUpdateInput = {
819
953
  status?: Maybe<Scalars['String']>;
820
954
  integrationInfo?: Maybe<Scalars['JSON']>;
821
955
  userId?: Maybe<Scalars['ID']>;
956
+ orgName?: Maybe<Scalars['String']>;
822
957
  };
823
958
  export declare type IIntegrationConfigurationFilterInput = {
824
959
  id?: Maybe<Scalars['ID']>;
@@ -826,6 +961,7 @@ export declare type IIntegrationConfigurationFilterInput = {
826
961
  integrationName?: Maybe<Scalars['String']>;
827
962
  status?: Maybe<Scalars['String']>;
828
963
  userId?: Maybe<Scalars['ID']>;
964
+ orgName?: Maybe<Scalars['String']>;
829
965
  };
830
966
  export declare type IIntegrationConfigurationInput = {
831
967
  name?: Maybe<Scalars['String']>;
@@ -833,12 +969,17 @@ export declare type IIntegrationConfigurationInput = {
833
969
  status?: Maybe<Scalars['String']>;
834
970
  integrationInfo?: Maybe<Scalars['JSON']>;
835
971
  userId?: Maybe<Scalars['ID']>;
972
+ orgName?: Maybe<Scalars['String']>;
836
973
  };
837
974
  export declare type IIntegrationConfigurationsOutput = {
838
975
  __typename?: 'IntegrationConfigurationsOutput';
839
976
  totalCount?: Maybe<Scalars['Int']>;
840
977
  data?: Maybe<Array<Maybe<IIntegrationConfiguration>>>;
841
978
  };
979
+ export declare type IIntegrationPreferences = {
980
+ __typename?: 'IntegrationPreferences';
981
+ dummy?: Maybe<Scalars['String']>;
982
+ };
842
983
  export declare type IInviteMember = {
843
984
  __typename?: 'InviteMember';
844
985
  id?: Maybe<Scalars['String']>;
@@ -951,6 +1092,7 @@ export declare enum IMoleculerServiceName {
951
1092
  AccountTeam = "AccountTeam",
952
1093
  AccountUser = "AccountUser",
953
1094
  AccountsPostEventsService = "AccountsPostEventsService",
1095
+ ApiManagementMoleculerService = "ApiManagementMoleculerService",
954
1096
  AuthUserService = "AuthUserService",
955
1097
  OrganizationContextService = "OrganizationContextService",
956
1098
  PaymentEventListener = "PaymentEventListener",
@@ -976,11 +1118,39 @@ export declare type IMutation = {
976
1118
  changeMemberRole?: Maybe<Scalars['Boolean']>;
977
1119
  changeOrgMemberRole?: Maybe<Scalars['Boolean']>;
978
1120
  changeOrganization?: Maybe<Scalars['String']>;
1121
+ /**
1122
+ * Creates an access token that grants the privileges of the specified user (referred to as the access token's
1123
+ * "subject" user after token creation). The result is the access token value, which the caller is responsible
1124
+ * for storing (it is not accessible by CDEBase after creation).
1125
+ *
1126
+ * The supported scopes are:
1127
+ *
1128
+ * - "user:all": Full control of all resources accessible to the user account.
1129
+ * - "site-admin:sudo": Ability to perform any action as any other user. (Only site admins may create tokens
1130
+ * with this scope.)
1131
+ *
1132
+ * Only the user or site admins may perform this mutation.
1133
+ */
1134
+ createAccessToken: ICreateAccessTokenResult;
979
1135
  createIntegrationConfiguration?: Maybe<IIntegraitonConfigurationId>;
980
1136
  createOrUpdateIntegrationConfiguration?: Maybe<IIntegraitonConfigurationId>;
981
1137
  createOrganization?: Maybe<IOrganization>;
982
1138
  createTeam?: Maybe<IAccountTeam>;
983
1139
  declineOrganizationInvitation?: Maybe<Scalars['Boolean']>;
1140
+ /**
1141
+ * Deletes and immediately revokes the specified access token, specified by either its ID or by the token
1142
+ * itself.
1143
+ *
1144
+ * Only site admins or the user who owns the token may perform this mutation.
1145
+ */
1146
+ deleteAccessToken: IEmptyResponse;
1147
+ /**
1148
+ * Deletes the association between an external account and its CDEBase user. It does NOT delete the external
1149
+ * account on the external service where it resides.
1150
+ *
1151
+ * Only site admins or the user who is associated with the external account may perform this mutation.
1152
+ */
1153
+ deleteExternalAssociation: IEmptyResponse;
984
1154
  deleteIntegrationConfiguration?: Maybe<Scalars['Boolean']>;
985
1155
  deleteUserAccount?: Maybe<Scalars['Boolean']>;
986
1156
  deleteUserAuthorizedDevice?: Maybe<Scalars['Boolean']>;
@@ -1070,6 +1240,11 @@ export declare type IMutationChangeOrganizationArgs = {
1070
1240
  orgName?: Maybe<Scalars['String']>;
1071
1241
  machineName?: Maybe<Scalars['String']>;
1072
1242
  };
1243
+ export declare type IMutationCreateAccessTokenArgs = {
1244
+ user: Scalars['ID'];
1245
+ scopes: Array<Scalars['AnyObject']>;
1246
+ note: Scalars['String'];
1247
+ };
1073
1248
  export declare type IMutationCreateIntegrationConfigurationArgs = {
1074
1249
  data?: Maybe<IIntegrationConfigurationInput>;
1075
1250
  };
@@ -1085,6 +1260,12 @@ export declare type IMutationCreateTeamArgs = {
1085
1260
  export declare type IMutationDeclineOrganizationInvitationArgs = {
1086
1261
  id: Scalars['ID'];
1087
1262
  };
1263
+ export declare type IMutationDeleteAccessTokenArgs = {
1264
+ where: IWhereDeleteAccessTokenInput;
1265
+ };
1266
+ export declare type IMutationDeleteExternalAssociationArgs = {
1267
+ externalAccount: Scalars['ID'];
1268
+ };
1088
1269
  export declare type IMutationDeleteIntegrationConfigurationArgs = {
1089
1270
  id: Scalars['String'];
1090
1271
  };
@@ -1273,6 +1454,7 @@ export declare type IOrgMember = {
1273
1454
  _id?: Maybe<Scalars['String']>;
1274
1455
  userId?: Maybe<Scalars['String']>;
1275
1456
  role?: Maybe<IApplicationRoles>;
1457
+ isSelf?: Maybe<Scalars['Boolean']>;
1276
1458
  inactive?: Maybe<Scalars['Boolean']>;
1277
1459
  name?: Maybe<Scalars['String']>;
1278
1460
  email?: Maybe<Scalars['String']>;
@@ -1809,6 +1991,7 @@ export declare type IPreferences = {
1809
1991
  defaultSetting?: Maybe<Array<Maybe<ISettingsGroup>>>;
1810
1992
  dummy?: Maybe<Scalars['Int']>;
1811
1993
  global?: Maybe<IPreference_Global>;
1994
+ integration?: Maybe<IIntegrationPreferences>;
1812
1995
  organization?: Maybe<IPreference_Organization>;
1813
1996
  };
1814
1997
  export declare type IPreferencesInput = {
@@ -1848,6 +2031,12 @@ export declare type IPreferencesType = {
1848
2031
  export declare type IQuery = {
1849
2032
  __typename?: 'Query';
1850
2033
  GetSshKey?: Maybe<ISshKey>;
2034
+ /**
2035
+ * The user's access tokens (which grant to the holder the privileges of the user). This consists
2036
+ * of all access tokens whose subject is this user.
2037
+ * Only the user and site admins can access this field.
2038
+ */
2039
+ accessTokens: IAccessTokenConnection;
1851
2040
  decodeOrganizationInvitation?: Maybe<IOrganizationInvitationDecode>;
1852
2041
  /** Return the permissions groups */
1853
2042
  defaultPermissions?: Maybe<Array<Maybe<ISettingsGroup>>>;
@@ -1865,6 +2054,8 @@ export declare type IQuery = {
1865
2054
  * https://github.com/apollographql/apollo-server/issues/2556
1866
2055
  */
1867
2056
  defaultViewerSettingsSubject: IDefaultSettings;
2057
+ /** A list of external accounts that are associated with the user. */
2058
+ externalAccounts: IExternalAccountConnection;
1868
2059
  /** Fetches a User from Auth0 Service */
1869
2060
  fetchAuth0User?: Maybe<IUserProfile>;
1870
2061
  fetchUserAuthorizedDevices?: Maybe<Array<Maybe<IUserDevice>>>;
@@ -1938,6 +2129,13 @@ export declare type IQuery = {
1938
2129
  export declare type IQueryGetSshKeyArgs = {
1939
2130
  id: Scalars['ID'];
1940
2131
  };
2132
+ export declare type IQueryAccessTokensArgs = {
2133
+ first?: Maybe<Scalars['Int']>;
2134
+ last?: Maybe<Scalars['Int']>;
2135
+ before?: Maybe<Scalars['String']>;
2136
+ after?: Maybe<Scalars['String']>;
2137
+ skip?: Maybe<Scalars['Int']>;
2138
+ };
1941
2139
  export declare type IQueryDecodeOrganizationInvitationArgs = {
1942
2140
  token: Scalars['String'];
1943
2141
  };
@@ -1950,6 +2148,9 @@ export declare type IQueryDefaultPoliciesArgs = {
1950
2148
  export declare type IQueryDefaultViewerSettingsSubjectArgs = {
1951
2149
  target?: Maybe<Scalars['Int']>;
1952
2150
  };
2151
+ export declare type IQueryExternalAccountsArgs = {
2152
+ first?: Maybe<Scalars['Int']>;
2153
+ };
1953
2154
  export declare type IQueryFetchAuth0UserArgs = {
1954
2155
  auth0UserId: Scalars['String'];
1955
2156
  };
@@ -2489,17 +2690,30 @@ export declare enum ITokenTypesEnum {
2489
2690
  }
2490
2691
  export declare type IUserAccount = INode & {
2491
2692
  __typename?: 'UserAccount';
2492
- id: Scalars['ID'];
2493
- email?: Maybe<Scalars['String']>;
2693
+ /**
2694
+ * The user's access tokens (which grant to the holder the privileges of the user). This consists
2695
+ * of all access tokens whose subject is this user.
2696
+ * Only the user and site admins can access this field.
2697
+ */
2698
+ accessTokens: IAccessTokenConnection;
2494
2699
  alias?: Maybe<Array<Maybe<Scalars['String']>>>;
2495
- username?: Maybe<Scalars['String']>;
2700
+ email?: Maybe<Scalars['String']>;
2496
2701
  emailVerified?: Maybe<Scalars['Boolean']>;
2497
- notificationEmail?: Maybe<Scalars['String']>;
2498
2702
  familyName?: Maybe<Scalars['String']>;
2499
2703
  givenName?: Maybe<Scalars['String']>;
2500
- picture?: Maybe<Scalars['String']>;
2704
+ id: Scalars['ID'];
2705
+ notificationEmail?: Maybe<Scalars['String']>;
2501
2706
  phoneNumber?: Maybe<Array<IPhoneNumber>>;
2707
+ picture?: Maybe<Scalars['String']>;
2502
2708
  tokens?: Maybe<Array<Maybe<IUserToken>>>;
2709
+ username?: Maybe<Scalars['String']>;
2710
+ };
2711
+ export declare type IUserAccountAccessTokensArgs = {
2712
+ first?: Maybe<Scalars['Int']>;
2713
+ last?: Maybe<Scalars['Int']>;
2714
+ before?: Maybe<Scalars['String']>;
2715
+ after?: Maybe<Scalars['String']>;
2716
+ skip?: Maybe<Scalars['Int']>;
2503
2717
  };
2504
2718
  export declare type IUserAccountCreateRequest = {
2505
2719
  email: Scalars['String'];
@@ -2833,6 +3047,10 @@ export declare enum IVisibility {
2833
3047
  Private = "private",
2834
3048
  Public = "public"
2835
3049
  }
3050
+ export declare type IWhereDeleteAccessTokenInput = {
3051
+ id?: Maybe<Scalars['String']>;
3052
+ token?: Maybe<Scalars['String']>;
3053
+ };
2836
3054
  export declare type IAllContextFragment = ({
2837
3055
  __typename?: 'Context';
2838
3056
  } & Pick<IContext, 'teamResource' | 'orgResource' | 'orgResourceId' | 'orgResourceName'>);
@@ -3251,7 +3469,7 @@ export declare type IGetOrganizationMembersQuery = ({
3251
3469
  } & Pick<IOrgMembersOutput, 'totalCount'> & {
3252
3470
  data?: Maybe<Array<Maybe<({
3253
3471
  __typename?: 'OrgMember';
3254
- } & Pick<IOrgMember, 'userId' | 'role' | 'name' | 'email' | 'teamNames' | 'crossCheckEmail'>)>>>;
3472
+ } & Pick<IOrgMember, 'userId' | 'isSelf' | 'role' | 'name' | 'email' | 'teamNames' | 'crossCheckEmail'>)>>>;
3255
3473
  })>;
3256
3474
  });
3257
3475
  export declare type IOrganizationsQueryVariables = Exact<{
@@ -3391,6 +3609,16 @@ export declare type IGetUsersQuery = ({
3391
3609
  __typename?: 'UserAccount';
3392
3610
  } & Pick<IUserAccount, 'username' | 'email'>)>>>;
3393
3611
  });
3612
+ export declare type IFilterIntegrationConfigurationQueryVariables = Exact<{
3613
+ filter: IIntegrationConfigurationFilterInput;
3614
+ }>;
3615
+ export declare type IFilterIntegrationConfigurationQuery = ({
3616
+ __typename?: 'Query';
3617
+ } & {
3618
+ filterIntegrationConfiguration?: Maybe<Array<Maybe<({
3619
+ __typename?: 'IntegrationConfiguration';
3620
+ } & Pick<IIntegrationConfiguration, 'id' | 'name' | 'integrationName' | 'status' | 'updatedAt' | 'integrationInfo'>)>>>;
3621
+ });
3394
3622
  export declare type IUserCreationEventFragment = ({
3395
3623
  __typename?: 'UserProfile';
3396
3624
  } & Pick<IUserProfile, 'name' | 'nickname' | 'picture' | 'user_id' | 'username' | 'given_name' | 'family_name' | 'email' | 'email_verified'> & {
@@ -3603,32 +3831,6 @@ export declare type IInitializeTeamInContextMutationVariables = Exact<{
3603
3831
  export declare type IInitializeTeamInContextMutation = ({
3604
3832
  __typename?: 'Mutation';
3605
3833
  } & Pick<IMutation, 'initializeTeamInContext'>);
3606
- export declare type ICreateIntegrationConfigurationMutationVariables = Exact<{
3607
- data?: Maybe<IIntegrationConfigurationInput>;
3608
- }>;
3609
- export declare type ICreateIntegrationConfigurationMutation = ({
3610
- __typename?: 'Mutation';
3611
- } & {
3612
- createIntegrationConfiguration?: Maybe<({
3613
- __typename?: 'IntegraitonConfigurationId';
3614
- } & Pick<IIntegraitonConfigurationId, 'id'>)>;
3615
- });
3616
- export declare type ICreateOrUpdateIntegrationConfigurationMutationVariables = Exact<{
3617
- data?: Maybe<IIntegrationConfigurationCreateOrUpdateInput>;
3618
- }>;
3619
- export declare type ICreateOrUpdateIntegrationConfigurationMutation = ({
3620
- __typename?: 'Mutation';
3621
- } & {
3622
- createOrUpdateIntegrationConfiguration?: Maybe<({
3623
- __typename?: 'IntegraitonConfigurationId';
3624
- } & Pick<IIntegraitonConfigurationId, 'id'>)>;
3625
- });
3626
- export declare type IDeleteIntegrationConfigurationMutationVariables = Exact<{
3627
- id: Scalars['String'];
3628
- }>;
3629
- export declare type IDeleteIntegrationConfigurationMutation = ({
3630
- __typename?: 'Mutation';
3631
- } & Pick<IMutation, 'deleteIntegrationConfiguration'>);
3632
3834
  export declare type IReassignConfigurationMutationVariables = Exact<{
3633
3835
  [key: string]: never;
3634
3836
  }>;
@@ -4020,43 +4222,6 @@ export declare type IGetRoleQuery = ({
4020
4222
  __typename?: 'ApplicationRolePermission';
4021
4223
  }>;
4022
4224
  });
4023
- export declare type IFilterIntegrationConfigurationQueryVariables = Exact<{
4024
- filter: IIntegrationConfigurationFilterInput;
4025
- }>;
4026
- export declare type IFilterIntegrationConfigurationQuery = ({
4027
- __typename?: 'Query';
4028
- } & {
4029
- filterIntegrationConfiguration?: Maybe<Array<Maybe<({
4030
- __typename?: 'IntegrationConfiguration';
4031
- } & Pick<IIntegrationConfiguration, 'id' | 'name' | 'integrationName' | 'status' | 'updatedAt' | 'integrationInfo'>)>>>;
4032
- });
4033
- export declare type IGetAllIntegrationConfigurationsQueryVariables = Exact<{
4034
- criteria?: Maybe<Scalars['AnyObject']>;
4035
- limit?: Maybe<Scalars['Int']>;
4036
- skip?: Maybe<Scalars['Int']>;
4037
- sort?: Maybe<ISort>;
4038
- }>;
4039
- export declare type IGetAllIntegrationConfigurationsQuery = ({
4040
- __typename?: 'Query';
4041
- } & {
4042
- getAllIntegrationConfigurations?: Maybe<({
4043
- __typename?: 'IntegrationConfigurationsOutput';
4044
- } & Pick<IIntegrationConfigurationsOutput, 'totalCount'> & {
4045
- data?: Maybe<Array<Maybe<({
4046
- __typename?: 'IntegrationConfiguration';
4047
- } & Pick<IIntegrationConfiguration, 'id' | 'name' | 'integrationName' | 'status' | 'updatedAt' | 'integrationInfo'>)>>>;
4048
- })>;
4049
- });
4050
- export declare type IGetIntegrationConfigurationQueryVariables = Exact<{
4051
- id: Scalars['String'];
4052
- }>;
4053
- export declare type IGetIntegrationConfigurationQuery = ({
4054
- __typename?: 'Query';
4055
- } & {
4056
- getIntegrationConfiguration?: Maybe<({
4057
- __typename?: 'IntegrationConfiguration';
4058
- } & Pick<IIntegrationConfiguration, 'id' | 'name' | 'integrationName' | 'status' | 'updatedAt' | 'integrationInfo'>)>;
4059
- });
4060
4225
  export declare type IGetOrgWithResourcesConfigurationQueryVariables = Exact<{
4061
4226
  input?: Maybe<Array<Maybe<IConfigurationInput>> | Maybe<IConfigurationInput>>;
4062
4227
  }>;
@@ -5784,6 +5949,32 @@ export declare function useGetUsersLazyQuery(baseOptions?: Apollo.LazyQueryHookO
5784
5949
  export declare type GetUsersQueryHookResult = ReturnType<typeof useGetUsersQuery>;
5785
5950
  export declare type GetUsersLazyQueryHookResult = ReturnType<typeof useGetUsersLazyQuery>;
5786
5951
  export declare type GetUsersQueryResult = Apollo.QueryResult<IGetUsersQuery, IGetUsersQueryVariables>;
5952
+ export declare const FilterIntegrationConfigurationDocument: DocumentNode;
5953
+ /**
5954
+ * __useFilterIntegrationConfigurationQuery__
5955
+ *
5956
+ * To run a query within a React component, call `useFilterIntegrationConfigurationQuery` and pass it any options that fit your needs.
5957
+ * When your component renders, `useFilterIntegrationConfigurationQuery` returns an object from Apollo Client that contains loading, error, and data properties
5958
+ * you can use to render your UI.
5959
+ *
5960
+ * @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;
5961
+ *
5962
+ * @example
5963
+ * const { data, loading, error } = useFilterIntegrationConfigurationQuery({
5964
+ * variables: {
5965
+ * filter: // value for 'filter'
5966
+ * },
5967
+ * });
5968
+ */
5969
+ export declare function useFilterIntegrationConfigurationQuery(baseOptions: Apollo.QueryHookOptions<IFilterIntegrationConfigurationQuery, IFilterIntegrationConfigurationQueryVariables>): Apollo.QueryResult<IFilterIntegrationConfigurationQuery, Exact<{
5970
+ filter: IIntegrationConfigurationFilterInput;
5971
+ }>>;
5972
+ export declare function useFilterIntegrationConfigurationLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFilterIntegrationConfigurationQuery, IFilterIntegrationConfigurationQueryVariables>): Apollo.LazyQueryResultTuple<IFilterIntegrationConfigurationQuery, Exact<{
5973
+ filter: IIntegrationConfigurationFilterInput;
5974
+ }>>;
5975
+ export declare type FilterIntegrationConfigurationQueryHookResult = ReturnType<typeof useFilterIntegrationConfigurationQuery>;
5976
+ export declare type FilterIntegrationConfigurationLazyQueryHookResult = ReturnType<typeof useFilterIntegrationConfigurationLazyQuery>;
5977
+ export declare type FilterIntegrationConfigurationQueryResult = Apollo.QueryResult<IFilterIntegrationConfigurationQuery, IFilterIntegrationConfigurationQueryVariables>;
5787
5978
  export declare const ToggleSidebarDocument: DocumentNode;
5788
5979
  /**
5789
5980
  * __useToggleSidebarMutation__
@@ -5981,78 +6172,6 @@ export declare function useInitializeTeamInContextMutation(baseOptions?: Apollo.
5981
6172
  export declare type InitializeTeamInContextMutationHookResult = ReturnType<typeof useInitializeTeamInContextMutation>;
5982
6173
  export declare type InitializeTeamInContextMutationResult = Apollo.MutationResult<IInitializeTeamInContextMutation>;
5983
6174
  export declare type InitializeTeamInContextMutationOptions = Apollo.BaseMutationOptions<IInitializeTeamInContextMutation, IInitializeTeamInContextMutationVariables>;
5984
- export declare const CreateIntegrationConfigurationDocument: DocumentNode;
5985
- /**
5986
- * __useCreateIntegrationConfigurationMutation__
5987
- *
5988
- * To run a mutation, you first call `useCreateIntegrationConfigurationMutation` within a React component and pass it any options that fit your needs.
5989
- * When your component renders, `useCreateIntegrationConfigurationMutation` returns a tuple that includes:
5990
- * - A mutate function that you can call at any time to execute the mutation
5991
- * - An object with fields that represent the current status of the mutation's execution
5992
- *
5993
- * @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;
5994
- *
5995
- * @example
5996
- * const [createIntegrationConfigurationMutation, { data, loading, error }] = useCreateIntegrationConfigurationMutation({
5997
- * variables: {
5998
- * data: // value for 'data'
5999
- * },
6000
- * });
6001
- */
6002
- export declare function useCreateIntegrationConfigurationMutation(baseOptions?: Apollo.MutationHookOptions<ICreateIntegrationConfigurationMutation, ICreateIntegrationConfigurationMutationVariables>): Apollo.MutationTuple<ICreateIntegrationConfigurationMutation, Exact<{
6003
- data?: IIntegrationConfigurationInput;
6004
- }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
6005
- export declare type CreateIntegrationConfigurationMutationHookResult = ReturnType<typeof useCreateIntegrationConfigurationMutation>;
6006
- export declare type CreateIntegrationConfigurationMutationResult = Apollo.MutationResult<ICreateIntegrationConfigurationMutation>;
6007
- export declare type CreateIntegrationConfigurationMutationOptions = Apollo.BaseMutationOptions<ICreateIntegrationConfigurationMutation, ICreateIntegrationConfigurationMutationVariables>;
6008
- export declare const CreateOrUpdateIntegrationConfigurationDocument: DocumentNode;
6009
- /**
6010
- * __useCreateOrUpdateIntegrationConfigurationMutation__
6011
- *
6012
- * To run a mutation, you first call `useCreateOrUpdateIntegrationConfigurationMutation` within a React component and pass it any options that fit your needs.
6013
- * When your component renders, `useCreateOrUpdateIntegrationConfigurationMutation` returns a tuple that includes:
6014
- * - A mutate function that you can call at any time to execute the mutation
6015
- * - An object with fields that represent the current status of the mutation's execution
6016
- *
6017
- * @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;
6018
- *
6019
- * @example
6020
- * const [createOrUpdateIntegrationConfigurationMutation, { data, loading, error }] = useCreateOrUpdateIntegrationConfigurationMutation({
6021
- * variables: {
6022
- * data: // value for 'data'
6023
- * },
6024
- * });
6025
- */
6026
- export declare function useCreateOrUpdateIntegrationConfigurationMutation(baseOptions?: Apollo.MutationHookOptions<ICreateOrUpdateIntegrationConfigurationMutation, ICreateOrUpdateIntegrationConfigurationMutationVariables>): Apollo.MutationTuple<ICreateOrUpdateIntegrationConfigurationMutation, Exact<{
6027
- data?: IIntegrationConfigurationCreateOrUpdateInput;
6028
- }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
6029
- export declare type CreateOrUpdateIntegrationConfigurationMutationHookResult = ReturnType<typeof useCreateOrUpdateIntegrationConfigurationMutation>;
6030
- export declare type CreateOrUpdateIntegrationConfigurationMutationResult = Apollo.MutationResult<ICreateOrUpdateIntegrationConfigurationMutation>;
6031
- export declare type CreateOrUpdateIntegrationConfigurationMutationOptions = Apollo.BaseMutationOptions<ICreateOrUpdateIntegrationConfigurationMutation, ICreateOrUpdateIntegrationConfigurationMutationVariables>;
6032
- export declare const DeleteIntegrationConfigurationDocument: DocumentNode;
6033
- /**
6034
- * __useDeleteIntegrationConfigurationMutation__
6035
- *
6036
- * To run a mutation, you first call `useDeleteIntegrationConfigurationMutation` within a React component and pass it any options that fit your needs.
6037
- * When your component renders, `useDeleteIntegrationConfigurationMutation` returns a tuple that includes:
6038
- * - A mutate function that you can call at any time to execute the mutation
6039
- * - An object with fields that represent the current status of the mutation's execution
6040
- *
6041
- * @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;
6042
- *
6043
- * @example
6044
- * const [deleteIntegrationConfigurationMutation, { data, loading, error }] = useDeleteIntegrationConfigurationMutation({
6045
- * variables: {
6046
- * id: // value for 'id'
6047
- * },
6048
- * });
6049
- */
6050
- export declare function useDeleteIntegrationConfigurationMutation(baseOptions?: Apollo.MutationHookOptions<IDeleteIntegrationConfigurationMutation, IDeleteIntegrationConfigurationMutationVariables>): Apollo.MutationTuple<IDeleteIntegrationConfigurationMutation, Exact<{
6051
- id: string;
6052
- }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
6053
- export declare type DeleteIntegrationConfigurationMutationHookResult = ReturnType<typeof useDeleteIntegrationConfigurationMutation>;
6054
- export declare type DeleteIntegrationConfigurationMutationResult = Apollo.MutationResult<IDeleteIntegrationConfigurationMutation>;
6055
- export declare type DeleteIntegrationConfigurationMutationOptions = Apollo.BaseMutationOptions<IDeleteIntegrationConfigurationMutation, IDeleteIntegrationConfigurationMutationVariables>;
6056
6175
  export declare const ReassignConfigurationDocument: DocumentNode;
6057
6176
  /**
6058
6177
  * __useReassignConfigurationMutation__
@@ -6795,93 +6914,6 @@ export declare function useGetRoleLazyQuery(baseOptions?: Apollo.LazyQueryHookOp
6795
6914
  export declare type GetRoleQueryHookResult = ReturnType<typeof useGetRoleQuery>;
6796
6915
  export declare type GetRoleLazyQueryHookResult = ReturnType<typeof useGetRoleLazyQuery>;
6797
6916
  export declare type GetRoleQueryResult = Apollo.QueryResult<IGetRoleQuery, IGetRoleQueryVariables>;
6798
- export declare const FilterIntegrationConfigurationDocument: DocumentNode;
6799
- /**
6800
- * __useFilterIntegrationConfigurationQuery__
6801
- *
6802
- * To run a query within a React component, call `useFilterIntegrationConfigurationQuery` and pass it any options that fit your needs.
6803
- * When your component renders, `useFilterIntegrationConfigurationQuery` returns an object from Apollo Client that contains loading, error, and data properties
6804
- * you can use to render your UI.
6805
- *
6806
- * @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;
6807
- *
6808
- * @example
6809
- * const { data, loading, error } = useFilterIntegrationConfigurationQuery({
6810
- * variables: {
6811
- * filter: // value for 'filter'
6812
- * },
6813
- * });
6814
- */
6815
- export declare function useFilterIntegrationConfigurationQuery(baseOptions: Apollo.QueryHookOptions<IFilterIntegrationConfigurationQuery, IFilterIntegrationConfigurationQueryVariables>): Apollo.QueryResult<IFilterIntegrationConfigurationQuery, Exact<{
6816
- filter: IIntegrationConfigurationFilterInput;
6817
- }>>;
6818
- export declare function useFilterIntegrationConfigurationLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFilterIntegrationConfigurationQuery, IFilterIntegrationConfigurationQueryVariables>): Apollo.LazyQueryResultTuple<IFilterIntegrationConfigurationQuery, Exact<{
6819
- filter: IIntegrationConfigurationFilterInput;
6820
- }>>;
6821
- export declare type FilterIntegrationConfigurationQueryHookResult = ReturnType<typeof useFilterIntegrationConfigurationQuery>;
6822
- export declare type FilterIntegrationConfigurationLazyQueryHookResult = ReturnType<typeof useFilterIntegrationConfigurationLazyQuery>;
6823
- export declare type FilterIntegrationConfigurationQueryResult = Apollo.QueryResult<IFilterIntegrationConfigurationQuery, IFilterIntegrationConfigurationQueryVariables>;
6824
- export declare const GetAllIntegrationConfigurationsDocument: DocumentNode;
6825
- /**
6826
- * __useGetAllIntegrationConfigurationsQuery__
6827
- *
6828
- * To run a query within a React component, call `useGetAllIntegrationConfigurationsQuery` and pass it any options that fit your needs.
6829
- * When your component renders, `useGetAllIntegrationConfigurationsQuery` returns an object from Apollo Client that contains loading, error, and data properties
6830
- * you can use to render your UI.
6831
- *
6832
- * @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;
6833
- *
6834
- * @example
6835
- * const { data, loading, error } = useGetAllIntegrationConfigurationsQuery({
6836
- * variables: {
6837
- * criteria: // value for 'criteria'
6838
- * limit: // value for 'limit'
6839
- * skip: // value for 'skip'
6840
- * sort: // value for 'sort'
6841
- * },
6842
- * });
6843
- */
6844
- export declare function useGetAllIntegrationConfigurationsQuery(baseOptions?: Apollo.QueryHookOptions<IGetAllIntegrationConfigurationsQuery, IGetAllIntegrationConfigurationsQueryVariables>): Apollo.QueryResult<IGetAllIntegrationConfigurationsQuery, Exact<{
6845
- criteria?: any;
6846
- limit?: number;
6847
- skip?: number;
6848
- sort?: ISort;
6849
- }>>;
6850
- export declare function useGetAllIntegrationConfigurationsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetAllIntegrationConfigurationsQuery, IGetAllIntegrationConfigurationsQueryVariables>): Apollo.LazyQueryResultTuple<IGetAllIntegrationConfigurationsQuery, Exact<{
6851
- criteria?: any;
6852
- limit?: number;
6853
- skip?: number;
6854
- sort?: ISort;
6855
- }>>;
6856
- export declare type GetAllIntegrationConfigurationsQueryHookResult = ReturnType<typeof useGetAllIntegrationConfigurationsQuery>;
6857
- export declare type GetAllIntegrationConfigurationsLazyQueryHookResult = ReturnType<typeof useGetAllIntegrationConfigurationsLazyQuery>;
6858
- export declare type GetAllIntegrationConfigurationsQueryResult = Apollo.QueryResult<IGetAllIntegrationConfigurationsQuery, IGetAllIntegrationConfigurationsQueryVariables>;
6859
- export declare const GetIntegrationConfigurationDocument: DocumentNode;
6860
- /**
6861
- * __useGetIntegrationConfigurationQuery__
6862
- *
6863
- * To run a query within a React component, call `useGetIntegrationConfigurationQuery` and pass it any options that fit your needs.
6864
- * When your component renders, `useGetIntegrationConfigurationQuery` returns an object from Apollo Client that contains loading, error, and data properties
6865
- * you can use to render your UI.
6866
- *
6867
- * @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;
6868
- *
6869
- * @example
6870
- * const { data, loading, error } = useGetIntegrationConfigurationQuery({
6871
- * variables: {
6872
- * id: // value for 'id'
6873
- * },
6874
- * });
6875
- */
6876
- export declare function useGetIntegrationConfigurationQuery(baseOptions: Apollo.QueryHookOptions<IGetIntegrationConfigurationQuery, IGetIntegrationConfigurationQueryVariables>): Apollo.QueryResult<IGetIntegrationConfigurationQuery, Exact<{
6877
- id: string;
6878
- }>>;
6879
- export declare function useGetIntegrationConfigurationLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetIntegrationConfigurationQuery, IGetIntegrationConfigurationQueryVariables>): Apollo.LazyQueryResultTuple<IGetIntegrationConfigurationQuery, Exact<{
6880
- id: string;
6881
- }>>;
6882
- export declare type GetIntegrationConfigurationQueryHookResult = ReturnType<typeof useGetIntegrationConfigurationQuery>;
6883
- export declare type GetIntegrationConfigurationLazyQueryHookResult = ReturnType<typeof useGetIntegrationConfigurationLazyQuery>;
6884
- export declare type GetIntegrationConfigurationQueryResult = Apollo.QueryResult<IGetIntegrationConfigurationQuery, IGetIntegrationConfigurationQueryVariables>;
6885
6917
  export declare const GetOrgWithResourcesConfigurationDocument: DocumentNode;
6886
6918
  /**
6887
6919
  * __useGetOrgWithResourcesConfigurationQuery__
@@ -7339,17 +7371,23 @@ export declare type DirectiveResolverFn<TResult = {}, TParent = {}, TContext = {
7339
7371
  /** Mapping between all available schema types and the resolvers types */
7340
7372
  export declare type IResolversTypes = {
7341
7373
  AccessRole: IResolversTypes['DefaultRole'] | IResolversTypes['OrganizationRole'] | IResolversTypes['ResourceRole'] | IResolversTypes['ApplicationRolePermission'];
7374
+ AccessToken: ResolverTypeWrapper<IAccessToken>;
7375
+ ID: ResolverTypeWrapper<Scalars['ID']>;
7376
+ String: ResolverTypeWrapper<Scalars['String']>;
7377
+ AccessTokenConnection: ResolverTypeWrapper<IAccessTokenConnection>;
7378
+ Int: ResolverTypeWrapper<Scalars['Int']>;
7379
+ AccessToken_Input: IAccessToken_Input;
7342
7380
  AccountBroadcasterActions: IAccountBroadcasterActions;
7343
7381
  AccountService: ResolverTypeWrapper<IAccountService>;
7344
- String: ResolverTypeWrapper<Scalars['String']>;
7345
7382
  Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
7346
7383
  AccountServiceAction: IAccountServiceAction;
7347
7384
  AccountTeam: ResolverTypeWrapper<IAccountTeam>;
7348
- ID: ResolverTypeWrapper<Scalars['ID']>;
7349
7385
  AccountTeamInput: IAccountTeamInput;
7350
7386
  AdminIdeSettings: ResolverTypeWrapper<IAdminIdeSettings>;
7351
- Int: ResolverTypeWrapper<Scalars['Int']>;
7352
7387
  AnyObject: ResolverTypeWrapper<Scalars['AnyObject']>;
7388
+ ApiExternalAccount: ResolverTypeWrapper<IApiExternalAccount>;
7389
+ ApiManagement: ResolverTypeWrapper<IApiManagement>;
7390
+ ApiManagement_Input: IApiManagement_Input;
7353
7391
  ApplicationBillingPlanPolicy: IApplicationBillingPlanPolicy;
7354
7392
  ApplicationPolicy: ResolverTypeWrapper<IApplicationPolicy>;
7355
7393
  ApplicationRolePermission: ResolverTypeWrapper<IApplicationRolePermission>;
@@ -7390,6 +7428,7 @@ export declare type IResolversTypes = {
7390
7428
  ContributionSettingsProperties: ResolverTypeWrapper<IContributionSettingsProperties>;
7391
7429
  Country: ResolverTypeWrapper<ICountry>;
7392
7430
  CountryInput: ICountryInput;
7431
+ CreateAccessTokenResult: ResolverTypeWrapper<ICreateAccessTokenResult>;
7393
7432
  Date: ResolverTypeWrapper<Scalars['Date']>;
7394
7433
  DateTime: ResolverTypeWrapper<Scalars['DateTime']>;
7395
7434
  DefaultConfiguration: ResolverTypeWrapper<IDefaultConfiguration>;
@@ -7401,6 +7440,7 @@ export declare type IResolversTypes = {
7401
7440
  EmptyResponse: ResolverTypeWrapper<IEmptyResponse>;
7402
7441
  Environment: ResolverTypeWrapper<IEnvironment>;
7403
7442
  EnvironmentPayload: IEnvironmentPayload;
7443
+ ExternalAccountConnection: ResolverTypeWrapper<IExternalAccountConnection>;
7404
7444
  ExternalResourceData: ResolverTypeWrapper<IExternalResourceData>;
7405
7445
  FieldError: ResolverTypeWrapper<IFieldError>;
7406
7446
  GenerateSSHKeysRequest: IGenerateSshKeysRequest;
@@ -7438,6 +7478,7 @@ export declare type IResolversTypes = {
7438
7478
  IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
7439
7479
  IntegrationConfigurationInput: IIntegrationConfigurationInput;
7440
7480
  IntegrationConfigurationsOutput: ResolverTypeWrapper<IIntegrationConfigurationsOutput>;
7481
+ IntegrationPreferences: ResolverTypeWrapper<IIntegrationPreferences>;
7441
7482
  InviteMember: ResolverTypeWrapper<IInviteMember>;
7442
7483
  InviteStatus: IInviteStatus;
7443
7484
  JSON: ResolverTypeWrapper<Scalars['JSON']>;
@@ -7452,7 +7493,7 @@ export declare type IResolversTypes = {
7452
7493
  MenuPosition: IMenuPosition;
7453
7494
  MoleculerServiceName: IMoleculerServiceName;
7454
7495
  Mutation: ResolverTypeWrapper<{}>;
7455
- Node: IResolversTypes['OrgUserAccunt'] | IResolversTypes['UserAccount'];
7496
+ Node: IResolversTypes['AccessToken'] | IResolversTypes['ApiExternalAccount'] | IResolversTypes['ApiManagement'] | IResolversTypes['OrgUserAccunt'] | IResolversTypes['UserAccount'];
7456
7497
  Observable: ResolverTypeWrapper<Scalars['Observable']>;
7457
7498
  OrgDetailWhere: IOrgDetailWhere;
7458
7499
  OrgInvitationMembers: ResolverTypeWrapper<IOrgInvitationMembers>;
@@ -7611,19 +7652,26 @@ export declare type IResolversTypes = {
7611
7652
  ViewerSettingsInput: IViewerSettingsInput;
7612
7653
  ViewerSettingsSubject: ResolverTypeWrapper<IViewerSettingsSubject>;
7613
7654
  Visibility: IVisibility;
7655
+ WhereDeleteAccessTokenInput: IWhereDeleteAccessTokenInput;
7614
7656
  };
7615
7657
  /** Mapping between all available schema types and the resolvers parents */
7616
7658
  export declare type IResolversParentTypes = {
7617
7659
  AccessRole: IResolversParentTypes['DefaultRole'] | IResolversParentTypes['OrganizationRole'] | IResolversParentTypes['ResourceRole'] | IResolversParentTypes['ApplicationRolePermission'];
7618
- AccountService: IAccountService;
7660
+ AccessToken: IAccessToken;
7661
+ ID: Scalars['ID'];
7619
7662
  String: Scalars['String'];
7663
+ AccessTokenConnection: IAccessTokenConnection;
7664
+ Int: Scalars['Int'];
7665
+ AccessToken_Input: IAccessToken_Input;
7666
+ AccountService: IAccountService;
7620
7667
  Boolean: Scalars['Boolean'];
7621
7668
  AccountTeam: IAccountTeam;
7622
- ID: Scalars['ID'];
7623
7669
  AccountTeamInput: IAccountTeamInput;
7624
7670
  AdminIdeSettings: IAdminIdeSettings;
7625
- Int: Scalars['Int'];
7626
7671
  AnyObject: Scalars['AnyObject'];
7672
+ ApiExternalAccount: IApiExternalAccount;
7673
+ ApiManagement: IApiManagement;
7674
+ ApiManagement_Input: IApiManagement_Input;
7627
7675
  ApplicationPolicy: IApplicationPolicy;
7628
7676
  ApplicationRolePermission: IApplicationRolePermission;
7629
7677
  ApplicationSettings: IApplicationSettings;
@@ -7651,6 +7699,7 @@ export declare type IResolversParentTypes = {
7651
7699
  ContributionSettingsProperties: IContributionSettingsProperties;
7652
7700
  Country: ICountry;
7653
7701
  CountryInput: ICountryInput;
7702
+ CreateAccessTokenResult: ICreateAccessTokenResult;
7654
7703
  Date: Scalars['Date'];
7655
7704
  DateTime: Scalars['DateTime'];
7656
7705
  DefaultConfiguration: IDefaultConfiguration;
@@ -7661,6 +7710,7 @@ export declare type IResolversParentTypes = {
7661
7710
  EmptyResponse: IEmptyResponse;
7662
7711
  Environment: IEnvironment;
7663
7712
  EnvironmentPayload: IEnvironmentPayload;
7713
+ ExternalAccountConnection: IExternalAccountConnection;
7664
7714
  ExternalResourceData: IExternalResourceData;
7665
7715
  FieldError: IFieldError;
7666
7716
  GenerateSSHKeysRequest: IGenerateSshKeysRequest;
@@ -7695,6 +7745,7 @@ export declare type IResolversParentTypes = {
7695
7745
  IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
7696
7746
  IntegrationConfigurationInput: IIntegrationConfigurationInput;
7697
7747
  IntegrationConfigurationsOutput: IIntegrationConfigurationsOutput;
7748
+ IntegrationPreferences: IIntegrationPreferences;
7698
7749
  InviteMember: IInviteMember;
7699
7750
  JSON: Scalars['JSON'];
7700
7751
  JSONObject: Scalars['JSONObject'];
@@ -7705,7 +7756,7 @@ export declare type IResolversParentTypes = {
7705
7756
  MemorySettings: IMemorySettings;
7706
7757
  MenuItem: IMenuItem;
7707
7758
  Mutation: {};
7708
- Node: IResolversParentTypes['OrgUserAccunt'] | IResolversParentTypes['UserAccount'];
7759
+ Node: IResolversParentTypes['AccessToken'] | IResolversParentTypes['ApiExternalAccount'] | IResolversParentTypes['ApiManagement'] | IResolversParentTypes['OrgUserAccunt'] | IResolversParentTypes['UserAccount'];
7709
7760
  Observable: Scalars['Observable'];
7710
7761
  OrgDetailWhere: IOrgDetailWhere;
7711
7762
  OrgInvitationMembers: IOrgInvitationMembers;
@@ -7842,6 +7893,7 @@ export declare type IResolversParentTypes = {
7842
7893
  ViewerPoliciesInput: IViewerPoliciesInput;
7843
7894
  ViewerSettingsInput: IViewerSettingsInput;
7844
7895
  ViewerSettingsSubject: IViewerSettingsSubject;
7896
+ WhereDeleteAccessTokenInput: IWhereDeleteAccessTokenInput;
7845
7897
  };
7846
7898
  export declare type IAddAccountContextDirectiveArgs = {};
7847
7899
  export declare type IAddAccountContextDirectiveResolver<Result, Parent, ContextType = MyContext, Args = IAddAccountContextDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
@@ -7863,6 +7915,22 @@ export declare type IProfileDirectiveResolver<Result, Parent, ContextType = MyCo
7863
7915
  export declare type IAccessRoleResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AccessRole'] = IResolversParentTypes['AccessRole']> = {
7864
7916
  __resolveType: TypeResolveFn<'DefaultRole' | 'OrganizationRole' | 'ResourceRole' | 'ApplicationRolePermission', ParentType, ContextType>;
7865
7917
  };
7918
+ export declare type IAccessTokenResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AccessToken'] = IResolversParentTypes['AccessToken']> = {
7919
+ id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
7920
+ subject?: Resolver<IResolversTypes['UserAccount'], ParentType, ContextType>;
7921
+ scopes?: Resolver<Array<IResolversTypes['AnyObject']>, ParentType, ContextType>;
7922
+ note?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
7923
+ creator?: Resolver<IResolversTypes['UserAccount'], ParentType, ContextType>;
7924
+ createdAt?: Resolver<IResolversTypes['DateTime'], ParentType, ContextType>;
7925
+ lastUsedAt?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
7926
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
7927
+ };
7928
+ export declare type IAccessTokenConnectionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AccessTokenConnection'] = IResolversParentTypes['AccessTokenConnection']> = {
7929
+ nodes?: Resolver<Array<IResolversTypes['AccessToken']>, ParentType, ContextType>;
7930
+ totalCount?: Resolver<IResolversTypes['Int'], ParentType, ContextType>;
7931
+ pageInfo?: Resolver<IResolversTypes['PageInfo'], ParentType, ContextType>;
7932
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
7933
+ };
7866
7934
  export declare type IAccountServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AccountService'] = IResolversParentTypes['AccountService']> = {
7867
7935
  createDefaultAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IAccountServiceCreateDefaultAccountArgs, never>>;
7868
7936
  createAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IAccountServiceCreateAccountArgs, never>>;
@@ -7896,6 +7964,25 @@ export declare type IAdminIdeSettingsResolvers<ContextType = MyContext, ParentTy
7896
7964
  export interface IAnyObjectScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['AnyObject'], any> {
7897
7965
  name: 'AnyObject';
7898
7966
  }
7967
+ export declare type IApiExternalAccountResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ApiExternalAccount'] = IResolversParentTypes['ApiExternalAccount']> = {
7968
+ id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
7969
+ user?: Resolver<IResolversTypes['UserAccount'], ParentType, ContextType>;
7970
+ serviceType?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
7971
+ serviceID?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
7972
+ clientID?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
7973
+ accountID?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
7974
+ createdAt?: Resolver<IResolversTypes['DateTime'], ParentType, ContextType>;
7975
+ updatedAt?: Resolver<IResolversTypes['DateTime'], ParentType, ContextType>;
7976
+ refreshURL?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
7977
+ accountData?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
7978
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
7979
+ };
7980
+ export declare type IApiManagementResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ApiManagement'] = IResolversParentTypes['ApiManagement']> = {
7981
+ id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
7982
+ accessTokens?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccessToken']>>>, ParentType, ContextType>;
7983
+ user?: Resolver<IResolversTypes['UserAccount'], ParentType, ContextType>;
7984
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
7985
+ };
7899
7986
  export declare type IApplicationPolicyResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ApplicationPolicy'] = IResolversParentTypes['ApplicationPolicy']> = {
7900
7987
  resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
7901
7988
  target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
@@ -8089,6 +8176,11 @@ export declare type ICountryResolvers<ContextType = MyContext, ParentType extend
8089
8176
  phoneCode?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
8090
8177
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
8091
8178
  };
8179
+ export declare type ICreateAccessTokenResultResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['CreateAccessTokenResult'] = IResolversParentTypes['CreateAccessTokenResult']> = {
8180
+ id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
8181
+ token?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
8182
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
8183
+ };
8092
8184
  export interface IDateScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Date'], any> {
8093
8185
  name: 'Date';
8094
8186
  }
@@ -8136,6 +8228,12 @@ export declare type IEnvironmentResolvers<ContextType = MyContext, ParentType ex
8136
8228
  args?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
8137
8229
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
8138
8230
  };
8231
+ export declare type IExternalAccountConnectionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExternalAccountConnection'] = IResolversParentTypes['ExternalAccountConnection']> = {
8232
+ nodes?: Resolver<Array<IResolversTypes['ApiExternalAccount']>, ParentType, ContextType>;
8233
+ totalCount?: Resolver<IResolversTypes['Int'], ParentType, ContextType>;
8234
+ pageInfo?: Resolver<IResolversTypes['PageInfo'], ParentType, ContextType>;
8235
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
8236
+ };
8139
8237
  export declare type IExternalResourceDataResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExternalResourceData'] = IResolversParentTypes['ExternalResourceData']> = {
8140
8238
  uri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
8141
8239
  name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -8321,8 +8419,11 @@ export declare type IIntegrationConfigurationResolvers<ContextType = MyContext,
8321
8419
  userId?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
8322
8420
  integrationName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
8323
8421
  status?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
8422
+ orgName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
8324
8423
  updatedAt?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
8325
8424
  integrationInfo?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
8425
+ settings?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
8426
+ settingsConfiguration?: Resolver<Maybe<IResolversTypes['MachineConfiguration']>, ParentType, ContextType>;
8326
8427
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
8327
8428
  };
8328
8429
  export declare type IIntegrationConfigurationsOutputResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IntegrationConfigurationsOutput'] = IResolversParentTypes['IntegrationConfigurationsOutput']> = {
@@ -8330,6 +8431,10 @@ export declare type IIntegrationConfigurationsOutputResolvers<ContextType = MyCo
8330
8431
  data?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType>;
8331
8432
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
8332
8433
  };
8434
+ export declare type IIntegrationPreferencesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IntegrationPreferences'] = IResolversParentTypes['IntegrationPreferences']> = {
8435
+ dummy?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
8436
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
8437
+ };
8333
8438
  export declare type IInviteMemberResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['InviteMember'] = IResolversParentTypes['InviteMember']> = {
8334
8439
  id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
8335
8440
  email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -8399,11 +8504,14 @@ export declare type IMutationResolvers<ContextType = MyContext, ParentType exten
8399
8504
  changeMemberRole?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationChangeMemberRoleArgs, 'orgName' | 'teamName' | 'memberId' | 'role'>>;
8400
8505
  changeOrgMemberRole?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationChangeOrgMemberRoleArgs, 'userId' | 'role'>>;
8401
8506
  changeOrganization?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType, RequireFields<IMutationChangeOrganizationArgs, never>>;
8507
+ createAccessToken?: Resolver<IResolversTypes['CreateAccessTokenResult'], ParentType, ContextType, RequireFields<IMutationCreateAccessTokenArgs, 'user' | 'scopes' | 'note'>>;
8402
8508
  createIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegraitonConfigurationId']>, ParentType, ContextType, RequireFields<IMutationCreateIntegrationConfigurationArgs, never>>;
8403
8509
  createOrUpdateIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegraitonConfigurationId']>, ParentType, ContextType, RequireFields<IMutationCreateOrUpdateIntegrationConfigurationArgs, never>>;
8404
8510
  createOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IMutationCreateOrganizationArgs, 'organization'>>;
8405
8511
  createTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IMutationCreateTeamArgs, 'request'>>;
8406
8512
  declineOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationDeclineOrganizationInvitationArgs, 'id'>>;
8513
+ deleteAccessToken?: Resolver<IResolversTypes['EmptyResponse'], ParentType, ContextType, RequireFields<IMutationDeleteAccessTokenArgs, 'where'>>;
8514
+ deleteExternalAssociation?: Resolver<IResolversTypes['EmptyResponse'], ParentType, ContextType, RequireFields<IMutationDeleteExternalAssociationArgs, 'externalAccount'>>;
8407
8515
  deleteIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationDeleteIntegrationConfigurationArgs, 'id'>>;
8408
8516
  deleteUserAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
8409
8517
  deleteUserAuthorizedDevice?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationDeleteUserAuthorizedDeviceArgs, 'deviceId'>>;
@@ -8450,7 +8558,7 @@ export declare type IMutationResolvers<ContextType = MyContext, ParentType exten
8450
8558
  verifyUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationVerifyUserEmailVerificationTokenArgs, never>>;
8451
8559
  };
8452
8560
  export declare type INodeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Node'] = IResolversParentTypes['Node']> = {
8453
- __resolveType: TypeResolveFn<'OrgUserAccunt' | 'UserAccount', ParentType, ContextType>;
8561
+ __resolveType: TypeResolveFn<'AccessToken' | 'ApiExternalAccount' | 'ApiManagement' | 'OrgUserAccunt' | 'UserAccount', ParentType, ContextType>;
8454
8562
  id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
8455
8563
  };
8456
8564
  export interface IObservableScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Observable'], any> {
@@ -8465,6 +8573,7 @@ export declare type IOrgMemberResolvers<ContextType = MyContext, ParentType exte
8465
8573
  _id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
8466
8574
  userId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
8467
8575
  role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
8576
+ isSelf?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
8468
8577
  inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
8469
8578
  name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
8470
8579
  email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -8736,6 +8845,7 @@ export declare type IPreferencesResolvers<ContextType = MyContext, ParentType ex
8736
8845
  defaultSetting?: Resolver<Maybe<Array<Maybe<IResolversTypes['SettingsGroup']>>>, ParentType, ContextType>;
8737
8846
  dummy?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
8738
8847
  global?: Resolver<Maybe<IResolversTypes['Preference_Global']>, ParentType, ContextType>;
8848
+ integration?: Resolver<Maybe<IResolversTypes['IntegrationPreferences']>, ParentType, ContextType>;
8739
8849
  organization?: Resolver<Maybe<IResolversTypes['Preference_Organization']>, ParentType, ContextType>;
8740
8850
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
8741
8851
  };
@@ -8755,12 +8865,14 @@ export declare type IPreferencesTypeResolvers<ContextType = MyContext, ParentTyp
8755
8865
  };
8756
8866
  export declare type IQueryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Query'] = IResolversParentTypes['Query']> = {
8757
8867
  GetSshKey?: Resolver<Maybe<IResolversTypes['SshKey']>, ParentType, ContextType, RequireFields<IQueryGetSshKeyArgs, 'id'>>;
8868
+ accessTokens?: Resolver<IResolversTypes['AccessTokenConnection'], ParentType, ContextType, RequireFields<IQueryAccessTokensArgs, never>>;
8758
8869
  decodeOrganizationInvitation?: Resolver<Maybe<IResolversTypes['OrganizationInvitationDecode']>, ParentType, ContextType, RequireFields<IQueryDecodeOrganizationInvitationArgs, 'token'>>;
8759
8870
  defaultPermissions?: Resolver<Maybe<Array<Maybe<IResolversTypes['SettingsGroup']>>>, ParentType, ContextType, RequireFields<IQueryDefaultPermissionsArgs, never>>;
8760
8871
  defaultPolicies?: Resolver<Maybe<Array<Maybe<IResolversTypes['SettingsGroup']>>>, ParentType, ContextType, RequireFields<IQueryDefaultPoliciesArgs, never>>;
8761
8872
  defaultPreferences?: Resolver<Maybe<IResolversTypes['PreferencesResponse']>, ParentType, ContextType>;
8762
8873
  defaultSetting?: Resolver<Maybe<IResolversTypes['ContributionSettings']>, ParentType, ContextType>;
8763
8874
  defaultViewerSettingsSubject?: Resolver<IResolversTypes['DefaultSettings'], ParentType, ContextType, RequireFields<IQueryDefaultViewerSettingsSubjectArgs, never>>;
8875
+ externalAccounts?: Resolver<IResolversTypes['ExternalAccountConnection'], ParentType, ContextType, RequireFields<IQueryExternalAccountsArgs, never>>;
8764
8876
  fetchAuth0User?: Resolver<Maybe<IResolversTypes['UserProfile']>, ParentType, ContextType, RequireFields<IQueryFetchAuth0UserArgs, 'auth0UserId'>>;
8765
8877
  fetchUserAuthorizedDevices?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserDevice']>>>, ParentType, ContextType, RequireFields<IQueryFetchUserAuthorizedDevicesArgs, 'auth0UserId'>>;
8766
8878
  filterIntegrationConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType, RequireFields<IQueryFilterIntegrationConfigurationArgs, never>>;
@@ -8984,17 +9096,18 @@ export interface IUriInputScalarConfig extends GraphQLScalarTypeConfig<IResolver
8984
9096
  name: 'URIInput';
8985
9097
  }
8986
9098
  export declare type IUserAccountResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserAccount'] = IResolversParentTypes['UserAccount']> = {
8987
- id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
8988
- email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
9099
+ accessTokens?: Resolver<IResolversTypes['AccessTokenConnection'], ParentType, ContextType, RequireFields<IUserAccountAccessTokensArgs, never>>;
8989
9100
  alias?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
8990
- username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
9101
+ email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
8991
9102
  emailVerified?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
8992
- notificationEmail?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
8993
9103
  familyName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
8994
9104
  givenName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
8995
- picture?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
9105
+ id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
9106
+ notificationEmail?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
8996
9107
  phoneNumber?: Resolver<Maybe<Array<IResolversTypes['PhoneNumber']>>, ParentType, ContextType>;
9108
+ picture?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
8997
9109
  tokens?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserToken']>>>, ParentType, ContextType>;
9110
+ username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
8998
9111
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
8999
9112
  };
9000
9113
  export declare type IUserAccountCreatedDetailedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserAccountCreatedDetailedEvent'] = IResolversParentTypes['UserAccountCreatedDetailedEvent']> = {
@@ -9184,10 +9297,14 @@ export declare type IViewerSettingsSubjectResolvers<ContextType = MyContext, Par
9184
9297
  };
9185
9298
  export declare type IResolvers<ContextType = MyContext> = {
9186
9299
  AccessRole?: IAccessRoleResolvers<ContextType>;
9300
+ AccessToken?: IAccessTokenResolvers<ContextType>;
9301
+ AccessTokenConnection?: IAccessTokenConnectionResolvers<ContextType>;
9187
9302
  AccountService?: IAccountServiceResolvers<ContextType>;
9188
9303
  AccountTeam?: IAccountTeamResolvers<ContextType>;
9189
9304
  AdminIdeSettings?: IAdminIdeSettingsResolvers<ContextType>;
9190
9305
  AnyObject?: GraphQLScalarType;
9306
+ ApiExternalAccount?: IApiExternalAccountResolvers<ContextType>;
9307
+ ApiManagement?: IApiManagementResolvers<ContextType>;
9191
9308
  ApplicationPolicy?: IApplicationPolicyResolvers<ContextType>;
9192
9309
  ApplicationRolePermission?: IApplicationRolePermissionResolvers<ContextType>;
9193
9310
  ApplicationSettings?: IApplicationSettingsResolvers<ContextType>;
@@ -9209,6 +9326,7 @@ export declare type IResolvers<ContextType = MyContext> = {
9209
9326
  ContributionSettings?: IContributionSettingsResolvers<ContextType>;
9210
9327
  ContributionSettingsProperties?: IContributionSettingsPropertiesResolvers<ContextType>;
9211
9328
  Country?: ICountryResolvers<ContextType>;
9329
+ CreateAccessTokenResult?: ICreateAccessTokenResultResolvers<ContextType>;
9212
9330
  Date?: GraphQLScalarType;
9213
9331
  DateTime?: GraphQLScalarType;
9214
9332
  DefaultConfiguration?: IDefaultConfigurationResolvers<ContextType>;
@@ -9217,6 +9335,7 @@ export declare type IResolvers<ContextType = MyContext> = {
9217
9335
  DefaultSettings?: IDefaultSettingsResolvers<ContextType>;
9218
9336
  EmptyResponse?: IEmptyResponseResolvers<ContextType>;
9219
9337
  Environment?: IEnvironmentResolvers<ContextType>;
9338
+ ExternalAccountConnection?: IExternalAccountConnectionResolvers<ContextType>;
9220
9339
  ExternalResourceData?: IExternalResourceDataResolvers<ContextType>;
9221
9340
  FieldError?: IFieldErrorResolvers<ContextType>;
9222
9341
  GeoLocation?: IGeoLocationResolvers<ContextType>;
@@ -9243,6 +9362,7 @@ export declare type IResolvers<ContextType = MyContext> = {
9243
9362
  IntegraitonConfigurationId?: IIntegraitonConfigurationIdResolvers<ContextType>;
9244
9363
  IntegrationConfiguration?: IIntegrationConfigurationResolvers<ContextType>;
9245
9364
  IntegrationConfigurationsOutput?: IIntegrationConfigurationsOutputResolvers<ContextType>;
9365
+ IntegrationPreferences?: IIntegrationPreferencesResolvers<ContextType>;
9246
9366
  InviteMember?: IInviteMemberResolvers<ContextType>;
9247
9367
  JSON?: GraphQLScalarType;
9248
9368
  JSONObject?: GraphQLScalarType;