@harnessio/react-integration-manager-client 0.3.7 → 0.3.8
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/useGetAirbyteConnectorCatalogQuery.d.ts +4 -0
- package/dist/integration-manager/src/services/schemas/AirbyteFetchAirbyteConnectorCatalogResponse.d.ts +0 -1
- package/dist/integration-manager/src/services/schemas/TypesHarnessAirbyteConfig.d.ts +1 -1
- package/package.json +1 -1
|
@@ -11,6 +11,10 @@ export interface GetAirbyteConnectorCatalogQueryQueryParams {
|
|
|
11
11
|
* Type of integration connector
|
|
12
12
|
*/
|
|
13
13
|
integration_type: string;
|
|
14
|
+
/**
|
|
15
|
+
* Reference to the connector
|
|
16
|
+
*/
|
|
17
|
+
connector_ref: string;
|
|
14
18
|
/**
|
|
15
19
|
* Filter for specific tables/streams
|
|
16
20
|
*/
|
package/package.json
CHANGED