@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/dist/api.d.ts CHANGED
@@ -12518,6 +12518,30 @@ export interface ConnectorAuthResponse {
12518
12518
  * @memberof ConnectorAuthResponse
12519
12519
  */
12520
12520
  'is_valid'?: boolean;
12521
+ /**
12522
+ *
12523
+ * @type {number}
12524
+ * @memberof ConnectorAuthResponse
12525
+ */
12526
+ 'last_check_duration_ms'?: number;
12527
+ /**
12528
+ *
12529
+ * @type {string}
12530
+ * @memberof ConnectorAuthResponse
12531
+ */
12532
+ 'last_check_error_code'?: string;
12533
+ /**
12534
+ *
12535
+ * @type {string}
12536
+ * @memberof ConnectorAuthResponse
12537
+ */
12538
+ 'last_check_error_message'?: string;
12539
+ /**
12540
+ * 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.
12541
+ * @type {string}
12542
+ * @memberof ConnectorAuthResponse
12543
+ */
12544
+ 'last_checked_at'?: string;
12521
12545
  /**
12522
12546
  *
12523
12547
  * @type {string}
@@ -12932,6 +12956,12 @@ export interface ConnectorDestRef {
12932
12956
  * @memberof ConnectorDestRef
12933
12957
  */
12934
12958
  'name'?: string;
12959
+ /**
12960
+ *
12961
+ * @type {string}
12962
+ * @memberof ConnectorDestRef
12963
+ */
12964
+ 'type'?: string;
12935
12965
  /**
12936
12966
  *
12937
12967
  * @type {string}
@@ -13203,6 +13233,43 @@ export interface ConnectorRunListResponse {
13203
13233
  */
13204
13234
  'total'?: number;
13205
13235
  }
13236
+ /**
13237
+ *
13238
+ * @export
13239
+ * @interface ConnectorRunPhaseDTO
13240
+ */
13241
+ export interface ConnectorRunPhaseDTO {
13242
+ /**
13243
+ *
13244
+ * @type {string}
13245
+ * @memberof ConnectorRunPhaseDTO
13246
+ */
13247
+ 'completed_at'?: string;
13248
+ /**
13249
+ *
13250
+ * @type {string}
13251
+ * @memberof ConnectorRunPhaseDTO
13252
+ */
13253
+ 'error_message'?: string;
13254
+ /**
13255
+ *
13256
+ * @type {string}
13257
+ * @memberof ConnectorRunPhaseDTO
13258
+ */
13259
+ 'phase'?: string;
13260
+ /**
13261
+ *
13262
+ * @type {string}
13263
+ * @memberof ConnectorRunPhaseDTO
13264
+ */
13265
+ 'started_at'?: string;
13266
+ /**
13267
+ *
13268
+ * @type {string}
13269
+ * @memberof ConnectorRunPhaseDTO
13270
+ */
13271
+ 'status'?: string;
13272
+ }
13206
13273
  /**
13207
13274
  *
13208
13275
  * @export
@@ -13233,6 +13300,12 @@ export interface ConnectorRunResponse {
13233
13300
  * @memberof ConnectorRunResponse
13234
13301
  */
13235
13302
  'debug_mode'?: boolean;
13303
+ /**
13304
+ *
13305
+ * @type {ConnectorDestRef}
13306
+ * @memberof ConnectorRunResponse
13307
+ */
13308
+ 'destination'?: ConnectorDestRef;
13236
13309
  /**
13237
13310
  *
13238
13311
  * @type {boolean}
@@ -13275,6 +13348,12 @@ export interface ConnectorRunResponse {
13275
13348
  * @memberof ConnectorRunResponse
13276
13349
  */
13277
13350
  'percent_complete'?: number;
13351
+ /**
13352
+ *
13353
+ * @type {Array<ConnectorRunPhaseDTO>}
13354
+ * @memberof ConnectorRunResponse
13355
+ */
13356
+ 'phases'?: Array<ConnectorRunPhaseDTO>;
13278
13357
  /**
13279
13358
  *
13280
13359
  * @type {number}
@@ -13299,6 +13378,12 @@ export interface ConnectorRunResponse {
13299
13378
  * @memberof ConnectorRunResponse
13300
13379
  */
