arky-sdk 0.9.11 → 0.9.12

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.
@@ -1052,9 +1052,12 @@ interface StoreSubscription {
1052
1052
  }
1053
1053
  type ContactListMembershipProvider = {
1054
1054
  type: "stripe";
1055
- stripe_customer_id: string;
1056
- subscription_id?: string;
1057
- price_id?: string;
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 ShipmentLabelStatus = "requested" | "processing" | "succeeded" | "failed" | "unknown";
2307
- type ShipmentLabelError = {
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
- label_status: ShipmentLabelStatus;
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;
@@ -3481,6 +3601,8 @@ interface CreateContactListParams {
3481
3601
  name?: string;
3482
3602
  description?: string | null;
3483
3603
  type?: ContactListType;
3604
+ plans?: ContactListPlan[];
3605
+ content_access?: ContactListContentAccess[];
3484
3606
  source?: ContactListSource;
3485
3607
  }
3486
3608
  interface UpdateContactListParams {
@@ -3491,6 +3613,8 @@ interface UpdateContactListParams {
3491
3613
  description?: string | null;
3492
3614
  status?: ContactListStatus;
3493
3615
  type?: ContactListType;
3616
+ plans?: ContactListPlan[];
3617
+ content_access?: ContactListContentAccess[];
3494
3618
  }
3495
3619
  interface FindContactListsParams {
3496
3620
  store_id?: string;
@@ -3636,11 +3760,17 @@ interface SubscribeContactListParams {
3636
3760
  success_url?: string;
3637
3761
  cancel_url?: string;
3638
3762
  confirm_url?: string;
3763
+ confirmation_token_id?: string;
3764
+ return_url?: string;
3639
3765
  }
3640
3766
  interface ContactListAccessParams {
3641
3767
  store_id?: string;
3642
3768
  id: string;
3643
3769
  }
3770
+ interface ContactListContentAccessParams {
3771
+ store_id?: string;
3772
+ target: ContactListContentAccessTarget;
3773
+ }
3644
3774
  interface CreateMailboxParams {
3645
3775
  store_id?: string;
3646
3776
  key: string;
@@ -4113,6 +4243,10 @@ interface ShipParams {
4113
4243
  fulfillment_order_id?: string | null;
4114
4244
  lines: ShipmentLine[];
4115
4245
  }
4246
+ interface RefundShippingLabelParams {
4247
+ order_id: string;
4248
+ shipment_id: string;
4249
+ }
4116
4250
  interface AuthToken {
4117
4251
  id: string;
4118
4252
  access_token: string;
@@ -4149,7 +4283,6 @@ interface Contact {
4149
4283
  status: ContactStatus;
4150
4284
  channels: ContactChannel[];
4151
4285
  promo_usage: PromoUsage[];
4152
- lists: ContactListMembership[];
4153
4286
  taxonomies: TaxonomyEntry[];
4154
4287
  auth_tokens: ContactSessionToken[];
4155
4288
  verification_codes: ContactVerificationCode[];
@@ -4201,4 +4334,4 @@ interface MergeContactsParams {
4201
4334
  store_id?: string;
4202
4335
  }
4203
4336
 
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 };
4337
+ 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 BuildHookType 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 ConnectWorkflowAccountParams as dP, type DeleteWorkflowAccountParams as dQ, type Access as dR, type AccountToken as dS, type ActionContext as dT, type ActionData as dU, type ApiResponse as dV, type AvailabilitySlot as dW, type BlockSchema as dX, type BlockSchemaProperties as dY, type BlockSchemaType as dZ, type BookingOrderItemStatus 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 FulfillmentOrderLine as e$, type CampaignEnrollmentImportResult$1 as e0, type CampaignEnrollmentImportSource as e1, type CampaignEnrollmentStatus as e2, type CampaignManualTaskOutcome as e3, type CampaignMessageCopySource as e4, type CampaignMessageDirection as e5, type CampaignMessageStatus as e6, type CampaignMessageType as e7, type CampaignRoute as e8, type CampaignStatus as e9, type CustomsDeclaration as eA, type CustomsItem as eB, type DaySlots as eC, type DigitalAccessGrant as eD, type DigitalAccessGrantStatus as eE, type DigitalAsset as eF, type DigitalAssetStatus as eG, type DigitalAssetType as eH, type DigitalDeliveryPolicy as eI, type Discount as eJ, type DiscountAllocation as eK, type EmailTemplateStatus as eL, type EmailTemplateVariable as eM, type EntryBlockQuery as eN, type EntryStatus as eO, type EshopItem as eP, type EshopQuoteItem as eQ, type EshopStoreState as eR, type Event as eS, type EventAction as eT, type ExecutionStatus as eU, type FieldOperation as eV, type FormFieldType as eW, type FormSchema as eX, type FormSchemaType as eY, type FormStatus as eZ, type FulfillmentOrder as e_, type CartOrigin as ea, type CartStatus as eb, type ChannelMessage as ec, type ChannelType as ed, type CheckoutPaymentAction as ee, type CollectionStatus as ef, type Condition as eg, type ConditionValue as eh, type ContactChannel as ei, type ContactListContentAccess as ej, type ContactListContentAccessStatus as ek, type ContactListContentAccessTarget as el, type ContactListMembership as em, type ContactListMembershipPayment as en, type ContactListMembershipProvider as eo, type ContactListMembershipProviderCancellation as ep, type ContactListMembershipProviderCancellationError as eq, type ContactListMembershipProviderCancellationStatus as er, type ContactListMembershipStatus as es, type ContactListPlan as et, type ContactListPlanStatus as eu, type ContactListSource as ev, type ContactListStatus as ew, type ContactListType as ex, type ContactStatus as ey, type Coordinates as ez, type OrderQuote as f, type OutreachStepType as f$, type FulfillmentOrderRequestStatus as f0, type FulfillmentOrderStatus as f1, type GalleryItem as f2, type GeoLocation as f3, type GeoLocationBlock as f4, type HistoryEntry as f5, type ImportContactListRowResult as f6, type ImportContactRowError as f7, type ImportContactRowInput as f8, type ImportContactRowResult as f9, type NodeResult as fA, type OpportunitySource as fB, type OpportunityStage as fC, type OpportunityType as fD, type OrderCancellationReason as fE, type OrderCheckoutCompatibleItemInput as fF, type OrderFulfillmentStatus as fG, type OrderItem as fH, type OrderItemFulfillmentStatus as fI, type OrderItemSnapshot as fJ, type OrderItemStatus as fK, type OrderPayment as fL, type OrderPaymentPromoCode as fM, type OrderPaymentProvider as fN, type OrderPaymentRefund as fO, type OrderPaymentStatus as fP, type OrderPaymentSummaryStatus as fQ, type OrderPaymentTax as fR, type OrderPaymentTaxLine as fS, type OrderQuoteCompatibleItemInput as fT, type OrderQuoteItemInput as fU, type OrderShipping as fV, type OrderStatus as fW, type OutreachPersonalizationCounters as fX, type OutreachPersonalizationState as fY, type OutreachPersonalizationStatus as fZ, type OutreachStep as f_, type ImportContactsPreviewParams as fa, type ImportFieldMapping as fb, type ImportPreviewRow as fc, type InstagramPlacement as fd, type InventoryLevel as fe, type Language as ff, type LeadEmailClassification as fg, type LeadInsight as fh, type LeadResearchMessageRole as fi, type LeadResearchRunStatus as fj, type LeadScores as fk, type LeadValidationCheck as fl, type LeadValidationCheckStatus as fm, type LineMoneySnapshot as fn, type MailboxConnectionSecurity as fo, type MailboxPreset as fp, type MailboxStatus as fq, type MailboxSyncStatus as fr, type ManualTaskContinueBehavior as fs, type MediaRef as ft, type MediaResolution as fu, type MerchantCredit as fv, type MerchantCreditReason as fw, type MerchantCreditStatus as fx, type MerchantRecovery as fy, type MerchantRecoveryStatus as fz, type PaymentMethod as g, type SocialPublicationCommentReply as g$, type OutreachThreadMode as g0, type Parcel as g1, type PaymentCaptureMethod as g2, PaymentMethodType as g3, type PaymentStoreConfig as g4, type PaymentTransaction as g5, type PaymentTransactionProvider as g6, type PaymentTransactionStatus as g7, type PaymentTransactionType as g8, type ProductInventory as g9, type ServiceStatus as gA, type Shipment as gB, type ShipmentLine as gC, type ShippingLabelAdjustment as gD, type ShippingLabelAdjustmentStatus as gE, type ShippingLabelProviderPurchase as gF, type ShippingLabelProviderRefund as gG, type ShippingLabelPurchase as gH, type ShippingLabelPurchaseError as gI, type ShippingLabelPurchaseStatus as gJ, type ShippingLabelRefundStatus as gK, type ShippingLine as gL, type ShippingMethod as gM, type ShippingStatus as gN, type ShippingWeightTier as gO, type Slot as gP, type SlotRange as gQ, type SmtpImapMailboxProvider as gR, type SocialAnalyticsCapabilities as gS, type SocialDestinationMetadata as gT, type SocialEngagementCapabilities as gU, type SocialOAuthCallbackStatus as gV, type SocialOAuthCredential as gW, type SocialOAuthDestinationOption as gX, type SocialProviderType as gY, type SocialPublicationCommentIntent as gZ, type SocialPublicationCommentPriority as g_, type ProductLineItem as ga, type ProductLineItemSnapshot as gb, type ProductQuoteItemInput as gc, type ProductQuoteLine as gd, type ProductQuoteLineAvailability as ge, type ProductStatus as gf, type PromoCodeStatus as gg, type PromoCodeValidation as gh, type ProviderAvailability as gi, type ProviderStatus as gj, type ProviderTimelinePoint as gk, type ProviderWithTimeline as gl, type PurchaseLabelResult as gm, type QuoteLine as gn, type RefundLine as go, type RefundStatus as gp, type RefundType as gq, type ResearchContactListMember as gr, type ServiceCheckoutPart as gs, type ServiceDuration as gt, type ServiceLineItem as gu, type ServiceLineItemSnapshot as gv, type ServiceQuoteItem as gw, type ServiceQuoteItemInput as gx, type ServiceQuoteLine as gy, type ServiceQuoteLineAvailability as gz, type ProductCheckoutItemInput as h, type ActionSession as h$, type SocialPublicationCommentReplyError as h0, type SocialPublicationCommentReplyStatus as h1, type SocialPublicationCommentStatus as h2, type SocialPublicationContent as h3, type SocialPublicationStatus as h4, type SpecificDate as h5, type StoreMembership as h6, type StoreSubscription as h7, type StoreSubscriptionPayment as h8, type StoreSubscriptionProvider as h9, type TrustedProductCheckoutItemInput as hA, type TrustedServiceCheckoutItemInput as hB, type ValidationError as hC, type WebhookEventSubscription as hD, type WorkflowAccountProfile as hE, type WorkflowAccountType as hF, type WorkflowDeployWebhookNode as hG, type WorkflowEdge as hH, type WorkflowGoogleDriveUploadNode as hI, type WorkflowHttpMethod as hJ, type WorkflowHttpNode as hK, type WorkflowLoopNode as hL, type WorkflowNode as hM, type WorkflowStatus as hN, type WorkflowSwitchNode as hO, type WorkflowSwitchRule as hP, type WorkflowTransformNode as hQ, type WorkflowTriggerNode as hR, type WorkingDay as hS, type WorkingHour as hT, type YoutubePrivacy as hU, type Zone as hV, type AccountAddress as hW, type AccountApiToken as hX, type AccountLifecycle as hY, type ActionDevice as hZ, type ActionLocation as h_, type StoreSubscriptionProviderError as ha, type StoreSubscriptionProviderLifecycle as hb, type StoreSubscriptionProviderLifecycleStatus as hc, type StoreSubscriptionProviderOperation as hd, type StoreSubscriptionSource as he, type StoreSubscriptionStatus as hf, type SubscriptionPrice as hg, type SuppressionReason as hh, type SuppressionScopeType as hi, type SuppressionSource as hj, type SuppressionStatus as hk, type SuppressionTargetType as hl, type SystemTemplateKey as hm, type TaxLine as hn, type TaxLineReversal as ho, type TaxonomyEntry as hp, type TaxonomyField as hq, type TaxonomyFieldQuery as hr, type TaxonomyQuery as hs, type TaxonomySchema as ht, type TaxonomySchemaType as hu, type TaxonomyStatus as hv, type TiktokPrivacy as hw, type TimelinePoint as hx, type TrustedOrderCheckoutCompatibleItemInput as hy, type TrustedOrderCheckoutItemInput as hz, type ServiceCheckoutItemInput as i, type BlockType as i0, type ContactChannelConsentStatus as i1, type ContactInfo as i2, type ContactSessionToken$1 as i3, type ContactVerificationCode$1 as i4, type CreateProductVariantInput as i5, type FacebookPageContent as i6, type GeoLocationBlockProperties as i7, type GetAnalyticsHealthParams as i8, type GetAnalyticsParams as i9, type YoutubeChannelContent as iA, type GetDeliveryStatsParams as ia, type InstagramBusinessContent as ib, type IntervalPeriod as ic, type LoginAccountParams as id, type LogoutParams as ie, type OrderCheckoutParams as ig, type OrderRefundError as ih, type PaymentTaxLine as ii, type PreviewEmailTemplateWarning as ij, type PriceProvider as ik, type PromoUsage$1 as il, type SearchOrderServiceItemsParams as im, type ServiceProviderInput as io, type SetContactEmailParams as ip, type SetupAnalyticsParams as iq, type SocialActionAuthor as ir, type StoreEmails as is, type StoreRole as it, type SubscriptionAction as iu, type SubscriptionInterval as iv, type TiktokAccountContent as iw, type TimeRange as ix, type UpdateProductVariantInput as iy, type XAccountContent 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 };
@@ -1,4 +1,4 @@
1
- import { fx as OrderPayment, f5 as InventoryLevel } from './api-DJI3S6XA.cjs';
1
+ import { fL as OrderPayment, fe as InventoryLevel } from './api-D4lMmvF0.cjs';
2
2
 
3
3
  type AnyPayment = Pick<OrderPayment, 'total' | 'currency'>;
4
4
  declare function convertToMajor(minorAmount: number, currency: string): number;
@@ -1,4 +1,4 @@
1
- import { fx as OrderPayment, f5 as InventoryLevel } from './api-DJI3S6XA.js';
1
+ import { fL as OrderPayment, fe as InventoryLevel } from './api-D4lMmvF0.js';
2
2
 
3
3
  type AnyPayment = Pick<OrderPayment, 'total' | 'currency'>;
4
4
  declare function convertToMajor(minorAmount: number, currency: string): number;
package/dist/index.cjs CHANGED
@@ -466,6 +466,14 @@ var createStorefrontApi = (apiConfig, updateContactSession) => {
466
466
  options
467
467
  );
468
468
  },
469
+ checkContentAccess(params, options) {
470
+ const { store_id, ...payload } = params;
471
+ return apiConfig.httpClient.post(
472
+ `${base(store_id)}/contact-lists/access`,
473
+ payload,
474
+ options
475
+ );
476
+ },
469
477
  unsubscribe(token, options) {
470
478
  return apiConfig.httpClient.post(
471
479
  `${base()}/contact-lists/unsubscribe`,
@@ -2254,6 +2262,52 @@ function createStorefrontSupportApi(config) {
2254
2262
  function createAdminSupportApi(config) {
2255
2263
  const { httpClient } = config;
2256
2264
  return {
2265
+ channel: {
2266
+ async create(params, opts) {
2267
+ return httpClient.post(
2268
+ `/v1/stores/${params.store_id}/support/channels`,
2269
+ params,
2270
+ opts
2271
+ );
2272
+ },
2273
+ async get(params, opts) {
2274
+ return httpClient.get(
2275
+ `/v1/stores/${params.store_id}/support/channels/${params.id}?store_id=${params.store_id}`,
2276
+ opts
2277
+ );
2278
+ },
2279
+ async find(params, opts) {
2280
+ const qs = new URLSearchParams({ store_id: params.store_id });
2281
+ if (params.status) qs.set("status", params.status);
2282
+ if (params.channel_type) qs.set("channel_type", params.channel_type);
2283
+ if (params.limit) qs.set("limit", String(params.limit));
2284
+ if (params.cursor) qs.set("cursor", params.cursor);
2285
+ return httpClient.get(
2286
+ `/v1/stores/${params.store_id}/support/channels?${qs}`,
2287
+ opts
2288
+ );
2289
+ },
2290
+ async update(params, opts) {
2291
+ return httpClient.put(
2292
+ `/v1/stores/${params.store_id}/support/channels/${params.id}`,
2293
+ params,
2294
+ opts
2295
+ );
2296
+ },
2297
+ async delete(params, opts) {
2298
+ return httpClient.delete(
2299
+ `/v1/stores/${params.store_id}/support/channels/${params.id}?store_id=${params.store_id}`,
2300
+ opts
2301
+ );
2302
+ },
2303
+ async receiveMessage(params, opts) {
2304
+ return httpClient.post(
2305
+ `/v1/stores/${params.store_id}/support/channels/${params.channel_id}/messages`,
2306
+ params,
2307
+ opts
2308
+ );
2309
+ }
2310
+ },
2257
2311
  agent: {
2258
2312
  async create(params, opts) {
2259
2313
  return httpClient.post(
@@ -2297,6 +2351,8 @@ function createAdminSupportApi(config) {
2297
2351
  const qs = new URLSearchParams({ store_id: params.store_id });
2298
2352
  if (params.status) qs.set("status", params.status);
2299
2353
  if (params.agent_id) qs.set("agent_id", params.agent_id);
2354
+ if (params.channel_id) qs.set("channel_id", params.channel_id);
2355
+ if (params.channel_type) qs.set("channel_type", params.channel_type);
2300
2356
  if (params.query) qs.set("query", params.query);
2301
2357
  if (params.limit) qs.set("limit", String(params.limit));
2302
2358
  if (params.cursor) qs.set("cursor", params.cursor);
@@ -2759,6 +2815,14 @@ var createShippingApi = (apiConfig) => {
2759
2815
  payload,
2760
2816
  options
2761
2817
  );
2818
+ },
2819
+ async refundLabel(params, options) {
2820
+ const { order_id, shipment_id } = params;
2821
+ return apiConfig.httpClient.post(
2822
+ `/v1/stores/${apiConfig.storeId}/orders/${order_id}/shipments/${shipment_id}/label/refund`,
2823
+ {},
2824
+ options
2825
+ );
2762
2826
  }
2763
2827
  };
2764
2828
  };
@@ -3759,7 +3823,8 @@ function createAdmin(config) {
3759
3823
  processRefund: eshopApi.processRefund,
3760
3824
  downloadDigitalAccess: eshopApi.downloadDigitalAccess,
3761
3825
  getShippingRates: shippingApi.getRates,
3762
- ship: shippingApi.ship
3826
+ ship: shippingApi.ship,
3827
+ refundShippingLabel: shippingApi.refundLabel
3763
3828
  },
3764
3829
  cart: {
3765
3830
  create: eshopApi.createCart,
@@ -3828,6 +3893,12 @@ function createAdmin(config) {
3828
3893
  automation: {
3829
3894
  workflow: workflowPublicApi,
3830
3895
  support: {
3896
+ createChannel: supportApi.channel.create,
3897
+ getChannel: supportApi.channel.get,
3898
+ findChannels: supportApi.channel.find,
3899
+ updateChannel: supportApi.channel.update,
3900
+ deleteChannel: supportApi.channel.delete,
3901
+ receiveChannelMessage: supportApi.channel.receiveMessage,
3831
3902
  createAgent: supportApi.agent.create,
3832
3903
  getAgent: supportApi.agent.get,
3833
3904
  findAgents: supportApi.agent.find,