@seekora-ai/admin-api 1.2.13 → 1.2.15-stage-20260517095154
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 +21 -2
- package/api.ts +1149 -29
- package/dist/api.d.ts +819 -29
- package/dist/api.js +697 -35
- package/dist/esm/api.d.ts +819 -29
- package/dist/esm/api.js +672 -23
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.2.15-stage-20260517095154.tgz +0 -0
- package/seekora-ai-admin-api-1.2.13.tgz +0 -0
package/dist/esm/api.d.ts
CHANGED
|
@@ -11992,6 +11992,62 @@ export interface BillingProviderRefundReq {
|
|
|
11992
11992
|
*/
|
|
11993
11993
|
'reason'?: string;
|
|
11994
11994
|
}
|
|
11995
|
+
/**
|
|
11996
|
+
*
|
|
11997
|
+
* @export
|
|
11998
|
+
* @interface BillingProviderResumeCancelledSubscriptionResponse
|
|
11999
|
+
*/
|
|
12000
|
+
export interface BillingProviderResumeCancelledSubscriptionResponse {
|
|
12001
|
+
/**
|
|
12002
|
+
*
|
|
12003
|
+
* @type {string}
|
|
12004
|
+
* @memberof BillingProviderResumeCancelledSubscriptionResponse
|
|
12005
|
+
*/
|
|
12006
|
+
'period_end'?: string;
|
|
12007
|
+
/**
|
|
12008
|
+
*
|
|
12009
|
+
* @type {string}
|
|
12010
|
+
* @memberof BillingProviderResumeCancelledSubscriptionResponse
|
|
12011
|
+
*/
|
|
12012
|
+
'plan_version_id'?: string;
|
|
12013
|
+
}
|
|
12014
|
+
/**
|
|
12015
|
+
*
|
|
12016
|
+
* @export
|
|
12017
|
+
* @interface BillingProviderReturningMerchantSignal
|
|
12018
|
+
*/
|
|
12019
|
+
export interface BillingProviderReturningMerchantSignal {
|
|
12020
|
+
/**
|
|
12021
|
+
*
|
|
12022
|
+
* @type {number}
|
|
12023
|
+
* @memberof BillingProviderReturningMerchantSignal
|
|
12024
|
+
*/
|
|
12025
|
+
'days_remaining'?: number;
|
|
12026
|
+
/**
|
|
12027
|
+
*
|
|
12028
|
+
* @type {boolean}
|
|
12029
|
+
* @memberof BillingProviderReturningMerchantSignal
|
|
12030
|
+
*/
|
|
12031
|
+
'has_paid_tenure_remaining'?: boolean;
|
|
12032
|
+
/**
|
|
12033
|
+
*
|
|
12034
|
+
* @type {string}
|
|
12035
|
+
* @memberof BillingProviderReturningMerchantSignal
|
|
12036
|
+
*/
|
|
12037
|
+
'period_end'?: string;
|
|
12038
|
+
/**
|
|
12039
|
+
*
|
|
12040
|
+
* @type {string}
|
|
12041
|
+
* @memberof BillingProviderReturningMerchantSignal
|
|
12042
|
+
*/
|
|
12043
|
+
'plan_name'?: string;
|
|
12044
|
+
/**
|
|
12045
|
+
*
|
|
12046
|
+
* @type {string}
|
|
12047
|
+
* @memberof BillingProviderReturningMerchantSignal
|
|
12048
|
+
*/
|
|
12049
|
+
'plan_version_id'?: string;
|
|
12050
|
+
}
|
|
11995
12051
|
/**
|
|
11996
12052
|
*
|
|
11997
12053
|
* @export
|
|
@@ -12518,6 +12574,30 @@ export interface ConnectorAuthResponse {
|
|
|
12518
12574
|
* @memberof ConnectorAuthResponse
|
|
12519
12575
|
*/
|
|
12520
12576
|
'is_valid'?: boolean;
|
|
12577
|
+
/**
|
|
12578
|
+
*
|
|
12579
|
+
* @type {number}
|
|
12580
|
+
* @memberof ConnectorAuthResponse
|
|
12581
|
+
*/
|
|
12582
|
+
'last_check_duration_ms'?: number;
|
|
12583
|
+
/**
|
|
12584
|
+
*
|
|
12585
|
+
* @type {string}
|
|
12586
|
+
* @memberof ConnectorAuthResponse
|
|
12587
|
+
*/
|
|
12588
|
+
'last_check_error_code'?: string;
|
|
12589
|
+
/**
|
|
12590
|
+
*
|
|
12591
|
+
* @type {string}
|
|
12592
|
+
* @memberof ConnectorAuthResponse
|
|
12593
|
+
*/
|
|
12594
|
+
'last_check_error_message'?: string;
|
|
12595
|
+
/**
|
|
12596
|
+
* 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.
|
|
12597
|
+
* @type {string}
|
|
12598
|
+
* @memberof ConnectorAuthResponse
|
|
12599
|
+
*/
|
|
12600
|
+
'last_checked_at'?: string;
|
|
12521
12601
|
/**
|
|
12522
12602
|
*
|
|
12523
12603
|
* @type {string}
|
|
@@ -12932,6 +13012,12 @@ export interface ConnectorDestRef {
|
|
|
12932
13012
|
* @memberof ConnectorDestRef
|
|
12933
13013
|
*/
|
|
12934
13014
|
'name'?: string;
|
|
13015
|
+
/**
|
|
13016
|
+
*
|
|
13017
|
+
* @type {string}
|
|
13018
|
+
* @memberof ConnectorDestRef
|
|
13019
|
+
*/
|
|
13020
|
+
'type'?: string;
|
|
12935
13021
|
/**
|
|
12936
13022
|
*
|
|
12937
13023
|
* @type {string}
|
|
@@ -13203,6 +13289,43 @@ export interface ConnectorRunListResponse {
|
|
|
13203
13289
|
*/
|
|
13204
13290
|
'total'?: number;
|
|
13205
13291
|
}
|
|
13292
|
+
/**
|
|
13293
|
+
*
|
|
13294
|
+
* @export
|
|
13295
|
+
* @interface ConnectorRunPhaseDTO
|
|
13296
|
+
*/
|
|
13297
|
+
export interface ConnectorRunPhaseDTO {
|
|
13298
|
+
/**
|
|
13299
|
+
*
|
|
13300
|
+
* @type {string}
|
|
13301
|
+
* @memberof ConnectorRunPhaseDTO
|
|
13302
|
+
*/
|
|
13303
|
+
'completed_at'?: string;
|
|
13304
|
+
/**
|
|
13305
|
+
*
|
|
13306
|
+
* @type {string}
|
|
13307
|
+
* @memberof ConnectorRunPhaseDTO
|
|
13308
|
+
*/
|
|
13309
|
+
'error_message'?: string;
|
|
13310
|
+
/**
|
|
13311
|
+
*
|
|
13312
|
+
* @type {string}
|
|
13313
|
+
* @memberof ConnectorRunPhaseDTO
|
|
13314
|
+
*/
|
|
13315
|
+
'phase'?: string;
|
|
13316
|
+
/**
|
|
13317
|
+
*
|
|
13318
|
+
* @type {string}
|
|
13319
|
+
* @memberof ConnectorRunPhaseDTO
|
|
13320
|
+
*/
|
|
13321
|
+
'started_at'?: string;
|
|
13322
|
+
/**
|
|
13323
|
+
*
|
|
13324
|
+
* @type {string}
|
|
13325
|
+
* @memberof ConnectorRunPhaseDTO
|
|
13326
|
+
*/
|
|
13327
|
+
'status'?: string;
|
|
13328
|
+
}
|
|
13206
13329
|
/**
|
|
13207
13330
|
*
|
|
13208
13331
|
* @export
|
|
@@ -13233,6 +13356,12 @@ export interface ConnectorRunResponse {
|
|
|
13233
13356
|
* @memberof ConnectorRunResponse
|
|
13234
13357
|
*/
|
|
13235
13358
|
'debug_mode'?: boolean;
|
|
13359
|
+
/**
|
|
13360
|
+
*
|
|
13361
|
+
* @type {ConnectorDestRef}
|
|
13362
|
+
* @memberof ConnectorRunResponse
|
|
13363
|
+
*/
|
|
13364
|
+
'destination'?: ConnectorDestRef;
|
|
13236
13365
|
/**
|
|
13237
13366
|
*
|
|
13238
13367
|
* @type {boolean}
|
|
@@ -13275,6 +13404,12 @@ export interface ConnectorRunResponse {
|
|
|
13275
13404
|
* @memberof ConnectorRunResponse
|
|
13276
13405
|
*/
|
|
13277
13406
|
'percent_complete'?: number;
|
|
13407
|
+
/**
|
|
13408
|
+
*
|
|
13409
|
+
* @type {Array<ConnectorRunPhaseDTO>}
|
|
13410
|
+
* @memberof ConnectorRunResponse
|
|
13411
|
+
*/
|
|
13412
|
+
'phases'?: Array<ConnectorRunPhaseDTO>;
|
|
13278
13413
|
/**
|
|
13279
13414
|
*
|
|
13280
13415
|
* @type {number}
|
|
@@ -13299,6 +13434,12 @@ export interface ConnectorRunResponse {
|
|
|
13299
13434
|
* @memberof ConnectorRunResponse
|
|
13300
13435
|
*/
|
|
13301
13436
|
'records_written'?: number;
|
|
13437
|
+
/**
|
|
13438
|
+
* 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.
|
|
13439
|
+
* @type {ConnectorSourceRef}
|
|
13440
|
+
* @memberof ConnectorRunResponse
|
|
13441
|
+
*/
|
|
13442
|
+
'source'?: ConnectorSourceRef;
|
|
13302
13443
|
/**
|
|
13303
13444
|
*
|
|
13304
13445
|
* @type {string}
|
|
@@ -13444,6 +13585,12 @@ export interface ConnectorSourceRef {
|
|
|
13444
13585
|
* @memberof ConnectorSourceRef
|
|
13445
13586
|
*/
|
|
13446
13587
|
'name'?: string;
|
|
13588
|
+
/**
|
|
13589
|
+
*
|
|
13590
|
+
* @type {string}
|
|
13591
|
+
* @memberof ConnectorSourceRef
|
|
13592
|
+
*/
|
|
13593
|
+
'type'?: string;
|
|
13447
13594
|
/**
|
|
13448
13595
|
*
|
|
13449
13596
|
* @type {string}
|
|
@@ -14475,6 +14622,54 @@ export interface ConnectorUpdateTransformationRequest {
|
|
|
14475
14622
|
* @memberof ConnectorUpdateTransformationRequest
|
|
14476
14623
|
*/
|
|
14477
14624
|
'name'?: string;
|
|
14625
|
+
/**
|
|
14626
|
+
*
|
|
14627
|
+
* @type {string}
|
|
14628
|
+
* @memberof ConnectorUpdateTransformationRequest
|
|
14629
|
+
*/
|
|
14630
|
+
'transform_type'?: ConnectorUpdateTransformationRequestTransformTypeEnum;
|
|
14631
|
+
}
|
|
14632
|
+
export declare const ConnectorUpdateTransformationRequestTransformTypeEnum: {
|
|
14633
|
+
readonly Code: "code";
|
|
14634
|
+
readonly Nocode: "nocode";
|
|
14635
|
+
};
|
|
14636
|
+
export type ConnectorUpdateTransformationRequestTransformTypeEnum = typeof ConnectorUpdateTransformationRequestTransformTypeEnum[keyof typeof ConnectorUpdateTransformationRequestTransformTypeEnum];
|
|
14637
|
+
/**
|
|
14638
|
+
*
|
|
14639
|
+
* @export
|
|
14640
|
+
* @interface ConnectorValidateAuthResponse
|
|
14641
|
+
*/
|
|
14642
|
+
export interface ConnectorValidateAuthResponse {
|
|
14643
|
+
/**
|
|
14644
|
+
* CheckedAt is the wall-clock time the check completed.
|
|
14645
|
+
* @type {string}
|
|
14646
|
+
* @memberof ConnectorValidateAuthResponse
|
|
14647
|
+
*/
|
|
14648
|
+
'checked_at'?: string;
|
|
14649
|
+
/**
|
|
14650
|
+
* DurationMs is the wall-clock elapsed time of the check.
|
|
14651
|
+
* @type {number}
|
|
14652
|
+
* @memberof ConnectorValidateAuthResponse
|
|
14653
|
+
*/
|
|
14654
|
+
'duration_ms'?: number;
|
|
14655
|
+
/**
|
|
14656
|
+
* 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.
|
|
14657
|
+
* @type {string}
|
|
14658
|
+
* @memberof ConnectorValidateAuthResponse
|
|
14659
|
+
*/
|
|
14660
|
+
'error_code'?: string;
|
|
14661
|
+
/**
|
|
14662
|
+
* ErrorMessage is a user-safe description (<=240 chars). Empty when OK. Never contains credentials.
|
|
14663
|
+
* @type {string}
|
|
14664
|
+
* @memberof ConnectorValidateAuthResponse
|
|
14665
|
+
*/
|
|
14666
|
+
'error_message'?: string;
|
|
14667
|
+
/**
|
|
14668
|
+
* OK is true when forge.Source.Check returned no error.
|
|
14669
|
+
* @type {boolean}
|
|
14670
|
+
* @memberof ConnectorValidateAuthResponse
|
|
14671
|
+
*/
|
|
14672
|
+
'ok'?: boolean;
|
|
14478
14673
|
}
|
|
14479
14674
|
/**
|
|
14480
14675
|
*
|
|
@@ -23517,6 +23712,56 @@ export interface DataTypesGenericResponseBillingProviderCheckoutResp {
|
|
|
23517
23712
|
*/
|
|
23518
23713
|
'status'?: number;
|
|
23519
23714
|
}
|
|
23715
|
+
/**
|
|
23716
|
+
*
|
|
23717
|
+
* @export
|
|
23718
|
+
* @interface DataTypesGenericResponseBillingProviderResumeCancelledSubscriptionResponse
|
|
23719
|
+
*/
|
|
23720
|
+
export interface DataTypesGenericResponseBillingProviderResumeCancelledSubscriptionResponse {
|
|
23721
|
+
/**
|
|
23722
|
+
*
|
|
23723
|
+
* @type {BillingProviderResumeCancelledSubscriptionResponse}
|
|
23724
|
+
* @memberof DataTypesGenericResponseBillingProviderResumeCancelledSubscriptionResponse
|
|
23725
|
+
*/
|
|
23726
|
+
'data'?: BillingProviderResumeCancelledSubscriptionResponse;
|
|
23727
|
+
/**
|
|
23728
|
+
*
|
|
23729
|
+
* @type {string}
|
|
23730
|
+
* @memberof DataTypesGenericResponseBillingProviderResumeCancelledSubscriptionResponse
|
|
23731
|
+
*/
|
|
23732
|
+
'message'?: string;
|
|
23733
|
+
/**
|
|
23734
|
+
*
|
|
23735
|
+
* @type {number}
|
|
23736
|
+
* @memberof DataTypesGenericResponseBillingProviderResumeCancelledSubscriptionResponse
|
|
23737
|
+
*/
|
|
23738
|
+
'status'?: number;
|
|
23739
|
+
}
|
|
23740
|
+
/**
|
|
23741
|
+
*
|
|
23742
|
+
* @export
|
|
23743
|
+
* @interface DataTypesGenericResponseBillingProviderReturningMerchantSignal
|
|
23744
|
+
*/
|
|
23745
|
+
export interface DataTypesGenericResponseBillingProviderReturningMerchantSignal {
|
|
23746
|
+
/**
|
|
23747
|
+
*
|
|
23748
|
+
* @type {BillingProviderReturningMerchantSignal}
|
|
23749
|
+
* @memberof DataTypesGenericResponseBillingProviderReturningMerchantSignal
|
|
23750
|
+
*/
|
|
23751
|
+
'data'?: BillingProviderReturningMerchantSignal;
|
|
23752
|
+
/**
|
|
23753
|
+
*
|
|
23754
|
+
* @type {string}
|
|
23755
|
+
* @memberof DataTypesGenericResponseBillingProviderReturningMerchantSignal
|
|
23756
|
+
*/
|
|
23757
|
+
'message'?: string;
|
|
23758
|
+
/**
|
|
23759
|
+
*
|
|
23760
|
+
* @type {number}
|
|
23761
|
+
* @memberof DataTypesGenericResponseBillingProviderReturningMerchantSignal
|
|
23762
|
+
*/
|
|
23763
|
+
'status'?: number;
|
|
23764
|
+
}
|
|
23520
23765
|
/**
|
|
23521
23766
|
*
|
|
23522
23767
|
* @export
|
|
@@ -32475,6 +32720,12 @@ export interface DataTypesSchemaOptionsResponse {
|
|
|
32475
32720
|
* @memberof DataTypesSchemaOptionsResponse
|
|
32476
32721
|
*/
|
|
32477
32722
|
'nestedPaths'?: Array<string>;
|
|
32723
|
+
/**
|
|
32724
|
+
* NumericFieldOptions is the subset of indexed fields whose Typesense type is numeric (int32 / int64 / float, including their array variants). Surfaced separately so the admin UI\'s range-facet picker can show ONLY range-facetable attributes (price, weight, ratings_count) instead of falling back to the all-fields list and offering string fields like \"title\" that would produce a runtime type-mismatch on the next search.
|
|
32725
|
+
* @type {Array<string>}
|
|
32726
|
+
* @memberof DataTypesSchemaOptionsResponse
|
|
32727
|
+
*/
|
|
32728
|
+
'numericFieldOptions'?: Array<string>;
|
|
32478
32729
|
/**
|
|
32479
32730
|
*
|
|
32480
32731
|
* @type {Array<string>}
|
|
@@ -41047,6 +41298,111 @@ export interface ModelsValidatePayloadRequest {
|
|
|
41047
41298
|
[key: string]: any;
|
|
41048
41299
|
};
|
|
41049
41300
|
}
|
|
41301
|
+
/**
|
|
41302
|
+
*
|
|
41303
|
+
* @export
|
|
41304
|
+
* @interface OnboardingBusinessProfile
|
|
41305
|
+
*/
|
|
41306
|
+
export interface OnboardingBusinessProfile {
|
|
41307
|
+
/**
|
|
41308
|
+
* primary street; address1 + \", \" + address2 if both
|
|
41309
|
+
* @type {string}
|
|
41310
|
+
* @memberof OnboardingBusinessProfile
|
|
41311
|
+
*/
|
|
41312
|
+
'address'?: string;
|
|
41313
|
+
/**
|
|
41314
|
+
*
|
|
41315
|
+
* @type {string}
|
|
41316
|
+
* @memberof OnboardingBusinessProfile
|
|
41317
|
+
*/
|
|
41318
|
+
'city'?: string;
|
|
41319
|
+
/**
|
|
41320
|
+
* country name (e.g. \"United States\")
|
|
41321
|
+
* @type {string}
|
|
41322
|
+
* @memberof OnboardingBusinessProfile
|
|
41323
|
+
*/
|
|
41324
|
+
'country'?: string;
|
|
41325
|
+
/**
|
|
41326
|
+
* E.164 or local; goes to morganization.phoneno
|
|
41327
|
+
* @type {string}
|
|
41328
|
+
* @memberof OnboardingBusinessProfile
|
|
41329
|
+
*/
|
|
41330
|
+
'phone'?: string;
|
|
41331
|
+
/**
|
|
41332
|
+
* zip / pin code; goes to morganization.zipcode
|
|
41333
|
+
* @type {string}
|
|
41334
|
+
* @memberof OnboardingBusinessProfile
|
|
41335
|
+
*/
|
|
41336
|
+
'postal_code'?: string;
|
|
41337
|
+
/**
|
|
41338
|
+
* province/region
|
|
41339
|
+
* @type {string}
|
|
41340
|
+
* @memberof OnboardingBusinessProfile
|
|
41341
|
+
*/
|
|
41342
|
+
'state'?: string;
|
|
41343
|
+
/**
|
|
41344
|
+
* primary domain
|
|
41345
|
+
* @type {string}
|
|
41346
|
+
* @memberof OnboardingBusinessProfile
|
|
41347
|
+
*/
|
|
41348
|
+
'website'?: string;
|
|
41349
|
+
}
|
|
41350
|
+
/**
|
|
41351
|
+
*
|
|
41352
|
+
* @export
|
|
41353
|
+
* @interface OnboardingMintRequest
|
|
41354
|
+
*/
|
|
41355
|
+
export interface OnboardingMintRequest {
|
|
41356
|
+
/**
|
|
41357
|
+
*
|
|
41358
|
+
* @type {string}
|
|
41359
|
+
* @memberof OnboardingMintRequest
|
|
41360
|
+
*/
|
|
41361
|
+
'access_token'?: string;
|
|
41362
|
+
/**
|
|
41363
|
+
*
|
|
41364
|
+
* @type {string}
|
|
41365
|
+
* @memberof OnboardingMintRequest
|
|
41366
|
+
*/
|
|
41367
|
+
'external_id'?: string;
|
|
41368
|
+
}
|
|
41369
|
+
/**
|
|
41370
|
+
*
|
|
41371
|
+
* @export
|
|
41372
|
+
* @interface OnboardingMintResponse
|
|
41373
|
+
*/
|
|
41374
|
+
export interface OnboardingMintResponse {
|
|
41375
|
+
/**
|
|
41376
|
+
*
|
|
41377
|
+
* @type {string}
|
|
41378
|
+
* @memberof OnboardingMintResponse
|
|
41379
|
+
*/
|
|
41380
|
+
'billing_currency'?: string;
|
|
41381
|
+
/**
|
|
41382
|
+
*
|
|
41383
|
+
* @type {number}
|
|
41384
|
+
* @memberof OnboardingMintResponse
|
|
41385
|
+
*/
|
|
41386
|
+
'org_id'?: number;
|
|
41387
|
+
/**
|
|
41388
|
+
*
|
|
41389
|
+
* @type {string}
|
|
41390
|
+
* @memberof OnboardingMintResponse
|
|
41391
|
+
*/
|
|
41392
|
+
'session_token'?: string;
|
|
41393
|
+
/**
|
|
41394
|
+
*
|
|
41395
|
+
* @type {number}
|
|
41396
|
+
* @memberof OnboardingMintResponse
|
|
41397
|
+
*/
|
|
41398
|
+
'store_id'?: number;
|
|
41399
|
+
/**
|
|
41400
|
+
*
|
|
41401
|
+
* @type {number}
|
|
41402
|
+
* @memberof OnboardingMintResponse
|
|
41403
|
+
*/
|
|
41404
|
+
'user_id'?: number;
|
|
41405
|
+
}
|
|
41050
41406
|
/**
|
|
41051
41407
|
*
|
|
41052
41408
|
* @export
|
|
@@ -41148,6 +41504,12 @@ export interface OnboardingOnboardingRequest {
|
|
|
41148
41504
|
* @memberof OnboardingOnboardingRequest
|
|
41149
41505
|
*/
|
|
41150
41506
|
'bootstrap'?: OnboardingOnboardingBootstrap;
|
|
41507
|
+
/**
|
|
41508
|
+
*
|
|
41509
|
+
* @type {OnboardingBusinessProfile}
|
|
41510
|
+
* @memberof OnboardingOnboardingRequest
|
|
41511
|
+
*/
|
|
41512
|
+
'business_profile'?: OnboardingBusinessProfile;
|
|
41151
41513
|
/**
|
|
41152
41514
|
*
|
|
41153
41515
|
* @type {string}
|
|
@@ -41178,6 +41540,12 @@ export interface OnboardingOnboardingRequest {
|
|
|
41178
41540
|
* @memberof OnboardingOnboardingRequest
|
|
41179
41541
|
*/
|
|
41180
41542
|
'external_id'?: string;
|
|
41543
|
+
/**
|
|
41544
|
+
*
|
|
41545
|
+
* @type {string}
|
|
41546
|
+
* @memberof OnboardingOnboardingRequest
|
|
41547
|
+
*/
|
|
41548
|
+
'owner_name'?: string;
|
|
41181
41549
|
/**
|
|
41182
41550
|
*
|
|
41183
41551
|
* @type {{ [key: string]: any; }}
|
|
@@ -41329,12 +41697,24 @@ export interface OnboardingStoreSummary {
|
|
|
41329
41697
|
* @memberof OnboardingStoreSummary
|
|
41330
41698
|
*/
|
|
41331
41699
|
'name'?: string;
|
|
41700
|
+
/**
|
|
41701
|
+
*
|
|
41702
|
+
* @type {string}
|
|
41703
|
+
* @memberof OnboardingStoreSummary
|
|
41704
|
+
*/
|
|
41705
|
+
'public_key'?: string;
|
|
41332
41706
|
/**
|
|
41333
41707
|
*
|
|
41334
41708
|
* @type {string}
|
|
41335
41709
|
* @memberof OnboardingStoreSummary
|
|
41336
41710
|
*/
|
|
41337
41711
|
'search_secret'?: string;
|
|
41712
|
+
/**
|
|
41713
|
+
* WriteSecret is mStores.XStoreWriteSecret — the credential the plugin uses for ingestion endpoints (POST /api/v1/stores/schema, POST /api/v1/stores/documents/bulk). Distinct from the Secret field which is the read-side x-storesecret. The plugin stores both.
|
|
41714
|
+
* @type {string}
|
|
41715
|
+
* @memberof OnboardingStoreSummary
|
|
41716
|
+
*/
|
|
41717
|
+
'write_secret'?: string;
|
|
41338
41718
|
/**
|
|
41339
41719
|
*
|
|
41340
41720
|
* @type {string}
|
|
@@ -41490,6 +41870,50 @@ export interface PlatformPublicCollisionReq {
|
|
|
41490
41870
|
*/
|
|
41491
41871
|
'shop_domain'?: string;
|
|
41492
41872
|
}
|
|
41873
|
+
/**
|
|
41874
|
+
*
|
|
41875
|
+
* @export
|
|
41876
|
+
* @interface PlatformPublicControlPlaneEventRespRow
|
|
41877
|
+
*/
|
|
41878
|
+
export interface PlatformPublicControlPlaneEventRespRow {
|
|
41879
|
+
/**
|
|
41880
|
+
*
|
|
41881
|
+
* @type {string}
|
|
41882
|
+
* @memberof PlatformPublicControlPlaneEventRespRow
|
|
41883
|
+
*/
|
|
41884
|
+
'error'?: string;
|
|
41885
|
+
/**
|
|
41886
|
+
*
|
|
41887
|
+
* @type {string}
|
|
41888
|
+
* @memberof PlatformPublicControlPlaneEventRespRow
|
|
41889
|
+
*/
|
|
41890
|
+
'idempotency_key'?: string;
|
|
41891
|
+
/**
|
|
41892
|
+
*
|
|
41893
|
+
* @type {string}
|
|
41894
|
+
* @memberof PlatformPublicControlPlaneEventRespRow
|
|
41895
|
+
*/
|
|
41896
|
+
'status'?: string;
|
|
41897
|
+
}
|
|
41898
|
+
/**
|
|
41899
|
+
*
|
|
41900
|
+
* @export
|
|
41901
|
+
* @interface PlatformPublicControlPlaneResponseEnvelope
|
|
41902
|
+
*/
|
|
41903
|
+
export interface PlatformPublicControlPlaneResponseEnvelope {
|
|
41904
|
+
/**
|
|
41905
|
+
*
|
|
41906
|
+
* @type {string}
|
|
41907
|
+
* @memberof PlatformPublicControlPlaneResponseEnvelope
|
|
41908
|
+
*/
|
|
41909
|
+
'envelope_version'?: string;
|
|
41910
|
+
/**
|
|
41911
|
+
*
|
|
41912
|
+
* @type {Array<PlatformPublicControlPlaneEventRespRow>}
|
|
41913
|
+
* @memberof PlatformPublicControlPlaneResponseEnvelope
|
|
41914
|
+
*/
|
|
41915
|
+
'events'?: Array<PlatformPublicControlPlaneEventRespRow>;
|
|
41916
|
+
}
|
|
41493
41917
|
/**
|
|
41494
41918
|
*
|
|
41495
41919
|
* @export
|
|
@@ -45226,6 +45650,14 @@ export declare class AdminAnalyticsApi extends BaseAPI {
|
|
|
45226
45650
|
* @export
|
|
45227
45651
|
*/
|
|
45228
45652
|
export declare const AdminConnectorWebhooksApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
45653
|
+
/**
|
|
45654
|
+
* Re-runs the manifest\'s DynamicSchemaLoader streams and upserts the resolved JSON Schemas into connector_provider_schemas. The next sync reads the fresh cache and (re)builds the Typesense collection from it.
|
|
45655
|
+
* @summary Regenerate provider schema cache for a connector source
|
|
45656
|
+
* @param {string} sourceUuid Connector source UUID
|
|
45657
|
+
* @param {*} [options] Override http request option.
|
|
45658
|
+
* @throws {RequiredError}
|
|
45659
|
+
*/
|
|
45660
|
+
adminConnectorsSourcesSourceUuidSchemaRegeneratePost: (sourceUuid: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45229
45661
|
/**
|
|
45230
45662
|
* 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.
|
|
45231
45663
|
* @summary Replay a recorded webhook delivery
|
|
@@ -45242,10 +45674,20 @@ export declare const AdminConnectorWebhooksApiAxiosParamCreator: (configuration?
|
|
|
45242
45674
|
* @param {string} [status] Filter by delivery status (pending, processed, failed)
|
|
45243
45675
|
* @param {number} [limit] Page size (default 50, max 200)
|
|
45244
45676
|
* @param {string} [beforeUuid] Cursor: return rows older than the delivery with this UUID
|
|
45677
|
+
* @param {string} [since] Lower bound (inclusive) on received_at, RFC3339 / ISO-8601 (e.g. 2026-05-01T00:00:00Z)
|
|
45678
|
+
* @param {string} [until] Upper bound (exclusive) on received_at, RFC3339 / ISO-8601 (e.g. 2026-05-06T00:00:00Z)
|
|
45679
|
+
* @param {*} [options] Override http request option.
|
|
45680
|
+
* @throws {RequiredError}
|
|
45681
|
+
*/
|
|
45682
|
+
adminConnectorsSourcesSourceUuidWebhooksDeliveriesGet: (sourceUuid: string, status?: string, limit?: number, beforeUuid?: string, since?: string, until?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45683
|
+
/**
|
|
45684
|
+
* Verify each active webhook subscription still exists on the provider; flip rows whose subscription is gone (404 from the provider) to status=\'stale\'. Read-only against the provider; UPDATE-only against our DB. Idempotent.
|
|
45685
|
+
* @summary Reconcile webhook subscriptions against the provider
|
|
45686
|
+
* @param {string} sourceUuid Connector source UUID
|
|
45245
45687
|
* @param {*} [options] Override http request option.
|
|
45246
45688
|
* @throws {RequiredError}
|
|
45247
45689
|
*/
|
|
45248
|
-
|
|
45690
|
+
adminConnectorsSourcesSourceUuidWebhooksReconcilePost: (sourceUuid: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45249
45691
|
/**
|
|
45250
45692
|
* Re-run the register_webhooks post-install hook for one connector source. Idempotent via ON CONFLICT (source_id, topic) DO UPDATE.
|
|
45251
45693
|
* @summary Resubscribe webhooks for a connector source
|
|
@@ -45254,6 +45696,13 @@ export declare const AdminConnectorWebhooksApiAxiosParamCreator: (configuration?
|
|
|
45254
45696
|
* @throws {RequiredError}
|
|
45255
45697
|
*/
|
|
45256
45698
|
adminConnectorsSourcesSourceUuidWebhooksResubscribePost: (sourceUuid: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45699
|
+
/**
|
|
45700
|
+
* Iterates every active connector source in the org and runs the per-source webhook reconciliation pass. Marks subscriptions whose provider counterparts no longer exist as \'stale\'. Designed for cron-driven invocation; per-source errors are captured individually.
|
|
45701
|
+
* @summary Reconcile webhook subscriptions for every connector source
|
|
45702
|
+
* @param {*} [options] Override http request option.
|
|
45703
|
+
* @throws {RequiredError}
|
|
45704
|
+
*/
|
|
45705
|
+
adminConnectorsWebhooksReconcileAllPost: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45257
45706
|
/**
|
|
45258
45707
|
* 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.
|
|
45259
45708
|
* @summary Resubscribe webhooks for every connector source
|
|
@@ -45267,6 +45716,16 @@ export declare const AdminConnectorWebhooksApiAxiosParamCreator: (configuration?
|
|
|
45267
45716
|
* @export
|
|
45268
45717
|
*/
|
|
45269
45718
|
export declare const AdminConnectorWebhooksApiFp: (configuration?: Configuration) => {
|
|
45719
|
+
/**
|
|
45720
|
+
* Re-runs the manifest\'s DynamicSchemaLoader streams and upserts the resolved JSON Schemas into connector_provider_schemas. The next sync reads the fresh cache and (re)builds the Typesense collection from it.
|
|
45721
|
+
* @summary Regenerate provider schema cache for a connector source
|
|
45722
|
+
* @param {string} sourceUuid Connector source UUID
|
|
45723
|
+
* @param {*} [options] Override http request option.
|
|
45724
|
+
* @throws {RequiredError}
|
|
45725
|
+
*/
|
|
45726
|
+
adminConnectorsSourcesSourceUuidSchemaRegeneratePost(sourceUuid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
|
|
45727
|
+
[key: string]: any;
|
|
45728
|
+
}>>;
|
|
45270
45729
|
/**
|
|
45271
45730
|
* 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.
|
|
45272
45731
|
* @summary Replay a recorded webhook delivery
|
|
@@ -45283,10 +45742,22 @@ export declare const AdminConnectorWebhooksApiFp: (configuration?: Configuration
|
|
|
45283
45742
|
* @param {string} [status] Filter by delivery status (pending, processed, failed)
|
|
45284
45743
|
* @param {number} [limit] Page size (default 50, max 200)
|
|
45285
45744
|
* @param {string} [beforeUuid] Cursor: return rows older than the delivery with this UUID
|
|
45745
|
+
* @param {string} [since] Lower bound (inclusive) on received_at, RFC3339 / ISO-8601 (e.g. 2026-05-01T00:00:00Z)
|
|
45746
|
+
* @param {string} [until] Upper bound (exclusive) on received_at, RFC3339 / ISO-8601 (e.g. 2026-05-06T00:00:00Z)
|
|
45747
|
+
* @param {*} [options] Override http request option.
|
|
45748
|
+
* @throws {RequiredError}
|
|
45749
|
+
*/
|
|
45750
|
+
adminConnectorsSourcesSourceUuidWebhooksDeliveriesGet(sourceUuid: string, status?: string, limit?: number, beforeUuid?: string, since?: string, until?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConnectorWebhookDeliveriesListResponse>>;
|
|
45751
|
+
/**
|
|
45752
|
+
* Verify each active webhook subscription still exists on the provider; flip rows whose subscription is gone (404 from the provider) to status=\'stale\'. Read-only against the provider; UPDATE-only against our DB. Idempotent.
|
|
45753
|
+
* @summary Reconcile webhook subscriptions against the provider
|
|
45754
|
+
* @param {string} sourceUuid Connector source UUID
|
|
45286
45755
|
* @param {*} [options] Override http request option.
|
|
45287
45756
|
* @throws {RequiredError}
|
|
45288
45757
|
*/
|
|
45289
|
-
|
|
45758
|
+
adminConnectorsSourcesSourceUuidWebhooksReconcilePost(sourceUuid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
|
|
45759
|
+
[key: string]: any;
|
|
45760
|
+
}>>;
|
|
45290
45761
|
/**
|
|
45291
45762
|
* Re-run the register_webhooks post-install hook for one connector source. Idempotent via ON CONFLICT (source_id, topic) DO UPDATE.
|
|
45292
45763
|
* @summary Resubscribe webhooks for a connector source
|
|
@@ -45295,6 +45766,15 @@ export declare const AdminConnectorWebhooksApiFp: (configuration?: Configuration
|
|
|
45295
45766
|
* @throws {RequiredError}
|
|
45296
45767
|
*/
|
|
45297
45768
|
adminConnectorsSourcesSourceUuidWebhooksResubscribePost(sourceUuid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConnectorWebhookResubscribeResponse>>;
|
|
45769
|
+
/**
|
|
45770
|
+
* Iterates every active connector source in the org and runs the per-source webhook reconciliation pass. Marks subscriptions whose provider counterparts no longer exist as \'stale\'. Designed for cron-driven invocation; per-source errors are captured individually.
|
|
45771
|
+
* @summary Reconcile webhook subscriptions for every connector source
|
|
45772
|
+
* @param {*} [options] Override http request option.
|
|
45773
|
+
* @throws {RequiredError}
|
|
45774
|
+
*/
|
|
45775
|
+
adminConnectorsWebhooksReconcileAllPost(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
|
|
45776
|
+
[key: string]: any;
|
|
45777
|
+
}>>;
|
|
45298
45778
|
/**
|
|
45299
45779
|
* 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.
|
|
45300
45780
|
* @summary Resubscribe webhooks for every connector source
|
|
@@ -45308,6 +45788,16 @@ export declare const AdminConnectorWebhooksApiFp: (configuration?: Configuration
|
|
|
45308
45788
|
* @export
|
|
45309
45789
|
*/
|
|
45310
45790
|
export declare const AdminConnectorWebhooksApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
45791
|
+
/**
|
|
45792
|
+
* Re-runs the manifest\'s DynamicSchemaLoader streams and upserts the resolved JSON Schemas into connector_provider_schemas. The next sync reads the fresh cache and (re)builds the Typesense collection from it.
|
|
45793
|
+
* @summary Regenerate provider schema cache for a connector source
|
|
45794
|
+
* @param {string} sourceUuid Connector source UUID
|
|
45795
|
+
* @param {*} [options] Override http request option.
|
|
45796
|
+
* @throws {RequiredError}
|
|
45797
|
+
*/
|
|
45798
|
+
adminConnectorsSourcesSourceUuidSchemaRegeneratePost(sourceUuid: string, options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
45799
|
+
[key: string]: any;
|
|
45800
|
+
}>;
|
|
45311
45801
|
/**
|
|
45312
45802
|
* 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.
|
|
45313
45803
|
* @summary Replay a recorded webhook delivery
|
|
@@ -45324,10 +45814,22 @@ export declare const AdminConnectorWebhooksApiFactory: (configuration?: Configur
|
|
|
45324
45814
|
* @param {string} [status] Filter by delivery status (pending, processed, failed)
|
|
45325
45815
|
* @param {number} [limit] Page size (default 50, max 200)
|
|
45326
45816
|
* @param {string} [beforeUuid] Cursor: return rows older than the delivery with this UUID
|
|
45817
|
+
* @param {string} [since] Lower bound (inclusive) on received_at, RFC3339 / ISO-8601 (e.g. 2026-05-01T00:00:00Z)
|
|
45818
|
+
* @param {string} [until] Upper bound (exclusive) on received_at, RFC3339 / ISO-8601 (e.g. 2026-05-06T00:00:00Z)
|
|
45327
45819
|
* @param {*} [options] Override http request option.
|
|
45328
45820
|
* @throws {RequiredError}
|
|
45329
45821
|
*/
|
|
45330
|
-
adminConnectorsSourcesSourceUuidWebhooksDeliveriesGet(sourceUuid: string, status?: string, limit?: number, beforeUuid?: string, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorWebhookDeliveriesListResponse>;
|
|
45822
|
+
adminConnectorsSourcesSourceUuidWebhooksDeliveriesGet(sourceUuid: string, status?: string, limit?: number, beforeUuid?: string, since?: string, until?: string, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorWebhookDeliveriesListResponse>;
|
|
45823
|
+
/**
|
|
45824
|
+
* Verify each active webhook subscription still exists on the provider; flip rows whose subscription is gone (404 from the provider) to status=\'stale\'. Read-only against the provider; UPDATE-only against our DB. Idempotent.
|
|
45825
|
+
* @summary Reconcile webhook subscriptions against the provider
|
|
45826
|
+
* @param {string} sourceUuid Connector source UUID
|
|
45827
|
+
* @param {*} [options] Override http request option.
|
|
45828
|
+
* @throws {RequiredError}
|
|
45829
|
+
*/
|
|
45830
|
+
adminConnectorsSourcesSourceUuidWebhooksReconcilePost(sourceUuid: string, options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
45831
|
+
[key: string]: any;
|
|
45832
|
+
}>;
|
|
45331
45833
|
/**
|
|
45332
45834
|
* Re-run the register_webhooks post-install hook for one connector source. Idempotent via ON CONFLICT (source_id, topic) DO UPDATE.
|
|
45333
45835
|
* @summary Resubscribe webhooks for a connector source
|
|
@@ -45336,6 +45838,15 @@ export declare const AdminConnectorWebhooksApiFactory: (configuration?: Configur
|
|
|
45336
45838
|
* @throws {RequiredError}
|
|
45337
45839
|
*/
|
|
45338
45840
|
adminConnectorsSourcesSourceUuidWebhooksResubscribePost(sourceUuid: string, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorWebhookResubscribeResponse>;
|
|
45841
|
+
/**
|
|
45842
|
+
* Iterates every active connector source in the org and runs the per-source webhook reconciliation pass. Marks subscriptions whose provider counterparts no longer exist as \'stale\'. Designed for cron-driven invocation; per-source errors are captured individually.
|
|
45843
|
+
* @summary Reconcile webhook subscriptions for every connector source
|
|
45844
|
+
* @param {*} [options] Override http request option.
|
|
45845
|
+
* @throws {RequiredError}
|
|
45846
|
+
*/
|
|
45847
|
+
adminConnectorsWebhooksReconcileAllPost(options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
45848
|
+
[key: string]: any;
|
|
45849
|
+
}>;
|
|
45339
45850
|
/**
|
|
45340
45851
|
* 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.
|
|
45341
45852
|
* @summary Resubscribe webhooks for every connector source
|
|
@@ -45351,6 +45862,17 @@ export declare const AdminConnectorWebhooksApiFactory: (configuration?: Configur
|
|
|
45351
45862
|
* @extends {BaseAPI}
|
|
45352
45863
|
*/
|
|
45353
45864
|
export declare class AdminConnectorWebhooksApi extends BaseAPI {
|
|
45865
|
+
/**
|
|
45866
|
+
* Re-runs the manifest\'s DynamicSchemaLoader streams and upserts the resolved JSON Schemas into connector_provider_schemas. The next sync reads the fresh cache and (re)builds the Typesense collection from it.
|
|
45867
|
+
* @summary Regenerate provider schema cache for a connector source
|
|
45868
|
+
* @param {string} sourceUuid Connector source UUID
|
|
45869
|
+
* @param {*} [options] Override http request option.
|
|
45870
|
+
* @throws {RequiredError}
|
|
45871
|
+
* @memberof AdminConnectorWebhooksApi
|
|
45872
|
+
*/
|
|
45873
|
+
adminConnectorsSourcesSourceUuidSchemaRegeneratePost(sourceUuid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
45874
|
+
[key: string]: any;
|
|
45875
|
+
}, any, {}>>;
|
|
45354
45876
|
/**
|
|
45355
45877
|
* 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.
|
|
45356
45878
|
* @summary Replay a recorded webhook delivery
|
|
@@ -45368,11 +45890,24 @@ export declare class AdminConnectorWebhooksApi extends BaseAPI {
|
|
|
45368
45890
|
* @param {string} [status] Filter by delivery status (pending, processed, failed)
|
|
45369
45891
|
* @param {number} [limit] Page size (default 50, max 200)
|
|
45370
45892
|
* @param {string} [beforeUuid] Cursor: return rows older than the delivery with this UUID
|
|
45893
|
+
* @param {string} [since] Lower bound (inclusive) on received_at, RFC3339 / ISO-8601 (e.g. 2026-05-01T00:00:00Z)
|
|
45894
|
+
* @param {string} [until] Upper bound (exclusive) on received_at, RFC3339 / ISO-8601 (e.g. 2026-05-06T00:00:00Z)
|
|
45371
45895
|
* @param {*} [options] Override http request option.
|
|
45372
45896
|
* @throws {RequiredError}
|
|
45373
45897
|
* @memberof AdminConnectorWebhooksApi
|
|
45374
45898
|
*/
|
|
45375
|
-
adminConnectorsSourcesSourceUuidWebhooksDeliveriesGet(sourceUuid: string, status?: string, limit?: number, beforeUuid?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorWebhookDeliveriesListResponse, any, {}>>;
|
|
45899
|
+
adminConnectorsSourcesSourceUuidWebhooksDeliveriesGet(sourceUuid: string, status?: string, limit?: number, beforeUuid?: string, since?: string, until?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorWebhookDeliveriesListResponse, any, {}>>;
|
|
45900
|
+
/**
|
|
45901
|
+
* Verify each active webhook subscription still exists on the provider; flip rows whose subscription is gone (404 from the provider) to status=\'stale\'. Read-only against the provider; UPDATE-only against our DB. Idempotent.
|
|
45902
|
+
* @summary Reconcile webhook subscriptions against the provider
|
|
45903
|
+
* @param {string} sourceUuid Connector source UUID
|
|
45904
|
+
* @param {*} [options] Override http request option.
|
|
45905
|
+
* @throws {RequiredError}
|
|
45906
|
+
* @memberof AdminConnectorWebhooksApi
|
|
45907
|
+
*/
|
|
45908
|
+
adminConnectorsSourcesSourceUuidWebhooksReconcilePost(sourceUuid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
45909
|
+
[key: string]: any;
|
|
45910
|
+
}, any, {}>>;
|
|
45376
45911
|
/**
|
|
45377
45912
|
* Re-run the register_webhooks post-install hook for one connector source. Idempotent via ON CONFLICT (source_id, topic) DO UPDATE.
|
|
45378
45913
|
* @summary Resubscribe webhooks for a connector source
|
|
@@ -45382,6 +45917,16 @@ export declare class AdminConnectorWebhooksApi extends BaseAPI {
|
|
|
45382
45917
|
* @memberof AdminConnectorWebhooksApi
|
|
45383
45918
|
*/
|
|
45384
45919
|
adminConnectorsSourcesSourceUuidWebhooksResubscribePost(sourceUuid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorWebhookResubscribeResponse, any, {}>>;
|
|
45920
|
+
/**
|
|
45921
|
+
* Iterates every active connector source in the org and runs the per-source webhook reconciliation pass. Marks subscriptions whose provider counterparts no longer exist as \'stale\'. Designed for cron-driven invocation; per-source errors are captured individually.
|
|
45922
|
+
* @summary Reconcile webhook subscriptions for every connector source
|
|
45923
|
+
* @param {*} [options] Override http request option.
|
|
45924
|
+
* @throws {RequiredError}
|
|
45925
|
+
* @memberof AdminConnectorWebhooksApi
|
|
45926
|
+
*/
|
|
45927
|
+
adminConnectorsWebhooksReconcileAllPost(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
45928
|
+
[key: string]: any;
|
|
45929
|
+
}, any, {}>>;
|
|
45385
45930
|
/**
|
|
45386
45931
|
* 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.
|
|
45387
45932
|
* @summary Resubscribe webhooks for every connector source
|
|
@@ -52426,6 +52971,20 @@ export declare const BillingApiAxiosParamCreator: (configuration?: Configuration
|
|
|
52426
52971
|
* @throws {RequiredError}
|
|
52427
52972
|
*/
|
|
52428
52973
|
apiV1BillingPlansGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
52974
|
+
/**
|
|
52975
|
+
*
|
|
52976
|
+
* @summary Resume a cancelled subscription with remaining tenure (entitlement grant only, no Shopify call)
|
|
52977
|
+
* @param {*} [options] Override http request option.
|
|
52978
|
+
* @throws {RequiredError}
|
|
52979
|
+
*/
|
|
52980
|
+
apiV1BillingResumeCancelledSubscriptionPost: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
52981
|
+
/**
|
|
52982
|
+
*
|
|
52983
|
+
* @summary Returning-merchant signal — does this org have a cancelled paid plan with remaining tenure?
|
|
52984
|
+
* @param {*} [options] Override http request option.
|
|
52985
|
+
* @throws {RequiredError}
|
|
52986
|
+
*/
|
|
52987
|
+
apiV1BillingReturningMerchantSignalGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
52429
52988
|
/**
|
|
52430
52989
|
*
|
|
52431
52990
|
* @summary Create a new subscription
|
|
@@ -52510,6 +53069,20 @@ export declare const BillingApiFp: (configuration?: Configuration) => {
|
|
|
52510
53069
|
* @throws {RequiredError}
|
|
52511
53070
|
*/
|
|
52512
53071
|
apiV1BillingPlansGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseArrayBillingProviderPlanRow>>;
|
|
53072
|
+
/**
|
|
53073
|
+
*
|
|
53074
|
+
* @summary Resume a cancelled subscription with remaining tenure (entitlement grant only, no Shopify call)
|
|
53075
|
+
* @param {*} [options] Override http request option.
|
|
53076
|
+
* @throws {RequiredError}
|
|
53077
|
+
*/
|
|
53078
|
+
apiV1BillingResumeCancelledSubscriptionPost(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseBillingProviderResumeCancelledSubscriptionResponse>>;
|
|
53079
|
+
/**
|
|
53080
|
+
*
|
|
53081
|
+
* @summary Returning-merchant signal — does this org have a cancelled paid plan with remaining tenure?
|
|
53082
|
+
* @param {*} [options] Override http request option.
|
|
53083
|
+
* @throws {RequiredError}
|
|
53084
|
+
*/
|
|
53085
|
+
apiV1BillingReturningMerchantSignalGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseBillingProviderReturningMerchantSignal>>;
|
|
52513
53086
|
/**
|
|
52514
53087
|
*
|
|
52515
53088
|
* @summary Create a new subscription
|
|
@@ -52594,6 +53167,20 @@ export declare const BillingApiFactory: (configuration?: Configuration, basePath
|
|
|
52594
53167
|
* @throws {RequiredError}
|
|
52595
53168
|
*/
|
|
52596
53169
|
apiV1BillingPlansGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseArrayBillingProviderPlanRow>;
|
|
53170
|
+
/**
|
|
53171
|
+
*
|
|
53172
|
+
* @summary Resume a cancelled subscription with remaining tenure (entitlement grant only, no Shopify call)
|
|
53173
|
+
* @param {*} [options] Override http request option.
|
|
53174
|
+
* @throws {RequiredError}
|
|
53175
|
+
*/
|
|
53176
|
+
apiV1BillingResumeCancelledSubscriptionPost(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseBillingProviderResumeCancelledSubscriptionResponse>;
|
|
53177
|
+
/**
|
|
53178
|
+
*
|
|
53179
|
+
* @summary Returning-merchant signal — does this org have a cancelled paid plan with remaining tenure?
|
|
53180
|
+
* @param {*} [options] Override http request option.
|
|
53181
|
+
* @throws {RequiredError}
|
|
53182
|
+
*/
|
|
53183
|
+
apiV1BillingReturningMerchantSignalGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseBillingProviderReturningMerchantSignal>;
|
|
52597
53184
|
/**
|
|
52598
53185
|
*
|
|
52599
53186
|
* @summary Create a new subscription
|
|
@@ -52686,6 +53273,22 @@ export declare class BillingApi extends BaseAPI {
|
|
|
52686
53273
|
* @memberof BillingApi
|
|
52687
53274
|
*/
|
|
52688
53275
|
apiV1BillingPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayBillingProviderPlanRow, any, {}>>;
|
|
53276
|
+
/**
|
|
53277
|
+
*
|
|
53278
|
+
* @summary Resume a cancelled subscription with remaining tenure (entitlement grant only, no Shopify call)
|
|
53279
|
+
* @param {*} [options] Override http request option.
|
|
53280
|
+
* @throws {RequiredError}
|
|
53281
|
+
* @memberof BillingApi
|
|
53282
|
+
*/
|
|
53283
|
+
apiV1BillingResumeCancelledSubscriptionPost(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseBillingProviderResumeCancelledSubscriptionResponse, any, {}>>;
|
|
53284
|
+
/**
|
|
53285
|
+
*
|
|
53286
|
+
* @summary Returning-merchant signal — does this org have a cancelled paid plan with remaining tenure?
|
|
53287
|
+
* @param {*} [options] Override http request option.
|
|
53288
|
+
* @throws {RequiredError}
|
|
53289
|
+
* @memberof BillingApi
|
|
53290
|
+
*/
|
|
53291
|
+
apiV1BillingReturningMerchantSignalGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseBillingProviderReturningMerchantSignal, any, {}>>;
|
|
52689
53292
|
/**
|
|
52690
53293
|
*
|
|
52691
53294
|
* @summary Create a new subscription
|
|
@@ -55427,7 +56030,7 @@ export declare const ConnectorAdminAuthApiAxiosParamCreator: (configuration?: Co
|
|
|
55427
56030
|
*/
|
|
55428
56031
|
adminConnectorAuthUuidPut: (uuid: string, connectorUpdateAuthRequest: ConnectorUpdateAuthRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55429
56032
|
/**
|
|
55430
|
-
*
|
|
56033
|
+
* Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
|
|
55431
56034
|
* @summary Validate connector authentication credentials
|
|
55432
56035
|
* @param {string} uuid Authentication UUID
|
|
55433
56036
|
* @param {*} [options] Override http request option.
|
|
@@ -55481,13 +56084,13 @@ export declare const ConnectorAdminAuthApiFp: (configuration?: Configuration) =>
|
|
|
55481
56084
|
*/
|
|
55482
56085
|
adminConnectorAuthUuidPut(uuid: string, connectorUpdateAuthRequest: ConnectorUpdateAuthRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConnectorAuthResponse>>;
|
|
55483
56086
|
/**
|
|
55484
|
-
*
|
|
56087
|
+
* Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
|
|
55485
56088
|
* @summary Validate connector authentication credentials
|
|
55486
56089
|
* @param {string} uuid Authentication UUID
|
|
55487
56090
|
* @param {*} [options] Override http request option.
|
|
55488
56091
|
* @throws {RequiredError}
|
|
55489
56092
|
*/
|
|
55490
|
-
adminConnectorAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
56093
|
+
adminConnectorAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConnectorValidateAuthResponse>>;
|
|
55491
56094
|
};
|
|
55492
56095
|
/**
|
|
55493
56096
|
* ConnectorAdminAuthApi - factory interface
|
|
@@ -55535,13 +56138,13 @@ export declare const ConnectorAdminAuthApiFactory: (configuration?: Configuratio
|
|
|
55535
56138
|
*/
|
|
55536
56139
|
adminConnectorAuthUuidPut(uuid: string, connectorUpdateAuthRequest: ConnectorUpdateAuthRequest, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorAuthResponse>;
|
|
55537
56140
|
/**
|
|
55538
|
-
*
|
|
56141
|
+
* Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
|
|
55539
56142
|
* @summary Validate connector authentication credentials
|
|
55540
56143
|
* @param {string} uuid Authentication UUID
|
|
55541
56144
|
* @param {*} [options] Override http request option.
|
|
55542
56145
|
* @throws {RequiredError}
|
|
55543
56146
|
*/
|
|
55544
|
-
adminConnectorAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
56147
|
+
adminConnectorAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorValidateAuthResponse>;
|
|
55545
56148
|
};
|
|
55546
56149
|
/**
|
|
55547
56150
|
* ConnectorAdminAuthApi - object-oriented interface
|
|
@@ -55596,14 +56199,14 @@ export declare class ConnectorAdminAuthApi extends BaseAPI {
|
|
|
55596
56199
|
*/
|
|
55597
56200
|
adminConnectorAuthUuidPut(uuid: string, connectorUpdateAuthRequest: ConnectorUpdateAuthRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorAuthResponse, any, {}>>;
|
|
55598
56201
|
/**
|
|
55599
|
-
*
|
|
56202
|
+
* Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
|
|
55600
56203
|
* @summary Validate connector authentication credentials
|
|
55601
56204
|
* @param {string} uuid Authentication UUID
|
|
55602
56205
|
* @param {*} [options] Override http request option.
|
|
55603
56206
|
* @throws {RequiredError}
|
|
55604
56207
|
* @memberof ConnectorAdminAuthApi
|
|
55605
56208
|
*/
|
|
55606
|
-
adminConnectorAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
56209
|
+
adminConnectorAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorValidateAuthResponse, any, {}>>;
|
|
55607
56210
|
}
|
|
55608
56211
|
/**
|
|
55609
56212
|
* ConnectorAdminDestinationsApi - axios parameter creator
|
|
@@ -56584,7 +57187,7 @@ export declare const ConnectorAdminSourcesApiAxiosParamCreator: (configuration?:
|
|
|
56584
57187
|
*/
|
|
56585
57188
|
adminConnectorSourcesTestConnectionPost: (connectorTestConnectionRequest: ConnectorTestConnectionRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56586
57189
|
/**
|
|
56587
|
-
*
|
|
57190
|
+
* 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
57191
|
* @summary Check source connectivity
|
|
56589
57192
|
* @param {string} uuid Source UUID
|
|
56590
57193
|
* @param {*} [options] Override http request option.
|
|
@@ -56600,7 +57203,7 @@ export declare const ConnectorAdminSourcesApiAxiosParamCreator: (configuration?:
|
|
|
56600
57203
|
*/
|
|
56601
57204
|
adminConnectorSourcesUuidDelete: (uuid: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56602
57205
|
/**
|
|
56603
|
-
*
|
|
57206
|
+
* 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
57207
|
* @summary Discover source stream catalog
|
|
56605
57208
|
* @param {string} uuid Source UUID
|
|
56606
57209
|
* @param {*} [options] Override http request option.
|
|
@@ -56663,13 +57266,13 @@ export declare const ConnectorAdminSourcesApiFp: (configuration?: Configuration)
|
|
|
56663
57266
|
*/
|
|
56664
57267
|
adminConnectorSourcesTestConnectionPost(connectorTestConnectionRequest: ConnectorTestConnectionRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConnectorTestConnectionResponse>>;
|
|
56665
57268
|
/**
|
|
56666
|
-
*
|
|
57269
|
+
* 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
57270
|
* @summary Check source connectivity
|
|
56668
57271
|
* @param {string} uuid Source UUID
|
|
56669
57272
|
* @param {*} [options] Override http request option.
|
|
56670
57273
|
* @throws {RequiredError}
|
|
56671
57274
|
*/
|
|
56672
|
-
adminConnectorSourcesUuidCheckPost(uuid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
57275
|
+
adminConnectorSourcesUuidCheckPost(uuid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConnectorValidateAuthResponse>>;
|
|
56673
57276
|
/**
|
|
56674
57277
|
* Soft-deletes a source. Returns 409 if referenced by an active task.
|
|
56675
57278
|
* @summary Delete a connector source
|
|
@@ -56679,7 +57282,7 @@ export declare const ConnectorAdminSourcesApiFp: (configuration?: Configuration)
|
|
|
56679
57282
|
*/
|
|
56680
57283
|
adminConnectorSourcesUuidDelete(uuid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
56681
57284
|
/**
|
|
56682
|
-
*
|
|
57285
|
+
* 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
57286
|
* @summary Discover source stream catalog
|
|
56684
57287
|
* @param {string} uuid Source UUID
|
|
56685
57288
|
* @param {*} [options] Override http request option.
|
|
@@ -56742,13 +57345,13 @@ export declare const ConnectorAdminSourcesApiFactory: (configuration?: Configura
|
|
|
56742
57345
|
*/
|
|
56743
57346
|
adminConnectorSourcesTestConnectionPost(connectorTestConnectionRequest: ConnectorTestConnectionRequest, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorTestConnectionResponse>;
|
|
56744
57347
|
/**
|
|
56745
|
-
*
|
|
57348
|
+
* 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
57349
|
* @summary Check source connectivity
|
|
56747
57350
|
* @param {string} uuid Source UUID
|
|
56748
57351
|
* @param {*} [options] Override http request option.
|
|
56749
57352
|
* @throws {RequiredError}
|
|
56750
57353
|
*/
|
|
56751
|
-
adminConnectorSourcesUuidCheckPost(uuid: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
57354
|
+
adminConnectorSourcesUuidCheckPost(uuid: string, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorValidateAuthResponse>;
|
|
56752
57355
|
/**
|
|
56753
57356
|
* Soft-deletes a source. Returns 409 if referenced by an active task.
|
|
56754
57357
|
* @summary Delete a connector source
|
|
@@ -56758,7 +57361,7 @@ export declare const ConnectorAdminSourcesApiFactory: (configuration?: Configura
|
|
|
56758
57361
|
*/
|
|
56759
57362
|
adminConnectorSourcesUuidDelete(uuid: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
56760
57363
|
/**
|
|
56761
|
-
*
|
|
57364
|
+
* 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
57365
|
* @summary Discover source stream catalog
|
|
56763
57366
|
* @param {string} uuid Source UUID
|
|
56764
57367
|
* @param {*} [options] Override http request option.
|
|
@@ -56826,14 +57429,14 @@ export declare class ConnectorAdminSourcesApi extends BaseAPI {
|
|
|
56826
57429
|
*/
|
|
56827
57430
|
adminConnectorSourcesTestConnectionPost(connectorTestConnectionRequest: ConnectorTestConnectionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorTestConnectionResponse, any, {}>>;
|
|
56828
57431
|
/**
|
|
56829
|
-
*
|
|
57432
|
+
* 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
57433
|
* @summary Check source connectivity
|
|
56831
57434
|
* @param {string} uuid Source UUID
|
|
56832
57435
|
* @param {*} [options] Override http request option.
|
|
56833
57436
|
* @throws {RequiredError}
|
|
56834
57437
|
* @memberof ConnectorAdminSourcesApi
|
|
56835
57438
|
*/
|
|
56836
|
-
adminConnectorSourcesUuidCheckPost(uuid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
57439
|
+
adminConnectorSourcesUuidCheckPost(uuid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorValidateAuthResponse, any, {}>>;
|
|
56837
57440
|
/**
|
|
56838
57441
|
* Soft-deletes a source. Returns 409 if referenced by an active task.
|
|
56839
57442
|
* @summary Delete a connector source
|
|
@@ -56844,7 +57447,7 @@ export declare class ConnectorAdminSourcesApi extends BaseAPI {
|
|
|
56844
57447
|
*/
|
|
56845
57448
|
adminConnectorSourcesUuidDelete(uuid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
56846
57449
|
/**
|
|
56847
|
-
*
|
|
57450
|
+
* 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
57451
|
* @summary Discover source stream catalog
|
|
56849
57452
|
* @param {string} uuid Source UUID
|
|
56850
57453
|
* @param {*} [options] Override http request option.
|
|
@@ -59673,7 +60276,7 @@ export declare const ConnectorsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
59673
60276
|
*/
|
|
59674
60277
|
v1ConnectorsAuthUuidPut: (uuid: string, connectorUpdateAuthRequest: ConnectorUpdateAuthRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
59675
60278
|
/**
|
|
59676
|
-
*
|
|
60279
|
+
* Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
|
|
59677
60280
|
* @summary Validate connector authentication credentials
|
|
59678
60281
|
* @param {string} uuid Authentication UUID
|
|
59679
60282
|
* @param {*} [options] Override http request option.
|
|
@@ -60102,13 +60705,13 @@ export declare const ConnectorsApiFp: (configuration?: Configuration) => {
|
|
|
60102
60705
|
*/
|
|
60103
60706
|
v1ConnectorsAuthUuidPut(uuid: string, connectorUpdateAuthRequest: ConnectorUpdateAuthRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConnectorAuthResponse>>;
|
|
60104
60707
|
/**
|
|
60105
|
-
*
|
|
60708
|
+
* Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
|
|
60106
60709
|
* @summary Validate connector authentication credentials
|
|
60107
60710
|
* @param {string} uuid Authentication UUID
|
|
60108
60711
|
* @param {*} [options] Override http request option.
|
|
60109
60712
|
* @throws {RequiredError}
|
|
60110
60713
|
*/
|
|
60111
|
-
v1ConnectorsAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
60714
|
+
v1ConnectorsAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConnectorValidateAuthResponse>>;
|
|
60112
60715
|
/**
|
|
60113
60716
|
* Returns metadata for all registered connector destination types. Pure registry lookup — no DB calls.
|
|
60114
60717
|
* @summary List registered destination types
|
|
@@ -60535,13 +61138,13 @@ export declare const ConnectorsApiFactory: (configuration?: Configuration, baseP
|
|
|
60535
61138
|
*/
|
|
60536
61139
|
v1ConnectorsAuthUuidPut(uuid: string, connectorUpdateAuthRequest: ConnectorUpdateAuthRequest, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorAuthResponse>;
|
|
60537
61140
|
/**
|
|
60538
|
-
*
|
|
61141
|
+
* Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
|
|
60539
61142
|
* @summary Validate connector authentication credentials
|
|
60540
61143
|
* @param {string} uuid Authentication UUID
|
|
60541
61144
|
* @param {*} [options] Override http request option.
|
|
60542
61145
|
* @throws {RequiredError}
|
|
60543
61146
|
*/
|
|
60544
|
-
v1ConnectorsAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
61147
|
+
v1ConnectorsAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): AxiosPromise<ConnectorValidateAuthResponse>;
|
|
60545
61148
|
/**
|
|
60546
61149
|
* Returns metadata for all registered connector destination types. Pure registry lookup — no DB calls.
|
|
60547
61150
|
* @summary List registered destination types
|
|
@@ -60984,14 +61587,14 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
60984
61587
|
*/
|
|
60985
61588
|
v1ConnectorsAuthUuidPut(uuid: string, connectorUpdateAuthRequest: ConnectorUpdateAuthRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorAuthResponse, any, {}>>;
|
|
60986
61589
|
/**
|
|
60987
|
-
*
|
|
61590
|
+
* Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
|
|
60988
61591
|
* @summary Validate connector authentication credentials
|
|
60989
61592
|
* @param {string} uuid Authentication UUID
|
|
60990
61593
|
* @param {*} [options] Override http request option.
|
|
60991
61594
|
* @throws {RequiredError}
|
|
60992
61595
|
* @memberof ConnectorsApi
|
|
60993
61596
|
*/
|
|
60994
|
-
v1ConnectorsAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
61597
|
+
v1ConnectorsAuthUuidValidatePost(uuid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorValidateAuthResponse, any, {}>>;
|
|
60995
61598
|
/**
|
|
60996
61599
|
* Returns metadata for all registered connector destination types. Pure registry lookup — no DB calls.
|
|
60997
61600
|
* @summary List registered destination types
|
|
@@ -65708,6 +66311,67 @@ export declare class InternalApi extends BaseAPI {
|
|
|
65708
66311
|
[key: string]: any;
|
|
65709
66312
|
}, any, {}>>;
|
|
65710
66313
|
}
|
|
66314
|
+
/**
|
|
66315
|
+
* InternalConnectorWebhooksApi - axios parameter creator
|
|
66316
|
+
* @export
|
|
66317
|
+
*/
|
|
66318
|
+
export declare const InternalConnectorWebhooksApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
66319
|
+
/**
|
|
66320
|
+
* Walks every connector_authentications row whose org is soft-deleted and credentials_encrypted is still populated. For each, decrypts the credentials, invokes the registrar\'s RevokeAuthorization (Shopify implements this; other connectors return NoRevoker counted), and NULLs the blob on success. Idempotent — re-runs converge on the empty set.
|
|
66321
|
+
* @summary Revoke orphan connector authorizations
|
|
66322
|
+
* @param {*} [options] Override http request option.
|
|
66323
|
+
* @throws {RequiredError}
|
|
66324
|
+
*/
|
|
66325
|
+
internalConnectorWebhooksRevokeOrphanAuthorizationsPost: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
66326
|
+
};
|
|
66327
|
+
/**
|
|
66328
|
+
* InternalConnectorWebhooksApi - functional programming interface
|
|
66329
|
+
* @export
|
|
66330
|
+
*/
|
|
66331
|
+
export declare const InternalConnectorWebhooksApiFp: (configuration?: Configuration) => {
|
|
66332
|
+
/**
|
|
66333
|
+
* Walks every connector_authentications row whose org is soft-deleted and credentials_encrypted is still populated. For each, decrypts the credentials, invokes the registrar\'s RevokeAuthorization (Shopify implements this; other connectors return NoRevoker counted), and NULLs the blob on success. Idempotent — re-runs converge on the empty set.
|
|
66334
|
+
* @summary Revoke orphan connector authorizations
|
|
66335
|
+
* @param {*} [options] Override http request option.
|
|
66336
|
+
* @throws {RequiredError}
|
|
66337
|
+
*/
|
|
66338
|
+
internalConnectorWebhooksRevokeOrphanAuthorizationsPost(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
|
|
66339
|
+
[key: string]: any;
|
|
66340
|
+
}>>;
|
|
66341
|
+
};
|
|
66342
|
+
/**
|
|
66343
|
+
* InternalConnectorWebhooksApi - factory interface
|
|
66344
|
+
* @export
|
|
66345
|
+
*/
|
|
66346
|
+
export declare const InternalConnectorWebhooksApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
66347
|
+
/**
|
|
66348
|
+
* Walks every connector_authentications row whose org is soft-deleted and credentials_encrypted is still populated. For each, decrypts the credentials, invokes the registrar\'s RevokeAuthorization (Shopify implements this; other connectors return NoRevoker counted), and NULLs the blob on success. Idempotent — re-runs converge on the empty set.
|
|
66349
|
+
* @summary Revoke orphan connector authorizations
|
|
66350
|
+
* @param {*} [options] Override http request option.
|
|
66351
|
+
* @throws {RequiredError}
|
|
66352
|
+
*/
|
|
66353
|
+
internalConnectorWebhooksRevokeOrphanAuthorizationsPost(options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
66354
|
+
[key: string]: any;
|
|
66355
|
+
}>;
|
|
66356
|
+
};
|
|
66357
|
+
/**
|
|
66358
|
+
* InternalConnectorWebhooksApi - object-oriented interface
|
|
66359
|
+
* @export
|
|
66360
|
+
* @class InternalConnectorWebhooksApi
|
|
66361
|
+
* @extends {BaseAPI}
|
|
66362
|
+
*/
|
|
66363
|
+
export declare class InternalConnectorWebhooksApi extends BaseAPI {
|
|
66364
|
+
/**
|
|
66365
|
+
* Walks every connector_authentications row whose org is soft-deleted and credentials_encrypted is still populated. For each, decrypts the credentials, invokes the registrar\'s RevokeAuthorization (Shopify implements this; other connectors return NoRevoker counted), and NULLs the blob on success. Idempotent — re-runs converge on the empty set.
|
|
66366
|
+
* @summary Revoke orphan connector authorizations
|
|
66367
|
+
* @param {*} [options] Override http request option.
|
|
66368
|
+
* @throws {RequiredError}
|
|
66369
|
+
* @memberof InternalConnectorWebhooksApi
|
|
66370
|
+
*/
|
|
66371
|
+
internalConnectorWebhooksRevokeOrphanAuthorizationsPost(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
66372
|
+
[key: string]: any;
|
|
66373
|
+
}, any, {}>>;
|
|
66374
|
+
}
|
|
65711
66375
|
/**
|
|
65712
66376
|
* ItemAnalyticsApi - axios parameter creator
|
|
65713
66377
|
* @export
|
|
@@ -70874,6 +71538,69 @@ export declare class PlansApi extends BaseAPI {
|
|
|
70874
71538
|
*/
|
|
70875
71539
|
miscPlansUpdateStatusPlanIDStatusPut(planID: string, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
70876
71540
|
}
|
|
71541
|
+
/**
|
|
71542
|
+
* PlatformPublicConnectorRunsApi - axios parameter creator
|
|
71543
|
+
* @export
|
|
71544
|
+
*/
|
|
71545
|
+
export declare const PlatformPublicConnectorRunsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
71546
|
+
/**
|
|
71547
|
+
* Accepts a batched envelope of run-lifecycle events (backfill_complete, backfill_failed, progress) signed via HMAC-SHA256 with the connector\'s API key. Per-event idempotency via connector_run_events_dedup. Successful events transition the run phase (B7).
|
|
71548
|
+
* @summary Submit control-plane lifecycle events for a connector run
|
|
71549
|
+
* @param {number} runId connector_runs.id
|
|
71550
|
+
* @param {string} xSeekoraSignature sha256=<hex(hmac_sha256(body, api_key))>
|
|
71551
|
+
* @param {*} [options] Override http request option.
|
|
71552
|
+
* @throws {RequiredError}
|
|
71553
|
+
*/
|
|
71554
|
+
v3PublicConnectorRunsRunIdEventsPost: (runId: number, xSeekoraSignature: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
71555
|
+
};
|
|
71556
|
+
/**
|
|
71557
|
+
* PlatformPublicConnectorRunsApi - functional programming interface
|
|
71558
|
+
* @export
|
|
71559
|
+
*/
|
|
71560
|
+
export declare const PlatformPublicConnectorRunsApiFp: (configuration?: Configuration) => {
|
|
71561
|
+
/**
|
|
71562
|
+
* Accepts a batched envelope of run-lifecycle events (backfill_complete, backfill_failed, progress) signed via HMAC-SHA256 with the connector\'s API key. Per-event idempotency via connector_run_events_dedup. Successful events transition the run phase (B7).
|
|
71563
|
+
* @summary Submit control-plane lifecycle events for a connector run
|
|
71564
|
+
* @param {number} runId connector_runs.id
|
|
71565
|
+
* @param {string} xSeekoraSignature sha256=<hex(hmac_sha256(body, api_key))>
|
|
71566
|
+
* @param {*} [options] Override http request option.
|
|
71567
|
+
* @throws {RequiredError}
|
|
71568
|
+
*/
|
|
71569
|
+
v3PublicConnectorRunsRunIdEventsPost(runId: number, xSeekoraSignature: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlatformPublicControlPlaneResponseEnvelope>>;
|
|
71570
|
+
};
|
|
71571
|
+
/**
|
|
71572
|
+
* PlatformPublicConnectorRunsApi - factory interface
|
|
71573
|
+
* @export
|
|
71574
|
+
*/
|
|
71575
|
+
export declare const PlatformPublicConnectorRunsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
71576
|
+
/**
|
|
71577
|
+
* Accepts a batched envelope of run-lifecycle events (backfill_complete, backfill_failed, progress) signed via HMAC-SHA256 with the connector\'s API key. Per-event idempotency via connector_run_events_dedup. Successful events transition the run phase (B7).
|
|
71578
|
+
* @summary Submit control-plane lifecycle events for a connector run
|
|
71579
|
+
* @param {number} runId connector_runs.id
|
|
71580
|
+
* @param {string} xSeekoraSignature sha256=<hex(hmac_sha256(body, api_key))>
|
|
71581
|
+
* @param {*} [options] Override http request option.
|
|
71582
|
+
* @throws {RequiredError}
|
|
71583
|
+
*/
|
|
71584
|
+
v3PublicConnectorRunsRunIdEventsPost(runId: number, xSeekoraSignature: string, options?: RawAxiosRequestConfig): AxiosPromise<PlatformPublicControlPlaneResponseEnvelope>;
|
|
71585
|
+
};
|
|
71586
|
+
/**
|
|
71587
|
+
* PlatformPublicConnectorRunsApi - object-oriented interface
|
|
71588
|
+
* @export
|
|
71589
|
+
* @class PlatformPublicConnectorRunsApi
|
|
71590
|
+
* @extends {BaseAPI}
|
|
71591
|
+
*/
|
|
71592
|
+
export declare class PlatformPublicConnectorRunsApi extends BaseAPI {
|
|
71593
|
+
/**
|
|
71594
|
+
* Accepts a batched envelope of run-lifecycle events (backfill_complete, backfill_failed, progress) signed via HMAC-SHA256 with the connector\'s API key. Per-event idempotency via connector_run_events_dedup. Successful events transition the run phase (B7).
|
|
71595
|
+
* @summary Submit control-plane lifecycle events for a connector run
|
|
71596
|
+
* @param {number} runId connector_runs.id
|
|
71597
|
+
* @param {string} xSeekoraSignature sha256=<hex(hmac_sha256(body, api_key))>
|
|
71598
|
+
* @param {*} [options] Override http request option.
|
|
71599
|
+
* @throws {RequiredError}
|
|
71600
|
+
* @memberof PlatformPublicConnectorRunsApi
|
|
71601
|
+
*/
|
|
71602
|
+
v3PublicConnectorRunsRunIdEventsPost(runId: number, xSeekoraSignature: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlatformPublicControlPlaneResponseEnvelope, any, {}>>;
|
|
71603
|
+
}
|
|
70877
71604
|
/**
|
|
70878
71605
|
* PlatformPublicOnboardingApi - axios parameter creator
|
|
70879
71606
|
* @export
|
|
@@ -70941,6 +71668,69 @@ export declare class PlatformPublicOnboardingApi extends BaseAPI {
|
|
|
70941
71668
|
*/
|
|
70942
71669
|
v3PublicOnboardingProviderPost(provider: string, onboardingOnboardingRequest: OnboardingOnboardingRequest, xIdempotencyKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OnboardingOnboardingResponse, any, {}>>;
|
|
70943
71670
|
}
|
|
71671
|
+
/**
|
|
71672
|
+
* PlatformPublicSessionApi - axios parameter creator
|
|
71673
|
+
* @export
|
|
71674
|
+
*/
|
|
71675
|
+
export declare const PlatformPublicSessionApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
71676
|
+
/**
|
|
71677
|
+
* Returns a Seekora JWT without running the full provisioning pipeline. Use this for token-refresh after the initial /onboarding/:provider call has provisioned the tenant. shopify-app\'s auto-mint helper hits this on every stale-localStorage page load.
|
|
71678
|
+
* @summary Mint a session JWT for an already-provisioned tenant
|
|
71679
|
+
* @param {string} provider Connector provider slug (e.g. shopify)
|
|
71680
|
+
* @param {OnboardingMintRequest} onboardingMintRequest Mint payload — external_id + access_token only
|
|
71681
|
+
* @param {*} [options] Override http request option.
|
|
71682
|
+
* @throws {RequiredError}
|
|
71683
|
+
*/
|
|
71684
|
+
v3PublicSessionProviderPost: (provider: string, onboardingMintRequest: OnboardingMintRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
71685
|
+
};
|
|
71686
|
+
/**
|
|
71687
|
+
* PlatformPublicSessionApi - functional programming interface
|
|
71688
|
+
* @export
|
|
71689
|
+
*/
|
|
71690
|
+
export declare const PlatformPublicSessionApiFp: (configuration?: Configuration) => {
|
|
71691
|
+
/**
|
|
71692
|
+
* Returns a Seekora JWT without running the full provisioning pipeline. Use this for token-refresh after the initial /onboarding/:provider call has provisioned the tenant. shopify-app\'s auto-mint helper hits this on every stale-localStorage page load.
|
|
71693
|
+
* @summary Mint a session JWT for an already-provisioned tenant
|
|
71694
|
+
* @param {string} provider Connector provider slug (e.g. shopify)
|
|
71695
|
+
* @param {OnboardingMintRequest} onboardingMintRequest Mint payload — external_id + access_token only
|
|
71696
|
+
* @param {*} [options] Override http request option.
|
|
71697
|
+
* @throws {RequiredError}
|
|
71698
|
+
*/
|
|
71699
|
+
v3PublicSessionProviderPost(provider: string, onboardingMintRequest: OnboardingMintRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OnboardingMintResponse>>;
|
|
71700
|
+
};
|
|
71701
|
+
/**
|
|
71702
|
+
* PlatformPublicSessionApi - factory interface
|
|
71703
|
+
* @export
|
|
71704
|
+
*/
|
|
71705
|
+
export declare const PlatformPublicSessionApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
71706
|
+
/**
|
|
71707
|
+
* Returns a Seekora JWT without running the full provisioning pipeline. Use this for token-refresh after the initial /onboarding/:provider call has provisioned the tenant. shopify-app\'s auto-mint helper hits this on every stale-localStorage page load.
|
|
71708
|
+
* @summary Mint a session JWT for an already-provisioned tenant
|
|
71709
|
+
* @param {string} provider Connector provider slug (e.g. shopify)
|
|
71710
|
+
* @param {OnboardingMintRequest} onboardingMintRequest Mint payload — external_id + access_token only
|
|
71711
|
+
* @param {*} [options] Override http request option.
|
|
71712
|
+
* @throws {RequiredError}
|
|
71713
|
+
*/
|
|
71714
|
+
v3PublicSessionProviderPost(provider: string, onboardingMintRequest: OnboardingMintRequest, options?: RawAxiosRequestConfig): AxiosPromise<OnboardingMintResponse>;
|
|
71715
|
+
};
|
|
71716
|
+
/**
|
|
71717
|
+
* PlatformPublicSessionApi - object-oriented interface
|
|
71718
|
+
* @export
|
|
71719
|
+
* @class PlatformPublicSessionApi
|
|
71720
|
+
* @extends {BaseAPI}
|
|
71721
|
+
*/
|
|
71722
|
+
export declare class PlatformPublicSessionApi extends BaseAPI {
|
|
71723
|
+
/**
|
|
71724
|
+
* Returns a Seekora JWT without running the full provisioning pipeline. Use this for token-refresh after the initial /onboarding/:provider call has provisioned the tenant. shopify-app\'s auto-mint helper hits this on every stale-localStorage page load.
|
|
71725
|
+
* @summary Mint a session JWT for an already-provisioned tenant
|
|
71726
|
+
* @param {string} provider Connector provider slug (e.g. shopify)
|
|
71727
|
+
* @param {OnboardingMintRequest} onboardingMintRequest Mint payload — external_id + access_token only
|
|
71728
|
+
* @param {*} [options] Override http request option.
|
|
71729
|
+
* @throws {RequiredError}
|
|
71730
|
+
* @memberof PlatformPublicSessionApi
|
|
71731
|
+
*/
|
|
71732
|
+
v3PublicSessionProviderPost(provider: string, onboardingMintRequest: OnboardingMintRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OnboardingMintResponse, any, {}>>;
|
|
71733
|
+
}
|
|
70944
71734
|
/**
|
|
70945
71735
|
* PluralsDeclensionsApi - axios parameter creator
|
|
70946
71736
|
* @export
|