@adminide-stack/core 3.1.1-alpha.7 → 3.1.2-alpha.0
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.
@@ -324,14 +324,17 @@ export declare enum IClientTypes {
|
|
324
324
|
Individuals = "Individuals"
|
325
325
|
}
|
326
326
|
export declare enum IConfigCollectionName {
|
327
|
-
Application = "application",
|
328
327
|
Accounts = "accounts",
|
329
|
-
|
328
|
+
Application = "application",
|
329
|
+
Clients = "clients",
|
330
|
+
IntegrationWorkflow = "integrationWorkflow",
|
330
331
|
Machines = "machines",
|
331
|
-
|
332
|
-
Teams = "teams",
|
332
|
+
Organizations = "organizations",
|
333
333
|
Projects = "projects",
|
334
|
-
|
334
|
+
Tags = "tags",
|
335
|
+
Tasks = "tasks",
|
336
|
+
Teams = "teams",
|
337
|
+
Workspaces = "workspaces"
|
335
338
|
}
|
336
339
|
export declare enum IConfigFragmentName {
|
337
340
|
Resources = "resources",
|
@@ -350,8 +353,10 @@ export declare enum IConfigFragmentName {
|
|
350
353
|
export declare type IConfiguration = IDefaultConfiguration | IMachineConfiguration | IUserConfiguration | IOrganizationConfiguration | IOrganizationResourceConfiguration;
|
351
354
|
export declare enum IConfigurationContributionNames {
|
352
355
|
DefaultPermissions = "defaultPermissions",
|
356
|
+
DefaultPolicies = "defaultPolicies",
|
353
357
|
DefaultSettings = "defaultSettings",
|
354
|
-
|
358
|
+
/** Integration settings */
|
359
|
+
Integration = "integration"
|
355
360
|
}
|
356
361
|
export declare type IConfigurationData = {
|
357
362
|
__typename?: 'ConfigurationData';
|
@@ -809,8 +814,13 @@ export declare type IIntegrationConfiguration = {
|
|
809
814
|
userId?: Maybe<Scalars['ID']>;
|
810
815
|
integrationName?: Maybe<Scalars['String']>;
|
811
816
|
status?: Maybe<Scalars['String']>;
|
817
|
+
orgName?: Maybe<Scalars['String']>;
|
812
818
|
updatedAt?: Maybe<Scalars['DateTime']>;
|
813
819
|
integrationInfo?: Maybe<Scalars['JSON']>;
|
820
|
+
/** Raw Settings Stored in DB */
|
821
|
+
settings?: Maybe<Scalars['JSON']>;
|
822
|
+
/** Settings Configuration */
|
823
|
+
settingsConfiguration?: Maybe<IMachineConfiguration>;
|
814
824
|
};
|
815
825
|
export declare type IIntegrationConfigurationCreateOrUpdateInput = {
|
816
826
|
id?: Maybe<Scalars['ID']>;
|
@@ -819,6 +829,7 @@ export declare type IIntegrationConfigurationCreateOrUpdateInput = {
|
|
819
829
|
status?: Maybe<Scalars['String']>;
|
820
830
|
integrationInfo?: Maybe<Scalars['JSON']>;
|
821
831
|
userId?: Maybe<Scalars['ID']>;
|
832
|
+
orgName?: Maybe<Scalars['String']>;
|
822
833
|
};
|
823
834
|
export declare type IIntegrationConfigurationFilterInput = {
|
824
835
|
id?: Maybe<Scalars['ID']>;
|
@@ -826,6 +837,7 @@ export declare type IIntegrationConfigurationFilterInput = {
|
|
826
837
|
integrationName?: Maybe<Scalars['String']>;
|
827
838
|
status?: Maybe<Scalars['String']>;
|
828
839
|
userId?: Maybe<Scalars['ID']>;
|
840
|
+
orgName?: Maybe<Scalars['String']>;
|
829
841
|
};
|
830
842
|
export declare type IIntegrationConfigurationInput = {
|
831
843
|
name?: Maybe<Scalars['String']>;
|
@@ -833,12 +845,17 @@ export declare type IIntegrationConfigurationInput = {
|
|
833
845
|
status?: Maybe<Scalars['String']>;
|
834
846
|
integrationInfo?: Maybe<Scalars['JSON']>;
|
835
847
|
userId?: Maybe<Scalars['ID']>;
|
848
|
+
orgName?: Maybe<Scalars['String']>;
|
836
849
|
};
|
837
850
|
export declare type IIntegrationConfigurationsOutput = {
|
838
851
|
__typename?: 'IntegrationConfigurationsOutput';
|
839
852
|
totalCount?: Maybe<Scalars['Int']>;
|
840
853
|
data?: Maybe<Array<Maybe<IIntegrationConfiguration>>>;
|
841
854
|
};
|
855
|
+
export declare type IIntegrationPreferences = {
|
856
|
+
__typename?: 'IntegrationPreferences';
|
857
|
+
dummy?: Maybe<Scalars['String']>;
|
858
|
+
};
|
842
859
|
export declare type IInviteMember = {
|
843
860
|
__typename?: 'InviteMember';
|
844
861
|
id?: Maybe<Scalars['String']>;
|
@@ -1809,6 +1826,7 @@ export declare type IPreferences = {
|
|
1809
1826
|
defaultSetting?: Maybe<Array<Maybe<ISettingsGroup>>>;
|
1810
1827
|
dummy?: Maybe<Scalars['Int']>;
|
1811
1828
|
global?: Maybe<IPreference_Global>;
|
1829
|
+
integration?: Maybe<IIntegrationPreferences>;
|
1812
1830
|
organization?: Maybe<IPreference_Organization>;
|
1813
1831
|
};
|
1814
1832
|
export declare type IPreferencesInput = {
|
@@ -3391,6 +3409,16 @@ export declare type IGetUsersQuery = ({
|
|
3391
3409
|
__typename?: 'UserAccount';
|
3392
3410
|
} & Pick<IUserAccount, 'username' | 'email'>)>>>;
|
3393
3411
|
});
|
3412
|
+
export declare type IFilterIntegrationConfigurationQueryVariables = Exact<{
|
3413
|
+
filter: IIntegrationConfigurationFilterInput;
|
3414
|
+
}>;
|
3415
|
+
export declare type IFilterIntegrationConfigurationQuery = ({
|
3416
|
+
__typename?: 'Query';
|
3417
|
+
} & {
|
3418
|
+
filterIntegrationConfiguration?: Maybe<Array<Maybe<({
|
3419
|
+
__typename?: 'IntegrationConfiguration';
|
3420
|
+
} & Pick<IIntegrationConfiguration, 'id' | 'name' | 'integrationName' | 'status' | 'updatedAt' | 'integrationInfo'>)>>>;
|
3421
|
+
});
|
3394
3422
|
export declare type IUserCreationEventFragment = ({
|
3395
3423
|
__typename?: 'UserProfile';
|
3396
3424
|
} & Pick<IUserProfile, 'name' | 'nickname' | 'picture' | 'user_id' | 'username' | 'given_name' | 'family_name' | 'email' | 'email_verified'> & {
|
@@ -3603,32 +3631,6 @@ export declare type IInitializeTeamInContextMutationVariables = Exact<{
|
|
3603
3631
|
export declare type IInitializeTeamInContextMutation = ({
|
3604
3632
|
__typename?: 'Mutation';
|
3605
3633
|
} & Pick<IMutation, 'initializeTeamInContext'>);
|
3606
|
-
export declare type ICreateIntegrationConfigurationMutationVariables = Exact<{
|
3607
|
-
data?: Maybe<IIntegrationConfigurationInput>;
|
3608
|
-
}>;
|
3609
|
-
export declare type ICreateIntegrationConfigurationMutation = ({
|
3610
|
-
__typename?: 'Mutation';
|
3611
|
-
} & {
|
3612
|
-
createIntegrationConfiguration?: Maybe<({
|
3613
|
-
__typename?: 'IntegraitonConfigurationId';
|
3614
|
-
} & Pick<IIntegraitonConfigurationId, 'id'>)>;
|
3615
|
-
});
|
3616
|
-
export declare type ICreateOrUpdateIntegrationConfigurationMutationVariables = Exact<{
|
3617
|
-
data?: Maybe<IIntegrationConfigurationCreateOrUpdateInput>;
|
3618
|
-
}>;
|
3619
|
-
export declare type ICreateOrUpdateIntegrationConfigurationMutation = ({
|
3620
|
-
__typename?: 'Mutation';
|
3621
|
-
} & {
|
3622
|
-
createOrUpdateIntegrationConfiguration?: Maybe<({
|
3623
|
-
__typename?: 'IntegraitonConfigurationId';
|
3624
|
-
} & Pick<IIntegraitonConfigurationId, 'id'>)>;
|
3625
|
-
});
|
3626
|
-
export declare type IDeleteIntegrationConfigurationMutationVariables = Exact<{
|
3627
|
-
id: Scalars['String'];
|
3628
|
-
}>;
|
3629
|
-
export declare type IDeleteIntegrationConfigurationMutation = ({
|
3630
|
-
__typename?: 'Mutation';
|
3631
|
-
} & Pick<IMutation, 'deleteIntegrationConfiguration'>);
|
3632
3634
|
export declare type IReassignConfigurationMutationVariables = Exact<{
|
3633
3635
|
[key: string]: never;
|
3634
3636
|
}>;
|
@@ -4020,43 +4022,6 @@ export declare type IGetRoleQuery = ({
|
|
4020
4022
|
__typename?: 'ApplicationRolePermission';
|
4021
4023
|
}>;
|
4022
4024
|
});
|
4023
|
-
export declare type IFilterIntegrationConfigurationQueryVariables = Exact<{
|
4024
|
-
filter: IIntegrationConfigurationFilterInput;
|
4025
|
-
}>;
|
4026
|
-
export declare type IFilterIntegrationConfigurationQuery = ({
|
4027
|
-
__typename?: 'Query';
|
4028
|
-
} & {
|
4029
|
-
filterIntegrationConfiguration?: Maybe<Array<Maybe<({
|
4030
|
-
__typename?: 'IntegrationConfiguration';
|
4031
|
-
} & Pick<IIntegrationConfiguration, 'id' | 'name' | 'integrationName' | 'status' | 'updatedAt' | 'integrationInfo'>)>>>;
|
4032
|
-
});
|
4033
|
-
export declare type IGetAllIntegrationConfigurationsQueryVariables = Exact<{
|
4034
|
-
criteria?: Maybe<Scalars['AnyObject']>;
|
4035
|
-
limit?: Maybe<Scalars['Int']>;
|
4036
|
-
skip?: Maybe<Scalars['Int']>;
|
4037
|
-
sort?: Maybe<ISort>;
|
4038
|
-
}>;
|
4039
|
-
export declare type IGetAllIntegrationConfigurationsQuery = ({
|
4040
|
-
__typename?: 'Query';
|
4041
|
-
} & {
|
4042
|
-
getAllIntegrationConfigurations?: Maybe<({
|
4043
|
-
__typename?: 'IntegrationConfigurationsOutput';
|
4044
|
-
} & Pick<IIntegrationConfigurationsOutput, 'totalCount'> & {
|
4045
|
-
data?: Maybe<Array<Maybe<({
|
4046
|
-
__typename?: 'IntegrationConfiguration';
|
4047
|
-
} & Pick<IIntegrationConfiguration, 'id' | 'name' | 'integrationName' | 'status' | 'updatedAt' | 'integrationInfo'>)>>>;
|
4048
|
-
})>;
|
4049
|
-
});
|
4050
|
-
export declare type IGetIntegrationConfigurationQueryVariables = Exact<{
|
4051
|
-
id: Scalars['String'];
|
4052
|
-
}>;
|
4053
|
-
export declare type IGetIntegrationConfigurationQuery = ({
|
4054
|
-
__typename?: 'Query';
|
4055
|
-
} & {
|
4056
|
-
getIntegrationConfiguration?: Maybe<({
|
4057
|
-
__typename?: 'IntegrationConfiguration';
|
4058
|
-
} & Pick<IIntegrationConfiguration, 'id' | 'name' | 'integrationName' | 'status' | 'updatedAt' | 'integrationInfo'>)>;
|
4059
|
-
});
|
4060
4025
|
export declare type IGetOrgWithResourcesConfigurationQueryVariables = Exact<{
|
4061
4026
|
input?: Maybe<Array<Maybe<IConfigurationInput>> | Maybe<IConfigurationInput>>;
|
4062
4027
|
}>;
|
@@ -5784,6 +5749,32 @@ export declare function useGetUsersLazyQuery(baseOptions?: Apollo.LazyQueryHookO
|
|
5784
5749
|
export declare type GetUsersQueryHookResult = ReturnType<typeof useGetUsersQuery>;
|
5785
5750
|
export declare type GetUsersLazyQueryHookResult = ReturnType<typeof useGetUsersLazyQuery>;
|
5786
5751
|
export declare type GetUsersQueryResult = Apollo.QueryResult<IGetUsersQuery, IGetUsersQueryVariables>;
|
5752
|
+
export declare const FilterIntegrationConfigurationDocument: DocumentNode;
|
5753
|
+
/**
|
5754
|
+
* __useFilterIntegrationConfigurationQuery__
|
5755
|
+
*
|
5756
|
+
* To run a query within a React component, call `useFilterIntegrationConfigurationQuery` and pass it any options that fit your needs.
|
5757
|
+
* When your component renders, `useFilterIntegrationConfigurationQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
5758
|
+
* you can use to render your UI.
|
5759
|
+
*
|
5760
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
5761
|
+
*
|
5762
|
+
* @example
|
5763
|
+
* const { data, loading, error } = useFilterIntegrationConfigurationQuery({
|
5764
|
+
* variables: {
|
5765
|
+
* filter: // value for 'filter'
|
5766
|
+
* },
|
5767
|
+
* });
|
5768
|
+
*/
|
5769
|
+
export declare function useFilterIntegrationConfigurationQuery(baseOptions: Apollo.QueryHookOptions<IFilterIntegrationConfigurationQuery, IFilterIntegrationConfigurationQueryVariables>): Apollo.QueryResult<IFilterIntegrationConfigurationQuery, Exact<{
|
5770
|
+
filter: IIntegrationConfigurationFilterInput;
|
5771
|
+
}>>;
|
5772
|
+
export declare function useFilterIntegrationConfigurationLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFilterIntegrationConfigurationQuery, IFilterIntegrationConfigurationQueryVariables>): Apollo.LazyQueryResultTuple<IFilterIntegrationConfigurationQuery, Exact<{
|
5773
|
+
filter: IIntegrationConfigurationFilterInput;
|
5774
|
+
}>>;
|
5775
|
+
export declare type FilterIntegrationConfigurationQueryHookResult = ReturnType<typeof useFilterIntegrationConfigurationQuery>;
|
5776
|
+
export declare type FilterIntegrationConfigurationLazyQueryHookResult = ReturnType<typeof useFilterIntegrationConfigurationLazyQuery>;
|
5777
|
+
export declare type FilterIntegrationConfigurationQueryResult = Apollo.QueryResult<IFilterIntegrationConfigurationQuery, IFilterIntegrationConfigurationQueryVariables>;
|
5787
5778
|
export declare const ToggleSidebarDocument: DocumentNode;
|
5788
5779
|
/**
|
5789
5780
|
* __useToggleSidebarMutation__
|
@@ -5981,78 +5972,6 @@ export declare function useInitializeTeamInContextMutation(baseOptions?: Apollo.
|
|
5981
5972
|
export declare type InitializeTeamInContextMutationHookResult = ReturnType<typeof useInitializeTeamInContextMutation>;
|
5982
5973
|
export declare type InitializeTeamInContextMutationResult = Apollo.MutationResult<IInitializeTeamInContextMutation>;
|
5983
5974
|
export declare type InitializeTeamInContextMutationOptions = Apollo.BaseMutationOptions<IInitializeTeamInContextMutation, IInitializeTeamInContextMutationVariables>;
|
5984
|
-
export declare const CreateIntegrationConfigurationDocument: DocumentNode;
|
5985
|
-
/**
|
5986
|
-
* __useCreateIntegrationConfigurationMutation__
|
5987
|
-
*
|
5988
|
-
* To run a mutation, you first call `useCreateIntegrationConfigurationMutation` within a React component and pass it any options that fit your needs.
|
5989
|
-
* When your component renders, `useCreateIntegrationConfigurationMutation` returns a tuple that includes:
|
5990
|
-
* - A mutate function that you can call at any time to execute the mutation
|
5991
|
-
* - An object with fields that represent the current status of the mutation's execution
|
5992
|
-
*
|
5993
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
5994
|
-
*
|
5995
|
-
* @example
|
5996
|
-
* const [createIntegrationConfigurationMutation, { data, loading, error }] = useCreateIntegrationConfigurationMutation({
|
5997
|
-
* variables: {
|
5998
|
-
* data: // value for 'data'
|
5999
|
-
* },
|
6000
|
-
* });
|
6001
|
-
*/
|
6002
|
-
export declare function useCreateIntegrationConfigurationMutation(baseOptions?: Apollo.MutationHookOptions<ICreateIntegrationConfigurationMutation, ICreateIntegrationConfigurationMutationVariables>): Apollo.MutationTuple<ICreateIntegrationConfigurationMutation, Exact<{
|
6003
|
-
data?: IIntegrationConfigurationInput;
|
6004
|
-
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
6005
|
-
export declare type CreateIntegrationConfigurationMutationHookResult = ReturnType<typeof useCreateIntegrationConfigurationMutation>;
|
6006
|
-
export declare type CreateIntegrationConfigurationMutationResult = Apollo.MutationResult<ICreateIntegrationConfigurationMutation>;
|
6007
|
-
export declare type CreateIntegrationConfigurationMutationOptions = Apollo.BaseMutationOptions<ICreateIntegrationConfigurationMutation, ICreateIntegrationConfigurationMutationVariables>;
|
6008
|
-
export declare const CreateOrUpdateIntegrationConfigurationDocument: DocumentNode;
|
6009
|
-
/**
|
6010
|
-
* __useCreateOrUpdateIntegrationConfigurationMutation__
|
6011
|
-
*
|
6012
|
-
* To run a mutation, you first call `useCreateOrUpdateIntegrationConfigurationMutation` within a React component and pass it any options that fit your needs.
|
6013
|
-
* When your component renders, `useCreateOrUpdateIntegrationConfigurationMutation` returns a tuple that includes:
|
6014
|
-
* - A mutate function that you can call at any time to execute the mutation
|
6015
|
-
* - An object with fields that represent the current status of the mutation's execution
|
6016
|
-
*
|
6017
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
6018
|
-
*
|
6019
|
-
* @example
|
6020
|
-
* const [createOrUpdateIntegrationConfigurationMutation, { data, loading, error }] = useCreateOrUpdateIntegrationConfigurationMutation({
|
6021
|
-
* variables: {
|
6022
|
-
* data: // value for 'data'
|
6023
|
-
* },
|
6024
|
-
* });
|
6025
|
-
*/
|
6026
|
-
export declare function useCreateOrUpdateIntegrationConfigurationMutation(baseOptions?: Apollo.MutationHookOptions<ICreateOrUpdateIntegrationConfigurationMutation, ICreateOrUpdateIntegrationConfigurationMutationVariables>): Apollo.MutationTuple<ICreateOrUpdateIntegrationConfigurationMutation, Exact<{
|
6027
|
-
data?: IIntegrationConfigurationCreateOrUpdateInput;
|
6028
|
-
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
6029
|
-
export declare type CreateOrUpdateIntegrationConfigurationMutationHookResult = ReturnType<typeof useCreateOrUpdateIntegrationConfigurationMutation>;
|
6030
|
-
export declare type CreateOrUpdateIntegrationConfigurationMutationResult = Apollo.MutationResult<ICreateOrUpdateIntegrationConfigurationMutation>;
|
6031
|
-
export declare type CreateOrUpdateIntegrationConfigurationMutationOptions = Apollo.BaseMutationOptions<ICreateOrUpdateIntegrationConfigurationMutation, ICreateOrUpdateIntegrationConfigurationMutationVariables>;
|
6032
|
-
export declare const DeleteIntegrationConfigurationDocument: DocumentNode;
|
6033
|
-
/**
|
6034
|
-
* __useDeleteIntegrationConfigurationMutation__
|
6035
|
-
*
|
6036
|
-
* To run a mutation, you first call `useDeleteIntegrationConfigurationMutation` within a React component and pass it any options that fit your needs.
|
6037
|
-
* When your component renders, `useDeleteIntegrationConfigurationMutation` returns a tuple that includes:
|
6038
|
-
* - A mutate function that you can call at any time to execute the mutation
|
6039
|
-
* - An object with fields that represent the current status of the mutation's execution
|
6040
|
-
*
|
6041
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
6042
|
-
*
|
6043
|
-
* @example
|
6044
|
-
* const [deleteIntegrationConfigurationMutation, { data, loading, error }] = useDeleteIntegrationConfigurationMutation({
|
6045
|
-
* variables: {
|
6046
|
-
* id: // value for 'id'
|
6047
|
-
* },
|
6048
|
-
* });
|
6049
|
-
*/
|
6050
|
-
export declare function useDeleteIntegrationConfigurationMutation(baseOptions?: Apollo.MutationHookOptions<IDeleteIntegrationConfigurationMutation, IDeleteIntegrationConfigurationMutationVariables>): Apollo.MutationTuple<IDeleteIntegrationConfigurationMutation, Exact<{
|
6051
|
-
id: string;
|
6052
|
-
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
6053
|
-
export declare type DeleteIntegrationConfigurationMutationHookResult = ReturnType<typeof useDeleteIntegrationConfigurationMutation>;
|
6054
|
-
export declare type DeleteIntegrationConfigurationMutationResult = Apollo.MutationResult<IDeleteIntegrationConfigurationMutation>;
|
6055
|
-
export declare type DeleteIntegrationConfigurationMutationOptions = Apollo.BaseMutationOptions<IDeleteIntegrationConfigurationMutation, IDeleteIntegrationConfigurationMutationVariables>;
|
6056
5975
|
export declare const ReassignConfigurationDocument: DocumentNode;
|
6057
5976
|
/**
|
6058
5977
|
* __useReassignConfigurationMutation__
|
@@ -6795,93 +6714,6 @@ export declare function useGetRoleLazyQuery(baseOptions?: Apollo.LazyQueryHookOp
|
|
6795
6714
|
export declare type GetRoleQueryHookResult = ReturnType<typeof useGetRoleQuery>;
|
6796
6715
|
export declare type GetRoleLazyQueryHookResult = ReturnType<typeof useGetRoleLazyQuery>;
|
6797
6716
|
export declare type GetRoleQueryResult = Apollo.QueryResult<IGetRoleQuery, IGetRoleQueryVariables>;
|
6798
|
-
export declare const FilterIntegrationConfigurationDocument: DocumentNode;
|
6799
|
-
/**
|
6800
|
-
* __useFilterIntegrationConfigurationQuery__
|
6801
|
-
*
|
6802
|
-
* To run a query within a React component, call `useFilterIntegrationConfigurationQuery` and pass it any options that fit your needs.
|
6803
|
-
* When your component renders, `useFilterIntegrationConfigurationQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
6804
|
-
* you can use to render your UI.
|
6805
|
-
*
|
6806
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
6807
|
-
*
|
6808
|
-
* @example
|
6809
|
-
* const { data, loading, error } = useFilterIntegrationConfigurationQuery({
|
6810
|
-
* variables: {
|
6811
|
-
* filter: // value for 'filter'
|
6812
|
-
* },
|
6813
|
-
* });
|
6814
|
-
*/
|
6815
|
-
export declare function useFilterIntegrationConfigurationQuery(baseOptions: Apollo.QueryHookOptions<IFilterIntegrationConfigurationQuery, IFilterIntegrationConfigurationQueryVariables>): Apollo.QueryResult<IFilterIntegrationConfigurationQuery, Exact<{
|
6816
|
-
filter: IIntegrationConfigurationFilterInput;
|
6817
|
-
}>>;
|
6818
|
-
export declare function useFilterIntegrationConfigurationLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFilterIntegrationConfigurationQuery, IFilterIntegrationConfigurationQueryVariables>): Apollo.LazyQueryResultTuple<IFilterIntegrationConfigurationQuery, Exact<{
|
6819
|
-
filter: IIntegrationConfigurationFilterInput;
|
6820
|
-
}>>;
|
6821
|
-
export declare type FilterIntegrationConfigurationQueryHookResult = ReturnType<typeof useFilterIntegrationConfigurationQuery>;
|
6822
|
-
export declare type FilterIntegrationConfigurationLazyQueryHookResult = ReturnType<typeof useFilterIntegrationConfigurationLazyQuery>;
|
6823
|
-
export declare type FilterIntegrationConfigurationQueryResult = Apollo.QueryResult<IFilterIntegrationConfigurationQuery, IFilterIntegrationConfigurationQueryVariables>;
|
6824
|
-
export declare const GetAllIntegrationConfigurationsDocument: DocumentNode;
|
6825
|
-
/**
|
6826
|
-
* __useGetAllIntegrationConfigurationsQuery__
|
6827
|
-
*
|
6828
|
-
* To run a query within a React component, call `useGetAllIntegrationConfigurationsQuery` and pass it any options that fit your needs.
|
6829
|
-
* When your component renders, `useGetAllIntegrationConfigurationsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
6830
|
-
* you can use to render your UI.
|
6831
|
-
*
|
6832
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
6833
|
-
*
|
6834
|
-
* @example
|
6835
|
-
* const { data, loading, error } = useGetAllIntegrationConfigurationsQuery({
|
6836
|
-
* variables: {
|
6837
|
-
* criteria: // value for 'criteria'
|
6838
|
-
* limit: // value for 'limit'
|
6839
|
-
* skip: // value for 'skip'
|
6840
|
-
* sort: // value for 'sort'
|
6841
|
-
* },
|
6842
|
-
* });
|
6843
|
-
*/
|
6844
|
-
export declare function useGetAllIntegrationConfigurationsQuery(baseOptions?: Apollo.QueryHookOptions<IGetAllIntegrationConfigurationsQuery, IGetAllIntegrationConfigurationsQueryVariables>): Apollo.QueryResult<IGetAllIntegrationConfigurationsQuery, Exact<{
|
6845
|
-
criteria?: any;
|
6846
|
-
limit?: number;
|
6847
|
-
skip?: number;
|
6848
|
-
sort?: ISort;
|
6849
|
-
}>>;
|
6850
|
-
export declare function useGetAllIntegrationConfigurationsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetAllIntegrationConfigurationsQuery, IGetAllIntegrationConfigurationsQueryVariables>): Apollo.LazyQueryResultTuple<IGetAllIntegrationConfigurationsQuery, Exact<{
|
6851
|
-
criteria?: any;
|
6852
|
-
limit?: number;
|
6853
|
-
skip?: number;
|
6854
|
-
sort?: ISort;
|
6855
|
-
}>>;
|
6856
|
-
export declare type GetAllIntegrationConfigurationsQueryHookResult = ReturnType<typeof useGetAllIntegrationConfigurationsQuery>;
|
6857
|
-
export declare type GetAllIntegrationConfigurationsLazyQueryHookResult = ReturnType<typeof useGetAllIntegrationConfigurationsLazyQuery>;
|
6858
|
-
export declare type GetAllIntegrationConfigurationsQueryResult = Apollo.QueryResult<IGetAllIntegrationConfigurationsQuery, IGetAllIntegrationConfigurationsQueryVariables>;
|
6859
|
-
export declare const GetIntegrationConfigurationDocument: DocumentNode;
|
6860
|
-
/**
|
6861
|
-
* __useGetIntegrationConfigurationQuery__
|
6862
|
-
*
|
6863
|
-
* To run a query within a React component, call `useGetIntegrationConfigurationQuery` and pass it any options that fit your needs.
|
6864
|
-
* When your component renders, `useGetIntegrationConfigurationQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
6865
|
-
* you can use to render your UI.
|
6866
|
-
*
|
6867
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
6868
|
-
*
|
6869
|
-
* @example
|
6870
|
-
* const { data, loading, error } = useGetIntegrationConfigurationQuery({
|
6871
|
-
* variables: {
|
6872
|
-
* id: // value for 'id'
|
6873
|
-
* },
|
6874
|
-
* });
|
6875
|
-
*/
|
6876
|
-
export declare function useGetIntegrationConfigurationQuery(baseOptions: Apollo.QueryHookOptions<IGetIntegrationConfigurationQuery, IGetIntegrationConfigurationQueryVariables>): Apollo.QueryResult<IGetIntegrationConfigurationQuery, Exact<{
|
6877
|
-
id: string;
|
6878
|
-
}>>;
|
6879
|
-
export declare function useGetIntegrationConfigurationLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetIntegrationConfigurationQuery, IGetIntegrationConfigurationQueryVariables>): Apollo.LazyQueryResultTuple<IGetIntegrationConfigurationQuery, Exact<{
|
6880
|
-
id: string;
|
6881
|
-
}>>;
|
6882
|
-
export declare type GetIntegrationConfigurationQueryHookResult = ReturnType<typeof useGetIntegrationConfigurationQuery>;
|
6883
|
-
export declare type GetIntegrationConfigurationLazyQueryHookResult = ReturnType<typeof useGetIntegrationConfigurationLazyQuery>;
|
6884
|
-
export declare type GetIntegrationConfigurationQueryResult = Apollo.QueryResult<IGetIntegrationConfigurationQuery, IGetIntegrationConfigurationQueryVariables>;
|
6885
6717
|
export declare const GetOrgWithResourcesConfigurationDocument: DocumentNode;
|
6886
6718
|
/**
|
6887
6719
|
* __useGetOrgWithResourcesConfigurationQuery__
|
@@ -7438,6 +7270,7 @@ export declare type IResolversTypes = {
|
|
7438
7270
|
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
7439
7271
|
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
7440
7272
|
IntegrationConfigurationsOutput: ResolverTypeWrapper<IIntegrationConfigurationsOutput>;
|
7273
|
+
IntegrationPreferences: ResolverTypeWrapper<IIntegrationPreferences>;
|
7441
7274
|
InviteMember: ResolverTypeWrapper<IInviteMember>;
|
7442
7275
|
InviteStatus: IInviteStatus;
|
7443
7276
|
JSON: ResolverTypeWrapper<Scalars['JSON']>;
|
@@ -7695,6 +7528,7 @@ export declare type IResolversParentTypes = {
|
|
7695
7528
|
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
7696
7529
|
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
7697
7530
|
IntegrationConfigurationsOutput: IIntegrationConfigurationsOutput;
|
7531
|
+
IntegrationPreferences: IIntegrationPreferences;
|
7698
7532
|
InviteMember: IInviteMember;
|
7699
7533
|
JSON: Scalars['JSON'];
|
7700
7534
|
JSONObject: Scalars['JSONObject'];
|
@@ -8321,8 +8155,11 @@ export declare type IIntegrationConfigurationResolvers<ContextType = MyContext,
|
|
8321
8155
|
userId?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
8322
8156
|
integrationName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8323
8157
|
status?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8158
|
+
orgName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8324
8159
|
updatedAt?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
8325
8160
|
integrationInfo?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
|
8161
|
+
settings?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
|
8162
|
+
settingsConfiguration?: Resolver<Maybe<IResolversTypes['MachineConfiguration']>, ParentType, ContextType>;
|
8326
8163
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8327
8164
|
};
|
8328
8165
|
export declare type IIntegrationConfigurationsOutputResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IntegrationConfigurationsOutput'] = IResolversParentTypes['IntegrationConfigurationsOutput']> = {
|
@@ -8330,6 +8167,10 @@ export declare type IIntegrationConfigurationsOutputResolvers<ContextType = MyCo
|
|
8330
8167
|
data?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType>;
|
8331
8168
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8332
8169
|
};
|
8170
|
+
export declare type IIntegrationPreferencesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IntegrationPreferences'] = IResolversParentTypes['IntegrationPreferences']> = {
|
8171
|
+
dummy?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8172
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8173
|
+
};
|
8333
8174
|
export declare type IInviteMemberResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['InviteMember'] = IResolversParentTypes['InviteMember']> = {
|
8334
8175
|
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8335
8176
|
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -8736,6 +8577,7 @@ export declare type IPreferencesResolvers<ContextType = MyContext, ParentType ex
|
|
8736
8577
|
defaultSetting?: Resolver<Maybe<Array<Maybe<IResolversTypes['SettingsGroup']>>>, ParentType, ContextType>;
|
8737
8578
|
dummy?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
8738
8579
|
global?: Resolver<Maybe<IResolversTypes['Preference_Global']>, ParentType, ContextType>;
|
8580
|
+
integration?: Resolver<Maybe<IResolversTypes['IntegrationPreferences']>, ParentType, ContextType>;
|
8739
8581
|
organization?: Resolver<Maybe<IResolversTypes['Preference_Organization']>, ParentType, ContextType>;
|
8740
8582
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8741
8583
|
};
|
@@ -9243,6 +9085,7 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9243
9085
|
IntegraitonConfigurationId?: IIntegraitonConfigurationIdResolvers<ContextType>;
|
9244
9086
|
IntegrationConfiguration?: IIntegrationConfigurationResolvers<ContextType>;
|
9245
9087
|
IntegrationConfigurationsOutput?: IIntegrationConfigurationsOutputResolvers<ContextType>;
|
9088
|
+
IntegrationPreferences?: IIntegrationPreferencesResolvers<ContextType>;
|
9246
9089
|
InviteMember?: IInviteMemberResolvers<ContextType>;
|
9247
9090
|
JSON?: GraphQLScalarType;
|
9248
9091
|
JSONObject?: GraphQLScalarType;
|