@seekora-ai/admin-api 1.2.12 → 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,364 @@ 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;
14617
+ }
14618
+ /**
14619
+ *
14620
+ * @export
14621
+ * @interface ConnectorWebhookDeliveriesListData
14622
+ */
14623
+ export interface ConnectorWebhookDeliveriesListData {
14624
+ /**
14625
+ *
14626
+ * @type {number}
14627
+ * @memberof ConnectorWebhookDeliveriesListData
14628
+ */
14629
+ 'count'?: number;
14630
+ /**
14631
+ *
14632
+ * @type {Array<ConnectorWebhookDeliveryItem>}
14633
+ * @memberof ConnectorWebhookDeliveriesListData
14634
+ */
14635
+ 'deliveries'?: Array<ConnectorWebhookDeliveryItem>;
14636
+ /**
14637
+ *
14638
+ * @type {string}
14639
+ * @memberof ConnectorWebhookDeliveriesListData
14640
+ */
14641
+ 'next_cursor'?: string;
14642
+ }
14643
+ /**
14644
+ *
14645
+ * @export
14646
+ * @interface ConnectorWebhookDeliveriesListResponse
14647
+ */
14648
+ export interface ConnectorWebhookDeliveriesListResponse {
14649
+ /**
14650
+ *
14651
+ * @type {ConnectorWebhookDeliveriesListData}
14652
+ * @memberof ConnectorWebhookDeliveriesListResponse
14653
+ */
14654
+ 'data'?: ConnectorWebhookDeliveriesListData;
14655
+ /**
14656
+ *
14657
+ * @type {string}
14658
+ * @memberof ConnectorWebhookDeliveriesListResponse
14659
+ */
14660
+ 'message'?: string;
14661
+ /**
14662
+ *
14663
+ * @type {number}
14664
+ * @memberof ConnectorWebhookDeliveriesListResponse
14665
+ */
14666
+ 'status'?: number;
14667
+ /**
14668
+ *
14669
+ * @type {string}
14670
+ * @memberof ConnectorWebhookDeliveriesListResponse
14671
+ */
14672
+ 'timestamp'?: string;
14673
+ }
14674
+ /**
14675
+ *
14676
+ * @export
14677
+ * @interface ConnectorWebhookDeliveryItem
14678
+ */
14679
+ export interface ConnectorWebhookDeliveryItem {
14680
+ /**
14681
+ *
14682
+ * @type {string}
14683
+ * @memberof ConnectorWebhookDeliveryItem
14684
+ */
14685
+ 'connector_type'?: string;
14686
+ /**
14687
+ *
14688
+ * @type {string}
14689
+ * @memberof ConnectorWebhookDeliveryItem
14690
+ */
14691
+ 'error_message'?: string;
14692
+ /**
14693
+ *
14694
+ * @type {string}
14695
+ * @memberof ConnectorWebhookDeliveryItem
14696
+ */
14697
+ 'external_id'?: string;
14698
+ /**
14699
+ *
14700
+ * @type {boolean}
14701
+ * @memberof ConnectorWebhookDeliveryItem
14702
+ */
14703
+ 'has_body'?: boolean;
14704
+ /**
14705
+ *
14706
+ * @type {object}
14707
+ * @memberof ConnectorWebhookDeliveryItem
14708
+ */
14709
+ 'headers'?: object;
14710
+ /**
14711
+ *
14712
+ * @type {string}
14713
+ * @memberof ConnectorWebhookDeliveryItem
14714
+ */
14715
+ 'processed_at'?: string;
14716
+ /**
14717
+ *
14718
+ * @type {string}
14719
+ * @memberof ConnectorWebhookDeliveryItem
14720
+ */
14721
+ 'received_at'?: string;
14722
+ /**
14723
+ *
14724
+ * @type {string}
14725
+ * @memberof ConnectorWebhookDeliveryItem
14726
+ */
14727
+ 'status'?: string;
14728
+ /**
14729
+ *
14730
+ * @type {string}
14731
+ * @memberof ConnectorWebhookDeliveryItem
14732
+ */
14733
+ 'stream'?: string;
14734
+ /**
14735
+ *
14736
+ * @type {string}
14737
+ * @memberof ConnectorWebhookDeliveryItem
14738
+ */
14739
+ 'uuid'?: string;
14740
+ }
14741
+ /**
14742
+ *
14743
+ * @export
14744
+ * @interface ConnectorWebhookReplayResponse
14745
+ */
14746
+ export interface ConnectorWebhookReplayResponse {
14747
+ /**
14748
+ *
14749
+ * @type {ConnectorWebhookReplayResult}
14750
+ * @memberof ConnectorWebhookReplayResponse
14751
+ */
14752
+ 'data'?: ConnectorWebhookReplayResult;
14753
+ /**
14754
+ *
14755
+ * @type {string}
14756
+ * @memberof ConnectorWebhookReplayResponse
14757
+ */
14758
+ 'message'?: string;
14759
+ /**
14760
+ *
14761
+ * @type {number}
14762
+ * @memberof ConnectorWebhookReplayResponse
14763
+ */
14764
+ 'status'?: number;
14765
+ /**
14766
+ *
14767
+ * @type {string}
14768
+ * @memberof ConnectorWebhookReplayResponse
14769
+ */
14770
+ 'timestamp'?: string;
14771
+ }
14772
+ /**
14773
+ *
14774
+ * @export
14775
+ * @interface ConnectorWebhookReplayResult
14776
+ */
14777
+ export interface ConnectorWebhookReplayResult {
14778
+ /**
14779
+ *
14780
+ * @type {string}
14781
+ * @memberof ConnectorWebhookReplayResult
14782
+ */
14783
+ 'original_delivery_uuid'?: string;
14784
+ /**
14785
+ *
14786
+ * @type {string}
14787
+ * @memberof ConnectorWebhookReplayResult
14788
+ */
14789
+ 'replay_delivery_uuid'?: string;
14790
+ }
14791
+ /**
14792
+ *
14793
+ * @export
14794
+ * @interface ConnectorWebhookResubscribeAllFailure
14795
+ */
14796
+ export interface ConnectorWebhookResubscribeAllFailure {
14797
+ /**
14798
+ *
14799
+ * @type {string}
14800
+ * @memberof ConnectorWebhookResubscribeAllFailure
14801
+ */
14802
+ 'error'?: string;
14803
+ /**
14804
+ *
14805
+ * @type {string}
14806
+ * @memberof ConnectorWebhookResubscribeAllFailure
14807
+ */
14808
+ 'source_uuid'?: string;
14809
+ }
14810
+ /**
14811
+ *
14812
+ * @export
14813
+ * @interface ConnectorWebhookResubscribeAllResponse
14814
+ */
14815
+ export interface ConnectorWebhookResubscribeAllResponse {
14816
+ /**
14817
+ *
14818
+ * @type {ConnectorWebhookResubscribeAllResult}
14819
+ * @memberof ConnectorWebhookResubscribeAllResponse
14820
+ */
14821
+ 'data'?: ConnectorWebhookResubscribeAllResult;
14822
+ /**
14823
+ *
14824
+ * @type {string}
14825
+ * @memberof ConnectorWebhookResubscribeAllResponse
14826
+ */
14827
+ 'message'?: string;
14828
+ /**
14829
+ *
14830
+ * @type {number}
14831
+ * @memberof ConnectorWebhookResubscribeAllResponse
14832
+ */
14833
+ 'status'?: number;
14834
+ /**
14835
+ *
14836
+ * @type {string}
14837
+ * @memberof ConnectorWebhookResubscribeAllResponse
14838
+ */
14839
+ 'timestamp'?: string;
14840
+ }
14841
+ /**
14842
+ *
14843
+ * @export
14844
+ * @interface ConnectorWebhookResubscribeAllResult
14845
+ */
14846
+ export interface ConnectorWebhookResubscribeAllResult {
14847
+ /**
14848
+ *
14849
+ * @type {Array<ConnectorWebhookResubscribeAllFailure>}
14850
+ * @memberof ConnectorWebhookResubscribeAllResult
14851
+ */
14852
+ 'errors'?: Array<ConnectorWebhookResubscribeAllFailure>;
14853
+ /**
14854
+ *
14855
+ * @type {number}
14856
+ * @memberof ConnectorWebhookResubscribeAllResult
14857
+ */
14858
+ 'failed'?: number;
14859
+ /**
14860
+ *
14861
+ * @type {number}
14862
+ * @memberof ConnectorWebhookResubscribeAllResult
14863
+ */
14864
+ 'succeeded'?: number;
14865
+ /**
14866
+ *
14867
+ * @type {number}
14868
+ * @memberof ConnectorWebhookResubscribeAllResult
14869
+ */
14870
+ 'total'?: number;
14871
+ }
14872
+ /**
14873
+ *
14874
+ * @export
14875
+ * @interface ConnectorWebhookResubscribeResponse
14876
+ */
14877
+ export interface ConnectorWebhookResubscribeResponse {
14878
+ /**
14879
+ *
14880
+ * @type {ConnectorWebhookResubscribeResult}
14881
+ * @memberof ConnectorWebhookResubscribeResponse
14882
+ */
14883
+ 'data'?: ConnectorWebhookResubscribeResult;
14884
+ /**
14885
+ *
14886
+ * @type {string}
14887
+ * @memberof ConnectorWebhookResubscribeResponse
14888
+ */
14889
+ 'message'?: string;
14890
+ /**
14891
+ *
14892
+ * @type {number}
14893
+ * @memberof ConnectorWebhookResubscribeResponse
14894
+ */
14895
+ 'status'?: number;
14896
+ /**
14897
+ *
14898
+ * @type {string}
14899
+ * @memberof ConnectorWebhookResubscribeResponse
14900
+ */
14901
+ 'timestamp'?: string;
14902
+ }
14903
+ /**
14904
+ *
14905
+ * @export
14906
+ * @interface ConnectorWebhookResubscribeResult
14907
+ */
14908
+ export interface ConnectorWebhookResubscribeResult {
14909
+ /**
14910
+ *
14911
+ * @type {string}
14912
+ * @memberof ConnectorWebhookResubscribeResult
14913
+ */
14914
+ 'connector_type'?: string;
14915
+ /**
14916
+ *
14917
+ * @type {string}
14918
+ * @memberof ConnectorWebhookResubscribeResult
14919
+ */
14920
+ 'source_uuid'?: string;
14921
+ /**
14922
+ *
14923
+ * @type {number}
14924
+ * @memberof ConnectorWebhookResubscribeResult
14925
+ */
14926
+ 'topics_subscribed'?: number;
14478
14927
  }
