arky-sdk 0.9.13 → 0.9.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -12
- package/dist/admin-6xpHuyKc.d.cts +1544 -0
- package/dist/admin-DVFAgnHm.d.ts +1544 -0
- package/dist/admin.cjs +982 -425
- 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 +982 -425
- package/dist/admin.js.map +1 -1
- package/dist/{api-DvsFdOaF.d.cts → api-DJrUdQ1C.d.cts} +1425 -657
- package/dist/{api-DvsFdOaF.d.ts → api-DJrUdQ1C.d.ts} +1425 -657
- package/dist/index.cjs +1317 -539
- 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 +1317 -539
- package/dist/index.js.map +1 -1
- package/dist/{index-CQd9b_7n.d.ts → inventory-DOwNF3D-.d.cts} +6 -4
- package/dist/{index-BC06yiuv.d.cts → inventory-GpWTZ2oe.d.ts} +6 -4
- package/dist/storefront.cjs +1210 -658
- package/dist/storefront.cjs.map +1 -1
- package/dist/storefront.d.cts +88 -285
- package/dist/storefront.d.ts +88 -285
- package/dist/storefront.js +1207 -659
- 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.cjs +198 -16
- package/dist/utils.cjs.map +1 -1
- package/dist/utils.d.cts +18 -2
- package/dist/utils.d.ts +18 -2
- package/dist/utils.js +191 -17
- package/dist/utils.js.map +1 -1
- package/package.json +4 -5
- package/dist/admin-Q9MBFwCb.d.cts +0 -1496
- package/dist/admin-ZLXD4_en.d.ts +0 -1496
- package/scripts/contract-admin.mjs +0 -120
- package/scripts/contract-storefront.mjs +0 -296
package/dist/types.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/types/index.ts"],"names":["PaymentMethodType"],"mappings":";;;AAEO,IAAK,iBAAA,qBAAAA,kBAAAA,KAAL;AACL,EAAAA,mBAAA,MAAA,CAAA,GAAO,MAAA;AACP,EAAAA,mBAAA,YAAA,CAAA,GAAa,aAAA;AAFH,EAAA,OAAAA,kBAAAA;AAAA,CAAA,EAAA,iBAAA,IAAA,EAAA","file":"types.cjs","sourcesContent":["export * from \"./api\";\n\nexport enum PaymentMethodType {\n Cash = \"cash\",\n CreditCard = \"credit_card\",\n}\n\nexport interface PaymentTaxLine {\n rate_bps: number;\n amount: number;\n label?: string;\n scope?: string;\n}\n\nexport interface OrderPaymentTax {\n amount: number;\n mode_snapshot?: string;\n rate_bps: number;\n lines: OrderPaymentTaxLine[];\n}\n\nexport interface OrderPaymentTaxLine {\n rate_bps: number;\n amount: number;\n label?: string;\n scope?: string;\n}\n\nexport interface OrderPaymentPromoCode {\n id: string;\n code: string;\n type: string;\n value: number;\n}\n\nexport type OrderPaymentProvider = {\n type: \"stripe\";\n stripe_customer_id: string;\n payment_intent_id?: string | null;\n payment_provider_id?: string | null;\n connected_account_id?: string | null;\n};\n\nexport type PaymentTransactionProvider =\n | \"manual\"\n | \"stripe\"\n | \"gift_card\"\n | \"store_credit\";\nexport type PaymentCaptureMethod = \"automatic\" | \"manual\";\nexport type PaymentTransactionType =\n | \"authorize\"\n | \"capture\"\n | \"sale\"\n | \"void\"\n | \"cancel\"\n | \"refund\"\n | \"mark_paid\"\n | \"adjustment\";\nexport type PaymentTransactionStatus =\n | \"pending\"\n | \"requires_action\"\n | \"processing\"\n | \"succeeded\"\n | \"failed\"\n | \"cancelled\";\n\nexport interface PaymentTransaction {\n id: string;\n payment_id?: string | null;\n order_id?: string | null;\n parent_transaction_id?: string | null;\n type: PaymentTransactionType;\n status: PaymentTransactionStatus;\n amount: number;\n currency: string;\n provider: PaymentTransactionProvider;\n provider_transaction_id?: string | null;\n provider_payment_id?: string | null;\n provider_status?: string | null;\n error_code?: string | null;\n error_message?: string | null;\n fee_amount?: number | null;\n net_amount?: number | null;\n settlement_currency?: string | null;\n settlement_exchange_rate?: number | null;\n payout_id?: string | null;\n idempotency_key?: string | null;\n raw_provider_status?: string | null;\n processed_at?: number | null;\n created_at: number;\n}\n\nexport interface OrderPaymentRefund {\n id: string;\n type: RefundType;\n total: number;\n tax_amount: number;\n shipping_amount?: number | null;\n provider_refund_id?: string | null;\n status: import(\"./api\").RefundStatus;\n error?: OrderRefundError | null;\n reason?: string | null;\n lines: RefundLine[];\n transaction_ids: string[];\n created_at: number;\n}\n\nexport type OrderRefundError =\n | {\n type: \"provider_rejected\";\n message: string;\n provider_code?: string | null;\n provider_status?: number | null;\n at: number;\n }\n | {\n type: \"unknown_outcome\";\n message: string;\n at: number;\n }\n | {\n type: \"missing_payment_intent\";\n message: string;\n at: number;\n };\n\nexport interface OrderPayment {\n status: OrderPaymentStatus;\n currency: string;\n market: string;\n subtotal: number;\n shipping: number;\n discount: number;\n total: number;\n paid: number;\n authorized_amount: number;\n captured_amount: number;\n refunded_amount: number;\n voided_amount: number;\n capture_method: PaymentCaptureMethod;\n tax?: OrderPaymentTax;\n promo_code?: OrderPaymentPromoCode;\n provider?: OrderPaymentProvider;\n refunds: OrderPaymentRefund[];\n transactions: PaymentTransaction[];\n provider_payment_id?: string | null;\n provider_customer_id?: string | null;\n provider_payment_method_id?: string | null;\n provider_status?: string | null;\n next_action?: string | null;\n failure_code?: string | null;\n failure_message?: string | null;\n idempotency_key?: string | null;\n zone_id?: string;\n payment_method_key?: string;\n shipping_method_id?: string;\n method_type: PaymentMethodType;\n}\n\nexport interface PromoCodeValidation {\n promo_code_id: string;\n code: string;\n discounts: import(\"./api\").Discount[];\n conditions: import(\"./api\").Condition[];\n}\n\nexport interface OrderQuote {\n id?: string;\n expires_at?: number;\n market: string;\n zone: Zone | null;\n items: QuoteLine[];\n shipping_lines: ShippingLine[];\n subtotal: number;\n shipping: number;\n discount: number;\n tax: number;\n total: number;\n shipping_method: ShippingMethod | null;\n payment_method: PaymentMethod | null;\n payment_methods: PaymentMethod[];\n promo_code: PromoCodeValidation | null;\n payment: OrderPayment;\n charge_amount: number;\n}\n\nexport interface Price {\n currency: string;\n market: string;\n amount: number;\n compare_at?: number;\n contact_list_id?: string;\n}\n\nexport type IntervalPeriod = \"month\" | \"year\";\n\nexport interface SubscriptionInterval {\n period: IntervalPeriod;\n count: number;\n}\n\nexport interface PriceProvider {\n type: string;\n id: string;\n}\n\nexport interface SubscriptionPrice {\n currency: string;\n amount: number;\n compare_at?: number;\n interval?: SubscriptionInterval;\n providers: PriceProvider[];\n}\n\nexport interface Address {\n name?: string | null;\n company?: string | null;\n street1?: string | null;\n street2?: string | null;\n city?: string | null;\n state?: string | null;\n postal_code?: string | null;\n country?: string | null;\n phone?: string | null;\n email?: string | null;\n}\n\nexport interface Coordinates {\n lat: number;\n lon: number;\n}\n\nexport interface GeoLocation {\n coordinates?: Coordinates | null;\n label?: string | null;\n}\n\nexport interface ZoneLocation {\n country?: string | null;\n state?: string | null;\n city?: string | null;\n postal_code?: string | null;\n}\n\nexport interface EshopCartItem {\n id: string;\n product_id: string;\n variant_id: string;\n product_name: string;\n product_slug: string;\n variant_attributes: Record<string, any>;\n requires_shipping: boolean;\n price: Price;\n quantity: number;\n added_at: number;\n max_stock?: number;\n}\n\nexport type CartStatus = \"active\" | \"abandoned\" | \"converted\" | \"expired\";\nexport type CartOrigin = \"storefront\" | \"admin\";\n\nexport interface Cart {\n id: string;\n store_id: string;\n contact_id: string;\n token: string;\n status: CartStatus;\n origin: CartOrigin;\n created_by_account_id?: string | null;\n market: string;\n items: import(\"./api\").OrderCheckoutItemInput[];\n shipping_address?: Address | null;\n billing_address?: Address | null;\n forms: FormEntry[];\n promo_code?: string | null;\n payment_method_key?: string | null;\n shipping_method_id?: string | null;\n quote_snapshot?: OrderQuote | null;\n converted_order_id?: string | null;\n item_count: number;\n last_action_at: number;\n abandoned_at?: number | null;\n recovery_sent_at?: number | null;\n created_at: number;\n updated_at: number;\n}\n\nexport interface SocialOAuthCredential {\n access_token?: string;\n refresh_token?: string | null;\n expires_at?: number | null;\n scopes: string[];\n}\n\nexport interface SocialDestinationMetadata {\n external_account_id: string;\n external_account_name: string;\n handle?: string | null;\n avatar_url?: string | null;\n}\n\nexport type SocialProviderType =\n | \"facebook_page\"\n | \"instagram_business\"\n | \"youtube_channel\"\n | \"tiktok_account\"\n | \"x_account\";\n\nexport type SocialPublicationStatus =\n | \"draft\"\n | \"scheduled\"\n | \"publishing\"\n | \"published\"\n | \"failed\"\n | \"unknown\"\n | \"cancelled\";\n\nexport type YoutubePrivacy = \"public\" | \"unlisted\" | \"private\";\nexport type TiktokPrivacy = \"public\" | \"friends\" | \"private\";\nexport type InstagramPlacement = \"feed\" | \"reel\" | \"story\";\n\nexport interface FacebookPageContent {\n type: \"facebook_page\";\n text?: string | null;\n media_ids: string[];\n link_url?: string | null;\n}\n\nexport interface InstagramBusinessContent {\n type: \"instagram_business\";\n placement?: InstagramPlacement | null;\n share_to_feed?: boolean | null;\n caption?: string | null;\n media_ids: string[];\n}\n\nexport interface YoutubeChannelContent {\n type: \"youtube_channel\";\n title: string;\n description?: string | null;\n video_media_id: string;\n privacy: YoutubePrivacy;\n}\n\nexport interface TiktokAccountContent {\n type: \"tiktok_account\";\n caption?: string | null;\n video_media_id: string;\n privacy: TiktokPrivacy;\n}\n\nexport interface XAccountContent {\n type: \"x_account\";\n text?: string | null;\n media_ids: string[];\n}\n\nexport type SocialPublicationContent =\n | FacebookPageContent\n | InstagramBusinessContent\n | YoutubeChannelContent\n | TiktokAccountContent\n | XAccountContent;\n\nexport interface ValidationError {\n field: string;\n error: string;\n}\n\nexport interface SocialPublicationValidation {\n valid: boolean;\n errors: ValidationError[];\n warnings: ValidationError[];\n}\n\nexport interface SocialPublication {\n id: string;\n store_id: string;\n social_account_id: string;\n key: string;\n status: SocialPublicationStatus;\n content: SocialPublicationContent;\n scheduled_at: number;\n published_at?: number | null;\n provider_post_id?: string | null;\n provider_post_url?: string | null;\n error_code?: string | null;\n error_message?: string | null;\n attempt_count: number;\n last_attempt_at?: number | null;\n created_at: number;\n updated_at: number;\n}\n\nexport interface SocialPublicationMutationResponse {\n publication: SocialPublication;\n validation: SocialPublicationValidation;\n publish_requested: boolean;\n}\n\nexport type SocialPublicationCommentStatus =\n | \"open\"\n | \"replied\"\n | \"hidden\"\n | \"deleted\";\n\nexport type SocialPublicationCommentReplyStatus =\n | \"none\"\n | \"requested\"\n | \"processing\"\n | \"succeeded\"\n | \"failed\"\n | \"unknown\";\n\nexport type SocialPublicationCommentReplyError =\n | {\n type: \"provider_rejected\";\n message: string;\n provider_code?: string | null;\n provider_status?: number | null;\n at: number;\n }\n | {\n type: \"unknown_outcome\";\n message: string;\n at: number;\n };\n\nexport type SocialPublicationCommentIntent =\n | \"lead\"\n | \"support\"\n | \"complaint\"\n | \"question\"\n | \"praise\"\n | \"spam\"\n | \"general\";\n\nexport type SocialPublicationCommentPriority =\n | \"urgent\"\n | \"high\"\n | \"normal\"\n | \"low\";\n\nexport interface SocialPublicationComment {\n id: string;\n store_id: string;\n publication_id: string;\n social_account_id: string;\n provider_type: SocialProviderType;\n provider_post_id?: string | null;\n provider_comment_id: string;\n provider_parent_comment_id?: string | null;\n parent_comment_id?: string | null;\n root_comment_id?: string | null;\n depth: number;\n provider_reply_count?: number | null;\n synced_reply_count: number;\n has_more_replies: boolean;\n thread_last_synced_at?: number | null;\n author_is_channel: boolean;\n contact_id?: string | null;\n action_id?: string | null;\n opportunity_action_id?: string | null;\n author_name?: string | null;\n author_handle?: string | null;\n author_provider_user_id?: string | null;\n text: string;\n status: SocialPublicationCommentStatus;\n reply_status: SocialPublicationCommentReplyStatus;\n reply_error?: SocialPublicationCommentReplyError | null;\n reply_requested_text?: string | null;\n reply_provider_comment_id?: string | null;\n reply_provider_comment_url?: string | null;\n reply_error_code?: string | null;\n reply_error_message?: string | null;\n provider_created_at?: number | null;\n last_synced_at: number;\n replied_at?: number | null;\n classification_intent?: SocialPublicationCommentIntent | null;\n classification_priority?: SocialPublicationCommentPriority | null;\n classification_confidence?: number | null;\n classification_summary?: string | null;\n classification_reason?: string | null;\n suggested_reply?: string | null;\n classified_at?: number | null;\n classification_model?: string | null;\n created_at: number;\n updated_at: number;\n}\n\nexport interface SocialPublicationMetricSnapshot {\n id: string;\n store_id: string;\n publication_id: string;\n social_account_id: string;\n provider_type: SocialProviderType;\n provider_post_id?: string | null;\n metrics: Record<string, number>;\n collected_at: number;\n created_at: number;\n updated_at: number;\n}\n\nexport interface SocialPublicationCommentReply {\n provider_comment_id: string;\n provider_comment_url?: string | null;\n}\n\nexport interface SocialPublicationCommentReplyResponse {\n comment: SocialPublicationComment;\n reply: SocialPublicationCommentReply;\n}\n\nexport interface SocialPublicationEngagementSyncResult {\n publications_scanned: number;\n comment_pages_scanned: number;\n comments_synced: number;\n metrics_synced: number;\n comments: SocialPublicationComment[];\n metrics: SocialPublicationMetricSnapshot[];\n skipped_publication_ids: string[];\n errors: string[];\n}\n\nexport interface SocialPublicationCommentClassificationResult {\n comments_scanned: number;\n comments_classified: number;\n comments_skipped: number;\n comments: SocialPublicationComment[];\n skipped_comment_ids: string[];\n errors: string[];\n}\n\nexport interface SocialEngagementCapabilities {\n read_comments: boolean;\n reply_to_comments: boolean;\n}\n\nexport interface SocialAnalyticsCapabilities {\n read_post_metrics: boolean;\n}\n\nexport interface SocialProviderCapability {\n provider_type: SocialProviderType;\n display_name: string;\n icon_key: string;\n required_scopes: string[];\n media_requirements: string[];\n engagement: SocialEngagementCapabilities;\n analytics: SocialAnalyticsCapabilities;\n}\n\nexport interface SocialConnectResponse {\n authorization_url: string;\n state: string;\n}\n\nexport type SocialOAuthCallbackStatus =\n | \"code_received\"\n | \"connected\"\n | \"selection_required\";\n\nexport interface SocialOAuthDestinationOption extends SocialDestinationMetadata {\n candidate_id: string;\n}\n\nexport interface SocialOAuthCallbackResponse {\n status: SocialOAuthCallbackStatus;\n store_id: string;\n provider_type: SocialProviderType;\n account_id: string;\n attempt_id?: string | null;\n social_account_id?: string | null;\n destination?: SocialDestinationMetadata | null;\n options: SocialOAuthDestinationOption[];\n message: string;\n}\n\nexport type BuildHookType = \"vercel\" | \"netlify\" | \"cloudflare\" | \"custom\";\n\nexport interface BuildHook {\n id: string;\n store_id: string;\n key: string;\n type: BuildHookType;\n url: string;\n headers: Record<string, string>;\n active: boolean;\n created_at: number;\n updated_at: number;\n}\n\nexport interface SocialAccount {\n id: string;\n store_id: string;\n key: string;\n provider_type: SocialProviderType;\n credential: SocialOAuthCredential;\n destination: SocialDestinationMetadata;\n created_at: number;\n updated_at: number;\n}\n\nexport interface PaymentProvider {\n id: string;\n store_id: string;\n key: string;\n provider: {\n type: \"stripe\";\n onboarding_status: string;\n charges_enabled: boolean;\n payouts_enabled: boolean;\n details_submitted: boolean;\n application_fee_bps?: number | null;\n currency: string;\n };\n created_at: number;\n updated_at: number;\n}\n\nexport interface PaymentStoreConfig {\n provider: \"stripe\";\n publishable_key: string;\n currency: string;\n}\n\nexport type StoreRuntimeConfig = PaymentStoreConfig | [] | null;\n\nexport interface StripePaymentProviderConnectResponse {\n provider: PaymentProvider;\n onboarding_url: string;\n}\n\nexport interface ShippingWeightTier {\n up_to_grams: number;\n amount: number;\n}\n\nexport type PaymentMethod =\n | {\n type: \"cash\";\n id: string;\n key: string;\n }\n | {\n type: \"credit_card\";\n id: string;\n key: string;\n payment_provider_id: string;\n };\n\nexport interface ShippingMethod {\n id: string;\n taxable: boolean;\n eta_text: string;\n location_id?: string;\n amount: number;\n free_above?: number;\n weight_tiers?: ShippingWeightTier[];\n}\n\nexport interface Location {\n id: string;\n store_id: string;\n key: string;\n address: Address;\n is_pickup_location: boolean;\n created_at: number;\n updated_at: number;\n}\n\nexport interface InventoryLevel {\n location_id: string;\n available: number;\n reserved: number;\n}\n\nexport interface ProductInventory {\n id: string;\n store_id: string;\n product_id: string;\n variant_id: string;\n location_id: string;\n available: number;\n reserved: number;\n updated_at: number;\n}\n\nexport type DigitalAssetType = \"file\" | \"external_link\";\nexport type DigitalAssetStatus = \"active\" | \"archived\";\nexport type DigitalDeliveryPolicy = \"automatic_after_payment\" | \"manual\";\n\nexport interface DigitalAsset {\n id: string;\n name: string;\n type: DigitalAssetType;\n storage_ref?: string | null;\n external_url?: string | null;\n status: DigitalAssetStatus;\n}\n\nexport interface TaxLineReversal {\n tax_line_id: string;\n amount: number;\n}\n\nexport interface RefundLine {\n order_item_id: string;\n quantity: number;\n subtotal_amount: number;\n discount_amount: number;\n taxable_base: number;\n amount: number;\n tax_amount: number;\n tax_line_reversals: TaxLineReversal[];\n restock: boolean;\n}\n\nexport type RefundType = \"item\" | \"shipping\" | \"goodwill\" | \"correction\";\n\nexport interface ProductVariant {\n id: string;\n sku?: string;\n prices: Price[];\n inventory: ProductInventory[];\n attributes: Block[];\n requires_shipping: boolean;\n digital_delivery_policy: DigitalDeliveryPolicy;\n digital_assets: DigitalAsset[];\n download_limit?: number | null;\n access_expires_after_days?: number | null;\n tax_category_id?: string | null;\n weight?: number;\n}\n\nexport interface Product {\n id: string;\n store_id: string;\n key: string;\n slug: Record<string, string>;\n blocks: Block[];\n taxonomies: TaxonomyEntry[];\n variants: ProductVariant[];\n status: ProductStatus;\n created_at: number;\n updated_at: number;\n}\n\nexport interface GalleryItem {\n id: string;\n url: string;\n alt?: string;\n caption?: string;\n}\n\nexport interface ProductLineItemSnapshot {\n product_key: string;\n variant_sku?: string;\n variant_attributes: Block[];\n requires_shipping: boolean;\n tax_category_id?: string | null;\n price: Price;\n}\n\nexport interface ServiceLineItemSnapshot {\n service_key: string;\n provider_key: string;\n tax_category_id?: string | null;\n price: Price;\n}\n\nexport interface DiscountAllocation {\n discount_application_id?: string | null;\n amount: number;\n}\n\nexport interface TaxLine {\n id: string;\n title: string;\n rate_bps: number;\n amount: number;\n taxable_base: number;\n included_in_price: boolean;\n jurisdiction_country?: string | null;\n jurisdiction_region?: string | null;\n jurisdiction_city?: string | null;\n jurisdiction_postal_code?: string | null;\n tax_category_id?: string | null;\n tax_rate_id?: string | null;\n source: string;\n provider_tax_id?: string | null;\n provider_tax_line_id?: string | null;\n}\n\nexport interface LineMoneySnapshot {\n unit_price: number;\n subtotal: number;\n discount_allocations: DiscountAllocation[];\n discount_total: number;\n taxable_base: number;\n tax_lines: TaxLine[];\n tax_total: number;\n total: number;\n}\n\nexport type OrderItemFulfillmentStatus =\n | \"unfulfilled\"\n | \"partially_fulfilled\"\n | \"fulfilled\"\n | \"not_required\";\n\nexport type BookingOrderItemStatus =\n | \"scheduled\"\n | \"completed\"\n | \"no_show\"\n | \"cancelled\";\n\nexport type OrderItemSnapshot =\n | ProductLineItemSnapshot\n | ServiceLineItemSnapshot;\n\nexport type ProductQuoteLineAvailability =\n | { ok: true; available?: number }\n | { ok: false; reason: string };\n\nexport type ServiceQuoteLineAvailability =\n | { ok: true; spots: number }\n | { ok: false; reason: string };\n\nexport interface ProductQuoteLine {\n type: \"product\";\n line_id: string;\n product_id: string;\n variant_id: string;\n quantity: number;\n unit_price: number;\n subtotal: number;\n discount: number;\n tax: number;\n total: number;\n money: LineMoneySnapshot;\n snapshot: ProductLineItemSnapshot;\n availability: ProductQuoteLineAvailability;\n}\n\nexport interface ServiceQuoteLine {\n type: \"service\";\n line_id: string;\n service_id: string;\n provider_id: string;\n from: number;\n to: number;\n quantity: 1;\n unit_price: number;\n subtotal: number;\n discount: number;\n tax: number;\n total: number;\n money: LineMoneySnapshot;\n snapshot: ServiceLineItemSnapshot;\n availability: ServiceQuoteLineAvailability;\n}\n\nexport type QuoteLine = ProductQuoteLine | ServiceQuoteLine;\n\nexport interface ProductLineItem {\n type: \"product\";\n id: string;\n product_id: string;\n variant_id: string;\n quantity: number;\n cancelled_quantity: number;\n fulfilled_quantity: number;\n returned_quantity: number;\n refunded_quantity: number;\n location_id?: string;\n snapshot: ProductLineItemSnapshot;\n status: OrderItemStatus;\n fulfillment_status: OrderItemFulfillmentStatus;\n money: LineMoneySnapshot;\n}\n\nexport interface ServiceLineItem {\n type: \"service\";\n id: string;\n service_id: string;\n provider_id: string;\n from: number;\n to: number;\n quantity: number;\n cancelled_quantity: number;\n fulfilled_quantity: number;\n refunded_quantity: number;\n forms: FormEntry[];\n snapshot: ServiceLineItemSnapshot;\n status: OrderItemStatus;\n booking_status: BookingOrderItemStatus;\n fulfillment_status: OrderItemFulfillmentStatus;\n money: LineMoneySnapshot;\n}\n\nexport type OrderItem = ProductLineItem | ServiceLineItem;\n\nexport type OrderPaymentSummaryStatus =\n | \"unpaid\"\n | \"pending\"\n | \"authorized\"\n | \"partially_paid\"\n | \"paid\"\n | \"partially_refunded\"\n | \"refunded\"\n | \"failed\"\n | \"voided\"\n | \"expired\";\n\nexport type OrderFulfillmentStatus =\n | \"unfulfilled\"\n | \"scheduled\"\n | \"on_hold\"\n | \"in_progress\"\n | \"partially_fulfilled\"\n | \"fulfilled\"\n | \"incomplete\"\n | \"not_required\";\n\nexport interface HistoryEntry {\n action: string;\n reason?: string;\n timestamp: number;\n}\n\nexport type DigitalAccessGrantStatus =\n | \"pending\"\n | \"active\"\n | \"exhausted\"\n | \"revoked\"\n | \"expired\";\n\nexport interface DigitalAccessGrant {\n id: string;\n order_id: string;\n order_item_id: string;\n product_id: string;\n variant_id: string;\n contact_id: string;\n asset_id: string;\n asset_name_snapshot: string;\n type: DigitalAssetType;\n access_url?: string | null;\n storage_ref?: string | null;\n status: DigitalAccessGrantStatus;\n delivery_policy_snapshot: DigitalDeliveryPolicy;\n download_limit?: number | null;\n download_count: number;\n expires_at?: number | null;\n granted_at?: number | null;\n revoked_at?: number | null;\n}\n\nexport interface DigitalAccessDownloadResponse {\n url: string;\n url_expires_at?: number | null;\n grant: DigitalAccessGrant;\n}\n\nexport interface ShippingLine {\n id: string;\n shipping_method_id?: string | null;\n title: string;\n code?: string | null;\n source: string;\n carrier_identifier?: string | null;\n money: LineMoneySnapshot;\n created_at: number;\n updated_at: number;\n}\n\nexport type FulfillmentOrderStatus =\n | \"open\"\n | \"in_progress\"\n | \"closed\"\n | \"incomplete\"\n | \"on_hold\"\n | \"scheduled\"\n | \"cancelled\";\n\nexport type FulfillmentOrderRequestStatus =\n | \"unsubmitted\"\n | \"submitted\"\n | \"accepted\"\n | \"rejected\"\n | \"cancellation_requested\"\n | \"cancellation_accepted\";\n\nexport interface FulfillmentOrderLine {\n id: string;\n order_item_id: string;\n quantity: number;\n fulfilled_quantity: number;\n}\n\nexport interface FulfillmentOrder {\n id: string;\n order_id: string;\n assigned_location_id: string;\n status: FulfillmentOrderStatus;\n request_status: FulfillmentOrderRequestStatus;\n fulfill_at?: number | null;\n fulfill_by?: number | null;\n destination?: Address | null;\n lines: FulfillmentOrderLine[];\n created_at: number;\n updated_at: number;\n}\n\nexport interface Order {\n id: string;\n number: string;\n store_id: string;\n source_cart_id: string;\n contact_id: string;\n status: OrderStatus;\n payment_status: OrderPaymentSummaryStatus;\n fulfillment_status: OrderFulfillmentStatus;\n verified: boolean;\n items: OrderItem[];\n payment: OrderPayment;\n shipping_lines: ShippingLine[];\n fulfillment_orders: FulfillmentOrder[];\n shipping_address?: Address;\n billing_address?: Address;\n forms: FormEntry[];\n shipments: Shipment[];\n digital_access_grants: DigitalAccessGrant[];\n history: HistoryEntry[];\n contact_list_id?: string;\n fired_reminders: number[];\n created_at: number;\n updated_at: number;\n}\n\nexport type CheckoutPaymentAction =\n | { type: \"none\" }\n | { type: \"handle_next_action\"; client_secret: string };\n\nexport interface OrderCheckoutResult {\n order_id: string;\n number: string;\n payment_action: CheckoutPaymentAction;\n payment: OrderPayment;\n}\n\nexport interface Zone {\n id: string;\n store_id: string;\n market_id: string;\n countries: string[];\n states: string[];\n postal_codes: string[];\n tax_bps: number;\n shipping_methods: ShippingMethod[];\n}\n\nexport interface Market {\n id: string;\n store_id: string;\n key: string;\n currency: string;\n tax_mode: \"exclusive\" | \"inclusive\";\n payment_methods: PaymentMethod[];\n zones: Zone[];\n created_at: number;\n updated_at: number;\n}\n\nexport interface Language {\n id: string;\n}\n\nexport interface StoreEmails {\n billing: string;\n support: string;\n}\n\nexport type WebhookEventSubscription =\n | { event: \"collection.created\"; key?: string }\n | { event: \"collection.updated\"; key?: string }\n | { event: \"collection.deleted\"; key?: string }\n | { event: \"entry.created\"; collection_id?: string; key?: string }\n | { event: \"entry.updated\"; collection_id?: string; key?: string }\n | { event: \"entry.deleted\"; collection_id?: string; key?: string }\n | { event: \"order.created\" }\n | { event: \"order.updated\" }\n | { event: \"order.confirmed\" }\n | { event: \"order.payment_received\" }\n | { event: \"order.payment_failed\" }\n | { event: \"order.refunded\" }\n | { event: \"order.digital_access_activated\" }\n | { event: \"order.digital_access_downloaded\" }\n | { event: \"order.cancelled\" }\n | { event: \"order.reminder\" }\n | { event: \"order.shipment_created\" }\n | { event: \"order.shipment_in_transit\" }\n | { event: \"order.shipment_out_for_delivery\" }\n | { event: \"order.shipment_delivered\" }\n | { event: \"order.shipment_failed\" }\n | { event: \"order.shipment_returned\" }\n | { event: \"order.shipment_status_changed\" }\n | { event: \"cart.created\" }\n | { event: \"cart.updated\" }\n | { event: \"cart.abandoned\" }\n | { event: \"cart.converted\" }\n | { event: \"product.created\" }\n | { event: \"product.updated\" }\n | { event: \"product.deleted\" }\n | { event: \"provider.created\" }\n | { event: \"provider.updated\" }\n | { event: \"provider.deleted\" }\n | { event: \"service.created\" }\n | { event: \"service.updated\" }\n | { event: \"service.deleted\" }\n | { event: \"media.created\" }\n | { event: \"media.deleted\" }\n | { event: \"store.created\" }\n | { event: \"store.updated\" }\n | { event: \"store.deleted\" }\n | { event: \"contact_list.created\" }\n | { event: \"contact_list.updated\" }\n | { event: \"contact_list.contact_added\" }\n | { event: \"contact_list.contact_pending\" }\n | { event: \"contact_list.contact_confirmed\" }\n | { event: \"contact_list.contact_cancelled\" }\n | { event: \"account.updated\" };\n\nexport interface Webhook {\n id: string;\n store_id: string;\n key: string;\n url: string;\n events: WebhookEventSubscription[];\n headers: Record<string, string>;\n secret: string;\n enabled: boolean;\n created_at: number;\n updated_at: number;\n}\n\nexport type StoreSubscriptionStatus =\n | \"pending\"\n | \"active\"\n | \"cancellation_scheduled\"\n | \"cancelled\"\n | \"expired\";\n\nexport type StoreSubscriptionSource = \"signup\" | \"admin\" | \"import\";\n\nexport type StoreSubscriptionProvider = {\n type: \"stripe\";\n stripe_customer_id: string;\n subscription_id?: string | null;\n price_id?: string | null;\n};\n\nexport type StoreSubscriptionProviderLifecycleStatus =\n | \"requested\"\n | \"processing\"\n | \"succeeded\"\n | \"rejected\"\n | \"unknown\";\n\nexport type StoreSubscriptionProviderOperation =\n | { type: \"cancel_at_period_end\" }\n | { type: \"cancel_immediately\"; plan_id?: string | null }\n | { type: \"reactivate\" }\n | {\n type: \"update_plan\";\n plan_id: string;\n price_id: string;\n proration_behavior: string;\n }\n | { type: \"schedule_plan_change\"; plan_id: string; price_id: string };\n\nexport type StoreSubscriptionProviderError =\n | {\n type: \"provider_rejected\";\n message: string;\n provider_code?: string | null;\n provider_status?: number | null;\n at: number;\n }\n | {\n type: \"unknown_outcome\";\n message: string;\n at: number;\n }\n | {\n type: \"missing_configuration\";\n message: string;\n at: number;\n };\n\nexport interface StoreSubscriptionProviderLifecycle {\n operation_id?: string | null;\n status: StoreSubscriptionProviderLifecycleStatus;\n operation?: StoreSubscriptionProviderOperation | null;\n error?: StoreSubscriptionProviderError | null;\n updated_at: number;\n}\n\nexport interface StoreSubscriptionPayment {\n currency: string;\n market: string;\n provider?: StoreSubscriptionProvider | null;\n}\n\nexport interface StoreSubscription {\n id: string;\n target: string;\n plan_id: string;\n pending_plan_id: string | null;\n payment: StoreSubscriptionPayment;\n status: StoreSubscriptionStatus;\n provider_lifecycle: StoreSubscriptionProviderLifecycle;\n start_date: number;\n end_date: number;\n token: string;\n source: StoreSubscriptionSource;\n}\n\nexport type ContactListMembershipProvider = {\n type: \"stripe\";\n customer_id: string;\n connected_account_id?: string | null;\n subscription_id?: string | null;\n payment_intent_id?: string | null;\n payment_intent_client_secret?: string | null;\n price_id?: string | null;\n};\n\nexport interface ContactListMembershipPayment {\n currency: string;\n market: string;\n provider?: ContactListMembershipProvider;\n}\n\nexport type ContactListMembershipProviderCancellationStatus =\n | \"requested\"\n | \"processing\"\n | \"succeeded\"\n | \"rejected\"\n | \"unknown\";\n\nexport type ContactListMembershipProviderCancellationError =\n | {\n type: \"provider_rejected\";\n message: string;\n provider_code?: string | null;\n provider_status?: number | null;\n at: number;\n }\n | {\n type: \"unknown_outcome\";\n message: string;\n at: number;\n }\n | {\n type: \"missing_configuration\";\n message: string;\n at: number;\n };\n\nexport interface ContactListMembershipProviderCancellation {\n operation_id?: string | null;\n status: ContactListMembershipProviderCancellationStatus;\n error?: ContactListMembershipProviderCancellationError | null;\n updated_at: number;\n}\n\nexport interface Store {\n id: string;\n key: string;\n timezone: string;\n languages?: Language[];\n emails?: StoreEmails;\n subscription?: StoreSubscription;\n counts?: Record<string, number>;\n}\n\nexport interface EshopStoreState {\n store_id: string;\n selected_shipping_method_id: string | null;\n user_token: string | null;\n processing_checkout: boolean;\n loading: boolean;\n error: string | null;\n}\n\nexport interface Block {\n id: string;\n key: string;\n type: string;\n properties?: any;\n value?: any;\n}\n\nexport type TaxonomySchemaType = \"text\" | \"number\" | \"boolean\" | \"geo_location\";\n\nexport interface TaxonomySchema {\n id: string;\n key: string;\n type: TaxonomySchemaType;\n value?: string[];\n min?: number | null;\n max?: number | null;\n}\n\nexport interface TaxonomyField {\n id: string;\n key: string;\n type: TaxonomySchemaType;\n value: any;\n}\n\nexport interface TaxonomyFieldQuery {\n key: string;\n type: TaxonomySchemaType;\n operation?: string;\n value: any;\n center?: { lat: number; lon: number };\n radius?: number;\n}\n\nexport interface TaxonomyEntry {\n taxonomy_id: string;\n fields: TaxonomyField[];\n}\n\nexport interface TaxonomyQuery {\n taxonomy_id: string;\n query: TaxonomyFieldQuery[];\n}\n\nexport type FormSchemaType =\n | \"text\"\n | \"number\"\n | \"boolean\"\n | \"date\"\n | \"geo_location\"\n | \"select\";\n\nexport interface FormSchema {\n id: string;\n key: string;\n type: FormSchemaType;\n required?: boolean;\n min?: number | null;\n max?: number | null;\n options?: string[];\n}\n\nexport type FormFieldType =\n | \"text\"\n | \"number\"\n | \"boolean\"\n | \"date\"\n | \"geo_location\"\n | \"select\";\n\nexport interface FormField {\n id: string;\n key: string;\n type: FormFieldType;\n value?: any;\n}\n\nexport interface FormEntry {\n form_id: string;\n fields: FormField[];\n}\n\nexport type BlockType =\n | \"text\"\n | \"localized_text\"\n | \"number\"\n | \"boolean\"\n | \"date\"\n | \"array\"\n | \"object\"\n | \"media\"\n | \"entry\"\n | \"markdown\"\n | \"geo_location\";\n\nexport interface GeoLocationBlockProperties {}\n\nexport interface GeoLocationBlock extends Block {\n type: \"geo_location\";\n properties: GeoLocationBlockProperties;\n value: GeoLocation | null;\n}\n\nexport type Access = \"public\" | \"private\";\n\nexport interface MediaResolution {\n id: string;\n size: string;\n url: string;\n}\n\nexport interface Media {\n id: string;\n resolutions: { [key: string]: MediaResolution };\n mime_type: string;\n title?: string | null;\n description?: string | null;\n alt?: string | null;\n store_id: string;\n entity?: string;\n metadata?: string | null;\n created_at: number;\n slug: Record<string, string>;\n}\n\nexport interface SubscriptionPlan {\n id: string;\n provider_price_id?: string | null;\n provider_product_id?: string | null;\n name: string;\n tier: number;\n amount: number;\n currency: string;\n interval: string;\n interval_count: number;\n trial_period_days: number;\n}\n\nexport interface AccountToken {\n id: string;\n value?: string;\n name?: string | null;\n created_at: number;\n expires_at?: number | null;\n type?: string;\n}\n\nexport interface StoreMembership {\n store_id: string;\n role: import(\"./api\").StoreRole;\n invitation_token?: AccountToken | null;\n joined_at?: number | null;\n}\n\nexport interface AccountLifecycle {\n last_login_at?: number | null;\n onboarding_completed: boolean;\n}\n\nexport interface Account {\n id: string;\n email: string;\n memberships: StoreMembership[];\n api_tokens: AccountToken[];\n auth_tokens?: import(\"./api\").AuthToken[];\n verification_codes?: unknown[];\n lifecycle?: AccountLifecycle;\n}\n\nexport interface AccountUpdateResponse {\n success: boolean;\n newly_created_tokens: AccountToken[];\n}\n\nexport interface ApiResponse<T> {\n success: boolean;\n data?: T;\n error?: string;\n cursor?: string;\n total?: number;\n}\n\nexport interface PaginatedResponse<T> {\n items: T[];\n cursor: string | null;\n data?: T[];\n meta?: {\n total: number;\n page: number;\n per_page: number;\n };\n}\n\nexport type ServiceStatus = \"active\" | \"draft\" | \"archived\";\nexport type ProviderStatus = \"active\" | \"draft\" | \"archived\";\n\nexport type ProductStatus = \"active\" | \"draft\" | \"archived\";\nexport type ContactStatus = \"active\" | \"archived\";\nexport type ContactListStatus = \"active\" | \"draft\" | \"archived\";\nexport type ContactListSource =\n | \"manual\"\n | \"import\"\n | \"signup\"\n | \"admin\"\n | \"system\"\n | \"lead_research\";\nexport type ContactListMembershipStatus =\n | \"pending\"\n | \"active\"\n | \"cancellation_scheduled\"\n | \"cancelled\"\n | \"expired\"\n | \"archived\";\nexport type ContactListPlanStatus = \"active\" | \"archived\";\nexport type ContactListContentAccessStatus = \"active\" | \"archived\";\nexport type MailboxStatus = \"active\" | \"draft\" | \"archived\";\nexport type MailboxPreset = \"gmail\" | \"zoho\" | \"microsoft\" | \"custom\";\nexport type MailboxConnectionSecurity = \"tls\" | \"start_tls\";\nexport type MailboxSyncStatus = \"not_ready\" | \"ready\" | \"failed\";\nexport type SmtpImapMailboxProvider = {\n type: \"smtp_imap\";\n preset: MailboxPreset;\n smtp_host: string;\n smtp_port: number;\n smtp_security: MailboxConnectionSecurity;\n imap_host: string;\n imap_port: number;\n imap_security: MailboxConnectionSecurity;\n username: string;\n password_configured: boolean;\n sync_enabled: boolean;\n sync_interval_seconds: number;\n sync_status?: MailboxSyncStatus;\n sync_error?: string | null;\n sync_ready_at?: number | null;\n last_synced_at?: number | null;\n last_seen_uid?: number | null;\n};\nexport type CampaignStatus =\n | \"draft\"\n | \"active\"\n | \"paused\"\n | \"completed\"\n | \"archived\";\nexport type CampaignEnrollmentStatus =\n | \"pending\"\n | \"active\"\n | \"action_required\"\n | \"replied\"\n | \"completed\"\n | \"suppressed\"\n | \"failed\"\n | \"stopped\";\nexport type CampaignEnrollmentImportSource =\n | \"contact_list\"\n | \"contact\"\n | \"manual\";\nexport type CampaignMessageStatus =\n | \"draft\"\n | \"scheduled\"\n | \"pending\"\n | \"sending\"\n | \"sent\"\n | \"received\"\n | \"action_required\"\n | \"completed\"\n | \"bounced\"\n | \"failed\"\n | \"unknown\"\n | \"skipped\"\n | \"stopped\"\n | \"superseded\";\nexport type CampaignMessageType =\n | \"campaign_step_email\"\n | \"manual_task\"\n | \"manual_reply\"\n | \"inbound_reply\"\n | \"delivery_failure\"\n | \"action\";\nexport type CampaignMessageDirection = \"outbound\" | \"inbound\" | \"action\";\nexport type CampaignMessageCopySource = \"template\" | \"generated\" | \"edited\";\nexport type OutreachThreadMode = \"new_thread\" | \"same_thread\";\nexport type ManualTaskContinueBehavior =\n | \"continue_after_delay\"\n | \"wait_until_completed\";\nexport type OutreachStepType =\n | {\n type: \"email\";\n template_id: string;\n template_vars?: Record<string, unknown>;\n body?: string | null;\n thread_mode?: OutreachThreadMode;\n attachments?: string[];\n }\n | {\n type: \"manual_task\";\n target_channel_type?: ChannelType | null;\n title: string;\n instructions: string;\n suggested_message?: string | null;\n external_url?: string | null;\n continue_behavior: ManualTaskContinueBehavior;\n };\nexport type CampaignManualTaskOutcome =\n | \"done\"\n | \"skipped\"\n | \"got_reply\"\n | \"do_not_contact\";\nexport type OutreachPersonalizationStatus =\n | \"idle\"\n | \"running\"\n | \"completed\"\n | \"failed\";\nexport type SuppressionStatus = \"active\" | \"archived\";\nexport type SuppressionTargetType = \"email\" | \"domain\" | \"contact\" | \"phone\";\nexport type SuppressionScopeType = \"store\" | \"campaign\";\nexport type SuppressionReason =\n | \"manual\"\n | \"unsubscribed\"\n | \"bounced\"\n | \"complained\"\n | \"replied\";\nexport type SuppressionSource = \"admin\" | \"import\" | \"reply\" | \"system\";\nexport type WorkflowStatus = \"active\" | \"draft\" | \"archived\";\nexport type PromoCodeStatus = \"active\" | \"draft\" | \"archived\";\nexport type CollectionStatus = \"active\" | \"draft\" | \"archived\";\nexport type EntryStatus = \"active\" | \"draft\" | \"archived\";\nexport type EmailTemplateStatus = \"active\" | \"draft\" | \"archived\";\n\nexport type FormStatus = \"active\" | \"draft\" | \"archived\";\nexport type TaxonomyStatus = \"active\" | \"draft\" | \"archived\";\n\nexport type OrderCancellationReason =\n | \"admin_rejected\"\n | \"contact_cancelled\"\n | \"payment_failed\"\n | \"expired\"\n | \"other\";\n\nexport type OrderItemStatus =\n | { status: \"pending\"; expires_at: number }\n | { status: \"confirmed\" }\n | { status: \"cancelled\"; reason: OrderCancellationReason };\n\nexport type OrderStatus =\n | \"pending\"\n | \"partially_confirmed\"\n | \"confirmed\"\n | \"partially_cancelled\"\n | \"cancelled\"\n | \"completed\";\n\nexport type OrderPaymentStatus =\n | { status: \"pending\"; at: number }\n | { status: \"requires_action\"; at: number; reason?: string | null }\n | { status: \"processing\"; at: number }\n | { status: \"authorized\"; at: number; amount: number }\n | { status: \"partially_captured\"; at: number; amount: number }\n | { status: \"captured\"; at: number; amount: number }\n | { status: \"partially_refunded\"; at: number; amount: number }\n | { status: \"refunded\"; at: number; amount: number }\n | { status: \"voided\"; at: number; amount: number }\n | { status: \"cancelled\"; at: number; reason?: string | null }\n | { status: \"expired\"; at: number }\n | { status: \"failed\"; at: number; reason?: string | null };\n\nexport interface TimeRange {\n from: number;\n to: number;\n}\n\nexport type BlockSchemaType =\n | \"text\"\n | \"localized_text\"\n | \"number\"\n | \"boolean\"\n | \"date\"\n | \"geo_location\"\n | \"markdown\"\n | \"media\"\n | \"entry\"\n | \"array\"\n | \"object\";\n\nexport interface BlockSchemaProperties {\n min_values?: number | null;\n max_values?: number | null;\n min_length?: number | null;\n max_length?: number | null;\n pattern?: string | null;\n min?: number | null;\n max?: number | null;\n collection_id?: string | null;\n on_delete?: \"restrict\" | \"set_null\" | null;\n}\n\nexport interface BlockSchema {\n id: string;\n key: string;\n type: BlockSchemaType;\n required: boolean;\n properties: BlockSchemaProperties;\n children: BlockSchema[];\n}\n\nexport interface Collection {\n id: string;\n store_id: string;\n key: string;\n schema: BlockSchema[];\n blocks: Block[];\n status: CollectionStatus;\n created_at: number;\n updated_at: number;\n}\n\nexport interface MediaRef {\n media_id: string;\n url?: string | null;\n mime_type?: string | null;\n alt?: string | null;\n}\n\nexport type FieldOperation =\n | \"equals\"\n | \"not_equals\"\n | \"contains\"\n | \"in\"\n | \"greater_than\"\n | \"greater_than_or_equal\"\n | \"less_than\"\n | \"less_than_or_equal\";\n\nexport type EntryBlockQuery =\n | { type: \"text\"; key: string; values: string[] }\n | { type: \"number\"; key: string; operation: FieldOperation; value: number }\n | { type: \"boolean\"; key: string; value: boolean }\n | { type: \"date\"; key: string; operation: FieldOperation; value: number };\n\nexport interface CollectionEntry {\n id: string;\n store_id: string;\n collection_id: string;\n key: string;\n slug: Record<string, string>;\n blocks: Block[];\n status: EntryStatus;\n created_at: number;\n updated_at: number;\n}\n\nexport interface EmailTemplate {\n id: string;\n key: string;\n store_id: string;\n subject: Record<string, string>;\n body: string;\n from_name: string;\n from_email: string;\n reply_to?: string;\n preheader?: string;\n variables: EmailTemplateVariable[];\n sample_data: Record<string, unknown>;\n status: EmailTemplateStatus;\n created_at: number;\n updated_at: number;\n}\n\nexport interface EmailTemplateVariable {\n key: string;\n}\n\nexport interface Form {\n id: string;\n key: string;\n store_id: string;\n schema: FormSchema[];\n status: FormStatus;\n created_at: number;\n updated_at: number;\n}\n\nexport interface FormSubmission {\n id: string;\n form_id: string;\n store_id: string;\n contact_id: string;\n fields: FormField[];\n created_at: number;\n}\n\nexport interface Taxonomy {\n id: string;\n key: string;\n store_id: string;\n parent_id?: string | null;\n schema?: TaxonomySchema[];\n status: TaxonomyStatus;\n created_at: number;\n updated_at: number;\n}\n\nexport interface ServiceDuration {\n duration: number;\n is_pause: boolean;\n}\n\nexport interface WorkingHour {\n from: number;\n to: number;\n}\n\nexport interface WorkingDay {\n day: string;\n working_hours: WorkingHour[];\n}\n\nexport interface SpecificDate {\n date: number;\n working_hours: WorkingHour[];\n}\n\nexport interface ServiceProvider {\n id: string;\n service_id: string;\n provider_id: string;\n store_id: string;\n working_days: WorkingDay[];\n specific_dates: SpecificDate[];\n prices: Price[];\n durations: ServiceDuration[];\n slot_interval: number;\n forms: FormEntry[];\n reminders: number[];\n min_advance: number;\n max_advance: number;\n created_at: number;\n updated_at: number;\n}\n\nexport interface Service {\n id: string;\n key: string;\n slug: Record<string, string>;\n store_id: string;\n blocks: Block[];\n taxonomies: TaxonomyEntry[];\n created_at: number;\n updated_at: number;\n status: ServiceStatus;\n}\n\nexport interface ProviderTimelinePoint {\n timestamp: number;\n booked: number;\n}\n\nexport interface Provider {\n id: string;\n key: string;\n slug: Record<string, string>;\n store_id: string;\n status: ProviderStatus;\n blocks: Block[];\n taxonomies: TaxonomyEntry[];\n timeline: ProviderTimelinePoint[];\n created_at: number;\n updated_at: number;\n}\n\nexport interface WorkflowEdge {\n source: string;\n target: string;\n output: string;\n back_edge: boolean;\n}\n\nexport interface Workflow {\n id: string;\n key: string;\n store_id: string;\n secret: string;\n status: WorkflowStatus;\n nodes: Record<string, WorkflowNode>;\n edges: WorkflowEdge[];\n\n schedule?: string;\n created_at: number;\n updated_at: number;\n}\n\nexport type WorkflowNode =\n | WorkflowTriggerNode\n | WorkflowHttpNode\n | WorkflowDeployWebhookNode\n | WorkflowGoogleDriveUploadNode\n | WorkflowSwitchNode\n | WorkflowTransformNode\n | WorkflowLoopNode;\n\nexport interface WorkflowTriggerNode {\n type: \"trigger\";\n event?: string;\n delay_ms?: number;\n schema?: Block[];\n}\n\nexport interface WorkflowHttpNode {\n type: \"http\";\n method: WorkflowHttpMethod;\n url: string;\n headers?: Record<string, string>;\n body?: any;\n timeout_ms?: number;\n delay_ms?: number;\n retries?: number;\n retry_delay_ms?: number;\n}\n\nexport interface WorkflowDeployWebhookNode {\n type: \"deploy_webhook\";\n build_hook_id: string;\n timeout_ms?: number;\n delay_ms?: number;\n retries?: number;\n retry_delay_ms?: number;\n}\n\nexport type WorkflowAccountType = \"google_drive\";\n\nexport interface WorkflowAccountProfile {\n external_account_id: string;\n display_name: string;\n email?: string | null;\n}\n\nexport interface WorkflowAccount {\n id: string;\n store_id: string;\n key: string;\n type: WorkflowAccountType;\n profile: WorkflowAccountProfile;\n created_at: number;\n updated_at: number;\n}\n\nexport interface WorkflowAccountConnectUrl {\n authorization_url: string;\n state: string;\n}\n\nexport interface WorkflowGoogleDriveUploadNode {\n type: \"google_drive_upload\";\n workflow_account_id: string;\n name: string;\n mime_type: string;\n content?: any;\n parent_folder_id?: string | null;\n timeout_ms?: number;\n delay_ms?: number;\n retries?: number;\n retry_delay_ms?: number;\n}\n\nexport interface WorkflowSwitchRule {\n condition: string;\n}\n\nexport interface WorkflowSwitchNode {\n type: \"switch\";\n rules: WorkflowSwitchRule[];\n delay_ms?: number;\n}\n\nexport interface WorkflowTransformNode {\n type: \"transform\";\n code: string;\n delay_ms?: number;\n}\n\nexport interface WorkflowLoopNode {\n type: \"loop\";\n expression: string;\n delay_ms?: number;\n}\n\nexport type WorkflowHttpMethod = \"get\" | \"post\" | \"put\" | \"patch\" | \"delete\";\n\nexport type ExecutionStatus =\n | \"pending\"\n | \"running\"\n | \"completed\"\n | \"failed\"\n | \"cancelled\";\n\nexport interface NodeResult {\n output: any;\n route: string;\n started_at: number;\n completed_at: number;\n duration_ms: number;\n error?: string;\n}\n\nexport interface WorkflowExecution {\n id: string;\n workflow_id: string;\n store_id: string;\n status: ExecutionStatus;\n input: Record<string, any>;\n results: Record<string, NodeResult>;\n error?: string;\n scheduled_at: number;\n started_at: number;\n completed_at?: number;\n created_at: number;\n updated_at: number;\n}\n\nexport type ContactListType =\n | { type: \"standard\" }\n | { type: \"confirmation\"; confirm_template_id?: string | null }\n | { type: \"paid\" };\n\nexport interface ContactListPlan {\n id: string;\n key: string;\n name: string;\n description?: string | null;\n status: ContactListPlanStatus;\n prices: SubscriptionPrice[];\n payment_provider_id?: string | null;\n created_at: number;\n updated_at: number;\n}\n\nexport type ContactListContentAccessTarget =\n | { type: \"cms_entry\"; entry_id: string }\n | { type: \"cms_collection\"; collection_id: string };\n\nexport interface ContactListContentAccess {\n id: string;\n target: ContactListContentAccessTarget;\n status: ContactListContentAccessStatus;\n created_at: number;\n updated_at: number;\n}\n\nexport interface ContactSessionToken {\n id: string;\n token: string;\n created_at: number;\n}\n\nexport interface ContactVerificationCode {\n code: string;\n created_at: number;\n used: boolean;\n store_id?: string | null;\n}\n\nexport interface PromoUsage {\n promo_code_id: string;\n uses: number;\n}\n\nexport type ChannelType =\n | \"email\"\n | \"phone\"\n | \"whatsapp\"\n | \"instagram\"\n | \"facebook\"\n | \"messenger\"\n | \"linkedin_company\"\n | \"linkedin_person\"\n | \"contact_form\"\n | \"booking_link\"\n | \"telegram\"\n | \"tiktok\"\n | \"youtube\"\n | \"other\";\n\nexport interface ContactChannel {\n type: ChannelType;\n label?: string | null;\n value: string;\n normalized_value?: string | null;\n provider?: string | null;\n provider_user_id?: string | null;\n verified_at?: number | null;\n is_primary?: boolean;\n consent_status?: ContactChannelConsentStatus;\n subscribed_at?: number | null;\n unsubscribed_at?: number | null;\n source_url?: string | null;\n confidence?: number | null;\n notes?: string | null;\n created_at: number;\n updated_at: number;\n}\n\nexport type ContactChannelConsentStatus =\n | \"unknown\"\n | \"subscribed\"\n | \"unsubscribed\"\n | \"bounced\"\n | \"blocked\";\n\nexport interface Contact {\n id: string;\n store_id: string;\n email: string | null;\n verified: boolean;\n status: ContactStatus;\n channels: ContactChannel[];\n promo_usage: PromoUsage[];\n taxonomies: TaxonomyEntry[];\n auth_tokens: ContactSessionToken[];\n verification_codes: ContactVerificationCode[];\n created_at: number;\n updated_at: number;\n}\n\nexport interface ContactListAccessResponse {\n has_access: boolean;\n membership?: ContactListMembership | null;\n}\n\nexport interface ContactListContentAccessResponse {\n has_access: boolean;\n contact_list?: ContactList | null;\n membership?: ContactListMembership | null;\n}\n\nexport interface ContactListSubscribeResponse {\n checkout_url?: string | null;\n payment_action: CheckoutPaymentAction;\n membership?: ContactListMembership | null;\n}\n\nexport interface ContactList {\n id: string;\n store_id: string;\n key: string;\n name: string;\n description?: string | null;\n status: ContactListStatus;\n type: ContactListType;\n plans: ContactListPlan[];\n content_access: ContactListContentAccess[];\n source: ContactListSource;\n member_count: number;\n created_at: number;\n updated_at: number;\n}\n\nexport interface ContactListMembership {\n id: string;\n store_id: string;\n contact_id: string;\n contact_list_id: string;\n source: ContactListSource;\n fields: Record<string, unknown>;\n lead_description?: string | null;\n lead?: LeadInsight | null;\n status: ContactListMembershipStatus;\n plan_id: string;\n pending_plan_id: string | null;\n payment: ContactListMembershipPayment;\n provider_cancellation: ContactListMembershipProviderCancellation;\n start_date: number;\n end_date: number;\n token: string;\n created_at: number;\n updated_at: number;\n}\n\nexport interface ContactListMember {\n contact: Contact;\n membership: ContactListMembership;\n}\n\nexport interface ActionLocation {\n country_code?: string | null;\n city?: string | null;\n region?: string | null;\n timezone?: string | null;\n}\n\nexport interface ActionDevice {\n device_type?: string | null;\n browser?: string | null;\n os?: string | null;\n language?: string | null;\n}\n\nexport interface ActionSession {\n idx?: number | null;\n}\n\nexport interface ActionContext {\n location?: ActionLocation | null;\n device?: ActionDevice | null;\n session?: ActionSession | null;\n}\n\nexport interface SocialActionAuthor {\n provider_user_id?: string | null;\n name?: string | null;\n handle?: string | null;\n}\n\nexport type OpportunityType =\n | \"lead\"\n | \"support\"\n | \"complaint\"\n | \"question\"\n | \"upsell\"\n | \"partnership\"\n | \"engagement\";\n\nexport type OpportunityStage =\n | \"new\"\n | \"reviewing\"\n | \"contacted\"\n | \"won\"\n | \"lost\"\n | \"dismissed\";\n\nexport type OpportunitySource =\n | {\n type: \"social_comment\";\n publication_id: string;\n comment_id: string;\n action_id?: string | null;\n }\n | {\n type: \"form_submission\";\n form_id: string;\n submission_id: string;\n }\n | {\n type: \"tracked\";\n key: string;\n action_id?: string | null;\n }\n | { type: \"manual\" };\n\nexport type ActionData =\n | {\n type: \"tracked\";\n value: {\n key: string;\n payload: Record<string, unknown>;\n context?: ActionContext | null;\n };\n }\n | {\n type: \"form_submission\";\n value: {\n form_id: string;\n form_key: string;\n submission_id: string;\n field_keys: string[];\n context?: ActionContext | null;\n };\n }\n | {\n type: \"social_comment\";\n value: {\n social_account_id: string;\n provider_type: SocialProviderType;\n publication_id: string;\n comment_id: string;\n provider_comment_id: string;\n provider_parent_comment_id?: string | null;\n author: SocialActionAuthor;\n text: string;\n };\n }\n | {\n type: \"social_reply\";\n value: {\n social_account_id: string;\n provider_type: SocialProviderType;\n publication_id: string;\n comment_id: string;\n provider_comment_id?: string | null;\n provider_comment_url?: string | null;\n text: string;\n };\n }\n | {\n type: \"order\";\n value: {\n order_id: string;\n status: string;\n total?: number | null;\n };\n }\n | {\n type: \"campaign_reply\";\n value: {\n campaign_id: string;\n enrollment_id: string;\n message_id: string;\n text: string;\n };\n }\n | {\n type: \"direct_message\";\n value: {\n social_account_id: string;\n provider_type: SocialProviderType;\n thread_id: string;\n message_id: string;\n text: string;\n };\n }\n | {\n type: \"manual\";\n value: {\n text: string;\n account_id?: string | null;\n };\n }\n | {\n type: \"opportunity\";\n value: {\n type: OpportunityType;\n stage: OpportunityStage;\n score?: number | null;\n reason?: string | null;\n suggested_next_action?: string | null;\n source: OpportunitySource;\n lead?: LeadInsight | null;\n };\n };\n\nexport interface Action {\n id: string;\n store_id: string;\n contact_id: string;\n key: string;\n type: ActionData[\"type\"];\n preview_text?: string | null;\n occurred_at: number;\n created_at: number;\n updated_at: number;\n data: ActionData;\n}\n\nexport interface Mailbox {\n id: string;\n store_id: string;\n key: string;\n email: string;\n from_name: string;\n reply_to_email?: string | null;\n provider: SmtpImapMailboxProvider;\n status: MailboxStatus;\n daily_limit: number;\n sent_today: number;\n last_sent_at?: number | null;\n created_at: number;\n updated_at: number;\n}\n\nexport interface OutreachStep {\n id?: string;\n position?: number;\n delay_seconds?: number;\n type?: OutreachStepType;\n}\n\nexport interface OutreachPersonalizationCounters {\n total_contacts: number;\n draft_messages: number;\n generated_messages: number;\n template_messages: number;\n failed_messages: number;\n}\n\nexport interface OutreachPersonalizationState {\n status: OutreachPersonalizationStatus;\n step_position?: number | null;\n contact_ids: string[];\n overwrite: boolean;\n instructions?: string | null;\n error?: string | null;\n counters: OutreachPersonalizationCounters;\n started_at?: number | null;\n completed_at?: number | null;\n}\n\nexport interface Campaign {\n id: string;\n store_id: string;\n key: string;\n name: string;\n mailbox_ids: string[];\n status: CampaignStatus;\n steps: OutreachStep[];\n personalization: OutreachPersonalizationState;\n launched_at?: number | null;\n created_at: number;\n updated_at: number;\n}\n\nexport interface CampaignLaunchReadiness {\n ready: boolean;\n blockers: string[];\n warnings: string[];\n contact_count: number;\n sender_count: number;\n step_count: number;\n daily_capacity: number;\n expected_drafts: number;\n draft_count: number;\n pending_drafts: number;\n generated_drafts: number;\n template_drafts: number;\n edited_drafts: number;\n personalization_errors: number;\n stale_drafts: number;\n suppression_count: number;\n}\n\nexport interface CampaignEnrollmentImportResult {\n imported_count: number;\n existing_count: number;\n skipped_count: number;\n draft_count: number;\n}\n\nexport interface CampaignEnrollment {\n id: string;\n store_id: string;\n campaign_id: string;\n contact_id: string;\n contact_list_membership_id?: string | null;\n import_source: CampaignEnrollmentImportSource;\n import_source_id?: string | null;\n imported_at?: number | null;\n mailbox_id?: string | null;\n lead_description?: string | null;\n fields: Record<string, unknown>;\n status: CampaignEnrollmentStatus;\n current_step_position: number;\n next_action_at?: number | null;\n created_at: number;\n updated_at: number;\n}\n\nexport interface CampaignMessage {\n id: string;\n store_id: string;\n campaign_id: string;\n campaign_enrollment_id: string;\n contact_id: string;\n mailbox_id: string;\n direction: CampaignMessageDirection;\n type: CampaignMessageType;\n step_id?: string | null;\n step_position?: number | null;\n template_copy_hash?: string | null;\n copy_source: CampaignMessageCopySource;\n personalized_at?: number | null;\n edited_at?: number | null;\n personalization_error?: string | null;\n in_reply_to_message_id?: string | null;\n status: CampaignMessageStatus;\n to_email: string;\n from_email: string;\n subject: string;\n body: string;\n body_html?: string | null;\n template_id?: string | null;\n template_vars: Record<string, unknown>;\n rendered_subject?: string | null;\n rendered_html?: string | null;\n rendered_text?: string | null;\n attachments: string[];\n target_channel_type?: ChannelType | null;\n resolved_channel?: ContactChannel | null;\n title?: string | null;\n instructions?: string | null;\n suggested_message?: string | null;\n external_url?: string | null;\n continue_behavior?: ManualTaskContinueBehavior | null;\n outcome?: CampaignManualTaskOutcome | null;\n note?: string | null;\n provider_message_id?: string | null;\n provider_thread_id?: string | null;\n error?: string | null;\n due_at?: number | null;\n completed_at?: number | null;\n sent_at?: number | null;\n received_at?: number | null;\n created_at: number;\n updated_at: number;\n}\n\nexport interface CampaignEnrollmentConversationResponse {\n enrollment: CampaignEnrollment;\n messages: CampaignMessage[];\n}\n\nexport interface Suppression {\n id: string;\n store_id: string;\n campaign_id?: string | null;\n contact_id?: string | null;\n email?: string | null;\n domain?: string | null;\n target_type: SuppressionTargetType;\n target_key: string;\n scope_type: SuppressionScopeType;\n scope_key: string;\n reason: SuppressionReason;\n status: SuppressionStatus;\n source: SuppressionSource;\n created_at: number;\n updated_at: number;\n}\n\nexport type LeadResearchRunStatus =\n | \"draft\"\n | \"running\"\n | \"completed\"\n | \"failed\"\n | \"cancelled\";\n\nexport type LeadEmailClassification =\n | \"official_domain\"\n | \"role_official\"\n | \"personal_official\"\n | \"free_mail\"\n | \"unusable\"\n | \"unknown\";\n\nexport type LeadValidationCheckStatus =\n | \"passed\"\n | \"warning\"\n | \"failed\"\n | \"unknown\";\n\nexport type CampaignRoute =\n | \"email_only\"\n | \"email_manual_followup\"\n | \"manual_only\"\n | \"needs_review\";\n\nexport interface LeadScores {\n fit: number;\n problem: number;\n channel: number;\n intent: number;\n data_quality: number;\n}\n\nexport interface ChannelMessage {\n type: ChannelType;\n subject?: string | null;\n body: string;\n}\n\nexport interface LeadInsight {\n company?: string | null;\n contact_name?: string | null;\n website?: string | null;\n industry?: string | null;\n location?: string | null;\n description?: string | null;\n pain_points: string[];\n fit_reason?: string | null;\n scores: LeadScores;\n best_channel?: ChannelType | null;\n backup_channel?: ChannelType | null;\n route: CampaignRoute;\n first_messages: ChannelMessage[];\n run_id?: string | null;\n source_url?: string | null;\n source_excerpt?: string | null;\n reasoning_summary?: string | null;\n}\n\nexport interface LeadResearchRun {\n id: string;\n store_id: string;\n contact_list_id: string;\n title?: string | null;\n status: LeadResearchRunStatus;\n error?: string | null;\n started_at?: number | null;\n completed_at?: number | null;\n created_at: number;\n updated_at: number;\n}\n\nexport interface LeadValidationCheck {\n key: string;\n status: LeadValidationCheckStatus;\n message: string;\n}\n\nexport interface LeadEmailValidationResult {\n email: string;\n normalized_email?: string | null;\n domain?: string | null;\n classification: LeadEmailClassification;\n confidence: number;\n importable: boolean;\n hard_blockers: string[];\n checks: LeadValidationCheck[];\n}\n\nexport type LeadResearchMessageRole =\n | \"system\"\n | \"user\"\n | \"assistant\"\n | \"action\"\n | \"tool\";\n\nexport interface LeadResearchMessage {\n id: string;\n role: LeadResearchMessageRole;\n content: string;\n metadata?: Record<string, unknown> | null;\n created_at: number;\n}\n\nexport interface ResearchContactListMember {\n contact: Contact;\n membership: ContactListMembership;\n}\n\nexport interface SendLeadResearchMessageResult {\n response: string;\n run: LeadResearchRun;\n contact_list_members: ResearchContactListMember[];\n}\n\nexport type EventAction =\n | { action: \"order_created\" }\n | { action: \"order_updated\" }\n | { action: \"order_confirmed\" }\n | {\n action: \"order_payment_received\";\n data: { amount: number; currency: string };\n }\n | { action: \"order_payment_failed\"; data: { reason?: string } }\n | {\n action: \"order_refunded\";\n data: { amount: number; currency: string; reason?: string };\n }\n | { action: \"order_cancelled\"; data: { reason?: string } }\n | { action: \"order_shipment_created\"; data: { shipment_id: string } }\n | { action: \"order_shipment_in_transit\"; data: { shipment_id: string } }\n | { action: \"order_shipment_out_for_delivery\"; data: { shipment_id: string } }\n | { action: \"order_shipment_delivered\"; data: { shipment_id: string } }\n | {\n action: \"order_shipment_failed\";\n data: { shipment_id: string; reason?: string };\n }\n | { action: \"order_shipment_returned\"; data: { shipment_id: string } }\n | {\n action: \"order_shipment_status_changed\";\n data: { shipment_id: string; from: string; to: string };\n }\n | { action: \"product_created\" }\n | { action: \"product_updated\" }\n | { action: \"product_deleted\" }\n | { action: \"collection_created\" }\n | { action: \"collection_updated\" }\n | { action: \"collection_deleted\" }\n | { action: \"entry_created\" }\n | { action: \"entry_updated\" }\n | { action: \"entry_deleted\" }\n | { action: \"provider_created\" }\n | { action: \"provider_updated\" }\n | { action: \"provider_deleted\" }\n | { action: \"service_created\" }\n | { action: \"service_updated\" }\n | { action: \"service_deleted\" }\n | { action: \"account_created\" }\n | { action: \"account_updated\" }\n | { action: \"account_deleted\" }\n | { action: \"media_created\" }\n | { action: \"media_deleted\" }\n | { action: \"store_created\" }\n | { action: \"store_updated\" }\n | { action: \"store_deleted\" }\n | { action: \"contact_list_created\" }\n | { action: \"contact_list_updated\" }\n | { action: \"contact_list_contact_added\" }\n | { action: \"contact_list_contact_removed\" }\n | { action: \"contact_list_contact_pending\" }\n | { action: \"contact_list_contact_confirmed\" }\n | { action: \"contact_list_contact_cancelled\" };\n\nexport interface Event {\n id: string;\n entity: string;\n event: EventAction;\n actor: string;\n created_at: number;\n}\n\nexport type ShippingStatus =\n | \"pending\"\n | \"label_created\"\n | \"in_transit\"\n | \"out_for_delivery\"\n | \"delivered\"\n | \"failed\"\n | \"returned\";\n\nexport interface OrderShipping {\n carrier: string;\n service: string;\n tracking_number?: string | null;\n tracking_url?: string | null;\n label_url?: string | null;\n status: ShippingStatus;\n}\n\nexport interface ShipmentLine {\n order_item_id: string;\n fulfillment_order_line_id?: string | null;\n quantity: number;\n}\n\nexport type ShippingLabelPurchaseStatus =\n | \"requested\"\n | \"merchant_recovery_processing\"\n | \"merchant_recovery_succeeded\"\n | \"merchant_recovery_failed\"\n | \"label_purchase_processing\"\n | \"purchased\"\n | \"label_purchase_failed\"\n | \"merchant_credit_processing\"\n | \"failed_merchant_credited\"\n | \"merchant_credit_failed\"\n | \"unknown\";\n\nexport type MerchantRecoveryStatus = \"processing\" | \"succeeded\" | \"failed\" | \"unknown\";\nexport type MerchantCreditStatus = \"processing\" | \"succeeded\" | \"failed\" | \"unknown\";\n\nexport type ShippingLabelPurchaseError =\n | {\n type: \"provider_rejected\";\n message: string;\n provider_code?: string | null;\n provider_status?: number | null;\n at: number;\n }\n | {\n type: \"unknown_outcome\";\n message: string;\n at: number;\n }\n | {\n type: \"missing_configuration\";\n message: string;\n at: number;\n };\n\nexport type MerchantRecovery = {\n type: \"stripe_connect_account_debit\";\n payment_provider_id: string;\n connected_account_id: string;\n stripe_payment_id?: string | null;\n amount: number;\n currency: string;\n status: MerchantRecoveryStatus;\n error?: ShippingLabelPurchaseError | null;\n};\n\nexport type MerchantCreditReason =\n | \"shipping_label_purchase_failed\"\n | \"shipping_label_refund_succeeded\"\n | \"shipping_label_negative_adjustment\";\n\nexport type MerchantCredit = {\n type: \"stripe_connect_transfer\";\n payment_provider_id: string;\n connected_account_id: string;\n stripe_transfer_id?: string | null;\n amount: number;\n currency: string;\n reason: MerchantCreditReason;\n status: MerchantCreditStatus;\n error?: ShippingLabelPurchaseError | null;\n};\n\nexport type ShippingLabelProviderPurchase = {\n type: \"shippo\";\n transaction_id?: string | null;\n rate_id: string;\n tracking_number?: string | null;\n tracking_url?: string | null;\n label_url?: string | null;\n carrier?: string | null;\n service?: string | null;\n};\n\nexport type ShippingLabelRefundStatus =\n | \"requested\"\n | \"provider_pending\"\n | \"provider_rejected\"\n | \"merchant_credit_processing\"\n | \"succeeded\"\n | \"merchant_credit_failed\"\n | \"unknown\";\n\nexport type ShippingLabelProviderRefund = {\n type: \"shippo\";\n refund_id?: string | null;\n transaction_id: string;\n status: string;\n};\n\nexport interface ShippingLabelRefund {\n id: string;\n status: ShippingLabelRefundStatus;\n requested_amount?: number | null;\n approved_amount?: number | null;\n currency?: string | null;\n provider_refund?: ShippingLabelProviderRefund | null;\n merchant_credit?: MerchantCredit | null;\n error?: ShippingLabelPurchaseError | null;\n requested_at: number;\n updated_at: number;\n}\n\nexport type ShippingLabelAdjustmentStatus =\n | \"requested\"\n | \"merchant_recovery_processing\"\n | \"merchant_recovery_succeeded\"\n | \"merchant_recovery_failed\"\n | \"merchant_credit_processing\"\n | \"merchant_credit_succeeded\"\n | \"merchant_credit_failed\"\n | \"unknown\";\n\nexport interface ShippingLabelAdjustment {\n id: string;\n provider_adjustment_id?: string | null;\n amount: number;\n currency: string;\n reason: string;\n status: ShippingLabelAdjustmentStatus;\n merchant_recovery?: MerchantRecovery | null;\n merchant_credit?: MerchantCredit | null;\n error?: ShippingLabelPurchaseError | null;\n created_at: number;\n updated_at: number;\n}\n\nexport interface ShippingLabelPurchase {\n id: string;\n rate_id: string;\n status: ShippingLabelPurchaseStatus;\n postage_amount?: number | null;\n fee_amount: number;\n total_amount?: number | null;\n currency?: string | null;\n provider_purchase?: ShippingLabelProviderPurchase | null;\n merchant_recovery?: MerchantRecovery | null;\n merchant_credit?: MerchantCredit | null;\n refund?: ShippingLabelRefund | null;\n adjustments: ShippingLabelAdjustment[];\n error?: ShippingLabelPurchaseError | null;\n created_at: number;\n updated_at: number;\n}\n\nexport interface Shipment {\n id: string;\n fulfillment_order_id?: string | null;\n location_id: string;\n rate_id?: string | null;\n lines: ShipmentLine[];\n carrier?: string | null;\n service?: string | null;\n tracking_number?: string | null;\n tracking_url?: string | null;\n label_url?: string | null;\n status: ShippingStatus;\n shipping_label_purchase?: ShippingLabelPurchase | null;\n created_at: number;\n updated_at: number;\n}\n\nexport interface ShippingRate {\n id: string;\n carrier: string;\n service: string;\n display_name: string;\n amount: number;\n currency: string;\n estimated_days?: number | null;\n}\n\nexport interface Parcel {\n length: number;\n width: number;\n height: number;\n weight: number;\n distance_unit: \"in\" | \"cm\";\n mass_unit: \"oz\" | \"lb\" | \"g\" | \"kg\";\n}\n\nexport interface PurchaseLabelResult {\n transaction_id?: string | null;\n tracking_number: string;\n tracking_url?: string | null;\n label_url: string;\n carrier: string;\n service: string;\n postage_amount?: number | null;\n postage_currency?: string | null;\n}\n\nexport interface ShipResult {\n shipment_id: string;\n tracking_number?: string | null;\n tracking_url?: string | null;\n label_url?: string | null;\n}\n\nexport interface CustomsItem {\n description: string;\n quantity: number;\n net_weight: string;\n mass_unit: string;\n value_amount: string;\n value_currency: string;\n origin_country: string;\n tariff_number?: string | null;\n}\n\nexport interface CustomsDeclaration {\n contents_type: string;\n contents_explanation?: string | null;\n non_delivery_option: string;\n certify: boolean;\n certify_signer: string;\n items: CustomsItem[];\n}\n\nexport interface PromoCode {\n id: string;\n store_id: string;\n code: string;\n discounts: import(\"./api\").Discount[];\n conditions: import(\"./api\").Condition[];\n status: PromoCodeStatus;\n uses: number;\n created_at: number;\n updated_at: number;\n}\n"]}
|
|
1
|
+
{"version":3,"sources":["../src/types/index.ts"],"names":["PaymentMethodType"],"mappings":";;;AA0CO,IAAK,iBAAA,qBAAAA,kBAAAA,KAAL;AACL,EAAAA,mBAAA,MAAA,CAAA,GAAO,MAAA;AACP,EAAAA,mBAAA,YAAA,CAAA,GAAa,aAAA;AAFH,EAAA,OAAAA,kBAAAA;AAAA,CAAA,EAAA,iBAAA,IAAA,EAAA","file":"types.cjs","sourcesContent":["export * from \"./api\";\n\nexport type Currency =\n | \"usd\"\n | \"eur\"\n | \"gbp\"\n | \"jpy\"\n | \"cny\"\n | \"chf\"\n | \"aud\"\n | \"cad\"\n | \"hkd\"\n | \"sgd\"\n | \"nzd\"\n | \"krw\"\n | \"sek\"\n | \"nok\"\n | \"dkk\"\n | \"inr\"\n | \"mxn\"\n | \"brl\"\n | \"zar\"\n | \"rub\"\n | \"try\"\n | \"pln\"\n | \"thb\"\n | \"idr\"\n | \"myr\"\n | \"php\"\n | \"czk\"\n | \"ils\"\n | \"aed\"\n | \"sar\"\n | \"huf\"\n | \"ron\"\n | \"bgn\"\n | \"hrk\"\n | \"bam\"\n | \"rsd\"\n | \"mkd\"\n | \"all\";\n\nexport enum PaymentMethodType {\n Cash = \"cash\",\n CreditCard = \"credit_card\",\n}\n\nexport interface OrderPaymentTax {\n amount: number;\n mode_snapshot?: string;\n rate_bps: number;\n lines: OrderPaymentTaxLine[];\n}\n\nexport interface OrderPaymentTaxLine {\n rate_bps: number;\n amount: number;\n label?: string;\n scope?: string;\n}\n\nexport interface OrderPaymentPromoCode {\n id: string;\n code: string;\n type: string;\n value: number;\n}\n\nexport type PaymentTransactionProvider = \"manual\" | \"stripe\";\nexport type PaymentTransactionType =\n | \"create\"\n | \"authorize\"\n | \"capture\"\n | \"sale\"\n | \"cancel\"\n | \"refund\"\n | \"mark_paid\";\nexport type PaymentTransactionRequestType =\n \"create_payment\" | \"confirm_payment\" | \"cancel_payment\";\nexport type PaymentTransactionStatus =\n | \"requested\"\n | \"requires_action\"\n | \"processing\"\n | \"succeeded\"\n | \"rejected\"\n | \"failed\"\n | \"unknown\"\n | \"cancelled\";\n\nexport interface PaymentTransaction {\n id: string;\n store_id: string;\n payment_id: string;\n order_id: string;\n parent_transaction_id?: string | null;\n type: PaymentTransactionType;\n request?: PaymentTransactionRequestType | null;\n status: PaymentTransactionStatus;\n revision: number;\n attempt_count: number;\n amount: number;\n currency: Currency;\n provider: PaymentTransactionProvider;\n requested_at?: number | null;\n processing_started_at?: number | null;\n processing_deadline_at?: number | null;\n completed_at?: number | null;\n created_at: number;\n updated_at: number;\n safe_error?: string | null;\n}\n\nexport interface OrderRefund {\n id: string;\n store_id: string;\n order_id: string;\n revision: number;\n attempt_count: number;\n total: number;\n currency: Currency;\n provider: PaymentTransactionProvider;\n status: import(\"./api\").RefundStatus;\n safe_error?: string | null;\n requested_at: number;\n processing_started_at?: number | null;\n processing_deadline_at?: number | null;\n completed_at?: number | null;\n created_at: number;\n updated_at: number;\n}\n\nexport interface OrderPayment {\n id: string;\n store_id: string;\n order_id: string;\n status: OrderPaymentStatus;\n amount: number;\n currency: Currency;\n paid: number;\n authorized_amount: number;\n captured_amount: number;\n refunded_amount: number;\n voided_amount: number;\n method_type: PaymentMethodType;\n latest_transaction_id?: string | null;\n created_at: number;\n updated_at: number;\n}\n\nexport interface OrderMoney {\n currency: Currency;\n market: string;\n subtotal: number;\n shipping: number;\n discount: number;\n total: number;\n tax?: OrderPaymentTax | null;\n promo_code?: OrderPaymentPromoCode | null;\n zone_id?: string | null;\n payment_method_key?: string | null;\n shipping_method_id?: string | null;\n method_type: PaymentMethodType;\n}\n\nexport interface OrderFinancialSummary {\n status: OrderPaymentSummaryStatus;\n paid: number;\n authorized_amount: number;\n captured_amount: number;\n refunded_amount: number;\n voided_amount: number;\n updated_at: number;\n}\n\nexport interface PromoCodeValidation {\n promo_code_id: string;\n code: string;\n discounts: import(\"./api\").Discount[];\n conditions: import(\"./api\").Condition[];\n}\n\nexport interface OrderQuote {\n id?: string;\n expires_at?: number;\n market: string;\n zone: Zone | null;\n items: QuoteLine[];\n shipping_lines: ShippingLine[];\n subtotal: number;\n shipping: number;\n discount: number;\n tax: number;\n total: number;\n shipping_method: ShippingMethod | null;\n payment_method: PaymentMethod | null;\n payment_methods: PaymentMethod[];\n promo_code: PromoCodeValidation | null;\n money: OrderMoney;\n charge_amount: number;\n}\n\nexport interface Price {\n currency: Currency;\n market: string;\n amount: number;\n compare_at?: number;\n contact_list_id?: string;\n}\n\nexport type IntervalPeriod = \"month\" | \"year\";\n\nexport interface SubscriptionInterval {\n period: IntervalPeriod;\n count: number;\n}\n\nexport interface PriceProvider {\n type: \"stripe\";\n id: string;\n}\n\nexport interface SubscriptionPrice {\n currency: Currency;\n amount: number;\n compare_at?: number;\n interval?: SubscriptionInterval;\n providers: PriceProvider[];\n}\n\nexport interface Address {\n name?: string | null;\n company?: string | null;\n street1?: string | null;\n street2?: string | null;\n city?: string | null;\n state?: string | null;\n postal_code?: string | null;\n country?: string | null;\n phone?: string | null;\n email?: string | null;\n}\n\nexport interface Coordinates {\n lat: number;\n lon: number;\n}\n\nexport interface GeoLocation {\n coordinates?: Coordinates | null;\n label?: string | null;\n}\n\nexport interface ZoneLocation {\n country?: string | null;\n state?: string | null;\n city?: string | null;\n postal_code?: string | null;\n}\n\nexport interface EshopCartItem {\n id: string;\n product_id: string;\n variant_id: string;\n product_name: string;\n product_slug: string;\n variant_attributes: Record<string, any>;\n requires_shipping: boolean;\n price: Price;\n quantity: number;\n added_at: number;\n max_stock?: number;\n}\n\nexport type CartStatus = \"active\" | \"abandoned\" | \"converted\" | \"expired\";\nexport type CartOrigin = \"storefront\" | \"admin\";\n\nexport interface Cart {\n id: string;\n store_id: string;\n contact_id: string;\n token: string;\n status: CartStatus;\n origin: CartOrigin;\n created_by_account_id?: string | null;\n market: string;\n items: import(\"./api\").OrderCheckoutItemInput[];\n shipping_address?: Address | null;\n billing_address?: Address | null;\n forms: FormEntry[];\n promo_code?: string | null;\n payment_method_key?: string | null;\n shipping_method_id?: string | null;\n quote_snapshot?: OrderQuote | null;\n converted_order_id?: string | null;\n item_count: number;\n last_action_at: number;\n abandoned_at?: number | null;\n recovery_sent_at?: number | null;\n created_at: number;\n updated_at: number;\n}\n\nexport interface SocialConnectionCredential {\n expires_at: number | null;\n scopes: string[];\n}\n\nexport interface SocialDestinationMetadata {\n external_account_id: string;\n external_account_name: string;\n handle: string | null;\n avatar_url: string | null;\n}\n\nexport type SocialConnectionType =\n | \"facebook_page\"\n | \"instagram_business\"\n | \"youtube_channel\"\n | \"tiktok_account\"\n | \"x_account\";\n\nexport interface SocialConnectionProviderData {\n credential: SocialConnectionCredential;\n destination: SocialDestinationMetadata;\n}\n\nexport type SocialConnectionData = SocialConnectionProviderData;\n\nexport type SocialPublicationStatus =\n | \"draft\"\n | \"scheduled\"\n | \"publishing\"\n | \"published\"\n | \"failed\"\n | \"unknown\"\n | \"cancelled\";\n\nexport type YoutubePrivacy = \"public\" | \"unlisted\" | \"private\";\nexport type TiktokPrivacy = \"public\" | \"friends\" | \"private\";\nexport type InstagramPlacement = \"feed\" | \"reel\" | \"story\";\n\nexport interface FacebookPageContent {\n type: \"facebook_page\";\n text?: string | null;\n media_ids: string[];\n link_url?: string | null;\n}\n\nexport interface InstagramBusinessContent {\n type: \"instagram_business\";\n placement?: InstagramPlacement | null;\n share_to_feed?: boolean | null;\n caption?: string | null;\n media_ids: string[];\n}\n\nexport interface YoutubeChannelContent {\n type: \"youtube_channel\";\n title: string;\n description?: string | null;\n video_media_id: string;\n privacy: YoutubePrivacy;\n}\n\nexport interface TiktokAccountContent {\n type: \"tiktok_account\";\n caption?: string | null;\n video_media_id: string;\n privacy: TiktokPrivacy;\n}\n\nexport interface XAccountContent {\n type: \"x_account\";\n text?: string | null;\n media_ids: string[];\n}\n\nexport type SocialPublicationContent =\n | FacebookPageContent\n | InstagramBusinessContent\n | YoutubeChannelContent\n | TiktokAccountContent\n | XAccountContent;\n\nexport interface ValidationError {\n field: string;\n error: string;\n}\n\nexport interface SocialPublicationValidation {\n valid: boolean;\n errors: ValidationError[];\n warnings: ValidationError[];\n}\n\nexport interface SocialPublication {\n id: string;\n store_id: string;\n social_connection_id: string;\n key: string;\n status: SocialPublicationStatus;\n content: SocialPublicationContent;\n scheduled_at: number;\n published_at?: number | null;\n provider_post_id?: string | null;\n provider_post_url?: string | null;\n error_code?: string | null;\n error_message?: string | null;\n attempt_count: number;\n last_attempt_at?: number | null;\n created_at: number;\n updated_at: number;\n}\n\nexport interface SocialPublicationMutationResponse {\n publication: SocialPublication;\n validation: SocialPublicationValidation;\n publish_requested: boolean;\n}\n\nexport type SocialPublicationCommentStatus =\n \"open\" | \"replied\" | \"hidden\" | \"deleted\";\n\nexport type SocialPublicationCommentIntent =\n \"lead\" | \"support\" | \"complaint\" | \"question\" | \"praise\" | \"spam\" | \"general\";\n\nexport type SocialPublicationCommentPriority =\n \"urgent\" | \"high\" | \"normal\" | \"low\";\n\nexport interface SocialPublicationComment {\n id: string;\n store_id: string;\n publication_id: string;\n social_connection_id: string;\n type: SocialConnectionType;\n provider_post_id?: string | null;\n provider_comment_id: string;\n provider_parent_comment_id?: string | null;\n parent_comment_id?: string | null;\n root_comment_id?: string | null;\n depth: number;\n provider_reply_count?: number | null;\n synced_reply_count: number;\n has_more_replies: boolean;\n thread_last_synced_at?: number | null;\n author_is_channel: boolean;\n contact_id?: string | null;\n action_id?: string | null;\n opportunity_action_id?: string | null;\n author_name?: string | null;\n author_handle?: string | null;\n author_provider_user_id?: string | null;\n text: string;\n status: SocialPublicationCommentStatus;\n provider_created_at?: number | null;\n last_synced_at: number;\n replied_at?: number | null;\n classification_intent?: SocialPublicationCommentIntent | null;\n classification_priority?: SocialPublicationCommentPriority | null;\n classification_confidence?: number | null;\n classification_summary?: string | null;\n classification_reason?: string | null;\n suggested_reply?: string | null;\n classified_at?: number | null;\n classification_model?: string | null;\n created_at: number;\n updated_at: number;\n}\n\nexport interface SocialPublicationMetricSnapshot {\n id: string;\n store_id: string;\n publication_id: string;\n social_connection_id: string;\n type: SocialConnectionType;\n provider_post_id?: string | null;\n metrics: Record<string, number>;\n collected_at: number;\n created_at: number;\n updated_at: number;\n}\n\nexport type SocialCommentReplyStatus =\n \"requested\" | \"processing\" | \"succeeded\" | \"rejected\" | \"failed\" | \"unknown\";\n\nexport type SocialCommentReplyError =\n | { type: \"provider_call_not_started\"; message: string; at: number }\n | {\n type: \"provider_rejected\";\n message: string;\n provider_code?: string | null;\n provider_status?: number | null;\n at: number;\n }\n | { type: \"unknown_outcome\"; message: string; at: number };\n\nexport interface SocialCommentReplyEvidence {\n provider_comment_id: string;\n provider_comment_url?: string | null;\n}\n\nexport interface SocialCommentReply {\n id: string;\n store_id: string;\n publication_id: string;\n comment_id: string;\n social_connection_id: string;\n text: string;\n status: SocialCommentReplyStatus;\n requested_at: number;\n processing_started_at?: number | null;\n processing_deadline_at?: number | null;\n completed_at?: number | null;\n evidence?: SocialCommentReplyEvidence | null;\n error?: SocialCommentReplyError | null;\n}\n\nexport interface SocialPublicationCommentReplyResponse {\n comment: SocialPublicationComment;\n reply: SocialCommentReply;\n}\n\nexport type SocialPublicationEffectStatus =\n \"requested\" | \"processing\" | \"succeeded\" | \"rejected\" | \"failed\" | \"unknown\";\n\nexport type SocialPublicationEffectError =\n | { type: \"provider_call_not_started\"; message: string; at: number }\n | {\n type: \"provider_rejected\";\n message: string;\n provider_code?: string | null;\n provider_status?: number | null;\n at: number;\n }\n | { type: \"unknown_outcome\"; message: string; at: number };\n\nexport type SocialPublicationEffectRequest =\n | {\n type: \"x_upload_media\";\n media_id: string;\n uploaded_media_ids: string[];\n }\n | { type: \"x_publish_post\"; uploaded_media_ids: string[] }\n | {\n type: \"facebook_create_unpublished_photo\";\n media_id: string;\n unpublished_photo_ids: string[];\n }\n | {\n type: \"facebook_publish_post\";\n unpublished_photo_ids: string[];\n }\n | {\n type: \"instagram_create_media_container\";\n media_id: string;\n placement: InstagramPlacement;\n carousel_item: boolean;\n child_container_ids: string[];\n }\n | {\n type: \"instagram_create_carousel_container\";\n child_container_ids: string[];\n }\n | {\n type: \"instagram_publish_container\";\n container_id: string;\n container_media_id?: string | null;\n }\n | { type: \"youtube_initialize_upload\"; media_id: string }\n | {\n type: \"youtube_upload\";\n media_id: string;\n total_bytes: number;\n has_upload_session: boolean;\n }\n | { type: \"tiktok_initialize_upload\"; media_id: string }\n | {\n type: \"tiktok_upload\";\n media_id: string;\n publish_id: string;\n total_bytes: number;\n has_upload_session: boolean;\n };\n\nexport interface SocialPublicationEffectEvidence {\n provider_object_id?: string | null;\n provider_object_url?: string | null;\n has_upload_session: boolean;\n upload_total_bytes?: number | null;\n}\n\nexport interface SocialPublicationEffect {\n id: string;\n store_id: string;\n publication_id: string;\n social_connection_id: string;\n publication_revision: number;\n sequence: number;\n request: SocialPublicationEffectRequest;\n status: SocialPublicationEffectStatus;\n requested_at: number;\n processing_started_at?: number | null;\n processing_deadline_at?: number | null;\n completed_at?: number | null;\n evidence?: SocialPublicationEffectEvidence | null;\n error?: SocialPublicationEffectError | null;\n}\n\nexport interface SocialPublicationEngagementSyncResult {\n publications_scanned: number;\n comment_pages_scanned: number;\n comments_synced: number;\n metrics_synced: number;\n comments: SocialPublicationComment[];\n metrics: SocialPublicationMetricSnapshot[];\n skipped_publication_ids: string[];\n errors: string[];\n}\n\nexport interface SocialPublicationCommentClassificationResult {\n comments_scanned: number;\n comments_classified: number;\n comments_skipped: number;\n comments: SocialPublicationComment[];\n skipped_comment_ids: string[];\n errors: string[];\n}\n\nexport interface SocialEngagementCapabilities {\n read_comments: boolean;\n reply_to_comments: boolean;\n}\n\nexport interface SocialAnalyticsCapabilities {\n read_post_metrics: boolean;\n}\n\nexport interface SocialProviderCapability {\n type: SocialConnectionType;\n display_name: string;\n icon_key: string;\n publishing_supported: boolean;\n required_scopes: string[];\n media_requirements: string[];\n engagement: SocialEngagementCapabilities;\n analytics: SocialAnalyticsCapabilities;\n}\n\nexport interface SocialConnectResponse {\n authorization_url: string;\n state: string;\n}\n\nexport type SocialOAuthCallbackStatus = \"connected\" | \"selection_required\";\n\nexport interface SocialOAuthDestinationOption extends SocialDestinationMetadata {\n candidate_id: string;\n}\n\nexport interface SocialOAuthCallbackResponse {\n status: SocialOAuthCallbackStatus;\n store_id: string;\n type: SocialConnectionType;\n account_id: string;\n attempt_id?: string | null;\n social_connection_id?: string | null;\n destination?: SocialDestinationMetadata | null;\n options: SocialOAuthDestinationOption[];\n message: string;\n}\n\nexport type BuildHookType = \"vercel\" | \"netlify\" | \"cloudflare\" | \"custom\";\n\nexport interface BuildHook {\n id: string;\n store_id: string;\n key: string;\n type: BuildHookType;\n /** Write-only endpoint; API responses contain a redacted placeholder. */\n url: string;\n /** Header values are write-only and redacted in API responses. */\n headers: Record<string, string>;\n active: boolean;\n created_at: number;\n updated_at: number;\n}\n\nexport interface SocialConnection {\n id: string;\n store_id: string;\n type: SocialConnectionType;\n data: SocialConnectionData;\n created_at: number;\n updated_at: number;\n}\n\nexport type PaymentProviderConnectionStatus =\n \"requested\" | \"processing\" | \"succeeded\" | \"rejected\" | \"failed\" | \"unknown\";\n\nexport type PaymentProviderConnectionError =\n | { type: \"provider_rejected\"; message: string; at: number }\n | { type: \"provider_call_not_started\"; message: string; at: number }\n | { type: \"unknown_outcome\"; message: string; at: number };\n\nexport interface PaymentProviderConnection {\n status: PaymentProviderConnectionStatus;\n revision: number;\n attempts: number;\n requested_at: number;\n processing_started_at?: number | null;\n completed_at?: number | null;\n error?: PaymentProviderConnectionError | null;\n}\n\nexport interface PaymentProvider {\n id: string;\n store_id: string;\n key: string;\n provider: {\n type: \"stripe\";\n onboarding_status: \"pending\" | \"submitted\" | \"complete\";\n charges_enabled: boolean;\n payouts_enabled: boolean;\n details_submitted: boolean;\n };\n connection: PaymentProviderConnection;\n created_at: number;\n updated_at: number;\n}\n\nexport interface PaymentStoreConfig {\n provider: \"stripe\";\n publishable_key: string;\n connected_account_id: string;\n}\n\nexport interface StripePaymentProviderConnectResponse {\n provider: PaymentProvider;\n onboarding_url: string;\n}\n\nexport interface ShippingWeightTier {\n up_to_grams: number;\n amount: number;\n}\n\nexport type PaymentMethod =\n | {\n type: \"cash\";\n id: string;\n key: string;\n }\n | {\n type: \"credit_card\";\n id: string;\n key: string;\n payment_provider_id: string;\n };\n\nexport interface ShippingMethod {\n id: string;\n taxable: boolean;\n eta_text: string;\n location_id?: string;\n amount: number;\n free_above?: number;\n weight_tiers?: ShippingWeightTier[];\n}\n\nexport interface Location {\n id: string;\n store_id: string;\n key: string;\n address: Address;\n is_pickup_location: boolean;\n created_at: number;\n updated_at: number;\n}\n\nexport interface InventoryLevel {\n location_id: string;\n available: number;\n reserved: number;\n}\n\nexport interface ProductInventory {\n id: string;\n store_id: string;\n product_id: string;\n variant_id: string;\n location_id: string;\n available: number;\n reserved: number;\n updated_at: number;\n}\n\nexport type DigitalAssetType = \"file\" | \"external_link\";\nexport type DigitalAssetStatus = \"active\" | \"archived\";\nexport type DigitalDeliveryPolicy = \"automatic_after_payment\" | \"manual\";\n\nexport interface DigitalAsset {\n id: string;\n name: string;\n type: DigitalAssetType;\n storage_ref?: string | null;\n external_url?: string | null;\n status: DigitalAssetStatus;\n}\n\nexport interface ProductVariant {\n id: string;\n sku?: string;\n prices: Price[];\n inventory: ProductInventory[];\n attributes: Block[];\n requires_shipping: boolean;\n digital_delivery_policy: DigitalDeliveryPolicy;\n digital_assets: DigitalAsset[];\n download_limit?: number | null;\n access_expires_after_days?: number | null;\n tax_category_id?: string | null;\n weight?: number;\n}\n\nexport interface Product {\n id: string;\n store_id: string;\n key: string;\n slug: Record<string, string>;\n blocks: Block[];\n taxonomies: TaxonomyEntry[];\n variants: ProductVariant[];\n status: ProductStatus;\n created_at: number;\n updated_at: number;\n}\n\nexport interface GalleryItem {\n id: string;\n url: string;\n alt?: string;\n caption?: string;\n}\n\nexport interface ProductLineItemSnapshot {\n product_key: string;\n variant_sku?: string;\n variant_attributes: Block[];\n requires_shipping: boolean;\n tax_category_id?: string | null;\n price: Price;\n}\n\nexport interface ServiceLineItemSnapshot {\n service_key: string;\n provider_key: string;\n tax_category_id?: string | null;\n price: Price;\n}\n\nexport interface DiscountAllocation {\n discount_application_id?: string | null;\n amount: number;\n}\n\nexport interface TaxLine {\n id: string;\n title: string;\n rate_bps: number;\n amount: number;\n taxable_base: number;\n included_in_price: boolean;\n jurisdiction_country?: string | null;\n jurisdiction_region?: string | null;\n jurisdiction_city?: string | null;\n jurisdiction_postal_code?: string | null;\n tax_category_id?: string | null;\n tax_rate_id?: string | null;\n source: string;\n provider_tax_id?: string | null;\n provider_tax_line_id?: string | null;\n}\n\nexport interface LineMoneySnapshot {\n unit_price: number;\n subtotal: number;\n discount_allocations: DiscountAllocation[];\n discount_total: number;\n taxable_base: number;\n tax_lines: TaxLine[];\n tax_total: number;\n total: number;\n}\n\nexport type OrderItemFulfillmentStatus =\n \"unfulfilled\" | \"partially_fulfilled\" | \"fulfilled\" | \"not_required\";\n\nexport type BookingOrderItemStatus =\n \"scheduled\" | \"completed\" | \"no_show\" | \"cancelled\";\n\nexport type OrderItemSnapshot =\n ProductLineItemSnapshot | ServiceLineItemSnapshot;\n\nexport type ProductQuoteLineAvailability =\n { ok: true; available?: number } | { ok: false; reason: string };\n\nexport type ServiceQuoteLineAvailability =\n { ok: true; spots: number } | { ok: false; reason: string };\n\nexport interface ProductQuoteLine {\n type: \"product\";\n line_id: string;\n product_id: string;\n variant_id: string;\n quantity: number;\n unit_price: number;\n subtotal: number;\n discount: number;\n tax: number;\n total: number;\n money: LineMoneySnapshot;\n snapshot: ProductLineItemSnapshot;\n availability: ProductQuoteLineAvailability;\n}\n\nexport interface ServiceQuoteLine {\n type: \"service\";\n line_id: string;\n service_id: string;\n provider_id: string;\n from: number;\n to: number;\n quantity: 1;\n unit_price: number;\n subtotal: number;\n discount: number;\n tax: number;\n total: number;\n money: LineMoneySnapshot;\n snapshot: ServiceLineItemSnapshot;\n availability: ServiceQuoteLineAvailability;\n}\n\nexport type QuoteLine = ProductQuoteLine | ServiceQuoteLine;\n\nexport interface ProductLineItem {\n type: \"product\";\n id: string;\n product_id: string;\n variant_id: string;\n quantity: number;\n cancelled_quantity: number;\n allocated_quantity: number;\n fulfilled_quantity: number;\n location_id?: string;\n snapshot: ProductLineItemSnapshot;\n status: OrderItemStatus;\n fulfillment_status: OrderItemFulfillmentStatus;\n money: LineMoneySnapshot;\n}\n\nexport interface ServiceLineItem {\n type: \"service\";\n id: string;\n service_id: string;\n provider_id: string;\n from: number;\n to: number;\n quantity: number;\n cancelled_quantity: number;\n fulfilled_quantity: number;\n forms: FormEntry[];\n snapshot: ServiceLineItemSnapshot;\n status: OrderItemStatus;\n booking_status: BookingOrderItemStatus;\n fulfillment_status: OrderItemFulfillmentStatus;\n money: LineMoneySnapshot;\n}\n\nexport type OrderItem = ProductLineItem | ServiceLineItem;\n\nexport type OrderPaymentSummaryStatus =\n | \"unpaid\"\n | \"pending\"\n | \"authorized\"\n | \"partially_paid\"\n | \"paid\"\n | \"partially_refunded\"\n | \"refunded\"\n | \"failed\"\n | \"voided\"\n | \"expired\";\n\nexport type OrderFulfillmentStatus =\n | \"unfulfilled\"\n | \"scheduled\"\n | \"on_hold\"\n | \"in_progress\"\n | \"partially_fulfilled\"\n | \"fulfilled\"\n | \"incomplete\"\n | \"not_required\";\n\nexport interface OrderFulfillmentSummary {\n status: OrderFulfillmentStatus;\n required_quantity: number;\n allocated_quantity: number;\n fulfilled_quantity: number;\n open_order_count: number;\n updated_at: number;\n}\n\nexport interface HistoryEntry {\n action: string;\n reason?: string;\n timestamp: number;\n}\n\nexport type DigitalAccessGrantStatus =\n \"pending\" | \"active\" | \"exhausted\" | \"revoked\" | \"expired\";\n\nexport interface DigitalAccessGrant {\n id: string;\n store_id: string;\n order_id: string;\n order_item_id: string;\n product_id: string;\n variant_id: string;\n contact_id: string;\n asset_id: string;\n asset_name_snapshot: string;\n type: DigitalAssetType;\n status: DigitalAccessGrantStatus;\n delivery_policy_snapshot: DigitalDeliveryPolicy;\n download_limit?: number | null;\n access_expires_after_days_snapshot?: number | null;\n download_count: number;\n expires_at?: number | null;\n granted_at?: number | null;\n revoked_at?: number | null;\n created_at: number;\n updated_at: number;\n}\n\nexport interface DigitalAccessDownloadResponse {\n url: string;\n url_expires_at?: number | null;\n grant: DigitalAccessGrant;\n}\n\nexport interface ShippingLine {\n id: string;\n shipping_method_id?: string | null;\n title: string;\n code?: string | null;\n source: string;\n carrier_identifier?: string | null;\n money: LineMoneySnapshot;\n created_at: number;\n updated_at: number;\n}\n\nexport type FulfillmentOrderStatus =\n | \"open\"\n | \"in_progress\"\n | \"closed\"\n | \"incomplete\"\n | \"on_hold\"\n | \"scheduled\"\n | \"cancelled\";\n\nexport type FulfillmentOrderRequestStatus =\n | \"unsubmitted\"\n | \"submitted\"\n | \"accepted\"\n | \"rejected\"\n | \"cancellation_requested\"\n | \"cancellation_accepted\";\n\nexport interface FulfillmentOrderLine {\n id: string;\n order_item_id: string;\n quantity: number;\n allocated_quantity: number;\n fulfilled_quantity: number;\n remaining_quantity: number;\n}\n\nexport interface FulfillmentOrder {\n id: string;\n store_id: string;\n order_id: string;\n assigned_location_id: string;\n status: FulfillmentOrderStatus;\n request_status: FulfillmentOrderRequestStatus;\n fulfill_at?: number | null;\n fulfill_by?: number | null;\n destination?: Address | null;\n lines: FulfillmentOrderLine[];\n created_at: number;\n updated_at: number;\n}\n\nexport interface Order {\n id: string;\n revision: number;\n number: string;\n store_id: string;\n source_cart_id: string;\n contact_id: string;\n status: OrderStatus;\n payment_status: OrderPaymentSummaryStatus;\n fulfillment_status: OrderFulfillmentStatus;\n verified: boolean;\n items: OrderItem[];\n payment_id: string;\n money: OrderMoney;\n financial_summary: OrderFinancialSummary;\n fulfillment_summary: OrderFulfillmentSummary;\n shipping_lines: ShippingLine[];\n shipping_address?: Address;\n billing_address?: Address;\n forms: FormEntry[];\n history: HistoryEntry[];\n contact_list_id?: string;\n fired_reminders: number[];\n created_at: number;\n updated_at: number;\n}\n\nexport type CheckoutPaymentAction =\n { type: \"none\" } | { type: \"handle_next_action\"; client_secret: string };\n\nexport interface OrderCheckoutResult {\n order_id: string;\n number: string;\n payment_action: CheckoutPaymentAction;\n payment: OrderPayment;\n}\n\nexport interface Zone {\n id: string;\n store_id: string;\n market_id: string;\n countries: string[];\n states: string[];\n postal_codes: string[];\n tax_bps: number;\n shipping_methods: ShippingMethod[];\n}\n\nexport interface Market {\n id: string;\n store_id: string;\n key: string;\n currency: Currency;\n tax_mode: \"exclusive\" | \"inclusive\";\n payment_methods: PaymentMethod[];\n zones: Zone[];\n created_at: number;\n updated_at: number;\n}\n\nexport interface Language {\n id: string;\n}\n\nexport interface StoreEmails {\n billing: string;\n support: string;\n}\n\nexport type WebhookEventSubscription =\n | { event: \"collection.created\"; key?: string }\n | { event: \"collection.updated\"; key?: string }\n | { event: \"collection.deleted\"; key?: string }\n | { event: \"entry.created\"; collection_id?: string; key?: string }\n | { event: \"entry.updated\"; collection_id?: string; key?: string }\n | { event: \"entry.deleted\"; collection_id?: string; key?: string }\n | { event: \"order.created\" }\n | { event: \"order.updated\" }\n | { event: \"order.confirmed\" }\n | { event: \"order.payment_received\" }\n | { event: \"order.payment_failed\" }\n | { event: \"order.refunded\" }\n | { event: \"order.digital_access_activated\" }\n | { event: \"order.digital_access_downloaded\" }\n | { event: \"order.digital_access_revoked\" }\n | { event: \"order.cancelled\" }\n | { event: \"order.reminder\" }\n | { event: \"order.shipment_created\" }\n | { event: \"order.shipment_in_transit\" }\n | { event: \"order.shipment_out_for_delivery\" }\n | { event: \"order.shipment_delivered\" }\n | { event: \"order.shipment_failed\" }\n | { event: \"order.shipment_returned\" }\n | { event: \"order.shipment_status_changed\" }\n | { event: \"cart.created\" }\n | { event: \"cart.updated\" }\n | { event: \"cart.abandoned\" }\n | { event: \"cart.converted\" }\n | { event: \"product.created\" }\n | { event: \"product.updated\" }\n | { event: \"product.deleted\" }\n | { event: \"provider.created\" }\n | { event: \"provider.updated\" }\n | { event: \"provider.deleted\" }\n | { event: \"service.created\" }\n | { event: \"service.updated\" }\n | { event: \"service.deleted\" }\n | { event: \"media.created\" }\n | { event: \"media.deleted\" }\n | { event: \"store.created\" }\n | { event: \"store.updated\" }\n | { event: \"contact_list.created\" }\n | { event: \"contact_list.updated\" }\n | { event: \"contact_list.contact_added\" }\n | { event: \"contact_list.contact_pending\" }\n | { event: \"contact_list.contact_confirmed\" }\n | { event: \"contact_list.contact_cancelled\" }\n | { event: \"contact.created\" }\n | { event: \"contact.updated\" }\n | { event: \"form_submission.created\"; form_id?: string }\n | { event: \"account.updated\" };\n\nexport interface Webhook {\n id: string;\n store_id: string;\n key: string;\n /** Write-only endpoint; API responses contain a redacted placeholder. */\n url: string;\n events: WebhookEventSubscription[];\n /** Header values are write-only and redacted in API responses. */\n headers: Record<string, string>;\n /** Write-only signing secret; API responses contain a redacted placeholder. */\n secret: string;\n enabled: boolean;\n created_at: number;\n updated_at: number;\n}\n\nexport type StoreSubscriptionStatus =\n \"pending\" | \"active\" | \"cancellation_scheduled\" | \"cancelled\" | \"expired\";\n\nexport type StoreSubscriptionActionStatus =\n \"requested\" | \"processing\" | \"succeeded\" | \"rejected\" | \"failed\" | \"unknown\";\n\nexport type StoreSubscriptionActionRequest =\n | { type: \"select_plan\"; data: { plan_id: string } }\n | { type: \"cancel_at_period_end\" }\n | { type: \"reactivate\" };\n\nexport type StoreSubscriptionActionError =\n | {\n type: \"provider_rejected\";\n data: { effect_id: string; message: string };\n }\n | {\n type: \"unknown_outcome\";\n data: { effect_id: string; message: string };\n }\n | {\n type: \"provider_call_not_started\";\n data: { effect_id: string; message: string };\n };\n\nexport type StoreSubscriptionActionResult = {\n type: \"checkout\";\n data: {\n session_id: string;\n checkout_url: string;\n expires_at: number;\n };\n};\n\nexport interface StoreSubscriptionAction {\n id: string;\n subscription_id: string;\n store_id: string;\n request: StoreSubscriptionActionRequest;\n status: StoreSubscriptionActionStatus;\n error?: StoreSubscriptionActionError | null;\n result?: StoreSubscriptionActionResult | null;\n requested_at: number;\n completed_at?: number | null;\n updated_at: number;\n}\n\nexport type StoreSubscriptionEffectType =\n | \"create_checkout\"\n | \"cancel_at_period_end\"\n | \"cancel_immediately\"\n | \"reactivate\"\n | \"update_plan\"\n | \"create_schedule\"\n | \"update_schedule\";\n\nexport type StoreSubscriptionEffectStatus = StoreSubscriptionActionStatus;\n\nexport type StoreSubscriptionEffectError =\n | { type: \"provider_rejected\"; data: { message: string } }\n | { type: \"unknown_outcome\"; data: { message: string } }\n | { type: \"provider_call_not_started\"; data: { message: string } };\n\nexport interface StoreSubscriptionEffect {\n id: string;\n action_id: string;\n subscription_id: string;\n store_id: string;\n sequence: number;\n type: StoreSubscriptionEffectType;\n status: StoreSubscriptionEffectStatus;\n error?: StoreSubscriptionEffectError | null;\n requested_at: number;\n processing_started_at?: number | null;\n completed_at?: number | null;\n updated_at: number;\n}\n\nexport interface StoreSubscriptionPayment {\n currency: Currency;\n market: string;\n}\n\nexport interface StoreSubscription {\n id: string;\n store_id: string;\n plan_id: string;\n pending_plan_id: string | null;\n payment: StoreSubscriptionPayment;\n status: StoreSubscriptionStatus;\n start_date: number;\n end_date: number;\n created_at: number;\n updated_at: number;\n}\n\nexport type ContactListMembershipPaymentAttemptStatus =\n | \"pending\"\n | \"confirming\"\n | \"requires_action\"\n | \"processing\"\n | \"declined\"\n | \"failed\"\n | \"rejected\"\n | \"succeeded\"\n | \"expired\"\n | \"unknown\";\n\nexport type ContactListMembershipPaymentAttemptType =\n | \"create_customer\"\n | \"create_payment_intent\"\n | \"create_subscription\"\n | \"confirm_payment_intent\";\n\nexport type ContactListMembershipPaymentAttemptSafeError =\n \"payment_rejected\" | \"invalid_payment_state\" | \"unknown_outcome\";\n\nexport interface ContactListMembershipPaymentAttempt {\n id: string;\n store_id: string;\n contact_list_id: string;\n membership_id: string;\n contact_id: string;\n generation: number;\n stage: number;\n type: ContactListMembershipPaymentAttemptType;\n status: ContactListMembershipPaymentAttemptStatus;\n plan_id: string;\n amount: number;\n currency: Currency;\n interval?: SubscriptionInterval | null;\n safe_error?: ContactListMembershipPaymentAttemptSafeError | null;\n started_at: number;\n updated_at: number;\n}\n\nexport type ContactListMembershipRefundStatus =\n \"requested\" | \"processing\" | \"succeeded\" | \"failed\" | \"rejected\" | \"unknown\";\n\nexport type ContactListMembershipRefundType = \"partial\" | \"full\";\n\nexport type ContactListMembershipRefundSafeError =\n \"provider_rejected\" | \"invalid_refund_state\" | \"unknown_outcome\";\n\nexport interface ContactListMembershipRefund {\n id: string;\n store_id: string;\n contact_list_id: string;\n membership_id: string;\n payment_attempt_id: string;\n revision: number;\n type: ContactListMembershipRefundType;\n amount: number;\n currency: Currency;\n status: ContactListMembershipRefundStatus;\n safe_error?: ContactListMembershipRefundSafeError | null;\n created_at: number;\n updated_at: number;\n}\n\nexport type ContactListMembershipCancellationStatus =\n \"requested\" | \"processing\" | \"succeeded\" | \"failed\" | \"rejected\" | \"unknown\";\n\nexport type ContactListMembershipCancellationType =\n \"at_period_end\" | \"immediate\";\n\nexport type ContactListMembershipCancellationSafeError =\n \"provider_rejected\" | \"invalid_cancellation_state\" | \"unknown_outcome\";\n\nexport interface ContactListMembershipCancellation {\n id: string;\n store_id: string;\n contact_list_id: string;\n membership_id: string;\n payment_attempt_id: string;\n refund_id?: string | null;\n revision: number;\n type: ContactListMembershipCancellationType;\n status: ContactListMembershipCancellationStatus;\n safe_error?: ContactListMembershipCancellationSafeError | null;\n created_at: number;\n updated_at: number;\n}\n\nexport interface Store {\n id: string;\n key: string;\n timezone: string;\n languages?: Language[];\n emails?: StoreEmails;\n payment?: PaymentStoreConfig | null;\n}\n\nexport interface EshopStoreState {\n store_id: string;\n selected_shipping_method_id: string | null;\n user_token: string | null;\n processing_checkout: boolean;\n loading: boolean;\n error: string | null;\n}\n\nexport interface Block {\n id: string;\n key: string;\n type: string;\n properties?: any;\n value?: any;\n}\n\nexport type TaxonomySchemaType = \"text\" | \"number\" | \"boolean\" | \"geo_location\";\n\nexport interface TaxonomySchema {\n id: string;\n key: string;\n type: TaxonomySchemaType;\n value?: string[];\n min?: number | null;\n max?: number | null;\n}\n\nexport interface TaxonomyField {\n id: string;\n key: string;\n type: TaxonomySchemaType;\n value: any;\n}\n\nexport interface TaxonomyFieldQuery {\n key: string;\n type: TaxonomySchemaType;\n operation?: string;\n value: any;\n center?: { lat: number; lon: number };\n radius?: number;\n}\n\nexport interface TaxonomyEntry {\n taxonomy_id: string;\n fields: TaxonomyField[];\n}\n\nexport interface TaxonomyQuery {\n taxonomy_id: string;\n query: TaxonomyFieldQuery[];\n}\n\nexport type FormSchemaType =\n \"text\" | \"number\" | \"boolean\" | \"date\" | \"geo_location\" | \"select\";\n\ninterface FormSchemaBase {\n id: string;\n key: string;\n required: boolean;\n}\n\nexport type FormSchema =\n | (FormSchemaBase & { type: \"text\" })\n | (FormSchemaBase & {\n type: \"number\";\n min?: number | null;\n max?: number | null;\n })\n | (FormSchemaBase & { type: \"boolean\" })\n | (FormSchemaBase & { type: \"date\" })\n | (FormSchemaBase & { type: \"geo_location\" })\n | (FormSchemaBase & { type: \"select\"; options: string[] });\n\nexport type FormFieldType =\n \"text\" | \"number\" | \"boolean\" | \"date\" | \"geo_location\" | \"select\";\n\ninterface FormFieldBase {\n id: string;\n key: string;\n}\n\nexport type FormField =\n | (FormFieldBase & { type: \"text\"; value: string })\n | (FormFieldBase & { type: \"number\"; value: number })\n | (FormFieldBase & { type: \"boolean\"; value: boolean })\n | (FormFieldBase & { type: \"date\"; value: number })\n | (FormFieldBase & { type: \"geo_location\"; value: GeoLocation })\n | (FormFieldBase & { type: \"select\"; value: string[] });\n\nexport type FormValue = FormField[\"value\"];\nexport type FormValues = Record<string, FormValue | undefined>;\n\nexport interface FormEntry {\n form_id: string;\n fields: FormField[];\n}\n\nexport type BlockType =\n | \"text\"\n | \"localized_text\"\n | \"number\"\n | \"boolean\"\n | \"date\"\n | \"array\"\n | \"object\"\n | \"media\"\n | \"entry\"\n | \"markdown\"\n | \"geo_location\";\n\nexport interface GeoLocationBlockProperties {}\n\nexport interface GeoLocationBlock extends Block {\n type: \"geo_location\";\n properties: GeoLocationBlockProperties;\n value: GeoLocation | null;\n}\n\nexport type Access = \"public\" | \"private\";\n\nexport type MediaSize = \"original\" | \"thumbnail\" | \"small\" | \"medium\" | \"large\";\n\nexport interface MediaResolution {\n id: string;\n size: MediaSize;\n url: string;\n}\n\nexport interface Media {\n id: string;\n resolutions: Partial<Record<MediaSize, MediaResolution>>;\n mime_type: string;\n title?: string | null;\n description?: string | null;\n alt?: string | null;\n store_id: string;\n metadata?: string | null;\n created_at: number;\n slug: Record<string, string>;\n}\n\nexport type SubscriptionPlanFeatureType =\n | \"collections\"\n | \"entries\"\n | \"services\"\n | \"products\"\n | \"providers\"\n | \"workflows\"\n | \"contact_lists\"\n | \"crm_contacts\"\n | \"media\"\n | \"members\"\n | \"taxonomies\"\n | \"email_templates\"\n | \"forms\"\n | \"mailboxes\"\n | \"social_connections\"\n | \"webhooks\"\n | \"support_agents\"\n | \"lead_research_runs\"\n | \"outreach_campaigns\";\n\nexport interface SubscriptionPlanFeature {\n limit: number | null;\n reset: \"never\" | \"monthly\";\n}\n\nexport interface SubscriptionPlan {\n id: string;\n provider_price_id: string | null;\n name: string;\n tier: number;\n amount: number;\n currency: Currency;\n interval: \"lifetime\" | \"month\" | \"year\";\n interval_count: number;\n features: Record<SubscriptionPlanFeatureType, SubscriptionPlanFeature>;\n}\n\nexport type AccountApiTokenStatus = \"active\" | \"revoked\" | \"expired\";\n\nexport interface AccountApiToken {\n id: string;\n token_hint: string;\n name: string;\n status: AccountApiTokenStatus;\n created_at: number;\n expires_at?: number | null;\n revoked_at?: number | null;\n}\n\nexport interface StoreMembership {\n id: string;\n store_id: string;\n account_id: string;\n role: import(\"./api\").StoreRole;\n status: \"invited\" | \"active\";\n invited_by_account_id?: string | null;\n invited_at?: number | null;\n joined_at?: number | null;\n created_at: number;\n updated_at: number;\n}\n\nexport interface StoreMember {\n account: Account;\n membership: StoreMembership;\n}\n\nexport interface AccountLifecycle {\n last_login_at?: number | null;\n onboarding_completed: boolean;\n}\n\nexport interface Account {\n id: string;\n email: string;\n lifecycle: AccountLifecycle;\n}\n\nexport interface AccountUpdateResponse {\n success: boolean;\n}\n\nexport interface AccountApiTokenCreated {\n token: AccountApiToken;\n value: string;\n}\n\nexport interface AccountSession {\n id: string;\n status: \"active\" | \"revoked\" | \"expired\";\n access_expires_at: number;\n refresh_expires_at: number;\n is_verified: boolean;\n created_at: number;\n revoked_at?: number | null;\n}\n\nexport interface PaginatedResponse<T> {\n items: T[];\n cursor: string | null;\n}\n\nexport type ServiceStatus = \"active\" | \"draft\" | \"archived\";\nexport type ProviderStatus = \"active\" | \"draft\" | \"archived\";\n\nexport type ProductStatus = \"active\" | \"draft\" | \"archived\";\nexport type ContactStatus = \"active\" | \"archived\";\nexport type ContactListStatus = \"active\" | \"draft\" | \"archived\";\nexport type ContactListSource =\n \"manual\" | \"import\" | \"signup\" | \"admin\" | \"system\" | \"lead_research\";\nexport type ContactListMembershipStatus =\n | \"pending\"\n | \"active\"\n | \"cancellation_scheduled\"\n | \"cancelled\"\n | \"expired\"\n | \"archived\";\nexport type ContactListPlanStatus = \"active\" | \"archived\";\nexport type ContactListContentAccessStatus = \"active\" | \"archived\";\nexport type MailboxStatus = \"active\" | \"draft\" | \"archived\";\nexport type MailboxPreset = \"gmail\" | \"zoho\" | \"microsoft\" | \"custom\";\nexport type MailboxConnectionSecurity = \"tls\" | \"start_tls\";\nexport type MailboxSyncStatus = \"not_ready\" | \"ready\" | \"failed\";\nexport type SmtpImapMailboxProviderInput = {\n type: \"smtp_imap\";\n preset: MailboxPreset;\n smtp_host: string;\n smtp_port: number;\n smtp_security: MailboxConnectionSecurity;\n imap_host: string;\n imap_port: number;\n imap_security: MailboxConnectionSecurity;\n username: string;\n sync_enabled: boolean;\n sync_interval_seconds: number;\n};\nexport type SmtpImapMailboxProvider = SmtpImapMailboxProviderInput & {\n password_configured: boolean;\n sync_status?: MailboxSyncStatus;\n sync_error?: string | null;\n sync_ready_at?: number | null;\n last_synced_at?: number | null;\n last_seen_uid?: number | null;\n};\nexport interface GoogleMailboxProfile {\n external_account_id: string;\n email: string;\n display_name: string;\n avatar_url?: string | null;\n}\nexport type GoogleMailboxProvider = {\n type: \"google\";\n profile: GoogleMailboxProfile;\n access_configured: boolean;\n refresh_configured: boolean;\n token_expires_at?: number | null;\n token_type?: string | null;\n scopes: string[];\n sync_enabled: boolean;\n sync_interval_seconds: number;\n sync_status?: MailboxSyncStatus;\n sync_error?: string | null;\n sync_ready_at?: number | null;\n last_synced_at?: number | null;\n last_history_id?: string | null;\n};\nexport type CampaignStatus =\n \"draft\" | \"active\" | \"paused\" | \"completed\" | \"archived\";\nexport type CampaignLaunchStatus =\n \"idle\" | \"requested\" | \"processing\" | \"succeeded\" | \"failed\";\nexport type CampaignEnrollmentStatus =\n | \"pending\"\n | \"active\"\n | \"action_required\"\n | \"replied\"\n | \"completed\"\n | \"suppressed\"\n | \"failed\"\n | \"stopped\";\nexport type CampaignEnrollmentImportSource =\n \"contact_list\" | \"contact\" | \"manual\";\nexport type CampaignMessageStatus =\n | \"draft\"\n | \"scheduled\"\n | \"pending\"\n | \"sending\"\n | \"sent\"\n | \"received\"\n | \"action_required\"\n | \"completed\"\n | \"bounced\"\n | \"failed\"\n | \"unknown\"\n | \"skipped\"\n | \"stopped\"\n | \"superseded\";\nexport type CampaignMessageType =\n | \"campaign_step_email\"\n | \"manual_task\"\n | \"manual_reply\"\n | \"inbound_reply\"\n | \"delivery_failure\"\n | \"action\";\nexport type CampaignMessageDirection = \"outbound\" | \"inbound\" | \"action\";\nexport type CampaignMessageCopySource = \"template\" | \"generated\" | \"edited\";\nexport type OutreachThreadMode = \"new_thread\" | \"same_thread\";\nexport type ManualTaskContinueBehavior =\n \"continue_after_delay\" | \"wait_until_completed\";\nexport type OutreachStepType =\n | {\n type: \"email\";\n template_id: string;\n template_vars?: Record<string, unknown>;\n body?: string | null;\n thread_mode?: OutreachThreadMode;\n attachments?: string[];\n }\n | {\n type: \"manual_task\";\n target_channel_type?: ChannelType | null;\n title: string;\n instructions: string;\n suggested_message?: string | null;\n external_url?: string | null;\n continue_behavior: ManualTaskContinueBehavior;\n };\nexport type CampaignManualTaskOutcome =\n \"done\" | \"skipped\" | \"got_reply\" | \"do_not_contact\";\nexport type OutreachPersonalizationStatus =\n \"idle\" | \"running\" | \"completed\" | \"failed\";\nexport type SuppressionStatus = \"active\" | \"archived\";\nexport type SuppressionTargetType = \"email\" | \"domain\" | \"contact\" | \"phone\";\nexport type SuppressionScopeType = \"store\" | \"campaign\";\nexport type SuppressionReason =\n \"manual\" | \"unsubscribed\" | \"bounced\" | \"complained\" | \"replied\";\nexport type SuppressionSource = \"admin\" | \"import\" | \"reply\" | \"system\";\nexport type WorkflowStatus = \"active\" | \"draft\" | \"archived\" | \"deleting\";\nexport type MutableWorkflowStatus = Exclude<WorkflowStatus, \"deleting\">;\nexport type PromoCodeStatus = \"active\" | \"draft\" | \"archived\";\nexport type CollectionStatus = \"active\" | \"draft\" | \"archived\";\nexport type EntryStatus = \"active\" | \"draft\" | \"archived\";\nexport type EmailTemplateStatus = \"active\" | \"draft\" | \"archived\";\nexport type EmailTemplateType =\n | \"order_store_notification\"\n | \"order_contact_notification\"\n | \"order_reminder_contact\"\n | \"digital_access_ready_contact\"\n | \"contact_store_notification\"\n | \"subscription_confirmation\"\n | \"campaign_email\"\n | \"newsletter_email\";\n\nexport type FormStatus = \"active\" | \"draft\" | \"archived\";\nexport type TaxonomyStatus = \"active\" | \"draft\" | \"archived\";\n\nexport type OrderCancellationReason =\n | \"admin_rejected\"\n | \"contact_cancelled\"\n | \"payment_failed\"\n | \"expired\"\n | \"other\";\n\nexport type OrderItemStatus =\n | { status: \"pending\"; expires_at: number }\n | { status: \"confirmed\" }\n | { status: \"cancelled\"; reason: OrderCancellationReason };\n\nexport type OrderStatus =\n | \"pending\"\n | \"partially_confirmed\"\n | \"confirmed\"\n | \"partially_cancelled\"\n | \"cancelled\"\n | \"completed\";\n\nexport type OrderPaymentStatus =\n | { status: \"pending\"; at: number }\n | { status: \"requires_action\"; at: number; reason?: string | null }\n | { status: \"processing\"; at: number }\n | { status: \"authorized\"; at: number; amount: number }\n | { status: \"partially_captured\"; at: number; amount: number }\n | { status: \"captured\"; at: number; amount: number }\n | { status: \"partially_refunded\"; at: number; amount: number }\n | { status: \"refunded\"; at: number; amount: number }\n | { status: \"voided\"; at: number; amount: number }\n | { status: \"cancelled\"; at: number; reason?: string | null }\n | { status: \"expired\"; at: number }\n | { status: \"failed\"; at: number; reason?: string | null };\n\nexport interface TimeRange {\n from: number;\n to: number;\n}\n\nexport type BlockSchemaType =\n | \"text\"\n | \"localized_text\"\n | \"number\"\n | \"boolean\"\n | \"date\"\n | \"geo_location\"\n | \"markdown\"\n | \"media\"\n | \"entry\"\n | \"array\"\n | \"object\";\n\nexport interface BlockSchemaProperties {\n min_values?: number | null;\n max_values?: number | null;\n min_length?: number | null;\n max_length?: number | null;\n pattern?: string | null;\n min?: number | null;\n max?: number | null;\n collection_id?: string | null;\n on_delete?: \"restrict\" | \"set_null\" | null;\n}\n\nexport interface BlockSchema {\n id: string;\n key: string;\n type: BlockSchemaType;\n required: boolean;\n properties: BlockSchemaProperties;\n children: BlockSchema[];\n}\n\nexport interface Collection {\n id: string;\n store_id: string;\n key: string;\n schema: BlockSchema[];\n blocks: Block[];\n status: CollectionStatus;\n created_at: number;\n updated_at: number;\n}\n\nexport interface MediaRef {\n media_id: string;\n url?: string | null;\n mime_type?: string | null;\n alt?: string | null;\n}\n\nexport type FieldOperation =\n | \"equals\"\n | \"not_equals\"\n | \"contains\"\n | \"in\"\n | \"greater_than\"\n | \"greater_than_or_equal\"\n | \"less_than\"\n | \"less_than_or_equal\";\n\nexport type EntryBlockQuery =\n | { type: \"text\"; key: string; values: string[] }\n | { type: \"number\"; key: string; operation: FieldOperation; value: number }\n | { type: \"boolean\"; key: string; value: boolean }\n | { type: \"date\"; key: string; operation: FieldOperation; value: number };\n\nexport interface CollectionEntry {\n id: string;\n store_id: string;\n collection_id: string;\n key: string;\n slug: Record<string, string>;\n blocks: Block[];\n status: EntryStatus;\n created_at: number;\n updated_at: number;\n}\n\nexport interface EmailTemplate {\n id: string;\n key: string;\n store_id: string;\n type: EmailTemplateType;\n subject: Record<string, string>;\n body: string;\n preheader?: string;\n variables: EmailTemplateVariable[];\n sample_data: Record<string, unknown>;\n status: EmailTemplateStatus;\n created_at: number;\n updated_at: number;\n}\n\nexport type EmailTemplateVariableSource = \"template\" | \"system\";\n\nexport interface EmailTemplateVariable {\n key: string;\n required: boolean;\n source: EmailTemplateVariableSource;\n}\n\nexport interface Form {\n id: string;\n key: string;\n store_id: string;\n schema: FormSchema[];\n status: FormStatus;\n created_at: number;\n updated_at: number;\n}\n\nexport interface FormSubmission {\n id: string;\n form_id: string;\n store_id: string;\n contact_id: string;\n fields: FormField[];\n created_at: number;\n}\n\nexport interface Taxonomy {\n id: string;\n key: string;\n store_id: string;\n parent_id?: string | null;\n schema?: TaxonomySchema[];\n status: TaxonomyStatus;\n created_at: number;\n updated_at: number;\n}\n\nexport interface ServiceDuration {\n duration: number;\n is_pause: boolean;\n}\n\nexport interface WorkingHour {\n from: number;\n to: number;\n}\n\nexport interface WorkingDay {\n day: string;\n working_hours: WorkingHour[];\n}\n\nexport interface SpecificDate {\n date: number;\n working_hours: WorkingHour[];\n}\n\nexport interface ServiceProvider {\n id: string;\n service_id: string;\n provider_id: string;\n store_id: string;\n working_days: WorkingDay[];\n specific_dates: SpecificDate[];\n prices: Price[];\n durations: ServiceDuration[];\n slot_interval: number;\n forms: FormEntry[];\n reminders: number[];\n min_advance: number;\n max_advance: number;\n created_at: number;\n updated_at: number;\n}\n\nexport interface Service {\n id: string;\n key: string;\n slug: Record<string, string>;\n store_id: string;\n blocks: Block[];\n taxonomies: TaxonomyEntry[];\n created_at: number;\n updated_at: number;\n status: ServiceStatus;\n}\n\nexport interface ProviderTimelinePoint {\n timestamp: number;\n booked: number;\n}\n\nexport interface Provider {\n id: string;\n key: string;\n slug: Record<string, string>;\n store_id: string;\n status: ProviderStatus;\n blocks: Block[];\n taxonomies: TaxonomyEntry[];\n timeline: ProviderTimelinePoint[];\n created_at: number;\n updated_at: number;\n}\n\nexport interface WorkflowEdge {\n source: string;\n target: string;\n output: string;\n back_edge: boolean;\n}\n\nexport interface Workflow {\n id: string;\n key: string;\n store_id: string;\n secret: string;\n trigger_url: string;\n status: WorkflowStatus;\n nodes: Record<string, WorkflowNode>;\n edges: WorkflowEdge[];\n\n schedule?: string;\n created_at: number;\n updated_at: number;\n}\n\nexport type WorkflowNode =\n | WorkflowTriggerNode\n | WorkflowHttpNode\n | WorkflowSendEmailNode\n | WorkflowDeployWebhookNode\n | WorkflowGoogleDriveUploadNode\n | WorkflowSwitchNode\n | WorkflowTransformNode\n | WorkflowLoopNode;\n\nexport interface WorkflowTriggerNode {\n type: \"trigger\";\n delay_ms?: number;\n schema?: Block[];\n}\n\ninterface WorkflowHttpNodeBase {\n type: \"http\";\n url: string;\n headers: Record<string, string>;\n body?: unknown;\n timeout_ms: number;\n delay_ms: number;\n}\n\nexport type WorkflowHttpNode = WorkflowHttpNodeBase &\n (\n | {\n method: \"get\";\n retries: number;\n retry_delay_ms: number;\n }\n | {\n method: Exclude<WorkflowHttpMethod, \"get\">;\n retries: 0;\n retry_delay_ms: 0;\n }\n );\n\nexport type EmailRecipients = string | string[];\n\nexport interface EmailSendTemplateData {\n store_id: string;\n mailbox_id: string;\n template_id: string;\n recipients: EmailRecipients;\n vars?: Record<string, unknown>;\n}\n\nexport type EmailSend =\n | { type: \"order_store_notification\"; data: EmailSendTemplateData }\n | { type: \"order_contact_notification\"; data: EmailSendTemplateData }\n | { type: \"order_reminder_contact\"; data: EmailSendTemplateData }\n | { type: \"digital_access_ready_contact\"; data: EmailSendTemplateData }\n | { type: \"contact_store_notification\"; data: EmailSendTemplateData }\n | { type: \"subscription_confirmation\"; data: EmailSendTemplateData };\n\nexport interface EmailSendRequest {\n send_id: string;\n send: EmailSend;\n}\n\nexport type EmailDeliveryErrorKind =\n \"provider_call_not_started\" | \"provider_rejected\" | \"unknown_outcome\";\n\nexport type EmailDeliveryStatus =\n | \"pending\"\n | \"sending\"\n | \"sent\"\n | \"rejected\"\n | \"failed\"\n | \"unknown\"\n | \"skipped\";\n\nexport type EmailDeliveryType =\n | {\n type: \"platform_auth_code\";\n data: { account_id: string; challenge_id: string };\n }\n | {\n type: \"store_auth_code\";\n data: { store_id: string; account_id: string; challenge_id: string };\n }\n | {\n type: \"contact_verification\";\n data: { store_id: string; contact_id: string; challenge_id: string };\n }\n | {\n type: \"tenant_mailbox\";\n data: {\n send_id: string;\n store_id: string;\n mailbox_id: string;\n template_id: string;\n };\n }\n | {\n type: \"campaign_message\";\n data: {\n store_id: string;\n campaign_message_id: string;\n mailbox_id: string;\n };\n }\n | {\n type: \"support_message\";\n data: {\n store_id: string;\n support_message_id: string;\n mailbox_id: string;\n };\n };\n\nexport interface EmailDeliveryError {\n type: EmailDeliveryErrorKind;\n message: string;\n}\n\nexport interface EmailDelivery {\n id: string;\n revision: number;\n attempts: number;\n type: EmailDeliveryType;\n status: EmailDeliveryStatus;\n error?: EmailDeliveryError | null;\n requested_at: number;\n processing_started_at?: number | null;\n completed_at?: number | null;\n sent_at?: number | null;\n created_at: number;\n updated_at: number;\n}\n\nexport interface GetEmailDeliveryParams {\n delivery_id: string;\n}\n\nexport interface RetryEmailDeliveryParams {\n delivery_id: string;\n revision: number;\n}\n\nexport interface EmailSendDeliveryResult {\n delivery_id: string;\n revision: number;\n recipient: string;\n mailbox_id: string;\n template_id: string;\n status: EmailDeliveryStatus;\n error?: EmailDeliveryError | null;\n provider_message_id?: string | null;\n provider_thread_id?: string | null;\n}\n\nexport interface EmailSendResult {\n sent: number;\n deliveries: EmailSendDeliveryResult[];\n}\n\nexport interface WorkflowSendEmailNode {\n type: \"send_email\";\n send: EmailSend;\n delay_ms?: number;\n}\n\nexport interface WorkflowDeployWebhookNode {\n type: \"deploy_webhook\";\n build_hook_id: string;\n timeout_ms?: number;\n delay_ms?: number;\n}\n\nexport type WorkflowConnectionType = \"google_drive\";\n\nexport interface GoogleDriveWorkflowProfile {\n external_account_id: string;\n display_name: string;\n email?: string | null;\n}\n\nexport interface GoogleDriveWorkflowConnectionData {\n type: \"google_drive\";\n connected: boolean;\n profile: GoogleDriveWorkflowProfile | null;\n}\n\nexport type WorkflowConnectionData = GoogleDriveWorkflowConnectionData;\n\nexport interface WorkflowConnection {\n id: string;\n store_id: string;\n type: WorkflowConnectionType;\n data: WorkflowConnectionData;\n created_at: number;\n updated_at: number;\n}\n\nexport interface WorkflowConnectionConnectUrl {\n authorization_url: string;\n state: string;\n}\n\nexport interface WorkflowGoogleDriveUploadNode {\n type: \"google_drive_upload\";\n workflow_connection_id: string;\n name: string;\n mime_type?: string;\n content?: unknown;\n parent_folder_id?: string | null;\n timeout_ms?: number;\n delay_ms?: number;\n}\n\nexport interface WorkflowSwitchRule {\n condition: string;\n}\n\nexport interface WorkflowSwitchNode {\n type: \"switch\";\n rules: WorkflowSwitchRule[];\n delay_ms?: number;\n}\n\nexport interface WorkflowTransformNode {\n type: \"transform\";\n code: string;\n delay_ms?: number;\n}\n\nexport interface WorkflowLoopNode {\n type: \"loop\";\n expression: string;\n delay_ms?: number;\n}\n\nexport type WorkflowHttpMethod = \"get\" | \"post\" | \"put\" | \"patch\" | \"delete\";\n\nexport type ExecutionStatus =\n \"pending\" | \"running\" | \"completed\" | \"failed\" | \"cancelled\";\n\nexport interface NodeResult {\n output: any;\n route: string;\n started_at: number;\n completed_at: number;\n duration_ms: number;\n error?: string;\n}\n\nexport type WorkflowExecutionInput =\n | { type: \"webhook\"; payload: unknown }\n | { type: \"schedule\"; schedule: string };\n\nexport interface WorkflowExecution {\n id: string;\n workflow_id: string;\n store_id: string;\n status: ExecutionStatus;\n input: WorkflowExecutionInput;\n results: Record<string, NodeResult>;\n error?: string;\n scheduled_at: number;\n started_at: number;\n completed_at?: number;\n created_at: number;\n updated_at: number;\n}\n\nexport type WorkflowEffectType =\n \"http_mutation\" | \"deploy_webhook\" | \"google_drive_upload\";\n\nexport type WorkflowEffectStatus =\n \"requested\" | \"processing\" | \"succeeded\" | \"rejected\" | \"failed\" | \"unknown\";\n\nexport interface WorkflowEffectError {\n type: \"provider_call_not_started\" | \"provider_rejected\" | \"unknown_outcome\";\n message: string;\n at: number;\n}\n\nexport interface WorkflowEffectEvidence {\n output: unknown;\n}\n\nexport interface WorkflowEffect {\n id: string;\n store_id: string;\n workflow_id: string;\n execution_id: string;\n node_id: string;\n type: WorkflowEffectType;\n status: WorkflowEffectStatus;\n requested_at: number;\n processing_started_at?: number | null;\n completed_at?: number | null;\n evidence?: WorkflowEffectEvidence | null;\n error?: WorkflowEffectError | null;\n updated_at: number;\n}\n\nexport type ContactListType =\n | { type: \"standard\" }\n | { type: \"confirmation\"; confirm_template_id?: string | null }\n | { type: \"paid\" };\n\nexport type ContactListPlanCatalogStatus =\n \"requested\" | \"processing\" | \"succeeded\" | \"failed\" | \"unknown\";\n\nexport type ContactListPlanCatalogType =\n { type: \"create_product\" } | { type: \"create_price\"; price_index: number };\n\nexport type ContactListPlanCatalogSafeError =\n \"provider_rejected\" | \"invalid_catalog_state\" | \"unknown_outcome\";\n\nexport interface ContactListPlan {\n id: string;\n store_id: string;\n contact_list_id: string;\n key: string;\n name: string;\n description?: string | null;\n status: ContactListPlanStatus;\n prices: SubscriptionPrice[];\n payment_provider_id?: string | null;\n catalog_revision: number;\n catalog_type: ContactListPlanCatalogType;\n catalog_status: ContactListPlanCatalogStatus;\n catalog_safe_error?: ContactListPlanCatalogSafeError | null;\n created_at: number;\n updated_at: number;\n}\n\nexport type ContactListContentAccessTarget =\n | { type: \"cms_entry\"; entry_id: string }\n | { type: \"cms_collection\"; collection_id: string };\n\nexport interface ContactListContentAccess {\n id: string;\n target: ContactListContentAccessTarget;\n status: ContactListContentAccessStatus;\n created_at: number;\n updated_at: number;\n}\n\nexport type ContactSessionStatus = \"active\" | \"revoked\" | \"expired\";\n\nexport interface ContactSessionRecord {\n id: string;\n store_id: string;\n contact_id: string;\n status: ContactSessionStatus;\n created_at: number;\n expires_at: number;\n revoked_at: number | null;\n last_seen_at: number | null;\n}\n\nexport interface ContactSessionIssued {\n id: string;\n token: string;\n status: ContactSessionStatus;\n created_at: number;\n expires_at: number;\n}\n\nexport interface PromoUsage {\n promo_code_id: string;\n uses: number;\n}\n\nexport type ChannelType =\n | \"email\"\n | \"phone\"\n | \"whatsapp\"\n | \"instagram\"\n | \"facebook\"\n | \"messenger\"\n | \"linkedin_company\"\n | \"linkedin_person\"\n | \"contact_form\"\n | \"booking_link\"\n | \"telegram\"\n | \"tiktok\"\n | \"youtube\"\n | \"other\";\n\nexport interface ContactChannel {\n type: ChannelType;\n label?: string | null;\n value: string;\n normalized_value?: string | null;\n provider?: string | null;\n provider_user_id?: string | null;\n verified_at?: number | null;\n is_primary?: boolean;\n consent_status?: ContactChannelConsentStatus;\n subscribed_at?: number | null;\n unsubscribed_at?: number | null;\n source_url?: string | null;\n confidence?: number | null;\n notes?: string | null;\n created_at: number;\n updated_at: number;\n}\n\nexport type ContactChannelConsentStatus =\n \"unknown\" | \"subscribed\" | \"unsubscribed\" | \"bounced\" | \"blocked\";\n\nexport interface Contact {\n id: string;\n store_id: string;\n email: string | null;\n verified: boolean;\n status: ContactStatus;\n channels: ContactChannel[];\n promo_usage: PromoUsage[];\n taxonomies: TaxonomyEntry[];\n created_at: number;\n updated_at: number;\n}\n\nexport interface ContactListAccessResponse {\n has_access: boolean;\n membership?: ContactListMembership | null;\n}\n\nexport interface ContactListContentAccessResponse {\n has_access: boolean;\n contact_list?: ContactList | null;\n membership?: ContactListMembership | null;\n}\n\nexport interface ContactListManagementContactList {\n id: string;\n key: string;\n name: string;\n description?: string | null;\n type: ContactListType;\n content_access: ContactListContentAccess[];\n}\n\nexport interface ContactListManagementMembership {\n id: string;\n status: ContactListMembershipStatus;\n current_payment_attempt_id?: string | null;\n source: ContactListSource;\n start_date: number;\n end_date: number;\n created_at: number;\n updated_at: number;\n}\n\nexport interface ContactListManagementResponse {\n has_access: boolean;\n contact_list: ContactListManagementContactList;\n membership: ContactListManagementMembership;\n}\n\nexport interface ContactListSubscribeResponse {\n payment_action: CheckoutPaymentAction;\n payment_attempt?: StorefrontContactListPaymentAttemptSummary | null;\n membership?: ContactListMembership | null;\n}\n\nexport interface ContactList {\n id: string;\n store_id: string;\n key: string;\n name: string;\n description?: string | null;\n status: ContactListStatus;\n type: ContactListType;\n content_access: ContactListContentAccess[];\n source: ContactListSource;\n member_count: number;\n created_at: number;\n updated_at: number;\n}\n\nexport interface ContactListMembership {\n id: string;\n store_id: string;\n contact_id: string;\n contact_list_id: string;\n source: ContactListSource;\n fields: Record<string, unknown>;\n lead_description?: string | null;\n lead?: LeadInsight | null;\n status: ContactListMembershipStatus;\n current_payment_attempt_id?: string | null;\n start_date: number;\n end_date: number;\n created_at: number;\n updated_at: number;\n}\n\nexport type StorefrontContactListType =\n \"standard\" | \"confirmation\" | \"paid\";\n\nexport interface StorefrontContactList {\n id: string;\n key: string;\n name: string;\n description?: string | null;\n type: StorefrontContactListType;\n}\n\nexport interface StorefrontContactListPlan {\n id: string;\n key: string;\n name: string;\n description?: string | null;\n prices: SubscriptionPrice[];\n}\n\nexport interface StorefrontContactListPaymentAttemptSummary {\n plan_id: string;\n amount: number;\n currency: Currency;\n interval?: SubscriptionInterval | null;\n status: ContactListMembershipPaymentAttemptStatus;\n}\n\nexport interface StorefrontContactListMembership {\n id: string;\n status: ContactListMembershipStatus;\n contact_list: StorefrontContactList;\n payment_attempt?: StorefrontContactListPaymentAttemptSummary | null;\n start_date: number;\n end_date: number;\n created_at: number;\n updated_at: number;\n}\n\nexport interface ContactListMember {\n contact: Contact;\n membership: ContactListMembership;\n}\n\nexport interface ActionLocation {\n country_code?: string | null;\n city?: string | null;\n region?: string | null;\n timezone?: string | null;\n}\n\nexport interface ActionDevice {\n device_type?: string | null;\n browser?: string | null;\n os?: string | null;\n language?: string | null;\n}\n\nexport interface ActionSession {\n idx?: number | null;\n}\n\nexport interface ActionContext {\n location?: ActionLocation | null;\n device?: ActionDevice | null;\n session?: ActionSession | null;\n}\n\nexport interface SocialActionAuthor {\n provider_user_id?: string | null;\n name?: string | null;\n handle?: string | null;\n}\n\nexport type OpportunityType =\n | \"lead\"\n | \"support\"\n | \"complaint\"\n | \"question\"\n | \"upsell\"\n | \"partnership\"\n | \"engagement\";\n\nexport type OpportunityStage =\n \"new\" | \"reviewing\" | \"contacted\" | \"won\" | \"lost\" | \"dismissed\";\n\nexport type OpportunitySource =\n | {\n type: \"social_comment\";\n publication_id: string;\n comment_id: string;\n action_id?: string | null;\n }\n | {\n type: \"form_submission\";\n form_id: string;\n submission_id: string;\n }\n | {\n type: \"tracked\";\n key: string;\n action_id?: string | null;\n }\n | { type: \"manual\" };\n\nexport type ActionData =\n | {\n type: \"tracked\";\n value: {\n key: string;\n payload: Record<string, unknown>;\n context?: ActionContext | null;\n };\n }\n | {\n type: \"form_submission\";\n value: {\n form_id: string;\n form_key: string;\n submission_id: string;\n field_keys: string[];\n context?: ActionContext | null;\n };\n }\n | {\n type: \"social_comment\";\n value: {\n social_connection_id: string;\n type: SocialConnectionType;\n publication_id: string;\n comment_id: string;\n provider_comment_id: string;\n provider_parent_comment_id?: string | null;\n author: SocialActionAuthor;\n text: string;\n };\n }\n | {\n type: \"social_reply\";\n value: {\n social_connection_id: string;\n type: SocialConnectionType;\n publication_id: string;\n comment_id: string;\n provider_comment_id?: string | null;\n provider_comment_url?: string | null;\n text: string;\n };\n }\n | {\n type: \"order\";\n value: {\n order_id: string;\n status: string;\n total?: number | null;\n };\n }\n | {\n type: \"campaign_reply\";\n value: {\n campaign_id: string;\n enrollment_id: string;\n message_id: string;\n text: string;\n };\n }\n | {\n type: \"direct_message\";\n value: {\n social_connection_id: string;\n type: SocialConnectionType;\n thread_id: string;\n message_id: string;\n text: string;\n };\n }\n | {\n type: \"manual\";\n value: {\n text: string;\n account_id?: string | null;\n };\n }\n | {\n type: \"opportunity\";\n value: {\n type: OpportunityType;\n stage: OpportunityStage;\n score?: number | null;\n reason?: string | null;\n suggested_next_action?: string | null;\n source: OpportunitySource;\n lead?: LeadInsight | null;\n };\n };\n\nexport interface Action {\n id: string;\n store_id: string;\n contact_id: string;\n key: string;\n type: ActionData[\"type\"];\n preview_text?: string | null;\n occurred_at: number;\n created_at: number;\n updated_at: number;\n data: ActionData;\n}\n\nexport interface Mailbox {\n id: string;\n store_id: string;\n key: string;\n email: string;\n from_name: string;\n reply_to_email?: string | null;\n provider: SmtpImapMailboxProvider | GoogleMailboxProvider;\n status: MailboxStatus;\n daily_limit: number;\n sent_today: number;\n last_sent_at?: number | null;\n sync_revision: number;\n next_sync_at?: number | null;\n created_at: number;\n updated_at: number;\n}\n\nexport interface OutreachStep {\n id?: string;\n position?: number;\n delay_seconds?: number;\n type?: OutreachStepType;\n}\n\nexport interface OutreachPersonalizationCounters {\n total_profiles: number;\n draft_messages: number;\n generated_messages: number;\n template_messages: number;\n failed_messages: number;\n}\n\nexport interface OutreachPersonalizationState {\n run_id: string;\n status: OutreachPersonalizationStatus;\n step_position?: number | null;\n contact_ids: string[];\n overwrite: boolean;\n instructions?: string | null;\n error?: string | null;\n counters: OutreachPersonalizationCounters;\n started_at?: number | null;\n completed_at?: number | null;\n}\n\nexport interface CampaignLaunchState {\n revision: number;\n status: CampaignLaunchStatus;\n requested_at: number | null;\n processing_started_at: number | null;\n completed_at: number | null;\n error: string | null;\n}\n\nexport interface Campaign {\n id: string;\n store_id: string;\n key: string;\n name: string;\n mailbox_ids: string[];\n status: CampaignStatus;\n launch: CampaignLaunchState;\n steps: OutreachStep[];\n personalization: OutreachPersonalizationState;\n launched_at?: number | null;\n created_at: number;\n updated_at: number;\n}\n\nexport interface CampaignLaunchReadiness {\n ready: boolean;\n blockers: string[];\n warnings: string[];\n contact_count: number;\n sender_count: number;\n step_count: number;\n daily_capacity: number;\n expected_drafts: number;\n draft_count: number;\n pending_drafts: number;\n generated_drafts: number;\n template_drafts: number;\n edited_drafts: number;\n personalization_errors: number;\n stale_drafts: number;\n suppression_count: number;\n}\n\nexport interface CampaignEnrollmentImportResult {\n imported_count: number;\n existing_count: number;\n skipped_count: number;\n draft_count: number;\n}\n\nexport interface CampaignEnrollment {\n id: string;\n store_id: string;\n campaign_id: string;\n contact_id: string;\n contact_list_membership_id?: string | null;\n import_source: CampaignEnrollmentImportSource;\n import_source_id?: string | null;\n imported_at?: number | null;\n mailbox_id?: string | null;\n lead_description?: string | null;\n fields: Record<string, unknown>;\n status: CampaignEnrollmentStatus;\n current_step_position: number;\n next_action_at?: number | null;\n created_at: number;\n updated_at: number;\n}\n\nexport interface CampaignMessage {\n id: string;\n store_id: string;\n campaign_id: string;\n campaign_enrollment_id: string;\n contact_id: string;\n mailbox_id: string;\n direction: CampaignMessageDirection;\n type: CampaignMessageType;\n step_id?: string | null;\n step_position?: number | null;\n template_copy_hash?: string | null;\n copy_source: CampaignMessageCopySource;\n personalized_at?: number | null;\n edited_at?: number | null;\n personalization_error?: string | null;\n in_reply_to_message_id?: string | null;\n status: CampaignMessageStatus;\n to_email: string;\n from_email: string;\n subject: string;\n body: string;\n body_html?: string | null;\n template_id?: string | null;\n template_vars: Record<string, unknown>;\n rendered_subject?: string | null;\n rendered_html?: string | null;\n rendered_text?: string | null;\n attachments: string[];\n target_channel_type?: ChannelType | null;\n resolved_channel?: ContactChannel | null;\n title?: string | null;\n instructions?: string | null;\n suggested_message?: string | null;\n external_url?: string | null;\n continue_behavior?: ManualTaskContinueBehavior | null;\n outcome?: CampaignManualTaskOutcome | null;\n note?: string | null;\n provider_message_id?: string | null;\n provider_thread_id?: string | null;\n error?: string | null;\n due_at?: number | null;\n completed_at?: number | null;\n sent_at?: number | null;\n received_at?: number | null;\n created_at: number;\n updated_at: number;\n}\n\nexport interface CampaignEnrollmentConversationResponse {\n enrollment: CampaignEnrollment;\n messages: CampaignMessage[];\n}\n\nexport interface Suppression {\n id: string;\n store_id: string;\n campaign_id?: string | null;\n contact_id?: string | null;\n email?: string | null;\n domain?: string | null;\n target_type: SuppressionTargetType;\n target_key: string;\n scope_type: SuppressionScopeType;\n scope_key: string;\n reason: SuppressionReason;\n status: SuppressionStatus;\n source: SuppressionSource;\n created_at: number;\n updated_at: number;\n}\n\nexport type LeadResearchRunStatus =\n \"draft\" | \"running\" | \"completed\" | \"failed\" | \"cancelled\";\n\nexport type LeadEmailClassification =\n | \"official_domain\"\n | \"role_official\"\n | \"personal_official\"\n | \"free_mail\"\n | \"unusable\"\n | \"unknown\";\n\nexport type LeadValidationCheckStatus =\n \"passed\" | \"warning\" | \"failed\" | \"unknown\";\n\nexport type CampaignRoute =\n \"email_only\" | \"email_manual_followup\" | \"manual_only\" | \"needs_review\";\n\nexport interface LeadScores {\n fit: number;\n problem: number;\n channel: number;\n intent: number;\n data_quality: number;\n}\n\nexport interface ChannelMessage {\n type: ChannelType;\n subject?: string | null;\n body: string;\n}\n\nexport interface LeadInsight {\n company?: string | null;\n contact_name?: string | null;\n website?: string | null;\n industry?: string | null;\n location?: string | null;\n description?: string | null;\n pain_points: string[];\n fit_reason?: string | null;\n scores: LeadScores;\n best_channel?: ChannelType | null;\n backup_channel?: ChannelType | null;\n route: CampaignRoute;\n first_messages: ChannelMessage[];\n run_id?: string | null;\n source_url?: string | null;\n source_excerpt?: string | null;\n reasoning_summary?: string | null;\n}\n\nexport interface LeadResearchRun {\n id: string;\n store_id: string;\n contact_list_id: string;\n title?: string | null;\n status: LeadResearchRunStatus;\n error?: string | null;\n started_at?: number | null;\n completed_at?: number | null;\n created_at: number;\n updated_at: number;\n}\n\nexport interface LeadValidationCheck {\n key: string;\n status: LeadValidationCheckStatus;\n message: string;\n}\n\nexport interface LeadEmailValidationResult {\n email: string;\n normalized_email?: string | null;\n domain?: string | null;\n classification: LeadEmailClassification;\n confidence: number;\n importable: boolean;\n hard_blockers: string[];\n checks: LeadValidationCheck[];\n}\n\nexport type LeadResearchMessageRole =\n \"system\" | \"user\" | \"assistant\" | \"action\";\n\nexport interface LeadResearchMessage {\n id: string;\n store_id: string;\n run_id: string;\n role: LeadResearchMessageRole;\n content: string;\n metadata?: Record<string, unknown> | null;\n created_at: number;\n}\n\nexport interface ResearchContactListMember {\n contact: Contact;\n membership: ContactListMembership;\n}\n\nexport interface SendLeadResearchMessageResult {\n response: string;\n run: LeadResearchRun;\n contact_list_members: ResearchContactListMember[];\n}\n\nexport type EventAction =\n | { action: \"order_created\" }\n | { action: \"order_updated\" }\n | { action: \"order_confirmed\" }\n | {\n action: \"order_payment_received\";\n data: { amount: number; currency: Currency };\n }\n | { action: \"order_payment_failed\"; data: { reason?: string } }\n | {\n action: \"order_refunded\";\n data: { amount: number; currency: Currency; reason?: string };\n }\n | { action: \"order_cancelled\"; data: { reason?: string } }\n | { action: \"order_shipment_created\"; data: { shipment_id: string } }\n | { action: \"order_shipment_in_transit\"; data: { shipment_id: string } }\n | { action: \"order_shipment_out_for_delivery\"; data: { shipment_id: string } }\n | { action: \"order_shipment_delivered\"; data: { shipment_id: string } }\n | {\n action: \"order_shipment_failed\";\n data: { shipment_id: string; reason?: string };\n }\n | { action: \"order_shipment_returned\"; data: { shipment_id: string } }\n | {\n action: \"order_shipment_status_changed\";\n data: { shipment_id: string; from: string; to: string };\n }\n | { action: \"product_created\" }\n | { action: \"product_updated\" }\n | { action: \"product_deleted\" }\n | { action: \"collection_created\" }\n | { action: \"collection_updated\" }\n | { action: \"collection_deleted\" }\n | { action: \"entry_created\" }\n | { action: \"entry_updated\" }\n | { action: \"entry_deleted\" }\n | { action: \"provider_created\" }\n | { action: \"provider_updated\" }\n | { action: \"provider_deleted\" }\n | { action: \"service_created\" }\n | { action: \"service_updated\" }\n | { action: \"service_deleted\" }\n | { action: \"account_created\" }\n | { action: \"account_updated\" }\n | { action: \"account_deleted\" }\n | { action: \"media_created\" }\n | { action: \"media_deleted\" }\n | { action: \"store_created\" }\n | { action: \"store_updated\" }\n | { action: \"contact_list_created\" }\n | { action: \"contact_list_updated\" }\n | { action: \"contact_list_contact_added\" }\n | { action: \"contact_list_contact_removed\" }\n | { action: \"contact_list_contact_pending\" }\n | { action: \"contact_list_contact_confirmed\" }\n | { action: \"contact_list_contact_cancelled\" };\n\nexport interface Event {\n id: string;\n entity: string;\n event: EventAction;\n actor: string;\n created_at: number;\n}\n\nexport type ShippingStatus =\n | \"pending\"\n | \"label_created\"\n | \"in_transit\"\n | \"out_for_delivery\"\n | \"delivered\"\n | \"failed\"\n | \"returned\"\n | \"cancelled\";\n\nexport type ShippingProvider = \"shippo\";\n\nexport interface ShippingRateLine {\n order_item_id: string;\n quantity: number;\n}\n\nexport interface ShipmentLine {\n order_item_id: string;\n fulfillment_order_line_id?: string | null;\n quantity: number;\n}\n\nexport type ShippingLabelStatus =\n \"requested\" | \"processing\" | \"succeeded\" | \"rejected\" | \"failed\" | \"unknown\";\n\nexport type ShippingLabelRefundStatus =\n \"requested\" | \"processing\" | \"succeeded\" | \"rejected\" | \"failed\" | \"unknown\";\n\nexport type ShippingLabelRefundReconciliationStatus =\n \"not_started\" | \"succeeded\" | \"conflict\";\n\nexport interface ShippingLabelRefund {\n id: string;\n shipment_id: string;\n amount: number;\n currency: Currency;\n status: ShippingLabelRefundStatus;\n revision: number;\n attempt_count: number;\n provider_refund_id?: string | null;\n provider_status?: string | null;\n credit_settlement_id?: string | null;\n allocation_reconciliation_status: ShippingLabelRefundReconciliationStatus;\n allocation_reconciliation_completed_at?: number | null;\n safe_allocation_reconciliation_error?: string | null;\n safe_error?: string | null;\n requested_at: number;\n completed_at?: number | null;\n created_at: number;\n updated_at: number;\n}\n\nexport type ShippingLabelAdjustmentStatus =\n \"requested\" | \"processing\" | \"succeeded\" | \"rejected\" | \"failed\" | \"unknown\";\n\nexport interface ShippingLabelAdjustment {\n id: string;\n shipment_id: string;\n provider_adjustment_id: string;\n amount: number;\n currency: Currency;\n reason: string;\n status: ShippingLabelAdjustmentStatus;\n settlement_id: string;\n safe_error?: string | null;\n created_at: number;\n updated_at: number;\n}\n\nexport type ShippingLabelSettlementDirection = \"debit\" | \"credit\";\n\nexport type ShippingLabelSettlementStatus =\n \"requested\" | \"processing\" | \"succeeded\" | \"rejected\" | \"failed\" | \"unknown\";\n\nexport type ShipmentAllocationStatus = \"reserved\" | \"fulfilled\" | \"released\";\n\nexport type ShippingLabelSettlementType =\n | { type: \"purchase_debit\" }\n | { type: \"purchase_compensation_credit\" }\n | { type: \"refund_credit\"; refund_id: string }\n | { type: \"adjustment_debit\"; adjustment_id: string }\n | { type: \"adjustment_credit\"; adjustment_id: string };\n\nexport interface ShippingLabelSettlement {\n id: string;\n shipment_id: string;\n type: ShippingLabelSettlementType;\n direction: ShippingLabelSettlementDirection;\n amount: number;\n currency: Currency;\n status: ShippingLabelSettlementStatus;\n revision: number;\n attempt_count: number;\n provider_object_id?: string | null;\n provider_status?: string | null;\n safe_error?: string | null;\n requested_at: number;\n completed_at?: number | null;\n created_at: number;\n updated_at: number;\n}\n\nexport interface Shipment {\n id: string;\n store_id: string;\n order_id: string;\n provider: ShippingProvider;\n fulfillment_order_id?: string | null;\n location_id: string;\n rate_id: string;\n lines: ShipmentLine[];\n allocation_status: ShipmentAllocationStatus;\n carrier: string;\n service: string;\n postage_amount: number;\n fee_amount: number;\n total_amount: number;\n currency: Currency;\n tracking_number?: string | null;\n tracking_url?: string | null;\n label_url?: string | null;\n status: ShippingStatus;\n tracking_status_at_ms: number | null;\n revision: number;\n label_status: ShippingLabelStatus;\n label_revision: number;\n label_attempt_count: number;\n provider_transaction_id?: string | null;\n provider_status?: string | null;\n safe_label_error?: string | null;\n label_requested_at: number;\n label_completed_at?: number | null;\n created_at: number;\n updated_at: number;\n}\n\nexport interface ShippingRate {\n id: string;\n carrier: string;\n service: string;\n display_name: string;\n amount: number;\n currency: Currency;\n estimated_days?: number | null;\n}\n\nexport interface Parcel {\n length: number;\n width: number;\n height: number;\n weight: number;\n distance_unit: \"cm\" | \"in\" | \"ft\" | \"mm\" | \"m\" | \"yd\";\n mass_unit: \"oz\" | \"lb\" | \"g\" | \"kg\";\n}\n\nexport interface CreateShipmentResponse {\n shipment_id: string;\n shipment: Shipment;\n}\n\nexport interface CustomsItem {\n description: string;\n quantity: number;\n net_weight: string;\n mass_unit: string;\n value_amount: string;\n value_currency: Currency;\n origin_country: string;\n tariff_number?: string | null;\n}\n\nexport interface CustomsDeclaration {\n contents_type: string;\n contents_explanation?: string | null;\n non_delivery_option: string;\n certify: boolean;\n certify_signer: string;\n items: CustomsItem[];\n}\n\nexport interface PromoCode {\n id: string;\n store_id: string;\n code: string;\n discounts: import(\"./api\").Discount[];\n conditions: import(\"./api\").Condition[];\n status: PromoCodeStatus;\n uses: number;\n created_at: number;\n updated_at: number;\n}\n"]}
|
package/dist/types.d.cts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { dQ as Access, ai as Account, hV as AccountAddress, hW as AccountApiToken, hX as AccountLifecycle, dR as AccountToken, af as AccountUpdateResponse, cV as Action, dS as ActionContext, dT as ActionData, hY as ActionDevice, hZ as ActionLocation, h_ as ActionSession, y as AddCartItemParams, cQ as AddContactListContactParams, av as AddMemberParams, A as Address, dU as ApiResponse, al as AuthToken, e as AvailabilityResponse, dV as AvailabilitySlot, B as Block, dW as BlockSchema, dX as BlockSchemaProperties, dY as BlockSchemaType, h$ as BlockType, dZ as BookingOrderItemStatus, ay as BuildHook, d_ as BuildHookType, cY as Campaign, d8 as CampaignEnrollment, da as CampaignEnrollmentConversationResponse, d$ as CampaignEnrollmentImportResult, e0 as CampaignEnrollmentImportSource, e1 as CampaignEnrollmentStatus, d3 as CampaignLaunchReadiness, e2 as CampaignManualTaskOutcome, dh as CampaignMessage, e3 as CampaignMessageCopySource, e4 as CampaignMessageDirection, e5 as CampaignMessageStatus, e6 as CampaignMessageType, e7 as CampaignRoute, e8 as CampaignStatus, du as CancelLeadResearchRunParams, bt as CancelSocialPublicationParams, C as Cart, e9 as CartOrigin, ea as CartStatus, eb as ChannelMessage, ec as ChannelType, H as CheckoutCartParams, ed as CheckoutPaymentAction, bA as ClassifySocialPublicationCommentsParams, D as ClearCartParams, l as Collection, a as CollectionEntry, ee as CollectionStatus, ef as Condition, eg as ConditionValue, be as ConnectSocialAccountParams, aU as ConnectStripePaymentProviderParams, ad as Contact, eh as ContactChannel, i0 as ContactChannelConsentStatus, j as ContactDetail, i1 as ContactInfo, a2 as ContactList, a6 as ContactListAccessParams, a7 as ContactListAccessResponse, ei as ContactListContentAccess, a8 as ContactListContentAccessParams, a9 as ContactListContentAccessResponse, ej as ContactListContentAccessStatus, ek as ContactListContentAccessTarget, cR as ContactListMember, el as ContactListMembership, em as ContactListMembershipPayment, en as ContactListMembershipProvider, eo as ContactListMembershipProviderCancellation, ep as ContactListMembershipProviderCancellationError, eq as ContactListMembershipProviderCancellationStatus, er as ContactListMembershipStatus, es as ContactListPlan, et as ContactListPlanStatus, eu as ContactListSource, ev as ContactListStatus, a5 as ContactListSubscribeResponse, ew as ContactListType, i2 as ContactSessionToken, ex as ContactStatus, i3 as ContactVerificationCode, ey as Coordinates, az as CreateBuildHookParams, cX as CreateCampaignParams, ck as CreateCartParams, bJ as CreateCollectionParams, cK as CreateContactListParams, cC as CreateContactParams, b$ as CreateEmailTemplateParams, bN as CreateEntryParams, bQ as CreateFormParams, dp as CreateLeadResearchRunParams, aL as CreateLocationParams, b2 as CreateMailboxParams, aO as CreateMarketParams, au as CreatePortalSessionParams, c7 as CreateProductParams, i4 as CreateProductVariantInput, cw as CreatePromoCodeParams, ct as CreateProviderParams, cm as CreateServiceParams, cq as CreateServiceProviderParams, bk as CreateSocialPublicationParams, am as CreateStoreParams, dj as CreateSuppressionParams, bX as CreateTaxonomyParams, aF as CreateWebhookParams, dB as CreateWorkflowParams, ez as CustomsDeclaration, eA as CustomsItem, eB as DaySlots, ag as DeleteAccountParams, aB as DeleteBuildHookParams, bL as DeleteCollectionParams, c2 as DeleteEmailTemplateParams, bP as DeleteEntryParams, bS as DeleteFormParams, aN as DeleteLocationParams, aQ as DeleteMarketParams, aW as DeletePaymentProviderParams, c9 as DeleteProductParams, cz as DeletePromoCodeParams, cv as DeleteProviderParams, co as DeleteServiceParams, cs as DeleteServiceProviderParams, bj as DeleteSocialAccountParams, aZ as DeleteStoreMediaParams, ao as DeleteStoreParams, bZ as DeleteTaxonomyParams, aH as DeleteWebhookParams, dP as DeleteWorkflowAccountParams, dE as DeleteWorkflowParams, V as DigitalAccessDownloadResponse, eC as DigitalAccessGrant, eD as DigitalAccessGrantStatus, eE as DigitalAsset, eF as DigitalAssetStatus, eG as DigitalAssetType, eH as DigitalDeliveryPolicy, eI as Discount, eJ as DiscountAllocation, N as DownloadDigitalAccessParams, d1 as DuplicateCampaignParams, c0 as EmailTemplate, eK as EmailTemplateStatus, eL as EmailTemplateVariable, eM as EntryBlockQuery, eN as EntryStatus, E as EshopCartItem, eO as EshopItem, eP as EshopQuoteItem, eQ as EshopStoreState, eR as Event, eS as EventAction, eT as ExecutionStatus, i5 as FacebookPageContent, eU as FieldOperation, cW as FindActionsParams, d7 as FindCampaignEnrollmentsParams, dg as FindCampaignMessagesParams, c$ as FindCampaignsParams, cl as FindCartsParams, cU as FindContactListContactsParams, a3 as FindContactListsParams, cF as FindContactsParams, dx as FindLeadResearchMessagesParams, dr as FindLeadResearchRunsParams, b9 as FindMailboxesParams, Y as FindServiceProvidersParams, bz as FindSocialPublicationCommentsParams, bp as FindSocialPublicationsParams, aJ as FindStoreMediaParams, dn as FindSuppressionsParams, b as Form, F as FormEntry, ac as FormField, eV as FormFieldType, eW as FormSchema, eX as FormSchemaType, eY as FormStatus, r as FormSubmission, eZ as FulfillmentOrder, e_ as FulfillmentOrderLine, e$ as FulfillmentOrderRequestStatus, f0 as FulfillmentOrderStatus, f1 as GalleryItem, d6 as GenerateOutreachPersonalizedDraftsParams, f2 as GeoLocation, f3 as GeoLocationBlock, i6 as GeoLocationBlockProperties, i7 as GetAnalyticsHealthParams, i8 as GetAnalyticsParams, _ as GetAvailabilityParams, d9 as GetCampaignEnrollmentConversationParams, d2 as GetCampaignLaunchReadinessParams, c_ as GetCampaignParams, x as GetCartParams, G as GetCollectionParams, bM as GetCollectionsParams, a1 as GetContactListParams, cE as GetContactParams, w as GetCurrentCartParams, i9 as GetDeliveryStatsParams, c3 as GetEmailTemplateParams, c4 as GetEmailTemplatesParams, n as GetEntriesParams, m as GetEntryParams, p as GetFormParams, bV as GetFormSubmissionParams, bU as GetFormSubmissionsParams, bT as GetFormsParams, ds as GetLeadResearchRunParams, b5 as GetMailboxParams, ah as GetMeParams, aX as GetMediaParams, I as GetOrderParams, K as GetOrdersParams, u as GetProductParams, v as GetProductsParams, cA as GetPromoCodeParams, cB as GetPromoCodesParams, $ as GetProviderParams, a0 as GetProvidersParams, cb as GetQuoteParams, W as GetServiceParams, X as GetServicesParams, ce as GetShippingRatesParams, ba as GetSocialCapabilitiesParams, bg as GetSocialOAuthAttemptParams, bx as GetSocialPublicationCommentThreadParams, bu as GetSocialPublicationCommentsParams, bE as GetSocialPublicationMetricsParams, bn as GetSocialPublicationParams, a_ as GetStoreMediaParams, ap as GetStoreParams, aq as GetStoresParams, ar as GetSubscriptionPlansParams, dm as GetSuppressionParams, b_ as GetTaxonomiesParams, t as GetTaxonomyChildrenParams, s as GetTaxonomyParams, dN as GetWorkflowAccountConnectUrlParams, dL as GetWorkflowAccountsParams, dK as GetWorkflowExecutionParams, dJ as GetWorkflowExecutionsParams, dF as GetWorkflowParams, dG as GetWorkflowsParams, f4 as HistoryEntry, d4 as ImportCampaignEnrollmentsParams, cO as ImportContactListPreviewParams, f5 as ImportContactListRowResult, f6 as ImportContactRowError, f7 as ImportContactRowInput, f8 as ImportContactRowResult, cM as ImportContactsIntoContactListParams, cN as ImportContactsIntoContactListResult, cI as ImportContactsParams, f9 as ImportContactsPreviewParams, cP as ImportContactsPreviewResult, cJ as ImportContactsResult, fa as ImportFieldMapping, fb as ImportPreviewRow, ia as InstagramBusinessContent, fc as InstagramPlacement, ib as IntervalPeriod, fd as InventoryLevel, fe as Language, d0 as LaunchCampaignParams, ff as LeadEmailClassification, dA as LeadEmailValidationResult, fg as LeadInsight, dy as LeadResearchMessage, fh as LeadResearchMessageRole, dq as LeadResearchRun, fi as LeadResearchRunStatus, fj as LeadScores, fk as LeadValidationCheck, fl as LeadValidationCheckStatus, fm as LineMoneySnapshot, ax as ListBuildHooksParams, aR as ListPaymentProvidersParams, bc as ListSocialAccountsParams, aD as ListWebhooksParams, L as Location, ic as LoginAccountParams, id as LogoutParams, ak as MagicLinkVerifyParams, b3 as Mailbox, fn as MailboxConnectionSecurity, fo as MailboxPreset, fp as MailboxStatus, fq as MailboxSyncStatus, fr as ManualTaskContinueBehavior, M as Market, aK as Media, fs as MediaRef, ft as MediaResolution, fu as MerchantCredit, fv as MerchantCreditReason, fw as MerchantCreditStatus, fx as MerchantRecovery, fy as MerchantRecoveryStatus, cH as MergeContactsParams, fz as NodeResult, fA as OpportunitySource, fB as OpportunityStage, fC as OpportunityType, J as Order, fD as OrderCancellationReason, fE as OrderCheckoutCompatibleItemInput, ab as OrderCheckoutItemInput, ie as OrderCheckoutParams, O as OrderCheckoutResult, fF as OrderFulfillmentStatus, fG as OrderItem, fH as OrderItemFulfillmentStatus, fI as OrderItemSnapshot, fJ as OrderItemStatus, fK as OrderPayment, fL as OrderPaymentPromoCode, fM as OrderPaymentProvider, fN as OrderPaymentRefund, fO as OrderPaymentStatus, fP as OrderPaymentSummaryStatus, fQ as OrderPaymentTax, fR as OrderPaymentTaxLine, f as OrderQuote, fS as OrderQuoteCompatibleItemInput, fT as OrderQuoteItemInput, ig as OrderRefundError, fU as OrderShipping, fV as OrderStatus, fW as OutreachPersonalizationCounters, fX as OutreachPersonalizationState, fY as OutreachPersonalizationStatus, fZ as OutreachStep, f_ as OutreachStepType, f$ as OutreachThreadMode, o as PaginatedResponse, g0 as Parcel, g1 as PaymentCaptureMethod, g as PaymentMethod, g2 as PaymentMethodType, aS as PaymentProvider, g3 as PaymentStoreConfig, ih as PaymentTaxLine, g4 as PaymentTransaction, g5 as PaymentTransactionProvider, g6 as PaymentTransactionStatus, g7 as PaymentTransactionType, b8 as PrepareMailboxParams, c5 as PreviewEmailTemplateParams, c6 as PreviewEmailTemplateResponse, ii as PreviewEmailTemplateWarning, P as Price, ij as PriceProvider, cc as ProcessOrderRefundParams, cd as ProcessOrderRefundResponse, c as Product, h as ProductCheckoutItemInput, g8 as ProductInventory, g9 as ProductLineItem, ga as ProductLineItemSnapshot, gb as ProductQuoteItemInput, gc as ProductQuoteLine, gd as ProductQuoteLineAvailability, ge as ProductStatus, aa as ProductVariant, cx as PromoCode, gf as PromoCodeStatus, gg as PromoCodeValidation, ik as PromoUsage, d as Provider, gh as ProviderAvailability, gi as ProviderStatus, gj as ProviderTimelinePoint, gk as ProviderWithTimeline, gl as PurchaseLabelResult, Q as QuoteCartParams, gm as QuoteLine, aT as RefreshPaymentProvidersParams, gn as RefundLine, ci as RefundShippingLabelParams, go as RefundStatus, gp as RefundType, z as RemoveCartItemParams, cT as RemoveContactListContactParams, aw as RemoveMemberParams, de as ReplyCampaignEnrollmentParams, bC as ReplySocialPublicationCommentParams, R as RequestOptions, gq as ResearchContactListMember, bs as ScheduleSocialPublicationParams, aj as SearchAccountsParams, il as SearchOrderServiceItemsParams, bi as SelectSocialDestinationParams, dv as SendLeadResearchMessageParams, dw as SendLeadResearchMessageResult, S as Service, i as ServiceCheckoutItemInput, gr as ServiceCheckoutPart, gs as ServiceDuration, gt as ServiceLineItem, gu as ServiceLineItemSnapshot, cp as ServiceProvider, im as ServiceProviderInput, gv as ServiceQuoteItem, gw as ServiceQuoteItemInput, gx as ServiceQuoteLine, gy as ServiceQuoteLineAvailability, gz as ServiceStatus, io as SetContactEmailParams, ip as SetupAnalyticsParams, cg as ShipParams, ch as ShipResult, gA as Shipment, gB as ShipmentLine, gC as ShippingLabelAdjustment, gD as ShippingLabelAdjustmentStatus, gE as ShippingLabelProviderPurchase, gF as ShippingLabelProviderRefund, gG as ShippingLabelPurchase, gH as ShippingLabelPurchaseError, gI as ShippingLabelPurchaseStatus, cj as ShippingLabelRefund, gJ as ShippingLabelRefundStatus, gK as ShippingLine, gL as ShippingMethod, cf as ShippingRate, gM as ShippingStatus, gN as ShippingWeightTier, gO as Slot, gP as SlotRange, gQ as SmtpImapMailboxProvider, bd as SocialAccount, iq as SocialActionAuthor, gR as SocialAnalyticsCapabilities, bf as SocialConnectResponse, gS as SocialDestinationMetadata, gT as SocialEngagementCapabilities, bh as SocialOAuthCallbackResponse, gU as SocialOAuthCallbackStatus, gV as SocialOAuthCredential, gW as SocialOAuthDestinationOption, bb as SocialProviderCapability, gX as SocialProviderType, bo as SocialPublication, bv as SocialPublicationComment, bB as SocialPublicationCommentClassificationResult, gY as SocialPublicationCommentIntent, gZ as SocialPublicationCommentPriority, g_ as SocialPublicationCommentReply, g$ as SocialPublicationCommentReplyError, bD as SocialPublicationCommentReplyResponse, h0 as SocialPublicationCommentReplyStatus, h1 as SocialPublicationCommentStatus, h2 as SocialPublicationContent, bI as SocialPublicationEngagementSyncResult, bF as SocialPublicationMetricSnapshot, bl as SocialPublicationMutationResponse, h3 as SocialPublicationStatus, br as SocialPublicationValidation, h4 as SpecificDate, df as StopCampaignEnrollmentParams, k as Store, ir as StoreEmails, h5 as StoreMembership, is as StoreRole, aI as StoreRuntimeConfig, h6 as StoreSubscription, h7 as StoreSubscriptionPayment, h8 as StoreSubscriptionProvider, h9 as StoreSubscriptionProviderError, ha as StoreSubscriptionProviderLifecycle, hb as StoreSubscriptionProviderLifecycleStatus, hc as StoreSubscriptionProviderOperation, hd as StoreSubscriptionSource, he as StoreSubscriptionStatus, aV as StripePaymentProviderConnectResponse, q as SubmitFormParams, a4 as SubscribeContactListParams, at as SubscribeParams, it as SubscriptionAction, iu as SubscriptionInterval, as as SubscriptionPlan, hf as SubscriptionPrice, dk as Suppression, hg as SuppressionReason, hh as SuppressionScopeType, hi as SuppressionSource, hj as SuppressionStatus, hk as SuppressionTargetType, bH as SyncSocialEngagementParams, by as SyncSocialPublicationCommentThreadParams, bw as SyncSocialPublicationCommentsParams, bG as SyncSocialPublicationMetricsParams, hl as SystemTemplateKey, hm as TaxLine, hn as TaxLineReversal, T as Taxonomy, ho as TaxonomyEntry, hp as TaxonomyField, hq as TaxonomyFieldQuery, hr as TaxonomyQuery, hs as TaxonomySchema, ht as TaxonomySchemaType, hu as TaxonomyStatus, b6 as TestMailboxParams, b7 as TestMailboxResult, aC as TestWebhookParams, iv as TiktokAccountContent, hv as TiktokPrivacy, iw as TimeRange, hw as TimelinePoint, b0 as TrackEmailOpenParams, b1 as TriggerNotificationParams, dH as TriggerWorkflowParams, hx as TrustedOrderCheckoutCompatibleItemInput, hy as TrustedOrderCheckoutItemInput, hz as TrustedProductCheckoutItemInput, hA as TrustedServiceCheckoutItemInput, ae as UpdateAccountContactParams, aA as UpdateBuildHookParams, dc as UpdateCampaignEnrollmentDraftParams, db as UpdateCampaignEnrollmentParams, dd as UpdateCampaignEnrollmentStepExecutionParams, di as UpdateCampaignMessageParams, cZ as UpdateCampaignParams, U as UpdateCartParams, bK as UpdateCollectionParams, cS as UpdateContactListContactParams, cL as UpdateContactListParams, cG as UpdateContactParams, c1 as UpdateEmailTemplateParams, bO as UpdateEntryParams, bR as UpdateFormParams, bW as UpdateFormSubmissionParams, dt as UpdateLeadResearchRunParams, aM as UpdateLocationParams, b4 as UpdateMailboxParams, aP as UpdateMarketParams, a$ as UpdateMediaParams, ca as UpdateOrderParams, c8 as UpdateProductParams, ix as UpdateProductVariantInput, cy as UpdatePromoCodeParams, cu as UpdateProviderParams, cn as UpdateServiceParams, cr as UpdateServiceProviderParams, bm as UpdateSocialPublicationParams, an as UpdateStoreParams, dl as UpdateSuppressionParams, bY as UpdateTaxonomyParams, aG as UpdateWebhookParams, dD as UpdateWorkflowParams, aY as UploadStoreMediaParams, dz as ValidateLeadEmailParams, bq as ValidateSocialPublicationParams, hB as ValidationError, aE as Webhook, hC as WebhookEventSubscription, dC as Workflow, dM as WorkflowAccount, dO as WorkflowAccountConnectUrl, hD as WorkflowAccountProfile, hE as WorkflowAccountType, hF as WorkflowDeployWebhookNode, hG as WorkflowEdge, dI as WorkflowExecution, hH as WorkflowGoogleDriveUploadNode, hI as WorkflowHttpMethod, hJ as WorkflowHttpNode, hK as WorkflowLoopNode, hL as WorkflowNode, hM as WorkflowStatus, hN as WorkflowSwitchNode, hO as WorkflowSwitchRule, hP as WorkflowTransformNode, hQ as WorkflowTriggerNode, hR as WorkingDay, hS as WorkingHour, iy as XAccountContent, iz as YoutubeChannelContent, hT as YoutubePrivacy, hU as Zone, Z as ZoneLocation } from './api-DvsFdOaF.cjs';
|
|
1
|
+
export { gy as Access, aC as Account, aE as AccountApiToken, aG as AccountApiTokenCreated, k6 as AccountApiTokenStatus, k7 as AccountLifecycle, aI as AccountSession, km as AccountSortField, az as AccountUpdateResponse, et as Action, iz as ActionContext, iy as ActionData, kd as ActionDevice, kc as ActionLocation, ke as ActionSession, d8 as ActivateDigitalAccessGrantParams, as as AddCartItemParams, e5 as AddContactListContactParams, b0 as AddMemberParams, k as Address, aJ as AuthCodeVerifyParams, aK as AuthToken, A as AvailabilityResponse, jy as AvailabilitySlot, B as Block, gD as BlockSchema, gE as BlockSchemaProperties, gF as BlockSchemaType, k4 as BlockType, hQ as BookingOrderItemStatus, b6 as BuildHook, fu as BuildHookType, ew as Campaign, eI as CampaignEnrollment, eK as CampaignEnrollmentConversationResponse, iO as CampaignEnrollmentImportResult, ja as CampaignEnrollmentImportSource, j9 as CampaignEnrollmentStatus, eD as CampaignLaunchReadiness, iN as CampaignLaunchState, j8 as CampaignLaunchStatus, iK as CampaignManualTaskOutcome, eR as CampaignMessage, jb as CampaignMessageCopySource, jc as CampaignMessageDirection, je as CampaignMessageStatus, jd as CampaignMessageType, iS as CampaignRoute, j7 as CampaignStatus, f1 as CancelLeadResearchRunParams, c5 as CancelSocialPublicationParams, l as Cart, fq as CartOrigin, fr as CartStatus, iT as ChannelMessage, iu as ChannelType, aw as CheckoutCartParams, g4 as CheckoutPaymentAction, cc as ClassifySocialPublicationCommentsParams, au as ClearCartParams, s as Collection, C as CollectionEntry, jq as CollectionStatus, i_ as Condition, jC as ConditionValue, bE as ConnectGoogleMailboxParams, bS as ConnectSocialConnectionParams, bq as ConnectStripePaymentProviderParams, r as Contact, it as ContactChannel, kb as ContactChannelConsentStatus, ks as ContactInfo, d_ as ContactList, ad as ContactListAccessParams, ae as ContactListAccessResponse, h8 as ContactListContentAccess, af as ContactListContentAccessParams, ag as ContactListContentAccessResponse, h9 as ContactListContentAccessStatus, ha as ContactListContentAccessTarget, hb as ContactListManagementContactList, hc as ContactListManagementMembership, ah as ContactListManagementResponse, e6 as ContactListMember, iA as ContactListMembership, eq as ContactListMembershipCancellation, gh as ContactListMembershipCancellationSafeError, gi as ContactListMembershipCancellationStatus, gj as ContactListMembershipCancellationType, ej as ContactListMembershipPaymentAttempt, gk as ContactListMembershipPaymentAttemptSafeError, gl as ContactListMembershipPaymentAttemptStatus, gm as ContactListMembershipPaymentAttemptType, em as ContactListMembershipRefund, gn as ContactListMembershipRefundSafeError, go as ContactListMembershipRefundStatus, gp as ContactListMembershipRefundType, j5 as ContactListMembershipStatus, eb as ContactListPlan, h4 as ContactListPlanCatalogSafeError, h5 as ContactListPlanCatalogStatus, h6 as ContactListPlanCatalogType, jO as ContactListPlanPriceInput, h7 as ContactListPlanStatus, j4 as ContactListSource, j3 as ContactListStatus, ac as ContactListSubscribeResponse, h3 as ContactListType, an as ContactSessionIssued, ir as ContactSessionRecord, is as ContactSessionStatus, j2 as ContactStatus, gB as Coordinates, aF as CreateAccountApiTokenParams, b7 as CreateBuildHookParams, ev as CreateCampaignParams, dw as CreateCartParams, cs as CreateCollectionParams, dZ as CreateContactListParams, ea as CreateContactListPlanParams, dN as CreateContactParams, cL as CreateEmailTemplateParams, cw as CreateEntryParams, cA as CreateFormParams, eY as CreateLeadResearchRunParams, bh as CreateLocationParams, bG as CreateMailboxParams, bk as CreateMarketParams, cY as CreateOrderRefundParams, cZ as CreateOrderRefundResponse, a$ as CreatePortalSessionParams, cT as CreateProductParams, jU as CreateProductVariantInput, dH as CreatePromoCodeParams, dE as CreateProviderParams, dy as CreateServiceParams, dB as CreateServiceProviderParams, dc as CreateShipmentParams, dd as CreateShipmentResponse, ce as CreateSocialCommentReplyParams, bY as CreateSocialPublicationParams, aL as CreateStoreParams, aT as CreateStoreSubscriptionActionParams, eT as CreateSuppressionParams, cH as CreateTaxonomyParams, be as CreateWebhookParams, f8 as CreateWorkflowParams, e as Currency, hy as CustomsDeclaration, hx as CustomsItem, jz as DaySlots, aA as DeleteAccountParams, b9 as DeleteBuildHookParams, cu as DeleteCollectionParams, cO as DeleteEmailTemplateParams, cy as DeleteEntryParams, cC as DeleteFormParams, bj as DeleteLocationParams, bm as DeleteMarketParams, bs as DeletePaymentProviderParams, cV as DeleteProductParams, dK as DeletePromoCodeParams, dG as DeleteProviderParams, dA as DeleteServiceParams, dD as DeleteServiceProviderParams, bX as DeleteSocialConnectionParams, bw as DeleteStoreMediaParams, cJ as DeleteTaxonomyParams, bg as DeleteWebhookParams, fp as DeleteWorkflowConnectionParams, fb as DeleteWorkflowParams, _ as DigitalAccessDownloadResponse, a0 as DigitalAccessGrant, i1 as DigitalAccessGrantStatus, i6 as DigitalAsset, i4 as DigitalAssetStatus, i3 as DigitalAssetType, i5 as DigitalDeliveryPolicy, iZ as Discount, hM as DiscountAllocation, Y as DownloadDigitalAccessParams, eB as DuplicateCampaignParams, bC as EmailDelivery, ic as EmailDeliveryError, id as EmailDeliveryErrorKind, ie as EmailDeliveryStatus, ig as EmailDeliveryType, i9 as EmailRecipients, ia as EmailSend, ib as EmailSendDeliveryResult, bz as EmailSendRequest, bA as EmailSendResult, ih as EmailSendTemplateData, cM as EmailTemplate, js as EmailTemplateStatus, i8 as EmailTemplateType, jt as EmailTemplateVariable, ju as EmailTemplateVariableSource, gG as EntryBlockQuery, jr as EntryStatus, E as EshopCartItem, fs as EshopStoreState, hd as Event, he as EventAction, h1 as ExecutionStatus, j_ as FacebookPageContent, gI as FieldOperation, eu as FindActionsParams, eH as FindCampaignEnrollmentsParams, eQ as FindCampaignMessagesParams, ez as FindCampaignsParams, dx as FindCartsParams, e9 as FindContactListContactsParams, ep as FindContactListMembershipCancellationsParams, ei as FindContactListMembershipPaymentAttemptsParams, el as FindContactListMembershipRefundsParams, ee as FindContactListPlansParams, e0 as FindContactListsParams, dV as FindContactSessionsParams, dQ as FindContactsParams, $ as FindDigitalAccessGrantsParams, di as FindFulfillmentOrdersParams, f4 as FindLeadResearchMessagesParams, e_ as FindLeadResearchRunsParams, bN as FindMailboxesParams, d0 as FindOrderRefundsParams, d6 as FindPaymentTransactionsParams, L as FindServiceProvidersParams, dg as FindShipmentsParams, dr as FindShippingLabelAdjustmentsParams, dp as FindShippingLabelRefundsParams, dt as FindShippingLabelSettlementsParams, cb as FindSocialPublicationCommentsParams, c1 as FindSocialPublicationsParams, b1 as FindStoreMembersParams, aY as FindStoreSubscriptionActionEffectsParams, aV as FindStoreSubscriptionActionsParams, a9 as FindStorefrontContactListMembershipsParams, a7 as FindStorefrontContactListPlansParams, a6 as FindStorefrontContactListsParams, eX as FindSuppressionsParams, F as Form, h as FormEntry, n as FormField, ij as FormFieldType, m as FormSchema, ii as FormSchemaType, jv as FormStatus, x as FormSubmission, ak as FormValue, a as FormValues, dj as FulfillmentOrder, hl as FulfillmentOrderLine, hk as FulfillmentOrderRequestStatus, hj as FulfillmentOrderStatus, i7 as GalleryItem, eG as GenerateOutreachPersonalizedDraftsParams, gv as GeoLocation, hz as GeoLocationBlock, k5 as GeoLocationBlockProperties, kj as GetAnalyticsHealthParams, ki as GetAnalyticsParams, N as GetAvailabilityParams, eJ as GetCampaignEnrollmentConversationParams, eC as GetCampaignLaunchReadinessParams, ey as GetCampaignParams, aq as GetCartParams, G as GetCollectionParams, cv as GetCollectionsParams, er as GetContactListMembershipCancellationParams, ek as GetContactListMembershipPaymentAttemptParams, en as GetContactListMembershipRefundParams, a4 as GetContactListParams, ed as GetContactListPlanParams, dP as GetContactParams, ap as GetCurrentCartParams, kk as GetDeliveryStatsParams, a1 as GetDigitalAccessGrantParams, bB as GetEmailDeliveryParams, cP as GetEmailTemplateParams, cQ as GetEmailTemplatesParams, t as GetEntriesParams, cz as GetEntryParams, v as GetFormParams, cF as GetFormSubmissionParams, cE as GetFormSubmissionsParams, cD as GetFormsParams, dk as GetFulfillmentOrderParams, e$ as GetLeadResearchRunParams, bJ as GetMailboxParams, aB as GetMeParams, bt as GetMediaParams, V as GetOrderParams, d2 as GetOrderPaymentParams, c_ as GetOrderRefundParams, X as GetOrdersParams, d7 as GetPaymentTransactionParams, D as GetProductParams, H as GetProductsParams, dL as GetPromoCodeParams, dM as GetPromoCodesParams, Q as GetProviderParams, U as GetProvidersParams, cX as GetQuoteParams, J as GetServiceParams, K as GetServicesParams, de as GetShipmentParams, dn as GetShippingLabelRefundParams, da as GetShippingRatesParams, bO as GetSocialCapabilitiesParams, ci as GetSocialCommentReplyParams, bU as GetSocialOAuthAttemptParams, c9 as GetSocialPublicationCommentThreadParams, c6 as GetSocialPublicationCommentsParams, cm as GetSocialPublicationEffectParams, cn as GetSocialPublicationMetricsParams, b$ as GetSocialPublicationParams, bx as GetStoreMediaParams, aN as GetStoreParams, a_ as GetStoreSubscriptionActionEffectParams, aW as GetStoreSubscriptionActionParams, aP as GetStoreSubscriptionParams, aO as GetStoresParams, aR as GetSubscriptionPlansParams, eW as GetSuppressionParams, cK as GetTaxonomiesParams, z as GetTaxonomyChildrenParams, y as GetTaxonomyParams, fn as GetWorkflowConnectionConnectUrlParams, fl as GetWorkflowConnectionsParams, fk as GetWorkflowEffectParams, fi as GetWorkflowEffectsParams, fh as GetWorkflowExecutionParams, fg as GetWorkflowExecutionsParams, fc as GetWorkflowParams, fd as GetWorkflowsParams, gR as GoogleDriveWorkflowConnectionData, gS as GoogleDriveWorkflowProfile, bF as GoogleMailboxConnectUrl, k8 as GoogleMailboxProfile, iE as GoogleMailboxProvider, i0 as HistoryEntry, eE as ImportCampaignEnrollmentsParams, e3 as ImportContactListPreviewParams, jS as ImportContactListRowResult, jQ as ImportContactRowError, jP as ImportContactRowInput, jR as ImportContactRowResult, e1 as ImportContactsIntoContactListParams, e2 as ImportContactsIntoContactListResult, dT as ImportContactsParams, jM as ImportContactsPreviewParams, e4 as ImportContactsPreviewResult, dU as ImportContactsResult, jK as ImportFieldMapping, jL as ImportPreviewRow, j$ as InstagramBusinessContent, fC as InstagramPlacement, jX as IntervalPeriod, I as InventoryLevel, gx as Language, eA as LaunchCampaignParams, iU as LeadEmailClassification, f7 as LeadEmailValidationResult, iR as LeadInsight, f5 as LeadResearchMessage, iX as LeadResearchMessageRole, eZ as LeadResearchRun, iP as LeadResearchRunStatus, iQ as LeadScores, iV as LeadValidationCheck, iW as LeadValidationCheckStatus, hO as LineMoneySnapshot, b5 as ListBuildHooksParams, bn as ListPaymentProvidersParams, cg as ListSocialCommentRepliesParams, bQ as ListSocialConnectionsParams, ck as ListSocialPublicationEffectsParams, bc as ListWebhooksParams, aj as Location, kh as LoginAccountParams, kq as LogoutParams, bH as Mailbox, iB as MailboxConnectionSecurity, iC as MailboxPreset, j6 as MailboxStatus, iD as MailboxSyncStatus, iJ as ManualTaskContinueBehavior, M as Market, jT as MarketZoneInput, bu as Media, gH as MediaRef, gA as MediaResolution, gz as MediaSize, dS as MergeContactsParams, jn as MutableWorkflowStatus, h2 as NodeResult, ix as OpportunitySource, iv as OpportunityStage, iw as OpportunityType, W as Order, h$ as OrderCancellationReason, a3 as OrderCheckoutItemInput, kg as OrderCheckoutParams, j as OrderCheckoutResult, fU as OrderFinancialSummary, hZ as OrderFulfillmentStatus, hm as OrderFulfillmentSummary, hG as OrderItem, hP as OrderItemFulfillmentStatus, hH as OrderItemSnapshot, hW as OrderItemStatus, O as OrderMoney, d3 as OrderPayment, f_ as OrderPaymentPromoCode, h_ as OrderPaymentStatus, hY as OrderPaymentSummaryStatus, fY as OrderPaymentTax, fZ as OrderPaymentTaxLine, d as OrderQuote, jF as OrderQuoteItemInput, c$ as OrderRefund, hX as OrderStatus, iL as OutreachPersonalizationCounters, iM as OutreachPersonalizationState, jf as OutreachPersonalizationStatus, iH as OutreachStep, iI as OutreachStepType, jg as OutreachThreadMode, u as PaginatedResponse, hn as Parcel, f as PaymentMethod, jx as PaymentMethodType, bo as PaymentProvider, fV as PaymentProviderConnection, fW as PaymentProviderConnectionError, fX as PaymentProviderConnectionStatus, q as PaymentStoreConfig, d5 as PaymentTransaction, f$ as PaymentTransactionProvider, g0 as PaymentTransactionRequestType, g2 as PaymentTransactionStatus, g1 as PaymentTransactionType, bM as PrepareMailboxParams, cR as PreviewEmailTemplateParams, cS as PreviewEmailTemplateResponse, kp as PreviewEmailTemplateWarning, i as Price, jZ as PriceProvider, P as Product, o as ProductCheckoutItemInput, i2 as ProductInventory, jW as ProductInventoryInput, hI as ProductLineItem, hK as ProductLineItemSnapshot, jD as ProductQuoteItemInput, hS as ProductQuoteLine, hU as ProductQuoteLineAvailability, j1 as ProductStatus, a2 as ProductVariant, dI as PromoCode, jp as PromoCodeStatus, gw as PromoCodeValidation, ka as PromoUsage, b as Provider, jA as ProviderAvailability, j0 as ProviderStatus, hB as ProviderTimelinePoint, gC as ProviderWithTimeline, av as QuoteCartParams, hR as QuoteLine, bp as RefreshPaymentProvidersParams, eg as RefundContactListMembershipParams, eh as RefundContactListMembershipResult, g3 as RefundStatus, at as RemoveCartItemParams, e8 as RemoveContactListContactParams, b4 as RemoveMemberParams, eO as ReplyCampaignEnrollmentParams, R as RequestOptions, dl as RequestShippingLabelRefundParams, iY as ResearchContactListMember, es as RetryContactListMembershipCancellationParams, eo as RetryContactListMembershipRefundParams, ef as RetryContactListPlanCatalogParams, bD as RetryEmailDeliveryParams, d1 as RetryOrderRefundParams, d4 as RetryPaymentTransactionParams, dh as RetryShipmentParams, dq as RetryShippingLabelRefundParams, dv as RetryShippingLabelSettlementParams, cj as RetrySocialCommentReplyParams, aX as RetryStoreSubscriptionActionParams, dY as RevokeAllContactSessionsParams, dX as RevokeContactSessionParams, d9 as RevokeDigitalAccessGrantParams, c4 as ScheduleSocialPublicationParams, aD as SearchAccountsParams, ko as SearchOrderServiceItemsParams, bW as SelectSocialDestinationParams, f2 as SendLeadResearchMessageParams, f3 as SendLeadResearchMessageResult, S as Service, p as ServiceCheckoutItemInput, hA as ServiceDuration, hJ as ServiceLineItem, hL as ServiceLineItemSnapshot, c as ServiceProvider, kn as ServiceProviderInput, jE as ServiceQuoteItemInput, hT as ServiceQuoteLine, hV as ServiceQuoteLineAvailability, i$ as ServiceStatus, kt as SetContactEmailParams, kr as SetupAnalyticsParams, df as Shipment, hv as ShipmentAllocationStatus, hw as ShipmentLine, ds as ShippingLabelAdjustment, hr as ShippingLabelAdjustmentStatus, dm as ShippingLabelRefund, hq as ShippingLabelRefundReconciliationStatus, hp as ShippingLabelRefundStatus, du as ShippingLabelSettlement, hs as ShippingLabelSettlementDirection, ht as ShippingLabelSettlementStatus, hu as ShippingLabelSettlementType, ho as ShippingLabelStatus, hi as ShippingLine, gs as ShippingMethod, hg as ShippingProvider, db as ShippingRate, hh as ShippingRateLine, hf as ShippingStatus, gt as ShippingWeightTier, jB as Slot, g as SlotRange, iG as SmtpImapMailboxProvider, iF as SmtpImapMailboxProviderInput, kf as SocialActionAuthor, fD as SocialAnalyticsCapabilities, ch as SocialCommentReply, fH as SocialCommentReplyError, fI as SocialCommentReplyEvidence, fJ as SocialCommentReplyStatus, bT as SocialConnectResponse, bR as SocialConnection, fy as SocialConnectionCredential, fz as SocialConnectionData, fA as SocialConnectionProviderData, fB as SocialConnectionType, fv as SocialDestinationMetadata, fE as SocialEngagementCapabilities, bV as SocialOAuthCallbackResponse, fw as SocialOAuthCallbackStatus, fx as SocialOAuthDestinationOption, bP as SocialProviderCapability, c0 as SocialPublication, c7 as SocialPublicationComment, cd as SocialPublicationCommentClassificationResult, fF as SocialPublicationCommentIntent, fG as SocialPublicationCommentPriority, cf as SocialPublicationCommentReplyResponse, fK as SocialPublicationCommentStatus, fL as SocialPublicationContent, cl as SocialPublicationEffect, fM as SocialPublicationEffectError, fN as SocialPublicationEffectEvidence, fO as SocialPublicationEffectRequest, fP as SocialPublicationEffectStatus, cr as SocialPublicationEngagementSyncResult, co as SocialPublicationMetricSnapshot, bZ as SocialPublicationMutationResponse, fQ as SocialPublicationStatus, c3 as SocialPublicationValidation, hF as SpecificDate, eP as StopCampaignEnrollmentParams, ai as Store, k3 as StoreEmails, b2 as StoreMember, b3 as StoreMembership, kl as StoreRole, aQ as StoreSubscription, aU as StoreSubscriptionAction, g5 as StoreSubscriptionActionError, g6 as StoreSubscriptionActionRequest, g7 as StoreSubscriptionActionResult, g8 as StoreSubscriptionActionStatus, aZ as StoreSubscriptionEffect, g9 as StoreSubscriptionEffectError, ga as StoreSubscriptionEffectStatus, gb as StoreSubscriptionEffectType, gc as StoreSubscriptionPayment, gd as StoreSubscriptionStatus, a5 as StorefrontContactList, aa as StorefrontContactListMembership, gr as StorefrontContactListPaymentAttemptSummary, a8 as StorefrontContactListPlan, gq as StorefrontContactListType, br as StripePaymentProviderConnectResponse, w as SubmitFormParams, ab as SubscribeContactListParams, jY as SubscriptionInterval, aS as SubscriptionPlan, ge as SubscriptionPlanFeature, gf as SubscriptionPlanFeatureType, gg as SubscriptionPrice, eU as Suppression, jk as SuppressionReason, jj as SuppressionScopeType, jl as SuppressionSource, jh as SuppressionStatus, ji as SuppressionTargetType, cq as SyncSocialEngagementParams, ca as SyncSocialPublicationCommentThreadParams, c8 as SyncSocialPublicationCommentsParams, cp as SyncSocialPublicationMetricsParams, jJ as SystemTemplateKey, hN as TaxLine, T as Taxonomy, ik as TaxonomyEntry, ip as TaxonomyField, iq as TaxonomyFieldQuery, il as TaxonomyQuery, im as TaxonomySchema, io as TaxonomySchemaType, jw as TaxonomyStatus, bK as TestMailboxParams, bL as TestMailboxResult, ba as TestWebhookParams, bb as TestWebhookResponse, k1 as TiktokAccountContent, fR as TiktokPrivacy, k9 as TimeRange, hC as TimelinePoint, fe as TriggerWorkflowParams, jI as TrustedOrderCheckoutItemInput, jG as TrustedProductCheckoutItemInput, jH as TrustedServiceCheckoutItemInput, aH as UpdateAccountApiTokenParams, ay as UpdateAccountContactParams, b8 as UpdateBuildHookParams, eM as UpdateCampaignEnrollmentDraftParams, eL as UpdateCampaignEnrollmentParams, eN as UpdateCampaignEnrollmentStepExecutionParams, eS as UpdateCampaignMessageParams, ex as UpdateCampaignParams, ar as UpdateCartParams, ct as UpdateCollectionParams, e7 as UpdateContactListContactParams, d$ as UpdateContactListParams, ec as UpdateContactListPlanParams, dR as UpdateContactParams, cN as UpdateEmailTemplateParams, cx as UpdateEntryParams, cB as UpdateFormParams, cG as UpdateFormSubmissionParams, f0 as UpdateLeadResearchRunParams, bi as UpdateLocationParams, bI as UpdateMailboxParams, bl as UpdateMarketParams, by as UpdateMediaParams, cW as UpdateOrderParams, cU as UpdateProductParams, jV as UpdateProductVariantInput, dJ as UpdatePromoCodeParams, dF as UpdateProviderParams, dz as UpdateServiceParams, dC as UpdateServiceProviderParams, b_ as UpdateSocialPublicationParams, aM as UpdateStoreParams, eV as UpdateSuppressionParams, cI as UpdateTaxonomyParams, bf as UpdateWebhookParams, fa as UpdateWorkflowParams, bv as UploadStoreMediaParams, f6 as ValidateLeadEmailParams, c2 as ValidateSocialPublicationParams, fS as ValidationError, ao as VerificationChallengeResponse, bd as Webhook, jN as WebhookDeliveryStatus, ft as WebhookEventSubscription, f9 as Workflow, fm as WorkflowConnection, fo as WorkflowConnectionConnectUrl, gP as WorkflowConnectionData, gQ as WorkflowConnectionType, gN as WorkflowDeployWebhookNode, gK as WorkflowEdge, fj as WorkflowEffect, gZ as WorkflowEffectError, gY as WorkflowEffectEvidence, g_ as WorkflowEffectStatus, g$ as WorkflowEffectType, ff as WorkflowExecution, h0 as WorkflowExecutionInput, gO as WorkflowGoogleDriveUploadNode, gX as WorkflowHttpMethod, gM as WorkflowHttpNode, gW as WorkflowLoopNode, gJ as WorkflowNode, jo as WorkflowSendEmailNode, jm as WorkflowStatus, gT as WorkflowSwitchNode, gU as WorkflowSwitchRule, gV as WorkflowTransformNode, gL as WorkflowTriggerNode, hE as WorkingDay, hD as WorkingHour, k2 as XAccountContent, k0 as YoutubeChannelContent, fT as YoutubePrivacy, gu as Zone, Z as ZoneLocation } from './api-DJrUdQ1C.cjs';
|
package/dist/types.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { dQ as Access, ai as Account, hV as AccountAddress, hW as AccountApiToken, hX as AccountLifecycle, dR as AccountToken, af as AccountUpdateResponse, cV as Action, dS as ActionContext, dT as ActionData, hY as ActionDevice, hZ as ActionLocation, h_ as ActionSession, y as AddCartItemParams, cQ as AddContactListContactParams, av as AddMemberParams, A as Address, dU as ApiResponse, al as AuthToken, e as AvailabilityResponse, dV as AvailabilitySlot, B as Block, dW as BlockSchema, dX as BlockSchemaProperties, dY as BlockSchemaType, h$ as BlockType, dZ as BookingOrderItemStatus, ay as BuildHook, d_ as BuildHookType, cY as Campaign, d8 as CampaignEnrollment, da as CampaignEnrollmentConversationResponse, d$ as CampaignEnrollmentImportResult, e0 as CampaignEnrollmentImportSource, e1 as CampaignEnrollmentStatus, d3 as CampaignLaunchReadiness, e2 as CampaignManualTaskOutcome, dh as CampaignMessage, e3 as CampaignMessageCopySource, e4 as CampaignMessageDirection, e5 as CampaignMessageStatus, e6 as CampaignMessageType, e7 as CampaignRoute, e8 as CampaignStatus, du as CancelLeadResearchRunParams, bt as CancelSocialPublicationParams, C as Cart, e9 as CartOrigin, ea as CartStatus, eb as ChannelMessage, ec as ChannelType, H as CheckoutCartParams, ed as CheckoutPaymentAction, bA as ClassifySocialPublicationCommentsParams, D as ClearCartParams, l as Collection, a as CollectionEntry, ee as CollectionStatus, ef as Condition, eg as ConditionValue, be as ConnectSocialAccountParams, aU as ConnectStripePaymentProviderParams, ad as Contact, eh as ContactChannel, i0 as ContactChannelConsentStatus, j as ContactDetail, i1 as ContactInfo, a2 as ContactList, a6 as ContactListAccessParams, a7 as ContactListAccessResponse, ei as ContactListContentAccess, a8 as ContactListContentAccessParams, a9 as ContactListContentAccessResponse, ej as ContactListContentAccessStatus, ek as ContactListContentAccessTarget, cR as ContactListMember, el as ContactListMembership, em as ContactListMembershipPayment, en as ContactListMembershipProvider, eo as ContactListMembershipProviderCancellation, ep as ContactListMembershipProviderCancellationError, eq as ContactListMembershipProviderCancellationStatus, er as ContactListMembershipStatus, es as ContactListPlan, et as ContactListPlanStatus, eu as ContactListSource, ev as ContactListStatus, a5 as ContactListSubscribeResponse, ew as ContactListType, i2 as ContactSessionToken, ex as ContactStatus, i3 as ContactVerificationCode, ey as Coordinates, az as CreateBuildHookParams, cX as CreateCampaignParams, ck as CreateCartParams, bJ as CreateCollectionParams, cK as CreateContactListParams, cC as CreateContactParams, b$ as CreateEmailTemplateParams, bN as CreateEntryParams, bQ as CreateFormParams, dp as CreateLeadResearchRunParams, aL as CreateLocationParams, b2 as CreateMailboxParams, aO as CreateMarketParams, au as CreatePortalSessionParams, c7 as CreateProductParams, i4 as CreateProductVariantInput, cw as CreatePromoCodeParams, ct as CreateProviderParams, cm as CreateServiceParams, cq as CreateServiceProviderParams, bk as CreateSocialPublicationParams, am as CreateStoreParams, dj as CreateSuppressionParams, bX as CreateTaxonomyParams, aF as CreateWebhookParams, dB as CreateWorkflowParams, ez as CustomsDeclaration, eA as CustomsItem, eB as DaySlots, ag as DeleteAccountParams, aB as DeleteBuildHookParams, bL as DeleteCollectionParams, c2 as DeleteEmailTemplateParams, bP as DeleteEntryParams, bS as DeleteFormParams, aN as DeleteLocationParams, aQ as DeleteMarketParams, aW as DeletePaymentProviderParams, c9 as DeleteProductParams, cz as DeletePromoCodeParams, cv as DeleteProviderParams, co as DeleteServiceParams, cs as DeleteServiceProviderParams, bj as DeleteSocialAccountParams, aZ as DeleteStoreMediaParams, ao as DeleteStoreParams, bZ as DeleteTaxonomyParams, aH as DeleteWebhookParams, dP as DeleteWorkflowAccountParams, dE as DeleteWorkflowParams, V as DigitalAccessDownloadResponse, eC as DigitalAccessGrant, eD as DigitalAccessGrantStatus, eE as DigitalAsset, eF as DigitalAssetStatus, eG as DigitalAssetType, eH as DigitalDeliveryPolicy, eI as Discount, eJ as DiscountAllocation, N as DownloadDigitalAccessParams, d1 as DuplicateCampaignParams, c0 as EmailTemplate, eK as EmailTemplateStatus, eL as EmailTemplateVariable, eM as EntryBlockQuery, eN as EntryStatus, E as EshopCartItem, eO as EshopItem, eP as EshopQuoteItem, eQ as EshopStoreState, eR as Event, eS as EventAction, eT as ExecutionStatus, i5 as FacebookPageContent, eU as FieldOperation, cW as FindActionsParams, d7 as FindCampaignEnrollmentsParams, dg as FindCampaignMessagesParams, c$ as FindCampaignsParams, cl as FindCartsParams, cU as FindContactListContactsParams, a3 as FindContactListsParams, cF as FindContactsParams, dx as FindLeadResearchMessagesParams, dr as FindLeadResearchRunsParams, b9 as FindMailboxesParams, Y as FindServiceProvidersParams, bz as FindSocialPublicationCommentsParams, bp as FindSocialPublicationsParams, aJ as FindStoreMediaParams, dn as FindSuppressionsParams, b as Form, F as FormEntry, ac as FormField, eV as FormFieldType, eW as FormSchema, eX as FormSchemaType, eY as FormStatus, r as FormSubmission, eZ as FulfillmentOrder, e_ as FulfillmentOrderLine, e$ as FulfillmentOrderRequestStatus, f0 as FulfillmentOrderStatus, f1 as GalleryItem, d6 as GenerateOutreachPersonalizedDraftsParams, f2 as GeoLocation, f3 as GeoLocationBlock, i6 as GeoLocationBlockProperties, i7 as GetAnalyticsHealthParams, i8 as GetAnalyticsParams, _ as GetAvailabilityParams, d9 as GetCampaignEnrollmentConversationParams, d2 as GetCampaignLaunchReadinessParams, c_ as GetCampaignParams, x as GetCartParams, G as GetCollectionParams, bM as GetCollectionsParams, a1 as GetContactListParams, cE as GetContactParams, w as GetCurrentCartParams, i9 as GetDeliveryStatsParams, c3 as GetEmailTemplateParams, c4 as GetEmailTemplatesParams, n as GetEntriesParams, m as GetEntryParams, p as GetFormParams, bV as GetFormSubmissionParams, bU as GetFormSubmissionsParams, bT as GetFormsParams, ds as GetLeadResearchRunParams, b5 as GetMailboxParams, ah as GetMeParams, aX as GetMediaParams, I as GetOrderParams, K as GetOrdersParams, u as GetProductParams, v as GetProductsParams, cA as GetPromoCodeParams, cB as GetPromoCodesParams, $ as GetProviderParams, a0 as GetProvidersParams, cb as GetQuoteParams, W as GetServiceParams, X as GetServicesParams, ce as GetShippingRatesParams, ba as GetSocialCapabilitiesParams, bg as GetSocialOAuthAttemptParams, bx as GetSocialPublicationCommentThreadParams, bu as GetSocialPublicationCommentsParams, bE as GetSocialPublicationMetricsParams, bn as GetSocialPublicationParams, a_ as GetStoreMediaParams, ap as GetStoreParams, aq as GetStoresParams, ar as GetSubscriptionPlansParams, dm as GetSuppressionParams, b_ as GetTaxonomiesParams, t as GetTaxonomyChildrenParams, s as GetTaxonomyParams, dN as GetWorkflowAccountConnectUrlParams, dL as GetWorkflowAccountsParams, dK as GetWorkflowExecutionParams, dJ as GetWorkflowExecutionsParams, dF as GetWorkflowParams, dG as GetWorkflowsParams, f4 as HistoryEntry, d4 as ImportCampaignEnrollmentsParams, cO as ImportContactListPreviewParams, f5 as ImportContactListRowResult, f6 as ImportContactRowError, f7 as ImportContactRowInput, f8 as ImportContactRowResult, cM as ImportContactsIntoContactListParams, cN as ImportContactsIntoContactListResult, cI as ImportContactsParams, f9 as ImportContactsPreviewParams, cP as ImportContactsPreviewResult, cJ as ImportContactsResult, fa as ImportFieldMapping, fb as ImportPreviewRow, ia as InstagramBusinessContent, fc as InstagramPlacement, ib as IntervalPeriod, fd as InventoryLevel, fe as Language, d0 as LaunchCampaignParams, ff as LeadEmailClassification, dA as LeadEmailValidationResult, fg as LeadInsight, dy as LeadResearchMessage, fh as LeadResearchMessageRole, dq as LeadResearchRun, fi as LeadResearchRunStatus, fj as LeadScores, fk as LeadValidationCheck, fl as LeadValidationCheckStatus, fm as LineMoneySnapshot, ax as ListBuildHooksParams, aR as ListPaymentProvidersParams, bc as ListSocialAccountsParams, aD as ListWebhooksParams, L as Location, ic as LoginAccountParams, id as LogoutParams, ak as MagicLinkVerifyParams, b3 as Mailbox, fn as MailboxConnectionSecurity, fo as MailboxPreset, fp as MailboxStatus, fq as MailboxSyncStatus, fr as ManualTaskContinueBehavior, M as Market, aK as Media, fs as MediaRef, ft as MediaResolution, fu as MerchantCredit, fv as MerchantCreditReason, fw as MerchantCreditStatus, fx as MerchantRecovery, fy as MerchantRecoveryStatus, cH as MergeContactsParams, fz as NodeResult, fA as OpportunitySource, fB as OpportunityStage, fC as OpportunityType, J as Order, fD as OrderCancellationReason, fE as OrderCheckoutCompatibleItemInput, ab as OrderCheckoutItemInput, ie as OrderCheckoutParams, O as OrderCheckoutResult, fF as OrderFulfillmentStatus, fG as OrderItem, fH as OrderItemFulfillmentStatus, fI as OrderItemSnapshot, fJ as OrderItemStatus, fK as OrderPayment, fL as OrderPaymentPromoCode, fM as OrderPaymentProvider, fN as OrderPaymentRefund, fO as OrderPaymentStatus, fP as OrderPaymentSummaryStatus, fQ as OrderPaymentTax, fR as OrderPaymentTaxLine, f as OrderQuote, fS as OrderQuoteCompatibleItemInput, fT as OrderQuoteItemInput, ig as OrderRefundError, fU as OrderShipping, fV as OrderStatus, fW as OutreachPersonalizationCounters, fX as OutreachPersonalizationState, fY as OutreachPersonalizationStatus, fZ as OutreachStep, f_ as OutreachStepType, f$ as OutreachThreadMode, o as PaginatedResponse, g0 as Parcel, g1 as PaymentCaptureMethod, g as PaymentMethod, g2 as PaymentMethodType, aS as PaymentProvider, g3 as PaymentStoreConfig, ih as PaymentTaxLine, g4 as PaymentTransaction, g5 as PaymentTransactionProvider, g6 as PaymentTransactionStatus, g7 as PaymentTransactionType, b8 as PrepareMailboxParams, c5 as PreviewEmailTemplateParams, c6 as PreviewEmailTemplateResponse, ii as PreviewEmailTemplateWarning, P as Price, ij as PriceProvider, cc as ProcessOrderRefundParams, cd as ProcessOrderRefundResponse, c as Product, h as ProductCheckoutItemInput, g8 as ProductInventory, g9 as ProductLineItem, ga as ProductLineItemSnapshot, gb as ProductQuoteItemInput, gc as ProductQuoteLine, gd as ProductQuoteLineAvailability, ge as ProductStatus, aa as ProductVariant, cx as PromoCode, gf as PromoCodeStatus, gg as PromoCodeValidation, ik as PromoUsage, d as Provider, gh as ProviderAvailability, gi as ProviderStatus, gj as ProviderTimelinePoint, gk as ProviderWithTimeline, gl as PurchaseLabelResult, Q as QuoteCartParams, gm as QuoteLine, aT as RefreshPaymentProvidersParams, gn as RefundLine, ci as RefundShippingLabelParams, go as RefundStatus, gp as RefundType, z as RemoveCartItemParams, cT as RemoveContactListContactParams, aw as RemoveMemberParams, de as ReplyCampaignEnrollmentParams, bC as ReplySocialPublicationCommentParams, R as RequestOptions, gq as ResearchContactListMember, bs as ScheduleSocialPublicationParams, aj as SearchAccountsParams, il as SearchOrderServiceItemsParams, bi as SelectSocialDestinationParams, dv as SendLeadResearchMessageParams, dw as SendLeadResearchMessageResult, S as Service, i as ServiceCheckoutItemInput, gr as ServiceCheckoutPart, gs as ServiceDuration, gt as ServiceLineItem, gu as ServiceLineItemSnapshot, cp as ServiceProvider, im as ServiceProviderInput, gv as ServiceQuoteItem, gw as ServiceQuoteItemInput, gx as ServiceQuoteLine, gy as ServiceQuoteLineAvailability, gz as ServiceStatus, io as SetContactEmailParams, ip as SetupAnalyticsParams, cg as ShipParams, ch as ShipResult, gA as Shipment, gB as ShipmentLine, gC as ShippingLabelAdjustment, gD as ShippingLabelAdjustmentStatus, gE as ShippingLabelProviderPurchase, gF as ShippingLabelProviderRefund, gG as ShippingLabelPurchase, gH as ShippingLabelPurchaseError, gI as ShippingLabelPurchaseStatus, cj as ShippingLabelRefund, gJ as ShippingLabelRefundStatus, gK as ShippingLine, gL as ShippingMethod, cf as ShippingRate, gM as ShippingStatus, gN as ShippingWeightTier, gO as Slot, gP as SlotRange, gQ as SmtpImapMailboxProvider, bd as SocialAccount, iq as SocialActionAuthor, gR as SocialAnalyticsCapabilities, bf as SocialConnectResponse, gS as SocialDestinationMetadata, gT as SocialEngagementCapabilities, bh as SocialOAuthCallbackResponse, gU as SocialOAuthCallbackStatus, gV as SocialOAuthCredential, gW as SocialOAuthDestinationOption, bb as SocialProviderCapability, gX as SocialProviderType, bo as SocialPublication, bv as SocialPublicationComment, bB as SocialPublicationCommentClassificationResult, gY as SocialPublicationCommentIntent, gZ as SocialPublicationCommentPriority, g_ as SocialPublicationCommentReply, g$ as SocialPublicationCommentReplyError, bD as SocialPublicationCommentReplyResponse, h0 as SocialPublicationCommentReplyStatus, h1 as SocialPublicationCommentStatus, h2 as SocialPublicationContent, bI as SocialPublicationEngagementSyncResult, bF as SocialPublicationMetricSnapshot, bl as SocialPublicationMutationResponse, h3 as SocialPublicationStatus, br as SocialPublicationValidation, h4 as SpecificDate, df as StopCampaignEnrollmentParams, k as Store, ir as StoreEmails, h5 as StoreMembership, is as StoreRole, aI as StoreRuntimeConfig, h6 as StoreSubscription, h7 as StoreSubscriptionPayment, h8 as StoreSubscriptionProvider, h9 as StoreSubscriptionProviderError, ha as StoreSubscriptionProviderLifecycle, hb as StoreSubscriptionProviderLifecycleStatus, hc as StoreSubscriptionProviderOperation, hd as StoreSubscriptionSource, he as StoreSubscriptionStatus, aV as StripePaymentProviderConnectResponse, q as SubmitFormParams, a4 as SubscribeContactListParams, at as SubscribeParams, it as SubscriptionAction, iu as SubscriptionInterval, as as SubscriptionPlan, hf as SubscriptionPrice, dk as Suppression, hg as SuppressionReason, hh as SuppressionScopeType, hi as SuppressionSource, hj as SuppressionStatus, hk as SuppressionTargetType, bH as SyncSocialEngagementParams, by as SyncSocialPublicationCommentThreadParams, bw as SyncSocialPublicationCommentsParams, bG as SyncSocialPublicationMetricsParams, hl as SystemTemplateKey, hm as TaxLine, hn as TaxLineReversal, T as Taxonomy, ho as TaxonomyEntry, hp as TaxonomyField, hq as TaxonomyFieldQuery, hr as TaxonomyQuery, hs as TaxonomySchema, ht as TaxonomySchemaType, hu as TaxonomyStatus, b6 as TestMailboxParams, b7 as TestMailboxResult, aC as TestWebhookParams, iv as TiktokAccountContent, hv as TiktokPrivacy, iw as TimeRange, hw as TimelinePoint, b0 as TrackEmailOpenParams, b1 as TriggerNotificationParams, dH as TriggerWorkflowParams, hx as TrustedOrderCheckoutCompatibleItemInput, hy as TrustedOrderCheckoutItemInput, hz as TrustedProductCheckoutItemInput, hA as TrustedServiceCheckoutItemInput, ae as UpdateAccountContactParams, aA as UpdateBuildHookParams, dc as UpdateCampaignEnrollmentDraftParams, db as UpdateCampaignEnrollmentParams, dd as UpdateCampaignEnrollmentStepExecutionParams, di as UpdateCampaignMessageParams, cZ as UpdateCampaignParams, U as UpdateCartParams, bK as UpdateCollectionParams, cS as UpdateContactListContactParams, cL as UpdateContactListParams, cG as UpdateContactParams, c1 as UpdateEmailTemplateParams, bO as UpdateEntryParams, bR as UpdateFormParams, bW as UpdateFormSubmissionParams, dt as UpdateLeadResearchRunParams, aM as UpdateLocationParams, b4 as UpdateMailboxParams, aP as UpdateMarketParams, a$ as UpdateMediaParams, ca as UpdateOrderParams, c8 as UpdateProductParams, ix as UpdateProductVariantInput, cy as UpdatePromoCodeParams, cu as UpdateProviderParams, cn as UpdateServiceParams, cr as UpdateServiceProviderParams, bm as UpdateSocialPublicationParams, an as UpdateStoreParams, dl as UpdateSuppressionParams, bY as UpdateTaxonomyParams, aG as UpdateWebhookParams, dD as UpdateWorkflowParams, aY as UploadStoreMediaParams, dz as ValidateLeadEmailParams, bq as ValidateSocialPublicationParams, hB as ValidationError, aE as Webhook, hC as WebhookEventSubscription, dC as Workflow, dM as WorkflowAccount, dO as WorkflowAccountConnectUrl, hD as WorkflowAccountProfile, hE as WorkflowAccountType, hF as WorkflowDeployWebhookNode, hG as WorkflowEdge, dI as WorkflowExecution, hH as WorkflowGoogleDriveUploadNode, hI as WorkflowHttpMethod, hJ as WorkflowHttpNode, hK as WorkflowLoopNode, hL as WorkflowNode, hM as WorkflowStatus, hN as WorkflowSwitchNode, hO as WorkflowSwitchRule, hP as WorkflowTransformNode, hQ as WorkflowTriggerNode, hR as WorkingDay, hS as WorkingHour, iy as XAccountContent, iz as YoutubeChannelContent, hT as YoutubePrivacy, hU as Zone, Z as ZoneLocation } from './api-DvsFdOaF.js';
|
|
1
|
+
export { gy as Access, aC as Account, aE as AccountApiToken, aG as AccountApiTokenCreated, k6 as AccountApiTokenStatus, k7 as AccountLifecycle, aI as AccountSession, km as AccountSortField, az as AccountUpdateResponse, et as Action, iz as ActionContext, iy as ActionData, kd as ActionDevice, kc as ActionLocation, ke as ActionSession, d8 as ActivateDigitalAccessGrantParams, as as AddCartItemParams, e5 as AddContactListContactParams, b0 as AddMemberParams, k as Address, aJ as AuthCodeVerifyParams, aK as AuthToken, A as AvailabilityResponse, jy as AvailabilitySlot, B as Block, gD as BlockSchema, gE as BlockSchemaProperties, gF as BlockSchemaType, k4 as BlockType, hQ as BookingOrderItemStatus, b6 as BuildHook, fu as BuildHookType, ew as Campaign, eI as CampaignEnrollment, eK as CampaignEnrollmentConversationResponse, iO as CampaignEnrollmentImportResult, ja as CampaignEnrollmentImportSource, j9 as CampaignEnrollmentStatus, eD as CampaignLaunchReadiness, iN as CampaignLaunchState, j8 as CampaignLaunchStatus, iK as CampaignManualTaskOutcome, eR as CampaignMessage, jb as CampaignMessageCopySource, jc as CampaignMessageDirection, je as CampaignMessageStatus, jd as CampaignMessageType, iS as CampaignRoute, j7 as CampaignStatus, f1 as CancelLeadResearchRunParams, c5 as CancelSocialPublicationParams, l as Cart, fq as CartOrigin, fr as CartStatus, iT as ChannelMessage, iu as ChannelType, aw as CheckoutCartParams, g4 as CheckoutPaymentAction, cc as ClassifySocialPublicationCommentsParams, au as ClearCartParams, s as Collection, C as CollectionEntry, jq as CollectionStatus, i_ as Condition, jC as ConditionValue, bE as ConnectGoogleMailboxParams, bS as ConnectSocialConnectionParams, bq as ConnectStripePaymentProviderParams, r as Contact, it as ContactChannel, kb as ContactChannelConsentStatus, ks as ContactInfo, d_ as ContactList, ad as ContactListAccessParams, ae as ContactListAccessResponse, h8 as ContactListContentAccess, af as ContactListContentAccessParams, ag as ContactListContentAccessResponse, h9 as ContactListContentAccessStatus, ha as ContactListContentAccessTarget, hb as ContactListManagementContactList, hc as ContactListManagementMembership, ah as ContactListManagementResponse, e6 as ContactListMember, iA as ContactListMembership, eq as ContactListMembershipCancellation, gh as ContactListMembershipCancellationSafeError, gi as ContactListMembershipCancellationStatus, gj as ContactListMembershipCancellationType, ej as ContactListMembershipPaymentAttempt, gk as ContactListMembershipPaymentAttemptSafeError, gl as ContactListMembershipPaymentAttemptStatus, gm as ContactListMembershipPaymentAttemptType, em as ContactListMembershipRefund, gn as ContactListMembershipRefundSafeError, go as ContactListMembershipRefundStatus, gp as ContactListMembershipRefundType, j5 as ContactListMembershipStatus, eb as ContactListPlan, h4 as ContactListPlanCatalogSafeError, h5 as ContactListPlanCatalogStatus, h6 as ContactListPlanCatalogType, jO as ContactListPlanPriceInput, h7 as ContactListPlanStatus, j4 as ContactListSource, j3 as ContactListStatus, ac as ContactListSubscribeResponse, h3 as ContactListType, an as ContactSessionIssued, ir as ContactSessionRecord, is as ContactSessionStatus, j2 as ContactStatus, gB as Coordinates, aF as CreateAccountApiTokenParams, b7 as CreateBuildHookParams, ev as CreateCampaignParams, dw as CreateCartParams, cs as CreateCollectionParams, dZ as CreateContactListParams, ea as CreateContactListPlanParams, dN as CreateContactParams, cL as CreateEmailTemplateParams, cw as CreateEntryParams, cA as CreateFormParams, eY as CreateLeadResearchRunParams, bh as CreateLocationParams, bG as CreateMailboxParams, bk as CreateMarketParams, cY as CreateOrderRefundParams, cZ as CreateOrderRefundResponse, a$ as CreatePortalSessionParams, cT as CreateProductParams, jU as CreateProductVariantInput, dH as CreatePromoCodeParams, dE as CreateProviderParams, dy as CreateServiceParams, dB as CreateServiceProviderParams, dc as CreateShipmentParams, dd as CreateShipmentResponse, ce as CreateSocialCommentReplyParams, bY as CreateSocialPublicationParams, aL as CreateStoreParams, aT as CreateStoreSubscriptionActionParams, eT as CreateSuppressionParams, cH as CreateTaxonomyParams, be as CreateWebhookParams, f8 as CreateWorkflowParams, e as Currency, hy as CustomsDeclaration, hx as CustomsItem, jz as DaySlots, aA as DeleteAccountParams, b9 as DeleteBuildHookParams, cu as DeleteCollectionParams, cO as DeleteEmailTemplateParams, cy as DeleteEntryParams, cC as DeleteFormParams, bj as DeleteLocationParams, bm as DeleteMarketParams, bs as DeletePaymentProviderParams, cV as DeleteProductParams, dK as DeletePromoCodeParams, dG as DeleteProviderParams, dA as DeleteServiceParams, dD as DeleteServiceProviderParams, bX as DeleteSocialConnectionParams, bw as DeleteStoreMediaParams, cJ as DeleteTaxonomyParams, bg as DeleteWebhookParams, fp as DeleteWorkflowConnectionParams, fb as DeleteWorkflowParams, _ as DigitalAccessDownloadResponse, a0 as DigitalAccessGrant, i1 as DigitalAccessGrantStatus, i6 as DigitalAsset, i4 as DigitalAssetStatus, i3 as DigitalAssetType, i5 as DigitalDeliveryPolicy, iZ as Discount, hM as DiscountAllocation, Y as DownloadDigitalAccessParams, eB as DuplicateCampaignParams, bC as EmailDelivery, ic as EmailDeliveryError, id as EmailDeliveryErrorKind, ie as EmailDeliveryStatus, ig as EmailDeliveryType, i9 as EmailRecipients, ia as EmailSend, ib as EmailSendDeliveryResult, bz as EmailSendRequest, bA as EmailSendResult, ih as EmailSendTemplateData, cM as EmailTemplate, js as EmailTemplateStatus, i8 as EmailTemplateType, jt as EmailTemplateVariable, ju as EmailTemplateVariableSource, gG as EntryBlockQuery, jr as EntryStatus, E as EshopCartItem, fs as EshopStoreState, hd as Event, he as EventAction, h1 as ExecutionStatus, j_ as FacebookPageContent, gI as FieldOperation, eu as FindActionsParams, eH as FindCampaignEnrollmentsParams, eQ as FindCampaignMessagesParams, ez as FindCampaignsParams, dx as FindCartsParams, e9 as FindContactListContactsParams, ep as FindContactListMembershipCancellationsParams, ei as FindContactListMembershipPaymentAttemptsParams, el as FindContactListMembershipRefundsParams, ee as FindContactListPlansParams, e0 as FindContactListsParams, dV as FindContactSessionsParams, dQ as FindContactsParams, $ as FindDigitalAccessGrantsParams, di as FindFulfillmentOrdersParams, f4 as FindLeadResearchMessagesParams, e_ as FindLeadResearchRunsParams, bN as FindMailboxesParams, d0 as FindOrderRefundsParams, d6 as FindPaymentTransactionsParams, L as FindServiceProvidersParams, dg as FindShipmentsParams, dr as FindShippingLabelAdjustmentsParams, dp as FindShippingLabelRefundsParams, dt as FindShippingLabelSettlementsParams, cb as FindSocialPublicationCommentsParams, c1 as FindSocialPublicationsParams, b1 as FindStoreMembersParams, aY as FindStoreSubscriptionActionEffectsParams, aV as FindStoreSubscriptionActionsParams, a9 as FindStorefrontContactListMembershipsParams, a7 as FindStorefrontContactListPlansParams, a6 as FindStorefrontContactListsParams, eX as FindSuppressionsParams, F as Form, h as FormEntry, n as FormField, ij as FormFieldType, m as FormSchema, ii as FormSchemaType, jv as FormStatus, x as FormSubmission, ak as FormValue, a as FormValues, dj as FulfillmentOrder, hl as FulfillmentOrderLine, hk as FulfillmentOrderRequestStatus, hj as FulfillmentOrderStatus, i7 as GalleryItem, eG as GenerateOutreachPersonalizedDraftsParams, gv as GeoLocation, hz as GeoLocationBlock, k5 as GeoLocationBlockProperties, kj as GetAnalyticsHealthParams, ki as GetAnalyticsParams, N as GetAvailabilityParams, eJ as GetCampaignEnrollmentConversationParams, eC as GetCampaignLaunchReadinessParams, ey as GetCampaignParams, aq as GetCartParams, G as GetCollectionParams, cv as GetCollectionsParams, er as GetContactListMembershipCancellationParams, ek as GetContactListMembershipPaymentAttemptParams, en as GetContactListMembershipRefundParams, a4 as GetContactListParams, ed as GetContactListPlanParams, dP as GetContactParams, ap as GetCurrentCartParams, kk as GetDeliveryStatsParams, a1 as GetDigitalAccessGrantParams, bB as GetEmailDeliveryParams, cP as GetEmailTemplateParams, cQ as GetEmailTemplatesParams, t as GetEntriesParams, cz as GetEntryParams, v as GetFormParams, cF as GetFormSubmissionParams, cE as GetFormSubmissionsParams, cD as GetFormsParams, dk as GetFulfillmentOrderParams, e$ as GetLeadResearchRunParams, bJ as GetMailboxParams, aB as GetMeParams, bt as GetMediaParams, V as GetOrderParams, d2 as GetOrderPaymentParams, c_ as GetOrderRefundParams, X as GetOrdersParams, d7 as GetPaymentTransactionParams, D as GetProductParams, H as GetProductsParams, dL as GetPromoCodeParams, dM as GetPromoCodesParams, Q as GetProviderParams, U as GetProvidersParams, cX as GetQuoteParams, J as GetServiceParams, K as GetServicesParams, de as GetShipmentParams, dn as GetShippingLabelRefundParams, da as GetShippingRatesParams, bO as GetSocialCapabilitiesParams, ci as GetSocialCommentReplyParams, bU as GetSocialOAuthAttemptParams, c9 as GetSocialPublicationCommentThreadParams, c6 as GetSocialPublicationCommentsParams, cm as GetSocialPublicationEffectParams, cn as GetSocialPublicationMetricsParams, b$ as GetSocialPublicationParams, bx as GetStoreMediaParams, aN as GetStoreParams, a_ as GetStoreSubscriptionActionEffectParams, aW as GetStoreSubscriptionActionParams, aP as GetStoreSubscriptionParams, aO as GetStoresParams, aR as GetSubscriptionPlansParams, eW as GetSuppressionParams, cK as GetTaxonomiesParams, z as GetTaxonomyChildrenParams, y as GetTaxonomyParams, fn as GetWorkflowConnectionConnectUrlParams, fl as GetWorkflowConnectionsParams, fk as GetWorkflowEffectParams, fi as GetWorkflowEffectsParams, fh as GetWorkflowExecutionParams, fg as GetWorkflowExecutionsParams, fc as GetWorkflowParams, fd as GetWorkflowsParams, gR as GoogleDriveWorkflowConnectionData, gS as GoogleDriveWorkflowProfile, bF as GoogleMailboxConnectUrl, k8 as GoogleMailboxProfile, iE as GoogleMailboxProvider, i0 as HistoryEntry, eE as ImportCampaignEnrollmentsParams, e3 as ImportContactListPreviewParams, jS as ImportContactListRowResult, jQ as ImportContactRowError, jP as ImportContactRowInput, jR as ImportContactRowResult, e1 as ImportContactsIntoContactListParams, e2 as ImportContactsIntoContactListResult, dT as ImportContactsParams, jM as ImportContactsPreviewParams, e4 as ImportContactsPreviewResult, dU as ImportContactsResult, jK as ImportFieldMapping, jL as ImportPreviewRow, j$ as InstagramBusinessContent, fC as InstagramPlacement, jX as IntervalPeriod, I as InventoryLevel, gx as Language, eA as LaunchCampaignParams, iU as LeadEmailClassification, f7 as LeadEmailValidationResult, iR as LeadInsight, f5 as LeadResearchMessage, iX as LeadResearchMessageRole, eZ as LeadResearchRun, iP as LeadResearchRunStatus, iQ as LeadScores, iV as LeadValidationCheck, iW as LeadValidationCheckStatus, hO as LineMoneySnapshot, b5 as ListBuildHooksParams, bn as ListPaymentProvidersParams, cg as ListSocialCommentRepliesParams, bQ as ListSocialConnectionsParams, ck as ListSocialPublicationEffectsParams, bc as ListWebhooksParams, aj as Location, kh as LoginAccountParams, kq as LogoutParams, bH as Mailbox, iB as MailboxConnectionSecurity, iC as MailboxPreset, j6 as MailboxStatus, iD as MailboxSyncStatus, iJ as ManualTaskContinueBehavior, M as Market, jT as MarketZoneInput, bu as Media, gH as MediaRef, gA as MediaResolution, gz as MediaSize, dS as MergeContactsParams, jn as MutableWorkflowStatus, h2 as NodeResult, ix as OpportunitySource, iv as OpportunityStage, iw as OpportunityType, W as Order, h$ as OrderCancellationReason, a3 as OrderCheckoutItemInput, kg as OrderCheckoutParams, j as OrderCheckoutResult, fU as OrderFinancialSummary, hZ as OrderFulfillmentStatus, hm as OrderFulfillmentSummary, hG as OrderItem, hP as OrderItemFulfillmentStatus, hH as OrderItemSnapshot, hW as OrderItemStatus, O as OrderMoney, d3 as OrderPayment, f_ as OrderPaymentPromoCode, h_ as OrderPaymentStatus, hY as OrderPaymentSummaryStatus, fY as OrderPaymentTax, fZ as OrderPaymentTaxLine, d as OrderQuote, jF as OrderQuoteItemInput, c$ as OrderRefund, hX as OrderStatus, iL as OutreachPersonalizationCounters, iM as OutreachPersonalizationState, jf as OutreachPersonalizationStatus, iH as OutreachStep, iI as OutreachStepType, jg as OutreachThreadMode, u as PaginatedResponse, hn as Parcel, f as PaymentMethod, jx as PaymentMethodType, bo as PaymentProvider, fV as PaymentProviderConnection, fW as PaymentProviderConnectionError, fX as PaymentProviderConnectionStatus, q as PaymentStoreConfig, d5 as PaymentTransaction, f$ as PaymentTransactionProvider, g0 as PaymentTransactionRequestType, g2 as PaymentTransactionStatus, g1 as PaymentTransactionType, bM as PrepareMailboxParams, cR as PreviewEmailTemplateParams, cS as PreviewEmailTemplateResponse, kp as PreviewEmailTemplateWarning, i as Price, jZ as PriceProvider, P as Product, o as ProductCheckoutItemInput, i2 as ProductInventory, jW as ProductInventoryInput, hI as ProductLineItem, hK as ProductLineItemSnapshot, jD as ProductQuoteItemInput, hS as ProductQuoteLine, hU as ProductQuoteLineAvailability, j1 as ProductStatus, a2 as ProductVariant, dI as PromoCode, jp as PromoCodeStatus, gw as PromoCodeValidation, ka as PromoUsage, b as Provider, jA as ProviderAvailability, j0 as ProviderStatus, hB as ProviderTimelinePoint, gC as ProviderWithTimeline, av as QuoteCartParams, hR as QuoteLine, bp as RefreshPaymentProvidersParams, eg as RefundContactListMembershipParams, eh as RefundContactListMembershipResult, g3 as RefundStatus, at as RemoveCartItemParams, e8 as RemoveContactListContactParams, b4 as RemoveMemberParams, eO as ReplyCampaignEnrollmentParams, R as RequestOptions, dl as RequestShippingLabelRefundParams, iY as ResearchContactListMember, es as RetryContactListMembershipCancellationParams, eo as RetryContactListMembershipRefundParams, ef as RetryContactListPlanCatalogParams, bD as RetryEmailDeliveryParams, d1 as RetryOrderRefundParams, d4 as RetryPaymentTransactionParams, dh as RetryShipmentParams, dq as RetryShippingLabelRefundParams, dv as RetryShippingLabelSettlementParams, cj as RetrySocialCommentReplyParams, aX as RetryStoreSubscriptionActionParams, dY as RevokeAllContactSessionsParams, dX as RevokeContactSessionParams, d9 as RevokeDigitalAccessGrantParams, c4 as ScheduleSocialPublicationParams, aD as SearchAccountsParams, ko as SearchOrderServiceItemsParams, bW as SelectSocialDestinationParams, f2 as SendLeadResearchMessageParams, f3 as SendLeadResearchMessageResult, S as Service, p as ServiceCheckoutItemInput, hA as ServiceDuration, hJ as ServiceLineItem, hL as ServiceLineItemSnapshot, c as ServiceProvider, kn as ServiceProviderInput, jE as ServiceQuoteItemInput, hT as ServiceQuoteLine, hV as ServiceQuoteLineAvailability, i$ as ServiceStatus, kt as SetContactEmailParams, kr as SetupAnalyticsParams, df as Shipment, hv as ShipmentAllocationStatus, hw as ShipmentLine, ds as ShippingLabelAdjustment, hr as ShippingLabelAdjustmentStatus, dm as ShippingLabelRefund, hq as ShippingLabelRefundReconciliationStatus, hp as ShippingLabelRefundStatus, du as ShippingLabelSettlement, hs as ShippingLabelSettlementDirection, ht as ShippingLabelSettlementStatus, hu as ShippingLabelSettlementType, ho as ShippingLabelStatus, hi as ShippingLine, gs as ShippingMethod, hg as ShippingProvider, db as ShippingRate, hh as ShippingRateLine, hf as ShippingStatus, gt as ShippingWeightTier, jB as Slot, g as SlotRange, iG as SmtpImapMailboxProvider, iF as SmtpImapMailboxProviderInput, kf as SocialActionAuthor, fD as SocialAnalyticsCapabilities, ch as SocialCommentReply, fH as SocialCommentReplyError, fI as SocialCommentReplyEvidence, fJ as SocialCommentReplyStatus, bT as SocialConnectResponse, bR as SocialConnection, fy as SocialConnectionCredential, fz as SocialConnectionData, fA as SocialConnectionProviderData, fB as SocialConnectionType, fv as SocialDestinationMetadata, fE as SocialEngagementCapabilities, bV as SocialOAuthCallbackResponse, fw as SocialOAuthCallbackStatus, fx as SocialOAuthDestinationOption, bP as SocialProviderCapability, c0 as SocialPublication, c7 as SocialPublicationComment, cd as SocialPublicationCommentClassificationResult, fF as SocialPublicationCommentIntent, fG as SocialPublicationCommentPriority, cf as SocialPublicationCommentReplyResponse, fK as SocialPublicationCommentStatus, fL as SocialPublicationContent, cl as SocialPublicationEffect, fM as SocialPublicationEffectError, fN as SocialPublicationEffectEvidence, fO as SocialPublicationEffectRequest, fP as SocialPublicationEffectStatus, cr as SocialPublicationEngagementSyncResult, co as SocialPublicationMetricSnapshot, bZ as SocialPublicationMutationResponse, fQ as SocialPublicationStatus, c3 as SocialPublicationValidation, hF as SpecificDate, eP as StopCampaignEnrollmentParams, ai as Store, k3 as StoreEmails, b2 as StoreMember, b3 as StoreMembership, kl as StoreRole, aQ as StoreSubscription, aU as StoreSubscriptionAction, g5 as StoreSubscriptionActionError, g6 as StoreSubscriptionActionRequest, g7 as StoreSubscriptionActionResult, g8 as StoreSubscriptionActionStatus, aZ as StoreSubscriptionEffect, g9 as StoreSubscriptionEffectError, ga as StoreSubscriptionEffectStatus, gb as StoreSubscriptionEffectType, gc as StoreSubscriptionPayment, gd as StoreSubscriptionStatus, a5 as StorefrontContactList, aa as StorefrontContactListMembership, gr as StorefrontContactListPaymentAttemptSummary, a8 as StorefrontContactListPlan, gq as StorefrontContactListType, br as StripePaymentProviderConnectResponse, w as SubmitFormParams, ab as SubscribeContactListParams, jY as SubscriptionInterval, aS as SubscriptionPlan, ge as SubscriptionPlanFeature, gf as SubscriptionPlanFeatureType, gg as SubscriptionPrice, eU as Suppression, jk as SuppressionReason, jj as SuppressionScopeType, jl as SuppressionSource, jh as SuppressionStatus, ji as SuppressionTargetType, cq as SyncSocialEngagementParams, ca as SyncSocialPublicationCommentThreadParams, c8 as SyncSocialPublicationCommentsParams, cp as SyncSocialPublicationMetricsParams, jJ as SystemTemplateKey, hN as TaxLine, T as Taxonomy, ik as TaxonomyEntry, ip as TaxonomyField, iq as TaxonomyFieldQuery, il as TaxonomyQuery, im as TaxonomySchema, io as TaxonomySchemaType, jw as TaxonomyStatus, bK as TestMailboxParams, bL as TestMailboxResult, ba as TestWebhookParams, bb as TestWebhookResponse, k1 as TiktokAccountContent, fR as TiktokPrivacy, k9 as TimeRange, hC as TimelinePoint, fe as TriggerWorkflowParams, jI as TrustedOrderCheckoutItemInput, jG as TrustedProductCheckoutItemInput, jH as TrustedServiceCheckoutItemInput, aH as UpdateAccountApiTokenParams, ay as UpdateAccountContactParams, b8 as UpdateBuildHookParams, eM as UpdateCampaignEnrollmentDraftParams, eL as UpdateCampaignEnrollmentParams, eN as UpdateCampaignEnrollmentStepExecutionParams, eS as UpdateCampaignMessageParams, ex as UpdateCampaignParams, ar as UpdateCartParams, ct as UpdateCollectionParams, e7 as UpdateContactListContactParams, d$ as UpdateContactListParams, ec as UpdateContactListPlanParams, dR as UpdateContactParams, cN as UpdateEmailTemplateParams, cx as UpdateEntryParams, cB as UpdateFormParams, cG as UpdateFormSubmissionParams, f0 as UpdateLeadResearchRunParams, bi as UpdateLocationParams, bI as UpdateMailboxParams, bl as UpdateMarketParams, by as UpdateMediaParams, cW as UpdateOrderParams, cU as UpdateProductParams, jV as UpdateProductVariantInput, dJ as UpdatePromoCodeParams, dF as UpdateProviderParams, dz as UpdateServiceParams, dC as UpdateServiceProviderParams, b_ as UpdateSocialPublicationParams, aM as UpdateStoreParams, eV as UpdateSuppressionParams, cI as UpdateTaxonomyParams, bf as UpdateWebhookParams, fa as UpdateWorkflowParams, bv as UploadStoreMediaParams, f6 as ValidateLeadEmailParams, c2 as ValidateSocialPublicationParams, fS as ValidationError, ao as VerificationChallengeResponse, bd as Webhook, jN as WebhookDeliveryStatus, ft as WebhookEventSubscription, f9 as Workflow, fm as WorkflowConnection, fo as WorkflowConnectionConnectUrl, gP as WorkflowConnectionData, gQ as WorkflowConnectionType, gN as WorkflowDeployWebhookNode, gK as WorkflowEdge, fj as WorkflowEffect, gZ as WorkflowEffectError, gY as WorkflowEffectEvidence, g_ as WorkflowEffectStatus, g$ as WorkflowEffectType, ff as WorkflowExecution, h0 as WorkflowExecutionInput, gO as WorkflowGoogleDriveUploadNode, gX as WorkflowHttpMethod, gM as WorkflowHttpNode, gW as WorkflowLoopNode, gJ as WorkflowNode, jo as WorkflowSendEmailNode, jm as WorkflowStatus, gT as WorkflowSwitchNode, gU as WorkflowSwitchRule, gV as WorkflowTransformNode, gL as WorkflowTriggerNode, hE as WorkingDay, hD as WorkingHour, k2 as XAccountContent, k0 as YoutubeChannelContent, fT as YoutubePrivacy, gu as Zone, Z as ZoneLocation } from './api-DJrUdQ1C.js';
|