@seekora-ai/admin-api 1.2.13 → 1.2.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/README.md +4 -2
- package/api.ts +164 -22
- package/dist/api.d.ts +164 -25
- package/dist/api.js +32 -28
- package/dist/esm/api.d.ts +164 -25
- package/dist/esm/api.js +20 -16
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.2.14.tgz +0 -0
- package/seekora-ai-admin-api-1.2.13.tgz +0 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @seekora-ai/admin-api@1.2.
|
|
1
|
+
## @seekora-ai/admin-api@1.2.14
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @seekora-ai/admin-api@1.2.
|
|
39
|
+
npm install @seekora-ai/admin-api@1.2.14 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -1138,6 +1138,7 @@ Class | Method | HTTP request | Description
|
|
|
1138
1138
|
- [ConnectorFieldMetadata](docs/ConnectorFieldMetadata.md)
|
|
1139
1139
|
- [ConnectorRoutePreviewRequest](docs/ConnectorRoutePreviewRequest.md)
|
|
1140
1140
|
- [ConnectorRunListResponse](docs/ConnectorRunListResponse.md)
|
|
1141
|
+
- [ConnectorRunPhaseDTO](docs/ConnectorRunPhaseDTO.md)
|
|
1141
1142
|
- [ConnectorRunResponse](docs/ConnectorRunResponse.md)
|
|
1142
1143
|
- [ConnectorRunServiceRowErrorsResult](docs/ConnectorRunServiceRowErrorsResult.md)
|
|
1143
1144
|
- [ConnectorSecretListResponse](docs/ConnectorSecretListResponse.md)
|
|
@@ -1176,6 +1177,7 @@ Class | Method | HTTP request | Description
|
|
|
1176
1177
|
- [ConnectorUpdateTaskGroupRequest](docs/ConnectorUpdateTaskGroupRequest.md)
|
|
1177
1178
|
- [ConnectorUpdateTaskRequest](docs/ConnectorUpdateTaskRequest.md)
|
|
1178
1179
|
- [ConnectorUpdateTransformationRequest](docs/ConnectorUpdateTransformationRequest.md)
|
|
1180
|
+
- [ConnectorValidateAuthResponse](docs/ConnectorValidateAuthResponse.md)
|
|
1179
1181
|
- [ConnectorWebhookDeliveriesListData](docs/ConnectorWebhookDeliveriesListData.md)
|
|
1180
1182
|
- [ConnectorWebhookDeliveriesListResponse](docs/ConnectorWebhookDeliveriesListResponse.md)
|
|
1181
1183
|
- [ConnectorWebhookDeliveryItem](docs/ConnectorWebhookDeliveryItem.md)
|
package/api.ts
CHANGED
|
@@ -12506,6 +12506,30 @@ export interface ConnectorAuthResponse {
|
|
|
12506
12506
|
* @memberof ConnectorAuthResponse
|
|
12507
12507
|
*/
|
|
12508
12508
|
'is_valid'?: boolean;
|
|
12509
|
+
/**
|
|
12510
|
+
*
|
|
12511
|
+
* @type {number}
|
|
12512
|
+
* @memberof ConnectorAuthResponse
|
|
12513
|
+
*/
|
|
12514
|
+
'last_check_duration_ms'?: number;
|
|
12515
|
+
/**
|
|
12516
|
+
*
|
|
12517
|
+
* @type {string}
|
|
12518
|
+
* @memberof ConnectorAuthResponse
|
|
12519
|
+
*/
|
|
12520
|
+
'last_check_error_code'?: string;
|
|
12521
|
+
/**
|
|
12522
|
+
*
|
|
12523
|
+
* @type {string}
|
|
12524
|
+
* @memberof ConnectorAuthResponse
|
|
12525
|
+
*/
|
|
12526
|
+
'last_check_error_message'?: string;
|
|
12527
|
+
/**
|
|
12528
|
+
* Spec-2B check-result metadata. Populated by /validate; read by admin-ui to render the \"last verified N minutes ago\" pill and the error banner on the auth card.
|
|
12529
|
+
* @type {string}
|
|
12530
|
+
* @memberof ConnectorAuthResponse
|
|
12531
|
+
*/
|
|
12532
|
+
'last_checked_at'?: string;
|
|
12509
12533
|
/**
|
|
12510
12534
|
*
|
|
12511
12535
|
* @type {string}
|
|
@@ -12930,6 +12954,12 @@ export interface ConnectorDestRef {
|
|
|
12930
12954
|
* @memberof ConnectorDestRef
|
|
12931
12955
|
*/
|
|
12932
12956
|
'name'?: string;
|
|
12957
|
+
/**
|
|
12958
|
+
*
|
|
12959
|
+
* @type {string}
|
|
12960
|
+
* @memberof ConnectorDestRef
|
|
12961
|
+
*/
|
|
12962
|
+
'type'?: string;
|
|
12933
12963
|
/**
|
|
12934
12964
|
*
|
|
12935
12965
|
* @type {string}
|
|
@@ -13199,6 +13229,43 @@ export interface ConnectorRunListResponse {
|
|
|
13199
13229
|
*/
|
|
13200
13230
|
'total'?: number;
|
|
13201
13231
|
}
|
|
13232
|
+
/**
|
|
13233
|
+
*
|
|
13234
|
+
* @export
|
|
13235
|
+
* @interface ConnectorRunPhaseDTO
|
|
13236
|
+
*/
|
|
13237
|
+
export interface ConnectorRunPhaseDTO {
|
|
13238
|
+
/**
|
|
13239
|
+
*
|
|
13240
|
+
* @type {string}
|
|
13241
|
+
* @memberof ConnectorRunPhaseDTO
|
|
13242
|
+
*/
|
|
13243
|
+
'completed_at'?: string;
|
|
13244
|
+
/**
|
|
13245
|
+
*
|
|
13246
|
+
* @type {string}
|
|
13247
|
+
* @memberof ConnectorRunPhaseDTO
|
|
13248
|
+
*/
|
|
13249
|
+
'error_message'?: string;
|
|
13250
|
+
/**
|
|
13251
|
+
*
|
|
13252
|
+
* @type {string}
|
|
13253
|
+
* @memberof ConnectorRunPhaseDTO
|
|
13254
|
+
*/
|
|
13255
|
+
'phase'?: string;
|
|
13256
|
+
/**
|
|
13257
|
+
*
|
|
13258
|
+
* @type {string}
|
|
13259
|
+
* @memberof ConnectorRunPhaseDTO
|
|
13260
|
+
*/
|
|
13261
|
+
'started_at'?: string;
|
|
13262
|
+
/**
|
|
13263
|
+
*
|
|
13264
|
+
* @type {string}
|
|
13265
|
+
* @memberof ConnectorRunPhaseDTO
|
|
13266
|
+
*/
|
|
13267
|
+
'status'?: string;
|
|
13268
|
+
}
|
|
13202
13269
|
/**
|
|
13203
13270
|
*
|
|
13204
13271
|
* @export
|
|
@@ -13229,6 +13296,12 @@ export interface ConnectorRunResponse {
|
|
|
13229
13296
|
* @memberof ConnectorRunResponse
|
|
13230
13297
|
*/
|
|
13231
13298
|
'debug_mode'?: boolean;
|
|
13299
|
+
/**
|
|
13300
|
+
*
|
|
13301
|
+
* @type {ConnectorDestRef}
|
|
13302
|
+
* @memberof ConnectorRunResponse
|
|
13303
|
+
*/
|
|
13304
|
+
'destination'?: ConnectorDestRef;
|
|
13232
13305
|
/**
|
|
13233
13306
|
*
|
|
13234
13307
|
* @type {boolean}
|
|
@@ -13271,6 +13344,12 @@ export interface ConnectorRunResponse {
|
|
|
13271
13344
|
* @memberof ConnectorRunResponse
|
|
13272
13345
|
*/
|
|
13273
13346
|
'percent_complete'?: number;
|
|
13347
|
+
/**
|
|
13348
|
+
*
|
|
13349
|
+
* @type {Array<ConnectorRunPhaseDTO>}
|
|
13350
|
+
* @memberof ConnectorRunResponse
|
|
13351
|
+
*/
|
|
13352
|
+
'phases'?: Array<ConnectorRunPhaseDTO>;
|
|
13274
13353
|
/**
|
|
13275
13354
|
*
|
|
13276
13355
|
* @type {number}
|
|
@@ -13295,6 +13374,12 @@ export interface ConnectorRunResponse {
|
|
|
13295
13374
|
* @memberof ConnectorRunResponse
|
|
13296
13375
|
*/
|
|
13297
13376
|
'records_written'?: number;
|
|
13377
|
+
/**
|
|
13378
|
+
* Source / Destination surface the brand + name of the task\'s source and destination on the admin-ui run-detail page so the operator can see \"json-xyz → Shopify Store\" without a second fetch. Populated by GetRun + ListRunsForStore via JOINs on connector_sources and connector_destinations.
|
|
13379
|
+
* @type {ConnectorSourceRef}
|
|
13380
|
+
* @memberof ConnectorRunResponse
|
|
13381
|
+
*/
|
|
13382
|
+
'source'?: ConnectorSourceRef;
|
|
13298
13383
|
/**
|
|
13299
13384
|
*
|
|
13300
13385
|
* @type {string}
|
|
@@ -13438,6 +13523,12 @@ export interface ConnectorSourceRef {
|
|
|
13438
13523
|
* @memberof ConnectorSourceRef
|
|
13439
13524
|
*/
|
|
13440
13525
|
'name'?: string;
|
|
13526
|
+
/**
|
|
13527
|
+
*
|
|
13528
|
+
* @type {string}
|
|
13529
|
+
* @memberof ConnectorSourceRef
|
|
13530
|
+
*/
|
|
13531
|
+
'type'?: string;
|
|
13441
13532
|
/**
|
|
13442
13533
|
*
|
|
13443
13534
|
* @type {string}
|
|
@@ -14471,6 +14562,57 @@ export interface ConnectorUpdateTransformationRequest {
|
|
|
14471
14562
|
* @memberof ConnectorUpdateTransformationRequest
|
|
14472
14563
|
*/
|
|
14473
14564
|
'name'?: string;
|
|
14565
|
+
/**
|
|
14566
|
+
*
|
|
14567
|
+
* @type {string}
|
|
14568
|
+
* @memberof ConnectorUpdateTransformationRequest
|
|
14569
|
+
*/
|
|
14570
|
+
'transform_type'?: ConnectorUpdateTransformationRequestTransformTypeEnum;
|
|
14571
|
+
}
|
|
14572
|
+
|
|
14573
|
+
export const ConnectorUpdateTransformationRequestTransformTypeEnum = {
|
|
14574
|
+
Code: 'code',
|
|
14575
|
+
Nocode: 'nocode'
|
|
14576
|
+
} as const;
|
|
14577
|
+
|
|
14578
|
+
export type ConnectorUpdateTransformationRequestTransformTypeEnum = typeof ConnectorUpdateTransformationRequestTransformTypeEnum[keyof typeof ConnectorUpdateTransformationRequestTransformTypeEnum];
|
|
14579
|
+
|
|
14580
|
+
/**
|
|
14581
|
+
*
|
|
14582
|
+
* @export
|
|
14583
|
+
* @interface ConnectorValidateAuthResponse
|
|
14584
|
+
*/
|
|
14585
|
+
export interface ConnectorValidateAuthResponse {
|
|
14586
|
+
/**
|
|
14587
|
+
* CheckedAt is the wall-clock time the check completed.
|
|
14588
|
+
* @type {string}
|
|
14589
|
+
* @memberof ConnectorValidateAuthResponse
|
|
14590
|
+
*/
|
|
14591
|
+
'checked_at'?: string;
|
|
14592
|
+
/**
|
|
14593
|
+
* DurationMs is the wall-clock elapsed time of the check.
|
|
14594
|
+
* @type {number}
|
|
14595
|
+
* @memberof ConnectorValidateAuthResponse
|
|
14596
|
+
*/
|
|
14597
|
+
'duration_ms'?: number;
|
|
14598
|
+
/**
|
|
14599
|
+
* ErrorCode is one of the forge CheckErrorCode values when OK is false. Empty when OK. Wire-format stable — admin-ui maps each value to user-facing copy.
|
|
14600
|
+
* @type {string}
|
|
14601
|
+
* @memberof ConnectorValidateAuthResponse
|
|
14602
|
+
*/
|
|
14603
|
+
'error_code'?: string;
|
|
14604
|
+
/**
|
|
14605
|
+
* ErrorMessage is a user-safe description (<=240 chars). Empty when OK. Never contains credentials.
|
|
14606
|
+
* @type {string}
|
|
14607
|
+
* @memberof ConnectorValidateAuthResponse
|
|
14608
|
+
*/
|
|
14609
|
+
'error_message'?: string;
|
|
14610
|
+
/**
|
|
14611
|
+
* OK is true when forge.Source.Check returned no error.
|
|
14612
|
+
* @type {boolean}
|
|
14613
|
+
* @memberof ConnectorValidateAuthResponse
|
|
14614
|
+
*/
|
|
14615
|
+
'ok'?: boolean;
|
|
14474
14616
|
}
|
|
14475
14617
|
/**
|
|
14476
14618
|
*
|
|
@@ -66561,7 +66703,7 @@ export const ConnectorAdminAuthApiAxiosParamCreator = function (configuration?:
|
|
|
66561
66703
|
};
|
|
66562
66704
|
},
|
|
66563
66705
|
/**
|
|
66564
|
-
*
|
|
66706
|
+
* Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
|
|
66565
66707
|
* @summary Validate connector authentication credentials
|
|
66566
66708
|
* @param {string} uuid Authentication UUID
|
|
66567
66709
|
* @param {*} [options] Override http request option.
|
|
@@ -66673,13 +66815,13 @@ export const ConnectorAdminAuthApiFp = function(configuration?: Configuration) {
|
|
|
66673
66815
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
66674
66816
|
},
|
|
66675
66817
|
/**
|
|
66676
|
-
*
|
|
66818
|
+
* Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
|
|
66677
66819
|
* @summary Validate connector authentication credentials
|
|
66678
66820
|
* @param {string} uuid Authentication UUID
|
|
66679
66821
|
* @param {*} [options] Override http request option.
|
|
66680
66822
|
* @throws {RequiredError}
|
|
66681
66823
|
*/
|
|
66682
|
-
async adminConnectorAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
66824
|
+
async adminConnectorAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConnectorValidateAuthResponse>> {
|
|
66683
66825
|
const localVarAxiosArgs = await localVarAxiosParamCreator.adminConnectorAuthUuidValidatePost(uuid, options);
|
|
66684
66826
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
66685
66827
|
const localVarOperationServerBasePath = operationServerMap['ConnectorAdminAuthApi.adminConnectorAuthUuidValidatePost']?.[localVarOperationServerIndex]?.url;
|
|
@@ -66746,13 +66888,13 @@ export const ConnectorAdminAuthApiFactory = function (configuration?: Configurat
|
|
|
66746
66888
|
return localVarFp.adminConnectorAuthUuidPut(uuid, connectorUpdateAuthRequest, options).then((request) => request(axios, basePath));
|
|
66747
66889
|
},
|
|
66748
66890
|
/**
|
|
66749
|
-
*
|
|
66891
|
+
* Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
|
|
66750
66892
|
* @summary Validate connector authentication credentials
|
|
66751
66893
|
* @param {string} uuid Authentication UUID
|
|
66752
66894
|
* @param {*} [options] Override http request option.
|
|
66753
66895
|
* @throws {RequiredError}
|
|
66754
66896
|
*/
|
|
66755
|
-
adminConnectorAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
66897
|
+
adminConnectorAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorValidateAuthResponse> {
|
|
66756
66898
|
return localVarFp.adminConnectorAuthUuidValidatePost(uuid, options).then((request) => request(axios, basePath));
|
|
66757
66899
|
},
|
|
66758
66900
|
};
|
|
@@ -66826,7 +66968,7 @@ export class ConnectorAdminAuthApi extends BaseAPI {
|
|
|
66826
66968
|
}
|
|
66827
66969
|
|
|
66828
66970
|
/**
|
|
66829
|
-
*
|
|
66971
|
+
* Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
|
|
66830
66972
|
* @summary Validate connector authentication credentials
|
|
66831
66973
|
* @param {string} uuid Authentication UUID
|
|
66832
66974
|
* @param {*} [options] Override http request option.
|
|
@@ -68924,7 +69066,7 @@ export const ConnectorAdminSourcesApiAxiosParamCreator = function (configuration
|
|
|
68924
69066
|
};
|
|
68925
69067
|
},
|
|
68926
69068
|
/**
|
|
68927
|
-
*
|
|
69069
|
+
* Runs a synchronous connection check against the source\'s stored config + credentials. Returns the forge check result directly — no polling required. Falls back to the legacy RabbitMQ dispatch path only when the check service is not wired.
|
|
68928
69070
|
* @summary Check source connectivity
|
|
68929
69071
|
* @param {string} uuid Source UUID
|
|
68930
69072
|
* @param {*} [options] Override http request option.
|
|
@@ -68998,7 +69140,7 @@ export const ConnectorAdminSourcesApiAxiosParamCreator = function (configuration
|
|
|
68998
69140
|
};
|
|
68999
69141
|
},
|
|
69000
69142
|
/**
|
|
69001
|
-
*
|
|
69143
|
+
* Runs a synchronous schema discovery against the source\'s stored config + credentials. Persists the catalog to connector_sources.discovered_catalog and returns it directly. Falls back to the legacy RabbitMQ dispatch path only when the check service is not wired.
|
|
69002
69144
|
* @summary Discover source stream catalog
|
|
69003
69145
|
* @param {string} uuid Source UUID
|
|
69004
69146
|
* @param {*} [options] Override http request option.
|
|
@@ -69205,13 +69347,13 @@ export const ConnectorAdminSourcesApiFp = function(configuration?: Configuration
|
|
|
69205
69347
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
69206
69348
|
},
|
|
69207
69349
|
/**
|
|
69208
|
-
*
|
|
69350
|
+
* Runs a synchronous connection check against the source\'s stored config + credentials. Returns the forge check result directly — no polling required. Falls back to the legacy RabbitMQ dispatch path only when the check service is not wired.
|
|
69209
69351
|
* @summary Check source connectivity
|
|
69210
69352
|
* @param {string} uuid Source UUID
|
|
69211
69353
|
* @param {*} [options] Override http request option.
|
|
69212
69354
|
* @throws {RequiredError}
|
|
69213
69355
|
*/
|
|
69214
|
-
async adminConnectorSourcesUuidCheckPost(uuid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
69356
|
+
async adminConnectorSourcesUuidCheckPost(uuid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConnectorValidateAuthResponse>> {
|
|
69215
69357
|
const localVarAxiosArgs = await localVarAxiosParamCreator.adminConnectorSourcesUuidCheckPost(uuid, options);
|
|
69216
69358
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
69217
69359
|
const localVarOperationServerBasePath = operationServerMap['ConnectorAdminSourcesApi.adminConnectorSourcesUuidCheckPost']?.[localVarOperationServerIndex]?.url;
|
|
@@ -69231,7 +69373,7 @@ export const ConnectorAdminSourcesApiFp = function(configuration?: Configuration
|
|
|
69231
69373
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
69232
69374
|
},
|
|
69233
69375
|
/**
|
|
69234
|
-
*
|
|
69376
|
+
* Runs a synchronous schema discovery against the source\'s stored config + credentials. Persists the catalog to connector_sources.discovered_catalog and returns it directly. Falls back to the legacy RabbitMQ dispatch path only when the check service is not wired.
|
|
69235
69377
|
* @summary Discover source stream catalog
|
|
69236
69378
|
* @param {string} uuid Source UUID
|
|
69237
69379
|
* @param {*} [options] Override http request option.
|
|
@@ -69324,13 +69466,13 @@ export const ConnectorAdminSourcesApiFactory = function (configuration?: Configu
|
|
|
69324
69466
|
return localVarFp.adminConnectorSourcesTestConnectionPost(connectorTestConnectionRequest, options).then((request) => request(axios, basePath));
|
|
69325
69467
|
},
|
|
69326
69468
|
/**
|
|
69327
|
-
*
|
|
69469
|
+
* Runs a synchronous connection check against the source\'s stored config + credentials. Returns the forge check result directly — no polling required. Falls back to the legacy RabbitMQ dispatch path only when the check service is not wired.
|
|
69328
69470
|
* @summary Check source connectivity
|
|
69329
69471
|
* @param {string} uuid Source UUID
|
|
69330
69472
|
* @param {*} [options] Override http request option.
|
|
69331
69473
|
* @throws {RequiredError}
|
|
69332
69474
|
*/
|
|
69333
|
-
adminConnectorSourcesUuidCheckPost(uuid: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
69475
|
+
adminConnectorSourcesUuidCheckPost(uuid: string, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorValidateAuthResponse> {
|
|
69334
69476
|
return localVarFp.adminConnectorSourcesUuidCheckPost(uuid, options).then((request) => request(axios, basePath));
|
|
69335
69477
|
},
|
|
69336
69478
|
/**
|
|
@@ -69344,7 +69486,7 @@ export const ConnectorAdminSourcesApiFactory = function (configuration?: Configu
|
|
|
69344
69486
|
return localVarFp.adminConnectorSourcesUuidDelete(uuid, options).then((request) => request(axios, basePath));
|
|
69345
69487
|
},
|
|
69346
69488
|
/**
|
|
69347
|
-
*
|
|
69489
|
+
* Runs a synchronous schema discovery against the source\'s stored config + credentials. Persists the catalog to connector_sources.discovered_catalog and returns it directly. Falls back to the legacy RabbitMQ dispatch path only when the check service is not wired.
|
|
69348
69490
|
* @summary Discover source stream catalog
|
|
69349
69491
|
* @param {string} uuid Source UUID
|
|
69350
69492
|
* @param {*} [options] Override http request option.
|
|
@@ -69431,7 +69573,7 @@ export class ConnectorAdminSourcesApi extends BaseAPI {
|
|
|
69431
69573
|
}
|
|
69432
69574
|
|
|
69433
69575
|
/**
|
|
69434
|
-
*
|
|
69576
|
+
* Runs a synchronous connection check against the source\'s stored config + credentials. Returns the forge check result directly — no polling required. Falls back to the legacy RabbitMQ dispatch path only when the check service is not wired.
|
|
69435
69577
|
* @summary Check source connectivity
|
|
69436
69578
|
* @param {string} uuid Source UUID
|
|
69437
69579
|
* @param {*} [options] Override http request option.
|
|
@@ -69455,7 +69597,7 @@ export class ConnectorAdminSourcesApi extends BaseAPI {
|
|
|
69455
69597
|
}
|
|
69456
69598
|
|
|
69457
69599
|
/**
|
|
69458
|
-
*
|
|
69600
|
+
* Runs a synchronous schema discovery against the source\'s stored config + credentials. Persists the catalog to connector_sources.discovered_catalog and returns it directly. Falls back to the legacy RabbitMQ dispatch path only when the check service is not wired.
|
|
69459
69601
|
* @summary Discover source stream catalog
|
|
69460
69602
|
* @param {string} uuid Source UUID
|
|
69461
69603
|
* @param {*} [options] Override http request option.
|
|
@@ -75534,7 +75676,7 @@ export const ConnectorsApiAxiosParamCreator = function (configuration?: Configur
|
|
|
75534
75676
|
};
|
|
75535
75677
|
},
|
|
75536
75678
|
/**
|
|
75537
|
-
*
|
|
75679
|
+
* Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
|
|
75538
75680
|
* @summary Validate connector authentication credentials
|
|
75539
75681
|
* @param {string} uuid Authentication UUID
|
|
75540
75682
|
* @param {*} [options] Override http request option.
|
|
@@ -76937,13 +77079,13 @@ export const ConnectorsApiFp = function(configuration?: Configuration) {
|
|
|
76937
77079
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
76938
77080
|
},
|
|
76939
77081
|
/**
|
|
76940
|
-
*
|
|
77082
|
+
* Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
|
|
76941
77083
|
* @summary Validate connector authentication credentials
|
|
76942
77084
|
* @param {string} uuid Authentication UUID
|
|
76943
77085
|
* @param {*} [options] Override http request option.
|
|
76944
77086
|
* @throws {RequiredError}
|
|
76945
77087
|
*/
|
|
76946
|
-
async v1ConnectorsAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
77088
|
+
async v1ConnectorsAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConnectorValidateAuthResponse>> {
|
|
76947
77089
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1ConnectorsAuthUuidValidatePost(uuid, options);
|
|
76948
77090
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
76949
77091
|
const localVarOperationServerBasePath = operationServerMap['ConnectorsApi.v1ConnectorsAuthUuidValidatePost']?.[localVarOperationServerIndex]?.url;
|
|
@@ -77543,13 +77685,13 @@ export const ConnectorsApiFactory = function (configuration?: Configuration, bas
|
|
|
77543
77685
|
return localVarFp.v1ConnectorsAuthUuidPut(uuid, connectorUpdateAuthRequest, options).then((request) => request(axios, basePath));
|
|
77544
77686
|
},
|
|
77545
77687
|
/**
|
|
77546
|
-
*
|
|
77688
|
+
* Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
|
|
77547
77689
|
* @summary Validate connector authentication credentials
|
|
77548
77690
|
* @param {string} uuid Authentication UUID
|
|
77549
77691
|
* @param {*} [options] Override http request option.
|
|
77550
77692
|
* @throws {RequiredError}
|
|
77551
77693
|
*/
|
|
77552
|
-
v1ConnectorsAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
77694
|
+
v1ConnectorsAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorValidateAuthResponse> {
|
|
77553
77695
|
return localVarFp.v1ConnectorsAuthUuidValidatePost(uuid, options).then((request) => request(axios, basePath));
|
|
77554
77696
|
},
|
|
77555
77697
|
/**
|
|
@@ -78078,7 +78220,7 @@ export class ConnectorsApi extends BaseAPI {
|
|
|
78078
78220
|
}
|
|
78079
78221
|
|
|
78080
78222
|
/**
|
|
78081
|
-
*
|
|
78223
|
+
* Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
|
|
78082
78224
|
* @summary Validate connector authentication credentials
|
|
78083
78225
|
* @param {string} uuid Authentication UUID
|
|
78084
78226
|
* @param {*} [options] Override http request option.
|