@admin-layout/client 3.0.0-alpha.3 → 3.0.0-alpha.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/config/{config.d.ts → env-config.d.ts} +0 -0
- package/lib/config/{config.js → env-config.js} +4 -3
- package/lib/config/env-config.js.map +1 -0
- package/lib/config/index.d.ts +1 -1
- package/lib/config/index.js +1 -1
- package/lib/config/index.js.map +1 -1
- package/lib/interfaces/generated/generated-models.d.ts +200 -170
- package/lib/interfaces/generated/generated-models.js +1 -0
- package/lib/interfaces/generated/generated-models.js.map +1 -1
- package/package.json +2 -2
- package/lib/config/config.js.map +0 -1
|
File without changes
|
|
@@ -2,9 +2,10 @@ import * as envalid from 'envalid';
|
|
|
2
2
|
import { defaultSettings } from './defaultSettings';
|
|
3
3
|
const { json } = envalid;
|
|
4
4
|
const env = process.APP_ENV || process.env;
|
|
5
|
-
export const config = envalid.cleanEnv(env,
|
|
5
|
+
export const config = envalid.cleanEnv(env,
|
|
6
|
+
/* start */ {
|
|
6
7
|
LAYOUT_SETTINGS: json({
|
|
7
8
|
default: JSON.stringify(defaultSettings),
|
|
8
9
|
}),
|
|
9
|
-
});
|
|
10
|
-
//# sourceMappingURL=config.js.map
|
|
10
|
+
} /* end */);
|
|
11
|
+
//# sourceMappingURL=env-config.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"env-config.js","sourceRoot":"","sources":["../../src/config/env-config.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,SAAS,CAAC;AAEnC,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAEpD,MAAM,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC;AACzB,MAAM,GAAG,GAAI,OAAe,CAAC,OAAO,IAAI,OAAO,CAAC,GAAG,CAAC;AAEpD,MAAM,CAAC,MAAM,MAAM,GAAG,OAAO,CAAC,QAAQ,CAAC,GAAG;AACtC,WAAW,CAAC;IACZ,eAAe,EAAE,IAAI,CAAkB;QACnC,OAAO,EAAE,IAAI,CAAC,SAAS,CAAC,eAAe,CAAQ;KAClD,CAAC;CACL,CAAC,SAAS,CACV,CAAC"}
|
package/lib/config/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './config';
|
|
1
|
+
export * from './env-config';
|
package/lib/config/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './config';
|
|
1
|
+
export * from './env-config';
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/lib/config/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/config/index.ts"],"names":[],"mappings":"AAAA,cAAc,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/config/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC"}
|
|
@@ -53,19 +53,19 @@ export declare type IApplicationRolePermission = IIConfigurationModel & {
|
|
|
53
53
|
};
|
|
54
54
|
export declare const enum IApplicationRoles {
|
|
55
55
|
/** User who is logged in */
|
|
56
|
-
|
|
56
|
+
User = "USER",
|
|
57
57
|
/** Owner of an Organization */
|
|
58
|
-
|
|
58
|
+
Owner = "OWNER",
|
|
59
59
|
/** Admin of an Organization */
|
|
60
|
-
|
|
60
|
+
Admin = "ADMIN",
|
|
61
61
|
/** Project Contributors */
|
|
62
|
-
|
|
62
|
+
Contributors = "CONTRIBUTORS",
|
|
63
63
|
/** Project Admin */
|
|
64
|
-
|
|
64
|
+
ProjectAdmin = "PROJECT_ADMIN",
|
|
65
65
|
/** Project Viewer */
|
|
66
|
-
|
|
67
|
-
/** Guest
|
|
68
|
-
|
|
66
|
+
ProjectViewer = "PROJECT_VIEWER",
|
|
67
|
+
/** Guest */
|
|
68
|
+
Guest = "GUEST"
|
|
69
69
|
}
|
|
70
70
|
export declare type IApplicationSettings = IISettingsSubject & {
|
|
71
71
|
__typename?: 'ApplicationSettings';
|
|
@@ -84,28 +84,28 @@ export declare type IApplicationSettings = IISettingsSubject & {
|
|
|
84
84
|
settingsCascade: ISettingsCascade;
|
|
85
85
|
};
|
|
86
86
|
export declare const enum IConfigCollectionName {
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
87
|
+
Application = "application",
|
|
88
|
+
Accounts = "accounts",
|
|
89
|
+
Organizations = "organizations",
|
|
90
|
+
Machines = "machines",
|
|
91
|
+
Workspaces = "workspaces",
|
|
92
|
+
Teams = "teams",
|
|
93
|
+
Projects = "projects",
|
|
94
|
+
Clients = "clients"
|
|
95
95
|
}
|
|
96
96
|
export declare const enum IConfigFragmentName {
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
97
|
+
Resources = "resources",
|
|
98
|
+
Settings = "settings",
|
|
99
|
+
Policies = "policies",
|
|
100
|
+
ApplicationPolicies = "applicationPolicies",
|
|
101
|
+
Roles = "roles",
|
|
102
|
+
ContributionRoles = "contributionRoles",
|
|
103
103
|
/** Team Members Document with role value */
|
|
104
|
-
|
|
104
|
+
TeamMembers = "teamMembers",
|
|
105
105
|
/** Organization Members Document with role value */
|
|
106
|
-
|
|
106
|
+
OrgMembers = "orgMembers",
|
|
107
107
|
/** Billing */
|
|
108
|
-
|
|
108
|
+
BillingPlanPolicies = "billingPlanPolicies"
|
|
109
109
|
}
|
|
110
110
|
export declare type IConfiguration = IDefaultConfiguration | IMachineConfiguration | IUserConfiguration | IOrganizationConfiguration | IOrganizationResourceConfiguration;
|
|
111
111
|
export declare type IConfigurationData = {
|
|
@@ -142,7 +142,7 @@ export declare type IConfigurationOverrides = {
|
|
|
142
142
|
overrideIdentifier?: Maybe<Scalars['String']>;
|
|
143
143
|
externalResource?: Maybe<Scalars['URI']>;
|
|
144
144
|
};
|
|
145
|
-
export declare type
|
|
145
|
+
export declare type IConfigurationOverridesInput = {
|
|
146
146
|
resource?: Maybe<Scalars['URI']>;
|
|
147
147
|
overrideIdentifier?: Maybe<Scalars['String']>;
|
|
148
148
|
externalResource?: Maybe<Scalars['URI']>;
|
|
@@ -155,25 +155,25 @@ export declare type IConfigurationPolicy = IDefaultPolicy | IOrganizationPolicy
|
|
|
155
155
|
*/
|
|
156
156
|
export declare const enum IConfigurationScope {
|
|
157
157
|
/** Application specific configuration, which can be configured only in local user settings. */
|
|
158
|
-
|
|
158
|
+
Application = "APPLICATION",
|
|
159
159
|
/** Machine specific configuration, which can be configured only in local and remote user settings. */
|
|
160
|
-
|
|
160
|
+
Machine = "MACHINE",
|
|
161
161
|
/** Window specific configuration, which can be configured in the user or organization settings. */
|
|
162
|
-
|
|
162
|
+
Window = "WINDOW",
|
|
163
163
|
/** Resource specific configuration, which can be configured in the user, organization or workspace settings. */
|
|
164
|
-
|
|
164
|
+
Resource = "RESOURCE"
|
|
165
165
|
}
|
|
166
166
|
export declare const enum IConfigurationTarget {
|
|
167
167
|
/** Targets the user configuration file for writing. */
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
168
|
+
User = "USER",
|
|
169
|
+
Application = "APPLICATION",
|
|
170
|
+
Machine = "MACHINE",
|
|
171
171
|
/** Targets the organization configuration file for writing. This only works if a organization is opened. */
|
|
172
|
-
|
|
172
|
+
Organization = "ORGANIZATION",
|
|
173
173
|
/** Targets the resource configuration file for writing. This only works if a organization is opened. */
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
174
|
+
OrganizationResource = "ORGANIZATION_RESOURCE",
|
|
175
|
+
Default = "DEFAULT",
|
|
176
|
+
Memory = "MEMORY"
|
|
177
177
|
}
|
|
178
178
|
export declare type IConfigurationUpdateEvent = {
|
|
179
179
|
__typename?: 'ConfigurationUpdateEvent';
|
|
@@ -277,7 +277,7 @@ export declare type IContributionSettingsProperties = {
|
|
|
277
277
|
};
|
|
278
278
|
export declare type IDefaultConfiguration = IIConfigurationModel & {
|
|
279
279
|
__typename?: 'DefaultConfiguration';
|
|
280
|
-
/**
|
|
280
|
+
/** The ID. */
|
|
281
281
|
id?: Maybe<Scalars['ID']>;
|
|
282
282
|
/** The URL to the user's settings. */
|
|
283
283
|
resource: Scalars['URI'];
|
|
@@ -386,10 +386,10 @@ export declare type IIConfigurationModel = {
|
|
|
386
386
|
export declare type IIConfigurationService = {
|
|
387
387
|
updateValue?: Maybe<Scalars['Boolean']>;
|
|
388
388
|
};
|
|
389
|
-
export declare type
|
|
389
|
+
export declare type IIConfigurationServiceUpdateValueArgs = {
|
|
390
390
|
key: Scalars['String'];
|
|
391
391
|
value: Scalars['AnyObject'];
|
|
392
|
-
overrides:
|
|
392
|
+
overrides: IConfigurationOverridesInput;
|
|
393
393
|
target?: Maybe<IConfigurationTarget>;
|
|
394
394
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
395
395
|
};
|
|
@@ -468,6 +468,11 @@ export declare type IIntegrationConfigurationInput = {
|
|
|
468
468
|
integrationInfo?: Maybe<Scalars['JSON']>;
|
|
469
469
|
userId?: Maybe<Scalars['ID']>;
|
|
470
470
|
};
|
|
471
|
+
export declare type IIntegrationConfigurationsOutput = {
|
|
472
|
+
__typename?: 'IntegrationConfigurationsOutput';
|
|
473
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
474
|
+
data?: Maybe<Array<Maybe<IIntegrationConfiguration>>>;
|
|
475
|
+
};
|
|
471
476
|
/**
|
|
472
477
|
* A segment of a key path that locates a nested JSON value in a root JSON value. Exactly one field in each
|
|
473
478
|
* KeyPathSegment must be non-null.
|
|
@@ -482,7 +487,7 @@ export declare type IKeyPathSegment = {
|
|
|
482
487
|
};
|
|
483
488
|
export declare type IMachineConfiguration = IIConfigurationModel & {
|
|
484
489
|
__typename?: 'MachineConfiguration';
|
|
485
|
-
/**
|
|
490
|
+
/** The ID. */
|
|
486
491
|
id?: Maybe<Scalars['ID']>;
|
|
487
492
|
/** The URL to the machine's settings. */
|
|
488
493
|
resource: Scalars['URI'];
|
|
@@ -548,107 +553,107 @@ export declare type IMutation = {
|
|
|
548
553
|
updateRoleValue?: Maybe<Scalars['Boolean']>;
|
|
549
554
|
updateSelectedOrgResource?: Maybe<Scalars['Boolean']>;
|
|
550
555
|
};
|
|
551
|
-
export declare type
|
|
556
|
+
export declare type IMutationAddContributionRoleArgs = {
|
|
552
557
|
name: Scalars['String'];
|
|
553
558
|
description?: Maybe<Scalars['String']>;
|
|
554
559
|
};
|
|
555
|
-
export declare type
|
|
556
|
-
resourcesToAdd: Array<Maybe<
|
|
560
|
+
export declare type IMutationAddResourceToContextArgs = {
|
|
561
|
+
resourcesToAdd: Array<Maybe<IResourceCreationDataInput>>;
|
|
557
562
|
};
|
|
558
|
-
export declare type
|
|
563
|
+
export declare type IMutationChangeOrganizationArgs = {
|
|
559
564
|
orgName?: Maybe<Scalars['String']>;
|
|
560
565
|
machineName?: Maybe<Scalars['String']>;
|
|
561
566
|
};
|
|
562
|
-
export declare type
|
|
567
|
+
export declare type IMutationCreateIntegrationConfigurationArgs = {
|
|
563
568
|
data?: Maybe<IIntegrationConfigurationInput>;
|
|
564
569
|
};
|
|
565
|
-
export declare type
|
|
570
|
+
export declare type IMutationCreateOrUpdateIntegrationConfigurationArgs = {
|
|
566
571
|
data?: Maybe<IIntegrationConfigurationCreateOrUpdateInput>;
|
|
567
572
|
};
|
|
568
|
-
export declare type
|
|
573
|
+
export declare type IMutationDeleteIntegrationConfigurationArgs = {
|
|
569
574
|
id: Scalars['String'];
|
|
570
575
|
};
|
|
571
|
-
export declare type
|
|
576
|
+
export declare type IMutationInitializeOrgNameInContextArgs = {
|
|
572
577
|
orgName?: Maybe<Scalars['String']>;
|
|
573
578
|
};
|
|
574
|
-
export declare type
|
|
579
|
+
export declare type IMutationInitiateConfigurationValueArgs = {
|
|
575
580
|
resource?: Maybe<Scalars['URI']>;
|
|
576
581
|
};
|
|
577
|
-
export declare type
|
|
582
|
+
export declare type IMutationInitiatePolicyValueArgs = {
|
|
578
583
|
resource?: Maybe<Scalars['URI']>;
|
|
579
584
|
};
|
|
580
|
-
export declare type
|
|
585
|
+
export declare type IMutationSetSettingsValueByResourceArgs = {
|
|
581
586
|
uri?: Maybe<Scalars['URI']>;
|
|
582
587
|
key?: Maybe<Scalars['String']>;
|
|
583
588
|
value?: Maybe<Scalars['String']>;
|
|
584
589
|
};
|
|
585
|
-
export declare type
|
|
590
|
+
export declare type IMutationUpdateConfigurationPolicyValueArgs = {
|
|
586
591
|
key: Scalars['String'];
|
|
587
592
|
value: Scalars['AnyObject'];
|
|
588
|
-
overrides?: Maybe<
|
|
593
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
589
594
|
target?: Maybe<Scalars['Int']>;
|
|
590
595
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
591
596
|
};
|
|
592
|
-
export declare type
|
|
597
|
+
export declare type IMutationUpdateConfigurationPolicyValueByUriArgs = {
|
|
593
598
|
resource?: Maybe<Scalars['URI']>;
|
|
594
599
|
key: Scalars['String'];
|
|
595
600
|
value: Scalars['AnyObject'];
|
|
596
|
-
overrides?: Maybe<
|
|
601
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
597
602
|
target?: Maybe<Scalars['Int']>;
|
|
598
603
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
599
604
|
};
|
|
600
|
-
export declare type
|
|
605
|
+
export declare type IMutationUpdateConfigurationValueArgs = {
|
|
601
606
|
key: Scalars['String'];
|
|
602
607
|
value: Scalars['AnyObject'];
|
|
603
|
-
overrides?: Maybe<
|
|
608
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
604
609
|
target?: Maybe<Scalars['Int']>;
|
|
605
610
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
606
611
|
};
|
|
607
|
-
export declare type
|
|
612
|
+
export declare type IMutationUpdateConfigurationValueByUriArgs = {
|
|
608
613
|
resource?: Maybe<Scalars['URI']>;
|
|
609
614
|
key: Scalars['String'];
|
|
610
615
|
value: Scalars['AnyObject'];
|
|
611
|
-
overrides?: Maybe<
|
|
616
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
612
617
|
target?: Maybe<Scalars['Int']>;
|
|
613
618
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
614
619
|
};
|
|
615
|
-
export declare type
|
|
620
|
+
export declare type IMutationUpdateContextArgs = {
|
|
616
621
|
key?: Maybe<Scalars['String']>;
|
|
617
622
|
value?: Maybe<Scalars['AnyObject']>;
|
|
618
623
|
};
|
|
619
|
-
export declare type
|
|
624
|
+
export declare type IMutationUpdateOrganizationContextAddResourcesArgs = {
|
|
620
625
|
orgId?: Maybe<Scalars['String']>;
|
|
621
|
-
resourcesToAdd: Array<Maybe<
|
|
626
|
+
resourcesToAdd: Array<Maybe<IResourceCreationDataInput>>;
|
|
622
627
|
index?: Maybe<Scalars['Int']>;
|
|
623
628
|
};
|
|
624
|
-
export declare type
|
|
629
|
+
export declare type IMutationUpdateOrganizationContextRemoveResourcesArgs = {
|
|
625
630
|
resourcesToRemove: Array<Scalars['URI']>;
|
|
626
631
|
};
|
|
627
|
-
export declare type
|
|
628
|
-
resourcesToAdd: Array<Maybe<
|
|
632
|
+
export declare type IMutationUpdateOrganizationContextUpdateResourcesArgs = {
|
|
633
|
+
resourcesToAdd: Array<Maybe<IResourceCreationDataInput>>;
|
|
629
634
|
resourcesToRemove: Array<Maybe<Scalars['URI']>>;
|
|
630
635
|
index?: Maybe<Scalars['Int']>;
|
|
631
636
|
};
|
|
632
|
-
export declare type
|
|
637
|
+
export declare type IMutationUpdateRoleValueArgs = {
|
|
633
638
|
key: Scalars['String'];
|
|
634
639
|
value: Scalars['AnyObject'];
|
|
635
|
-
overrides?: Maybe<
|
|
640
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
636
641
|
target?: Maybe<Scalars['Int']>;
|
|
637
642
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
638
643
|
};
|
|
639
|
-
export declare type
|
|
644
|
+
export declare type IMutationUpdateSelectedOrgResourceArgs = {
|
|
640
645
|
resource: Scalars['URI'];
|
|
641
646
|
};
|
|
642
647
|
export declare type INode = {
|
|
643
648
|
id: Scalars['ID'];
|
|
644
649
|
};
|
|
645
|
-
export declare type
|
|
650
|
+
export declare type IOrganizationConfigValueInput = {
|
|
646
651
|
section?: Maybe<Scalars['String']>;
|
|
647
|
-
overrides?: Maybe<
|
|
652
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
648
653
|
};
|
|
649
654
|
export declare type IOrganizationConfiguration = IIConfigurationModel & {
|
|
650
655
|
__typename?: 'OrganizationConfiguration';
|
|
651
|
-
/**
|
|
656
|
+
/** The ID. */
|
|
652
657
|
id?: Maybe<Scalars['ID']>;
|
|
653
658
|
resource: Scalars['URI'];
|
|
654
659
|
target?: Maybe<Scalars['Int']>;
|
|
@@ -689,7 +694,7 @@ export declare type IOrganizationPolicy = IIConfigurationModel & {
|
|
|
689
694
|
};
|
|
690
695
|
export declare type IOrganizationResourceConfiguration = IIConfigurationModel & {
|
|
691
696
|
__typename?: 'OrganizationResourceConfiguration';
|
|
692
|
-
/**
|
|
697
|
+
/** The ID. */
|
|
693
698
|
id?: Maybe<Scalars['ID']>;
|
|
694
699
|
resource: Scalars['URI'];
|
|
695
700
|
target?: Maybe<Scalars['Int']>;
|
|
@@ -779,7 +784,7 @@ export declare const enum IPermissionType {
|
|
|
779
784
|
}
|
|
780
785
|
export declare type IPolicySubject = {
|
|
781
786
|
__typename?: 'PolicySubject';
|
|
782
|
-
/**
|
|
787
|
+
/** The URL to the policies. */
|
|
783
788
|
policyURL: Scalars['URI'];
|
|
784
789
|
/** The time when this was created. */
|
|
785
790
|
createdAt?: Maybe<Scalars['String']>;
|
|
@@ -792,16 +797,16 @@ export declare type IPosition = {
|
|
|
792
797
|
character?: Maybe<Scalars['Int']>;
|
|
793
798
|
};
|
|
794
799
|
export declare const enum IPreDefinedRole {
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
800
|
+
Owner = "OWNER",
|
|
801
|
+
Admin = "ADMIN",
|
|
802
|
+
Maintainer = "MAINTAINER",
|
|
803
|
+
Member = "MEMBER",
|
|
804
|
+
ProjectAdmin = "PROJECT_ADMIN",
|
|
805
|
+
BillingLeader = "BILLING_LEADER",
|
|
806
|
+
DirectMember = "DIRECT_MEMBER",
|
|
807
|
+
Viewer = "VIEWER",
|
|
808
|
+
Guest = "GUEST",
|
|
809
|
+
Contributors = "CONTRIBUTORS"
|
|
805
810
|
}
|
|
806
811
|
export declare type IPreferenceItem = {
|
|
807
812
|
__typename?: 'PreferenceItem';
|
|
@@ -824,11 +829,11 @@ export declare type IPreferencesInput = {
|
|
|
824
829
|
editableSettingsInput?: Maybe<Scalars['URI']>;
|
|
825
830
|
defaultPreferencesInput?: Maybe<Scalars['URI']>;
|
|
826
831
|
};
|
|
827
|
-
export declare type
|
|
832
|
+
export declare type IPreferencesInputInput = {
|
|
828
833
|
editableSettingsInput?: Maybe<Scalars['URI']>;
|
|
829
834
|
defaultPreferencesInput?: Maybe<Scalars['URI']>;
|
|
830
835
|
};
|
|
831
|
-
export declare type
|
|
836
|
+
export declare type IPreferencesOpenOptionsInput = {
|
|
832
837
|
/** Filter to the sub data to be shown within the content. */
|
|
833
838
|
query?: Maybe<Scalars['String']>;
|
|
834
839
|
/** Type of the default data. */
|
|
@@ -873,7 +878,7 @@ export declare type IQuery = {
|
|
|
873
878
|
defaultViewerSettingsSubject: IDefaultSettings;
|
|
874
879
|
dummy?: Maybe<Scalars['Int']>;
|
|
875
880
|
filterIntegrationConfiguration?: Maybe<Array<Maybe<IIntegrationConfiguration>>>;
|
|
876
|
-
getAllIntegrationConfigurations?: Maybe<
|
|
881
|
+
getAllIntegrationConfigurations?: Maybe<IIntegrationConfigurationsOutput>;
|
|
877
882
|
getConfiguration?: Maybe<Array<Maybe<IConfiguration>>>;
|
|
878
883
|
getConfigurationData?: Maybe<IConfigurationData>;
|
|
879
884
|
getConfigurationPolicies?: Maybe<Array<Maybe<IConfigurationPolicy>>>;
|
|
@@ -910,70 +915,76 @@ export declare type IQuery = {
|
|
|
910
915
|
*/
|
|
911
916
|
viewerSettings: IViewerSettingsSubject;
|
|
912
917
|
};
|
|
913
|
-
export declare type
|
|
918
|
+
export declare type IQueryDefaultPermissionsArgs = {
|
|
914
919
|
target?: Maybe<Scalars['Int']>;
|
|
915
920
|
};
|
|
916
|
-
export declare type
|
|
921
|
+
export declare type IQueryDefaultPoliciesArgs = {
|
|
917
922
|
target?: Maybe<Scalars['Int']>;
|
|
918
923
|
};
|
|
919
|
-
export declare type
|
|
924
|
+
export declare type IQueryDefaultViewerSettingsSubjectArgs = {
|
|
920
925
|
target?: Maybe<Scalars['Int']>;
|
|
921
926
|
};
|
|
922
|
-
export declare type
|
|
927
|
+
export declare type IQueryFilterIntegrationConfigurationArgs = {
|
|
923
928
|
filter?: Maybe<IIntegrationConfigurationFilterInput>;
|
|
924
929
|
};
|
|
925
|
-
export declare type
|
|
930
|
+
export declare type IQueryGetAllIntegrationConfigurationsArgs = {
|
|
931
|
+
criteria?: Maybe<Scalars['AnyObject']>;
|
|
932
|
+
limit?: Maybe<Scalars['Int']>;
|
|
933
|
+
skip?: Maybe<Scalars['Int']>;
|
|
934
|
+
sort?: Maybe<ISort>;
|
|
935
|
+
};
|
|
936
|
+
export declare type IQueryGetConfigurationArgs = {
|
|
926
937
|
input?: Maybe<Array<Maybe<IConfigurationInput>>>;
|
|
927
938
|
};
|
|
928
|
-
export declare type
|
|
939
|
+
export declare type IQueryGetConfigurationPoliciesArgs = {
|
|
929
940
|
input?: Maybe<Array<Maybe<IConfigurationInput>>>;
|
|
930
941
|
};
|
|
931
|
-
export declare type
|
|
942
|
+
export declare type IQueryGetConfigurationTargetArgs = {
|
|
932
943
|
resource?: Maybe<Scalars['URI']>;
|
|
933
944
|
};
|
|
934
|
-
export declare type
|
|
945
|
+
export declare type IQueryGetContextPropertyArgs = {
|
|
935
946
|
keys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
936
947
|
};
|
|
937
|
-
export declare type
|
|
948
|
+
export declare type IQueryGetIntegrationConfigurationArgs = {
|
|
938
949
|
id: Scalars['String'];
|
|
939
950
|
};
|
|
940
|
-
export declare type
|
|
941
|
-
value?: Maybe<
|
|
951
|
+
export declare type IQueryGetOrganizationConfigValueArgs = {
|
|
952
|
+
value?: Maybe<IOrganizationConfigValueInput>;
|
|
942
953
|
};
|
|
943
|
-
export declare type
|
|
954
|
+
export declare type IQueryGetOrganizationResourceContextArgs = {
|
|
944
955
|
orgId?: Maybe<Scalars['String']>;
|
|
945
956
|
};
|
|
946
|
-
export declare type
|
|
957
|
+
export declare type IQueryGetRoleArgs = {
|
|
947
958
|
input?: Maybe<IRoleInput>;
|
|
948
959
|
};
|
|
949
|
-
export declare type
|
|
960
|
+
export declare type IQueryGetRolesArgs = {
|
|
950
961
|
input?: Maybe<Array<Maybe<IRoleInput>>>;
|
|
951
962
|
};
|
|
952
|
-
export declare type
|
|
963
|
+
export declare type IQueryGetUserAccessRoleArgs = {
|
|
953
964
|
input?: Maybe<Array<Maybe<IRoleInput>>>;
|
|
954
965
|
};
|
|
955
|
-
export declare type
|
|
966
|
+
export declare type IQueryGetViewerPermissionsArgs = {
|
|
956
967
|
input?: Maybe<IRoleInput>;
|
|
957
968
|
};
|
|
958
|
-
export declare type
|
|
969
|
+
export declare type IQueryGetViewerPoliciesArgs = {
|
|
959
970
|
input: IViewerPoliciesInput;
|
|
960
971
|
};
|
|
961
|
-
export declare type
|
|
972
|
+
export declare type IQueryMergedApplicationPermissionsArgs = {
|
|
962
973
|
roleName?: Maybe<Scalars['String']>;
|
|
963
974
|
};
|
|
964
|
-
export declare type
|
|
975
|
+
export declare type IQueryOpenPreferencesSettingsArgs = {
|
|
965
976
|
resource?: Maybe<Scalars['URI']>;
|
|
966
977
|
jsonEditor?: Maybe<Scalars['Boolean']>;
|
|
967
|
-
options?: Maybe<
|
|
978
|
+
options?: Maybe<IPreferencesOpenOptionsInput>;
|
|
968
979
|
};
|
|
969
|
-
export declare type
|
|
980
|
+
export declare type IQueryResolveSettingsArgs = {
|
|
970
981
|
uri: Scalars['URI'];
|
|
971
982
|
target?: Maybe<Scalars['Int']>;
|
|
972
983
|
};
|
|
973
|
-
export declare type
|
|
984
|
+
export declare type IQueryViewerPoliciesArgs = {
|
|
974
985
|
input: IViewerPoliciesInput;
|
|
975
986
|
};
|
|
976
|
-
export declare type
|
|
987
|
+
export declare type IQueryViewerSettingsArgs = {
|
|
977
988
|
input?: Maybe<IViewerSettingsInput>;
|
|
978
989
|
};
|
|
979
990
|
export declare type IRange = {
|
|
@@ -1002,7 +1013,7 @@ export declare type IResourceAccessRole = {
|
|
|
1002
1013
|
accessRoles?: Maybe<Array<Maybe<IAccessRole>>>;
|
|
1003
1014
|
resourceUserRoles?: Maybe<Array<Maybe<IResourceUser>>>;
|
|
1004
1015
|
};
|
|
1005
|
-
export declare type
|
|
1016
|
+
export declare type IResourceCreationDataInput = {
|
|
1006
1017
|
uri: Scalars['URI'];
|
|
1007
1018
|
name?: Maybe<Scalars['String']>;
|
|
1008
1019
|
};
|
|
@@ -1092,6 +1103,14 @@ export declare type ISettingsSection = {
|
|
|
1092
1103
|
settings?: Maybe<Array<Maybe<IContributionSettings>>>;
|
|
1093
1104
|
};
|
|
1094
1105
|
export declare type ISettingsSubject = IUserSettings | IApplicationSettings | IMachineSettings | IOrganizationResourceSettings | IGlobalSettings | IOrganizationSettings | IMemorySettings | IDefaultSettings;
|
|
1106
|
+
export declare type ISort = {
|
|
1107
|
+
key: Scalars['String'];
|
|
1108
|
+
value: ISortEnum;
|
|
1109
|
+
};
|
|
1110
|
+
export declare const enum ISortEnum {
|
|
1111
|
+
Asc = "ASC",
|
|
1112
|
+
Desc = "DESC"
|
|
1113
|
+
}
|
|
1095
1114
|
export declare type ISubscribedOrganizationData = {
|
|
1096
1115
|
__typename?: 'SubscribedOrganizationData';
|
|
1097
1116
|
/** Resources in the organization. */
|
|
@@ -1120,7 +1139,7 @@ export declare type ISubscriptionSubscribeToPolicyUpdateArgs = {
|
|
|
1120
1139
|
};
|
|
1121
1140
|
export declare type IUserConfiguration = IIConfigurationModel & {
|
|
1122
1141
|
__typename?: 'UserConfiguration';
|
|
1123
|
-
/**
|
|
1142
|
+
/** The ID. */
|
|
1124
1143
|
id?: Maybe<Scalars['ID']>;
|
|
1125
1144
|
/** The URL to the user's settings. */
|
|
1126
1145
|
resource: Scalars['URI'];
|
|
@@ -1222,7 +1241,7 @@ export declare const GetOrgNameFromContextDocument: Apollo.DocumentNode;
|
|
|
1222
1241
|
export declare function useGetOrgNameFromContextQuery(baseOptions?: Apollo.QueryHookOptions<IGetOrgNameFromContextQuery, IGetOrgNameFromContextQueryVariables>): Apollo.QueryResult<IGetOrgNameFromContextQuery, Exact<{
|
|
1223
1242
|
[key: string]: never;
|
|
1224
1243
|
}>>;
|
|
1225
|
-
export declare function useGetOrgNameFromContextLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrgNameFromContextQuery, IGetOrgNameFromContextQueryVariables>): Apollo.
|
|
1244
|
+
export declare function useGetOrgNameFromContextLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrgNameFromContextQuery, IGetOrgNameFromContextQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrgNameFromContextQuery, Exact<{
|
|
1226
1245
|
[key: string]: never;
|
|
1227
1246
|
}>>;
|
|
1228
1247
|
export declare type GetOrgNameFromContextQueryHookResult = ReturnType<typeof useGetOrgNameFromContextQuery>;
|
|
@@ -1283,7 +1302,7 @@ export declare type IResolversTypes = {
|
|
|
1283
1302
|
ConfigurationInput: IConfigurationInput;
|
|
1284
1303
|
ConfigurationModel: ResolverTypeWrapper<IConfigurationModel>;
|
|
1285
1304
|
ConfigurationOverrides: ResolverTypeWrapper<IConfigurationOverrides>;
|
|
1286
|
-
|
|
1305
|
+
ConfigurationOverridesInput: IConfigurationOverridesInput;
|
|
1287
1306
|
ConfigurationPolicy: IResolversTypes['DefaultPolicy'] | IResolversTypes['OrganizationPolicy'] | IResolversTypes['ResourcePolicy'] | IResolversTypes['ApplicationPolicy'];
|
|
1288
1307
|
ConfigurationScope: IConfigurationScope;
|
|
1289
1308
|
ConfigurationTarget: IConfigurationTarget;
|
|
@@ -1322,6 +1341,7 @@ export declare type IResolversTypes = {
|
|
|
1322
1341
|
IntegrationConfigurationCreateOrUpdateInput: IIntegrationConfigurationCreateOrUpdateInput;
|
|
1323
1342
|
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
|
1324
1343
|
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
|
1344
|
+
IntegrationConfigurationsOutput: ResolverTypeWrapper<IIntegrationConfigurationsOutput>;
|
|
1325
1345
|
JSON: ResolverTypeWrapper<Scalars['JSON']>;
|
|
1326
1346
|
JSONObject: ResolverTypeWrapper<Scalars['JSONObject']>;
|
|
1327
1347
|
KeyPathSegment: IKeyPathSegment;
|
|
@@ -1330,7 +1350,7 @@ export declare type IResolversTypes = {
|
|
|
1330
1350
|
MemorySettings: ResolverTypeWrapper<IMemorySettings>;
|
|
1331
1351
|
Mutation: ResolverTypeWrapper<{}>;
|
|
1332
1352
|
Node: never;
|
|
1333
|
-
|
|
1353
|
+
OrganizationConfigValueInput: IOrganizationConfigValueInput;
|
|
1334
1354
|
OrganizationConfiguration: ResolverTypeWrapper<IOrganizationConfiguration>;
|
|
1335
1355
|
OrganizationContextPubSubEvents: IOrganizationContextPubSubEvents;
|
|
1336
1356
|
OrganizationData: ResolverTypeWrapper<Omit<IOrganizationData, 'resources'> & {
|
|
@@ -1354,8 +1374,8 @@ export declare type IResolversTypes = {
|
|
|
1354
1374
|
PreferenceItem: ResolverTypeWrapper<IPreferenceItem>;
|
|
1355
1375
|
Preferences: ResolverTypeWrapper<IPreferences>;
|
|
1356
1376
|
PreferencesInput: ResolverTypeWrapper<IPreferencesInput>;
|
|
1357
|
-
|
|
1358
|
-
|
|
1377
|
+
PreferencesInputInput: IPreferencesInputInput;
|
|
1378
|
+
PreferencesOpenOptionsInput: IPreferencesOpenOptionsInput;
|
|
1359
1379
|
PreferencesResponse: ResolverTypeWrapper<IPreferencesResponse>;
|
|
1360
1380
|
PreferencesType: ResolverTypeWrapper<IPreferencesType>;
|
|
1361
1381
|
Query: ResolverTypeWrapper<{}>;
|
|
@@ -1363,7 +1383,7 @@ export declare type IResolversTypes = {
|
|
|
1363
1383
|
ResourceAccessRole: ResolverTypeWrapper<Omit<IResourceAccessRole, 'accessRoles'> & {
|
|
1364
1384
|
accessRoles?: Maybe<Array<Maybe<IResolversTypes['AccessRole']>>>;
|
|
1365
1385
|
}>;
|
|
1366
|
-
|
|
1386
|
+
ResourceCreationDataInput: IResourceCreationDataInput;
|
|
1367
1387
|
ResourceData: IResolversTypes['OrganizationResourceData'] | IResolversTypes['ExternalResourceData'];
|
|
1368
1388
|
ResourcePolicy: ResolverTypeWrapper<IResourcePolicy>;
|
|
1369
1389
|
ResourceRole: ResolverTypeWrapper<IResourceRole>;
|
|
@@ -1377,6 +1397,8 @@ export declare type IResolversTypes = {
|
|
|
1377
1397
|
SettingsGroup: ResolverTypeWrapper<ISettingsGroup>;
|
|
1378
1398
|
SettingsSection: ResolverTypeWrapper<ISettingsSection>;
|
|
1379
1399
|
SettingsSubject: IResolversTypes['UserSettings'] | IResolversTypes['ApplicationSettings'] | IResolversTypes['MachineSettings'] | IResolversTypes['OrganizationResourceSettings'] | IResolversTypes['GlobalSettings'] | IResolversTypes['OrganizationSettings'] | IResolversTypes['MemorySettings'] | IResolversTypes['DefaultSettings'];
|
|
1400
|
+
Sort: ISort;
|
|
1401
|
+
SortEnum: ISortEnum;
|
|
1380
1402
|
SubscribedOrganizationData: ResolverTypeWrapper<Omit<ISubscribedOrganizationData, 'resources'> & {
|
|
1381
1403
|
resources?: Maybe<Array<Maybe<IResolversTypes['ResourceData']>>>;
|
|
1382
1404
|
}>;
|
|
@@ -1407,7 +1429,7 @@ export declare type IResolversParentTypes = {
|
|
|
1407
1429
|
ConfigurationInput: IConfigurationInput;
|
|
1408
1430
|
ConfigurationModel: IConfigurationModel;
|
|
1409
1431
|
ConfigurationOverrides: IConfigurationOverrides;
|
|
1410
|
-
|
|
1432
|
+
ConfigurationOverridesInput: IConfigurationOverridesInput;
|
|
1411
1433
|
ConfigurationPolicy: IResolversParentTypes['DefaultPolicy'] | IResolversParentTypes['OrganizationPolicy'] | IResolversParentTypes['ResourcePolicy'] | IResolversParentTypes['ApplicationPolicy'];
|
|
1412
1434
|
ConfigurationUpdateEvent: IConfigurationUpdateEvent;
|
|
1413
1435
|
Context: IContext;
|
|
@@ -1443,6 +1465,7 @@ export declare type IResolversParentTypes = {
|
|
|
1443
1465
|
IntegrationConfigurationCreateOrUpdateInput: IIntegrationConfigurationCreateOrUpdateInput;
|
|
1444
1466
|
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
|
1445
1467
|
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
|
1468
|
+
IntegrationConfigurationsOutput: IIntegrationConfigurationsOutput;
|
|
1446
1469
|
JSON: Scalars['JSON'];
|
|
1447
1470
|
JSONObject: Scalars['JSONObject'];
|
|
1448
1471
|
KeyPathSegment: IKeyPathSegment;
|
|
@@ -1451,7 +1474,7 @@ export declare type IResolversParentTypes = {
|
|
|
1451
1474
|
MemorySettings: IMemorySettings;
|
|
1452
1475
|
Mutation: {};
|
|
1453
1476
|
Node: never;
|
|
1454
|
-
|
|
1477
|
+
OrganizationConfigValueInput: IOrganizationConfigValueInput;
|
|
1455
1478
|
OrganizationConfiguration: IOrganizationConfiguration;
|
|
1456
1479
|
OrganizationData: Omit<IOrganizationData, 'resources'> & {
|
|
1457
1480
|
resources: Array<Maybe<IResolversParentTypes['ResourceData']>>;
|
|
@@ -1470,8 +1493,8 @@ export declare type IResolversParentTypes = {
|
|
|
1470
1493
|
PreferenceItem: IPreferenceItem;
|
|
1471
1494
|
Preferences: IPreferences;
|
|
1472
1495
|
PreferencesInput: IPreferencesInput;
|
|
1473
|
-
|
|
1474
|
-
|
|
1496
|
+
PreferencesInputInput: IPreferencesInputInput;
|
|
1497
|
+
PreferencesOpenOptionsInput: IPreferencesOpenOptionsInput;
|
|
1475
1498
|
PreferencesResponse: IPreferencesResponse;
|
|
1476
1499
|
PreferencesType: IPreferencesType;
|
|
1477
1500
|
Query: {};
|
|
@@ -1479,7 +1502,7 @@ export declare type IResolversParentTypes = {
|
|
|
1479
1502
|
ResourceAccessRole: Omit<IResourceAccessRole, 'accessRoles'> & {
|
|
1480
1503
|
accessRoles?: Maybe<Array<Maybe<IResolversParentTypes['AccessRole']>>>;
|
|
1481
1504
|
};
|
|
1482
|
-
|
|
1505
|
+
ResourceCreationDataInput: IResourceCreationDataInput;
|
|
1483
1506
|
ResourceData: IResolversParentTypes['OrganizationResourceData'] | IResolversParentTypes['ExternalResourceData'];
|
|
1484
1507
|
ResourcePolicy: IResourcePolicy;
|
|
1485
1508
|
ResourceRole: IResourceRole;
|
|
@@ -1492,6 +1515,7 @@ export declare type IResolversParentTypes = {
|
|
|
1492
1515
|
SettingsGroup: ISettingsGroup;
|
|
1493
1516
|
SettingsSection: ISettingsSection;
|
|
1494
1517
|
SettingsSubject: IResolversParentTypes['UserSettings'] | IResolversParentTypes['ApplicationSettings'] | IResolversParentTypes['MachineSettings'] | IResolversParentTypes['OrganizationResourceSettings'] | IResolversParentTypes['GlobalSettings'] | IResolversParentTypes['OrganizationSettings'] | IResolversParentTypes['MemorySettings'] | IResolversParentTypes['DefaultSettings'];
|
|
1518
|
+
Sort: ISort;
|
|
1495
1519
|
SubscribedOrganizationData: Omit<ISubscribedOrganizationData, 'resources'> & {
|
|
1496
1520
|
resources?: Maybe<Array<Maybe<IResolversParentTypes['ResourceData']>>>;
|
|
1497
1521
|
};
|
|
@@ -1736,7 +1760,7 @@ export declare type IIConfigurationModelResolvers<ContextType = any, ParentType
|
|
|
1736
1760
|
};
|
|
1737
1761
|
export declare type IIConfigurationServiceResolvers<ContextType = any, ParentType extends IResolversParentTypes['IConfigurationService'] = IResolversParentTypes['IConfigurationService']> = {
|
|
1738
1762
|
__resolveType: TypeResolveFn<null, ParentType, ContextType>;
|
|
1739
|
-
updateValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<
|
|
1763
|
+
updateValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IIConfigurationServiceUpdateValueArgs, 'key' | 'value' | 'overrides'>>;
|
|
1740
1764
|
};
|
|
1741
1765
|
export declare type IIOrgUserResolvers<ContextType = any, ParentType extends IResolversParentTypes['IOrgUser'] = IResolversParentTypes['IOrgUser']> = {
|
|
1742
1766
|
__resolveType: TypeResolveFn<null, ParentType, ContextType>;
|
|
@@ -1779,10 +1803,15 @@ export declare type IIntegrationConfigurationResolvers<ContextType = any, Parent
|
|
|
1779
1803
|
integrationInfo?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
|
|
1780
1804
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1781
1805
|
};
|
|
1782
|
-
export
|
|
1806
|
+
export declare type IIntegrationConfigurationsOutputResolvers<ContextType = any, ParentType extends IResolversParentTypes['IntegrationConfigurationsOutput'] = IResolversParentTypes['IntegrationConfigurationsOutput']> = {
|
|
1807
|
+
totalCount?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
1808
|
+
data?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType>;
|
|
1809
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1810
|
+
};
|
|
1811
|
+
export interface IJsonScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['JSON'], any> {
|
|
1783
1812
|
name: 'JSON';
|
|
1784
1813
|
}
|
|
1785
|
-
export interface
|
|
1814
|
+
export interface IJsonObjectScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['JSONObject'], any> {
|
|
1786
1815
|
name: 'JSONObject';
|
|
1787
1816
|
}
|
|
1788
1817
|
export declare type IMachineConfigurationResolvers<ContextType = any, ParentType extends IResolversParentTypes['MachineConfiguration'] = IResolversParentTypes['MachineConfiguration']> = {
|
|
@@ -1811,28 +1840,28 @@ export declare type IMemorySettingsResolvers<ContextType = any, ParentType exten
|
|
|
1811
1840
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1812
1841
|
};
|
|
1813
1842
|
export declare type IMutationResolvers<ContextType = any, ParentType extends IResolversParentTypes['Mutation'] = IResolversParentTypes['Mutation']> = {
|
|
1814
|
-
addContributionRole?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<
|
|
1815
|
-
addResourceToContext?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<
|
|
1816
|
-
changeOrganization?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType, RequireFields<
|
|
1817
|
-
createIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegraitonConfigurationId']>, ParentType, ContextType, RequireFields<
|
|
1818
|
-
createOrUpdateIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegraitonConfigurationId']>, ParentType, ContextType, RequireFields<
|
|
1819
|
-
deleteIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<
|
|
1843
|
+
addContributionRole?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationAddContributionRoleArgs, 'name'>>;
|
|
1844
|
+
addResourceToContext?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationAddResourceToContextArgs, 'resourcesToAdd'>>;
|
|
1845
|
+
changeOrganization?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType, RequireFields<IMutationChangeOrganizationArgs, never>>;
|
|
1846
|
+
createIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegraitonConfigurationId']>, ParentType, ContextType, RequireFields<IMutationCreateIntegrationConfigurationArgs, never>>;
|
|
1847
|
+
createOrUpdateIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegraitonConfigurationId']>, ParentType, ContextType, RequireFields<IMutationCreateOrUpdateIntegrationConfigurationArgs, never>>;
|
|
1848
|
+
deleteIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationDeleteIntegrationConfigurationArgs, 'id'>>;
|
|
1820
1849
|
dummy?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
1821
|
-
initializeOrgNameInContext?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<
|
|
1822
|
-
initiateConfigurationValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<
|
|
1823
|
-
initiatePolicyValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<
|
|
1850
|
+
initializeOrgNameInContext?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationInitializeOrgNameInContextArgs, never>>;
|
|
1851
|
+
initiateConfigurationValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationInitiateConfigurationValueArgs, never>>;
|
|
1852
|
+
initiatePolicyValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationInitiatePolicyValueArgs, never>>;
|
|
1824
1853
|
reassignRole?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
1825
|
-
setSettingsValueByResource?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<
|
|
1826
|
-
updateConfigurationPolicyValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<
|
|
1827
|
-
updateConfigurationPolicyValueByUri?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<
|
|
1828
|
-
updateConfigurationValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<
|
|
1829
|
-
updateConfigurationValueByUri?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<
|
|
1830
|
-
updateContext?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<
|
|
1831
|
-
updateOrganizationContextAddResources?: Resolver<Maybe<Array<Maybe<IResolversTypes['ResourceData']>>>, ParentType, ContextType, RequireFields<
|
|
1832
|
-
updateOrganizationContextRemoveResources?: Resolver<Maybe<Array<Maybe<IResolversTypes['ResourceData']>>>, ParentType, ContextType, RequireFields<
|
|
1833
|
-
updateOrganizationContextUpdateResources?: Resolver<Maybe<Array<Maybe<IResolversTypes['ResourceData']>>>, ParentType, ContextType, RequireFields<
|
|
1834
|
-
updateRoleValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<
|
|
1835
|
-
updateSelectedOrgResource?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<
|
|
1854
|
+
setSettingsValueByResource?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSetSettingsValueByResourceArgs, never>>;
|
|
1855
|
+
updateConfigurationPolicyValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationPolicyValueArgs, 'key' | 'value'>>;
|
|
1856
|
+
updateConfigurationPolicyValueByUri?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationPolicyValueByUriArgs, 'key' | 'value'>>;
|
|
1857
|
+
updateConfigurationValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationValueArgs, 'key' | 'value'>>;
|
|
1858
|
+
updateConfigurationValueByUri?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationValueByUriArgs, 'key' | 'value'>>;
|
|
1859
|
+
updateContext?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateContextArgs, never>>;
|
|
1860
|
+
updateOrganizationContextAddResources?: Resolver<Maybe<Array<Maybe<IResolversTypes['ResourceData']>>>, ParentType, ContextType, RequireFields<IMutationUpdateOrganizationContextAddResourcesArgs, 'resourcesToAdd'>>;
|
|
1861
|
+
updateOrganizationContextRemoveResources?: Resolver<Maybe<Array<Maybe<IResolversTypes['ResourceData']>>>, ParentType, ContextType, RequireFields<IMutationUpdateOrganizationContextRemoveResourcesArgs, 'resourcesToRemove'>>;
|
|
1862
|
+
updateOrganizationContextUpdateResources?: Resolver<Maybe<Array<Maybe<IResolversTypes['ResourceData']>>>, ParentType, ContextType, RequireFields<IMutationUpdateOrganizationContextUpdateResourcesArgs, 'resourcesToAdd' | 'resourcesToRemove'>>;
|
|
1863
|
+
updateRoleValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateRoleValueArgs, 'key' | 'value'>>;
|
|
1864
|
+
updateSelectedOrgResource?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateSelectedOrgResourceArgs, 'resource'>>;
|
|
1836
1865
|
};
|
|
1837
1866
|
export declare type INodeResolvers<ContextType = any, ParentType extends IResolversParentTypes['Node'] = IResolversParentTypes['Node']> = {
|
|
1838
1867
|
__resolveType: TypeResolveFn<null, ParentType, ContextType>;
|
|
@@ -1959,38 +1988,38 @@ export declare type IPreferencesTypeResolvers<ContextType = any, ParentType exte
|
|
|
1959
1988
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1960
1989
|
};
|
|
1961
1990
|
export declare type IQueryResolvers<ContextType = any, ParentType extends IResolversParentTypes['Query'] = IResolversParentTypes['Query']> = {
|
|
1962
|
-
defaultPermissions?: Resolver<Maybe<Array<Maybe<IResolversTypes['SettingsGroup']>>>, ParentType, ContextType, RequireFields<
|
|
1963
|
-
defaultPolicies?: Resolver<Maybe<Array<Maybe<IResolversTypes['SettingsGroup']>>>, ParentType, ContextType, RequireFields<
|
|
1991
|
+
defaultPermissions?: Resolver<Maybe<Array<Maybe<IResolversTypes['SettingsGroup']>>>, ParentType, ContextType, RequireFields<IQueryDefaultPermissionsArgs, never>>;
|
|
1992
|
+
defaultPolicies?: Resolver<Maybe<Array<Maybe<IResolversTypes['SettingsGroup']>>>, ParentType, ContextType, RequireFields<IQueryDefaultPoliciesArgs, never>>;
|
|
1964
1993
|
defaultPreferences?: Resolver<Maybe<IResolversTypes['PreferencesResponse']>, ParentType, ContextType>;
|
|
1965
1994
|
defaultSetting?: Resolver<Maybe<IResolversTypes['ContributionSettings']>, ParentType, ContextType>;
|
|
1966
|
-
defaultViewerSettingsSubject?: Resolver<IResolversTypes['DefaultSettings'], ParentType, ContextType, RequireFields<
|
|
1995
|
+
defaultViewerSettingsSubject?: Resolver<IResolversTypes['DefaultSettings'], ParentType, ContextType, RequireFields<IQueryDefaultViewerSettingsSubjectArgs, never>>;
|
|
1967
1996
|
dummy?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
1968
|
-
filterIntegrationConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType, RequireFields<
|
|
1969
|
-
getAllIntegrationConfigurations?: Resolver<Maybe<
|
|
1970
|
-
getConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['Configuration']>>>, ParentType, ContextType, RequireFields<
|
|
1997
|
+
filterIntegrationConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType, RequireFields<IQueryFilterIntegrationConfigurationArgs, never>>;
|
|
1998
|
+
getAllIntegrationConfigurations?: Resolver<Maybe<IResolversTypes['IntegrationConfigurationsOutput']>, ParentType, ContextType, RequireFields<IQueryGetAllIntegrationConfigurationsArgs, never>>;
|
|
1999
|
+
getConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['Configuration']>>>, ParentType, ContextType, RequireFields<IQueryGetConfigurationArgs, never>>;
|
|
1971
2000
|
getConfigurationData?: Resolver<Maybe<IResolversTypes['ConfigurationData']>, ParentType, ContextType>;
|
|
1972
|
-
getConfigurationPolicies?: Resolver<Maybe<Array<Maybe<IResolversTypes['ConfigurationPolicy']>>>, ParentType, ContextType, RequireFields<
|
|
1973
|
-
getConfigurationTarget?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType, RequireFields<
|
|
2001
|
+
getConfigurationPolicies?: Resolver<Maybe<Array<Maybe<IResolversTypes['ConfigurationPolicy']>>>, ParentType, ContextType, RequireFields<IQueryGetConfigurationPoliciesArgs, never>>;
|
|
2002
|
+
getConfigurationTarget?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType, RequireFields<IQueryGetConfigurationTargetArgs, never>>;
|
|
1974
2003
|
getContextData?: Resolver<Maybe<IResolversTypes['Context']>, ParentType, ContextType>;
|
|
1975
|
-
getContextProperty?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<
|
|
2004
|
+
getContextProperty?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IQueryGetContextPropertyArgs, never>>;
|
|
1976
2005
|
getContributionRoles?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionRoles']>>>, ParentType, ContextType>;
|
|
1977
2006
|
getEnvironment?: Resolver<Maybe<IResolversTypes['Environment']>, ParentType, ContextType>;
|
|
1978
|
-
getIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegrationConfiguration']>, ParentType, ContextType, RequireFields<
|
|
2007
|
+
getIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegrationConfiguration']>, ParentType, ContextType, RequireFields<IQueryGetIntegrationConfigurationArgs, 'id'>>;
|
|
1979
2008
|
getOrgContext?: Resolver<Maybe<IResolversTypes['Context']>, ParentType, ContextType>;
|
|
1980
2009
|
getOrgNameFromContext?: Resolver<Maybe<IResolversTypes['Context']>, ParentType, ContextType>;
|
|
1981
|
-
getOrganizationConfigValue?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<
|
|
1982
|
-
getOrganizationResourceContext?: Resolver<Maybe<IResolversTypes['OrganizationData']>, ParentType, ContextType, RequireFields<
|
|
1983
|
-
getRole?: Resolver<Maybe<IResolversTypes['AccessRole']>, ParentType, ContextType, RequireFields<
|
|
1984
|
-
getRoles?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccessRole']>>>, ParentType, ContextType, RequireFields<
|
|
1985
|
-
getUserAccessRole?: Resolver<Maybe<IResolversTypes['ResourceAccessRole']>, ParentType, ContextType, RequireFields<
|
|
1986
|
-
getViewerPermissions?: Resolver<Maybe<IResolversTypes['PermissionSubject']>, ParentType, ContextType, RequireFields<
|
|
1987
|
-
getViewerPolicies?: Resolver<Maybe<IResolversTypes['PolicySubject']>, ParentType, ContextType, RequireFields<
|
|
1988
|
-
mergedApplicationPermissions?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionSettings']>>>, ParentType, ContextType, RequireFields<
|
|
1989
|
-
openPreferencesSettings?: Resolver<Maybe<IResolversTypes['PreferencesInput']>, ParentType, ContextType, RequireFields<
|
|
1990
|
-
resolveSettings?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionSettings']>>>, ParentType, ContextType, RequireFields<
|
|
2010
|
+
getOrganizationConfigValue?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IQueryGetOrganizationConfigValueArgs, never>>;
|
|
2011
|
+
getOrganizationResourceContext?: Resolver<Maybe<IResolversTypes['OrganizationData']>, ParentType, ContextType, RequireFields<IQueryGetOrganizationResourceContextArgs, never>>;
|
|
2012
|
+
getRole?: Resolver<Maybe<IResolversTypes['AccessRole']>, ParentType, ContextType, RequireFields<IQueryGetRoleArgs, never>>;
|
|
2013
|
+
getRoles?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccessRole']>>>, ParentType, ContextType, RequireFields<IQueryGetRolesArgs, never>>;
|
|
2014
|
+
getUserAccessRole?: Resolver<Maybe<IResolversTypes['ResourceAccessRole']>, ParentType, ContextType, RequireFields<IQueryGetUserAccessRoleArgs, never>>;
|
|
2015
|
+
getViewerPermissions?: Resolver<Maybe<IResolversTypes['PermissionSubject']>, ParentType, ContextType, RequireFields<IQueryGetViewerPermissionsArgs, never>>;
|
|
2016
|
+
getViewerPolicies?: Resolver<Maybe<IResolversTypes['PolicySubject']>, ParentType, ContextType, RequireFields<IQueryGetViewerPoliciesArgs, 'input'>>;
|
|
2017
|
+
mergedApplicationPermissions?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionSettings']>>>, ParentType, ContextType, RequireFields<IQueryMergedApplicationPermissionsArgs, never>>;
|
|
2018
|
+
openPreferencesSettings?: Resolver<Maybe<IResolversTypes['PreferencesInput']>, ParentType, ContextType, RequireFields<IQueryOpenPreferencesSettingsArgs, never>>;
|
|
2019
|
+
resolveSettings?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionSettings']>>>, ParentType, ContextType, RequireFields<IQueryResolveSettingsArgs, 'uri'>>;
|
|
1991
2020
|
selectedOrgResource?: Resolver<Maybe<IResolversTypes['Context']>, ParentType, ContextType>;
|
|
1992
|
-
viewerPolicies?: Resolver<Maybe<IResolversTypes['PolicySubject']>, ParentType, ContextType, RequireFields<
|
|
1993
|
-
viewerSettings?: Resolver<IResolversTypes['ViewerSettingsSubject'], ParentType, ContextType, RequireFields<
|
|
2021
|
+
viewerPolicies?: Resolver<Maybe<IResolversTypes['PolicySubject']>, ParentType, ContextType, RequireFields<IQueryViewerPoliciesArgs, 'input'>>;
|
|
2022
|
+
viewerSettings?: Resolver<IResolversTypes['ViewerSettingsSubject'], ParentType, ContextType, RequireFields<IQueryViewerSettingsArgs, never>>;
|
|
1994
2023
|
};
|
|
1995
2024
|
export declare type IRangeResolvers<ContextType = any, ParentType extends IResolversParentTypes['Range'] = IResolversParentTypes['Range']> = {
|
|
1996
2025
|
start?: Resolver<Maybe<IResolversTypes['Position']>, ParentType, ContextType>;
|
|
@@ -2079,10 +2108,10 @@ export declare type ISubscriptionResolvers<ContextType = any, ParentType extends
|
|
|
2079
2108
|
export interface ITimeScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Time'], any> {
|
|
2080
2109
|
name: 'Time';
|
|
2081
2110
|
}
|
|
2082
|
-
export interface
|
|
2111
|
+
export interface IUriScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['URI'], any> {
|
|
2083
2112
|
name: 'URI';
|
|
2084
2113
|
}
|
|
2085
|
-
export interface
|
|
2114
|
+
export interface IUriInputScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['URIInput'], any> {
|
|
2086
2115
|
name: 'URIInput';
|
|
2087
2116
|
}
|
|
2088
2117
|
export declare type IUserConfigurationResolvers<ContextType = any, ParentType extends IResolversParentTypes['UserConfiguration'] = IResolversParentTypes['UserConfiguration']> = {
|
|
@@ -2144,6 +2173,7 @@ export declare type IResolvers<ContextType = any> = {
|
|
|
2144
2173
|
ISettingsSubject?: IISettingsSubjectResolvers<ContextType>;
|
|
2145
2174
|
IntegraitonConfigurationId?: IIntegraitonConfigurationIdResolvers<ContextType>;
|
|
2146
2175
|
IntegrationConfiguration?: IIntegrationConfigurationResolvers<ContextType>;
|
|
2176
|
+
IntegrationConfigurationsOutput?: IIntegrationConfigurationsOutputResolvers<ContextType>;
|
|
2147
2177
|
JSON?: GraphQLScalarType;
|
|
2148
2178
|
JSONObject?: GraphQLScalarType;
|
|
2149
2179
|
MachineConfiguration?: IMachineConfigurationResolvers<ContextType>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"generated-models.js","sourceRoot":"","sources":["../../../src/interfaces/generated/generated-models.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,GAAG,EAAE,MAAM,gBAAgB,CAAC;AACrC,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAOzC,MAAM,cAAc,GAAI,EAAE,CAAA;AAsDzB,CAAC;AA4BD,CAAC;AAeD,CAAC;AAiED,CAAC;AAaD,CAAC;AA+JD,CAAC;
|
|
1
|
+
{"version":3,"file":"generated-models.js","sourceRoot":"","sources":["../../../src/interfaces/generated/generated-models.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,GAAG,EAAE,MAAM,gBAAgB,CAAC;AACrC,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAOzC,MAAM,cAAc,GAAI,EAAE,CAAA;AAsDzB,CAAC;AA4BD,CAAC;AAeD,CAAC;AAiED,CAAC;AAaD,CAAC;AA+JD,CAAC;AAkaD,CAAC;AAyGD,CAAC;AAMD,CAAC;AAgBD,CAAC;AA6BD,CAAC;AAwTD,CAAC;AA2DD,CAAC;AAqIF,MAAM,CAAC,MAAM,2BAA2B,GAAG,GAAG,CAAA;;;;KAIzC,CAAC;AACN,MAAM,CAAC,MAAM,6BAA6B,GAAG,GAAG,CAAA;;;;;;MAM1C,2BAA2B,EAAE,CAAC;AAEpC;;;;;;;;;;;;;;GAcG;AACH,MAAM,UAAU,6BAA6B,CAAC,WAAwG;IAC9I,MAAM,OAAO,mCAAO,cAAc,GAAK,WAAW,CAAC,CAAA;IACnD,OAAO,MAAM,CAAC,QAAQ,CAAoE,6BAA6B,EAAE,OAAO,CAAC,CAAC;AACpI,CAAC;AACP,MAAM,UAAU,iCAAiC,CAAC,WAA4G;IACpJ,MAAM,OAAO,mCAAO,cAAc,GAAK,WAAW,CAAC,CAAA;IACnD,OAAO,MAAM,CAAC,YAAY,CAAoE,6BAA6B,EAAE,OAAO,CAAC,CAAC;AACxI,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@admin-layout/client",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.32",
|
|
4
4
|
"description": "Sample client for higher packages to depend on",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"author": "CDMBase LLC",
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"typescript": {
|
|
35
35
|
"definition": "lib/index.d.ts"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "a4b27dacb5da0b59d96bbf8d8e60a8dff8232392"
|
|
38
38
|
}
|
package/lib/config/config.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"config.js","sourceRoot":"","sources":["../../src/config/config.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,SAAS,CAAC;AAEnC,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAEpD,MAAM,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC;AACzB,MAAM,GAAG,GAAI,OAAe,CAAC,OAAO,IAAI,OAAO,CAAC,GAAG,CAAC;AAEpD,MAAM,CAAC,MAAM,MAAM,GAAG,OAAO,CAAC,QAAQ,CAAC,GAAG,EAAE;IACxC,eAAe,EAAE,IAAI,CAAkB;QACnC,OAAO,EAAE,IAAI,CAAC,SAAS,CAAC,eAAe,CAAQ;KAClD,CAAC;CACL,CAAC,CAAC"}
|