@harnessio/react-integration-manager-client 0.3.12 → 0.3.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/integration-manager/src/services/hooks/useDeleteIntegrationConfigMutation.d.ts +17 -0
- package/dist/integration-manager/src/services/hooks/useDeleteIntegrationConfigMutation.js +14 -0
- package/dist/integration-manager/src/services/hooks/useDeleteIntegrationConfigOrgMutation.d.ts +18 -0
- package/dist/integration-manager/src/services/hooks/useDeleteIntegrationConfigOrgMutation.js +14 -0
- package/dist/integration-manager/src/services/hooks/useDeleteIntegrationConfigProjectMutation.d.ts +19 -0
- package/dist/integration-manager/src/services/hooks/useDeleteIntegrationConfigProjectMutation.js +14 -0
- package/dist/integration-manager/src/services/hooks/useSyncNowProjectMutation.d.ts +20 -0
- package/dist/integration-manager/src/services/hooks/useSyncNowProjectMutation.js +14 -0
- package/dist/integration-manager/src/services/index.d.ts +8 -0
- package/dist/integration-manager/src/services/index.js +4 -0
- package/dist/integration-manager/src/services/schemas/OpenapiCreateAirbyteIntegrationConfigOrgRequest.d.ts +1 -0
- package/dist/integration-manager/src/services/schemas/OpenapiCreateAirbyteIntegrationConfigProjectRequest.d.ts +1 -0
- package/dist/integration-manager/src/services/schemas/OpenapiCreateAirbyteIntegrationConfigRequest.d.ts +1 -0
- package/dist/integration-manager/src/services/schemas/OpenapiUpdateAirbyteIntegrationConfigOrgRequest.d.ts +1 -0
- package/dist/integration-manager/src/services/schemas/OpenapiUpdateAirbyteIntegrationConfigProjectRequest.d.ts +1 -0
- package/dist/integration-manager/src/services/schemas/OpenapiUpdateAirbyteIntegrationConfigRequest.d.ts +1 -0
- package/dist/integration-manager/src/services/schemas/TypesIntegrationConfig.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { ApierrorsErrorResponse } from '../schemas/ApierrorsErrorResponse';
|
|
3
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
4
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
|
+
export interface DeleteIntegrationConfigMutationPathParams {
|
|
6
|
+
accountIdentifier: string;
|
|
7
|
+
integrationconfig_identifier: string;
|
|
8
|
+
}
|
|
9
|
+
export type DeleteIntegrationConfigOkResponse = ResponseWithPagination<unknown>;
|
|
10
|
+
export type DeleteIntegrationConfigErrorResponse = ApierrorsErrorResponse;
|
|
11
|
+
export interface DeleteIntegrationConfigProps extends DeleteIntegrationConfigMutationPathParams, Omit<FetcherOptions<unknown, unknown>, 'url'> {
|
|
12
|
+
}
|
|
13
|
+
export declare function deleteIntegrationConfig(props: DeleteIntegrationConfigProps): Promise<DeleteIntegrationConfigOkResponse>;
|
|
14
|
+
/**
|
|
15
|
+
* Soft-deletes the integration (sets is_deleted). Removes entity relations, mappings, schemas, airbyte connector/state. Notifies k8s-agent to stop sync and delete configs. Entity data is cleaned eventually by a cron job. Returns 204 No Content.
|
|
16
|
+
*/
|
|
17
|
+
export declare function useDeleteIntegrationConfigMutation(options?: Omit<UseMutationOptions<DeleteIntegrationConfigOkResponse, DeleteIntegrationConfigErrorResponse, DeleteIntegrationConfigProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<DeleteIntegrationConfigOkResponse, ApierrorsErrorResponse, DeleteIntegrationConfigProps, unknown>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useMutation } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
|
+
export function deleteIntegrationConfig(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/api/v1/accounts/${props.accountIdentifier}/integration-configs/${props.integrationconfig_identifier}`, method: 'DELETE' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Soft-deletes the integration (sets is_deleted). Removes entity relations, mappings, schemas, airbyte connector/state. Notifies k8s-agent to stop sync and delete configs. Entity data is cleaned eventually by a cron job. Returns 204 No Content.
|
|
11
|
+
*/
|
|
12
|
+
export function useDeleteIntegrationConfigMutation(options) {
|
|
13
|
+
return useMutation((mutateProps) => deleteIntegrationConfig(mutateProps), options);
|
|
14
|
+
}
|
package/dist/integration-manager/src/services/hooks/useDeleteIntegrationConfigOrgMutation.d.ts
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { ApierrorsErrorResponse } from '../schemas/ApierrorsErrorResponse';
|
|
3
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
4
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
|
+
export interface DeleteIntegrationConfigOrgMutationPathParams {
|
|
6
|
+
accountIdentifier: string;
|
|
7
|
+
orgIdentifier: string;
|
|
8
|
+
integrationconfig_identifier: string;
|
|
9
|
+
}
|
|
10
|
+
export type DeleteIntegrationConfigOrgOkResponse = ResponseWithPagination<unknown>;
|
|
11
|
+
export type DeleteIntegrationConfigOrgErrorResponse = ApierrorsErrorResponse;
|
|
12
|
+
export interface DeleteIntegrationConfigOrgProps extends DeleteIntegrationConfigOrgMutationPathParams, Omit<FetcherOptions<unknown, unknown>, 'url'> {
|
|
13
|
+
}
|
|
14
|
+
export declare function deleteIntegrationConfigOrg(props: DeleteIntegrationConfigOrgProps): Promise<DeleteIntegrationConfigOrgOkResponse>;
|
|
15
|
+
/**
|
|
16
|
+
* Delete integration configuration at organization level
|
|
17
|
+
*/
|
|
18
|
+
export declare function useDeleteIntegrationConfigOrgMutation(options?: Omit<UseMutationOptions<DeleteIntegrationConfigOrgOkResponse, DeleteIntegrationConfigOrgErrorResponse, DeleteIntegrationConfigOrgProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<DeleteIntegrationConfigOrgOkResponse, ApierrorsErrorResponse, DeleteIntegrationConfigOrgProps, unknown>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useMutation } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
|
+
export function deleteIntegrationConfigOrg(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/api/v1/accounts/${props.accountIdentifier}/orgs/${props.orgIdentifier}/integration-configs/${props.integrationconfig_identifier}`, method: 'DELETE' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Delete integration configuration at organization level
|
|
11
|
+
*/
|
|
12
|
+
export function useDeleteIntegrationConfigOrgMutation(options) {
|
|
13
|
+
return useMutation((mutateProps) => deleteIntegrationConfigOrg(mutateProps), options);
|
|
14
|
+
}
|
package/dist/integration-manager/src/services/hooks/useDeleteIntegrationConfigProjectMutation.d.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { ApierrorsErrorResponse } from '../schemas/ApierrorsErrorResponse';
|
|
3
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
4
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
|
+
export interface DeleteIntegrationConfigProjectMutationPathParams {
|
|
6
|
+
accountIdentifier: string;
|
|
7
|
+
orgIdentifier: string;
|
|
8
|
+
projectIdentifier: string;
|
|
9
|
+
integrationconfig_identifier: string;
|
|
10
|
+
}
|
|
11
|
+
export type DeleteIntegrationConfigProjectOkResponse = ResponseWithPagination<unknown>;
|
|
12
|
+
export type DeleteIntegrationConfigProjectErrorResponse = ApierrorsErrorResponse;
|
|
13
|
+
export interface DeleteIntegrationConfigProjectProps extends DeleteIntegrationConfigProjectMutationPathParams, Omit<FetcherOptions<unknown, unknown>, 'url'> {
|
|
14
|
+
}
|
|
15
|
+
export declare function deleteIntegrationConfigProject(props: DeleteIntegrationConfigProjectProps): Promise<DeleteIntegrationConfigProjectOkResponse>;
|
|
16
|
+
/**
|
|
17
|
+
* Delete integration configuration at project level
|
|
18
|
+
*/
|
|
19
|
+
export declare function useDeleteIntegrationConfigProjectMutation(options?: Omit<UseMutationOptions<DeleteIntegrationConfigProjectOkResponse, DeleteIntegrationConfigProjectErrorResponse, DeleteIntegrationConfigProjectProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<DeleteIntegrationConfigProjectOkResponse, ApierrorsErrorResponse, DeleteIntegrationConfigProjectProps, unknown>;
|
package/dist/integration-manager/src/services/hooks/useDeleteIntegrationConfigProjectMutation.js
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useMutation } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
|
+
export function deleteIntegrationConfigProject(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/api/v1/accounts/${props.accountIdentifier}/orgs/${props.orgIdentifier}/projects/${props.projectIdentifier}/integration-configs/${props.integrationconfig_identifier}`, method: 'DELETE' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Delete integration configuration at project level
|
|
11
|
+
*/
|
|
12
|
+
export function useDeleteIntegrationConfigProjectMutation(options) {
|
|
13
|
+
return useMutation((mutateProps) => deleteIntegrationConfigProject(mutateProps), options);
|
|
14
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { TypesAirbyteTriggerSyncResult } from '../schemas/TypesAirbyteTriggerSyncResult';
|
|
3
|
+
import type { ApierrorsErrorResponse } from '../schemas/ApierrorsErrorResponse';
|
|
4
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
5
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
|
+
export interface SyncNowProjectMutationPathParams {
|
|
7
|
+
accountIdentifier: string;
|
|
8
|
+
orgIdentifier: string;
|
|
9
|
+
projectIdentifier: string;
|
|
10
|
+
integrationconfig_identifier: string;
|
|
11
|
+
}
|
|
12
|
+
export type SyncNowProjectOkResponse = ResponseWithPagination<TypesAirbyteTriggerSyncResult>;
|
|
13
|
+
export type SyncNowProjectErrorResponse = ApierrorsErrorResponse;
|
|
14
|
+
export interface SyncNowProjectProps extends SyncNowProjectMutationPathParams, Omit<FetcherOptions<unknown, unknown>, 'url'> {
|
|
15
|
+
}
|
|
16
|
+
export declare function syncNowProject(props: SyncNowProjectProps): Promise<SyncNowProjectOkResponse>;
|
|
17
|
+
/**
|
|
18
|
+
* Triggers an immediate sync for the integration at project level. Supported for Airbyte-mode integrations (e.g. ServiceNow). Returns the sync result including success status, logs, and any error details.
|
|
19
|
+
*/
|
|
20
|
+
export declare function useSyncNowProjectMutation(options?: Omit<UseMutationOptions<SyncNowProjectOkResponse, SyncNowProjectErrorResponse, SyncNowProjectProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<SyncNowProjectOkResponse, ApierrorsErrorResponse, SyncNowProjectProps, unknown>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useMutation } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
|
+
export function syncNowProject(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/api/v1/accounts/${props.accountIdentifier}/orgs/${props.orgIdentifier}/projects/${props.projectIdentifier}/integration-configs/${props.integrationconfig_identifier}/airbyte-sync`, method: 'POST' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Triggers an immediate sync for the integration at project level. Supported for Airbyte-mode integrations (e.g. ServiceNow). Returns the sync result including success status, logs, and any error details.
|
|
11
|
+
*/
|
|
12
|
+
export function useSyncNowProjectMutation(options) {
|
|
13
|
+
return useMutation((mutateProps) => syncNowProject(mutateProps), options);
|
|
14
|
+
}
|
|
@@ -15,6 +15,12 @@ export type { CreateIntegrationConfigProjectErrorResponse, CreateIntegrationConf
|
|
|
15
15
|
export { createIntegrationConfigProject, useCreateIntegrationConfigProjectMutation, } from './hooks/useCreateIntegrationConfigProjectMutation';
|
|
16
16
|
export type { DeleteAgentErrorResponse, DeleteAgentMutationPathParams, DeleteAgentOkResponse, DeleteAgentProps, } from './hooks/useDeleteAgentMutation';
|
|
17
17
|
export { deleteAgent, useDeleteAgentMutation } from './hooks/useDeleteAgentMutation';
|
|
18
|
+
export type { DeleteIntegrationConfigErrorResponse, DeleteIntegrationConfigMutationPathParams, DeleteIntegrationConfigOkResponse, DeleteIntegrationConfigProps, } from './hooks/useDeleteIntegrationConfigMutation';
|
|
19
|
+
export { deleteIntegrationConfig, useDeleteIntegrationConfigMutation, } from './hooks/useDeleteIntegrationConfigMutation';
|
|
20
|
+
export type { DeleteIntegrationConfigOrgErrorResponse, DeleteIntegrationConfigOrgMutationPathParams, DeleteIntegrationConfigOrgOkResponse, DeleteIntegrationConfigOrgProps, } from './hooks/useDeleteIntegrationConfigOrgMutation';
|
|
21
|
+
export { deleteIntegrationConfigOrg, useDeleteIntegrationConfigOrgMutation, } from './hooks/useDeleteIntegrationConfigOrgMutation';
|
|
22
|
+
export type { DeleteIntegrationConfigProjectErrorResponse, DeleteIntegrationConfigProjectMutationPathParams, DeleteIntegrationConfigProjectOkResponse, DeleteIntegrationConfigProjectProps, } from './hooks/useDeleteIntegrationConfigProjectMutation';
|
|
23
|
+
export { deleteIntegrationConfigProject, useDeleteIntegrationConfigProjectMutation, } from './hooks/useDeleteIntegrationConfigProjectMutation';
|
|
18
24
|
export type { DownloadAgentYamlErrorResponse, DownloadAgentYamlOkResponse, DownloadAgentYamlProps, DownloadAgentYamlQueryPathParams, } from './hooks/useDownloadAgentYamlQuery';
|
|
19
25
|
export { downloadAgentYaml, useDownloadAgentYamlQuery } from './hooks/useDownloadAgentYamlQuery';
|
|
20
26
|
export type { FetchAirbyteConnectorCatalogErrorResponse, FetchAirbyteConnectorCatalogMutationPathParams, FetchAirbyteConnectorCatalogOkResponse, FetchAirbyteConnectorCatalogProps, FetchAirbyteConnectorCatalogRequestBody, } from './hooks/useFetchAirbyteConnectorCatalogMutation';
|
|
@@ -49,6 +55,8 @@ export type { ListIntegrationConfigsErrorResponse, ListIntegrationConfigsOkRespo
|
|
|
49
55
|
export { listIntegrationConfigs, useListIntegrationConfigsQuery, } from './hooks/useListIntegrationConfigsQuery';
|
|
50
56
|
export type { SyncNowErrorResponse, SyncNowMutationPathParams, SyncNowOkResponse, SyncNowProps, } from './hooks/useSyncNowMutation';
|
|
51
57
|
export { syncNow, useSyncNowMutation } from './hooks/useSyncNowMutation';
|
|
58
|
+
export type { SyncNowProjectErrorResponse, SyncNowProjectMutationPathParams, SyncNowProjectOkResponse, SyncNowProjectProps, } from './hooks/useSyncNowProjectMutation';
|
|
59
|
+
export { syncNowProject, useSyncNowProjectMutation } from './hooks/useSyncNowProjectMutation';
|
|
52
60
|
export type { TriggerSyncErrorResponse, TriggerSyncMutationPathParams, TriggerSyncOkResponse, TriggerSyncProps, } from './hooks/useTriggerSyncMutation';
|
|
53
61
|
export { triggerSync, useTriggerSyncMutation } from './hooks/useTriggerSyncMutation';
|
|
54
62
|
export type { TriggerSyncOrgErrorResponse, TriggerSyncOrgMutationPathParams, TriggerSyncOrgOkResponse, TriggerSyncOrgProps, } from './hooks/useTriggerSyncOrgMutation';
|
|
@@ -6,6 +6,9 @@ export { createIntegrationConfig, useCreateIntegrationConfigMutation, } from './
|
|
|
6
6
|
export { createIntegrationConfigOrg, useCreateIntegrationConfigOrgMutation, } from './hooks/useCreateIntegrationConfigOrgMutation';
|
|
7
7
|
export { createIntegrationConfigProject, useCreateIntegrationConfigProjectMutation, } from './hooks/useCreateIntegrationConfigProjectMutation';
|
|
8
8
|
export { deleteAgent, useDeleteAgentMutation } from './hooks/useDeleteAgentMutation';
|
|
9
|
+
export { deleteIntegrationConfig, useDeleteIntegrationConfigMutation, } from './hooks/useDeleteIntegrationConfigMutation';
|
|
10
|
+
export { deleteIntegrationConfigOrg, useDeleteIntegrationConfigOrgMutation, } from './hooks/useDeleteIntegrationConfigOrgMutation';
|
|
11
|
+
export { deleteIntegrationConfigProject, useDeleteIntegrationConfigProjectMutation, } from './hooks/useDeleteIntegrationConfigProjectMutation';
|
|
9
12
|
export { downloadAgentYaml, useDownloadAgentYamlQuery } from './hooks/useDownloadAgentYamlQuery';
|
|
10
13
|
export { fetchAirbyteConnectorCatalog, useFetchAirbyteConnectorCatalogMutation, } from './hooks/useFetchAirbyteConnectorCatalogMutation';
|
|
11
14
|
export { getAgent, useGetAgentQuery } from './hooks/useGetAgentQuery';
|
|
@@ -23,6 +26,7 @@ export { listIntegrationConfigsOrg, useListIntegrationConfigsOrgQuery, } from '.
|
|
|
23
26
|
export { listIntegrationConfigsProject, useListIntegrationConfigsProjectQuery, } from './hooks/useListIntegrationConfigsProjectQuery';
|
|
24
27
|
export { listIntegrationConfigs, useListIntegrationConfigsQuery, } from './hooks/useListIntegrationConfigsQuery';
|
|
25
28
|
export { syncNow, useSyncNowMutation } from './hooks/useSyncNowMutation';
|
|
29
|
+
export { syncNowProject, useSyncNowProjectMutation } from './hooks/useSyncNowProjectMutation';
|
|
26
30
|
export { triggerSync, useTriggerSyncMutation } from './hooks/useTriggerSyncMutation';
|
|
27
31
|
export { triggerSyncOrg, useTriggerSyncOrgMutation } from './hooks/useTriggerSyncOrgMutation';
|
|
28
32
|
export { triggerSyncProject, useTriggerSyncProjectMutation, } from './hooks/useTriggerSyncProjectMutation';
|
|
@@ -3,6 +3,7 @@ import type { TypesFieldMapping } from '../schemas/TypesFieldMapping';
|
|
|
3
3
|
import type { EnumIntegrationType } from '../schemas/EnumIntegrationType';
|
|
4
4
|
import type { TypesMappingConfig } from '../schemas/TypesMappingConfig';
|
|
5
5
|
export interface OpenapiCreateAirbyteIntegrationConfigOrgRequest {
|
|
6
|
+
auto_import?: boolean | null;
|
|
6
7
|
discovered_catalog?: TypesAirbyteCatalogDiscovered;
|
|
7
8
|
entity_mappings_per_kind?: {
|
|
8
9
|
[key: string]: TypesFieldMapping[];
|
|
@@ -3,6 +3,7 @@ import type { TypesFieldMapping } from '../schemas/TypesFieldMapping';
|
|
|
3
3
|
import type { EnumIntegrationType } from '../schemas/EnumIntegrationType';
|
|
4
4
|
import type { TypesMappingConfig } from '../schemas/TypesMappingConfig';
|
|
5
5
|
export interface OpenapiCreateAirbyteIntegrationConfigProjectRequest {
|
|
6
|
+
auto_import?: boolean | null;
|
|
6
7
|
discovered_catalog?: TypesAirbyteCatalogDiscovered;
|
|
7
8
|
entity_mappings_per_kind?: {
|
|
8
9
|
[key: string]: TypesFieldMapping[];
|
|
@@ -3,6 +3,7 @@ import type { TypesFieldMapping } from '../schemas/TypesFieldMapping';
|
|
|
3
3
|
import type { EnumIntegrationType } from '../schemas/EnumIntegrationType';
|
|
4
4
|
import type { TypesMappingConfig } from '../schemas/TypesMappingConfig';
|
|
5
5
|
export interface OpenapiCreateAirbyteIntegrationConfigRequest {
|
|
6
|
+
auto_import?: boolean | null;
|
|
6
7
|
discovered_catalog?: TypesAirbyteCatalogDiscovered;
|
|
7
8
|
entity_mappings_per_kind?: {
|
|
8
9
|
[key: string]: TypesFieldMapping[];
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { TypesFieldMapping } from '../schemas/TypesFieldMapping';
|
|
2
2
|
import type { TypesMappingConfig } from '../schemas/TypesMappingConfig';
|
|
3
3
|
export interface OpenapiUpdateAirbyteIntegrationConfigOrgRequest {
|
|
4
|
+
auto_import?: boolean | null;
|
|
4
5
|
entity_mappings_per_kind?: {
|
|
5
6
|
[key: string]: TypesFieldMapping[];
|
|
6
7
|
} | null;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { TypesFieldMapping } from '../schemas/TypesFieldMapping';
|
|
2
2
|
import type { TypesMappingConfig } from '../schemas/TypesMappingConfig';
|
|
3
3
|
export interface OpenapiUpdateAirbyteIntegrationConfigProjectRequest {
|
|
4
|
+
auto_import?: boolean | null;
|
|
4
5
|
entity_mappings_per_kind?: {
|
|
5
6
|
[key: string]: TypesFieldMapping[];
|
|
6
7
|
} | null;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { TypesFieldMapping } from '../schemas/TypesFieldMapping';
|
|
2
2
|
import type { TypesMappingConfig } from '../schemas/TypesMappingConfig';
|
|
3
3
|
export interface OpenapiUpdateAirbyteIntegrationConfigRequest {
|
|
4
|
+
auto_import?: boolean | null;
|
|
4
5
|
entity_mappings_per_kind?: {
|
|
5
6
|
[key: string]: TypesFieldMapping[];
|
|
6
7
|
} | null;
|
|
@@ -15,6 +15,7 @@ export interface TypesIntegrationConfig {
|
|
|
15
15
|
identifier?: string;
|
|
16
16
|
integration_mode?: EnumIntegrationMode;
|
|
17
17
|
integration_type?: EnumIntegrationType;
|
|
18
|
+
is_deleted?: boolean;
|
|
18
19
|
kinds?: string[] | null;
|
|
19
20
|
last_sync_info?: TypesLastSyncInfo;
|
|
20
21
|
last_updated?: number;
|
package/package.json
CHANGED