@squidcloud/client 1.0.27 → 1.0.28
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/common/src/application.types.d.ts +1 -1
- package/dist/common/src/integration.types.d.ts +4 -4
- package/dist/common/src/utils/id.d.ts +1 -0
- package/dist/index.js +2 -2
- package/dist/package.json +1 -1
- package/dist/typescript-client/src/testing/squid-env-setup.d.ts +1 -1
- package/package.json +1 -1
|
@@ -138,7 +138,7 @@ interface BaseUpsertDataIntegrationRequest extends BaseUpsertIntegrationRequest
|
|
|
138
138
|
supportsExternalChanges?: boolean;
|
|
139
139
|
}
|
|
140
140
|
export interface UpsertInternalIntegrationRequest extends BaseUpsertDataIntegrationRequest {
|
|
141
|
-
type: IntegrationType.
|
|
141
|
+
type: IntegrationType.built_in_db;
|
|
142
142
|
schema?: IntegrationDataSchema;
|
|
143
143
|
}
|
|
144
144
|
export interface UpsertMongoDbIntegrationRequest extends BaseUpsertDataIntegrationRequest {
|
|
@@ -59,7 +59,7 @@ export interface GraphQLConnectionOptions {
|
|
|
59
59
|
baseUrl: string;
|
|
60
60
|
}
|
|
61
61
|
export declare enum IntegrationType {
|
|
62
|
-
'
|
|
62
|
+
'built_in_db' = "built_in_db",
|
|
63
63
|
'mongo' = "mongo",
|
|
64
64
|
'mysql' = "mysql",
|
|
65
65
|
'mssql' = "mssql",
|
|
@@ -160,7 +160,7 @@ export interface CockroachIntegration extends BasePostgresIntegration {
|
|
|
160
160
|
supportsExternalChanges: false;
|
|
161
161
|
}
|
|
162
162
|
export interface InternalIntegration extends BaseDataIntegration {
|
|
163
|
-
type: IntegrationType.
|
|
163
|
+
type: IntegrationType.built_in_db;
|
|
164
164
|
}
|
|
165
165
|
export interface MongoIntegration extends BaseDataIntegration {
|
|
166
166
|
type: IntegrationType.mongo;
|
|
@@ -168,7 +168,7 @@ export interface MongoIntegration extends BaseDataIntegration {
|
|
|
168
168
|
supportsExternalChanges: true;
|
|
169
169
|
}
|
|
170
170
|
export interface InternalIntegration extends BaseDataIntegration {
|
|
171
|
-
type: IntegrationType.
|
|
171
|
+
type: IntegrationType.built_in_db;
|
|
172
172
|
}
|
|
173
173
|
export interface TestDataConnectionResponse {
|
|
174
174
|
success: boolean;
|
|
@@ -216,7 +216,7 @@ interface DiscoverMongoDataConnectionSchemaRequest {
|
|
|
216
216
|
connectionOptions: MongoConnectionOptions;
|
|
217
217
|
}
|
|
218
218
|
interface DiscoverInternalDataConnectionSchemaRequest {
|
|
219
|
-
integrationType: IntegrationType.
|
|
219
|
+
integrationType: IntegrationType.built_in_db;
|
|
220
220
|
}
|
|
221
221
|
interface DiscoverMysqlDataConnectionSchemaRequest {
|
|
222
222
|
integrationType: IntegrationType.mysql;
|