13301
13380
  'records_written'?: number;
13381
+ /**
13382
+ * 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.
13383
+ * @type {ConnectorSourceRef}
13384
+ * @memberof ConnectorRunResponse
13385
+ */
13386
+ 'source'?: ConnectorSourceRef;
13302
13387
  /**
13303
13388
  *
13304
13389
  * @type {string}
@@ -13444,6 +13529,12 @@ export interface ConnectorSourceRef {
13444
13529
  * @memberof ConnectorSourceRef
13445
13530
  */
13446
13531
  'name'?: string;
13532
+ /**
13533
+ *
13534
+ * @type {string}
13535
+ * @memberof ConnectorSourceRef
13536
+ */
13537
+ 'type'?: string;
13447
13538
  /**
13448
13539
  *
13449
13540
  * @type {string}
@@ -14475,6 +14566,54 @@ export interface ConnectorUpdateTransformationRequest {
14475
14566
  * @memberof ConnectorUpdateTransformationRequest
14476
14567
  */
14477
14568
  'name'?: string;
14569
+ /**
14570
+ *
14571
+ * @type {string}
14572
+ * @memberof ConnectorUpdateTransformationRequest
14573
+ */
14574
+ 'transform_type'?: ConnectorUpdateTransformationRequestTransformTypeEnum;
14575
+ }
14576
+ export declare const ConnectorUpdateTransformationRequestTransformTypeEnum: {
14577
+ readonly Code: "code";
14578
+ readonly Nocode: "nocode";
14579
+ };
14580
+ export type ConnectorUpdateTransformationRequestTransformTypeEnum = typeof ConnectorUpdateTransformationRequestTransformTypeEnum[keyof typeof ConnectorUpdateTransformationRequestTransformTypeEnum];
14581
+ /**
14582
+ *
14583
+ * @export
14584
+ * @interface ConnectorValidateAuthResponse
14585
+ */
14586
+ export interface ConnectorValidateAuthResponse {
14587
+ /**
14588
+ * CheckedAt is the wall-clock time the check completed.
14589
+ * @type {string}
14590
+ * @memberof ConnectorValidateAuthResponse
14591
+ */
14592
+ 'checked_at'?: string;
14593
+ /**
14594
+ * DurationMs is the wall-clock elapsed time of the check.
14595
+ * @type {number}
14596
+ * @memberof ConnectorValidateAuthResponse
14597
+ */
14598
+ 'duration_ms'?: number;
14599
+ /**
14600
+ * 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.
14601
+ * @type {string}
14602
+ * @memberof ConnectorValidateAuthResponse
14603
+ */
14604
+ 'error_code'?: string;
14605
+ /**
14606
+ * ErrorMessage is a user-safe description (<=240 chars). Empty when OK. Never contains credentials.
14607
+ * @type {string}
14608
+ * @memberof ConnectorValidateAuthResponse
14609
+ */
14610
+ 'error_message'?: string;
14611
+ /**
14612
+ * OK is true when forge.Source.Check returned no error.
14613
+ * @type {boolean}
14614
+ * @memberof ConnectorValidateAuthResponse
14615
+ */
14616
+ 'ok'?: boolean;
14478
14617
  }
14479
14618
  /**
14480
14619
  *
@@ -55427,7 +55566,7 @@ export declare const ConnectorAdminAuthApiAxiosParamCreator: (configuration?: Co
55427
55566
  */
