@adminide-stack/core 1.1.3-alpha.162 → 1.1.3-alpha.169
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.
@@ -834,6 +834,11 @@ export declare type IIntegrationConfigurationInput = {
|
|
834
834
|
integrationInfo?: Maybe<Scalars['JSON']>;
|
835
835
|
userId?: Maybe<Scalars['ID']>;
|
836
836
|
};
|
837
|
+
export declare type IIntegrationConfigurationsOutput = {
|
838
|
+
__typename?: 'IntegrationConfigurationsOutput';
|
839
|
+
totalCount?: Maybe<Scalars['Int']>;
|
840
|
+
data?: Maybe<Array<Maybe<IIntegrationConfiguration>>>;
|
841
|
+
};
|
837
842
|
export declare type IInviteMember = {
|
838
843
|
__typename?: 'InviteMember';
|
839
844
|
id?: Maybe<Scalars['String']>;
|
@@ -1258,6 +1263,11 @@ export declare type IOrgDetailWhere = {
|
|
1258
1263
|
id?: Maybe<Scalars['String']>;
|
1259
1264
|
name?: Maybe<Scalars['String']>;
|
1260
1265
|
};
|
1266
|
+
export declare type IOrgInvitationMembers = {
|
1267
|
+
__typename?: 'OrgInvitationMembers';
|
1268
|
+
totalCount?: Maybe<Scalars['Int']>;
|
1269
|
+
data?: Maybe<Array<Maybe<IInviteMember>>>;
|
1270
|
+
};
|
1261
1271
|
export declare type IOrgMember = {
|
1262
1272
|
__typename?: 'OrgMember';
|
1263
1273
|
_id?: Maybe<Scalars['String']>;
|
@@ -1269,6 +1279,11 @@ export declare type IOrgMember = {
|
|
1269
1279
|
crossCheckEmail?: Maybe<Scalars['String']>;
|
1270
1280
|
teamNames?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1271
1281
|
};
|
1282
|
+
export declare type IOrgMembersOutput = {
|
1283
|
+
__typename?: 'OrgMembersOutput';
|
1284
|
+
totalCount?: Maybe<Scalars['Int']>;
|
1285
|
+
data?: Maybe<Array<Maybe<IOrgMember>>>;
|
1286
|
+
};
|
1272
1287
|
export declare type IOrgType = {
|
1273
1288
|
name?: Maybe<Scalars['String']>;
|
1274
1289
|
settings?: Maybe<Scalars['AnyObject']>;
|
@@ -1856,7 +1871,7 @@ export declare type IQuery = {
|
|
1856
1871
|
filterIntegrationConfiguration?: Maybe<Array<Maybe<IIntegrationConfiguration>>>;
|
1857
1872
|
getAccounts?: Maybe<Array<Maybe<IUserAccount>>>;
|
1858
1873
|
getAllCountries?: Maybe<Array<Maybe<ICountry>>>;
|
1859
|
-
getAllIntegrationConfigurations?: Maybe<
|
1874
|
+
getAllIntegrationConfigurations?: Maybe<IIntegrationConfigurationsOutput>;
|
1860
1875
|
getConfiguration?: Maybe<Array<Maybe<IConfiguration>>>;
|
1861
1876
|
getConfigurationData?: Maybe<IConfigurationData>;
|
1862
1877
|
getConfigurationPolicies?: Maybe<Array<Maybe<IConfigurationPolicy>>>;
|
@@ -1868,7 +1883,7 @@ export declare type IQuery = {
|
|
1868
1883
|
getIntegrationConfiguration?: Maybe<IIntegrationConfiguration>;
|
1869
1884
|
getManageableOrganizations?: Maybe<Array<Maybe<IOrganization>>>;
|
1870
1885
|
getOrgContext?: Maybe<IContext>;
|
1871
|
-
getOrgInvitationMembers?: Maybe<
|
1886
|
+
getOrgInvitationMembers?: Maybe<IOrgInvitationMembers>;
|
1872
1887
|
getOrgNameFromContext?: Maybe<IContext>;
|
1873
1888
|
getOrgTeamInvitations?: Maybe<Array<Maybe<IOrganizationInvitation>>>;
|
1874
1889
|
getOrgUser?: Maybe<IOrgUser>;
|
@@ -1876,7 +1891,7 @@ export declare type IQuery = {
|
|
1876
1891
|
getOrganizationDetail?: Maybe<IOrganization>;
|
1877
1892
|
getOrganizationDetailUnsecured?: Maybe<IOrganization>;
|
1878
1893
|
getOrganizationInvitation?: Maybe<IOrganizationInvitation>;
|
1879
|
-
getOrganizationMembers?: Maybe<
|
1894
|
+
getOrganizationMembers?: Maybe<IOrgMembersOutput>;
|
1880
1895
|
getOrganizationResourceContext?: Maybe<IOrganizationData>;
|
1881
1896
|
getOrganizationTeams?: Maybe<Array<Maybe<IAccountTeam>>>;
|
1882
1897
|
getRole?: Maybe<IAccessRole>;
|
@@ -1950,6 +1965,12 @@ export declare type IQuerygetAccountsArgs = {
|
|
1950
1965
|
export declare type IQuerygetAllCountriesArgs = {
|
1951
1966
|
criteria?: Maybe<Scalars['JSON']>;
|
1952
1967
|
};
|
1968
|
+
export declare type IQuerygetAllIntegrationConfigurationsArgs = {
|
1969
|
+
criteria?: Maybe<Scalars['AnyObject']>;
|
1970
|
+
limit?: Maybe<Scalars['Int']>;
|
1971
|
+
skip?: Maybe<Scalars['Int']>;
|
1972
|
+
sort?: Maybe<ISort>;
|
1973
|
+
};
|
1953
1974
|
export declare type IQuerygetConfigurationArgs = {
|
1954
1975
|
input?: Maybe<Array<Maybe<IConfigurationInput>>>;
|
1955
1976
|
};
|
@@ -1965,6 +1986,10 @@ export declare type IQuerygetContextPropertyArgs = {
|
|
1965
1986
|
export declare type IQuerygetIntegrationConfigurationArgs = {
|
1966
1987
|
id: Scalars['String'];
|
1967
1988
|
};
|
1989
|
+
export declare type IQuerygetOrgInvitationMembersArgs = {
|
1990
|
+
offset?: Maybe<Scalars['Int']>;
|
1991
|
+
limit?: Maybe<Scalars['Int']>;
|
1992
|
+
};
|
1968
1993
|
export declare type IQuerygetOrgTeamInvitationsArgs = {
|
1969
1994
|
teamId?: Maybe<Scalars['String']>;
|
1970
1995
|
};
|
@@ -1983,6 +2008,10 @@ export declare type IQuerygetOrganizationDetailUnsecuredArgs = {
|
|
1983
2008
|
export declare type IQuerygetOrganizationInvitationArgs = {
|
1984
2009
|
id: Scalars['ID'];
|
1985
2010
|
};
|
2011
|
+
export declare type IQuerygetOrganizationMembersArgs = {
|
2012
|
+
offset?: Maybe<Scalars['Int']>;
|
2013
|
+
limit?: Maybe<Scalars['Int']>;
|
2014
|
+
};
|
1986
2015
|
export declare type IQuerygetOrganizationResourceContextArgs = {
|
1987
2016
|
orgId?: Maybe<Scalars['String']>;
|
1988
2017
|
};
|
@@ -2213,6 +2242,14 @@ export declare type ISettingsSection = {
|
|
2213
2242
|
settings?: Maybe<Array<Maybe<IContributionSettings>>>;
|
2214
2243
|
};
|
2215
2244
|
export declare type ISettingsSubject = IUserSettings | IApplicationSettings | IMachineSettings | IOrganizationResourceSettings | IGlobalSettings | IOrganizationSettings | IMemorySettings | IDefaultSettings;
|
2245
|
+
export declare type ISort = {
|
2246
|
+
key: Scalars['String'];
|
2247
|
+
value: ISortEnum;
|
2248
|
+
};
|
2249
|
+
export declare enum ISortEnum {
|
2250
|
+
ASC = "ASC",
|
2251
|
+
DESC = "DESC"
|
2252
|
+
}
|
2216
2253
|
export declare type ISshKey = {
|
2217
2254
|
__typename?: 'SshKey';
|
2218
2255
|
id?: Maybe<Scalars['String']>;
|
@@ -3037,14 +3074,19 @@ export declare type IGetManageableOrganizationsQuery = ({
|
|
3037
3074
|
})>>>;
|
3038
3075
|
});
|
3039
3076
|
export declare type IGetOrgInvitationMembersQueryVariables = Exact<{
|
3040
|
-
[
|
3077
|
+
offset?: Maybe<Scalars['Int']>;
|
3078
|
+
limit?: Maybe<Scalars['Int']>;
|
3041
3079
|
}>;
|
3042
3080
|
export declare type IGetOrgInvitationMembersQuery = ({
|
3043
3081
|
__typename?: 'Query';
|
3044
3082
|
} & {
|
3045
|
-
getOrgInvitationMembers?: Maybe<
|
3046
|
-
__typename?: '
|
3047
|
-
} & Pick<
|
3083
|
+
getOrgInvitationMembers?: Maybe<({
|
3084
|
+
__typename?: 'OrgInvitationMembers';
|
3085
|
+
} & Pick<IOrgInvitationMembers, 'totalCount'> & {
|
3086
|
+
data?: Maybe<Array<Maybe<({
|
3087
|
+
__typename?: 'InviteMember';
|
3088
|
+
} & Pick<IInviteMember, 'id' | 'email' | 'teamName' | 'teamId' | 'role' | 'status'>)>>>;
|
3089
|
+
})>;
|
3048
3090
|
});
|
3049
3091
|
export declare type IGetOrganizationInvitationQueryVariables = Exact<{
|
3050
3092
|
id: Scalars['ID'];
|
@@ -3198,14 +3240,19 @@ export declare type IgetUserOrganizationsWithRoleQuery = ({
|
|
3198
3240
|
})>>>;
|
3199
3241
|
});
|
3200
3242
|
export declare type IGetOrganizationMembersQueryVariables = Exact<{
|
3201
|
-
[
|
3243
|
+
offset?: Maybe<Scalars['Int']>;
|
3244
|
+
limit?: Maybe<Scalars['Int']>;
|
3202
3245
|
}>;
|
3203
3246
|
export declare type IGetOrganizationMembersQuery = ({
|
3204
3247
|
__typename?: 'Query';
|
3205
3248
|
} & {
|
3206
|
-
getOrganizationMembers?: Maybe<
|
3207
|
-
__typename?: '
|
3208
|
-
} & Pick<
|
3249
|
+
getOrganizationMembers?: Maybe<({
|
3250
|
+
__typename?: 'OrgMembersOutput';
|
3251
|
+
} & Pick<IOrgMembersOutput, 'totalCount'> & {
|
3252
|
+
data?: Maybe<Array<Maybe<({
|
3253
|
+
__typename?: 'OrgMember';
|
3254
|
+
} & Pick<IOrgMember, 'userId' | 'role' | 'name' | 'email' | 'teamNames' | 'crossCheckEmail'>)>>>;
|
3255
|
+
})>;
|
3209
3256
|
});
|
3210
3257
|
export declare type IorganizationsQueryVariables = Exact<{
|
3211
3258
|
[key: string]: never;
|
@@ -3984,14 +4031,21 @@ export declare type IFilterIntegrationConfigurationQuery = ({
|
|
3984
4031
|
} & Pick<IIntegrationConfiguration, 'id' | 'name' | 'integrationName' | 'status' | 'updatedAt' | 'integrationInfo'>)>>>;
|
3985
4032
|
});
|
3986
4033
|
export declare type IGetAllIntegrationConfigurationsQueryVariables = Exact<{
|
3987
|
-
[
|
4034
|
+
criteria?: Maybe<Scalars['AnyObject']>;
|
4035
|
+
limit?: Maybe<Scalars['Int']>;
|
4036
|
+
skip?: Maybe<Scalars['Int']>;
|
4037
|
+
sort?: Maybe<ISort>;
|
3988
4038
|
}>;
|
3989
4039
|
export declare type IGetAllIntegrationConfigurationsQuery = ({
|
3990
4040
|
__typename?: 'Query';
|
3991
4041
|
} & {
|
3992
|
-
getAllIntegrationConfigurations?: Maybe<
|
3993
|
-
__typename?: '
|
3994
|
-
} & Pick<
|
4042
|
+
getAllIntegrationConfigurations?: Maybe<({
|
4043
|
+
__typename?: 'IntegrationConfigurationsOutput';
|
4044
|
+
} & Pick<IIntegrationConfigurationsOutput, 'totalCount'> & {
|
4045
|
+
data?: Maybe<Array<Maybe<({
|
4046
|
+
__typename?: 'IntegrationConfiguration';
|
4047
|
+
} & Pick<IIntegrationConfiguration, 'id' | 'name' | 'integrationName' | 'status' | 'updatedAt' | 'integrationInfo'>)>>>;
|
4048
|
+
})>;
|
3995
4049
|
});
|
3996
4050
|
export declare type IGetIntegrationConfigurationQueryVariables = Exact<{
|
3997
4051
|
id: Scalars['String'];
|
@@ -5132,14 +5186,18 @@ export declare const GetOrgInvitationMembersDocument: DocumentNode;
|
|
5132
5186
|
* @example
|
5133
5187
|
* const { data, loading, error } = useGetOrgInvitationMembersQuery({
|
5134
5188
|
* variables: {
|
5189
|
+
* offset: // value for 'offset'
|
5190
|
+
* limit: // value for 'limit'
|
5135
5191
|
* },
|
5136
5192
|
* });
|
5137
5193
|
*/
|
5138
5194
|
export declare function useGetOrgInvitationMembersQuery(baseOptions?: Apollo.QueryHookOptions<IGetOrgInvitationMembersQuery, IGetOrgInvitationMembersQueryVariables>): Apollo.QueryResult<IGetOrgInvitationMembersQuery, Exact<{
|
5139
|
-
|
5195
|
+
offset?: number;
|
5196
|
+
limit?: number;
|
5140
5197
|
}>>;
|
5141
5198
|
export declare function useGetOrgInvitationMembersLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrgInvitationMembersQuery, IGetOrgInvitationMembersQueryVariables>): Apollo.QueryTuple<IGetOrgInvitationMembersQuery, Exact<{
|
5142
|
-
|
5199
|
+
offset?: number;
|
5200
|
+
limit?: number;
|
5143
5201
|
}>>;
|
5144
5202
|
export declare type GetOrgInvitationMembersQueryHookResult = ReturnType<typeof useGetOrgInvitationMembersQuery>;
|
5145
5203
|
export declare type GetOrgInvitationMembersLazyQueryHookResult = ReturnType<typeof useGetOrgInvitationMembersLazyQuery>;
|
@@ -5478,14 +5536,18 @@ export declare const GetOrganizationMembersDocument: DocumentNode;
|
|
5478
5536
|
* @example
|
5479
5537
|
* const { data, loading, error } = useGetOrganizationMembersQuery({
|
5480
5538
|
* variables: {
|
5539
|
+
* offset: // value for 'offset'
|
5540
|
+
* limit: // value for 'limit'
|
5481
5541
|
* },
|
5482
5542
|
* });
|
5483
5543
|
*/
|
5484
5544
|
export declare function useGetOrganizationMembersQuery(baseOptions?: Apollo.QueryHookOptions<IGetOrganizationMembersQuery, IGetOrganizationMembersQueryVariables>): Apollo.QueryResult<IGetOrganizationMembersQuery, Exact<{
|
5485
|
-
|
5545
|
+
offset?: number;
|
5546
|
+
limit?: number;
|
5486
5547
|
}>>;
|
5487
5548
|
export declare function useGetOrganizationMembersLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrganizationMembersQuery, IGetOrganizationMembersQueryVariables>): Apollo.QueryTuple<IGetOrganizationMembersQuery, Exact<{
|
5488
|
-
|
5549
|
+
offset?: number;
|
5550
|
+
limit?: number;
|
5489
5551
|
}>>;
|
5490
5552
|
export declare type GetOrganizationMembersQueryHookResult = ReturnType<typeof useGetOrganizationMembersQuery>;
|
5491
5553
|
export declare type GetOrganizationMembersLazyQueryHookResult = ReturnType<typeof useGetOrganizationMembersLazyQuery>;
|
@@ -6772,14 +6834,24 @@ export declare const GetAllIntegrationConfigurationsDocument: DocumentNode;
|
|
6772
6834
|
* @example
|
6773
6835
|
* const { data, loading, error } = useGetAllIntegrationConfigurationsQuery({
|
6774
6836
|
* variables: {
|
6837
|
+
* criteria: // value for 'criteria'
|
6838
|
+
* limit: // value for 'limit'
|
6839
|
+
* skip: // value for 'skip'
|
6840
|
+
* sort: // value for 'sort'
|
6775
6841
|
* },
|
6776
6842
|
* });
|
6777
6843
|
*/
|
6778
6844
|
export declare function useGetAllIntegrationConfigurationsQuery(baseOptions?: Apollo.QueryHookOptions<IGetAllIntegrationConfigurationsQuery, IGetAllIntegrationConfigurationsQueryVariables>): Apollo.QueryResult<IGetAllIntegrationConfigurationsQuery, Exact<{
|
6779
|
-
|
6845
|
+
criteria?: any;
|
6846
|
+
limit?: number;
|
6847
|
+
skip?: number;
|
6848
|
+
sort?: ISort;
|
6780
6849
|
}>>;
|
6781
6850
|
export declare function useGetAllIntegrationConfigurationsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetAllIntegrationConfigurationsQuery, IGetAllIntegrationConfigurationsQueryVariables>): Apollo.QueryTuple<IGetAllIntegrationConfigurationsQuery, Exact<{
|
6782
|
-
|
6851
|
+
criteria?: any;
|
6852
|
+
limit?: number;
|
6853
|
+
skip?: number;
|
6854
|
+
sort?: ISort;
|
6783
6855
|
}>>;
|
6784
6856
|
export declare type GetAllIntegrationConfigurationsQueryHookResult = ReturnType<typeof useGetAllIntegrationConfigurationsQuery>;
|
6785
6857
|
export declare type GetAllIntegrationConfigurationsLazyQueryHookResult = ReturnType<typeof useGetAllIntegrationConfigurationsLazyQuery>;
|
@@ -7393,6 +7465,7 @@ export declare type IResolversTypes = {
|
|
7393
7465
|
IntegrationConfigurationCreateOrUpdateInput: IIntegrationConfigurationCreateOrUpdateInput;
|
7394
7466
|
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
7395
7467
|
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
7468
|
+
IntegrationConfigurationsOutput: ResolverTypeWrapper<IIntegrationConfigurationsOutput>;
|
7396
7469
|
InviteMember: ResolverTypeWrapper<IInviteMember>;
|
7397
7470
|
InviteStatus: IInviteStatus;
|
7398
7471
|
JSON: ResolverTypeWrapper<Scalars['JSON']>;
|
@@ -7410,7 +7483,9 @@ export declare type IResolversTypes = {
|
|
7410
7483
|
Node: IResolversTypes['OrgUserAccunt'] | IResolversTypes['UserAccount'];
|
7411
7484
|
Observable: ResolverTypeWrapper<Scalars['Observable']>;
|
7412
7485
|
OrgDetailWhere: IOrgDetailWhere;
|
7486
|
+
OrgInvitationMembers: ResolverTypeWrapper<IOrgInvitationMembers>;
|
7413
7487
|
OrgMember: ResolverTypeWrapper<IOrgMember>;
|
7488
|
+
OrgMembersOutput: ResolverTypeWrapper<IOrgMembersOutput>;
|
7414
7489
|
OrgType: IOrgType;
|
7415
7490
|
OrgUser: ResolverTypeWrapper<IOrgUser>;
|
7416
7491
|
OrgUserAccunt: ResolverTypeWrapper<IOrgUserAccunt>;
|
@@ -7501,6 +7576,8 @@ export declare type IResolversTypes = {
|
|
7501
7576
|
SettingsGroup: ResolverTypeWrapper<ISettingsGroup>;
|
7502
7577
|
SettingsSection: ResolverTypeWrapper<ISettingsSection>;
|
7503
7578
|
SettingsSubject: IResolversTypes['UserSettings'] | IResolversTypes['ApplicationSettings'] | IResolversTypes['MachineSettings'] | IResolversTypes['OrganizationResourceSettings'] | IResolversTypes['GlobalSettings'] | IResolversTypes['OrganizationSettings'] | IResolversTypes['MemorySettings'] | IResolversTypes['DefaultSettings'];
|
7579
|
+
Sort: ISort;
|
7580
|
+
SortEnum: ISortEnum;
|
7504
7581
|
SshKey: ResolverTypeWrapper<ISshKey>;
|
7505
7582
|
SshKeyInput: ISshKeyInput;
|
7506
7583
|
SshKeyModel: ResolverTypeWrapper<ISshKeyModel>;
|
@@ -7645,6 +7722,7 @@ export declare type IResolversParentTypes = {
|
|
7645
7722
|
IntegrationConfigurationCreateOrUpdateInput: IIntegrationConfigurationCreateOrUpdateInput;
|
7646
7723
|
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
7647
7724
|
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
7725
|
+
IntegrationConfigurationsOutput: IIntegrationConfigurationsOutput;
|
7648
7726
|
InviteMember: IInviteMember;
|
7649
7727
|
JSON: Scalars['JSON'];
|
7650
7728
|
JSONObject: Scalars['JSONObject'];
|
@@ -7658,7 +7736,9 @@ export declare type IResolversParentTypes = {
|
|
7658
7736
|
Node: IResolversParentTypes['OrgUserAccunt'] | IResolversParentTypes['UserAccount'];
|
7659
7737
|
Observable: Scalars['Observable'];
|
7660
7738
|
OrgDetailWhere: IOrgDetailWhere;
|
7739
|
+
OrgInvitationMembers: IOrgInvitationMembers;
|
7661
7740
|
OrgMember: IOrgMember;
|
7741
|
+
OrgMembersOutput: IOrgMembersOutput;
|
7662
7742
|
OrgType: IOrgType;
|
7663
7743
|
OrgUser: IOrgUser;
|
7664
7744
|
OrgUserAccunt: IOrgUserAccunt;
|
@@ -7735,6 +7815,7 @@ export declare type IResolversParentTypes = {
|
|
7735
7815
|
SettingsGroup: ISettingsGroup;
|
7736
7816
|
SettingsSection: ISettingsSection;
|
7737
7817
|
SettingsSubject: IResolversParentTypes['UserSettings'] | IResolversParentTypes['ApplicationSettings'] | IResolversParentTypes['MachineSettings'] | IResolversParentTypes['OrganizationResourceSettings'] | IResolversParentTypes['GlobalSettings'] | IResolversParentTypes['OrganizationSettings'] | IResolversParentTypes['MemorySettings'] | IResolversParentTypes['DefaultSettings'];
|
7818
|
+
Sort: ISort;
|
7738
7819
|
SshKey: ISshKey;
|
7739
7820
|
SshKeyInput: ISshKeyInput;
|
7740
7821
|
SshKeyModel: ISshKeyModel;
|
@@ -8272,6 +8353,11 @@ export declare type IIntegrationConfigurationResolvers<ContextType = MyContext,
|
|
8272
8353
|
integrationInfo?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
|
8273
8354
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8274
8355
|
};
|
8356
|
+
export declare type IIntegrationConfigurationsOutputResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IntegrationConfigurationsOutput'] = IResolversParentTypes['IntegrationConfigurationsOutput']> = {
|
8357
|
+
totalCount?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
8358
|
+
data?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType>;
|
8359
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8360
|
+
};
|
8275
8361
|
export declare type IInviteMemberResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['InviteMember'] = IResolversParentTypes['InviteMember']> = {
|
8276
8362
|
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8277
8363
|
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -8398,6 +8484,11 @@ export declare type INodeResolvers<ContextType = MyContext, ParentType extends I
|
|
8398
8484
|
export interface IObservableScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Observable'], any> {
|
8399
8485
|
name: 'Observable';
|
8400
8486
|
}
|
8487
|
+
export declare type IOrgInvitationMembersResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrgInvitationMembers'] = IResolversParentTypes['OrgInvitationMembers']> = {
|
8488
|
+
totalCount?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
8489
|
+
data?: Resolver<Maybe<Array<Maybe<IResolversTypes['InviteMember']>>>, ParentType, ContextType>;
|
8490
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8491
|
+
};
|
8401
8492
|
export declare type IOrgMemberResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrgMember'] = IResolversParentTypes['OrgMember']> = {
|
8402
8493
|
_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8403
8494
|
userId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -8409,6 +8500,11 @@ export declare type IOrgMemberResolvers<ContextType = MyContext, ParentType exte
|
|
8409
8500
|
teamNames?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
8410
8501
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8411
8502
|
};
|
8503
|
+
export declare type IOrgMembersOutputResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrgMembersOutput'] = IResolversParentTypes['OrgMembersOutput']> = {
|
8504
|
+
totalCount?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
8505
|
+
data?: Resolver<Maybe<Array<Maybe<IResolversTypes['OrgMember']>>>, ParentType, ContextType>;
|
8506
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8507
|
+
};
|
8412
8508
|
export declare type IOrgUserResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrgUser'] = IResolversParentTypes['OrgUser']> = {
|
8413
8509
|
userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
8414
8510
|
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
@@ -8698,7 +8794,7 @@ export declare type IQueryResolvers<ContextType = MyContext, ParentType extends
|
|
8698
8794
|
filterIntegrationConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType, RequireFields<IQueryfilterIntegrationConfigurationArgs, never>>;
|
8699
8795
|
getAccounts?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccount']>>>, ParentType, ContextType, RequireFields<IQuerygetAccountsArgs, never>>;
|
8700
8796
|
getAllCountries?: Resolver<Maybe<Array<Maybe<IResolversTypes['Country']>>>, ParentType, ContextType, RequireFields<IQuerygetAllCountriesArgs, never>>;
|
8701
|
-
getAllIntegrationConfigurations?: Resolver<Maybe<
|
8797
|
+
getAllIntegrationConfigurations?: Resolver<Maybe<IResolversTypes['IntegrationConfigurationsOutput']>, ParentType, ContextType, RequireFields<IQuerygetAllIntegrationConfigurationsArgs, never>>;
|
8702
8798
|
getConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['Configuration']>>>, ParentType, ContextType, RequireFields<IQuerygetConfigurationArgs, never>>;
|
8703
8799
|
getConfigurationData?: Resolver<Maybe<IResolversTypes['ConfigurationData']>, ParentType, ContextType>;
|
8704
8800
|
getConfigurationPolicies?: Resolver<Maybe<Array<Maybe<IResolversTypes['ConfigurationPolicy']>>>, ParentType, ContextType, RequireFields<IQuerygetConfigurationPoliciesArgs, never>>;
|
@@ -8710,7 +8806,7 @@ export declare type IQueryResolvers<ContextType = MyContext, ParentType extends
|
|
8710
8806
|
getIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegrationConfiguration']>, ParentType, ContextType, RequireFields<IQuerygetIntegrationConfigurationArgs, 'id'>>;
|
8711
8807
|
getManageableOrganizations?: Resolver<Maybe<Array<Maybe<IResolversTypes['Organization']>>>, ParentType, ContextType>;
|
8712
8808
|
getOrgContext?: Resolver<Maybe<IResolversTypes['Context']>, ParentType, ContextType>;
|
8713
|
-
getOrgInvitationMembers?: Resolver<Maybe<
|
8809
|
+
getOrgInvitationMembers?: Resolver<Maybe<IResolversTypes['OrgInvitationMembers']>, ParentType, ContextType, RequireFields<IQuerygetOrgInvitationMembersArgs, never>>;
|
8714
8810
|
getOrgNameFromContext?: Resolver<Maybe<IResolversTypes['Context']>, ParentType, ContextType>;
|
8715
8811
|
getOrgTeamInvitations?: Resolver<Maybe<Array<Maybe<IResolversTypes['OrganizationInvitation']>>>, ParentType, ContextType, RequireFields<IQuerygetOrgTeamInvitationsArgs, never>>;
|
8716
8812
|
getOrgUser?: Resolver<Maybe<IResolversTypes['OrgUser']>, ParentType, ContextType, RequireFields<IQuerygetOrgUserArgs, never>>;
|
@@ -8718,7 +8814,7 @@ export declare type IQueryResolvers<ContextType = MyContext, ParentType extends
|
|
8718
8814
|
getOrganizationDetail?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IQuerygetOrganizationDetailArgs, 'where'>>;
|
8719
8815
|
getOrganizationDetailUnsecured?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IQuerygetOrganizationDetailUnsecuredArgs, 'where'>>;
|
8720
8816
|
getOrganizationInvitation?: Resolver<Maybe<IResolversTypes['OrganizationInvitation']>, ParentType, ContextType, RequireFields<IQuerygetOrganizationInvitationArgs, 'id'>>;
|
8721
|
-
getOrganizationMembers?: Resolver<Maybe<
|
8817
|
+
getOrganizationMembers?: Resolver<Maybe<IResolversTypes['OrgMembersOutput']>, ParentType, ContextType, RequireFields<IQuerygetOrganizationMembersArgs, never>>;
|
8722
8818
|
getOrganizationResourceContext?: Resolver<Maybe<IResolversTypes['OrganizationData']>, ParentType, ContextType, RequireFields<IQuerygetOrganizationResourceContextArgs, never>>;
|
8723
8819
|
getOrganizationTeams?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccountTeam']>>>, ParentType, ContextType, RequireFields<IQuerygetOrganizationTeamsArgs, never>>;
|
8724
8820
|
getRole?: Resolver<Maybe<IResolversTypes['AccessRole']>, ParentType, ContextType, RequireFields<IQuerygetRoleArgs, never>>;
|
@@ -9174,6 +9270,7 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9174
9270
|
IUserMetadata?: IIUserMetadataResolvers<ContextType>;
|
9175
9271
|
IntegraitonConfigurationId?: IIntegraitonConfigurationIdResolvers<ContextType>;
|
9176
9272
|
IntegrationConfiguration?: IIntegrationConfigurationResolvers<ContextType>;
|
9273
|
+
IntegrationConfigurationsOutput?: IIntegrationConfigurationsOutputResolvers<ContextType>;
|
9177
9274
|
InviteMember?: IInviteMemberResolvers<ContextType>;
|
9178
9275
|
JSON?: GraphQLScalarType;
|
9179
9276
|
JSONObject?: GraphQLScalarType;
|
@@ -9185,7 +9282,9 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9185
9282
|
Mutation?: IMutationResolvers<ContextType>;
|
9186
9283
|
Node?: INodeResolvers<ContextType>;
|
9187
9284
|
Observable?: GraphQLScalarType;
|
9285
|
+
OrgInvitationMembers?: IOrgInvitationMembersResolvers<ContextType>;
|
9188
9286
|
OrgMember?: IOrgMemberResolvers<ContextType>;
|
9287
|
+
OrgMembersOutput?: IOrgMembersOutputResolvers<ContextType>;
|
9189
9288
|
OrgUser?: IOrgUserResolvers<ContextType>;
|
9190
9289
|
OrgUserAccunt?: IOrgUserAccuntResolvers<ContextType>;
|
9191
9290
|
Organization?: IOrganizationResolvers<ContextType>;
|
@@ -1,12 +1,12 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.
|
4
|
-
exports.
|
5
|
-
exports.
|
6
|
-
exports.
|
7
|
-
exports.
|
8
|
-
exports.
|
9
|
-
exports.useViewerSettingsLazyQuery = exports.useViewerSettingsQuery = exports.ViewerSettingsDocument = exports.useOrganizationResourceContextLazyQuery = exports.useOrganizationResourceContextQuery = exports.OrganizationResourceContextDocument = exports.usegetConfigurationDataLazyQuery = exports.usegetConfigurationDataQuery = exports.getConfigurationDataDocument = exports.useUpdateRoleValueMutation = exports.UpdateRoleValueDocument = exports.useUpdatePolicyValueMutation = exports.UpdatePolicyValueDocument = exports.useupdateOrganizationContextUpdateResourcesMutation = exports.updateOrganizationContextUpdateResourcesDocument = exports.useupdateOrganizationContextRemoveResourcesMutation = exports.updateOrganizationContextRemoveResourcesDocument = exports.useupdateOrganizationContextAddResourcesMutation = exports.updateOrganizationContextAddResourcesDocument = exports.useUpdateConfigurationValueMutation = exports.UpdateConfigurationValueDocument = exports.useUpdateConfigurationValueByUriMutation = exports.UpdateConfigurationValueByUriDocument = exports.useSubscribeToPolicyUpdateSubscription = exports.SubscribeToPolicyUpdateDocument = exports.useSubscribeToPermissionUpdateSubscription = exports.SubscribeToPermissionUpdateDocument = exports.usesubscribeToOrganizationContextSubscription = exports.subscribeToOrganizationContextDocument = exports.useSubscribeToConfigurationUpdateSubscription = exports.SubscribeToConfigurationUpdateDocument = exports.useGetUserWithDefaultConfigurationLazyQuery = exports.useGetUserWithDefaultConfigurationQuery = exports.GetUserWithDefaultConfigurationDocument = exports.useGetOrgWithResourcesConfigurationLazyQuery = exports.useGetOrgWithResourcesConfigurationQuery = exports.GetOrgWithResourcesConfigurationDocument = exports.useGetIntegrationConfigurationLazyQuery = exports.useGetIntegrationConfigurationQuery = exports.GetIntegrationConfigurationDocument = exports.useGetAllIntegrationConfigurationsLazyQuery = exports.useGetAllIntegrationConfigurationsQuery = exports.GetAllIntegrationConfigurationsDocument = exports.useFilterIntegrationConfigurationLazyQuery = exports.useFilterIntegrationConfigurationQuery = exports.FilterIntegrationConfigurationDocument = exports.usegetRoleLazyQuery = exports.usegetRoleQuery = exports.getRoleDocument = void 0;
|
3
|
+
exports.DefaultSettingFragmentDoc = exports.ConfigurationUpdateEventFragmentDoc = exports.UserCreationEventFragmentDoc = exports.OrgUserFragmentDoc = exports.AllContextFragmentDoc = exports.IVisibility = exports.IUserOrderBy = exports.IUserBroadcasterAction = exports.ITokenTypesEnum = exports.ITeamServiceAction = exports.ISshKeyType = exports.ISshKeyServiceAction = exports.ISortEnum = exports.ISettingValueType = exports.IRouteParams = exports.IRole = exports.IResourceAuthority = exports.IRegistryExtensions = exports.IPreDefinedRole = exports.IPortalLanguage = exports.IPermissionType = exports.IPermissionResource = exports.IPermissionAction = exports.IOrganizationServiceAction = exports.IOrganizationContextPubSubEvents = exports.IOrgainizationInvitationRole = exports.IOrgUserRole = exports.IMoleculerServiceName = exports.IMenuPosition = exports.IMailTemplateId = exports.IInviteStatus = exports.IIntegrationConfigServiceAction = exports.IGlobalLanguages = exports.IGlobalCurrencies = exports.IEditPresentationTypes = exports.IContextServiceAction = exports.ConfigurationTarget = exports.ConfigurationScope = exports.IConfigurationContributionNames = exports.IConfigFragmentName = exports.IConfigCollectionName = exports.IClientTypes = exports.IClientContainerService = exports.IClientCacheTypeNames = exports.ICacheControlScope = exports.IAuthErrorCodes = exports.IApplicationRoles = exports.IApplicationBillingPlanPolicy = exports.IAccountServiceAction = exports.IAccountBroadcasterActions = void 0;
|
4
|
+
exports.ResetUserPasswordDocument = exports.useResendUserEmailVerificationEmailMutation = exports.ResendUserEmailVerificationEmailDocument = exports.useResendOrganizationInvitationMutation = exports.ResendOrganizationInvitationDocument = exports.useRemoveTeamMemberMutation = exports.RemoveTeamMemberDocument = exports.useremoveTeamMutation = exports.removeTeamDocument = exports.useremoveOrganizationMutation = exports.removeOrganizationDocument = exports.useRemoveOrgMemberMutation = exports.RemoveOrgMemberDocument = exports.useregisterAccountUserMutation = exports.registerAccountUserDocument = exports.usedeleteUserAccountMutation = exports.deleteUserAccountDocument = exports.useDeclineOrganizationInvitationMutation = exports.DeclineOrganizationInvitationDocument = exports.usecreateTeamMutation = exports.createTeamDocument = exports.usecreateOrganizationMutation = exports.createOrganizationDocument = exports.usechangeOrgMemberRoleMutation = exports.changeOrgMemberRoleDocument = exports.usechangeMemberRoleMutation = exports.changeMemberRoleDocument = exports.useAddTeamMembersMutation = exports.AddTeamMembersDocument = exports.useAccountOnBoardingMutation = exports.AccountOnBoardingDocument = exports.useacceptOrganizationInvitationMutation = exports.acceptOrganizationInvitationDocument = exports.OrganizationDataFragmentDoc = exports.ConfigurationModelFragmentDoc = exports.AccountBillingPreferencesFragmentDoc = exports.TeamWithOrgOnContextFragmentDoc = exports.TeamContextFragmentDoc = exports.TeamNameInContextFragmentDoc = exports.RoleTargetFragmentDoc = exports.ResourceUserRoleFragmentDoc = exports.OrganizationUserFragmentDoc = exports.OrgContextFragmentDoc = exports.OrgNameInContextFragmentDoc = exports.MachineConfigurationFragmentDoc = exports.DefaultContextFragmentDoc = exports.ContextConfigurationFragmentDoc = exports.ResourceDataFragmentDoc = exports.ConfigurationFragmentDoc = exports.OverWriteRoleValueFragmentDoc = void 0;
|
5
|
+
exports.usegetTeamQuery = exports.getTeamDocument = exports.usegetOrganizationTeamsLazyQuery = exports.usegetOrganizationTeamsQuery = exports.getOrganizationTeamsDocument = exports.useGetOrganizationMembersWithNameLazyQuery = exports.useGetOrganizationMembersWithNameQuery = exports.GetOrganizationMembersWithNameDocument = exports.useGetOrgUserLazyQuery = exports.useGetOrgUserQuery = exports.GetOrgUserDocument = exports.usegetOrgTeamInvitationsLazyQuery = exports.usegetOrgTeamInvitationsQuery = exports.getOrgTeamInvitationsDocument = exports.useGetOrganizationInvitationLazyQuery = exports.useGetOrganizationInvitationQuery = exports.GetOrganizationInvitationDocument = exports.useGetOrgInvitationMembersLazyQuery = exports.useGetOrgInvitationMembersQuery = exports.GetOrgInvitationMembersDocument = exports.useGetManageableOrganizationsLazyQuery = exports.useGetManageableOrganizationsQuery = exports.GetManageableOrganizationsDocument = exports.useGetAllCountriesLazyQuery = exports.useGetAllCountriesQuery = exports.GetAllCountriesDocument = exports.useGetAccountsLazyQuery = exports.useGetAccountsQuery = exports.GetAccountsDocument = exports.useDecodeOrganizationInvitationLazyQuery = exports.useDecodeOrganizationInvitationQuery = exports.DecodeOrganizationInvitationDocument = exports.useGetUserOrganizationsListLazyQuery = exports.useGetUserOrganizationsListQuery = exports.GetUserOrganizationsListDocument = exports.useVerifyUserEmailVerificationTokenMutation = exports.VerifyUserEmailVerificationTokenDocument = exports.useupdateUserAccountMutation = exports.updateUserAccountDocument = exports.useupdateTeamConfigurationMutation = exports.updateTeamConfigurationDocument = exports.useupdateOrganizationMutation = exports.updateOrganizationDocument = exports.useupdateOrgMemberTeamsMutation = exports.updateOrgMemberTeamsDocument = exports.usesendOrganizationInvitationMutation = exports.sendOrganizationInvitationDocument = exports.useSendUserPasswordResetEmailMutation = exports.SendUserPasswordResetEmailDocument = exports.useResetUserPasswordMutation = void 0;
|
6
|
+
exports.toggleSidebarDocument = exports.useGetUsersLazyQuery = exports.useGetUsersQuery = exports.GetUsersDocument = exports.useGetOrgMembersWithRolesLazyQuery = exports.useGetOrgMembersWithRolesQuery = exports.GetOrgMembersWithRolesDocument = exports.useGetOrgMembersWithRolesUnsecuredLazyQuery = exports.useGetOrgMembersWithRolesUnsecuredQuery = exports.GetOrgMembersWithRolesUnsecuredDocument = exports.useGetAccountsApplicationPoliciesLazyQuery = exports.useGetAccountsApplicationPoliciesQuery = exports.GetAccountsApplicationPoliciesDocument = exports.useGetAccountsViewerSettingsLazyQuery = exports.useGetAccountsViewerSettingsQuery = exports.GetAccountsViewerSettingsDocument = exports.useGetViewerSettingsLazyQuery = exports.useGetViewerSettingsQuery = exports.GetViewerSettingsDocument = exports.useTeamsLazyQuery = exports.useTeamsQuery = exports.TeamsDocument = exports.useteamLazyQuery = exports.useteamQuery = exports.teamDocument = exports.useorganizationsLazyQuery = exports.useorganizationsQuery = exports.organizationsDocument = exports.useGetOrganizationMembersLazyQuery = exports.useGetOrganizationMembersQuery = exports.GetOrganizationMembersDocument = exports.usegetUserOrganizationsWithRoleLazyQuery = exports.usegetUserOrganizationsWithRoleQuery = exports.getUserOrganizationsWithRoleDocument = exports.usegetUserOrganizationsLazyQuery = exports.usegetUserOrganizationsQuery = exports.getUserOrganizationsDocument = exports.useGetUserTokenDetailsLazyQuery = exports.useGetUserTokenDetailsQuery = exports.GetUserTokenDetailsDocument = exports.useGetUserAccountByAuth0IdLazyQuery = exports.useGetUserAccountByAuth0IdQuery = exports.GetUserAccountByAuth0IdDocument = exports.useGetUserAccountLazyQuery = exports.useGetUserAccountQuery = exports.GetUserAccountDocument = exports.usegetTeamByNameLazyQuery = exports.usegetTeamByNameQuery = exports.getTeamByNameDocument = exports.usegetTeamLazyQuery = void 0;
|
7
|
+
exports.useGetDefaultPolicySettingsLazyQuery = exports.useGetDefaultPolicySettingsQuery = exports.GetDefaultPolicySettingsDocument = exports.useGetDefaultPermissionsLazyQuery = exports.useGetDefaultPermissionsQuery = exports.GetDefaultPermissionsDocument = exports.useGetDefaultApplicationPermissionsLazyQuery = exports.useGetDefaultApplicationPermissionsQuery = exports.GetDefaultApplicationPermissionsDocument = exports.useGetContextPropertyLazyQuery = exports.useGetContextPropertyQuery = exports.GetContextPropertyDocument = exports.useGetConfigurationTargetLazyQuery = exports.useGetConfigurationTargetQuery = exports.GetConfigurationTargetDocument = exports.useDefaultResolveSettingsLazyQuery = exports.useDefaultResolveSettingsQuery = exports.DefaultResolveSettingsDocument = exports.useGetApplicationRoleLazyQuery = exports.useGetApplicationRoleQuery = exports.GetApplicationRoleDocument = exports.useGetApplicationPolicyLazyQuery = exports.useGetApplicationPolicyQuery = exports.GetApplicationPolicyDocument = exports.useUpdateConfigurationMutation = exports.UpdateConfigurationDocument = exports.useReassignConfigurationMutation = exports.ReassignConfigurationDocument = exports.useDeleteIntegrationConfigurationMutation = exports.DeleteIntegrationConfigurationDocument = exports.useCreateOrUpdateIntegrationConfigurationMutation = exports.CreateOrUpdateIntegrationConfigurationDocument = exports.useCreateIntegrationConfigurationMutation = exports.CreateIntegrationConfigurationDocument = exports.useInitializeTeamInContextMutation = exports.InitializeTeamInContextDocument = exports.useInitializeOrgNameInContextMutation = exports.InitializeOrgNameInContextDocument = exports.useInitiateConfigurationValueMutation = exports.InitiateConfigurationValueDocument = exports.useChangeOrganizationMutation = exports.ChangeOrganizationDocument = exports.useAddResourceToContextMutation = exports.AddResourceToContextDocument = exports.useAddContributionRoleMutation = exports.AddContributionRoleDocument = exports.usesidebarStateLazyQuery = exports.usesidebarStateQuery = exports.sidebarStateDocument = exports.usetoggleSidebarMutation = void 0;
|
8
|
+
exports.useGetOrgNameFromContextQuery = exports.GetOrgNameFromContextDocument = exports.useGetOrgContextLazyQuery = exports.useGetOrgContextQuery = exports.GetOrgContextDocument = exports.usegetContributionRolesLazyQuery = exports.usegetContributionRolesQuery = exports.getContributionRolesDocument = exports.useDefaultSettingsLazyQuery = exports.useDefaultSettingsQuery = exports.DefaultSettingsDocument = exports.useGetUserConfigurationLazyQuery = exports.useGetUserConfigurationQuery = exports.GetUserConfigurationDocument = exports.useGetResourcesConfigurationLazyQuery = exports.useGetResourcesConfigurationQuery = exports.GetResourcesConfigurationDocument = exports.useResolveConfigurationLazyQuery = exports.useResolveConfigurationQuery = exports.ResolveConfigurationDocument = exports.useGetOrgWithResourcesRoleLazyQuery = exports.useGetOrgWithResourcesRoleQuery = exports.GetOrgWithResourcesRoleDocument = exports.useGetOrgWithResourcesPolicyLazyQuery = exports.useGetOrgWithResourcesPolicyQuery = exports.GetOrgWithResourcesPolicyDocument = exports.useGetOrgRoleLazyQuery = exports.useGetOrgRoleQuery = exports.GetOrgRoleDocument = exports.useGetOrgPolicyLazyQuery = exports.useGetOrgPolicyQuery = exports.GetOrgPolicyDocument = exports.useGetOrgConfigurationLazyQuery = exports.useGetOrgConfigurationQuery = exports.GetOrgConfigurationDocument = exports.useOpenPreferencesSettingsLazyQuery = exports.useOpenPreferencesSettingsQuery = exports.OpenPreferencesSettingsDocument = exports.usegetUserAccessRoleLazyQuery = exports.usegetUserAccessRoleQuery = exports.getUserAccessRoleDocument = exports.useGetTeamNameFromContextLazyQuery = exports.useGetTeamNameFromContextQuery = exports.GetTeamNameFromContextDocument = exports.useGetTeamContextLazyQuery = exports.useGetTeamContextQuery = exports.GetTeamContextDocument = exports.useGetDefaultRoleLazyQuery = exports.useGetDefaultRoleQuery = exports.GetDefaultRoleDocument = void 0;
|
9
|
+
exports.useViewerSettingsLazyQuery = exports.useViewerSettingsQuery = exports.ViewerSettingsDocument = exports.useOrganizationResourceContextLazyQuery = exports.useOrganizationResourceContextQuery = exports.OrganizationResourceContextDocument = exports.usegetConfigurationDataLazyQuery = exports.usegetConfigurationDataQuery = exports.getConfigurationDataDocument = exports.useUpdateRoleValueMutation = exports.UpdateRoleValueDocument = exports.useUpdatePolicyValueMutation = exports.UpdatePolicyValueDocument = exports.useupdateOrganizationContextUpdateResourcesMutation = exports.updateOrganizationContextUpdateResourcesDocument = exports.useupdateOrganizationContextRemoveResourcesMutation = exports.updateOrganizationContextRemoveResourcesDocument = exports.useupdateOrganizationContextAddResourcesMutation = exports.updateOrganizationContextAddResourcesDocument = exports.useUpdateConfigurationValueMutation = exports.UpdateConfigurationValueDocument = exports.useUpdateConfigurationValueByUriMutation = exports.UpdateConfigurationValueByUriDocument = exports.useSubscribeToPolicyUpdateSubscription = exports.SubscribeToPolicyUpdateDocument = exports.useSubscribeToPermissionUpdateSubscription = exports.SubscribeToPermissionUpdateDocument = exports.usesubscribeToOrganizationContextSubscription = exports.subscribeToOrganizationContextDocument = exports.useSubscribeToConfigurationUpdateSubscription = exports.SubscribeToConfigurationUpdateDocument = exports.useGetUserWithDefaultConfigurationLazyQuery = exports.useGetUserWithDefaultConfigurationQuery = exports.GetUserWithDefaultConfigurationDocument = exports.useGetOrgWithResourcesConfigurationLazyQuery = exports.useGetOrgWithResourcesConfigurationQuery = exports.GetOrgWithResourcesConfigurationDocument = exports.useGetIntegrationConfigurationLazyQuery = exports.useGetIntegrationConfigurationQuery = exports.GetIntegrationConfigurationDocument = exports.useGetAllIntegrationConfigurationsLazyQuery = exports.useGetAllIntegrationConfigurationsQuery = exports.GetAllIntegrationConfigurationsDocument = exports.useFilterIntegrationConfigurationLazyQuery = exports.useFilterIntegrationConfigurationQuery = exports.FilterIntegrationConfigurationDocument = exports.usegetRoleLazyQuery = exports.usegetRoleQuery = exports.getRoleDocument = exports.useGetOrgNameFromContextLazyQuery = void 0;
|
10
10
|
const configuration_1 = require("../configuration");
|
11
11
|
Object.defineProperty(exports, "ConfigurationScope", { enumerable: true, get: function () { return configuration_1.ConfigurationScope; } });
|
12
12
|
const configuration_2 = require("../configuration");
|
@@ -374,6 +374,11 @@ var ISettingValueType;
|
|
374
374
|
ISettingValueType["NullableInteger"] = "NullableInteger";
|
375
375
|
ISettingValueType["NullableNumber"] = "NullableNumber";
|
376
376
|
})(ISettingValueType = exports.ISettingValueType || (exports.ISettingValueType = {}));
|
377
|
+
var ISortEnum;
|
378
|
+
(function (ISortEnum) {
|
379
|
+
ISortEnum["ASC"] = "ASC";
|
380
|
+
ISortEnum["DESC"] = "DESC";
|
381
|
+
})(ISortEnum = exports.ISortEnum || (exports.ISortEnum = {}));
|
377
382
|
var ISshKeyServiceAction;
|
378
383
|
(function (ISshKeyServiceAction) {
|
379
384
|
ISshKeyServiceAction["getSshKey"] = "getSshKey";
|
@@ -1175,7 +1180,7 @@ function useGetManageableOrganizationsLazyQuery(baseOptions) {
|
|
1175
1180
|
return Apollo.useLazyQuery(exports.GetManageableOrganizationsDocument, options);
|
1176
1181
|
}
|
1177
1182
|
exports.useGetManageableOrganizationsLazyQuery = useGetManageableOrganizationsLazyQuery;
|
1178
|
-
exports.GetOrgInvitationMembersDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetOrgInvitationMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getOrgInvitationMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "email" } }, { "kind": "Field", "name": { "kind": "Name", "value": "teamName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "teamId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "status" } }] } }] } }] };
|
1183
|
+
exports.GetOrgInvitationMembersDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetOrgInvitationMembers" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "offset" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "limit" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getOrgInvitationMembers" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "offset" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "offset" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "limit" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "limit" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "totalCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "data" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "email" } }, { "kind": "Field", "name": { "kind": "Name", "value": "teamName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "teamId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "status" } }] } }] } }] } }] };
|
1179
1184
|
/**
|
1180
1185
|
* __useGetOrgInvitationMembersQuery__
|
1181
1186
|
*
|
@@ -1188,6 +1193,8 @@ exports.GetOrgInvitationMembersDocument = { "kind": "Document", "definitions": [
|
|
1188
1193
|
* @example
|
1189
1194
|
* const { data, loading, error } = useGetOrgInvitationMembersQuery({
|
1190
1195
|
* variables: {
|
1196
|
+
* offset: // value for 'offset'
|
1197
|
+
* limit: // value for 'limit'
|
1191
1198
|
* },
|
1192
1199
|
* });
|
1193
1200
|
*/
|
@@ -1528,7 +1535,7 @@ function usegetUserOrganizationsWithRoleLazyQuery(baseOptions) {
|
|
1528
1535
|
return Apollo.useLazyQuery(exports.getUserOrganizationsWithRoleDocument, options);
|
1529
1536
|
}
|
1530
1537
|
exports.usegetUserOrganizationsWithRoleLazyQuery = usegetUserOrganizationsWithRoleLazyQuery;
|
1531
|
-
exports.GetOrganizationMembersDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetOrganizationMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getOrganizationMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "email" } }, { "kind": "Field", "name": { "kind": "Name", "value": "teamNames" } }, { "kind": "Field", "name": { "kind": "Name", "value": "crossCheckEmail" } }] } }] } }] };
|
1538
|
+
exports.GetOrganizationMembersDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetOrganizationMembers" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "offset" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "limit" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getOrganizationMembers" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "offset" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "offset" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "limit" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "limit" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "totalCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "data" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "email" } }, { "kind": "Field", "name": { "kind": "Name", "value": "teamNames" } }, { "kind": "Field", "name": { "kind": "Name", "value": "crossCheckEmail" } }] } }] } }] } }] };
|
1532
1539
|
/**
|
1533
1540
|
* __useGetOrganizationMembersQuery__
|
1534
1541
|
*
|
@@ -1541,6 +1548,8 @@ exports.GetOrganizationMembersDocument = { "kind": "Document", "definitions": [{
|
|
1541
1548
|
* @example
|
1542
1549
|
* const { data, loading, error } = useGetOrganizationMembersQuery({
|
1543
1550
|
* variables: {
|
1551
|
+
* offset: // value for 'offset'
|
1552
|
+
* limit: // value for 'limit'
|
1544
1553
|
* },
|
1545
1554
|
* });
|
1546
1555
|
*/
|
@@ -2831,7 +2840,7 @@ function useFilterIntegrationConfigurationLazyQuery(baseOptions) {
|
|
2831
2840
|
return Apollo.useLazyQuery(exports.FilterIntegrationConfigurationDocument, options);
|
2832
2841
|
}
|
2833
2842
|
exports.useFilterIntegrationConfigurationLazyQuery = useFilterIntegrationConfigurationLazyQuery;
|
2834
|
-
exports.GetAllIntegrationConfigurationsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetAllIntegrationConfigurations" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getAllIntegrationConfigurations" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "integrationName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "status" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "integrationInfo" } }] } }] } }] };
|
2843
|
+
exports.GetAllIntegrationConfigurationsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetAllIntegrationConfigurations" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "criteria" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "AnyObject" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "limit" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "sort" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Sort" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getAllIntegrationConfigurations" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "criteria" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "criteria" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "limit" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "limit" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "skip" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "sort" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "sort" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "totalCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "data" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "integrationName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "status" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "integrationInfo" } }] } }] } }] } }] };
|
2835
2844
|
/**
|
2836
2845
|
* __useGetAllIntegrationConfigurationsQuery__
|
2837
2846
|
*
|
@@ -2844,6 +2853,10 @@ exports.GetAllIntegrationConfigurationsDocument = { "kind": "Document", "definit
|
|
2844
2853
|
* @example
|
2845
2854
|
* const { data, loading, error } = useGetAllIntegrationConfigurationsQuery({
|
2846
2855
|
* variables: {
|
2856
|
+
* criteria: // value for 'criteria'
|
2857
|
+
* limit: // value for 'limit'
|
2858
|
+
* skip: // value for 'skip'
|
2859
|
+
* sort: // value for 'sort'
|
2847
2860
|
* },
|
2848
2861
|
* });
|
2849
2862
|
*/
|