arky-sdk 0.9.11 → 0.9.13
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/{admin-CAwQrMOX.d.cts → admin-Q9MBFwCb.d.cts} +115 -15
- package/dist/{admin-BKXmDIVk.d.ts → admin-ZLXD4_en.d.ts} +115 -15
- package/dist/admin.cjs +64 -11
- package/dist/admin.cjs.map +1 -1
- package/dist/admin.d.cts +3 -3
- package/dist/admin.d.ts +3 -3
- package/dist/admin.js +64 -11
- package/dist/admin.js.map +1 -1
- package/dist/{api-DJI3S6XA.d.cts → api-DvsFdOaF.d.cts} +144 -19
- package/dist/{api-DJI3S6XA.d.ts → api-DvsFdOaF.d.ts} +144 -19
- package/dist/{index-u-gjHnKs.d.cts → index-BC06yiuv.d.cts} +1 -1
- package/dist/{index-BaSBPLdF.d.ts → index-CQd9b_7n.d.ts} +1 -1
- package/dist/index.cjs +72 -11
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +72 -11
- package/dist/index.js.map +1 -1
- package/dist/storefront.cjs +8 -0
- package/dist/storefront.cjs.map +1 -1
- package/dist/storefront.d.cts +6 -4
- package/dist/storefront.d.ts +6 -4
- package/dist/storefront.js +8 -0
- package/dist/storefront.js.map +1 -1
- package/dist/types.cjs.map +1 -1
- package/dist/types.d.cts +1 -1
- package/dist/types.d.ts +1 -1
- package/dist/types.js.map +1 -1
- package/dist/utils.d.cts +2 -2
- package/dist/utils.d.ts +2 -2
- package/package.json +1 -1
- package/scripts/contract-admin.mjs +2 -19
|
@@ -1052,9 +1052,12 @@ interface StoreSubscription {
|
|
|
1052
1052
|
}
|
|
1053
1053
|
type ContactListMembershipProvider = {
|
|
1054
1054
|
type: "stripe";
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1055
|
+
customer_id: string;
|
|
1056
|
+
connected_account_id?: string | null;
|
|
1057
|
+
subscription_id?: string | null;
|
|
1058
|
+
payment_intent_id?: string | null;
|
|
1059
|
+
payment_intent_client_secret?: string | null;
|
|
1060
|
+
price_id?: string | null;
|
|
1058
1061
|
};
|
|
1059
1062
|
interface ContactListMembershipPayment {
|
|
1060
1063
|
currency: string;
|
|
@@ -1258,6 +1261,8 @@ type ContactStatus = "active" | "archived";
|
|
|
1258
1261
|
type ContactListStatus = "active" | "draft" | "archived";
|
|
1259
1262
|
type ContactListSource = "manual" | "import" | "signup" | "admin" | "system" | "lead_research";
|
|
1260
1263
|
type ContactListMembershipStatus = "pending" | "active" | "cancellation_scheduled" | "cancelled" | "expired" | "archived";
|
|
1264
|
+
type ContactListPlanStatus = "active" | "archived";
|
|
1265
|
+
type ContactListContentAccessStatus = "active" | "archived";
|
|
1261
1266
|
type MailboxStatus = "active" | "draft" | "archived";
|
|
1262
1267
|
type MailboxPreset = "gmail" | "zoho" | "microsoft" | "custom";
|
|
1263
1268
|
type MailboxConnectionSecurity = "tls" | "start_tls";
|
|
@@ -1678,9 +1683,32 @@ type ContactListType = {
|
|
|
1678
1683
|
confirm_template_id?: string | null;
|
|
1679
1684
|
} | {
|
|
1680
1685
|
type: "paid";
|
|
1686
|
+
};
|
|
1687
|
+
interface ContactListPlan {
|
|
1688
|
+
id: string;
|
|
1689
|
+
key: string;
|
|
1690
|
+
name: string;
|
|
1691
|
+
description?: string | null;
|
|
1692
|
+
status: ContactListPlanStatus;
|
|
1681
1693
|
prices: SubscriptionPrice[];
|
|
1682
1694
|
payment_provider_id?: string | null;
|
|
1695
|
+
created_at: number;
|
|
1696
|
+
updated_at: number;
|
|
1697
|
+
}
|
|
1698
|
+
type ContactListContentAccessTarget = {
|
|
1699
|
+
type: "cms_entry";
|
|
1700
|
+
entry_id: string;
|
|
1701
|
+
} | {
|
|
1702
|
+
type: "cms_collection";
|
|
1703
|
+
collection_id: string;
|
|
1683
1704
|
};
|
|
1705
|
+
interface ContactListContentAccess {
|
|
1706
|
+
id: string;
|
|
1707
|
+
target: ContactListContentAccessTarget;
|
|
1708
|
+
status: ContactListContentAccessStatus;
|
|
1709
|
+
created_at: number;
|
|
1710
|
+
updated_at: number;
|
|
1711
|
+
}
|
|
1684
1712
|
interface ContactSessionToken$1 {
|
|
1685
1713
|
id: string;
|
|
1686
1714
|
token: string;
|
|
@@ -1724,7 +1752,6 @@ interface Contact$1 {
|
|
|
1724
1752
|
status: ContactStatus;
|
|
1725
1753
|
channels: ContactChannel[];
|
|
1726
1754
|
promo_usage: PromoUsage$1[];
|
|
1727
|
-
lists: ContactListMembership[];
|
|
1728
1755
|
taxonomies: TaxonomyEntry[];
|
|
1729
1756
|
auth_tokens: ContactSessionToken$1[];
|
|
1730
1757
|
verification_codes: ContactVerificationCode$1[];
|
|
@@ -1735,8 +1762,14 @@ interface ContactListAccessResponse {
|
|
|
1735
1762
|
has_access: boolean;
|
|
1736
1763
|
membership?: ContactListMembership | null;
|
|
1737
1764
|
}
|
|
1765
|
+
interface ContactListContentAccessResponse {
|
|
1766
|
+
has_access: boolean;
|
|
1767
|
+
contact_list?: ContactList | null;
|
|
1768
|
+
membership?: ContactListMembership | null;
|
|
1769
|
+
}
|
|
1738
1770
|
interface ContactListSubscribeResponse {
|
|
1739
1771
|
checkout_url?: string | null;
|
|
1772
|
+
payment_action: CheckoutPaymentAction;
|
|
1740
1773
|
membership?: ContactListMembership | null;
|
|
1741
1774
|
}
|
|
1742
1775
|
interface ContactList {
|
|
@@ -1747,6 +1780,8 @@ interface ContactList {
|
|
|
1747
1780
|
description?: string | null;
|
|
1748
1781
|
status: ContactListStatus;
|
|
1749
1782
|
type: ContactListType;
|
|
1783
|
+
plans: ContactListPlan[];
|
|
1784
|
+
content_access: ContactListContentAccess[];
|
|
1750
1785
|
source: ContactListSource;
|
|
1751
1786
|
member_count: number;
|
|
1752
1787
|
created_at: number;
|
|
@@ -2303,8 +2338,10 @@ interface ShipmentLine {
|
|
|
2303
2338
|
fulfillment_order_line_id?: string | null;
|
|
2304
2339
|
quantity: number;
|
|
2305
2340
|
}
|
|
2306
|
-
type
|
|
2307
|
-
type
|
|
2341
|
+
type ShippingLabelPurchaseStatus = "requested" | "merchant_recovery_processing" | "merchant_recovery_succeeded" | "merchant_recovery_failed" | "label_purchase_processing" | "purchased" | "label_purchase_failed" | "merchant_credit_processing" | "failed_merchant_credited" | "merchant_credit_failed" | "unknown";
|
|
2342
|
+
type MerchantRecoveryStatus = "processing" | "succeeded" | "failed" | "unknown";
|
|
2343
|
+
type MerchantCreditStatus = "processing" | "succeeded" | "failed" | "unknown";
|
|
2344
|
+
type ShippingLabelPurchaseError = {
|
|
2308
2345
|
type: "provider_rejected";
|
|
2309
2346
|
message: string;
|
|
2310
2347
|
provider_code?: string | null;
|
|
@@ -2319,6 +2356,88 @@ type ShipmentLabelError = {
|
|
|
2319
2356
|
message: string;
|
|
2320
2357
|
at: number;
|
|
2321
2358
|
};
|
|
2359
|
+
type MerchantRecovery = {
|
|
2360
|
+
type: "stripe_connect_account_debit";
|
|
2361
|
+
payment_provider_id: string;
|
|
2362
|
+
connected_account_id: string;
|
|
2363
|
+
stripe_payment_id?: string | null;
|
|
2364
|
+
amount: number;
|
|
2365
|
+
currency: string;
|
|
2366
|
+
status: MerchantRecoveryStatus;
|
|
2367
|
+
error?: ShippingLabelPurchaseError | null;
|
|
2368
|
+
};
|
|
2369
|
+
type MerchantCreditReason = "shipping_label_purchase_failed" | "shipping_label_refund_succeeded" | "shipping_label_negative_adjustment";
|
|
2370
|
+
type MerchantCredit = {
|
|
2371
|
+
type: "stripe_connect_transfer";
|
|
2372
|
+
payment_provider_id: string;
|
|
2373
|
+
connected_account_id: string;
|
|
2374
|
+
stripe_transfer_id?: string | null;
|
|
2375
|
+
amount: number;
|
|
2376
|
+
currency: string;
|
|
2377
|
+
reason: MerchantCreditReason;
|
|
2378
|
+
status: MerchantCreditStatus;
|
|
2379
|
+
error?: ShippingLabelPurchaseError | null;
|
|
2380
|
+
};
|
|
2381
|
+
type ShippingLabelProviderPurchase = {
|
|
2382
|
+
type: "shippo";
|
|
2383
|
+
transaction_id?: string | null;
|
|
2384
|
+
rate_id: string;
|
|
2385
|
+
tracking_number?: string | null;
|
|
2386
|
+
tracking_url?: string | null;
|
|
2387
|
+
label_url?: string | null;
|
|
2388
|
+
carrier?: string | null;
|
|
2389
|
+
service?: string | null;
|
|
2390
|
+
};
|
|
2391
|
+
type ShippingLabelRefundStatus = "requested" | "provider_pending" | "provider_rejected" | "merchant_credit_processing" | "succeeded" | "merchant_credit_failed" | "unknown";
|
|
2392
|
+
type ShippingLabelProviderRefund = {
|
|
2393
|
+
type: "shippo";
|
|
2394
|
+
refund_id?: string | null;
|
|
2395
|
+
transaction_id: string;
|
|
2396
|
+
status: string;
|
|
2397
|
+
};
|
|
2398
|
+
interface ShippingLabelRefund {
|
|
2399
|
+
id: string;
|
|
2400
|
+
status: ShippingLabelRefundStatus;
|
|
2401
|
+
requested_amount?: number | null;
|
|
2402
|
+
approved_amount?: number | null;
|
|
2403
|
+
currency?: string | null;
|
|
2404
|
+
provider_refund?: ShippingLabelProviderRefund | null;
|
|
2405
|
+
merchant_credit?: MerchantCredit | null;
|
|
2406
|
+
error?: ShippingLabelPurchaseError | null;
|
|
2407
|
+
requested_at: number;
|
|
2408
|
+
updated_at: number;
|
|
2409
|
+
}
|
|
2410
|
+
type ShippingLabelAdjustmentStatus = "requested" | "merchant_recovery_processing" | "merchant_recovery_succeeded" | "merchant_recovery_failed" | "merchant_credit_processing" | "merchant_credit_succeeded" | "merchant_credit_failed" | "unknown";
|
|
2411
|
+
interface ShippingLabelAdjustment {
|
|
2412
|
+
id: string;
|
|
2413
|
+
provider_adjustment_id?: string | null;
|
|
2414
|
+
amount: number;
|
|
2415
|
+
currency: string;
|
|
2416
|
+
reason: string;
|
|
2417
|
+
status: ShippingLabelAdjustmentStatus;
|
|
2418
|
+
merchant_recovery?: MerchantRecovery | null;
|
|
2419
|
+
merchant_credit?: MerchantCredit | null;
|
|
2420
|
+
error?: ShippingLabelPurchaseError | null;
|
|
2421
|
+
created_at: number;
|
|
2422
|
+
updated_at: number;
|
|
2423
|
+
}
|
|
2424
|
+
interface ShippingLabelPurchase {
|
|
2425
|
+
id: string;
|
|
2426
|
+
rate_id: string;
|
|
2427
|
+
status: ShippingLabelPurchaseStatus;
|
|
2428
|
+
postage_amount?: number | null;
|
|
2429
|
+
fee_amount: number;
|
|
2430
|
+
total_amount?: number | null;
|
|
2431
|
+
currency?: string | null;
|
|
2432
|
+
provider_purchase?: ShippingLabelProviderPurchase | null;
|
|
2433
|
+
merchant_recovery?: MerchantRecovery | null;
|
|
2434
|
+
merchant_credit?: MerchantCredit | null;
|
|
2435
|
+
refund?: ShippingLabelRefund | null;
|
|
2436
|
+
adjustments: ShippingLabelAdjustment[];
|
|
2437
|
+
error?: ShippingLabelPurchaseError | null;
|
|
2438
|
+
created_at: number;
|
|
2439
|
+
updated_at: number;
|
|
2440
|
+
}
|
|
2322
2441
|
interface Shipment {
|
|
2323
2442
|
id: string;
|
|
2324
2443
|
fulfillment_order_id?: string | null;
|
|
@@ -2331,8 +2450,7 @@ interface Shipment {
|
|
|
2331
2450
|
tracking_url?: string | null;
|
|
2332
2451
|
label_url?: string | null;
|
|
2333
2452
|
status: ShippingStatus;
|
|
2334
|
-
|
|
2335
|
-
label_error?: ShipmentLabelError | null;
|
|
2453
|
+
shipping_label_purchase?: ShippingLabelPurchase | null;
|
|
2336
2454
|
created_at: number;
|
|
2337
2455
|
updated_at: number;
|
|
2338
2456
|
}
|
|
@@ -2354,18 +2472,20 @@ interface Parcel {
|
|
|
2354
2472
|
mass_unit: "oz" | "lb" | "g" | "kg";
|
|
2355
2473
|
}
|
|
2356
2474
|
interface PurchaseLabelResult {
|
|
2475
|
+
transaction_id?: string | null;
|
|
2357
2476
|
tracking_number: string;
|
|
2358
2477
|
tracking_url?: string | null;
|
|
2359
2478
|
label_url: string;
|
|
2360
2479
|
carrier: string;
|
|
2361
2480
|
service: string;
|
|
2481
|
+
postage_amount?: number | null;
|
|
2482
|
+
postage_currency?: string | null;
|
|
2362
2483
|
}
|
|
2363
2484
|
interface ShipResult {
|
|
2364
2485
|
shipment_id: string;
|
|
2365
2486
|
tracking_number?: string | null;
|
|
2366
2487
|
tracking_url?: string | null;
|
|
2367
2488
|
label_url?: string | null;
|
|
2368
|
-
label_status: ShipmentLabelStatus;
|
|
2369
2489
|
}
|
|
2370
2490
|
interface CustomsItem {
|
|
2371
2491
|
description: string;
|
|
@@ -3456,17 +3576,9 @@ interface GetWorkflowExecutionParams {
|
|
|
3456
3576
|
execution_id: string;
|
|
3457
3577
|
store_id?: string;
|
|
3458
3578
|
}
|
|
3459
|
-
interface ConnectWorkflowAccountParams {
|
|
3460
|
-
store_id?: string;
|
|
3461
|
-
type: WorkflowAccountType;
|
|
3462
|
-
key?: string;
|
|
3463
|
-
code: string;
|
|
3464
|
-
redirect_uri: string;
|
|
3465
|
-
}
|
|
3466
3579
|
interface GetWorkflowAccountConnectUrlParams {
|
|
3467
3580
|
store_id?: string;
|
|
3468
3581
|
type: WorkflowAccountType;
|
|
3469
|
-
redirect_uri: string;
|
|
3470
3582
|
}
|
|
3471
3583
|
interface GetWorkflowAccountsParams {
|
|
3472
3584
|
store_id?: string;
|
|
@@ -3481,6 +3593,8 @@ interface CreateContactListParams {
|
|
|
3481
3593
|
name?: string;
|
|
3482
3594
|
description?: string | null;
|
|
3483
3595
|
type?: ContactListType;
|
|
3596
|
+
plans?: ContactListPlan[];
|
|
3597
|
+
content_access?: ContactListContentAccess[];
|
|
3484
3598
|
source?: ContactListSource;
|
|
3485
3599
|
}
|
|
3486
3600
|
interface UpdateContactListParams {
|
|
@@ -3491,6 +3605,8 @@ interface UpdateContactListParams {
|
|
|
3491
3605
|
description?: string | null;
|
|
3492
3606
|
status?: ContactListStatus;
|
|
3493
3607
|
type?: ContactListType;
|
|
3608
|
+
plans?: ContactListPlan[];
|
|
3609
|
+
content_access?: ContactListContentAccess[];
|
|
3494
3610
|
}
|
|
3495
3611
|
interface FindContactListsParams {
|
|
3496
3612
|
store_id?: string;
|
|
@@ -3636,11 +3752,17 @@ interface SubscribeContactListParams {
|
|
|
3636
3752
|
success_url?: string;
|
|
3637
3753
|
cancel_url?: string;
|
|
3638
3754
|
confirm_url?: string;
|
|
3755
|
+
confirmation_token_id?: string;
|
|
3756
|
+
return_url?: string;
|
|
3639
3757
|
}
|
|
3640
3758
|
interface ContactListAccessParams {
|
|
3641
3759
|
store_id?: string;
|
|
3642
3760
|
id: string;
|
|
3643
3761
|
}
|
|
3762
|
+
interface ContactListContentAccessParams {
|
|
3763
|
+
store_id?: string;
|
|
3764
|
+
target: ContactListContentAccessTarget;
|
|
3765
|
+
}
|
|
3644
3766
|
interface CreateMailboxParams {
|
|
3645
3767
|
store_id?: string;
|
|
3646
3768
|
key: string;
|
|
@@ -4113,6 +4235,10 @@ interface ShipParams {
|
|
|
4113
4235
|
fulfillment_order_id?: string | null;
|
|
4114
4236
|
lines: ShipmentLine[];
|
|
4115
4237
|
}
|
|
4238
|
+
interface RefundShippingLabelParams {
|
|
4239
|
+
order_id: string;
|
|
4240
|
+
shipment_id: string;
|
|
4241
|
+
}
|
|
4116
4242
|
interface AuthToken {
|
|
4117
4243
|
id: string;
|
|
4118
4244
|
access_token: string;
|
|
@@ -4149,7 +4275,6 @@ interface Contact {
|
|
|
4149
4275
|
status: ContactStatus;
|
|
4150
4276
|
channels: ContactChannel[];
|
|
4151
4277
|
promo_usage: PromoUsage[];
|
|
4152
|
-
lists: ContactListMembership[];
|
|
4153
4278
|
taxonomies: TaxonomyEntry[];
|
|
4154
4279
|
auth_tokens: ContactSessionToken[];
|
|
4155
4280
|
verification_codes: ContactVerificationCode[];
|
|
@@ -4201,4 +4326,4 @@ interface MergeContactsParams {
|
|
|
4201
4326
|
store_id?: string;
|
|
4202
4327
|
}
|
|
4203
4328
|
|
|
4204
|
-
export { type GetProviderParams as $, type Address as A, type Block as B, type Cart as C, type ClearCartParams as D, type EshopCartItem as E, type FormEntry as F, type GetCollectionParams as G, type CheckoutCartParams as H, type GetOrderParams as I, type Order as J, type GetOrdersParams as K, type Location as L, type Market as M, type DownloadDigitalAccessParams as N, type OrderCheckoutResult as O, type Price as P, type QuoteCartParams as Q, type RequestOptions as R, type Service as S, type Taxonomy as T, type UpdateCartParams as U, type DigitalAccessDownloadResponse as V, type GetServiceParams as W, type GetServicesParams as X, type FindServiceProvidersParams as Y, type ZoneLocation as Z, type GetAvailabilityParams as _, type CollectionEntry as a, type TriggerNotificationParams as a$, type GetProvidersParams as a0, type GetContactListParams as a1, type ContactList as a2, type FindContactListsParams as a3, type SubscribeContactListParams as a4, type ContactListSubscribeResponse as a5, type ContactListAccessParams as a6, type ContactListAccessResponse as a7, type ProductVariant as a8, type OrderCheckoutItemInput as a9, type TestWebhookParams as aA, type ListWebhooksParams as aB, type Webhook as aC, type CreateWebhookParams as aD, type UpdateWebhookParams as aE, type DeleteWebhookParams as aF, type StoreRuntimeConfig as aG, type FindStoreMediaParams as aH, type Media as aI, type CreateLocationParams as aJ, type UpdateLocationParams as aK, type DeleteLocationParams as aL, type CreateMarketParams as aM, type UpdateMarketParams as aN, type DeleteMarketParams as aO, type ListPaymentProvidersParams as aP, type PaymentProvider as aQ, type RefreshPaymentProvidersParams as aR, type ConnectStripePaymentProviderParams as aS, type StripePaymentProviderConnectResponse as aT, type DeletePaymentProviderParams as aU, type GetMediaParams as aV, type UploadStoreMediaParams as aW, type DeleteStoreMediaParams as aX, type GetStoreMediaParams as aY, type UpdateMediaParams as aZ, type TrackEmailOpenParams as a_, type FormField as aa, type Contact$1 as ab, type UpdateAccountContactParams as ac, type AccountUpdateResponse as ad, type DeleteAccountParams as ae, type GetMeParams as af, type Account as ag, type SearchAccountsParams as ah, type MagicLinkVerifyParams as ai, type AuthToken as aj, type CreateStoreParams as ak, type UpdateStoreParams as al, type DeleteStoreParams as am, type GetStoreParams as an, type GetStoresParams as ao, type GetSubscriptionPlansParams as ap, type SubscriptionPlan as aq, type SubscribeParams as ar, type CreatePortalSessionParams as as, type AddMemberParams as at, type RemoveMemberParams as au, type ListBuildHooksParams as av, type BuildHook as aw, type CreateBuildHookParams as ax, type UpdateBuildHookParams as ay, type DeleteBuildHookParams as az, type Form as b, type UpdateEmailTemplateParams as b$, type CreateMailboxParams as b0, type Mailbox as b1, type UpdateMailboxParams as b2, type GetMailboxParams as b3, type TestMailboxParams as b4, type TestMailboxResult as b5, type PrepareMailboxParams as b6, type FindMailboxesParams as b7, type GetSocialCapabilitiesParams as b8, type SocialProviderCapability as b9, type ReplySocialPublicationCommentParams as bA, type SocialPublicationCommentReplyResponse as bB, type GetSocialPublicationMetricsParams as bC, type SocialPublicationMetricSnapshot as bD, type SyncSocialPublicationMetricsParams as bE, type SyncSocialEngagementParams as bF, type SocialPublicationEngagementSyncResult as bG, type CreateCollectionParams as bH, type UpdateCollectionParams as bI, type DeleteCollectionParams as bJ, type GetCollectionsParams as bK, type CreateEntryParams as bL, type UpdateEntryParams as bM, type DeleteEntryParams as bN, type CreateFormParams as bO, type UpdateFormParams as bP, type DeleteFormParams as bQ, type GetFormsParams as bR, type GetFormSubmissionsParams as bS, type GetFormSubmissionParams as bT, type UpdateFormSubmissionParams as bU, type CreateTaxonomyParams as bV, type UpdateTaxonomyParams as bW, type DeleteTaxonomyParams as bX, type GetTaxonomiesParams as bY, type CreateEmailTemplateParams as bZ, type EmailTemplate as b_, type ListSocialAccountsParams as ba, type SocialAccount as bb, type ConnectSocialAccountParams as bc, type SocialConnectResponse as bd, type GetSocialOAuthAttemptParams as be, type SocialOAuthCallbackResponse as bf, type SelectSocialDestinationParams as bg, type DeleteSocialAccountParams as bh, type CreateSocialPublicationParams as bi, type SocialPublicationMutationResponse as bj, type UpdateSocialPublicationParams as bk, type GetSocialPublicationParams as bl, type SocialPublication as bm, type FindSocialPublicationsParams as bn, type ValidateSocialPublicationParams as bo, type SocialPublicationValidation as bp, type ScheduleSocialPublicationParams as bq, type CancelSocialPublicationParams as br, type GetSocialPublicationCommentsParams as bs, type SocialPublicationComment as bt, type SyncSocialPublicationCommentsParams as bu, type GetSocialPublicationCommentThreadParams as bv, type SyncSocialPublicationCommentThreadParams as bw, type FindSocialPublicationCommentsParams as bx, type ClassifySocialPublicationCommentsParams as by, type SocialPublicationCommentClassificationResult as bz, type Product as c, type CampaignLaunchReadiness as c$, type DeleteEmailTemplateParams as c0, type GetEmailTemplateParams as c1, type GetEmailTemplatesParams as c2, type PreviewEmailTemplateParams as c3, type PreviewEmailTemplateResponse as c4, type CreateProductParams as c5, type UpdateProductParams as c6, type DeleteProductParams as c7, type UpdateOrderParams as c8, type GetQuoteParams as c9, type GetContactParams as cA, type FindContactsParams as cB, type UpdateContactParams as cC, type MergeContactsParams as cD, type ImportContactsParams as cE, type ImportContactsResult as cF, type CreateContactListParams as cG, type UpdateContactListParams as cH, type ImportContactsIntoContactListParams as cI, type ImportContactsIntoContactListResult as cJ, type ImportContactListPreviewParams as cK, type ImportContactsPreviewResult as cL, type AddContactListContactParams as cM, type ContactListMember as cN, type UpdateContactListContactParams as cO, type RemoveContactListContactParams as cP, type FindContactListContactsParams as cQ, type Action as cR, type FindActionsParams as cS, type CreateCampaignParams as cT, type Campaign as cU, type UpdateCampaignParams as cV, type GetCampaignParams as cW, type FindCampaignsParams as cX, type LaunchCampaignParams as cY, type DuplicateCampaignParams as cZ, type GetCampaignLaunchReadinessParams as c_, type ProcessOrderRefundParams as ca, type ProcessOrderRefundResponse as cb, type GetShippingRatesParams as cc, type ShippingRate as cd, type ShipParams as ce, type ShipResult as cf, type CreateCartParams as cg, type FindCartsParams as ch, type CreateServiceParams as ci, type UpdateServiceParams as cj, type DeleteServiceParams as ck, type ServiceProvider as cl, type CreateServiceProviderParams as cm, type UpdateServiceProviderParams as cn, type DeleteServiceProviderParams as co, type CreateProviderParams as cp, type UpdateProviderParams as cq, type DeleteProviderParams as cr, type CreatePromoCodeParams as cs, type PromoCode as ct, type UpdatePromoCodeParams as cu, type DeletePromoCodeParams as cv, type GetPromoCodeParams as cw, type GetPromoCodesParams as cx, type CreateContactParams as cy, type Contact as cz, type Provider as d, type CampaignManualTaskOutcome as d$, type ImportCampaignEnrollmentsParams as d0, type CampaignEnrollmentImportResult as d1, type GenerateOutreachPersonalizedDraftsParams as d2, type FindCampaignEnrollmentsParams as d3, type CampaignEnrollment as d4, type GetCampaignEnrollmentConversationParams as d5, type CampaignEnrollmentConversationResponse as d6, type UpdateCampaignEnrollmentParams as d7, type UpdateCampaignEnrollmentDraftParams as d8, type UpdateCampaignEnrollmentStepExecutionParams as d9, type DeleteWorkflowParams as dA, type GetWorkflowParams as dB, type GetWorkflowsParams as dC, type TriggerWorkflowParams as dD, type WorkflowExecution as dE, type GetWorkflowExecutionsParams as dF, type GetWorkflowExecutionParams as dG, type GetWorkflowAccountsParams as dH, type WorkflowAccount as dI, type GetWorkflowAccountConnectUrlParams as dJ, type WorkflowAccountConnectUrl as dK, type ConnectWorkflowAccountParams as dL, type DeleteWorkflowAccountParams as dM, type Access as dN, type AccountToken as dO, type ActionContext as dP, type ActionData as dQ, type ApiResponse as dR, type AvailabilitySlot as dS, type BlockSchema as dT, type BlockSchemaProperties as dU, type BlockSchemaType as dV, type BookingOrderItemStatus as dW, type BuildHookType as dX, type CampaignEnrollmentImportResult$1 as dY, type CampaignEnrollmentImportSource as dZ, type CampaignEnrollmentStatus as d_, type ReplyCampaignEnrollmentParams as da, type StopCampaignEnrollmentParams as db, type FindCampaignMessagesParams as dc, type CampaignMessage as dd, type UpdateCampaignMessageParams as de, type CreateSuppressionParams as df, type Suppression as dg, type UpdateSuppressionParams as dh, type GetSuppressionParams as di, type FindSuppressionsParams as dj, type CreateLeadResearchRunParams as dk, type LeadResearchRun as dl, type FindLeadResearchRunsParams as dm, type GetLeadResearchRunParams as dn, type UpdateLeadResearchRunParams as dp, type CancelLeadResearchRunParams as dq, type SendLeadResearchMessageParams as dr, type SendLeadResearchMessageResult as ds, type FindLeadResearchMessagesParams as dt, type LeadResearchMessage as du, type ValidateLeadEmailParams as dv, type LeadEmailValidationResult as dw, type CreateWorkflowParams as dx, type Workflow as dy, type UpdateWorkflowParams as dz, type AvailabilityResponse as e, type ImportContactRowInput as e$, type CampaignMessageCopySource as e0, type CampaignMessageDirection as e1, type CampaignMessageStatus as e2, type CampaignMessageType as e3, type CampaignRoute as e4, type CampaignStatus as e5, type CartOrigin as e6, type CartStatus as e7, type ChannelMessage as e8, type ChannelType as e9, type Discount as eA, type DiscountAllocation as eB, type EmailTemplateStatus as eC, type EmailTemplateVariable as eD, type EntryBlockQuery as eE, type EntryStatus as eF, type EshopItem as eG, type EshopQuoteItem as eH, type EshopStoreState as eI, type Event as eJ, type EventAction as eK, type ExecutionStatus as eL, type FieldOperation as eM, type FormFieldType as eN, type FormSchema as eO, type FormSchemaType as eP, type FormStatus as eQ, type FulfillmentOrder as eR, type FulfillmentOrderLine as eS, type FulfillmentOrderRequestStatus as eT, type FulfillmentOrderStatus as eU, type GalleryItem as eV, type GeoLocation as eW, type GeoLocationBlock as eX, type HistoryEntry as eY, type ImportContactListRowResult as eZ, type ImportContactRowError as e_, type CheckoutPaymentAction as ea, type CollectionStatus as eb, type Condition as ec, type ConditionValue as ed, type ContactChannel as ee, type ContactListMembership as ef, type ContactListMembershipPayment as eg, type ContactListMembershipProvider as eh, type ContactListMembershipProviderCancellation as ei, type ContactListMembershipProviderCancellationError as ej, type ContactListMembershipProviderCancellationStatus as ek, type ContactListMembershipStatus as el, type ContactListSource as em, type ContactListStatus as en, type ContactListType as eo, type ContactStatus as ep, type Coordinates as eq, type CustomsDeclaration as er, type CustomsItem as es, type DaySlots as et, type DigitalAccessGrant as eu, type DigitalAccessGrantStatus as ev, type DigitalAsset as ew, type DigitalAssetStatus as ex, type DigitalAssetType as ey, type DigitalDeliveryPolicy as ez, type OrderQuote as f, type ProductQuoteLine as f$, type ImportContactRowResult as f0, type ImportContactsPreviewParams as f1, type ImportFieldMapping as f2, type ImportPreviewRow as f3, type InstagramPlacement as f4, type InventoryLevel as f5, type Language as f6, type LeadEmailClassification as f7, type LeadInsight as f8, type LeadResearchMessageRole as f9, type OrderPaymentRefund as fA, type OrderPaymentStatus as fB, type OrderPaymentSummaryStatus as fC, type OrderPaymentTax as fD, type OrderPaymentTaxLine as fE, type OrderQuoteCompatibleItemInput as fF, type OrderQuoteItemInput as fG, type OrderShipping as fH, type OrderStatus as fI, type OutreachPersonalizationCounters as fJ, type OutreachPersonalizationState as fK, type OutreachPersonalizationStatus as fL, type OutreachStep as fM, type OutreachStepType as fN, type OutreachThreadMode as fO, type Parcel as fP, type PaymentCaptureMethod as fQ, PaymentMethodType as fR, type PaymentStoreConfig as fS, type PaymentTransaction as fT, type PaymentTransactionProvider as fU, type PaymentTransactionStatus as fV, type PaymentTransactionType as fW, type ProductInventory as fX, type ProductLineItem as fY, type ProductLineItemSnapshot as fZ, type ProductQuoteItemInput as f_, type LeadResearchRunStatus as fa, type LeadScores as fb, type LeadValidationCheck as fc, type LeadValidationCheckStatus as fd, type LineMoneySnapshot as fe, type MailboxConnectionSecurity as ff, type MailboxPreset as fg, type MailboxStatus as fh, type MailboxSyncStatus as fi, type ManualTaskContinueBehavior as fj, type MediaRef as fk, type MediaResolution as fl, type NodeResult as fm, type OpportunitySource as fn, type OpportunityStage as fo, type OpportunityType as fp, type OrderCancellationReason as fq, type OrderCheckoutCompatibleItemInput as fr, type OrderFulfillmentStatus as fs, type OrderItem as ft, type OrderItemFulfillmentStatus as fu, type OrderItemSnapshot as fv, type OrderItemStatus as fw, type OrderPayment as fx, type OrderPaymentPromoCode as fy, type OrderPaymentProvider as fz, type PaymentMethod as g, type SuppressionStatus as g$, type ProductQuoteLineAvailability as g0, type ProductStatus as g1, type PromoCodeStatus as g2, type PromoCodeValidation as g3, type ProviderAvailability as g4, type ProviderStatus as g5, type ProviderTimelinePoint as g6, type ProviderWithTimeline as g7, type PurchaseLabelResult as g8, type QuoteLine as g9, type SocialOAuthCallbackStatus as gA, type SocialOAuthCredential as gB, type SocialOAuthDestinationOption as gC, type SocialProviderType as gD, type SocialPublicationCommentIntent as gE, type SocialPublicationCommentPriority as gF, type SocialPublicationCommentReply as gG, type SocialPublicationCommentReplyError as gH, type SocialPublicationCommentReplyStatus as gI, type SocialPublicationCommentStatus as gJ, type SocialPublicationContent as gK, type SocialPublicationStatus as gL, type SpecificDate as gM, type StoreMembership as gN, type StoreSubscription as gO, type StoreSubscriptionPayment as gP, type StoreSubscriptionProvider as gQ, type StoreSubscriptionProviderError as gR, type StoreSubscriptionProviderLifecycle as gS, type StoreSubscriptionProviderLifecycleStatus as gT, type StoreSubscriptionProviderOperation as gU, type StoreSubscriptionSource as gV, type StoreSubscriptionStatus as gW, type SubscriptionPrice as gX, type SuppressionReason as gY, type SuppressionScopeType as gZ, type SuppressionSource as g_, type RefundLine as ga, type RefundStatus as gb, type RefundType as gc, type ResearchContactListMember as gd, type ServiceCheckoutPart as ge, type ServiceDuration as gf, type ServiceLineItem as gg, type ServiceLineItemSnapshot as gh, type ServiceQuoteItem as gi, type ServiceQuoteItemInput as gj, type ServiceQuoteLine as gk, type ServiceQuoteLineAvailability as gl, type ServiceStatus as gm, type Shipment as gn, type ShipmentLabelStatus as go, type ShipmentLine as gp, type ShippingLine as gq, type ShippingMethod as gr, type ShippingStatus as gs, type ShippingWeightTier as gt, type Slot as gu, type SlotRange as gv, type SmtpImapMailboxProvider as gw, type SocialAnalyticsCapabilities as gx, type SocialDestinationMetadata as gy, type SocialEngagementCapabilities as gz, type ProductCheckoutItemInput as h, type PromoUsage$1 as h$, type SuppressionTargetType as h0, type SystemTemplateKey as h1, type TaxLine as h2, type TaxLineReversal as h3, type TaxonomyEntry as h4, type TaxonomyField as h5, type TaxonomyFieldQuery as h6, type TaxonomyQuery as h7, type TaxonomySchema as h8, type TaxonomySchemaType as h9, type Zone as hA, type AccountAddress as hB, type AccountApiToken as hC, type AccountLifecycle as hD, type ActionDevice as hE, type ActionLocation as hF, type ActionSession as hG, type BlockType as hH, type ContactChannelConsentStatus as hI, type ContactInfo as hJ, type ContactSessionToken$1 as hK, type ContactVerificationCode$1 as hL, type CreateProductVariantInput as hM, type FacebookPageContent as hN, type GeoLocationBlockProperties as hO, type GetAnalyticsHealthParams as hP, type GetAnalyticsParams as hQ, type GetDeliveryStatsParams as hR, type InstagramBusinessContent as hS, type IntervalPeriod as hT, type LoginAccountParams as hU, type LogoutParams as hV, type OrderCheckoutParams as hW, type OrderRefundError as hX, type PaymentTaxLine as hY, type PreviewEmailTemplateWarning as hZ, type PriceProvider as h_, type TaxonomyStatus as ha, type TiktokPrivacy as hb, type TimelinePoint as hc, type TrustedOrderCheckoutCompatibleItemInput as hd, type TrustedOrderCheckoutItemInput as he, type TrustedProductCheckoutItemInput as hf, type TrustedServiceCheckoutItemInput as hg, type ValidationError as hh, type WebhookEventSubscription as hi, type WorkflowAccountProfile as hj, type WorkflowAccountType as hk, type WorkflowDeployWebhookNode as hl, type WorkflowEdge as hm, type WorkflowGoogleDriveUploadNode as hn, type WorkflowHttpMethod as ho, type WorkflowHttpNode as hp, type WorkflowLoopNode as hq, type WorkflowNode as hr, type WorkflowStatus as hs, type WorkflowSwitchNode as ht, type WorkflowSwitchRule as hu, type WorkflowTransformNode as hv, type WorkflowTriggerNode as hw, type WorkingDay as hx, type WorkingHour as hy, type YoutubePrivacy as hz, type ServiceCheckoutItemInput as i, type SearchOrderServiceItemsParams as i0, type ServiceProviderInput as i1, type SetContactEmailParams as i2, type SetupAnalyticsParams as i3, type ShipmentLabelError as i4, type SocialActionAuthor as i5, type StoreEmails as i6, type StoreRole as i7, type SubscriptionAction as i8, type SubscriptionInterval as i9, type TiktokAccountContent as ia, type TimeRange as ib, type UpdateProductVariantInput as ic, type XAccountContent as id, type YoutubeChannelContent as ie, type ContactDetail as j, type Store as k, type Collection as l, type GetEntryParams as m, type GetEntriesParams as n, type PaginatedResponse as o, type GetFormParams as p, type SubmitFormParams as q, type FormSubmission as r, type GetTaxonomyParams as s, type GetTaxonomyChildrenParams as t, type GetProductParams as u, type GetProductsParams as v, type GetCurrentCartParams as w, type GetCartParams as x, type AddCartItemParams as y, type RemoveCartItemParams as z };
|
|
4329
|
+
export { type GetProviderParams as $, type Address as A, type Block as B, type Cart as C, type ClearCartParams as D, type EshopCartItem as E, type FormEntry as F, type GetCollectionParams as G, type CheckoutCartParams as H, type GetOrderParams as I, type Order as J, type GetOrdersParams as K, type Location as L, type Market as M, type DownloadDigitalAccessParams as N, type OrderCheckoutResult as O, type Price as P, type QuoteCartParams as Q, type RequestOptions as R, type Service as S, type Taxonomy as T, type UpdateCartParams as U, type DigitalAccessDownloadResponse as V, type GetServiceParams as W, type GetServicesParams as X, type FindServiceProvidersParams as Y, type ZoneLocation as Z, type GetAvailabilityParams as _, type CollectionEntry as a, type UpdateMediaParams as a$, type GetProvidersParams as a0, type GetContactListParams as a1, type ContactList as a2, type FindContactListsParams as a3, type SubscribeContactListParams as a4, type ContactListSubscribeResponse as a5, type ContactListAccessParams as a6, type ContactListAccessResponse as a7, type ContactListContentAccessParams as a8, type ContactListContentAccessResponse as a9, type UpdateBuildHookParams as aA, type DeleteBuildHookParams as aB, type TestWebhookParams as aC, type ListWebhooksParams as aD, type Webhook as aE, type CreateWebhookParams as aF, type UpdateWebhookParams as aG, type DeleteWebhookParams as aH, type StoreRuntimeConfig as aI, type FindStoreMediaParams as aJ, type Media as aK, type CreateLocationParams as aL, type UpdateLocationParams as aM, type DeleteLocationParams as aN, type CreateMarketParams as aO, type UpdateMarketParams as aP, type DeleteMarketParams as aQ, type ListPaymentProvidersParams as aR, type PaymentProvider as aS, type RefreshPaymentProvidersParams as aT, type ConnectStripePaymentProviderParams as aU, type StripePaymentProviderConnectResponse as aV, type DeletePaymentProviderParams as aW, type GetMediaParams as aX, type UploadStoreMediaParams as aY, type DeleteStoreMediaParams as aZ, type GetStoreMediaParams as a_, type ProductVariant as aa, type OrderCheckoutItemInput as ab, type FormField as ac, type Contact$1 as ad, type UpdateAccountContactParams as ae, type AccountUpdateResponse as af, type DeleteAccountParams as ag, type GetMeParams as ah, type Account as ai, type SearchAccountsParams as aj, type MagicLinkVerifyParams as ak, type AuthToken as al, type CreateStoreParams as am, type UpdateStoreParams as an, type DeleteStoreParams as ao, type GetStoreParams as ap, type GetStoresParams as aq, type GetSubscriptionPlansParams as ar, type SubscriptionPlan as as, type SubscribeParams as at, type CreatePortalSessionParams as au, type AddMemberParams as av, type RemoveMemberParams as aw, type ListBuildHooksParams as ax, type BuildHook as ay, type CreateBuildHookParams as az, type Form as b, type CreateEmailTemplateParams as b$, type TrackEmailOpenParams as b0, type TriggerNotificationParams as b1, type CreateMailboxParams as b2, type Mailbox as b3, type UpdateMailboxParams as b4, type GetMailboxParams as b5, type TestMailboxParams as b6, type TestMailboxResult as b7, type PrepareMailboxParams as b8, type FindMailboxesParams as b9, type ClassifySocialPublicationCommentsParams as bA, type SocialPublicationCommentClassificationResult as bB, type ReplySocialPublicationCommentParams as bC, type SocialPublicationCommentReplyResponse as bD, type GetSocialPublicationMetricsParams as bE, type SocialPublicationMetricSnapshot as bF, type SyncSocialPublicationMetricsParams as bG, type SyncSocialEngagementParams as bH, type SocialPublicationEngagementSyncResult as bI, type CreateCollectionParams as bJ, type UpdateCollectionParams as bK, type DeleteCollectionParams as bL, type GetCollectionsParams as bM, type CreateEntryParams as bN, type UpdateEntryParams as bO, type DeleteEntryParams as bP, type CreateFormParams as bQ, type UpdateFormParams as bR, type DeleteFormParams as bS, type GetFormsParams as bT, type GetFormSubmissionsParams as bU, type GetFormSubmissionParams as bV, type UpdateFormSubmissionParams as bW, type CreateTaxonomyParams as bX, type UpdateTaxonomyParams as bY, type DeleteTaxonomyParams as bZ, type GetTaxonomiesParams as b_, type GetSocialCapabilitiesParams as ba, type SocialProviderCapability as bb, type ListSocialAccountsParams as bc, type SocialAccount as bd, type ConnectSocialAccountParams as be, type SocialConnectResponse as bf, type GetSocialOAuthAttemptParams as bg, type SocialOAuthCallbackResponse as bh, type SelectSocialDestinationParams as bi, type DeleteSocialAccountParams as bj, type CreateSocialPublicationParams as bk, type SocialPublicationMutationResponse as bl, type UpdateSocialPublicationParams as bm, type GetSocialPublicationParams as bn, type SocialPublication as bo, type FindSocialPublicationsParams as bp, type ValidateSocialPublicationParams as bq, type SocialPublicationValidation as br, type ScheduleSocialPublicationParams as bs, type CancelSocialPublicationParams as bt, type GetSocialPublicationCommentsParams as bu, type SocialPublicationComment as bv, type SyncSocialPublicationCommentsParams as bw, type GetSocialPublicationCommentThreadParams as bx, type SyncSocialPublicationCommentThreadParams as by, type FindSocialPublicationCommentsParams as bz, type Product as c, type FindCampaignsParams as c$, type EmailTemplate as c0, type UpdateEmailTemplateParams as c1, type DeleteEmailTemplateParams as c2, type GetEmailTemplateParams as c3, type GetEmailTemplatesParams as c4, type PreviewEmailTemplateParams as c5, type PreviewEmailTemplateResponse as c6, type CreateProductParams as c7, type UpdateProductParams as c8, type DeleteProductParams as c9, type GetPromoCodeParams as cA, type GetPromoCodesParams as cB, type CreateContactParams as cC, type Contact as cD, type GetContactParams as cE, type FindContactsParams as cF, type UpdateContactParams as cG, type MergeContactsParams as cH, type ImportContactsParams as cI, type ImportContactsResult as cJ, type CreateContactListParams as cK, type UpdateContactListParams as cL, type ImportContactsIntoContactListParams as cM, type ImportContactsIntoContactListResult as cN, type ImportContactListPreviewParams as cO, type ImportContactsPreviewResult as cP, type AddContactListContactParams as cQ, type ContactListMember as cR, type UpdateContactListContactParams as cS, type RemoveContactListContactParams as cT, type FindContactListContactsParams as cU, type Action as cV, type FindActionsParams as cW, type CreateCampaignParams as cX, type Campaign as cY, type UpdateCampaignParams as cZ, type GetCampaignParams as c_, type UpdateOrderParams as ca, type GetQuoteParams as cb, type ProcessOrderRefundParams as cc, type ProcessOrderRefundResponse as cd, type GetShippingRatesParams as ce, type ShippingRate as cf, type ShipParams as cg, type ShipResult as ch, type RefundShippingLabelParams as ci, type ShippingLabelRefund as cj, type CreateCartParams as ck, type FindCartsParams as cl, type CreateServiceParams as cm, type UpdateServiceParams as cn, type DeleteServiceParams as co, type ServiceProvider as cp, type CreateServiceProviderParams as cq, type UpdateServiceProviderParams as cr, type DeleteServiceProviderParams as cs, type CreateProviderParams as ct, type UpdateProviderParams as cu, type DeleteProviderParams as cv, type CreatePromoCodeParams as cw, type PromoCode as cx, type UpdatePromoCodeParams as cy, type DeletePromoCodeParams as cz, type Provider as d, type CampaignEnrollmentImportResult$1 as d$, type LaunchCampaignParams as d0, type DuplicateCampaignParams as d1, type GetCampaignLaunchReadinessParams as d2, type CampaignLaunchReadiness as d3, type ImportCampaignEnrollmentsParams as d4, type CampaignEnrollmentImportResult as d5, type GenerateOutreachPersonalizedDraftsParams as d6, type FindCampaignEnrollmentsParams as d7, type CampaignEnrollment as d8, type GetCampaignEnrollmentConversationParams as d9, type LeadEmailValidationResult as dA, type CreateWorkflowParams as dB, type Workflow as dC, type UpdateWorkflowParams as dD, type DeleteWorkflowParams as dE, type GetWorkflowParams as dF, type GetWorkflowsParams as dG, type TriggerWorkflowParams as dH, type WorkflowExecution as dI, type GetWorkflowExecutionsParams as dJ, type GetWorkflowExecutionParams as dK, type GetWorkflowAccountsParams as dL, type WorkflowAccount as dM, type GetWorkflowAccountConnectUrlParams as dN, type WorkflowAccountConnectUrl as dO, type DeleteWorkflowAccountParams as dP, type Access as dQ, type AccountToken as dR, type ActionContext as dS, type ActionData as dT, type ApiResponse as dU, type AvailabilitySlot as dV, type BlockSchema as dW, type BlockSchemaProperties as dX, type BlockSchemaType as dY, type BookingOrderItemStatus as dZ, type BuildHookType as d_, type CampaignEnrollmentConversationResponse as da, type UpdateCampaignEnrollmentParams as db, type UpdateCampaignEnrollmentDraftParams as dc, type UpdateCampaignEnrollmentStepExecutionParams as dd, type ReplyCampaignEnrollmentParams as de, type StopCampaignEnrollmentParams as df, type FindCampaignMessagesParams as dg, type CampaignMessage as dh, type UpdateCampaignMessageParams as di, type CreateSuppressionParams as dj, type Suppression as dk, type UpdateSuppressionParams as dl, type GetSuppressionParams as dm, type FindSuppressionsParams as dn, type CreateLeadResearchRunParams as dp, type LeadResearchRun as dq, type FindLeadResearchRunsParams as dr, type GetLeadResearchRunParams as ds, type UpdateLeadResearchRunParams as dt, type CancelLeadResearchRunParams as du, type SendLeadResearchMessageParams as dv, type SendLeadResearchMessageResult as dw, type FindLeadResearchMessagesParams as dx, type LeadResearchMessage as dy, type ValidateLeadEmailParams as dz, type AvailabilityResponse as e, type FulfillmentOrderRequestStatus as e$, type CampaignEnrollmentImportSource as e0, type CampaignEnrollmentStatus as e1, type CampaignManualTaskOutcome as e2, type CampaignMessageCopySource as e3, type CampaignMessageDirection as e4, type CampaignMessageStatus as e5, type CampaignMessageType as e6, type CampaignRoute as e7, type CampaignStatus as e8, type CartOrigin as e9, type CustomsItem as eA, type DaySlots as eB, type DigitalAccessGrant as eC, type DigitalAccessGrantStatus as eD, type DigitalAsset as eE, type DigitalAssetStatus as eF, type DigitalAssetType as eG, type DigitalDeliveryPolicy as eH, type Discount as eI, type DiscountAllocation as eJ, type EmailTemplateStatus as eK, type EmailTemplateVariable as eL, type EntryBlockQuery as eM, type EntryStatus as eN, type EshopItem as eO, type EshopQuoteItem as eP, type EshopStoreState as eQ, type Event as eR, type EventAction as eS, type ExecutionStatus as eT, type FieldOperation as eU, type FormFieldType as eV, type FormSchema as eW, type FormSchemaType as eX, type FormStatus as eY, type FulfillmentOrder as eZ, type FulfillmentOrderLine as e_, type CartStatus as ea, type ChannelMessage as eb, type ChannelType as ec, type CheckoutPaymentAction as ed, type CollectionStatus as ee, type Condition as ef, type ConditionValue as eg, type ContactChannel as eh, type ContactListContentAccess as ei, type ContactListContentAccessStatus as ej, type ContactListContentAccessTarget as ek, type ContactListMembership as el, type ContactListMembershipPayment as em, type ContactListMembershipProvider as en, type ContactListMembershipProviderCancellation as eo, type ContactListMembershipProviderCancellationError as ep, type ContactListMembershipProviderCancellationStatus as eq, type ContactListMembershipStatus as er, type ContactListPlan as es, type ContactListPlanStatus as et, type ContactListSource as eu, type ContactListStatus as ev, type ContactListType as ew, type ContactStatus as ex, type Coordinates as ey, type CustomsDeclaration as ez, type OrderQuote as f, type OutreachThreadMode as f$, type FulfillmentOrderStatus as f0, type GalleryItem as f1, type GeoLocation as f2, type GeoLocationBlock as f3, type HistoryEntry as f4, type ImportContactListRowResult as f5, type ImportContactRowError as f6, type ImportContactRowInput as f7, type ImportContactRowResult as f8, type ImportContactsPreviewParams as f9, type OpportunitySource as fA, type OpportunityStage as fB, type OpportunityType as fC, type OrderCancellationReason as fD, type OrderCheckoutCompatibleItemInput as fE, type OrderFulfillmentStatus as fF, type OrderItem as fG, type OrderItemFulfillmentStatus as fH, type OrderItemSnapshot as fI, type OrderItemStatus as fJ, type OrderPayment as fK, type OrderPaymentPromoCode as fL, type OrderPaymentProvider as fM, type OrderPaymentRefund as fN, type OrderPaymentStatus as fO, type OrderPaymentSummaryStatus as fP, type OrderPaymentTax as fQ, type OrderPaymentTaxLine as fR, type OrderQuoteCompatibleItemInput as fS, type OrderQuoteItemInput as fT, type OrderShipping as fU, type OrderStatus as fV, type OutreachPersonalizationCounters as fW, type OutreachPersonalizationState as fX, type OutreachPersonalizationStatus as fY, type OutreachStep as fZ, type OutreachStepType as f_, type ImportFieldMapping as fa, type ImportPreviewRow as fb, type InstagramPlacement as fc, type InventoryLevel as fd, type Language as fe, type LeadEmailClassification as ff, type LeadInsight as fg, type LeadResearchMessageRole as fh, type LeadResearchRunStatus as fi, type LeadScores as fj, type LeadValidationCheck as fk, type LeadValidationCheckStatus as fl, type LineMoneySnapshot as fm, type MailboxConnectionSecurity as fn, type MailboxPreset as fo, type MailboxStatus as fp, type MailboxSyncStatus as fq, type ManualTaskContinueBehavior as fr, type MediaRef as fs, type MediaResolution as ft, type MerchantCredit as fu, type MerchantCreditReason as fv, type MerchantCreditStatus as fw, type MerchantRecovery as fx, type MerchantRecoveryStatus as fy, type NodeResult as fz, type PaymentMethod as g, type SocialPublicationCommentReplyError as g$, type Parcel as g0, type PaymentCaptureMethod as g1, PaymentMethodType as g2, type PaymentStoreConfig as g3, type PaymentTransaction as g4, type PaymentTransactionProvider as g5, type PaymentTransactionStatus as g6, type PaymentTransactionType as g7, type ProductInventory as g8, type ProductLineItem as g9, type Shipment as gA, type ShipmentLine as gB, type ShippingLabelAdjustment as gC, type ShippingLabelAdjustmentStatus as gD, type ShippingLabelProviderPurchase as gE, type ShippingLabelProviderRefund as gF, type ShippingLabelPurchase as gG, type ShippingLabelPurchaseError as gH, type ShippingLabelPurchaseStatus as gI, type ShippingLabelRefundStatus as gJ, type ShippingLine as gK, type ShippingMethod as gL, type ShippingStatus as gM, type ShippingWeightTier as gN, type Slot as gO, type SlotRange as gP, type SmtpImapMailboxProvider as gQ, type SocialAnalyticsCapabilities as gR, type SocialDestinationMetadata as gS, type SocialEngagementCapabilities as gT, type SocialOAuthCallbackStatus as gU, type SocialOAuthCredential as gV, type SocialOAuthDestinationOption as gW, type SocialProviderType as gX, type SocialPublicationCommentIntent as gY, type SocialPublicationCommentPriority as gZ, type SocialPublicationCommentReply as g_, type ProductLineItemSnapshot as ga, type ProductQuoteItemInput as gb, type ProductQuoteLine as gc, type ProductQuoteLineAvailability as gd, type ProductStatus as ge, type PromoCodeStatus as gf, type PromoCodeValidation as gg, type ProviderAvailability as gh, type ProviderStatus as gi, type ProviderTimelinePoint as gj, type ProviderWithTimeline as gk, type PurchaseLabelResult as gl, type QuoteLine as gm, type RefundLine as gn, type RefundStatus as go, type RefundType as gp, type ResearchContactListMember as gq, type ServiceCheckoutPart as gr, type ServiceDuration as gs, type ServiceLineItem as gt, type ServiceLineItemSnapshot as gu, type ServiceQuoteItem as gv, type ServiceQuoteItemInput as gw, type ServiceQuoteLine as gx, type ServiceQuoteLineAvailability as gy, type ServiceStatus as gz, type ProductCheckoutItemInput as h, type BlockType as h$, type SocialPublicationCommentReplyStatus as h0, type SocialPublicationCommentStatus as h1, type SocialPublicationContent as h2, type SocialPublicationStatus as h3, type SpecificDate as h4, type StoreMembership as h5, type StoreSubscription as h6, type StoreSubscriptionPayment as h7, type StoreSubscriptionProvider as h8, type StoreSubscriptionProviderError as h9, type TrustedServiceCheckoutItemInput as hA, type ValidationError as hB, type WebhookEventSubscription as hC, type WorkflowAccountProfile as hD, type WorkflowAccountType as hE, type WorkflowDeployWebhookNode as hF, type WorkflowEdge as hG, type WorkflowGoogleDriveUploadNode as hH, type WorkflowHttpMethod as hI, type WorkflowHttpNode as hJ, type WorkflowLoopNode as hK, type WorkflowNode as hL, type WorkflowStatus as hM, type WorkflowSwitchNode as hN, type WorkflowSwitchRule as hO, type WorkflowTransformNode as hP, type WorkflowTriggerNode as hQ, type WorkingDay as hR, type WorkingHour as hS, type YoutubePrivacy as hT, type Zone as hU, type AccountAddress as hV, type AccountApiToken as hW, type AccountLifecycle as hX, type ActionDevice as hY, type ActionLocation as hZ, type ActionSession as h_, type StoreSubscriptionProviderLifecycle as ha, type StoreSubscriptionProviderLifecycleStatus as hb, type StoreSubscriptionProviderOperation as hc, type StoreSubscriptionSource as hd, type StoreSubscriptionStatus as he, type SubscriptionPrice as hf, type SuppressionReason as hg, type SuppressionScopeType as hh, type SuppressionSource as hi, type SuppressionStatus as hj, type SuppressionTargetType as hk, type SystemTemplateKey as hl, type TaxLine as hm, type TaxLineReversal as hn, type TaxonomyEntry as ho, type TaxonomyField as hp, type TaxonomyFieldQuery as hq, type TaxonomyQuery as hr, type TaxonomySchema as hs, type TaxonomySchemaType as ht, type TaxonomyStatus as hu, type TiktokPrivacy as hv, type TimelinePoint as hw, type TrustedOrderCheckoutCompatibleItemInput as hx, type TrustedOrderCheckoutItemInput as hy, type TrustedProductCheckoutItemInput as hz, type ServiceCheckoutItemInput as i, type ContactChannelConsentStatus as i0, type ContactInfo as i1, type ContactSessionToken$1 as i2, type ContactVerificationCode$1 as i3, type CreateProductVariantInput as i4, type FacebookPageContent as i5, type GeoLocationBlockProperties as i6, type GetAnalyticsHealthParams as i7, type GetAnalyticsParams as i8, type GetDeliveryStatsParams as i9, type InstagramBusinessContent as ia, type IntervalPeriod as ib, type LoginAccountParams as ic, type LogoutParams as id, type OrderCheckoutParams as ie, type OrderRefundError as ig, type PaymentTaxLine as ih, type PreviewEmailTemplateWarning as ii, type PriceProvider as ij, type PromoUsage$1 as ik, type SearchOrderServiceItemsParams as il, type ServiceProviderInput as im, type SetContactEmailParams as io, type SetupAnalyticsParams as ip, type SocialActionAuthor as iq, type StoreEmails as ir, type StoreRole as is, type SubscriptionAction as it, type SubscriptionInterval as iu, type TiktokAccountContent as iv, type TimeRange as iw, type UpdateProductVariantInput as ix, type XAccountContent as iy, type YoutubeChannelContent as iz, type ContactDetail as j, type Store as k, type Collection as l, type GetEntryParams as m, type GetEntriesParams as n, type PaginatedResponse as o, type GetFormParams as p, type SubmitFormParams as q, type FormSubmission as r, type GetTaxonomyParams as s, type GetTaxonomyChildrenParams as t, type GetProductParams as u, type GetProductsParams as v, type GetCurrentCartParams as w, type GetCartParams as x, type AddCartItemParams as y, type RemoveCartItemParams as z };
|