55428
55567
  adminConnectorAuthUuidPut: (uuid: string, connectorUpdateAuthRequest: ConnectorUpdateAuthRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
55429
55568
  /**
55430
- * Decrypts and validates stored credentials. Updates is_valid and last_validated_at.
55569
+ * Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
55431
55570
  * @summary Validate connector authentication credentials
55432
55571
  * @param {string} uuid Authentication UUID
55433
55572
  * @param {*} [options] Override http request option.
@@ -55481,13 +55620,13 @@ export declare const ConnectorAdminAuthApiFp: (configuration?: Configuration) =>
55481
55620
  */
55482
55621
  adminConnectorAuthUuidPut(uuid: string, connectorUpdateAuthRequest: ConnectorUpdateAuthRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConnectorAuthResponse>>;
55483
55622
  /**
55484
- * Decrypts and validates stored credentials. Updates is_valid and last_validated_at.
55623
+ * Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
55485
55624
  * @summary Validate connector authentication credentials
55486
55625
  * @param {string} uuid Authentication UUID
55487
55626
  * @param {*} [options] Override http request option.
55488
55627
  * @throws {RequiredError}
55489
55628
  */
55490
- adminConnectorAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConnectorAuthResponse>>;
55629
+ adminConnectorAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConnectorValidateAuthResponse>>;
55491
55630
  };
55492
55631
  /**
55493
55632
  * ConnectorAdminAuthApi - factory interface
@@ -55535,13 +55674,13 @@ export declare const ConnectorAdminAuthApiFactory: (configuration?: Configuratio
55535
55674
  */
55536
55675
  adminConnectorAuthUuidPut(uuid: string, connectorUpdateAuthRequest: ConnectorUpdateAuthRequest, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorAuthResponse>;
55537
55676
  /**
55538
- * Decrypts and validates stored credentials. Updates is_valid and last_validated_at.
55677
+ * Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
55539
55678
  * @summary Validate connector authentication credentials
55540
55679
  * @param {string} uuid Authentication UUID
55541
55680
  * @param {*} [options] Override http request option.
55542
55681
  * @throws {RequiredError}
55543
55682
  */
55544
- adminConnectorAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorAuthResponse>;
55683
+ adminConnectorAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorValidateAuthResponse>;
55545
55684
  };
55546
55685
  /**
55547
55686
  * ConnectorAdminAuthApi - object-oriented interface
@@ -55596,14 +55735,14 @@ export declare class ConnectorAdminAuthApi extends BaseAPI {
55596
55735
  */
55597
55736
  adminConnectorAuthUuidPut(uuid: string, connectorUpdateAuthRequest: ConnectorUpdateAuthRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorAuthResponse, any, {}>>;
55598
55737
  /**
55599
- * Decrypts and validates stored credentials. Updates is_valid and last_validated_at.
55738
+ * Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
55600
55739
  * @summary Validate connector authentication credentials
55601
55740
  * @param {string} uuid Authentication UUID
55602
55741
  * @param {*} [options] Override http request option.
55603
55742
  * @throws {RequiredError}
55604
55743
  * @memberof ConnectorAdminAuthApi
55605
55744
  */
55606
- adminConnectorAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorAuthResponse, any, {}>>;
55745
+ adminConnectorAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorValidateAuthResponse, any, {}>>;
55607
55746
  }
55608
55747
  /**
55609
55748
  * ConnectorAdminDestinationsApi - axios parameter creator
@@ -56584,7 +56723,7 @@ export declare const ConnectorAdminSourcesApiAxiosParamCreator: (configuration?:
56584
56723
  */
56585
56724
  adminConnectorSourcesTestConnectionPost: (connectorTestConnectionRequest: ConnectorTestConnectionRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
56586
56725
  /**
56587
- * Dispatches a connectivity check to the go-worker. Returns immediately with a job ID.
56726
+ * 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.
56588
56727
  * @summary Check source connectivity
56589
56728
  * @param {string} uuid Source UUID
56590
56729
  * @param {*} [options] Override http request option.
@@ -56600,7 +56739,7 @@ export declare const ConnectorAdminSourcesApiAxiosParamCreator: (configuration?:
56600
56739
  */
56601
56740
  adminConnectorSourcesUuidDelete: (uuid: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
56602
56741
  /**
56603
- * Dispatches a catalog discovery job to the go-worker. Returns the pending catalog immediately.
56742
+ * 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.
56604
56743
  * @summary Discover source stream catalog
56605
56744
  * @param {string} uuid Source UUID
56606
56745
  * @param {*} [options] Override http request option.
@@ -56663,13 +56802,13 @@ export declare const ConnectorAdminSourcesApiFp: (configuration?: Configuration)
56663
56802
  */
56664
56803
  adminConnectorSourcesTestConnectionPost(connectorTestConnectionRequest: ConnectorTestConnectionRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConnectorTestConnectionResponse>>;
56665
56804
  /**
56666
- * Dispatches a connectivity check to the go-worker. Returns immediately with a job ID.
56805
+ * 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.
56667
56806
  * @summary Check source connectivity
56668
56807
  * @param {string} uuid Source UUID
56669
56808
  * @param {*} [options] Override http request option.
56670
56809
  * @throws {RequiredError}
56671
56810
  */
56672
- adminConnectorSourcesUuidCheckPost(uuid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConnectorSourceServiceCheckResult>>;
56811
+ adminConnectorSourcesUuidCheckPost(uuid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConnectorValidateAuthResponse>>;
56673
56812
  /**
56674
56813
  * Soft-deletes a source. Returns 409 if referenced by an active task.
56675
56814
  * @summary Delete a connector source
@@ -56679,7 +56818,7 @@ export declare const ConnectorAdminSourcesApiFp: (configuration?: Configuration)
56679
56818
  */
56680
56819
  adminConnectorSourcesUuidDelete(uuid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
56681
56820
  /**
56682
- * Dispatches a catalog discovery job to the go-worker. Returns the pending catalog immediately.
56821
+ * 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.
56683
56822
  * @summary Discover source stream catalog
56684
56823
  * @param {string} uuid Source UUID
56685
56824
  * @param {*} [options] Override http request option.
@@ -56742,13 +56881,13 @@ export declare const ConnectorAdminSourcesApiFactory: (configuration?: Configura
56742
56881
  */
56743
56882
  adminConnectorSourcesTestConnectionPost(connectorTestConnectionRequest: ConnectorTestConnectionRequest, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorTestConnectionResponse>;
56744
56883
  /**
56745
- * Dispatches a connectivity check to the go-worker. Returns immediately with a job ID.
56884
+ * 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.
56746
56885
  * @summary Check source connectivity
56747
56886
  * @param {string} uuid Source UUID
56748
56887
  * @param {*} [options] Override http request option.
56749
56888
  * @throws {RequiredError}
56750
56889
  */
56751
- adminConnectorSourcesUuidCheckPost(uuid: string, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorSourceServiceCheckResult>;
56890
+ adminConnectorSourcesUuidCheckPost(uuid: string, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorValidateAuthResponse>;
56752
56891
  /**
56753
56892
  * Soft-deletes a source. Returns 409 if referenced by an active task.
56754
56893
  * @summary Delete a connector source
@@ -56758,7 +56897,7 @@ export declare const ConnectorAdminSourcesApiFactory: (configuration?: Configura
56758
56897
  */
56759
56898
  adminConnectorSourcesUuidDelete(uuid: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
56760
56899
  /**
56761
- * Dispatches a catalog discovery job to the go-worker. Returns the pending catalog immediately.
56900
+ * 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.
56762
56901
  * @summary Discover source stream catalog
56763
56902
  * @param {string} uuid Source UUID
56764
56903
  * @param {*} [options] Override http request option.
@@ -56826,14 +56965,14 @@ export declare class ConnectorAdminSourcesApi extends BaseAPI {
56826
56965
  */
56827
56966
  adminConnectorSourcesTestConnectionPost(connectorTestConnectionRequest: ConnectorTestConnectionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorTestConnectionResponse, any, {}>>;
56828
56967
  /**
56829
- * Dispatches a connectivity check to the go-worker. Returns immediately with a job ID.
56968
+ * 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.
56830
56969
  * @summary Check source connectivity
56831
56970
  * @param {string} uuid Source UUID
56832
56971
  * @param {*} [options] Override http request option.
56833
56972
  * @throws {RequiredError}
56834
56973
  * @memberof ConnectorAdminSourcesApi
56835
56974
  */
56836
- adminConnectorSourcesUuidCheckPost(uuid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorSourceServiceCheckResult, any, {}>>;
56975
+ adminConnectorSourcesUuidCheckPost(uuid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorValidateAuthResponse, any, {}>>;
56837
56976
  /**
56838
56977
  * Soft-deletes a source. Returns 409 if referenced by an active task.
56839
56978
  * @summary Delete a connector source
@@ -56844,7 +56983,7 @@ export declare class ConnectorAdminSourcesApi extends BaseAPI {
56844
56983
  */
56845
56984
  adminConnectorSourcesUuidDelete(uuid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
56846
56985
  /**
56847
- * Dispatches a catalog discovery job to the go-worker. Returns the pending catalog immediately.
56986
+ * 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.
56848
56987
  * @summary Discover source stream catalog
56849
56988
  * @param {string} uuid Source UUID
56850
56989
  * @param {*} [options] Override http request option.
@@ -59673,7 +59812,7 @@ export declare const ConnectorsApiAxiosParamCreator: (configuration?: Configurat
59673
59812
  */
59674
59813
  v1ConnectorsAuthUuidPut: (uuid: string, connectorUpdateAuthRequest: ConnectorUpdateAuthRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
59675
59814
  /**
59676
- * Decrypts and validates stored credentials. Updates is_valid and last_validated_at.
59815
+ * Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
59677
59816
  * @summary Validate connector authentication credentials
59678
59817
  * @param {string} uuid Authentication UUID
59679
59818
  * @param {*} [options] Override http request option.
@@ -60102,13 +60241,13 @@ export declare const ConnectorsApiFp: (configuration?: Configuration) => {
60102
60241
  */
60103
60242
  v1ConnectorsAuthUuidPut(uuid: string, connectorUpdateAuthRequest: ConnectorUpdateAuthRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConnectorAuthResponse>>;
60104
60243
  /**
60105
- * Decrypts and validates stored credentials. Updates is_valid and last_validated_at.
60244
+ * Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
60106
60245
  * @summary Validate connector authentication credentials
60107
60246
  * @param {string} uuid Authentication UUID
60108
60247
  * @param {*} [options] Override http request option.
60109
60248
  * @throws {RequiredError}
60110
60249
  */
60111
- v1ConnectorsAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConnectorAuthResponse>>;
60250
+ v1ConnectorsAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConnectorValidateAuthResponse>>;
60112
60251
  /**
60113
60252
  * Returns metadata for all registered connector destination types. Pure registry lookup — no DB calls.
60114
60253
  * @summary List registered destination types
@@ -60535,13 +60674,13 @@ export declare const ConnectorsApiFactory: (configuration?: Configuration, baseP
60535
60674
  */
60536
60675
  v1ConnectorsAuthUuidPut(uuid: string, connectorUpdateAuthRequest: ConnectorUpdateAuthRequest, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorAuthResponse>;
60537
60676
  /**
60538
- * Decrypts and validates stored credentials. Updates is_valid and last_validated_at.
60677
+ * Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
60539
60678
  * @summary Validate connector authentication credentials
60540
60679
  * @param {string} uuid Authentication UUID
60541
60680
  * @param {*} [options] Override http request option.
60542
60681
  * @throws {RequiredError}
60543
60682
  */
60544
- v1ConnectorsAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorAuthResponse>;
60683
+ v1ConnectorsAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorValidateAuthResponse>;
60545
60684
  /**
60546
60685
  * Returns metadata for all registered connector destination types. Pure registry lookup — no DB calls.
60547
60686
  * @summary List registered destination types
@@ -60984,14 +61123,14 @@ export declare class ConnectorsApi extends BaseAPI {
60984
61123
  */
60985
61124
  v1ConnectorsAuthUuidPut(uuid: string, connectorUpdateAuthRequest: ConnectorUpdateAuthRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorAuthResponse, any, {}>>;
60986
61125
  /**
60987
- * Decrypts and validates stored credentials. Updates is_valid and last_validated_at.
61126
+ * Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
60988
61127
  * @summary Validate connector authentication credentials
60989
61128
  * @param {string} uuid Authentication UUID
60990
61129
  * @param {*} [options] Override http request option.
60991
61130
  * @throws {RequiredError}
60992
61131
  * @memberof ConnectorsApi
60993
61132
  */
60994
- v1ConnectorsAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorAuthResponse, any, {}>>;
61133
+ v1ConnectorsAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorValidateAuthResponse, any, {}>>;
60995
61134
  /**
60996
61135
  * Returns metadata for all registered connector destination types. Pure registry lookup — no DB calls.
60997
61136
  * @summary List registered destination types