@adminide-stack/core 3.1.2-alpha.91 → 3.1.2-alpha.97
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.
@@ -43,7 +43,7 @@ export declare type Scalars = {
|
|
43
43
|
URI: URI;
|
44
44
|
URIInput: URI | UriComponents;
|
45
45
|
};
|
46
|
-
export declare type IAccessRole = IDefaultRole | IOrganizationRole | IResourceRole |
|
46
|
+
export declare type IAccessRole = IDefaultRole | IOrganizationRole | IResourceRole | IApplicationRole;
|
47
47
|
/** An access token that grants to the holder the privileges of the user who created it. */
|
48
48
|
export declare type IAccessToken = INode & {
|
49
49
|
__typename?: 'AccessToken';
|
@@ -252,8 +252,8 @@ export declare type IApplicationPolicy = IIConfigurationModel & {
|
|
252
252
|
keys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
253
253
|
overrides?: Maybe<Array<Maybe<IOverrides>>>;
|
254
254
|
};
|
255
|
-
export declare type
|
256
|
-
__typename?: '
|
255
|
+
export declare type IApplicationRole = IIConfigurationModel & {
|
256
|
+
__typename?: 'ApplicationRole';
|
257
257
|
resource?: Maybe<Scalars['URI']>;
|
258
258
|
target?: Maybe<Scalars['Int']>;
|
259
259
|
contents?: Maybe<Scalars['AnyObject']>;
|
@@ -278,6 +278,8 @@ export declare enum IApplicationRoles {
|
|
278
278
|
ProjectViewer = "PROJECT_VIEWER",
|
279
279
|
TeamMaintainer = "TEAM_MAINTAINER",
|
280
280
|
TeamMember = "TEAM_MEMBER",
|
281
|
+
/** Role is unknown */
|
282
|
+
Unknown = "UNKNOWN",
|
281
283
|
/** User who is logged in */
|
282
284
|
User = "USER"
|
283
285
|
}
|
@@ -591,7 +593,7 @@ export declare type ICityUpdateInput = {
|
|
591
593
|
export declare enum IClientCacheTypeNames {
|
592
594
|
ApplicationConfiguration = "ApplicationConfiguration",
|
593
595
|
ApplicationPolicy = "ApplicationPolicy",
|
594
|
-
|
596
|
+
ApplicationRole = "ApplicationRole",
|
595
597
|
Configuration = "Configuration",
|
596
598
|
Context = "Context",
|
597
599
|
ContextKeyService = "ContextKeyService",
|
@@ -1691,7 +1693,7 @@ export declare type IOrgMember = {
|
|
1691
1693
|
_id?: Maybe<Scalars['String']>;
|
1692
1694
|
userId?: Maybe<Scalars['String']>;
|
1693
1695
|
role?: Maybe<IApplicationRoles>;
|
1694
|
-
user:
|
1696
|
+
user: IUserAccount;
|
1695
1697
|
isSelf?: Maybe<Scalars['Boolean']>;
|
1696
1698
|
inactive?: Maybe<Scalars['Boolean']>;
|
1697
1699
|
name?: Maybe<Scalars['String']>;
|
@@ -1714,21 +1716,10 @@ export declare type IOrgUser = IIOrgUser & {
|
|
1714
1716
|
role?: Maybe<IApplicationRoles>;
|
1715
1717
|
inactive?: Maybe<Scalars['Boolean']>;
|
1716
1718
|
orgName: Scalars['String'];
|
1717
|
-
user:
|
1719
|
+
user: IUserAccount;
|
1718
1720
|
isSelf: Scalars['Boolean'];
|
1719
1721
|
crossCheckEmail?: Maybe<Scalars['String']>;
|
1720
1722
|
};
|
1721
|
-
/** Do not use it, it is deprected, use `UserAccount` instead */
|
1722
|
-
export declare type IOrgUserAccount = INode & {
|
1723
|
-
__typename?: 'OrgUserAccount';
|
1724
|
-
id: Scalars['ID'];
|
1725
|
-
email?: Maybe<Scalars['String']>;
|
1726
|
-
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1727
|
-
username?: Maybe<Scalars['String']>;
|
1728
|
-
emailVerified?: Maybe<Scalars['Boolean']>;
|
1729
|
-
familyName?: Maybe<Scalars['String']>;
|
1730
|
-
givenName?: Maybe<Scalars['String']>;
|
1731
|
-
};
|
1732
1723
|
export declare type IOrgUserInput = {
|
1733
1724
|
userId?: Maybe<Scalars['String']>;
|
1734
1725
|
role?: Maybe<IApplicationRoles>;
|
@@ -2848,6 +2839,10 @@ export declare type ITerritorialStateUpdateInput = {
|
|
2848
2839
|
name?: Maybe<Scalars['String']>;
|
2849
2840
|
country: Scalars['Int'];
|
2850
2841
|
};
|
2842
|
+
export declare enum ITokenTypesEnum {
|
2843
|
+
EmailVerification = "EMAIL_VERIFICATION",
|
2844
|
+
PasswordReset = "PASSWORD_RESET"
|
2845
|
+
}
|
2851
2846
|
/**
|
2852
2847
|
* The User Account.
|
2853
2848
|
*
|
@@ -2860,8 +2855,8 @@ export declare type ITerritorialStateUpdateInput = {
|
|
2860
2855
|
* @property
|
2861
2856
|
* featureFlags: Any super power given to the user via a super user
|
2862
2857
|
* @property
|
2863
|
-
*
|
2864
|
-
* More than one will exists
|
2858
|
+
* tokens: An array of objects with information about the user's tokens.
|
2859
|
+
* More than one will exists.
|
2865
2860
|
* @property
|
2866
2861
|
* inactive: true if the user is not currently being billed for service.
|
2867
2862
|
* @property
|
@@ -2869,10 +2864,6 @@ export declare type ITerritorialStateUpdateInput = {
|
|
2869
2864
|
* @property
|
2870
2865
|
* userOgs: the orgs and roles for this user on each.
|
2871
2866
|
*/
|
2872
|
-
export declare enum ITokenTypesEnum {
|
2873
|
-
EmailVerification = "EMAIL_VERIFICATION",
|
2874
|
-
PasswordReset = "PASSWORD_RESET"
|
2875
|
-
}
|
2876
2867
|
export declare type IUserAccount = INode & {
|
2877
2868
|
__typename?: 'UserAccount';
|
2878
2869
|
/**
|
@@ -2893,6 +2884,27 @@ export declare type IUserAccount = INode & {
|
|
2893
2884
|
tokens?: Maybe<Array<Maybe<IUserToken>>>;
|
2894
2885
|
username?: Maybe<Scalars['String']>;
|
2895
2886
|
};
|
2887
|
+
/**
|
2888
|
+
* The User Account.
|
2889
|
+
*
|
2890
|
+
* @property
|
2891
|
+
* id: User ID
|
2892
|
+
* @property
|
2893
|
+
* email: The user email
|
2894
|
+
* @property
|
2895
|
+
* emailVerified: ture if email is verified, otherwise false
|
2896
|
+
* @property
|
2897
|
+
* featureFlags: Any super power given to the user via a super user
|
2898
|
+
* @property
|
2899
|
+
* tokens: An array of objects with information about the user's tokens.
|
2900
|
+
* More than one will exists.
|
2901
|
+
* @property
|
2902
|
+
* inactive: true if the user is not currently being billed for service.
|
2903
|
+
* @property
|
2904
|
+
* isBillingLeader: true if user is BillingLeader
|
2905
|
+
* @property
|
2906
|
+
* userOgs: the orgs and roles for this user on each.
|
2907
|
+
*/
|
2896
2908
|
export declare type IUserAccountAccessTokensArgs = {
|
2897
2909
|
first?: Maybe<Scalars['Int']>;
|
2898
2910
|
last?: Maybe<Scalars['Int']>;
|
@@ -3545,8 +3557,8 @@ export declare type IGetOrganizationMembersWithNameQuery = ({
|
|
3545
3557
|
__typename?: 'OrgUser';
|
3546
3558
|
} & Pick<IOrgUser, 'userId' | 'inactive' | 'crossCheckEmail' | 'role'> & {
|
3547
3559
|
user: ({
|
3548
|
-
__typename?: '
|
3549
|
-
} & Pick<
|
3560
|
+
__typename?: 'UserAccount';
|
3561
|
+
} & Pick<IUserAccount, 'alias' | 'email' | 'username' | 'emailVerified' | 'familyName' | 'givenName'>);
|
3550
3562
|
})>>>;
|
3551
3563
|
})>;
|
3552
3564
|
});
|
@@ -3667,8 +3679,8 @@ export declare type IGetOrganizationMembersQuery = ({
|
|
3667
3679
|
__typename?: 'OrgMember';
|
3668
3680
|
} & Pick<IOrgMember, 'userId' | 'isSelf' | 'role' | 'name' | 'email' | 'teamNames' | 'crossCheckEmail'> & {
|
3669
3681
|
user: ({
|
3670
|
-
__typename?: '
|
3671
|
-
} & Pick<
|
3682
|
+
__typename?: 'UserAccount';
|
3683
|
+
} & Pick<IUserAccount, 'familyName' | 'givenName' | 'alias' | 'email'>);
|
3672
3684
|
})>>>;
|
3673
3685
|
})>;
|
3674
3686
|
});
|
@@ -3857,9 +3869,9 @@ declare type IConfiguration_ApplicationPolicy_Fragment = ({
|
|
3857
3869
|
__typename?: 'Overrides';
|
3858
3870
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
3859
3871
|
});
|
3860
|
-
declare type
|
3861
|
-
__typename: '
|
3862
|
-
} & Pick<
|
3872
|
+
declare type IConfiguration_ApplicationRole_Fragment = ({
|
3873
|
+
__typename: 'ApplicationRole';
|
3874
|
+
} & Pick<IApplicationRole, 'resource' | 'target' | 'contents' | 'keys'> & {
|
3863
3875
|
overrides?: Maybe<Array<Maybe<({
|
3864
3876
|
__typename?: 'Overrides';
|
3865
3877
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
@@ -3948,7 +3960,7 @@ declare type IConfiguration_UserConfiguration_Fragment = ({
|
|
3948
3960
|
__typename?: 'Overrides';
|
3949
3961
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
3950
3962
|
});
|
3951
|
-
export declare type IConfigurationFragment = IConfiguration_ApplicationConfiguration_Fragment | IConfiguration_ApplicationPolicy_Fragment |
|
3963
|
+
export declare type IConfigurationFragment = IConfiguration_ApplicationConfiguration_Fragment | IConfiguration_ApplicationPolicy_Fragment | IConfiguration_ApplicationRole_Fragment | IConfiguration_DefaultConfiguration_Fragment | IConfiguration_DefaultPolicy_Fragment | IConfiguration_DefaultRole_Fragment | IConfiguration_MachineConfiguration_Fragment | IConfiguration_OrganizationConfiguration_Fragment | IConfiguration_OrganizationPolicy_Fragment | IConfiguration_OrganizationResourceConfiguration_Fragment | IConfiguration_OrganizationRole_Fragment | IConfiguration_PolicyConfiguration_Fragment | IConfiguration_ResourcePolicy_Fragment | IConfiguration_ResourceRole_Fragment | IConfiguration_UserConfiguration_Fragment;
|
3952
3964
|
export declare type IContextConfigurationFragment = ({
|
3953
3965
|
__typename?: 'OrganizationData';
|
3954
3966
|
} & Pick<IOrganizationData, 'id' | 'name' | 'configuration'> & {
|
@@ -4079,8 +4091,8 @@ export declare type IGetApplicationRoleQuery = ({
|
|
4079
4091
|
} | {
|
4080
4092
|
__typename?: 'ResourceRole';
|
4081
4093
|
} | ({
|
4082
|
-
__typename?: '
|
4083
|
-
} &
|
4094
|
+
__typename?: 'ApplicationRole';
|
4095
|
+
} & IConfiguration_ApplicationRole_Fragment)>>>;
|
4084
4096
|
});
|
4085
4097
|
export declare type IDefaultResolveSettingsQueryVariables = Exact<{
|
4086
4098
|
uri: Scalars['URI'];
|
@@ -4164,7 +4176,7 @@ export declare type IGetDefaultRoleQuery = ({
|
|
4164
4176
|
} | {
|
4165
4177
|
__typename?: 'ResourceRole';
|
4166
4178
|
} | {
|
4167
|
-
__typename?: '
|
4179
|
+
__typename?: 'ApplicationRole';
|
4168
4180
|
}>>>;
|
4169
4181
|
});
|
4170
4182
|
export declare type IGetTeamContextQueryVariables = Exact<{
|
@@ -4203,7 +4215,7 @@ export declare type IGetUserAccessRoleQuery = ({
|
|
4203
4215
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
4204
4216
|
__typename?: 'ResourceRole';
|
4205
4217
|
} & IConfiguration_ResourceRole_Fragment) | {
|
4206
|
-
__typename?: '
|
4218
|
+
__typename?: 'ApplicationRole';
|
4207
4219
|
}>>>;
|
4208
4220
|
resourceUserRoles?: Maybe<Array<Maybe<({
|
4209
4221
|
__typename?: 'ResourceUser';
|
@@ -4273,7 +4285,7 @@ export declare type IGetOrgRoleQuery = ({
|
|
4273
4285
|
} & IConfiguration_OrganizationRole_Fragment) | {
|
4274
4286
|
__typename?: 'ResourceRole';
|
4275
4287
|
} | {
|
4276
|
-
__typename?: '
|
4288
|
+
__typename?: 'ApplicationRole';
|
4277
4289
|
}>>>;
|
4278
4290
|
});
|
4279
4291
|
export declare type IGetOrgWithResourcesPolicyQueryVariables = Exact<{
|
@@ -4304,9 +4316,9 @@ export declare type IGetOrgWithResourcesRoleQuery = ({
|
|
4304
4316
|
__typename?: 'OrganizationRole';
|
4305
4317
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
4306
4318
|
__typename?: 'ResourceRole';
|
4307
|
-
} & IConfiguration_ResourceRole_Fragment) | {
|
4308
|
-
__typename?: '
|
4309
|
-
}>>>;
|
4319
|
+
} & IConfiguration_ResourceRole_Fragment) | ({
|
4320
|
+
__typename?: 'ApplicationRole';
|
4321
|
+
} & IConfiguration_ApplicationRole_Fragment)>>>;
|
4310
4322
|
});
|
4311
4323
|
export declare type IResolveConfigurationQueryVariables = Exact<{
|
4312
4324
|
input: IPreferencesInputInput;
|
@@ -4433,7 +4445,7 @@ export declare type IGetRoleQuery = ({
|
|
4433
4445
|
} & Pick<IOrganizationRole, 'contents' | 'keys'>) | {
|
4434
4446
|
__typename?: 'ResourceRole';
|
4435
4447
|
} | {
|
4436
|
-
__typename?: '
|
4448
|
+
__typename?: 'ApplicationRole';
|
4437
4449
|
}>;
|
4438
4450
|
});
|
4439
4451
|
export declare type IGetOrgWithResourcesConfigurationQueryVariables = Exact<{
|
@@ -4648,8 +4660,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4648
4660
|
} & IConfiguration_ApplicationConfiguration_Fragment) | ({
|
4649
4661
|
__typename?: 'ApplicationPolicy';
|
4650
4662
|
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4651
|
-
__typename?: '
|
4652
|
-
} &
|
4663
|
+
__typename?: 'ApplicationRole';
|
4664
|
+
} & IConfiguration_ApplicationRole_Fragment) | ({
|
4653
4665
|
__typename?: 'DefaultConfiguration';
|
4654
4666
|
} & IConfiguration_DefaultConfiguration_Fragment) | ({
|
4655
4667
|
__typename?: 'DefaultPolicy';
|
@@ -4679,8 +4691,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4679
4691
|
} & IConfiguration_ApplicationConfiguration_Fragment) | ({
|
4680
4692
|
__typename?: 'ApplicationPolicy';
|
4681
4693
|
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4682
|
-
__typename?: '
|
4683
|
-
} &
|
4694
|
+
__typename?: 'ApplicationRole';
|
4695
|
+
} & IConfiguration_ApplicationRole_Fragment) | ({
|
4684
4696
|
__typename?: 'DefaultConfiguration';
|
4685
4697
|
} & IConfiguration_DefaultConfiguration_Fragment) | ({
|
4686
4698
|
__typename?: 'DefaultPolicy';
|
@@ -4710,8 +4722,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4710
4722
|
} & IConfiguration_ApplicationConfiguration_Fragment) | ({
|
4711
4723
|
__typename?: 'ApplicationPolicy';
|
4712
4724
|
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4713
|
-
__typename?: '
|
4714
|
-
} &
|
4725
|
+
__typename?: 'ApplicationRole';
|
4726
|
+
} & IConfiguration_ApplicationRole_Fragment) | ({
|
4715
4727
|
__typename?: 'DefaultConfiguration';
|
4716
4728
|
} & IConfiguration_DefaultConfiguration_Fragment) | ({
|
4717
4729
|
__typename?: 'DefaultPolicy';
|
@@ -4741,8 +4753,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4741
4753
|
} & IConfiguration_ApplicationConfiguration_Fragment) | ({
|
4742
4754
|
__typename?: 'ApplicationPolicy';
|
4743
4755
|
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4744
|
-
__typename?: '
|
4745
|
-
} &
|
4756
|
+
__typename?: 'ApplicationRole';
|
4757
|
+
} & IConfiguration_ApplicationRole_Fragment) | ({
|
4746
4758
|
__typename?: 'DefaultConfiguration';
|
4747
4759
|
} & IConfiguration_DefaultConfiguration_Fragment) | ({
|
4748
4760
|
__typename?: 'DefaultPolicy';
|
@@ -4772,8 +4784,8 @@ export declare type IGetConfigurationDataQuery = ({
|
|
4772
4784
|
} & IConfiguration_ApplicationConfiguration_Fragment) | ({
|
4773
4785
|
__typename?: 'ApplicationPolicy';
|
4774
4786
|
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4775
|
-
__typename?: '
|
4776
|
-
} &
|
4787
|
+
__typename?: 'ApplicationRole';
|
4788
|
+
} & IConfiguration_ApplicationRole_Fragment) | ({
|
4777
4789
|
__typename?: 'DefaultConfiguration';
|
4778
4790
|
} & IConfiguration_DefaultConfiguration_Fragment) | ({
|
4779
4791
|
__typename?: 'DefaultPolicy';
|
@@ -7590,7 +7602,7 @@ export declare type NextResolverFn<T> = () => Promise<T>;
|
|
7590
7602
|
export declare type DirectiveResolverFn<TResult = {}, TParent = {}, TContext = {}, TArgs = {}> = (next: NextResolverFn<TResult>, parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => TResult | Promise<TResult>;
|
7591
7603
|
/** Mapping between all available schema types and the resolvers types */
|
7592
7604
|
export declare type IResolversTypes = {
|
7593
|
-
AccessRole: IResolversTypes['DefaultRole'] | IResolversTypes['OrganizationRole'] | IResolversTypes['ResourceRole'] | IResolversTypes['
|
7605
|
+
AccessRole: IResolversTypes['DefaultRole'] | IResolversTypes['OrganizationRole'] | IResolversTypes['ResourceRole'] | IResolversTypes['ApplicationRole'];
|
7594
7606
|
AccessToken: ResolverTypeWrapper<IAccessToken>;
|
7595
7607
|
ID: ResolverTypeWrapper<Scalars['ID']>;
|
7596
7608
|
String: ResolverTypeWrapper<Scalars['String']>;
|
@@ -7608,7 +7620,7 @@ export declare type IResolversTypes = {
|
|
7608
7620
|
ApplicationBillingPlanPolicy: IApplicationBillingPlanPolicy;
|
7609
7621
|
ApplicationConfiguration: ResolverTypeWrapper<IApplicationConfiguration>;
|
7610
7622
|
ApplicationPolicy: ResolverTypeWrapper<IApplicationPolicy>;
|
7611
|
-
|
7623
|
+
ApplicationRole: ResolverTypeWrapper<IApplicationRole>;
|
7612
7624
|
ApplicationRoles: IApplicationRoles;
|
7613
7625
|
ApplicationSettings: ResolverTypeWrapper<IApplicationSettings>;
|
7614
7626
|
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
@@ -7677,7 +7689,7 @@ export declare type IResolversTypes = {
|
|
7677
7689
|
IAuth0User: IResolversTypes['UserProfile'];
|
7678
7690
|
IAuth0UserProfile: IResolversTypes['UserProfile'];
|
7679
7691
|
ICity: never;
|
7680
|
-
IConfigurationModel: IResolversTypes['ApplicationConfiguration'] | IResolversTypes['ApplicationPolicy'] | IResolversTypes['
|
7692
|
+
IConfigurationModel: IResolversTypes['ApplicationConfiguration'] | IResolversTypes['ApplicationPolicy'] | IResolversTypes['ApplicationRole'] | IResolversTypes['DefaultConfiguration'] | IResolversTypes['DefaultPolicy'] | IResolversTypes['DefaultRole'] | IResolversTypes['MachineConfiguration'] | IResolversTypes['OrganizationConfiguration'] | IResolversTypes['OrganizationPolicy'] | IResolversTypes['OrganizationResourceConfiguration'] | IResolversTypes['OrganizationRole'] | IResolversTypes['PolicyConfiguration'] | IResolversTypes['ResourcePolicy'] | IResolversTypes['ResourceRole'] | IResolversTypes['UserConfiguration'];
|
7681
7693
|
IConfigurationService: never;
|
7682
7694
|
ICountry: never;
|
7683
7695
|
IEventWithContext: IResolversTypes['OrganizationCreatedEvent'] | IResolversTypes['OrganizationDeletedEvent'];
|
@@ -7714,7 +7726,7 @@ export declare type IResolversTypes = {
|
|
7714
7726
|
MenuPosition: IMenuPosition;
|
7715
7727
|
MoleculerServiceName: IMoleculerServiceName;
|
7716
7728
|
Mutation: ResolverTypeWrapper<{}>;
|
7717
|
-
Node: IResolversTypes['AccessToken'] | IResolversTypes['ApiExternalAccount'] | IResolversTypes['ApiManagement'] | IResolversTypes['
|
7729
|
+
Node: IResolversTypes['AccessToken'] | IResolversTypes['ApiExternalAccount'] | IResolversTypes['ApiManagement'] | IResolversTypes['UserAccount'];
|
7718
7730
|
Observable: ResolverTypeWrapper<Scalars['Observable']>;
|
7719
7731
|
OrgDetailWhere: IOrgDetailWhere;
|
7720
7732
|
OrgInvitationMembers: ResolverTypeWrapper<IOrgInvitationMembers>;
|
@@ -7722,7 +7734,6 @@ export declare type IResolversTypes = {
|
|
7722
7734
|
OrgMembersOutput: ResolverTypeWrapper<IOrgMembersOutput>;
|
7723
7735
|
OrgType: IOrgType;
|
7724
7736
|
OrgUser: ResolverTypeWrapper<IOrgUser>;
|
7725
|
-
OrgUserAccount: ResolverTypeWrapper<IOrgUserAccount>;
|
7726
7737
|
OrgUserInput: IOrgUserInput;
|
7727
7738
|
OrgUserRole: IOrgUserRole;
|
7728
7739
|
OrgainizationInvitationRole: IOrgainizationInvitationRole;
|
@@ -7877,7 +7888,7 @@ export declare type IResolversTypes = {
|
|
7877
7888
|
};
|
7878
7889
|
/** Mapping between all available schema types and the resolvers parents */
|
7879
7890
|
export declare type IResolversParentTypes = {
|
7880
|
-
AccessRole: IResolversParentTypes['DefaultRole'] | IResolversParentTypes['OrganizationRole'] | IResolversParentTypes['ResourceRole'] | IResolversParentTypes['
|
7891
|
+
AccessRole: IResolversParentTypes['DefaultRole'] | IResolversParentTypes['OrganizationRole'] | IResolversParentTypes['ResourceRole'] | IResolversParentTypes['ApplicationRole'];
|
7881
7892
|
AccessToken: IAccessToken;
|
7882
7893
|
ID: Scalars['ID'];
|
7883
7894
|
String: Scalars['String'];
|
@@ -7893,7 +7904,7 @@ export declare type IResolversParentTypes = {
|
|
7893
7904
|
ApiManagement_Input: IApiManagement_Input;
|
7894
7905
|
ApplicationConfiguration: IApplicationConfiguration;
|
7895
7906
|
ApplicationPolicy: IApplicationPolicy;
|
7896
|
-
|
7907
|
+
ApplicationRole: IApplicationRole;
|
7897
7908
|
ApplicationSettings: IApplicationSettings;
|
7898
7909
|
Boolean: Scalars['Boolean'];
|
7899
7910
|
Auth0Identity: IAuth0Identity;
|
@@ -7946,7 +7957,7 @@ export declare type IResolversParentTypes = {
|
|
7946
7957
|
IAuth0User: IResolversParentTypes['UserProfile'];
|
7947
7958
|
IAuth0UserProfile: IResolversParentTypes['UserProfile'];
|
7948
7959
|
ICity: never;
|
7949
|
-
IConfigurationModel: IResolversParentTypes['ApplicationConfiguration'] | IResolversParentTypes['ApplicationPolicy'] | IResolversParentTypes['
|
7960
|
+
IConfigurationModel: IResolversParentTypes['ApplicationConfiguration'] | IResolversParentTypes['ApplicationPolicy'] | IResolversParentTypes['ApplicationRole'] | IResolversParentTypes['DefaultConfiguration'] | IResolversParentTypes['DefaultPolicy'] | IResolversParentTypes['DefaultRole'] | IResolversParentTypes['MachineConfiguration'] | IResolversParentTypes['OrganizationConfiguration'] | IResolversParentTypes['OrganizationPolicy'] | IResolversParentTypes['OrganizationResourceConfiguration'] | IResolversParentTypes['OrganizationRole'] | IResolversParentTypes['PolicyConfiguration'] | IResolversParentTypes['ResourcePolicy'] | IResolversParentTypes['ResourceRole'] | IResolversParentTypes['UserConfiguration'];
|
7950
7961
|
IConfigurationService: never;
|
7951
7962
|
ICountry: never;
|
7952
7963
|
IEventWithContext: IResolversParentTypes['OrganizationCreatedEvent'] | IResolversParentTypes['OrganizationDeletedEvent'];
|
@@ -7978,7 +7989,7 @@ export declare type IResolversParentTypes = {
|
|
7978
7989
|
MemorySettings: IMemorySettings;
|
7979
7990
|
MenuItem: IMenuItem;
|
7980
7991
|
Mutation: {};
|
7981
|
-
Node: IResolversParentTypes['AccessToken'] | IResolversParentTypes['ApiExternalAccount'] | IResolversParentTypes['ApiManagement'] | IResolversParentTypes['
|
7992
|
+
Node: IResolversParentTypes['AccessToken'] | IResolversParentTypes['ApiExternalAccount'] | IResolversParentTypes['ApiManagement'] | IResolversParentTypes['UserAccount'];
|
7982
7993
|
Observable: Scalars['Observable'];
|
7983
7994
|
OrgDetailWhere: IOrgDetailWhere;
|
7984
7995
|
OrgInvitationMembers: IOrgInvitationMembers;
|
@@ -7986,7 +7997,6 @@ export declare type IResolversParentTypes = {
|
|
7986
7997
|
OrgMembersOutput: IOrgMembersOutput;
|
7987
7998
|
OrgType: IOrgType;
|
7988
7999
|
OrgUser: IOrgUser;
|
7989
|
-
OrgUserAccount: IOrgUserAccount;
|
7990
8000
|
OrgUserInput: IOrgUserInput;
|
7991
8001
|
Organization: IOrganization;
|
7992
8002
|
OrganizationConfigValueInput: IOrganizationConfigValueInput;
|
@@ -8134,7 +8144,7 @@ export declare type IIsAuthenticatedDirectiveResolver<Result, Parent, ContextTyp
|
|
8134
8144
|
export declare type IProfileDirectiveArgs = {};
|
8135
8145
|
export declare type IProfileDirectiveResolver<Result, Parent, ContextType = MyContext, Args = IProfileDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
8136
8146
|
export declare type IAccessRoleResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AccessRole'] = IResolversParentTypes['AccessRole']> = {
|
8137
|
-
__resolveType: TypeResolveFn<'DefaultRole' | 'OrganizationRole' | 'ResourceRole' | '
|
8147
|
+
__resolveType: TypeResolveFn<'DefaultRole' | 'OrganizationRole' | 'ResourceRole' | 'ApplicationRole', ParentType, ContextType>;
|
8138
8148
|
};
|
8139
8149
|
export declare type IAccessTokenResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AccessToken'] = IResolversParentTypes['AccessToken']> = {
|
8140
8150
|
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
@@ -8210,7 +8220,7 @@ export declare type IApplicationPolicyResolvers<ContextType = MyContext, ParentT
|
|
8210
8220
|
overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
|
8211
8221
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8212
8222
|
};
|
8213
|
-
export declare type
|
8223
|
+
export declare type IApplicationRoleResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ApplicationRole'] = IResolversParentTypes['ApplicationRole']> = {
|
8214
8224
|
resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
8215
8225
|
target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
8216
8226
|
contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
@@ -8582,7 +8592,7 @@ export declare type IICityResolvers<ContextType = MyContext, ParentType extends
|
|
8582
8592
|
updatedAt?: Resolver<Maybe<IResolversTypes['Date']>, ParentType, ContextType>;
|
8583
8593
|
};
|
8584
8594
|
export declare type IIConfigurationModelResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IConfigurationModel'] = IResolversParentTypes['IConfigurationModel']> = {
|
8585
|
-
__resolveType: TypeResolveFn<'ApplicationConfiguration' | 'ApplicationPolicy' | '
|
8595
|
+
__resolveType: TypeResolveFn<'ApplicationConfiguration' | 'ApplicationPolicy' | 'ApplicationRole' | 'DefaultConfiguration' | 'DefaultPolicy' | 'DefaultRole' | 'MachineConfiguration' | 'OrganizationConfiguration' | 'OrganizationPolicy' | 'OrganizationResourceConfiguration' | 'OrganizationRole' | 'PolicyConfiguration' | 'ResourcePolicy' | 'ResourceRole' | 'UserConfiguration', ParentType, ContextType>;
|
8586
8596
|
resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
8587
8597
|
target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
8588
8598
|
contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
@@ -8829,7 +8839,7 @@ export declare type IMutationResolvers<ContextType = MyContext, ParentType exten
|
|
8829
8839
|
validateUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationValidateUserEmailVerificationTokenArgs, 'code'>>;
|
8830
8840
|
};
|
8831
8841
|
export declare type INodeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Node'] = IResolversParentTypes['Node']> = {
|
8832
|
-
__resolveType: TypeResolveFn<'AccessToken' | 'ApiExternalAccount' | 'ApiManagement' | '
|
8842
|
+
__resolveType: TypeResolveFn<'AccessToken' | 'ApiExternalAccount' | 'ApiManagement' | 'UserAccount', ParentType, ContextType>;
|
8833
8843
|
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
8834
8844
|
};
|
8835
8845
|
export interface IObservableScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Observable'], any> {
|
@@ -8844,7 +8854,7 @@ export declare type IOrgMemberResolvers<ContextType = MyContext, ParentType exte
|
|
8844
8854
|
_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8845
8855
|
userId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8846
8856
|
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
8847
|
-
user?: Resolver<IResolversTypes['
|
8857
|
+
user?: Resolver<IResolversTypes['UserAccount'], ParentType, ContextType>;
|
8848
8858
|
isSelf?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8849
8859
|
inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8850
8860
|
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -8863,21 +8873,11 @@ export declare type IOrgUserResolvers<ContextType = MyContext, ParentType extend
|
|
8863
8873
|
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
8864
8874
|
inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8865
8875
|
orgName?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
8866
|
-
user?: Resolver<IResolversTypes['
|
8876
|
+
user?: Resolver<IResolversTypes['UserAccount'], ParentType, ContextType>;
|
8867
8877
|
isSelf?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
8868
8878
|
crossCheckEmail?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8869
8879
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8870
8880
|
};
|
8871
|
-
export declare type IOrgUserAccountResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrgUserAccount'] = IResolversParentTypes['OrgUserAccount']> = {
|
8872
|
-
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
8873
|
-
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8874
|
-
alias?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
8875
|
-
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8876
|
-
emailVerified?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8877
|
-
familyName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8878
|
-
givenName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8879
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8880
|
-
};
|
8881
8881
|
export declare type IOrganizationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Organization'] = IResolversParentTypes['Organization']> = {
|
8882
8882
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
8883
8883
|
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -9574,7 +9574,7 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9574
9574
|
ApiManagement?: IApiManagementResolvers<ContextType>;
|
9575
9575
|
ApplicationConfiguration?: IApplicationConfigurationResolvers<ContextType>;
|
9576
9576
|
ApplicationPolicy?: IApplicationPolicyResolvers<ContextType>;
|
9577
|
-
|
9577
|
+
ApplicationRole?: IApplicationRoleResolvers<ContextType>;
|
9578
9578
|
ApplicationSettings?: IApplicationSettingsResolvers<ContextType>;
|
9579
9579
|
Auth0Identity?: IAuth0IdentityResolvers<ContextType>;
|
9580
9580
|
Auth0IdentityProfileData?: IAuth0IdentityProfileDataResolvers<ContextType>;
|
@@ -9649,7 +9649,6 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9649
9649
|
OrgMember?: IOrgMemberResolvers<ContextType>;
|
9650
9650
|
OrgMembersOutput?: IOrgMembersOutputResolvers<ContextType>;
|
9651
9651
|
OrgUser?: IOrgUserResolvers<ContextType>;
|
9652
|
-
OrgUserAccount?: IOrgUserAccountResolvers<ContextType>;
|
9653
9652
|
Organization?: IOrganizationResolvers<ContextType>;
|
9654
9653
|
OrganizationConfiguration?: IOrganizationConfigurationResolvers<ContextType>;
|
9655
9654
|
OrganizationCreatedEvent?: IOrganizationCreatedEventResolvers<ContextType>;
|
@@ -75,6 +75,8 @@ var IApplicationRoles;
|
|
75
75
|
IApplicationRoles["ProjectViewer"] = "PROJECT_VIEWER";
|
76
76
|
IApplicationRoles["TeamMaintainer"] = "TEAM_MAINTAINER";
|
77
77
|
IApplicationRoles["TeamMember"] = "TEAM_MEMBER";
|
78
|
+
/** Role is unknown */
|
79
|
+
IApplicationRoles["Unknown"] = "UNKNOWN";
|
78
80
|
/** User who is logged in */
|
79
81
|
IApplicationRoles["User"] = "USER";
|
80
82
|
})(IApplicationRoles = exports.IApplicationRoles || (exports.IApplicationRoles = {}));
|
@@ -92,7 +94,7 @@ var IClientCacheTypeNames;
|
|
92
94
|
(function (IClientCacheTypeNames) {
|
93
95
|
IClientCacheTypeNames["ApplicationConfiguration"] = "ApplicationConfiguration";
|
94
96
|
IClientCacheTypeNames["ApplicationPolicy"] = "ApplicationPolicy";
|
95
|
-
IClientCacheTypeNames["
|
97
|
+
IClientCacheTypeNames["ApplicationRole"] = "ApplicationRole";
|
96
98
|
IClientCacheTypeNames["Configuration"] = "Configuration";
|
97
99
|
IClientCacheTypeNames["Context"] = "Context";
|
98
100
|
IClientCacheTypeNames["ContextKeyService"] = "ContextKeyService";
|
@@ -440,27 +442,6 @@ var ITeamServiceAction;
|
|
440
442
|
ITeamServiceAction["DeclineInvitation"] = "declineInvitation";
|
441
443
|
ITeamServiceAction["SendProjectNotificaiton"] = "sendProjectNotificaiton";
|
442
444
|
})(ITeamServiceAction = exports.ITeamServiceAction || (exports.ITeamServiceAction = {}));
|
443
|
-
/**
|
444
|
-
* The User Account.
|
445
|
-
*
|
446
|
-
* @property
|
447
|
-
* id: User ID
|
448
|
-
* @property
|
449
|
-
* email: The user email
|
450
|
-
* @property
|
451
|
-
* emailVerified: ture if email is verified, otherwise false
|
452
|
-
* @property
|
453
|
-
* featureFlags: Any super power given to the user via a super user
|
454
|
-
* @property
|
455
|
-
* identities: An array of objects with information about the user's identities.
|
456
|
-
* More than one will exists in case accounts are linked.
|
457
|
-
* @property
|
458
|
-
* inactive: true if the user is not currently being billed for service.
|
459
|
-
* @property
|
460
|
-
* isBillingLeader: true if user is BillingLeader
|
461
|
-
* @property
|
462
|
-
* userOgs: the orgs and roles for this user on each.
|
463
|
-
*/
|
464
445
|
var ITokenTypesEnum;
|
465
446
|
(function (ITokenTypesEnum) {
|
466
447
|
ITokenTypesEnum["EmailVerification"] = "EMAIL_VERIFICATION";
|
@@ -2109,7 +2090,7 @@ function useGetApplicationPolicyLazyQuery(baseOptions) {
|
|
2109
2090
|
return Apollo.useLazyQuery(exports.GetApplicationPolicyDocument, options);
|
2110
2091
|
}
|
2111
2092
|
exports.useGetApplicationPolicyLazyQuery = useGetApplicationPolicyLazyQuery;
|
2112
|
-
exports.GetApplicationRoleDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetApplicationRole" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "ListType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "RoleInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getRoles" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "
|
2093
|
+
exports.GetApplicationRoleDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetApplicationRole" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "ListType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "RoleInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getRoles" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ApplicationRole" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "Configuration" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IConfigurationModel" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "keys" } }, { "kind": "Field", "name": { "kind": "Name", "value": "overrides" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "identifiers" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }] } }] };
|
2113
2094
|
/**
|
2114
2095
|
* __useGetApplicationRoleQuery__
|
2115
2096
|
*
|
@@ -2541,7 +2522,7 @@ function useGetOrgWithResourcesPolicyLazyQuery(baseOptions) {
|
|
2541
2522
|
return Apollo.useLazyQuery(exports.GetOrgWithResourcesPolicyDocument, options);
|
2542
2523
|
}
|
2543
2524
|
exports.useGetOrgWithResourcesPolicyLazyQuery = useGetOrgWithResourcesPolicyLazyQuery;
|
2544
|
-
exports.GetOrgWithResourcesRoleDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetOrgWithResourcesRole" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "ListType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "RoleInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getRoles" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrganizationRole" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ResourceRole" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "Configuration" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IConfigurationModel" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "keys" } }, { "kind": "Field", "name": { "kind": "Name", "value": "overrides" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "identifiers" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }] } }] };
|
2525
|
+
exports.GetOrgWithResourcesRoleDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetOrgWithResourcesRole" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "ListType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "RoleInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getRoles" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrganizationRole" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ResourceRole" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ApplicationRole" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "Configuration" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IConfigurationModel" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "keys" } }, { "kind": "Field", "name": { "kind": "Name", "value": "overrides" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "identifiers" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }] } }] };
|
2545
2526
|
/**
|
2546
2527
|
* __useGetOrgWithResourcesRoleQuery__
|
2547
2528
|
*
|