@admin-layout/client 3.0.0-alpha.111 → 3.0.0-alpha.126

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.
@@ -1,25 +1,25 @@
1
1
  import { GraphQLResolveInfo, GraphQLScalarType, GraphQLScalarTypeConfig } from 'graphql';
2
2
  import * as Apollo from '@apollo/client';
3
- export declare type Maybe<T> = T | null;
4
- export declare type Exact<T extends {
3
+ export type Maybe<T> = T | null;
4
+ export type Exact<T extends {
5
5
  [key: string]: unknown;
6
6
  }> = {
7
7
  [K in keyof T]: T[K];
8
8
  };
9
- export declare type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
9
+ export type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
10
10
  [SubKey in K]?: Maybe<T[SubKey]>;
11
11
  };
12
- export declare type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
12
+ export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
13
13
  [SubKey in K]: Maybe<T[SubKey]>;
14
14
  };
15
- export declare type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
16
- export declare type RequireFields<T, K extends keyof T> = {
15
+ export type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
16
+ export type RequireFields<T, K extends keyof T> = {
17
17
  [X in Exclude<keyof T, K>]?: T[X];
18
18
  } & {
19
19
  [P in K]-?: NonNullable<T[P]>;
20
20
  };
21
21
  /** All built-in and custom scalars, mapped to their actual values */
22
- export declare type Scalars = {
22
+ export type Scalars = {
23
23
  ID: string;
24
24
  String: string;
25
25
  Boolean: boolean;
@@ -34,8 +34,8 @@ export declare type Scalars = {
34
34
  URI: any;
35
35
  URIInput: any;
36
36
  };
37
- export declare type IAccessRole = IDefaultRole | IOrganizationRole | IResourceRole | IApplicationRolePermission;
38
- export declare type IApplicationPolicy = IIConfigurationModel & {
37
+ export type IAccessRole = IDefaultRole | IOrganizationRole | IResourceRole | IApplicationRolePermission;
38
+ export type IApplicationPolicy = IIConfigurationModel & {
39
39
  __typename?: 'ApplicationPolicy';
40
40
  resource?: Maybe<Scalars['URI']>;
41
41
  target?: Maybe<Scalars['Int']>;
@@ -43,7 +43,7 @@ export declare type IApplicationPolicy = IIConfigurationModel & {
43
43
  keys?: Maybe<Array<Maybe<Scalars['String']>>>;
44
44
  overrides?: Maybe<Array<Maybe<IOverrides>>>;
45
45
  };
46
- export declare type IApplicationRolePermission = IIConfigurationModel & {
46
+ export type IApplicationRolePermission = IIConfigurationModel & {
47
47
  __typename?: 'ApplicationRolePermission';
48
48
  resource?: Maybe<Scalars['URI']>;
49
49
  target?: Maybe<Scalars['Int']>;
@@ -67,7 +67,7 @@ export declare const enum IApplicationRoles {
67
67
  /** Guest */
68
68
  Guest = "GUEST"
69
69
  }
70
- export declare type IApplicationSettings = IISettingsSubject & {
70
+ export type IApplicationSettings = IISettingsSubject & {
71
71
  __typename?: 'ApplicationSettings';
72
72
  /** The ID. */
73
73
  id?: Maybe<Scalars['ID']>;
@@ -107,8 +107,8 @@ export declare const enum IConfigFragmentName {
107
107
  /** Billing */
108
108
  BillingPlanPolicies = "billingPlanPolicies"
109
109
  }
110
- export declare type IConfiguration = IDefaultConfiguration | IMachineConfiguration | IUserConfiguration | IOrganizationConfiguration | IOrganizationResourceConfiguration;
111
- export declare type IConfigurationData = {
110
+ export type IConfiguration = IDefaultConfiguration | IMachineConfiguration | IUserConfiguration | IOrganizationConfiguration | IOrganizationResourceConfiguration;
111
+ export type IConfigurationData = {
112
112
  __typename?: 'ConfigurationData';
113
113
  defaults?: Maybe<IIConfigurationModel>;
114
114
  user?: Maybe<IIConfigurationModel>;
@@ -117,11 +117,11 @@ export declare type IConfigurationData = {
117
117
  resources?: Maybe<Array<Maybe<IIConfigurationModel>>>;
118
118
  isComplete?: Maybe<Scalars['Boolean']>;
119
119
  };
120
- export declare type IConfigurationExtensionInfo = {
120
+ export type IConfigurationExtensionInfo = {
121
121
  __typename?: 'ConfigurationExtensionInfo';
122
122
  id?: Maybe<Scalars['String']>;
123
123
  };
124
- export declare type IConfigurationInput = {
124
+ export type IConfigurationInput = {
125
125
  target: Scalars['Int'];
126
126
  resource?: Maybe<Scalars['URIInput']>;
127
127
  /**
@@ -130,24 +130,24 @@ export declare type IConfigurationInput = {
130
130
  */
131
131
  userResource?: Maybe<Scalars['URI']>;
132
132
  };
133
- export declare type IConfigurationModel = {
133
+ export type IConfigurationModel = {
134
134
  __typename?: 'ConfigurationModel';
135
135
  contents?: Maybe<Scalars['AnyObject']>;
136
136
  keys?: Maybe<Array<Maybe<Scalars['String']>>>;
137
137
  overrides?: Maybe<Array<Maybe<IOverrides>>>;
138
138
  };
139
- export declare type IConfigurationOverrides = {
139
+ export type IConfigurationOverrides = {
140
140
  __typename?: 'ConfigurationOverrides';
141
141
  resource?: Maybe<Scalars['URI']>;
142
142
  overrideIdentifier?: Maybe<Scalars['String']>;
143
143
  externalResource?: Maybe<Scalars['URI']>;
144
144
  };
145
- export declare type IConfigurationOverridesInput = {
145
+ export type IConfigurationOverridesInput = {
146
146
  resource?: Maybe<Scalars['URI']>;
147
147
  overrideIdentifier?: Maybe<Scalars['String']>;
148
148
  externalResource?: Maybe<Scalars['URI']>;
149
149
  };
150
- export declare type IConfigurationPolicy = IDefaultPolicy | IOrganizationPolicy | IResourcePolicy | IApplicationPolicy;
150
+ export type IConfigurationPolicy = IDefaultPolicy | IOrganizationPolicy | IResourcePolicy | IApplicationPolicy;
151
151
  /**
152
152
  * A configuration settings can have one of the following possible scopes.
153
153
  * Configuration scopes determine when a settings is available to the user through the Settings editor and
@@ -175,14 +175,14 @@ export declare const enum IConfigurationTarget {
175
175
  Default = "DEFAULT",
176
176
  Memory = "MEMORY"
177
177
  }
178
- export declare type IConfigurationUpdateEvent = {
178
+ export type IConfigurationUpdateEvent = {
179
179
  __typename?: 'ConfigurationUpdateEvent';
180
180
  resource: Scalars['URI'];
181
181
  contents?: Maybe<Scalars['AnyObject']>;
182
182
  overrides?: Maybe<IConfigurationOverrides>;
183
183
  target?: Maybe<Scalars['Int']>;
184
184
  };
185
- export declare type IContext = {
185
+ export type IContext = {
186
186
  __typename?: 'Context';
187
187
  breadcrumbsActive?: Maybe<Scalars['Boolean']>;
188
188
  breadcrumbsPossible?: Maybe<Scalars['Boolean']>;
@@ -199,7 +199,7 @@ export declare type IContext = {
199
199
  teamUri?: Maybe<Scalars['URI']>;
200
200
  };
201
201
  /** Contributed Roles added by the user to customize the role's permissions */
202
- export declare type IContributionRoles = {
202
+ export type IContributionRoles = {
203
203
  __typename?: 'ContributionRoles';
204
204
  id?: Maybe<Scalars['String']>;
205
205
  name?: Maybe<Scalars['String']>;
@@ -207,7 +207,7 @@ export declare type IContributionRoles = {
207
207
  description?: Maybe<Scalars['String']>;
208
208
  permissions?: Maybe<IAccessRole>;
209
209
  };
210
- export declare type IContributionSettings = {
210
+ export type IContributionSettings = {
211
211
  __typename?: 'ContributionSettings';
212
212
  /** name of the settings */
213
213
  name?: Maybe<Scalars['String']>;
@@ -270,12 +270,12 @@ export declare type IContributionSettings = {
270
270
  /** Min. Items for restricting array length */
271
271
  minItems?: Maybe<Scalars['Int']>;
272
272
  };
273
- export declare type IContributionSettingsProperties = {
273
+ export type IContributionSettingsProperties = {
274
274
  __typename?: 'ContributionSettingsProperties';
275
275
  readOnly?: Maybe<Scalars['Boolean']>;
276
276
  disabled?: Maybe<Scalars['Boolean']>;
277
277
  };
278
- export declare type IDefaultConfiguration = IIConfigurationModel & {
278
+ export type IDefaultConfiguration = IIConfigurationModel & {
279
279
  __typename?: 'DefaultConfiguration';
280
280
  /** The ID. */
281
281
  id?: Maybe<Scalars['ID']>;
@@ -286,7 +286,7 @@ export declare type IDefaultConfiguration = IIConfigurationModel & {
286
286
  keys?: Maybe<Array<Maybe<Scalars['String']>>>;
287
287
  overrides?: Maybe<Array<Maybe<IOverrides>>>;
288
288
  };
289
- export declare type IDefaultPolicy = IIConfigurationModel & {
289
+ export type IDefaultPolicy = IIConfigurationModel & {
290
290
  __typename?: 'DefaultPolicy';
291
291
  resource?: Maybe<Scalars['URI']>;
292
292
  target?: Maybe<Scalars['Int']>;
@@ -294,7 +294,7 @@ export declare type IDefaultPolicy = IIConfigurationModel & {
294
294
  keys?: Maybe<Array<Maybe<Scalars['String']>>>;
295
295
  overrides?: Maybe<Array<Maybe<IOverrides>>>;
296
296
  };
297
- export declare type IDefaultRole = IIConfigurationModel & {
297
+ export type IDefaultRole = IIConfigurationModel & {
298
298
  __typename?: 'DefaultRole';
299
299
  resource?: Maybe<Scalars['URI']>;
300
300
  target?: Maybe<Scalars['Int']>;
@@ -302,7 +302,7 @@ export declare type IDefaultRole = IIConfigurationModel & {
302
302
  keys?: Maybe<Array<Maybe<Scalars['String']>>>;
303
303
  overrides?: Maybe<Array<Maybe<IOverrides>>>;
304
304
  };
305
- export declare type IDefaultSettings = IISettingsSubject & {
305
+ export type IDefaultSettings = IISettingsSubject & {
306
306
  __typename?: 'DefaultSettings';
307
307
  /** The ID. */
308
308
  id?: Maybe<Scalars['ID']>;
@@ -327,14 +327,14 @@ export declare const enum IEditPresentationTypes {
327
327
  * such as main, renderer and shared process. Use subclasses of this
328
328
  * service for specific environment.
329
329
  */
330
- export declare type IEnvironment = {
330
+ export type IEnvironment = {
331
331
  __typename?: 'Environment';
332
332
  args?: Maybe<Scalars['AnyObject']>;
333
333
  };
334
- export declare type IEnvironmentPayload = {
334
+ export type IEnvironmentPayload = {
335
335
  args?: Maybe<Scalars['AnyObject']>;
336
336
  };
337
- export declare type IExternalResourceData = IIResourceData & {
337
+ export type IExternalResourceData = IIResourceData & {
338
338
  __typename?: 'ExternalResourceData';
339
339
  /** The associated URI for this external resource. */
340
340
  uri?: Maybe<Scalars['URI']>;
@@ -343,16 +343,16 @@ export declare type IExternalResourceData = IIResourceData & {
343
343
  /** The ordinal number of this external resource. */
344
344
  index?: Maybe<Scalars['Int']>;
345
345
  };
346
- export declare type IFieldError = {
346
+ export type IFieldError = {
347
347
  __typename?: 'FieldError';
348
348
  field: Scalars['String'];
349
349
  message: Scalars['String'];
350
350
  };
351
- export declare type IGeoLocation = {
351
+ export type IGeoLocation = {
352
352
  __typename?: 'GeoLocation';
353
353
  coordinates?: Maybe<Array<Maybe<Scalars['Float']>>>;
354
354
  };
355
- export declare type IGlobalSettings = IISettingsSubject & {
355
+ export type IGlobalSettings = IISettingsSubject & {
356
356
  __typename?: 'GlobalSettings';
357
357
  /** The ID. */
358
358
  id?: Maybe<Scalars['ID']>;
@@ -368,7 +368,7 @@ export declare type IGlobalSettings = IISettingsSubject & {
368
368
  */
369
369
  settingsCascade: ISettingsCascade;
370
370
  };
371
- export declare type IIConfigurationChangeEvent = {
371
+ export type IIConfigurationChangeEvent = {
372
372
  __typename?: 'IConfigurationChangeEvent';
373
373
  source?: Maybe<IConfigurationTarget>;
374
374
  affectedKeys?: Maybe<Array<Maybe<Scalars['String']>>>;
@@ -376,17 +376,17 @@ export declare type IIConfigurationChangeEvent = {
376
376
  changedConfiguration?: Maybe<IConfiguration>;
377
377
  changedConfigurationByResource?: Maybe<IOrganizationResourceConfiguration>;
378
378
  };
379
- export declare type IIConfigurationModel = {
379
+ export type IIConfigurationModel = {
380
380
  resource?: Maybe<Scalars['URI']>;
381
381
  target?: Maybe<Scalars['Int']>;
382
382
  contents?: Maybe<Scalars['AnyObject']>;
383
383
  keys?: Maybe<Array<Maybe<Scalars['String']>>>;
384
384
  overrides?: Maybe<Array<Maybe<IOverrides>>>;
385
385
  };
386
- export declare type IIConfigurationService = {
386
+ export type IIConfigurationService = {
387
387
  updateValue?: Maybe<Scalars['Boolean']>;
388
388
  };
389
- export declare type IIConfigurationServiceUpdateValueArgs = {
389
+ export type IIConfigurationServiceUpdateValueArgs = {
390
390
  key: Scalars['String'];
391
391
  value: Scalars['AnyObject'];
392
392
  overrides: IConfigurationOverridesInput;
@@ -394,12 +394,12 @@ export declare type IIConfigurationServiceUpdateValueArgs = {
394
394
  donotNotifyError?: Maybe<Scalars['Boolean']>;
395
395
  };
396
396
  /** Organization Template to be used */
397
- export declare type IIOrgUser = {
397
+ export type IIOrgUser = {
398
398
  role?: Maybe<IApplicationRoles>;
399
399
  isSelf: Scalars['Boolean'];
400
400
  orgName: Scalars['String'];
401
401
  };
402
- export declare type IIResourceData = {
402
+ export type IIResourceData = {
403
403
  /** The associated URI for this resource. */
404
404
  uri?: Maybe<Scalars['URI']>;
405
405
  /** The name of this resource. Defaults to the basename its [uri-path](#Uri.path) */
@@ -407,7 +407,7 @@ export declare type IIResourceData = {
407
407
  /** The ordinal number of this resource. */
408
408
  index?: Maybe<Scalars['Int']>;
409
409
  };
410
- export declare type IIResourceUserRole = {
410
+ export type IIResourceUserRole = {
411
411
  role?: Maybe<Scalars['String']>;
412
412
  name?: Maybe<Scalars['String']>;
413
413
  isSelf?: Maybe<Scalars['Boolean']>;
@@ -417,7 +417,7 @@ export declare type IIResourceUserRole = {
417
417
  * ISettingsSubject is something that can have settings: a site ("global settings", which is different from "site
418
418
  * configuration"), an organization, or a user.
419
419
  */
420
- export declare type IISettingsSubject = {
420
+ export type IISettingsSubject = {
421
421
  /** The ID. */
422
422
  id?: Maybe<Scalars['ID']>;
423
423
  /** The latest settings. */
@@ -432,11 +432,11 @@ export declare type IISettingsSubject = {
432
432
  */
433
433
  settingsCascade: ISettingsCascade;
434
434
  };
435
- export declare type IIntegraitonConfigurationId = {
435
+ export type IIntegraitonConfigurationId = {
436
436
  __typename?: 'IntegraitonConfigurationId';
437
437
  id?: Maybe<Scalars['String']>;
438
438
  };
439
- export declare type IIntegrationConfiguration = {
439
+ export type IIntegrationConfiguration = {
440
440
  __typename?: 'IntegrationConfiguration';
441
441
  id?: Maybe<Scalars['ID']>;
442
442
  name?: Maybe<Scalars['String']>;
@@ -446,7 +446,7 @@ export declare type IIntegrationConfiguration = {
446
446
  updatedAt?: Maybe<Scalars['DateTime']>;
447
447
  integrationInfo?: Maybe<Scalars['JSON']>;
448
448
  };
449
- export declare type IIntegrationConfigurationCreateOrUpdateInput = {
449
+ export type IIntegrationConfigurationCreateOrUpdateInput = {
450
450
  id?: Maybe<Scalars['ID']>;
451
451
  name?: Maybe<Scalars['String']>;
452
452
  integrationName?: Maybe<Scalars['String']>;
@@ -454,21 +454,21 @@ export declare type IIntegrationConfigurationCreateOrUpdateInput = {
454
454
  integrationInfo?: Maybe<Scalars['JSON']>;
455
455
  userId?: Maybe<Scalars['ID']>;
456
456
  };
457
- export declare type IIntegrationConfigurationFilterInput = {
457
+ export type IIntegrationConfigurationFilterInput = {
458
458
  id?: Maybe<Scalars['ID']>;
459
459
  name?: Maybe<Scalars['String']>;
460
460
  integrationName?: Maybe<Scalars['String']>;
461
461
  status?: Maybe<Scalars['String']>;
462
462
  userId?: Maybe<Scalars['ID']>;
463
463
  };
464
- export declare type IIntegrationConfigurationInput = {
464
+ export type IIntegrationConfigurationInput = {
465
465
  name?: Maybe<Scalars['String']>;
466
466
  integrationName?: Maybe<Scalars['String']>;
467
467
  status?: Maybe<Scalars['String']>;
468
468
  integrationInfo?: Maybe<Scalars['JSON']>;
469
469
  userId?: Maybe<Scalars['ID']>;
470
470
  };
471
- export declare type IIntegrationConfigurationsOutput = {
471
+ export type IIntegrationConfigurationsOutput = {
472
472
  __typename?: 'IntegrationConfigurationsOutput';
473
473
  totalCount?: Maybe<Scalars['Int']>;
474
474
  data?: Maybe<Array<Maybe<IIntegrationConfiguration>>>;
@@ -479,13 +479,13 @@ export declare type IIntegrationConfigurationsOutput = {
479
479
  *
480
480
  * For example, in {"a": [0, {"b": 3}]}, the value 3 is located at the key path ["a", 1, "b"].
481
481
  */
482
- export declare type IKeyPathSegment = {
482
+ export type IKeyPathSegment = {
483
483
  /** The name of the property in the object at this location to descend into. */
484
484
  property?: Maybe<Scalars['String']>;
485
485
  /** The index of the array at this location to descend into. */
486
486
  index?: Maybe<Scalars['Int']>;
487
487
  };
488
- export declare type IMachineConfiguration = IIConfigurationModel & {
488
+ export type IMachineConfiguration = IIConfigurationModel & {
489
489
  __typename?: 'MachineConfiguration';
490
490
  /** The ID. */
491
491
  id?: Maybe<Scalars['ID']>;
@@ -496,7 +496,7 @@ export declare type IMachineConfiguration = IIConfigurationModel & {
496
496
  keys?: Maybe<Array<Maybe<Scalars['String']>>>;
497
497
  overrides?: Maybe<Array<Maybe<IOverrides>>>;
498
498
  };
499
- export declare type IMachineSettings = IISettingsSubject & {
499
+ export type IMachineSettings = IISettingsSubject & {
500
500
  __typename?: 'MachineSettings';
501
501
  /** The ID. */
502
502
  id?: Maybe<Scalars['ID']>;
@@ -512,7 +512,7 @@ export declare type IMachineSettings = IISettingsSubject & {
512
512
  */
513
513
  settingsCascade: ISettingsCascade;
514
514
  };
515
- export declare type IMemorySettings = IISettingsSubject & {
515
+ export type IMemorySettings = IISettingsSubject & {
516
516
  __typename?: 'MemorySettings';
517
517
  /** The ID. */
518
518
  id?: Maybe<Scalars['ID']>;
@@ -528,7 +528,7 @@ export declare type IMemorySettings = IISettingsSubject & {
528
528
  */
529
529
  settingsCascade: ISettingsCascade;
530
530
  };
531
- export declare type IMutation = {
531
+ export type IMutation = {
532
532
  __typename?: 'Mutation';
533
533
  addContributionRole?: Maybe<Scalars['Boolean']>;
534
534
  addResourceToContext?: Maybe<Scalars['Boolean']>;
@@ -553,48 +553,48 @@ export declare type IMutation = {
553
553
  updateRoleValue?: Maybe<Scalars['Boolean']>;
554
554
  updateSelectedOrgResource?: Maybe<Scalars['Boolean']>;
555
555
  };
556
- export declare type IMutationAddContributionRoleArgs = {
556
+ export type IMutationAddContributionRoleArgs = {
557
557
  name: Scalars['String'];
558
558
  description?: Maybe<Scalars['String']>;
559
559
  };
560
- export declare type IMutationAddResourceToContextArgs = {
560
+ export type IMutationAddResourceToContextArgs = {
561
561
  resourcesToAdd: Array<Maybe<IResourceCreationDataInput>>;
562
562
  };
563
- export declare type IMutationChangeOrganizationArgs = {
563
+ export type IMutationChangeOrganizationArgs = {
564
564
  orgName?: Maybe<Scalars['String']>;
565
565
  machineName?: Maybe<Scalars['String']>;
566
566
  };
567
- export declare type IMutationCreateIntegrationConfigurationArgs = {
567
+ export type IMutationCreateIntegrationConfigurationArgs = {
568
568
  data?: Maybe<IIntegrationConfigurationInput>;
569
569
  };
570
- export declare type IMutationCreateOrUpdateIntegrationConfigurationArgs = {
570
+ export type IMutationCreateOrUpdateIntegrationConfigurationArgs = {
571
571
  data?: Maybe<IIntegrationConfigurationCreateOrUpdateInput>;
572
572
  };
573
- export declare type IMutationDeleteIntegrationConfigurationArgs = {
573
+ export type IMutationDeleteIntegrationConfigurationArgs = {
574
574
  id: Scalars['String'];
575
575
  };
576
- export declare type IMutationInitializeOrgNameInContextArgs = {
576
+ export type IMutationInitializeOrgNameInContextArgs = {
577
577
  orgName?: Maybe<Scalars['String']>;
578
578
  };
579
- export declare type IMutationInitiateConfigurationValueArgs = {
579
+ export type IMutationInitiateConfigurationValueArgs = {
580
580
  resource?: Maybe<Scalars['URI']>;
581
581
  };
582
- export declare type IMutationInitiatePolicyValueArgs = {
582
+ export type IMutationInitiatePolicyValueArgs = {
583
583
  resource?: Maybe<Scalars['URI']>;
584
584
  };
585
- export declare type IMutationSetSettingsValueByResourceArgs = {
585
+ export type IMutationSetSettingsValueByResourceArgs = {
586
586
  uri?: Maybe<Scalars['URI']>;
587
587
  key?: Maybe<Scalars['String']>;
588
588
  value?: Maybe<Scalars['String']>;
589
589
  };
590
- export declare type IMutationUpdateConfigurationPolicyValueArgs = {
590
+ export type IMutationUpdateConfigurationPolicyValueArgs = {
591
591
  key: Scalars['String'];
592
592
  value: Scalars['AnyObject'];
593
593
  overrides?: Maybe<IConfigurationOverridesInput>;
594
594
  target?: Maybe<Scalars['Int']>;
595
595
  donotNotifyError?: Maybe<Scalars['Boolean']>;
596
596
  };
597
- export declare type IMutationUpdateConfigurationPolicyValueByUriArgs = {
597
+ export type IMutationUpdateConfigurationPolicyValueByUriArgs = {
598
598
  resource?: Maybe<Scalars['URI']>;
599
599
  key: Scalars['String'];
600
600
  value: Scalars['AnyObject'];
@@ -602,14 +602,14 @@ export declare type IMutationUpdateConfigurationPolicyValueByUriArgs = {
602
602
  target?: Maybe<Scalars['Int']>;
603
603
  donotNotifyError?: Maybe<Scalars['Boolean']>;
604
604
  };
605
- export declare type IMutationUpdateConfigurationValueArgs = {
605
+ export type IMutationUpdateConfigurationValueArgs = {
606
606
  key: Scalars['String'];
607
607
  value: Scalars['AnyObject'];
608
608
  overrides?: Maybe<IConfigurationOverridesInput>;
609
609
  target?: Maybe<Scalars['Int']>;
610
610
  donotNotifyError?: Maybe<Scalars['Boolean']>;
611
611
  };
612
- export declare type IMutationUpdateConfigurationValueByUriArgs = {
612
+ export type IMutationUpdateConfigurationValueByUriArgs = {
613
613
  resource?: Maybe<Scalars['URI']>;
614
614
  key: Scalars['String'];
615
615
  value: Scalars['AnyObject'];
@@ -617,41 +617,41 @@ export declare type IMutationUpdateConfigurationValueByUriArgs = {
617
617
  target?: Maybe<Scalars['Int']>;
618
618
  donotNotifyError?: Maybe<Scalars['Boolean']>;
619
619
  };
620
- export declare type IMutationUpdateContextArgs = {
620
+ export type IMutationUpdateContextArgs = {
621
621
  key?: Maybe<Scalars['String']>;
622
622
  value?: Maybe<Scalars['AnyObject']>;
623
623
  };
624
- export declare type IMutationUpdateOrganizationContextAddResourcesArgs = {
624
+ export type IMutationUpdateOrganizationContextAddResourcesArgs = {
625
625
  orgId?: Maybe<Scalars['String']>;
626
626
  resourcesToAdd: Array<Maybe<IResourceCreationDataInput>>;
627
627
  index?: Maybe<Scalars['Int']>;
628
628
  };
629
- export declare type IMutationUpdateOrganizationContextRemoveResourcesArgs = {
629
+ export type IMutationUpdateOrganizationContextRemoveResourcesArgs = {
630
630
  resourcesToRemove: Array<Scalars['URI']>;
631
631
  };
632
- export declare type IMutationUpdateOrganizationContextUpdateResourcesArgs = {
632
+ export type IMutationUpdateOrganizationContextUpdateResourcesArgs = {
633
633
  resourcesToAdd: Array<Maybe<IResourceCreationDataInput>>;
634
634
  resourcesToRemove: Array<Maybe<Scalars['URI']>>;
635
635
  index?: Maybe<Scalars['Int']>;
636
636
  };
637
- export declare type IMutationUpdateRoleValueArgs = {
637
+ export type IMutationUpdateRoleValueArgs = {
638
638
  key: Scalars['String'];
639
639
  value: Scalars['AnyObject'];
640
640
  overrides?: Maybe<IConfigurationOverridesInput>;
641
641
  target?: Maybe<Scalars['Int']>;
642
642
  donotNotifyError?: Maybe<Scalars['Boolean']>;
643
643
  };
644
- export declare type IMutationUpdateSelectedOrgResourceArgs = {
644
+ export type IMutationUpdateSelectedOrgResourceArgs = {
645
645
  resource: Scalars['URI'];
646
646
  };
647
- export declare type INode = {
647
+ export type INode = {
648
648
  id: Scalars['ID'];
649
649
  };
650
- export declare type IOrganizationConfigValueInput = {
650
+ export type IOrganizationConfigValueInput = {
651
651
  section?: Maybe<Scalars['String']>;
652
652
  overrides?: Maybe<IConfigurationOverridesInput>;
653
653
  };
654
- export declare type IOrganizationConfiguration = IIConfigurationModel & {
654
+ export type IOrganizationConfiguration = IIConfigurationModel & {
655
655
  __typename?: 'OrganizationConfiguration';
656
656
  /** The ID. */
657
657
  id?: Maybe<Scalars['ID']>;
@@ -668,7 +668,7 @@ export declare const enum IOrganizationContextPubSubEvents {
668
668
  OrganizationConfigurationUpdated = "OrganizationConfigurationUpdated",
669
669
  OrganizationPermissionUpdated = "OrganizationPermissionUpdated"
670
670
  }
671
- export declare type IOrganizationData = {
671
+ export type IOrganizationData = {
672
672
  __typename?: 'OrganizationData';
673
673
  /** The unique identifier of the workspace. */
674
674
  id: Scalars['String'];
@@ -679,12 +679,12 @@ export declare type IOrganizationData = {
679
679
  /** Organization name */
680
680
  name?: Maybe<Scalars['String']>;
681
681
  };
682
- export declare type IOrganizationIdentifier = {
682
+ export type IOrganizationIdentifier = {
683
683
  __typename?: 'OrganizationIdentifier';
684
684
  id?: Maybe<Scalars['String']>;
685
685
  configPath?: Maybe<Scalars['URI']>;
686
686
  };
687
- export declare type IOrganizationPolicy = IIConfigurationModel & {
687
+ export type IOrganizationPolicy = IIConfigurationModel & {
688
688
  __typename?: 'OrganizationPolicy';
689
689
  resource?: Maybe<Scalars['URI']>;
690
690
  target?: Maybe<Scalars['Int']>;
@@ -692,7 +692,7 @@ export declare type IOrganizationPolicy = IIConfigurationModel & {
692
692
  keys?: Maybe<Array<Maybe<Scalars['String']>>>;
693
693
  overrides?: Maybe<Array<Maybe<IOverrides>>>;
694
694
  };
695
- export declare type IOrganizationResourceConfiguration = IIConfigurationModel & {
695
+ export type IOrganizationResourceConfiguration = IIConfigurationModel & {
696
696
  __typename?: 'OrganizationResourceConfiguration';
697
697
  /** The ID. */
698
698
  id?: Maybe<Scalars['ID']>;
@@ -702,7 +702,7 @@ export declare type IOrganizationResourceConfiguration = IIConfigurationModel &
702
702
  keys?: Maybe<Array<Maybe<Scalars['String']>>>;
703
703
  overrides?: Maybe<Array<Maybe<IOverrides>>>;
704
704
  };
705
- export declare type IOrganizationResourceData = IIResourceData & {
705
+ export type IOrganizationResourceData = IIResourceData & {
706
706
  __typename?: 'OrganizationResourceData';
707
707
  /** The associated URI for this organization resource. */
708
708
  uri?: Maybe<Scalars['URI']>;
@@ -711,7 +711,7 @@ export declare type IOrganizationResourceData = IIResourceData & {
711
711
  /** The ordinal number of this organization resource. */
712
712
  index?: Maybe<Scalars['Int']>;
713
713
  };
714
- export declare type IOrganizationResourceSettings = IISettingsSubject & {
714
+ export type IOrganizationResourceSettings = IISettingsSubject & {
715
715
  __typename?: 'OrganizationResourceSettings';
716
716
  /** The ID. */
717
717
  id?: Maybe<Scalars['ID']>;
@@ -727,7 +727,7 @@ export declare type IOrganizationResourceSettings = IISettingsSubject & {
727
727
  */
728
728
  settingsCascade: ISettingsCascade;
729
729
  };
730
- export declare type IOrganizationRole = IIConfigurationModel & {
730
+ export type IOrganizationRole = IIConfigurationModel & {
731
731
  __typename?: 'OrganizationRole';
732
732
  resource?: Maybe<Scalars['URI']>;
733
733
  target?: Maybe<Scalars['Int']>;
@@ -735,7 +735,7 @@ export declare type IOrganizationRole = IIConfigurationModel & {
735
735
  keys?: Maybe<Array<Maybe<Scalars['String']>>>;
736
736
  overrides?: Maybe<Array<Maybe<IOverrides>>>;
737
737
  };
738
- export declare type IOrganizationSettings = IISettingsSubject & {
738
+ export type IOrganizationSettings = IISettingsSubject & {
739
739
  __typename?: 'OrganizationSettings';
740
740
  /** The ID. */
741
741
  id?: Maybe<Scalars['ID']>;
@@ -751,7 +751,7 @@ export declare type IOrganizationSettings = IISettingsSubject & {
751
751
  */
752
752
  settingsCascade: ISettingsCascade;
753
753
  };
754
- export declare type IOverrides = {
754
+ export type IOverrides = {
755
755
  __typename?: 'Overrides';
756
756
  contents?: Maybe<Scalars['AnyObject']>;
757
757
  identifiers?: Maybe<Array<Maybe<Scalars['String']>>>;
@@ -768,7 +768,7 @@ export declare const enum IPermissionResource {
768
768
  Permissions = "Permissions",
769
769
  Settings = "Settings"
770
770
  }
771
- export declare type IPermissionSubject = {
771
+ export type IPermissionSubject = {
772
772
  __typename?: 'PermissionSubject';
773
773
  /** The URL to the roles. */
774
774
  roleURL: Scalars['URI'];
@@ -782,7 +782,7 @@ export declare const enum IPermissionType {
782
782
  Deny = "Deny",
783
783
  NotSet = "NotSet"
784
784
  }
785
- export declare type IPolicySubject = {
785
+ export type IPolicySubject = {
786
786
  __typename?: 'PolicySubject';
787
787
  /** The URL to the policies. */
788
788
  policyURL: Scalars['URI'];
@@ -791,7 +791,7 @@ export declare type IPolicySubject = {
791
791
  /** The stringified JSON contents of the permissions. */
792
792
  policies: Scalars['AnyObject'];
793
793
  };
794
- export declare type IPosition = {
794
+ export type IPosition = {
795
795
  __typename?: 'Position';
796
796
  line?: Maybe<Scalars['Int']>;
797
797
  character?: Maybe<Scalars['Int']>;
@@ -808,7 +808,7 @@ export declare const enum IPreDefinedRole {
808
808
  Guest = "GUEST",
809
809
  Contributors = "CONTRIBUTORS"
810
810
  }
811
- export declare type IPreferenceItem = {
811
+ export type IPreferenceItem = {
812
812
  __typename?: 'PreferenceItem';
813
813
  name?: Maybe<Scalars['String']>;
814
814
  type?: Maybe<Scalars['String']>;
@@ -819,21 +819,21 @@ export declare type IPreferenceItem = {
819
819
  enum?: Maybe<Array<Maybe<Scalars['String']>>>;
820
820
  enumDescriptions?: Maybe<Array<Maybe<Scalars['String']>>>;
821
821
  };
822
- export declare type IPreferences = {
822
+ export type IPreferences = {
823
823
  __typename?: 'Preferences';
824
824
  defaultSetting?: Maybe<Array<Maybe<ISettingsGroup>>>;
825
825
  dummy?: Maybe<Scalars['Int']>;
826
826
  };
827
- export declare type IPreferencesInput = {
827
+ export type IPreferencesInput = {
828
828
  __typename?: 'PreferencesInput';
829
829
  editableSettingsInput?: Maybe<Scalars['URI']>;
830
830
  defaultPreferencesInput?: Maybe<Scalars['URI']>;
831
831
  };
832
- export declare type IPreferencesInputInput = {
832
+ export type IPreferencesInputInput = {
833
833
  editableSettingsInput?: Maybe<Scalars['URI']>;
834
834
  defaultPreferencesInput?: Maybe<Scalars['URI']>;
835
835
  };
836
- export declare type IPreferencesOpenOptionsInput = {
836
+ export type IPreferencesOpenOptionsInput = {
837
837
  /** Filter to the sub data to be shown within the content. */
838
838
  query?: Maybe<Scalars['String']>;
839
839
  /** Type of the default data. */
@@ -849,16 +849,16 @@ export declare type IPreferencesOpenOptionsInput = {
849
849
  /** Default Fragment to filter the default value */
850
850
  defaultFragment?: Maybe<Scalars['String']>;
851
851
  };
852
- export declare type IPreferencesResponse = {
852
+ export type IPreferencesResponse = {
853
853
  __typename?: 'PreferencesResponse';
854
854
  preferences?: Maybe<Array<Maybe<IPreferencesType>>>;
855
855
  };
856
- export declare type IPreferencesType = {
856
+ export type IPreferencesType = {
857
857
  __typename?: 'PreferencesType';
858
858
  type?: Maybe<Scalars['String']>;
859
859
  data?: Maybe<Array<Maybe<IContributionSettings>>>;
860
860
  };
861
- export declare type IQuery = {
861
+ export type IQuery = {
862
862
  __typename?: 'Query';
863
863
  /** Return the permissions groups */
864
864
  defaultPermissions?: Maybe<Array<Maybe<ISettingsGroup>>>;
@@ -915,79 +915,79 @@ export declare type IQuery = {
915
915
  */
916
916
  viewerSettings: IViewerSettingsSubject;
917
917
  };
918
- export declare type IQueryDefaultPermissionsArgs = {
918
+ export type IQueryDefaultPermissionsArgs = {
919
919
  target?: Maybe<Scalars['Int']>;
920
920
  };
921
- export declare type IQueryDefaultPoliciesArgs = {
921
+ export type IQueryDefaultPoliciesArgs = {
922
922
  target?: Maybe<Scalars['Int']>;
923
923
  };
924
- export declare type IQueryDefaultViewerSettingsSubjectArgs = {
924
+ export type IQueryDefaultViewerSettingsSubjectArgs = {
925
925
  target?: Maybe<Scalars['Int']>;
926
926
  };
927
- export declare type IQueryFilterIntegrationConfigurationArgs = {
927
+ export type IQueryFilterIntegrationConfigurationArgs = {
928
928
  filter?: Maybe<IIntegrationConfigurationFilterInput>;
929
929
  };
930
- export declare type IQueryGetAllIntegrationConfigurationsArgs = {
930
+ export type IQueryGetAllIntegrationConfigurationsArgs = {
931
931
  criteria?: Maybe<Scalars['AnyObject']>;
932
932
  limit?: Maybe<Scalars['Int']>;
933
933
  skip?: Maybe<Scalars['Int']>;
934
934
  sort?: Maybe<ISort>;
935
935
  };
936
- export declare type IQueryGetConfigurationArgs = {
936
+ export type IQueryGetConfigurationArgs = {
937
937
  input?: Maybe<Array<Maybe<IConfigurationInput>>>;
938
938
  };
939
- export declare type IQueryGetConfigurationPoliciesArgs = {
939
+ export type IQueryGetConfigurationPoliciesArgs = {
940
940
  input?: Maybe<Array<Maybe<IConfigurationInput>>>;
941
941
  };
942
- export declare type IQueryGetConfigurationTargetArgs = {
942
+ export type IQueryGetConfigurationTargetArgs = {
943
943
  resource?: Maybe<Scalars['URI']>;
944
944
  };
945
- export declare type IQueryGetContextPropertyArgs = {
945
+ export type IQueryGetContextPropertyArgs = {
946
946
  keys?: Maybe<Array<Maybe<Scalars['String']>>>;
947
947
  };
948
- export declare type IQueryGetIntegrationConfigurationArgs = {
948
+ export type IQueryGetIntegrationConfigurationArgs = {
949
949
  id: Scalars['String'];
950
950
  };
951
- export declare type IQueryGetOrganizationConfigValueArgs = {
951
+ export type IQueryGetOrganizationConfigValueArgs = {
952
952
  value?: Maybe<IOrganizationConfigValueInput>;
953
953
  };
954
- export declare type IQueryGetOrganizationResourceContextArgs = {
954
+ export type IQueryGetOrganizationResourceContextArgs = {
955
955
  orgId?: Maybe<Scalars['String']>;
956
956
  };
957
- export declare type IQueryGetRoleArgs = {
957
+ export type IQueryGetRoleArgs = {
958
958
  input?: Maybe<IRoleInput>;
959
959
  };
960
- export declare type IQueryGetRolesArgs = {
960
+ export type IQueryGetRolesArgs = {
961
961
  input?: Maybe<Array<Maybe<IRoleInput>>>;
962
962
  };
963
- export declare type IQueryGetUserAccessRoleArgs = {
963
+ export type IQueryGetUserAccessRoleArgs = {
964
964
  input?: Maybe<Array<Maybe<IRoleInput>>>;
965
965
  };
966
- export declare type IQueryGetViewerPermissionsArgs = {
966
+ export type IQueryGetViewerPermissionsArgs = {
967
967
  input?: Maybe<IRoleInput>;
968
968
  };
969
- export declare type IQueryGetViewerPoliciesArgs = {
969
+ export type IQueryGetViewerPoliciesArgs = {
970
970
  input: IViewerPoliciesInput;
971
971
  };
972
- export declare type IQueryMergedApplicationPermissionsArgs = {
972
+ export type IQueryMergedApplicationPermissionsArgs = {
973
973
  roleName?: Maybe<Scalars['String']>;
974
974
  };
975
- export declare type IQueryOpenPreferencesSettingsArgs = {
975
+ export type IQueryOpenPreferencesSettingsArgs = {
976
976
  resource?: Maybe<Scalars['URI']>;
977
977
  jsonEditor?: Maybe<Scalars['Boolean']>;
978
978
  options?: Maybe<IPreferencesOpenOptionsInput>;
979
979
  };
980
- export declare type IQueryResolveSettingsArgs = {
980
+ export type IQueryResolveSettingsArgs = {
981
981
  uri: Scalars['URI'];
982
982
  target?: Maybe<Scalars['Int']>;
983
983
  };
984
- export declare type IQueryViewerPoliciesArgs = {
984
+ export type IQueryViewerPoliciesArgs = {
985
985
  input: IViewerPoliciesInput;
986
986
  };
987
- export declare type IQueryViewerSettingsArgs = {
987
+ export type IQueryViewerSettingsArgs = {
988
988
  input?: Maybe<IViewerSettingsInput>;
989
989
  };
990
- export declare type IRange = {
990
+ export type IRange = {
991
991
  __typename?: 'Range';
992
992
  /**
993
993
  * @lsp
@@ -1008,17 +1008,17 @@ export declare type IRange = {
1008
1008
  /** @editor - Column on which the range ends in the line `endLineNumber` */
1009
1009
  endColumn?: Maybe<Scalars['Int']>;
1010
1010
  };
1011
- export declare type IResourceAccessRole = {
1011
+ export type IResourceAccessRole = {
1012
1012
  __typename?: 'ResourceAccessRole';
1013
1013
  accessRoles?: Maybe<Array<Maybe<IAccessRole>>>;
1014
1014
  resourceUserRoles?: Maybe<Array<Maybe<IResourceUser>>>;
1015
1015
  };
1016
- export declare type IResourceCreationDataInput = {
1016
+ export type IResourceCreationDataInput = {
1017
1017
  uri: Scalars['URI'];
1018
1018
  name?: Maybe<Scalars['String']>;
1019
1019
  };
1020
- export declare type IResourceData = IOrganizationResourceData | IExternalResourceData;
1021
- export declare type IResourcePolicy = IIConfigurationModel & {
1020
+ export type IResourceData = IOrganizationResourceData | IExternalResourceData;
1021
+ export type IResourcePolicy = IIConfigurationModel & {
1022
1022
  __typename?: 'ResourcePolicy';
1023
1023
  resource?: Maybe<Scalars['URI']>;
1024
1024
  target?: Maybe<Scalars['Int']>;
@@ -1026,7 +1026,7 @@ export declare type IResourcePolicy = IIConfigurationModel & {
1026
1026
  keys?: Maybe<Array<Maybe<Scalars['String']>>>;
1027
1027
  overrides?: Maybe<Array<Maybe<IOverrides>>>;
1028
1028
  };
1029
- export declare type IResourceRole = IIConfigurationModel & {
1029
+ export type IResourceRole = IIConfigurationModel & {
1030
1030
  __typename?: 'ResourceRole';
1031
1031
  resource?: Maybe<Scalars['URI']>;
1032
1032
  target?: Maybe<Scalars['Int']>;
@@ -1034,7 +1034,7 @@ export declare type IResourceRole = IIConfigurationModel & {
1034
1034
  keys?: Maybe<Array<Maybe<Scalars['String']>>>;
1035
1035
  overrides?: Maybe<Array<Maybe<IOverrides>>>;
1036
1036
  };
1037
- export declare type IResourceUser = IIResourceUserRole & {
1037
+ export type IResourceUser = IIResourceUserRole & {
1038
1038
  __typename?: 'ResourceUser';
1039
1039
  resource?: Maybe<Scalars['URI']>;
1040
1040
  role?: Maybe<Scalars['String']>;
@@ -1042,7 +1042,7 @@ export declare type IResourceUser = IIResourceUserRole & {
1042
1042
  isSelf?: Maybe<Scalars['Boolean']>;
1043
1043
  orgName?: Maybe<Scalars['String']>;
1044
1044
  };
1045
- export declare type IRoleInput = {
1045
+ export type IRoleInput = {
1046
1046
  target: Scalars['Int'];
1047
1047
  resource?: Maybe<Scalars['URIInput']>;
1048
1048
  roleName?: Maybe<Scalars['String']>;
@@ -1060,7 +1060,7 @@ export declare const enum ISettingValueType {
1060
1060
  NullableNumber = "NullableNumber"
1061
1061
  }
1062
1062
  /** Settings is a version of a configuration settings file. */
1063
- export declare type ISettings = {
1063
+ export type ISettings = {
1064
1064
  __typename?: 'Settings';
1065
1065
  /** The time when this was created. */
1066
1066
  createdAt?: Maybe<Scalars['String']>;
@@ -1071,7 +1071,7 @@ export declare type ISettings = {
1071
1071
  contents: Scalars['String'];
1072
1072
  };
1073
1073
  /** The configuration for all of the relevant settings subjects, plus the merged settings. */
1074
- export declare type ISettingsCascade = {
1074
+ export type ISettingsCascade = {
1075
1075
  __typename?: 'SettingsCascade';
1076
1076
  /**
1077
1077
  * The other settings subjects that are applied with lower precedence that this subject to
@@ -1084,7 +1084,7 @@ export declare type ISettingsCascade = {
1084
1084
  /** The effective final merged settings as Object, merged from all of the subjects. */
1085
1085
  finalConfiguration?: Maybe<IPreferences>;
1086
1086
  };
1087
- export declare type ISettingsGroup = {
1087
+ export type ISettingsGroup = {
1088
1088
  __typename?: 'SettingsGroup';
1089
1089
  id?: Maybe<Scalars['String']>;
1090
1090
  range?: Maybe<IRange>;
@@ -1096,14 +1096,14 @@ export declare type ISettingsGroup = {
1096
1096
  order?: Maybe<Scalars['Int']>;
1097
1097
  extensionInfo?: Maybe<IConfigurationExtensionInfo>;
1098
1098
  };
1099
- export declare type ISettingsSection = {
1099
+ export type ISettingsSection = {
1100
1100
  __typename?: 'SettingsSection';
1101
1101
  titleRange?: Maybe<IRange>;
1102
1102
  title?: Maybe<Scalars['String']>;
1103
1103
  settings?: Maybe<Array<Maybe<IContributionSettings>>>;
1104
1104
  };
1105
- export declare type ISettingsSubject = IUserSettings | IApplicationSettings | IMachineSettings | IOrganizationResourceSettings | IGlobalSettings | IOrganizationSettings | IMemorySettings | IDefaultSettings;
1106
- export declare type ISort = {
1105
+ export type ISettingsSubject = IUserSettings | IApplicationSettings | IMachineSettings | IOrganizationResourceSettings | IGlobalSettings | IOrganizationSettings | IMemorySettings | IDefaultSettings;
1106
+ export type ISort = {
1107
1107
  key: Scalars['String'];
1108
1108
  value: ISortEnum;
1109
1109
  };
@@ -1111,13 +1111,13 @@ export declare const enum ISortEnum {
1111
1111
  Asc = "ASC",
1112
1112
  Desc = "DESC"
1113
1113
  }
1114
- export declare type ISubscribedOrganizationData = {
1114
+ export type ISubscribedOrganizationData = {
1115
1115
  __typename?: 'SubscribedOrganizationData';
1116
1116
  /** Resources in the organization. */
1117
1117
  resources?: Maybe<Array<Maybe<IResourceData>>>;
1118
1118
  orgNameFilter?: Maybe<Scalars['String']>;
1119
1119
  };
1120
- export declare type ISubscription = {
1120
+ export type ISubscription = {
1121
1121
  __typename?: 'Subscription';
1122
1122
  SubscribeToConfigurationUpdate?: Maybe<IConfigurationUpdateEvent>;
1123
1123
  SubscribeToOrganizationContext?: Maybe<ISubscribedOrganizationData>;
@@ -1125,19 +1125,19 @@ export declare type ISubscription = {
1125
1125
  SubscribeToPolicyUpdate?: Maybe<IConfigurationUpdateEvent>;
1126
1126
  dummy?: Maybe<Scalars['Int']>;
1127
1127
  };
1128
- export declare type ISubscriptionSubscribeToConfigurationUpdateArgs = {
1128
+ export type ISubscriptionSubscribeToConfigurationUpdateArgs = {
1129
1129
  orgName: Scalars['String'];
1130
1130
  };
1131
- export declare type ISubscriptionSubscribeToOrganizationContextArgs = {
1131
+ export type ISubscriptionSubscribeToOrganizationContextArgs = {
1132
1132
  orgNameFilter?: Maybe<Scalars['String']>;
1133
1133
  };
1134
- export declare type ISubscriptionSubscribeToPermissionUpdateArgs = {
1134
+ export type ISubscriptionSubscribeToPermissionUpdateArgs = {
1135
1135
  orgName?: Maybe<Scalars['String']>;
1136
1136
  };
1137
- export declare type ISubscriptionSubscribeToPolicyUpdateArgs = {
1137
+ export type ISubscriptionSubscribeToPolicyUpdateArgs = {
1138
1138
  orgName?: Maybe<Scalars['String']>;
1139
1139
  };
1140
- export declare type IUserConfiguration = IIConfigurationModel & {
1140
+ export type IUserConfiguration = IIConfigurationModel & {
1141
1141
  __typename?: 'UserConfiguration';
1142
1142
  /** The ID. */
1143
1143
  id?: Maybe<Scalars['ID']>;
@@ -1149,7 +1149,7 @@ export declare type IUserConfiguration = IIConfigurationModel & {
1149
1149
  overrides?: Maybe<Array<Maybe<IOverrides>>>;
1150
1150
  };
1151
1151
  /** UserSettings is a combination of ApplicationSettings and MachineSettings */
1152
- export declare type IUserSettings = IISettingsSubject & {
1152
+ export type IUserSettings = IISettingsSubject & {
1153
1153
  __typename?: 'UserSettings';
1154
1154
  /** The ID. */
1155
1155
  id?: Maybe<Scalars['ID']>;
@@ -1174,7 +1174,7 @@ export declare type IUserSettings = IISettingsSubject & {
1174
1174
  */
1175
1175
  settingsCascade: ISettingsCascade;
1176
1176
  };
1177
- export declare type IViewerPoliciesInput = {
1177
+ export type IViewerPoliciesInput = {
1178
1178
  target: Scalars['Int'];
1179
1179
  /**
1180
1180
  * To get the Resource or Organization resource of which we need to get the settings.
@@ -1185,7 +1185,7 @@ export declare type IViewerPoliciesInput = {
1185
1185
  /** Application resource to identify the core application settings. */
1186
1186
  applicationResource?: Maybe<Scalars['URI']>;
1187
1187
  };
1188
- export declare type IViewerSettingsInput = {
1188
+ export type IViewerSettingsInput = {
1189
1189
  target: Scalars['Int'];
1190
1190
  /**
1191
1191
  * To get the Resource or Organization resource of which we need to get the settings.
@@ -1201,20 +1201,20 @@ export declare type IViewerSettingsInput = {
1201
1201
  /** Application resource to identify the core application settings. */
1202
1202
  applicationResource?: Maybe<Scalars['URI']>;
1203
1203
  };
1204
- export declare type IViewerSettingsSubject = {
1204
+ export type IViewerSettingsSubject = {
1205
1205
  __typename?: 'ViewerSettingsSubject';
1206
1206
  /** The URL to the settings. */
1207
1207
  settingsURL: Scalars['URI'];
1208
1208
  /** Graphql typed settings */
1209
1209
  settings?: Maybe<IPreferences>;
1210
1210
  };
1211
- export declare type IOrgNameInContextFragment = ({
1211
+ export type IOrgNameInContextFragment = ({
1212
1212
  __typename?: 'Context';
1213
1213
  } & Pick<IContext, 'orgName'>);
1214
- export declare type IGetOrgNameFromContextQueryVariables = Exact<{
1214
+ export type IGetOrgNameFromContextQueryVariables = Exact<{
1215
1215
  [key: string]: never;
1216
1216
  }>;
1217
- export declare type IGetOrgNameFromContextQuery = ({
1217
+ export type IGetOrgNameFromContextQuery = ({
1218
1218
  __typename?: 'Query';
1219
1219
  } & {
1220
1220
  getOrgNameFromContext?: Maybe<({
@@ -1244,26 +1244,26 @@ export declare function useGetOrgNameFromContextQuery(baseOptions?: Apollo.Query
1244
1244
  export declare function useGetOrgNameFromContextLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrgNameFromContextQuery, IGetOrgNameFromContextQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrgNameFromContextQuery, Exact<{
1245
1245
  [key: string]: never;
1246
1246
  }>>;
1247
- export declare type GetOrgNameFromContextQueryHookResult = ReturnType<typeof useGetOrgNameFromContextQuery>;
1248
- export declare type GetOrgNameFromContextLazyQueryHookResult = ReturnType<typeof useGetOrgNameFromContextLazyQuery>;
1249
- export declare type GetOrgNameFromContextQueryResult = Apollo.QueryResult<IGetOrgNameFromContextQuery, IGetOrgNameFromContextQueryVariables>;
1250
- export declare type ResolverTypeWrapper<T> = Promise<T> | T;
1251
- export declare type ResolverWithResolve<TResult, TParent, TContext, TArgs> = {
1247
+ export type GetOrgNameFromContextQueryHookResult = ReturnType<typeof useGetOrgNameFromContextQuery>;
1248
+ export type GetOrgNameFromContextLazyQueryHookResult = ReturnType<typeof useGetOrgNameFromContextLazyQuery>;
1249
+ export type GetOrgNameFromContextQueryResult = Apollo.QueryResult<IGetOrgNameFromContextQuery, IGetOrgNameFromContextQueryVariables>;
1250
+ export type ResolverTypeWrapper<T> = Promise<T> | T;
1251
+ export type ResolverWithResolve<TResult, TParent, TContext, TArgs> = {
1252
1252
  resolve: ResolverFn<TResult, TParent, TContext, TArgs>;
1253
1253
  };
1254
- export declare type LegacyStitchingResolver<TResult, TParent, TContext, TArgs> = {
1254
+ export type LegacyStitchingResolver<TResult, TParent, TContext, TArgs> = {
1255
1255
  fragment: string;
1256
1256
  resolve: ResolverFn<TResult, TParent, TContext, TArgs>;
1257
1257
  };
1258
- export declare type NewStitchingResolver<TResult, TParent, TContext, TArgs> = {
1258
+ export type NewStitchingResolver<TResult, TParent, TContext, TArgs> = {
1259
1259
  selectionSet: string;
1260
1260
  resolve: ResolverFn<TResult, TParent, TContext, TArgs>;
1261
1261
  };
1262
- export declare type StitchingResolver<TResult, TParent, TContext, TArgs> = LegacyStitchingResolver<TResult, TParent, TContext, TArgs> | NewStitchingResolver<TResult, TParent, TContext, TArgs>;
1263
- export declare type Resolver<TResult, TParent = {}, TContext = {}, TArgs = {}> = ResolverFn<TResult, TParent, TContext, TArgs> | ResolverWithResolve<TResult, TParent, TContext, TArgs> | StitchingResolver<TResult, TParent, TContext, TArgs>;
1264
- export declare type ResolverFn<TResult, TParent, TContext, TArgs> = (parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => Promise<TResult> | TResult;
1265
- export declare type SubscriptionSubscribeFn<TResult, TParent, TContext, TArgs> = (parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => AsyncIterator<TResult> | Promise<AsyncIterator<TResult>>;
1266
- export declare type SubscriptionResolveFn<TResult, TParent, TContext, TArgs> = (parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => TResult | Promise<TResult>;
1262
+ export type StitchingResolver<TResult, TParent, TContext, TArgs> = LegacyStitchingResolver<TResult, TParent, TContext, TArgs> | NewStitchingResolver<TResult, TParent, TContext, TArgs>;
1263
+ export type Resolver<TResult, TParent = {}, TContext = {}, TArgs = {}> = ResolverFn<TResult, TParent, TContext, TArgs> | ResolverWithResolve<TResult, TParent, TContext, TArgs> | StitchingResolver<TResult, TParent, TContext, TArgs>;
1264
+ export type ResolverFn<TResult, TParent, TContext, TArgs> = (parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => Promise<TResult> | TResult;
1265
+ export type SubscriptionSubscribeFn<TResult, TParent, TContext, TArgs> = (parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => AsyncIterator<TResult> | Promise<AsyncIterator<TResult>>;
1266
+ export type SubscriptionResolveFn<TResult, TParent, TContext, TArgs> = (parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => TResult | Promise<TResult>;
1267
1267
  export interface SubscriptionSubscriberObject<TResult, TKey extends string, TParent, TContext, TArgs> {
1268
1268
  subscribe: SubscriptionSubscribeFn<{
1269
1269
  [key in TKey]: TResult;
@@ -1276,14 +1276,14 @@ export interface SubscriptionResolverObject<TResult, TParent, TContext, TArgs> {
1276
1276
  subscribe: SubscriptionSubscribeFn<any, TParent, TContext, TArgs>;
1277
1277
  resolve: SubscriptionResolveFn<TResult, any, TContext, TArgs>;
1278
1278
  }
1279
- export declare type SubscriptionObject<TResult, TKey extends string, TParent, TContext, TArgs> = SubscriptionSubscriberObject<TResult, TKey, TParent, TContext, TArgs> | SubscriptionResolverObject<TResult, TParent, TContext, TArgs>;
1280
- export declare type SubscriptionResolver<TResult, TKey extends string, TParent = {}, TContext = {}, TArgs = {}> = ((...args: any[]) => SubscriptionObject<TResult, TKey, TParent, TContext, TArgs>) | SubscriptionObject<TResult, TKey, TParent, TContext, TArgs>;
1281
- export declare type TypeResolveFn<TTypes, TParent = {}, TContext = {}> = (parent: TParent, context: TContext, info: GraphQLResolveInfo) => Maybe<TTypes> | Promise<Maybe<TTypes>>;
1282
- export declare type IsTypeOfResolverFn<T = {}, TContext = {}> = (obj: T, context: TContext, info: GraphQLResolveInfo) => boolean | Promise<boolean>;
1283
- export declare type NextResolverFn<T> = () => Promise<T>;
1284
- export declare type DirectiveResolverFn<TResult = {}, TParent = {}, TContext = {}, TArgs = {}> = (next: NextResolverFn<TResult>, parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => TResult | Promise<TResult>;
1279
+ export type SubscriptionObject<TResult, TKey extends string, TParent, TContext, TArgs> = SubscriptionSubscriberObject<TResult, TKey, TParent, TContext, TArgs> | SubscriptionResolverObject<TResult, TParent, TContext, TArgs>;
1280
+ export type SubscriptionResolver<TResult, TKey extends string, TParent = {}, TContext = {}, TArgs = {}> = ((...args: any[]) => SubscriptionObject<TResult, TKey, TParent, TContext, TArgs>) | SubscriptionObject<TResult, TKey, TParent, TContext, TArgs>;
1281
+ export type TypeResolveFn<TTypes, TParent = {}, TContext = {}> = (parent: TParent, context: TContext, info: GraphQLResolveInfo) => Maybe<TTypes> | Promise<Maybe<TTypes>>;
1282
+ export type IsTypeOfResolverFn<T = {}, TContext = {}> = (obj: T, context: TContext, info: GraphQLResolveInfo) => boolean | Promise<boolean>;
1283
+ export type NextResolverFn<T> = () => Promise<T>;
1284
+ export type DirectiveResolverFn<TResult = {}, TParent = {}, TContext = {}, TArgs = {}> = (next: NextResolverFn<TResult>, parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => TResult | Promise<TResult>;
1285
1285
  /** Mapping between all available schema types and the resolvers types */
1286
- export declare type IResolversTypes = {
1286
+ export type IResolversTypes = {
1287
1287
  AccessRole: IResolversTypes['DefaultRole'] | IResolversTypes['OrganizationRole'] | IResolversTypes['ResourceRole'] | IResolversTypes['ApplicationRolePermission'];
1288
1288
  AnyObject: ResolverTypeWrapper<Scalars['AnyObject']>;
1289
1289
  ApplicationPolicy: ResolverTypeWrapper<IApplicationPolicy>;
@@ -1413,7 +1413,7 @@ export declare type IResolversTypes = {
1413
1413
  ViewerSettingsSubject: ResolverTypeWrapper<IViewerSettingsSubject>;
1414
1414
  };
1415
1415
  /** Mapping between all available schema types and the resolvers parents */
1416
- export declare type IResolversParentTypes = {
1416
+ export type IResolversParentTypes = {
1417
1417
  AccessRole: IResolversParentTypes['DefaultRole'] | IResolversParentTypes['OrganizationRole'] | IResolversParentTypes['ResourceRole'] | IResolversParentTypes['ApplicationRolePermission'];
1418
1418
  AnyObject: Scalars['AnyObject'];
1419
1419
  ApplicationPolicy: IApplicationPolicy;
@@ -1529,13 +1529,13 @@ export declare type IResolversParentTypes = {
1529
1529
  ViewerSettingsInput: IViewerSettingsInput;
1530
1530
  ViewerSettingsSubject: IViewerSettingsSubject;
1531
1531
  };
1532
- export declare type IAccessRoleResolvers<ContextType = any, ParentType extends IResolversParentTypes['AccessRole'] = IResolversParentTypes['AccessRole']> = {
1532
+ export type IAccessRoleResolvers<ContextType = any, ParentType extends IResolversParentTypes['AccessRole'] = IResolversParentTypes['AccessRole']> = {
1533
1533
  __resolveType: TypeResolveFn<'DefaultRole' | 'OrganizationRole' | 'ResourceRole' | 'ApplicationRolePermission', ParentType, ContextType>;
1534
1534
  };
1535
1535
  export interface IAnyObjectScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['AnyObject'], any> {
1536
1536
  name: 'AnyObject';
1537
1537
  }
1538
- export declare type IApplicationPolicyResolvers<ContextType = any, ParentType extends IResolversParentTypes['ApplicationPolicy'] = IResolversParentTypes['ApplicationPolicy']> = {
1538
+ export type IApplicationPolicyResolvers<ContextType = any, ParentType extends IResolversParentTypes['ApplicationPolicy'] = IResolversParentTypes['ApplicationPolicy']> = {
1539
1539
  resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
1540
1540
  target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
1541
1541
  contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
@@ -1543,7 +1543,7 @@ export declare type IApplicationPolicyResolvers<ContextType = any, ParentType ex
1543
1543
  overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
1544
1544
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1545
1545
  };
1546
- export declare type IApplicationRolePermissionResolvers<ContextType = any, ParentType extends IResolversParentTypes['ApplicationRolePermission'] = IResolversParentTypes['ApplicationRolePermission']> = {
1546
+ export type IApplicationRolePermissionResolvers<ContextType = any, ParentType extends IResolversParentTypes['ApplicationRolePermission'] = IResolversParentTypes['ApplicationRolePermission']> = {
1547
1547
  resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
1548
1548
  target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
1549
1549
  contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
@@ -1551,7 +1551,7 @@ export declare type IApplicationRolePermissionResolvers<ContextType = any, Paren
1551
1551
  overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
1552
1552
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1553
1553
  };
1554
- export declare type IApplicationSettingsResolvers<ContextType = any, ParentType extends IResolversParentTypes['ApplicationSettings'] = IResolversParentTypes['ApplicationSettings']> = {
1554
+ export type IApplicationSettingsResolvers<ContextType = any, ParentType extends IResolversParentTypes['ApplicationSettings'] = IResolversParentTypes['ApplicationSettings']> = {
1555
1555
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
1556
1556
  latestSettings?: Resolver<Maybe<IResolversTypes['Settings']>, ParentType, ContextType>;
1557
1557
  settingsURL?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
@@ -1559,10 +1559,10 @@ export declare type IApplicationSettingsResolvers<ContextType = any, ParentType
1559
1559
  settingsCascade?: Resolver<IResolversTypes['SettingsCascade'], ParentType, ContextType>;
1560
1560
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1561
1561
  };
1562
- export declare type IConfigurationResolvers<ContextType = any, ParentType extends IResolversParentTypes['Configuration'] = IResolversParentTypes['Configuration']> = {
1562
+ export type IConfigurationResolvers<ContextType = any, ParentType extends IResolversParentTypes['Configuration'] = IResolversParentTypes['Configuration']> = {
1563
1563
  __resolveType: TypeResolveFn<'DefaultConfiguration' | 'MachineConfiguration' | 'UserConfiguration' | 'OrganizationConfiguration' | 'OrganizationResourceConfiguration', ParentType, ContextType>;
1564
1564
  };
1565
- export declare type IConfigurationDataResolvers<ContextType = any, ParentType extends IResolversParentTypes['ConfigurationData'] = IResolversParentTypes['ConfigurationData']> = {
1565
+ export type IConfigurationDataResolvers<ContextType = any, ParentType extends IResolversParentTypes['ConfigurationData'] = IResolversParentTypes['ConfigurationData']> = {
1566
1566
  defaults?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
1567
1567
  user?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
1568
1568
  machine?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
@@ -1571,33 +1571,33 @@ export declare type IConfigurationDataResolvers<ContextType = any, ParentType ex
1571
1571
  isComplete?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
1572
1572
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1573
1573
  };
1574
- export declare type IConfigurationExtensionInfoResolvers<ContextType = any, ParentType extends IResolversParentTypes['ConfigurationExtensionInfo'] = IResolversParentTypes['ConfigurationExtensionInfo']> = {
1574
+ export type IConfigurationExtensionInfoResolvers<ContextType = any, ParentType extends IResolversParentTypes['ConfigurationExtensionInfo'] = IResolversParentTypes['ConfigurationExtensionInfo']> = {
1575
1575
  id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
1576
1576
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1577
1577
  };
1578
- export declare type IConfigurationModelResolvers<ContextType = any, ParentType extends IResolversParentTypes['ConfigurationModel'] = IResolversParentTypes['ConfigurationModel']> = {
1578
+ export type IConfigurationModelResolvers<ContextType = any, ParentType extends IResolversParentTypes['ConfigurationModel'] = IResolversParentTypes['ConfigurationModel']> = {
1579
1579
  contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
1580
1580
  keys?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
1581
1581
  overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
1582
1582
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1583
1583
  };
1584
- export declare type IConfigurationOverridesResolvers<ContextType = any, ParentType extends IResolversParentTypes['ConfigurationOverrides'] = IResolversParentTypes['ConfigurationOverrides']> = {
1584
+ export type IConfigurationOverridesResolvers<ContextType = any, ParentType extends IResolversParentTypes['ConfigurationOverrides'] = IResolversParentTypes['ConfigurationOverrides']> = {
1585
1585
  resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
1586
1586
  overrideIdentifier?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
1587
1587
  externalResource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
1588
1588
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1589
1589
  };
1590
- export declare type IConfigurationPolicyResolvers<ContextType = any, ParentType extends IResolversParentTypes['ConfigurationPolicy'] = IResolversParentTypes['ConfigurationPolicy']> = {
1590
+ export type IConfigurationPolicyResolvers<ContextType = any, ParentType extends IResolversParentTypes['ConfigurationPolicy'] = IResolversParentTypes['ConfigurationPolicy']> = {
1591
1591
  __resolveType: TypeResolveFn<'DefaultPolicy' | 'OrganizationPolicy' | 'ResourcePolicy' | 'ApplicationPolicy', ParentType, ContextType>;
1592
1592
  };
1593
- export declare type IConfigurationUpdateEventResolvers<ContextType = any, ParentType extends IResolversParentTypes['ConfigurationUpdateEvent'] = IResolversParentTypes['ConfigurationUpdateEvent']> = {
1593
+ export type IConfigurationUpdateEventResolvers<ContextType = any, ParentType extends IResolversParentTypes['ConfigurationUpdateEvent'] = IResolversParentTypes['ConfigurationUpdateEvent']> = {
1594
1594
  resource?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
1595
1595
  contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
1596
1596
  overrides?: Resolver<Maybe<IResolversTypes['ConfigurationOverrides']>, ParentType, ContextType>;
1597
1597
  target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
1598
1598
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1599
1599
  };
1600
- export declare type IContextResolvers<ContextType = any, ParentType extends IResolversParentTypes['Context'] = IResolversParentTypes['Context']> = {
1600
+ export type IContextResolvers<ContextType = any, ParentType extends IResolversParentTypes['Context'] = IResolversParentTypes['Context']> = {
1601
1601
  breadcrumbsActive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
1602
1602
  breadcrumbsPossible?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
1603
1603
  breadcrumbsVisible?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
@@ -1613,7 +1613,7 @@ export declare type IContextResolvers<ContextType = any, ParentType extends IRes
1613
1613
  teamUri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
1614
1614
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1615
1615
  };
1616
- export declare type IContributionRolesResolvers<ContextType = any, ParentType extends IResolversParentTypes['ContributionRoles'] = IResolversParentTypes['ContributionRoles']> = {
1616
+ export type IContributionRolesResolvers<ContextType = any, ParentType extends IResolversParentTypes['ContributionRoles'] = IResolversParentTypes['ContributionRoles']> = {
1617
1617
  id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
1618
1618
  name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
1619
1619
  target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
@@ -1621,7 +1621,7 @@ export declare type IContributionRolesResolvers<ContextType = any, ParentType ex
1621
1621
  permissions?: Resolver<Maybe<IResolversTypes['AccessRole']>, ParentType, ContextType>;
1622
1622
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1623
1623
  };
1624
- export declare type IContributionSettingsResolvers<ContextType = any, ParentType extends IResolversParentTypes['ContributionSettings'] = IResolversParentTypes['ContributionSettings']> = {
1624
+ export type IContributionSettingsResolvers<ContextType = any, ParentType extends IResolversParentTypes['ContributionSettings'] = IResolversParentTypes['ContributionSettings']> = {
1625
1625
  name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
1626
1626
  range?: Resolver<Maybe<IResolversTypes['Range']>, ParentType, ContextType>;
1627
1627
  key?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -1671,7 +1671,7 @@ export declare type IContributionSettingsResolvers<ContextType = any, ParentType
1671
1671
  minItems?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
1672
1672
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1673
1673
  };
1674
- export declare type IContributionSettingsPropertiesResolvers<ContextType = any, ParentType extends IResolversParentTypes['ContributionSettingsProperties'] = IResolversParentTypes['ContributionSettingsProperties']> = {
1674
+ export type IContributionSettingsPropertiesResolvers<ContextType = any, ParentType extends IResolversParentTypes['ContributionSettingsProperties'] = IResolversParentTypes['ContributionSettingsProperties']> = {
1675
1675
  readOnly?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
1676
1676
  disabled?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
1677
1677
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
@@ -1682,7 +1682,7 @@ export interface IDateScalarConfig extends GraphQLScalarTypeConfig<IResolversTyp
1682
1682
  export interface IDateTimeScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['DateTime'], any> {
1683
1683
  name: 'DateTime';
1684
1684
  }
1685
- export declare type IDefaultConfigurationResolvers<ContextType = any, ParentType extends IResolversParentTypes['DefaultConfiguration'] = IResolversParentTypes['DefaultConfiguration']> = {
1685
+ export type IDefaultConfigurationResolvers<ContextType = any, ParentType extends IResolversParentTypes['DefaultConfiguration'] = IResolversParentTypes['DefaultConfiguration']> = {
1686
1686
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
1687
1687
  resource?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
1688
1688
  target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
@@ -1691,7 +1691,7 @@ export declare type IDefaultConfigurationResolvers<ContextType = any, ParentType
1691
1691
  overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
1692
1692
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1693
1693
  };
1694
- export declare type IDefaultPolicyResolvers<ContextType = any, ParentType extends IResolversParentTypes['DefaultPolicy'] = IResolversParentTypes['DefaultPolicy']> = {
1694
+ export type IDefaultPolicyResolvers<ContextType = any, ParentType extends IResolversParentTypes['DefaultPolicy'] = IResolversParentTypes['DefaultPolicy']> = {
1695
1695
  resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
1696
1696
  target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
1697
1697
  contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
@@ -1699,7 +1699,7 @@ export declare type IDefaultPolicyResolvers<ContextType = any, ParentType extend
1699
1699
  overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
1700
1700
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1701
1701
  };
1702
- export declare type IDefaultRoleResolvers<ContextType = any, ParentType extends IResolversParentTypes['DefaultRole'] = IResolversParentTypes['DefaultRole']> = {
1702
+ export type IDefaultRoleResolvers<ContextType = any, ParentType extends IResolversParentTypes['DefaultRole'] = IResolversParentTypes['DefaultRole']> = {
1703
1703
  resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
1704
1704
  target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
1705
1705
  contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
@@ -1707,7 +1707,7 @@ export declare type IDefaultRoleResolvers<ContextType = any, ParentType extends
1707
1707
  overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
1708
1708
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1709
1709
  };
1710
- export declare type IDefaultSettingsResolvers<ContextType = any, ParentType extends IResolversParentTypes['DefaultSettings'] = IResolversParentTypes['DefaultSettings']> = {
1710
+ export type IDefaultSettingsResolvers<ContextType = any, ParentType extends IResolversParentTypes['DefaultSettings'] = IResolversParentTypes['DefaultSettings']> = {
1711
1711
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
1712
1712
  latestSettings?: Resolver<Maybe<IResolversTypes['Settings']>, ParentType, ContextType>;
1713
1713
  settingsURL?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
@@ -1715,26 +1715,26 @@ export declare type IDefaultSettingsResolvers<ContextType = any, ParentType exte
1715
1715
  settingsCascade?: Resolver<IResolversTypes['SettingsCascade'], ParentType, ContextType>;
1716
1716
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1717
1717
  };
1718
- export declare type IEnvironmentResolvers<ContextType = any, ParentType extends IResolversParentTypes['Environment'] = IResolversParentTypes['Environment']> = {
1718
+ export type IEnvironmentResolvers<ContextType = any, ParentType extends IResolversParentTypes['Environment'] = IResolversParentTypes['Environment']> = {
1719
1719
  args?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
1720
1720
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1721
1721
  };
1722
- export declare type IExternalResourceDataResolvers<ContextType = any, ParentType extends IResolversParentTypes['ExternalResourceData'] = IResolversParentTypes['ExternalResourceData']> = {
1722
+ export type IExternalResourceDataResolvers<ContextType = any, ParentType extends IResolversParentTypes['ExternalResourceData'] = IResolversParentTypes['ExternalResourceData']> = {
1723
1723
  uri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
1724
1724
  name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
1725
1725
  index?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
1726
1726
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1727
1727
  };
1728
- export declare type IFieldErrorResolvers<ContextType = any, ParentType extends IResolversParentTypes['FieldError'] = IResolversParentTypes['FieldError']> = {
1728
+ export type IFieldErrorResolvers<ContextType = any, ParentType extends IResolversParentTypes['FieldError'] = IResolversParentTypes['FieldError']> = {
1729
1729
  field?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
1730
1730
  message?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
1731
1731
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1732
1732
  };
1733
- export declare type IGeoLocationResolvers<ContextType = any, ParentType extends IResolversParentTypes['GeoLocation'] = IResolversParentTypes['GeoLocation']> = {
1733
+ export type IGeoLocationResolvers<ContextType = any, ParentType extends IResolversParentTypes['GeoLocation'] = IResolversParentTypes['GeoLocation']> = {
1734
1734
  coordinates?: Resolver<Maybe<Array<Maybe<IResolversTypes['Float']>>>, ParentType, ContextType>;
1735
1735
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1736
1736
  };
1737
- export declare type IGlobalSettingsResolvers<ContextType = any, ParentType extends IResolversParentTypes['GlobalSettings'] = IResolversParentTypes['GlobalSettings']> = {
1737
+ export type IGlobalSettingsResolvers<ContextType = any, ParentType extends IResolversParentTypes['GlobalSettings'] = IResolversParentTypes['GlobalSettings']> = {
1738
1738
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
1739
1739
  latestSettings?: Resolver<Maybe<IResolversTypes['Settings']>, ParentType, ContextType>;
1740
1740
  settingsURL?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
@@ -1742,7 +1742,7 @@ export declare type IGlobalSettingsResolvers<ContextType = any, ParentType exten
1742
1742
  settingsCascade?: Resolver<IResolversTypes['SettingsCascade'], ParentType, ContextType>;
1743
1743
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1744
1744
  };
1745
- export declare type IIConfigurationChangeEventResolvers<ContextType = any, ParentType extends IResolversParentTypes['IConfigurationChangeEvent'] = IResolversParentTypes['IConfigurationChangeEvent']> = {
1745
+ export type IIConfigurationChangeEventResolvers<ContextType = any, ParentType extends IResolversParentTypes['IConfigurationChangeEvent'] = IResolversParentTypes['IConfigurationChangeEvent']> = {
1746
1746
  source?: Resolver<Maybe<IResolversTypes['ConfigurationTarget']>, ParentType, ContextType>;
1747
1747
  affectedKeys?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
1748
1748
  sourceConfig?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
@@ -1750,7 +1750,7 @@ export declare type IIConfigurationChangeEventResolvers<ContextType = any, Paren
1750
1750
  changedConfigurationByResource?: Resolver<Maybe<IResolversTypes['OrganizationResourceConfiguration']>, ParentType, ContextType>;
1751
1751
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1752
1752
  };
1753
- export declare type IIConfigurationModelResolvers<ContextType = any, ParentType extends IResolversParentTypes['IConfigurationModel'] = IResolversParentTypes['IConfigurationModel']> = {
1753
+ export type IIConfigurationModelResolvers<ContextType = any, ParentType extends IResolversParentTypes['IConfigurationModel'] = IResolversParentTypes['IConfigurationModel']> = {
1754
1754
  __resolveType: TypeResolveFn<'ApplicationPolicy' | 'ApplicationRolePermission' | 'DefaultConfiguration' | 'DefaultPolicy' | 'DefaultRole' | 'MachineConfiguration' | 'OrganizationConfiguration' | 'OrganizationPolicy' | 'OrganizationResourceConfiguration' | 'OrganizationRole' | 'ResourcePolicy' | 'ResourceRole' | 'UserConfiguration', ParentType, ContextType>;
1755
1755
  resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
1756
1756
  target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
@@ -1758,30 +1758,30 @@ export declare type IIConfigurationModelResolvers<ContextType = any, ParentType
1758
1758
  keys?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
1759
1759
  overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
1760
1760
  };
1761
- export declare type IIConfigurationServiceResolvers<ContextType = any, ParentType extends IResolversParentTypes['IConfigurationService'] = IResolversParentTypes['IConfigurationService']> = {
1761
+ export type IIConfigurationServiceResolvers<ContextType = any, ParentType extends IResolversParentTypes['IConfigurationService'] = IResolversParentTypes['IConfigurationService']> = {
1762
1762
  __resolveType: TypeResolveFn<null, ParentType, ContextType>;
1763
1763
  updateValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IIConfigurationServiceUpdateValueArgs, 'key' | 'value' | 'overrides'>>;
1764
1764
  };
1765
- export declare type IIOrgUserResolvers<ContextType = any, ParentType extends IResolversParentTypes['IOrgUser'] = IResolversParentTypes['IOrgUser']> = {
1765
+ export type IIOrgUserResolvers<ContextType = any, ParentType extends IResolversParentTypes['IOrgUser'] = IResolversParentTypes['IOrgUser']> = {
1766
1766
  __resolveType: TypeResolveFn<null, ParentType, ContextType>;
1767
1767
  role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
1768
1768
  isSelf?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
1769
1769
  orgName?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
1770
1770
  };
1771
- export declare type IIResourceDataResolvers<ContextType = any, ParentType extends IResolversParentTypes['IResourceData'] = IResolversParentTypes['IResourceData']> = {
1771
+ export type IIResourceDataResolvers<ContextType = any, ParentType extends IResolversParentTypes['IResourceData'] = IResolversParentTypes['IResourceData']> = {
1772
1772
  __resolveType: TypeResolveFn<'ExternalResourceData' | 'OrganizationResourceData', ParentType, ContextType>;
1773
1773
  uri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
1774
1774
  name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
1775
1775
  index?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
1776
1776
  };
1777
- export declare type IIResourceUserRoleResolvers<ContextType = any, ParentType extends IResolversParentTypes['IResourceUserRole'] = IResolversParentTypes['IResourceUserRole']> = {
1777
+ export type IIResourceUserRoleResolvers<ContextType = any, ParentType extends IResolversParentTypes['IResourceUserRole'] = IResolversParentTypes['IResourceUserRole']> = {
1778
1778
  __resolveType: TypeResolveFn<'ResourceUser', ParentType, ContextType>;
1779
1779
  role?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
1780
1780
  name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
1781
1781
  isSelf?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
1782
1782
  orgName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
1783
1783
  };
1784
- export declare type IISettingsSubjectResolvers<ContextType = any, ParentType extends IResolversParentTypes['ISettingsSubject'] = IResolversParentTypes['ISettingsSubject']> = {
1784
+ export type IISettingsSubjectResolvers<ContextType = any, ParentType extends IResolversParentTypes['ISettingsSubject'] = IResolversParentTypes['ISettingsSubject']> = {
1785
1785
  __resolveType: TypeResolveFn<'ApplicationSettings' | 'DefaultSettings' | 'GlobalSettings' | 'MachineSettings' | 'MemorySettings' | 'OrganizationResourceSettings' | 'OrganizationSettings' | 'UserSettings', ParentType, ContextType>;
1786
1786
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
1787
1787
  latestSettings?: Resolver<Maybe<IResolversTypes['Settings']>, ParentType, ContextType>;
@@ -1789,11 +1789,11 @@ export declare type IISettingsSubjectResolvers<ContextType = any, ParentType ext
1789
1789
  viewerCanAdminister?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
1790
1790
  settingsCascade?: Resolver<IResolversTypes['SettingsCascade'], ParentType, ContextType>;
1791
1791
  };
1792
- export declare type IIntegraitonConfigurationIdResolvers<ContextType = any, ParentType extends IResolversParentTypes['IntegraitonConfigurationId'] = IResolversParentTypes['IntegraitonConfigurationId']> = {
1792
+ export type IIntegraitonConfigurationIdResolvers<ContextType = any, ParentType extends IResolversParentTypes['IntegraitonConfigurationId'] = IResolversParentTypes['IntegraitonConfigurationId']> = {
1793
1793
  id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
1794
1794
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1795
1795
  };
1796
- export declare type IIntegrationConfigurationResolvers<ContextType = any, ParentType extends IResolversParentTypes['IntegrationConfiguration'] = IResolversParentTypes['IntegrationConfiguration']> = {
1796
+ export type IIntegrationConfigurationResolvers<ContextType = any, ParentType extends IResolversParentTypes['IntegrationConfiguration'] = IResolversParentTypes['IntegrationConfiguration']> = {
1797
1797
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
1798
1798
  name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
1799
1799
  userId?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
@@ -1803,7 +1803,7 @@ export declare type IIntegrationConfigurationResolvers<ContextType = any, Parent
1803
1803
  integrationInfo?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
1804
1804
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1805
1805
  };
1806
- export declare type IIntegrationConfigurationsOutputResolvers<ContextType = any, ParentType extends IResolversParentTypes['IntegrationConfigurationsOutput'] = IResolversParentTypes['IntegrationConfigurationsOutput']> = {
1806
+ export type IIntegrationConfigurationsOutputResolvers<ContextType = any, ParentType extends IResolversParentTypes['IntegrationConfigurationsOutput'] = IResolversParentTypes['IntegrationConfigurationsOutput']> = {
1807
1807
  totalCount?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
1808
1808
  data?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType>;
1809
1809
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
@@ -1814,7 +1814,7 @@ export interface IJsonScalarConfig extends GraphQLScalarTypeConfig<IResolversTyp
1814
1814
  export interface IJsonObjectScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['JSONObject'], any> {
1815
1815
  name: 'JSONObject';
1816
1816
  }
1817
- export declare type IMachineConfigurationResolvers<ContextType = any, ParentType extends IResolversParentTypes['MachineConfiguration'] = IResolversParentTypes['MachineConfiguration']> = {
1817
+ export type IMachineConfigurationResolvers<ContextType = any, ParentType extends IResolversParentTypes['MachineConfiguration'] = IResolversParentTypes['MachineConfiguration']> = {
1818
1818
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
1819
1819
  resource?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
1820
1820
  target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
@@ -1823,7 +1823,7 @@ export declare type IMachineConfigurationResolvers<ContextType = any, ParentType
1823
1823
  overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
1824
1824
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1825
1825
  };
1826
- export declare type IMachineSettingsResolvers<ContextType = any, ParentType extends IResolversParentTypes['MachineSettings'] = IResolversParentTypes['MachineSettings']> = {
1826
+ export type IMachineSettingsResolvers<ContextType = any, ParentType extends IResolversParentTypes['MachineSettings'] = IResolversParentTypes['MachineSettings']> = {
1827
1827
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
1828
1828
  latestSettings?: Resolver<Maybe<IResolversTypes['Settings']>, ParentType, ContextType>;
1829
1829
  settingsURL?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
@@ -1831,7 +1831,7 @@ export declare type IMachineSettingsResolvers<ContextType = any, ParentType exte
1831
1831
  settingsCascade?: Resolver<IResolversTypes['SettingsCascade'], ParentType, ContextType>;
1832
1832
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1833
1833
  };
1834
- export declare type IMemorySettingsResolvers<ContextType = any, ParentType extends IResolversParentTypes['MemorySettings'] = IResolversParentTypes['MemorySettings']> = {
1834
+ export type IMemorySettingsResolvers<ContextType = any, ParentType extends IResolversParentTypes['MemorySettings'] = IResolversParentTypes['MemorySettings']> = {
1835
1835
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
1836
1836
  latestSettings?: Resolver<Maybe<IResolversTypes['Settings']>, ParentType, ContextType>;
1837
1837
  settingsURL?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
@@ -1839,7 +1839,7 @@ export declare type IMemorySettingsResolvers<ContextType = any, ParentType exten
1839
1839
  settingsCascade?: Resolver<IResolversTypes['SettingsCascade'], ParentType, ContextType>;
1840
1840
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1841
1841
  };
1842
- export declare type IMutationResolvers<ContextType = any, ParentType extends IResolversParentTypes['Mutation'] = IResolversParentTypes['Mutation']> = {
1842
+ export type IMutationResolvers<ContextType = any, ParentType extends IResolversParentTypes['Mutation'] = IResolversParentTypes['Mutation']> = {
1843
1843
  addContributionRole?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationAddContributionRoleArgs, 'name'>>;
1844
1844
  addResourceToContext?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationAddResourceToContextArgs, 'resourcesToAdd'>>;
1845
1845
  changeOrganization?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType, RequireFields<IMutationChangeOrganizationArgs, never>>;
@@ -1863,11 +1863,11 @@ export declare type IMutationResolvers<ContextType = any, ParentType extends IRe
1863
1863
  updateRoleValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateRoleValueArgs, 'key' | 'value'>>;
1864
1864
  updateSelectedOrgResource?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateSelectedOrgResourceArgs, 'resource'>>;
1865
1865
  };
1866
- export declare type INodeResolvers<ContextType = any, ParentType extends IResolversParentTypes['Node'] = IResolversParentTypes['Node']> = {
1866
+ export type INodeResolvers<ContextType = any, ParentType extends IResolversParentTypes['Node'] = IResolversParentTypes['Node']> = {
1867
1867
  __resolveType: TypeResolveFn<null, ParentType, ContextType>;
1868
1868
  id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
1869
1869
  };
1870
- export declare type IOrganizationConfigurationResolvers<ContextType = any, ParentType extends IResolversParentTypes['OrganizationConfiguration'] = IResolversParentTypes['OrganizationConfiguration']> = {
1870
+ export type IOrganizationConfigurationResolvers<ContextType = any, ParentType extends IResolversParentTypes['OrganizationConfiguration'] = IResolversParentTypes['OrganizationConfiguration']> = {
1871
1871
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
1872
1872
  resource?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
1873
1873
  target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
@@ -1876,19 +1876,19 @@ export declare type IOrganizationConfigurationResolvers<ContextType = any, Paren
1876
1876
  overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
1877
1877
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1878
1878
  };
1879
- export declare type IOrganizationDataResolvers<ContextType = any, ParentType extends IResolversParentTypes['OrganizationData'] = IResolversParentTypes['OrganizationData']> = {
1879
+ export type IOrganizationDataResolvers<ContextType = any, ParentType extends IResolversParentTypes['OrganizationData'] = IResolversParentTypes['OrganizationData']> = {
1880
1880
  id?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
1881
1881
  resources?: Resolver<Array<Maybe<IResolversTypes['ResourceData']>>, ParentType, ContextType>;
1882
1882
  configuration?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
1883
1883
  name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
1884
1884
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1885
1885
  };
1886
- export declare type IOrganizationIdentifierResolvers<ContextType = any, ParentType extends IResolversParentTypes['OrganizationIdentifier'] = IResolversParentTypes['OrganizationIdentifier']> = {
1886
+ export type IOrganizationIdentifierResolvers<ContextType = any, ParentType extends IResolversParentTypes['OrganizationIdentifier'] = IResolversParentTypes['OrganizationIdentifier']> = {
1887
1887
  id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
1888
1888
  configPath?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
1889
1889
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1890
1890
  };
1891
- export declare type IOrganizationPolicyResolvers<ContextType = any, ParentType extends IResolversParentTypes['OrganizationPolicy'] = IResolversParentTypes['OrganizationPolicy']> = {
1891
+ export type IOrganizationPolicyResolvers<ContextType = any, ParentType extends IResolversParentTypes['OrganizationPolicy'] = IResolversParentTypes['OrganizationPolicy']> = {
1892
1892
  resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
1893
1893
  target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
1894
1894
  contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
@@ -1896,7 +1896,7 @@ export declare type IOrganizationPolicyResolvers<ContextType = any, ParentType e
1896
1896
  overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
1897
1897
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1898
1898
  };
1899
- export declare type IOrganizationResourceConfigurationResolvers<ContextType = any, ParentType extends IResolversParentTypes['OrganizationResourceConfiguration'] = IResolversParentTypes['OrganizationResourceConfiguration']> = {
1899
+ export type IOrganizationResourceConfigurationResolvers<ContextType = any, ParentType extends IResolversParentTypes['OrganizationResourceConfiguration'] = IResolversParentTypes['OrganizationResourceConfiguration']> = {
1900
1900
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
1901
1901
  resource?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
1902
1902
  target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
@@ -1905,13 +1905,13 @@ export declare type IOrganizationResourceConfigurationResolvers<ContextType = an
1905
1905
  overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
1906
1906
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1907
1907
  };
1908
- export declare type IOrganizationResourceDataResolvers<ContextType = any, ParentType extends IResolversParentTypes['OrganizationResourceData'] = IResolversParentTypes['OrganizationResourceData']> = {
1908
+ export type IOrganizationResourceDataResolvers<ContextType = any, ParentType extends IResolversParentTypes['OrganizationResourceData'] = IResolversParentTypes['OrganizationResourceData']> = {
1909
1909
  uri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
1910
1910
  name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
1911
1911
  index?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
1912
1912
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1913
1913
  };
1914
- export declare type IOrganizationResourceSettingsResolvers<ContextType = any, ParentType extends IResolversParentTypes['OrganizationResourceSettings'] = IResolversParentTypes['OrganizationResourceSettings']> = {
1914
+ export type IOrganizationResourceSettingsResolvers<ContextType = any, ParentType extends IResolversParentTypes['OrganizationResourceSettings'] = IResolversParentTypes['OrganizationResourceSettings']> = {
1915
1915
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
1916
1916
  latestSettings?: Resolver<Maybe<IResolversTypes['Settings']>, ParentType, ContextType>;
1917
1917
  settingsURL?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
@@ -1919,7 +1919,7 @@ export declare type IOrganizationResourceSettingsResolvers<ContextType = any, Pa
1919
1919
  settingsCascade?: Resolver<IResolversTypes['SettingsCascade'], ParentType, ContextType>;
1920
1920
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1921
1921
  };
1922
- export declare type IOrganizationRoleResolvers<ContextType = any, ParentType extends IResolversParentTypes['OrganizationRole'] = IResolversParentTypes['OrganizationRole']> = {
1922
+ export type IOrganizationRoleResolvers<ContextType = any, ParentType extends IResolversParentTypes['OrganizationRole'] = IResolversParentTypes['OrganizationRole']> = {
1923
1923
  resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
1924
1924
  target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
1925
1925
  contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
@@ -1927,7 +1927,7 @@ export declare type IOrganizationRoleResolvers<ContextType = any, ParentType ext
1927
1927
  overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
1928
1928
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1929
1929
  };
1930
- export declare type IOrganizationSettingsResolvers<ContextType = any, ParentType extends IResolversParentTypes['OrganizationSettings'] = IResolversParentTypes['OrganizationSettings']> = {
1930
+ export type IOrganizationSettingsResolvers<ContextType = any, ParentType extends IResolversParentTypes['OrganizationSettings'] = IResolversParentTypes['OrganizationSettings']> = {
1931
1931
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
1932
1932
  latestSettings?: Resolver<Maybe<IResolversTypes['Settings']>, ParentType, ContextType>;
1933
1933
  settingsURL?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
@@ -1935,29 +1935,29 @@ export declare type IOrganizationSettingsResolvers<ContextType = any, ParentType
1935
1935
  settingsCascade?: Resolver<IResolversTypes['SettingsCascade'], ParentType, ContextType>;
1936
1936
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1937
1937
  };
1938
- export declare type IOverridesResolvers<ContextType = any, ParentType extends IResolversParentTypes['Overrides'] = IResolversParentTypes['Overrides']> = {
1938
+ export type IOverridesResolvers<ContextType = any, ParentType extends IResolversParentTypes['Overrides'] = IResolversParentTypes['Overrides']> = {
1939
1939
  contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
1940
1940
  identifiers?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
1941
1941
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1942
1942
  };
1943
- export declare type IPermissionSubjectResolvers<ContextType = any, ParentType extends IResolversParentTypes['PermissionSubject'] = IResolversParentTypes['PermissionSubject']> = {
1943
+ export type IPermissionSubjectResolvers<ContextType = any, ParentType extends IResolversParentTypes['PermissionSubject'] = IResolversParentTypes['PermissionSubject']> = {
1944
1944
  roleURL?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
1945
1945
  createdAt?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
1946
1946
  permissions?: Resolver<IResolversTypes['AnyObject'], ParentType, ContextType>;
1947
1947
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1948
1948
  };
1949
- export declare type IPolicySubjectResolvers<ContextType = any, ParentType extends IResolversParentTypes['PolicySubject'] = IResolversParentTypes['PolicySubject']> = {
1949
+ export type IPolicySubjectResolvers<ContextType = any, ParentType extends IResolversParentTypes['PolicySubject'] = IResolversParentTypes['PolicySubject']> = {
1950
1950
  policyURL?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
1951
1951
  createdAt?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
1952
1952
  policies?: Resolver<IResolversTypes['AnyObject'], ParentType, ContextType>;
1953
1953
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1954
1954
  };
1955
- export declare type IPositionResolvers<ContextType = any, ParentType extends IResolversParentTypes['Position'] = IResolversParentTypes['Position']> = {
1955
+ export type IPositionResolvers<ContextType = any, ParentType extends IResolversParentTypes['Position'] = IResolversParentTypes['Position']> = {
1956
1956
  line?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
1957
1957
  character?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
1958
1958
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1959
1959
  };
1960
- export declare type IPreferenceItemResolvers<ContextType = any, ParentType extends IResolversParentTypes['PreferenceItem'] = IResolversParentTypes['PreferenceItem']> = {
1960
+ export type IPreferenceItemResolvers<ContextType = any, ParentType extends IResolversParentTypes['PreferenceItem'] = IResolversParentTypes['PreferenceItem']> = {
1961
1961
  name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
1962
1962
  type?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
1963
1963
  default?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -1968,26 +1968,26 @@ export declare type IPreferenceItemResolvers<ContextType = any, ParentType exten
1968
1968
  enumDescriptions?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
1969
1969
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1970
1970
  };
1971
- export declare type IPreferencesResolvers<ContextType = any, ParentType extends IResolversParentTypes['Preferences'] = IResolversParentTypes['Preferences']> = {
1971
+ export type IPreferencesResolvers<ContextType = any, ParentType extends IResolversParentTypes['Preferences'] = IResolversParentTypes['Preferences']> = {
1972
1972
  defaultSetting?: Resolver<Maybe<Array<Maybe<IResolversTypes['SettingsGroup']>>>, ParentType, ContextType>;
1973
1973
  dummy?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
1974
1974
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1975
1975
  };
1976
- export declare type IPreferencesInputResolvers<ContextType = any, ParentType extends IResolversParentTypes['PreferencesInput'] = IResolversParentTypes['PreferencesInput']> = {
1976
+ export type IPreferencesInputResolvers<ContextType = any, ParentType extends IResolversParentTypes['PreferencesInput'] = IResolversParentTypes['PreferencesInput']> = {
1977
1977
  editableSettingsInput?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
1978
1978
  defaultPreferencesInput?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
1979
1979
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1980
1980
  };
1981
- export declare type IPreferencesResponseResolvers<ContextType = any, ParentType extends IResolversParentTypes['PreferencesResponse'] = IResolversParentTypes['PreferencesResponse']> = {
1981
+ export type IPreferencesResponseResolvers<ContextType = any, ParentType extends IResolversParentTypes['PreferencesResponse'] = IResolversParentTypes['PreferencesResponse']> = {
1982
1982
  preferences?: Resolver<Maybe<Array<Maybe<IResolversTypes['PreferencesType']>>>, ParentType, ContextType>;
1983
1983
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1984
1984
  };
1985
- export declare type IPreferencesTypeResolvers<ContextType = any, ParentType extends IResolversParentTypes['PreferencesType'] = IResolversParentTypes['PreferencesType']> = {
1985
+ export type IPreferencesTypeResolvers<ContextType = any, ParentType extends IResolversParentTypes['PreferencesType'] = IResolversParentTypes['PreferencesType']> = {
1986
1986
  type?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
1987
1987
  data?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionSettings']>>>, ParentType, ContextType>;
1988
1988
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1989
1989
  };
1990
- export declare type IQueryResolvers<ContextType = any, ParentType extends IResolversParentTypes['Query'] = IResolversParentTypes['Query']> = {
1990
+ export type IQueryResolvers<ContextType = any, ParentType extends IResolversParentTypes['Query'] = IResolversParentTypes['Query']> = {
1991
1991
  defaultPermissions?: Resolver<Maybe<Array<Maybe<IResolversTypes['SettingsGroup']>>>, ParentType, ContextType, RequireFields<IQueryDefaultPermissionsArgs, never>>;
1992
1992
  defaultPolicies?: Resolver<Maybe<Array<Maybe<IResolversTypes['SettingsGroup']>>>, ParentType, ContextType, RequireFields<IQueryDefaultPoliciesArgs, never>>;
1993
1993
  defaultPreferences?: Resolver<Maybe<IResolversTypes['PreferencesResponse']>, ParentType, ContextType>;
@@ -2021,7 +2021,7 @@ export declare type IQueryResolvers<ContextType = any, ParentType extends IResol
2021
2021
  viewerPolicies?: Resolver<Maybe<IResolversTypes['PolicySubject']>, ParentType, ContextType, RequireFields<IQueryViewerPoliciesArgs, 'input'>>;
2022
2022
  viewerSettings?: Resolver<IResolversTypes['ViewerSettingsSubject'], ParentType, ContextType, RequireFields<IQueryViewerSettingsArgs, never>>;
2023
2023
  };
2024
- export declare type IRangeResolvers<ContextType = any, ParentType extends IResolversParentTypes['Range'] = IResolversParentTypes['Range']> = {
2024
+ export type IRangeResolvers<ContextType = any, ParentType extends IResolversParentTypes['Range'] = IResolversParentTypes['Range']> = {
2025
2025
  start?: Resolver<Maybe<IResolversTypes['Position']>, ParentType, ContextType>;
2026
2026
  end?: Resolver<Maybe<IResolversTypes['Position']>, ParentType, ContextType>;
2027
2027
  startLineNumber?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
@@ -2030,15 +2030,15 @@ export declare type IRangeResolvers<ContextType = any, ParentType extends IResol
2030
2030
  endColumn?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
2031
2031
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2032
2032
  };
2033
- export declare type IResourceAccessRoleResolvers<ContextType = any, ParentType extends IResolversParentTypes['ResourceAccessRole'] = IResolversParentTypes['ResourceAccessRole']> = {
2033
+ export type IResourceAccessRoleResolvers<ContextType = any, ParentType extends IResolversParentTypes['ResourceAccessRole'] = IResolversParentTypes['ResourceAccessRole']> = {
2034
2034
  accessRoles?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccessRole']>>>, ParentType, ContextType>;
2035
2035
  resourceUserRoles?: Resolver<Maybe<Array<Maybe<IResolversTypes['ResourceUser']>>>, ParentType, ContextType>;
2036
2036
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2037
2037
  };
2038
- export declare type IResourceDataResolvers<ContextType = any, ParentType extends IResolversParentTypes['ResourceData'] = IResolversParentTypes['ResourceData']> = {
2038
+ export type IResourceDataResolvers<ContextType = any, ParentType extends IResolversParentTypes['ResourceData'] = IResolversParentTypes['ResourceData']> = {
2039
2039
  __resolveType: TypeResolveFn<'OrganizationResourceData' | 'ExternalResourceData', ParentType, ContextType>;
2040
2040
  };
2041
- export declare type IResourcePolicyResolvers<ContextType = any, ParentType extends IResolversParentTypes['ResourcePolicy'] = IResolversParentTypes['ResourcePolicy']> = {
2041
+ export type IResourcePolicyResolvers<ContextType = any, ParentType extends IResolversParentTypes['ResourcePolicy'] = IResolversParentTypes['ResourcePolicy']> = {
2042
2042
  resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
2043
2043
  target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
2044
2044
  contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
@@ -2046,7 +2046,7 @@ export declare type IResourcePolicyResolvers<ContextType = any, ParentType exten
2046
2046
  overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
2047
2047
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2048
2048
  };
2049
- export declare type IResourceRoleResolvers<ContextType = any, ParentType extends IResolversParentTypes['ResourceRole'] = IResolversParentTypes['ResourceRole']> = {
2049
+ export type IResourceRoleResolvers<ContextType = any, ParentType extends IResolversParentTypes['ResourceRole'] = IResolversParentTypes['ResourceRole']> = {
2050
2050
  resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
2051
2051
  target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
2052
2052
  contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
@@ -2054,7 +2054,7 @@ export declare type IResourceRoleResolvers<ContextType = any, ParentType extends
2054
2054
  overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
2055
2055
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2056
2056
  };
2057
- export declare type IResourceUserResolvers<ContextType = any, ParentType extends IResolversParentTypes['ResourceUser'] = IResolversParentTypes['ResourceUser']> = {
2057
+ export type IResourceUserResolvers<ContextType = any, ParentType extends IResolversParentTypes['ResourceUser'] = IResolversParentTypes['ResourceUser']> = {
2058
2058
  resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
2059
2059
  role?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2060
2060
  name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -2062,18 +2062,18 @@ export declare type IResourceUserResolvers<ContextType = any, ParentType extends
2062
2062
  orgName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2063
2063
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2064
2064
  };
2065
- export declare type ISettingsResolvers<ContextType = any, ParentType extends IResolversParentTypes['Settings'] = IResolversParentTypes['Settings']> = {
2065
+ export type ISettingsResolvers<ContextType = any, ParentType extends IResolversParentTypes['Settings'] = IResolversParentTypes['Settings']> = {
2066
2066
  createdAt?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2067
2067
  contents?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
2068
2068
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2069
2069
  };
2070
- export declare type ISettingsCascadeResolvers<ContextType = any, ParentType extends IResolversParentTypes['SettingsCascade'] = IResolversParentTypes['SettingsCascade']> = {
2070
+ export type ISettingsCascadeResolvers<ContextType = any, ParentType extends IResolversParentTypes['SettingsCascade'] = IResolversParentTypes['SettingsCascade']> = {
2071
2071
  subjects?: Resolver<Maybe<Array<Maybe<IResolversTypes['SettingsSubject']>>>, ParentType, ContextType>;
2072
2072
  final?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2073
2073
  finalConfiguration?: Resolver<Maybe<IResolversTypes['Preferences']>, ParentType, ContextType>;
2074
2074
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2075
2075
  };
2076
- export declare type ISettingsGroupResolvers<ContextType = any, ParentType extends IResolversParentTypes['SettingsGroup'] = IResolversParentTypes['SettingsGroup']> = {
2076
+ export type ISettingsGroupResolvers<ContextType = any, ParentType extends IResolversParentTypes['SettingsGroup'] = IResolversParentTypes['SettingsGroup']> = {
2077
2077
  id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2078
2078
  range?: Resolver<Maybe<IResolversTypes['Range']>, ParentType, ContextType>;
2079
2079
  title?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -2084,21 +2084,21 @@ export declare type ISettingsGroupResolvers<ContextType = any, ParentType extend
2084
2084
  extensionInfo?: Resolver<Maybe<IResolversTypes['ConfigurationExtensionInfo']>, ParentType, ContextType>;
2085
2085
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2086
2086
  };
2087
- export declare type ISettingsSectionResolvers<ContextType = any, ParentType extends IResolversParentTypes['SettingsSection'] = IResolversParentTypes['SettingsSection']> = {
2087
+ export type ISettingsSectionResolvers<ContextType = any, ParentType extends IResolversParentTypes['SettingsSection'] = IResolversParentTypes['SettingsSection']> = {
2088
2088
  titleRange?: Resolver<Maybe<IResolversTypes['Range']>, ParentType, ContextType>;
2089
2089
  title?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2090
2090
  settings?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionSettings']>>>, ParentType, ContextType>;
2091
2091
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2092
2092
  };
2093
- export declare type ISettingsSubjectResolvers<ContextType = any, ParentType extends IResolversParentTypes['SettingsSubject'] = IResolversParentTypes['SettingsSubject']> = {
2093
+ export type ISettingsSubjectResolvers<ContextType = any, ParentType extends IResolversParentTypes['SettingsSubject'] = IResolversParentTypes['SettingsSubject']> = {
2094
2094
  __resolveType: TypeResolveFn<'UserSettings' | 'ApplicationSettings' | 'MachineSettings' | 'OrganizationResourceSettings' | 'GlobalSettings' | 'OrganizationSettings' | 'MemorySettings' | 'DefaultSettings', ParentType, ContextType>;
2095
2095
  };
2096
- export declare type ISubscribedOrganizationDataResolvers<ContextType = any, ParentType extends IResolversParentTypes['SubscribedOrganizationData'] = IResolversParentTypes['SubscribedOrganizationData']> = {
2096
+ export type ISubscribedOrganizationDataResolvers<ContextType = any, ParentType extends IResolversParentTypes['SubscribedOrganizationData'] = IResolversParentTypes['SubscribedOrganizationData']> = {
2097
2097
  resources?: Resolver<Maybe<Array<Maybe<IResolversTypes['ResourceData']>>>, ParentType, ContextType>;
2098
2098
  orgNameFilter?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2099
2099
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2100
2100
  };
2101
- export declare type ISubscriptionResolvers<ContextType = any, ParentType extends IResolversParentTypes['Subscription'] = IResolversParentTypes['Subscription']> = {
2101
+ export type ISubscriptionResolvers<ContextType = any, ParentType extends IResolversParentTypes['Subscription'] = IResolversParentTypes['Subscription']> = {
2102
2102
  SubscribeToConfigurationUpdate?: SubscriptionResolver<Maybe<IResolversTypes['ConfigurationUpdateEvent']>, "SubscribeToConfigurationUpdate", ParentType, ContextType, RequireFields<ISubscriptionSubscribeToConfigurationUpdateArgs, 'orgName'>>;
2103
2103
  SubscribeToOrganizationContext?: SubscriptionResolver<Maybe<IResolversTypes['SubscribedOrganizationData']>, "SubscribeToOrganizationContext", ParentType, ContextType, RequireFields<ISubscriptionSubscribeToOrganizationContextArgs, never>>;
2104
2104
  SubscribeToPermissionUpdate?: SubscriptionResolver<Maybe<IResolversTypes['ConfigurationUpdateEvent']>, "SubscribeToPermissionUpdate", ParentType, ContextType, RequireFields<ISubscriptionSubscribeToPermissionUpdateArgs, never>>;
@@ -2114,7 +2114,7 @@ export interface IUriScalarConfig extends GraphQLScalarTypeConfig<IResolversType
2114
2114
  export interface IUriInputScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['URIInput'], any> {
2115
2115
  name: 'URIInput';
2116
2116
  }
2117
- export declare type IUserConfigurationResolvers<ContextType = any, ParentType extends IResolversParentTypes['UserConfiguration'] = IResolversParentTypes['UserConfiguration']> = {
2117
+ export type IUserConfigurationResolvers<ContextType = any, ParentType extends IResolversParentTypes['UserConfiguration'] = IResolversParentTypes['UserConfiguration']> = {
2118
2118
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
2119
2119
  resource?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
2120
2120
  target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
@@ -2123,7 +2123,7 @@ export declare type IUserConfigurationResolvers<ContextType = any, ParentType ex
2123
2123
  overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
2124
2124
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2125
2125
  };
2126
- export declare type IUserSettingsResolvers<ContextType = any, ParentType extends IResolversParentTypes['UserSettings'] = IResolversParentTypes['UserSettings']> = {
2126
+ export type IUserSettingsResolvers<ContextType = any, ParentType extends IResolversParentTypes['UserSettings'] = IResolversParentTypes['UserSettings']> = {
2127
2127
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
2128
2128
  latestSettings?: Resolver<Maybe<IResolversTypes['Settings']>, ParentType, ContextType>;
2129
2129
  settingsURL?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
@@ -2131,12 +2131,12 @@ export declare type IUserSettingsResolvers<ContextType = any, ParentType extends
2131
2131
  settingsCascade?: Resolver<IResolversTypes['SettingsCascade'], ParentType, ContextType>;
2132
2132
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2133
2133
  };
2134
- export declare type IViewerSettingsSubjectResolvers<ContextType = any, ParentType extends IResolversParentTypes['ViewerSettingsSubject'] = IResolversParentTypes['ViewerSettingsSubject']> = {
2134
+ export type IViewerSettingsSubjectResolvers<ContextType = any, ParentType extends IResolversParentTypes['ViewerSettingsSubject'] = IResolversParentTypes['ViewerSettingsSubject']> = {
2135
2135
  settingsURL?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
2136
2136
  settings?: Resolver<Maybe<IResolversTypes['Preferences']>, ParentType, ContextType>;
2137
2137
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2138
2138
  };
2139
- export declare type IResolvers<ContextType = any> = {
2139
+ export type IResolvers<ContextType = any> = {
2140
2140
  AccessRole?: IAccessRoleResolvers<ContextType>;
2141
2141
  AnyObject?: GraphQLScalarType;
2142
2142
  ApplicationPolicy?: IApplicationPolicyResolvers<ContextType>;