14479
14928
  /**
14480
14929
  *
@@ -44911,6 +45360,176 @@ export declare class AdminAnalyticsApi extends BaseAPI {
44911
45360
  */
44912
45361
  v1AdminAnalyticsTestModePost(body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
44913
45362
  }
45363
+ /**
45364
+ * AdminConnectorWebhooksApi - axios parameter creator
45365
+ * @export
45366
+ */
45367
+ export declare const AdminConnectorWebhooksApiAxiosParamCreator: (configuration?: Configuration) => {
45368
+ /**
45369
+ * Re-publish a previously recorded delivery through the forge.webhook exchange. A new external_id is minted so the worker processes the replay end-to-end.
45370
+ * @summary Replay a recorded webhook delivery
45371
+ * @param {string} sourceUuid Connector source UUID
45372
+ * @param {string} deliveryUuid Delivery UUID to replay
45373
+ * @param {*} [options] Override http request option.
45374
+ * @throws {RequiredError}
45375
+ */
45376
+ adminConnectorsSourcesSourceUuidWebhooksDeliveriesDeliveryUuidReplayPost: (sourceUuid: string, deliveryUuid: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
45377
+ /**
45378
+ * Paginated list of recent webhook deliveries for a connector source. body_base64 is redacted; use replay to send a delivery through the pipeline again.
45379
+ * @summary List recent webhook deliveries
45380
+ * @param {string} sourceUuid Connector source UUID
45381
+ * @param {string} [status] Filter by delivery status (pending, processed, failed)
45382
+ * @param {number} [limit] Page size (default 50, max 200)
45383
+ * @param {string} [beforeUuid] Cursor: return rows older than the delivery with this UUID
45384
+ * @param {*} [options] Override http request option.
45385
+ * @throws {RequiredError}
45386
+ */
45387
+ adminConnectorsSourcesSourceUuidWebhooksDeliveriesGet: (sourceUuid: string, status?: string, limit?: number, beforeUuid?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
45388
+ /**
45389
+ * Re-run the register_webhooks post-install hook for one connector source. Idempotent via ON CONFLICT (source_id, topic) DO UPDATE.
45390
+ * @summary Resubscribe webhooks for a connector source
45391
+ * @param {string} sourceUuid Connector source UUID
45392
+ * @param {*} [options] Override http request option.
45393
+ * @throws {RequiredError}
45394
+ */
45395
+ adminConnectorsSourcesSourceUuidWebhooksResubscribePost: (sourceUuid: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
45396
+ /**
45397
+ * Iterates every active connector source in the org and re-runs register_webhooks for each. Per-source errors are captured individually — one failure does not block the others.
45398
+ * @summary Resubscribe webhooks for every connector source
45399
+ * @param {*} [options] Override http request option.
45400
+ * @throws {RequiredError}
45401
+ */
45402
+ adminConnectorsWebhooksResubscribeAllPost: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
45403
+ };
45404
+ /**
45405
+ * AdminConnectorWebhooksApi - functional programming interface
45406
+ * @export
45407
+ */
45408
+ export declare const AdminConnectorWebhooksApiFp: (configuration?: Configuration) => {
45409
+ /**
45410
+ * Re-publish a previously recorded delivery through the forge.webhook exchange. A new external_id is minted so the worker processes the replay end-to-end.
45411
+ * @summary Replay a recorded webhook delivery
45412
+ * @param {string} sourceUuid Connector source UUID
45413
+ * @param {string} deliveryUuid Delivery UUID to replay
45414
+ * @param {*} [options] Override http request option.
45415
+ * @throws {RequiredError}
45416
+ */
45417
+ adminConnectorsSourcesSourceUuidWebhooksDeliveriesDeliveryUuidReplayPost(sourceUuid: string, deliveryUuid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConnectorWebhookReplayResponse>>;
45418
+ /**
45419
+ * Paginated list of recent webhook deliveries for a connector source. body_base64 is redacted; use replay to send a delivery through the pipeline again.
45420
+ * @summary List recent webhook deliveries
45421
+ * @param {string} sourceUuid Connector source UUID
45422
+ * @param {string} [status] Filter by delivery status (pending, processed, failed)
45423
+ * @param {number} [limit] Page size (default 50, max 200)
45424
+ * @param {string} [beforeUuid] Cursor: return rows older than the delivery with this UUID
45425
+ * @param {*} [options] Override http request option.
45426
+ * @throws {RequiredError}
45427
+ */
45428
+ adminConnectorsSourcesSourceUuidWebhooksDeliveriesGet(sourceUuid: string, status?: string, limit?: number, beforeUuid?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConnectorWebhookDeliveriesListResponse>>;
45429
+ /**
45430
+ * Re-run the register_webhooks post-install hook for one connector source. Idempotent via ON CONFLICT (source_id, topic) DO UPDATE.
45431
+ * @summary Resubscribe webhooks for a connector source
45432
+ * @param {string} sourceUuid Connector source UUID
45433
+ * @param {*} [options] Override http request option.
45434
+ * @throws {RequiredError}
45435
+ */
45436
+ adminConnectorsSourcesSourceUuidWebhooksResubscribePost(sourceUuid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConnectorWebhookResubscribeResponse>>;
45437
+ /**
45438
+ * Iterates every active connector source in the org and re-runs register_webhooks for each. Per-source errors are captured individually — one failure does not block the others.
45439
+ * @summary Resubscribe webhooks for every connector source
45440
+ * @param {*} [options] Override http request option.
45441
+ * @throws {RequiredError}
45442
+ */
45443
+ adminConnectorsWebhooksResubscribeAllPost(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConnectorWebhookResubscribeAllResponse>>;
45444
+ };
45445
+ /**
45446
+ * AdminConnectorWebhooksApi - factory interface
45447
+ * @export
45448
+ */
45449
+ export declare const AdminConnectorWebhooksApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
45450
+ /**
45451
+ * Re-publish a previously recorded delivery through the forge.webhook exchange. A new external_id is minted so the worker processes the replay end-to-end.
45452
+ * @summary Replay a recorded webhook delivery
45453
+ * @param {string} sourceUuid Connector source UUID
45454
+ * @param {string} deliveryUuid Delivery UUID to replay
45455
+ * @param {*} [options] Override http request option.
45456
+ * @throws {RequiredError}
45457
+ */
45458
+ adminConnectorsSourcesSourceUuidWebhooksDeliveriesDeliveryUuidReplayPost(sourceUuid: string, deliveryUuid: string, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorWebhookReplayResponse>;
45459
+ /**
45460
+ * Paginated list of recent webhook deliveries for a connector source. body_base64 is redacted; use replay to send a delivery through the pipeline again.
45461
+ * @summary List recent webhook deliveries
45462
+ * @param {string} sourceUuid Connector source UUID
45463
+ * @param {string} [status] Filter by delivery status (pending, processed, failed)
45464
+ * @param {number} [limit] Page size (default 50, max 200)
45465
+ * @param {string} [beforeUuid] Cursor: return rows older than the delivery with this UUID
45466
+ * @param {*} [options] Override http request option.
45467
+ * @throws {RequiredError}
45468
+ */
45469
+ adminConnectorsSourcesSourceUuidWebhooksDeliveriesGet(sourceUuid: string, status?: string, limit?: number, beforeUuid?: string, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorWebhookDeliveriesListResponse>;
45470
+ /**
45471
+ * Re-run the register_webhooks post-install hook for one connector source. Idempotent via ON CONFLICT (source_id, topic) DO UPDATE.
45472
+ * @summary Resubscribe webhooks for a connector source
45473
+ * @param {string} sourceUuid Connector source UUID
45474
+ * @param {*} [options] Override http request option.
45475
+ * @throws {RequiredError}
45476
+ */
45477
+ adminConnectorsSourcesSourceUuidWebhooksResubscribePost(sourceUuid: string, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorWebhookResubscribeResponse>;
45478
+ /**
45479
+ * Iterates every active connector source in the org and re-runs register_webhooks for each. Per-source errors are captured individually — one failure does not block the others.
45480
+ * @summary Resubscribe webhooks for every connector source
45481
+ * @param {*} [options] Override http request option.
45482
+ * @throws {RequiredError}
45483
+ */
45484
+ adminConnectorsWebhooksResubscribeAllPost(options?: RawAxiosRequestConfig): AxiosPromise<ConnectorWebhookResubscribeAllResponse>;
45485
+ };
45486
+ /**
45487
+ * AdminConnectorWebhooksApi - object-oriented interface
45488
+ * @export
45489
+ * @class AdminConnectorWebhooksApi
45490
+ * @extends {BaseAPI}
45491
+ */
45492
+ export declare class AdminConnectorWebhooksApi extends BaseAPI {
45493
+ /**
45494
+ * Re-publish a previously recorded delivery through the forge.webhook exchange. A new external_id is minted so the worker processes the replay end-to-end.
45495
+ * @summary Replay a recorded webhook delivery
45496
+ * @param {string} sourceUuid Connector source UUID
45497
+ * @param {string} deliveryUuid Delivery UUID to replay
45498
+ * @param {*} [options] Override http request option.
45499
+ * @throws {RequiredError}
45500
+ * @memberof AdminConnectorWebhooksApi
45501
+ */
45502
+ adminConnectorsSourcesSourceUuidWebhooksDeliveriesDeliveryUuidReplayPost(sourceUuid: string, deliveryUuid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorWebhookReplayResponse, any, {}>>;
45503
+ /**
45504
+ * Paginated list of recent webhook deliveries for a connector source. body_base64 is redacted; use replay to send a delivery through the pipeline again.
45505
+ * @summary List recent webhook deliveries
45506
+ * @param {string} sourceUuid Connector source UUID
45507
+ * @param {string} [status] Filter by delivery status (pending, processed, failed)
45508
+ * @param {number} [limit] Page size (default 50, max 200)
45509
+ * @param {string} [beforeUuid] Cursor: return rows older than the delivery with this UUID
45510
+ * @param {*} [options] Override http request option.
45511
+ * @throws {RequiredError}
45512
+ * @memberof AdminConnectorWebhooksApi
45513
+ */
45514
+ adminConnectorsSourcesSourceUuidWebhooksDeliveriesGet(sourceUuid: string, status?: string, limit?: number, beforeUuid?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorWebhookDeliveriesListResponse, any, {}>>;
45515
+ /**
45516
+ * Re-run the register_webhooks post-install hook for one connector source. Idempotent via ON CONFLICT (source_id, topic) DO UPDATE.
45517
+ * @summary Resubscribe webhooks for a connector source
45518
+ * @param {string} sourceUuid Connector source UUID
45519
+ * @param {*} [options] Override http request option.
45520
+ * @throws {RequiredError}
45521
+ * @memberof AdminConnectorWebhooksApi
45522
+ */
45523
+ adminConnectorsSourcesSourceUuidWebhooksResubscribePost(sourceUuid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorWebhookResubscribeResponse, any, {}>>;
45524
+ /**
45525
+ * Iterates every active connector source in the org and re-runs register_webhooks for each. Per-source errors are captured individually — one failure does not block the others.
45526
+ * @summary Resubscribe webhooks for every connector source
45527
+ * @param {*} [options] Override http request option.
45528
+ * @throws {RequiredError}
45529
+ * @memberof AdminConnectorWebhooksApi
45530
+ */
45531
+ adminConnectorsWebhooksResubscribeAllPost(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorWebhookResubscribeAllResponse, any, {}>>;
45532
+ }
44914
45533
  /**
44915
45534
  * AdminNotificationTemplatesApi - axios parameter creator
44916
45535
  * @export
@@ -54947,7 +55566,7 @@ export declare const ConnectorAdminAuthApiAxiosParamCreator: (configuration?: Co
54947
55566
  */
54948
55567
  adminConnectorAuthUuidPut: (uuid: string, connectorUpdateAuthRequest: ConnectorUpdateAuthRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
54949
55568
  /**
54950
- * 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.
54951
55570
  * @summary Validate connector authentication credentials
54952
55571
  * @param {string} uuid Authentication UUID
54953
55572
  * @param {*} [options] Override http request option.
@@ -55001,13 +55620,13 @@ export declare const ConnectorAdminAuthApiFp: (configuration?: Configuration) =>
55001
55620
  */
55002
55621
  adminConnectorAuthUuidPut(uuid: string, connectorUpdateAuthRequest: ConnectorUpdateAuthRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConnectorAuthResponse>>;
55003
55622
  /**
55004
- * 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.
55005
55624
  * @summary Validate connector authentication credentials
55006
55625
  * @param {string} uuid Authentication UUID
55007
55626
  * @param {*} [options] Override http request option.
55008
55627
  * @throws {RequiredError}
55009
55628
  */
55010
- 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>>;
55011
55630
  };
55012
55631
  /**
55013
55632
  * ConnectorAdminAuthApi - factory interface
@@ -55055,13 +55674,13 @@ export declare const ConnectorAdminAuthApiFactory: (configuration?: Configuratio
55055
55674
  */
55056
55675
  adminConnectorAuthUuidPut(uuid: string, connectorUpdateAuthRequest: ConnectorUpdateAuthRequest, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorAuthResponse>;
55057
55676
  /**
55058
- * 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.
55059
55678
  * @summary Validate connector authentication credentials
55060
55679
  * @param {string} uuid Authentication UUID
55061
55680
  * @param {*} [options] Override http request option.
55062
55681
  * @throws {RequiredError}
55063
55682
  */
55064
- adminConnectorAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorAuthResponse>;
55683
+ adminConnectorAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorValidateAuthResponse>;
55065
55684
  };
55066
55685
  /**
55067
55686
  * ConnectorAdminAuthApi - object-oriented interface
@@ -55116,14 +55735,14 @@ export declare class ConnectorAdminAuthApi extends BaseAPI {
55116
55735
  */
55117
55736
  adminConnectorAuthUuidPut(uuid: string, connectorUpdateAuthRequest: ConnectorUpdateAuthRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorAuthResponse, any, {}>>;
55118
55737
  /**
55119
- * 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.
55120
55739
  * @summary Validate connector authentication credentials
55121
55740
  * @param {string} uuid Authentication UUID
55122
55741
  * @param {*} [options] Override http request option.
55123
55742
  * @throws {RequiredError}
55124
55743
  * @memberof ConnectorAdminAuthApi
55125
55744
  */
55126
- adminConnectorAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorAuthResponse, any, {}>>;
55745
+ adminConnectorAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorValidateAuthResponse, any, {}>>;
55127
55746
  }
55128
55747
  /**
55129
55748
  * ConnectorAdminDestinationsApi - axios parameter creator
@@ -56104,7 +56723,7 @@ export declare const ConnectorAdminSourcesApiAxiosParamCreator: (configuration?:
56104
56723
  */
56105
56724
  adminConnectorSourcesTestConnectionPost: (connectorTestConnectionRequest: ConnectorTestConnectionRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
56106
56725
  /**
56107
- * 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.
56108
56727
  * @summary Check source connectivity
56109
56728
  * @param {string} uuid Source UUID
56110
56729
  * @param {*} [options] Override http request option.
@@ -56120,7 +56739,7 @@ export declare const ConnectorAdminSourcesApiAxiosParamCreator: (configuration?:
56120
56739
  */
56121
56740
  adminConnectorSourcesUuidDelete: (uuid: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
56122
56741
  /**
56123
- * 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.
56124
56743
  * @summary Discover source stream catalog
56125
56744
  * @param {string} uuid Source UUID
56126
56745
  * @param {*} [options] Override http request option.
@@ -56183,13 +56802,13 @@ export declare const ConnectorAdminSourcesApiFp: (configuration?: Configuration)
56183
56802
  */
56184
56803
  adminConnectorSourcesTestConnectionPost(connectorTestConnectionRequest: ConnectorTestConnectionRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConnectorTestConnectionResponse>>;
56185
56804
  /**
56186
- * 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.
56187
56806
  * @summary Check source connectivity
56188
56807
  * @param {string} uuid Source UUID
56189
56808
  * @param {*} [options] Override http request option.
56190
56809
  * @throws {RequiredError}
56191
56810
  */
56192
- 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>>;
56193
56812
  /**
56194
56813
  * Soft-deletes a source. Returns 409 if referenced by an active task.
56195
56814
  * @summary Delete a connector source
@@ -56199,7 +56818,7 @@ export declare const ConnectorAdminSourcesApiFp: (configuration?: Configuration)
56199
56818
  */
56200
56819
  adminConnectorSourcesUuidDelete(uuid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
56201
56820
  /**
56202
- * 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.
56203
56822
  * @summary Discover source stream catalog
56204
56823
  * @param {string} uuid Source UUID
56205
56824
  * @param {*} [options] Override http request option.
@@ -56262,13 +56881,13 @@ export declare const ConnectorAdminSourcesApiFactory: (configuration?: Configura
56262
56881
  */
56263
56882
  adminConnectorSourcesTestConnectionPost(connectorTestConnectionRequest: ConnectorTestConnectionRequest, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorTestConnectionResponse>;
56264
56883
  /**
56265
- * 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.
56266
56885
  * @summary Check source connectivity
56267
56886
  * @param {string} uuid Source UUID
56268
56887
  * @param {*} [options] Override http request option.
56269
56888
  * @throws {RequiredError}
56270
56889
  */
56271
- adminConnectorSourcesUuidCheckPost(uuid: string, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorSourceServiceCheckResult>;
56890
+ adminConnectorSourcesUuidCheckPost(uuid: string, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorValidateAuthResponse>;
56272
56891
  /**
56273
56892
  * Soft-deletes a source. Returns 409 if referenced by an active task.
56274
56893
  * @summary Delete a connector source
@@ -56278,7 +56897,7 @@ export declare const ConnectorAdminSourcesApiFactory: (configuration?: Configura
56278
56897
  */
56279
56898
  adminConnectorSourcesUuidDelete(uuid: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
56280
56899
  /**
56281
- * 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.
56282
56901
  * @summary Discover source stream catalog
56283
56902
  * @param {string} uuid Source UUID
56284
56903
  * @param {*} [options] Override http request option.
@@ -56346,14 +56965,14 @@ export declare class ConnectorAdminSourcesApi extends BaseAPI {
56346
56965
  */
56347
56966
  adminConnectorSourcesTestConnectionPost(connectorTestConnectionRequest: ConnectorTestConnectionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorTestConnectionResponse, any, {}>>;
56348
56967
  /**
56349
- * 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.
56350
56969
  * @summary Check source connectivity
56351
56970
  * @param {string} uuid Source UUID
56352
56971
  * @param {*} [options] Override http request option.
56353
56972
  * @throws {RequiredError}
56354
56973
  * @memberof ConnectorAdminSourcesApi
56355
56974
  */
56356
- adminConnectorSourcesUuidCheckPost(uuid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorSourceServiceCheckResult, any, {}>>;
56975
+ adminConnectorSourcesUuidCheckPost(uuid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorValidateAuthResponse, any, {}>>;
56357
56976
  /**
56358
56977
  * Soft-deletes a source. Returns 409 if referenced by an active task.
56359
56978
  * @summary Delete a connector source
@@ -56364,7 +56983,7 @@ export declare class ConnectorAdminSourcesApi extends BaseAPI {
56364
56983
  */
56365
56984
  adminConnectorSourcesUuidDelete(uuid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
56366
56985
  /**
56367
- * 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.
56368
56987
  * @summary Discover source stream catalog
56369
56988
  * @param {string} uuid Source UUID
56370
56989
  * @param {*} [options] Override http request option.
@@ -59193,7 +59812,7 @@ export declare const ConnectorsApiAxiosParamCreator: (configuration?: Configurat
59193
59812
  */
59194
59813
  v1ConnectorsAuthUuidPut: (uuid: string, connectorUpdateAuthRequest: ConnectorUpdateAuthRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
59195
59814
  /**
59196
- * 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.
59197
59816
  * @summary Validate connector authentication credentials
59198
59817
  * @param {string} uuid Authentication UUID
59199
59818
  * @param {*} [options] Override http request option.
@@ -59622,13 +60241,13 @@ export declare const ConnectorsApiFp: (configuration?: Configuration) => {
59622
60241
  */
59623
60242
  v1ConnectorsAuthUuidPut(uuid: string, connectorUpdateAuthRequest: ConnectorUpdateAuthRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConnectorAuthResponse>>;
59624
60243
  /**
59625
- * 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.
59626
60245
  * @summary Validate connector authentication credentials
59627
60246
  * @param {string} uuid Authentication UUID
59628
60247
  * @param {*} [options] Override http request option.
59629
60248
  * @throws {RequiredError}
59630
60249
  */
59631
- 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>>;
59632
60251
  /**
59633
60252
  * Returns metadata for all registered connector destination types. Pure registry lookup — no DB calls.
59634
60253
  * @summary List registered destination types
@@ -60055,13 +60674,13 @@ export declare const ConnectorsApiFactory: (configuration?: Configuration, baseP
60055
60674
  */
60056
60675
  v1ConnectorsAuthUuidPut(uuid: string, connectorUpdateAuthRequest: ConnectorUpdateAuthRequest, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorAuthResponse>;
60057
60676
  /**
60058
- * 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.
60059
60678
  * @summary Validate connector authentication credentials
60060
60679
  * @param {string} uuid Authentication UUID
60061
60680
  * @param {*} [options] Override http request option.
60062
60681
  * @throws {RequiredError}
60063
60682
  */
60064
- v1ConnectorsAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorAuthResponse>;
60683
+ v1ConnectorsAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorValidateAuthResponse>;
60065
60684
  /**
60066
60685
  * Returns metadata for all registered connector destination types. Pure registry lookup — no DB calls.
60067
60686
  * @summary List registered destination types
@@ -60504,14 +61123,14 @@ export declare class ConnectorsApi extends BaseAPI {
60504
61123
  */
60505
61124
  v1ConnectorsAuthUuidPut(uuid: string, connectorUpdateAuthRequest: ConnectorUpdateAuthRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorAuthResponse, any, {}>>;
60506
61125
  /**
60507
- * 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.
60508
61127
  * @summary Validate connector authentication credentials
60509
61128
  * @param {string} uuid Authentication UUID
60510
61129
  * @param {*} [options] Override http request option.
60511
61130
  * @throws {RequiredError}
60512
61131
  * @memberof ConnectorsApi
60513
61132
  */
60514
- v1ConnectorsAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorAuthResponse, any, {}>>;
61133
+ v1ConnectorsAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorValidateAuthResponse, any, {}>>;
60515
61134
  /**
60516
61135
  * Returns metadata for all registered connector destination types. Pure registry lookup — no DB calls.
60517
61136
  * @summary List registered destination types