arky-sdk 0.9.6 → 0.9.11

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.
Files changed (41) hide show
  1. package/README.md +113 -194
  2. package/dist/{admin-DjYydKeB.d.ts → admin-BKXmDIVk.d.ts} +412 -405
  3. package/dist/{admin-DlL8mCxL.d.cts → admin-CAwQrMOX.d.cts} +412 -405
  4. package/dist/admin.cjs +767 -373
  5. package/dist/admin.cjs.map +1 -1
  6. package/dist/admin.d.cts +3 -3
  7. package/dist/admin.d.ts +3 -3
  8. package/dist/admin.js +767 -373
  9. package/dist/admin.js.map +1 -1
  10. package/dist/{api-BbBHcd4p.d.cts → api-DJI3S6XA.d.cts} +1440 -525
  11. package/dist/{api-BbBHcd4p.d.ts → api-DJI3S6XA.d.ts} +1440 -525
  12. package/dist/{index-CZxubTDA.d.ts → index-BaSBPLdF.d.ts} +1 -1
  13. package/dist/{index-nCF3Z6Af.d.cts → index-u-gjHnKs.d.cts} +1 -1
  14. package/dist/index.cjs +874 -471
  15. package/dist/index.cjs.map +1 -1
  16. package/dist/index.d.cts +3 -3
  17. package/dist/index.d.ts +3 -3
  18. package/dist/index.js +874 -471
  19. package/dist/index.js.map +1 -1
  20. package/dist/storefront.cjs +493 -300
  21. package/dist/storefront.cjs.map +1 -1
  22. package/dist/storefront.d.cts +172 -89
  23. package/dist/storefront.d.ts +172 -89
  24. package/dist/storefront.js +491 -299
  25. package/dist/storefront.js.map +1 -1
  26. package/dist/types.cjs.map +1 -1
  27. package/dist/types.d.cts +1 -1
  28. package/dist/types.d.ts +1 -1
  29. package/dist/types.js.map +1 -1
  30. package/dist/utils.d.cts +2 -2
  31. package/dist/utils.d.ts +2 -2
  32. package/package.json +7 -10
  33. package/scripts/contract-admin.mjs +137 -0
  34. package/scripts/contract-storefront.mjs +296 -0
  35. package/dist/storefront-store.cjs +0 -2809
  36. package/dist/storefront-store.cjs.map +0 -1
  37. package/dist/storefront-store.d.cts +0 -5
  38. package/dist/storefront-store.d.ts +0 -5
  39. package/dist/storefront-store.js +0 -2807
  40. package/dist/storefront-store.js.map +0 -1
  41. package/scripts/smoke-store.mjs +0 -41
@@ -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 profile_id: string;\n payment_intent_id?: string;\n};\n\nexport interface OrderPaymentRefund {\n id: string;\n total: number;\n provider_refund_id?: string;\n status: string;\n created_at: number;\n}\n\nexport interface OrderPayment {\n currency: string;\n market: string;\n subtotal: number;\n shipping: number;\n discount: number;\n total: number;\n paid: number;\n tax?: OrderPaymentTax;\n promo_code?: OrderPaymentPromoCode;\n provider?: OrderPaymentProvider;\n refunds: OrderPaymentRefund[];\n zone_id?: string;\n payment_method_id?: 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 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 profile_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 GeoLocation {\n coordinates?: { lat: number; lon: number } | 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 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 profile_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_id?: 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_activity_at: number;\n abandoned_at?: number | null;\n recovery_sent_at?: number | null;\n created_at: number;\n updated_at: number;\n}\n\nexport type IntegrationProvider =\n | {\n type: \"stripe\";\n secret_key?: string;\n publishable_key: string;\n webhook_secret?: string;\n currency: string;\n }\n | { type: \"shippo\"; api_token?: string }\n | {\n type: \"google\";\n client_id?: string;\n client_secret?: string;\n access_token?: string;\n refresh_token?: string;\n token_expires_at?: number;\n scopes: string[];\n account_email?: string | null;\n connected_at: number;\n }\n | { type: \"telegram_bot\"; bot_token?: string }\n | { type: \"deep_seek\"; api_key?: string; model?: string }\n | { type: \"brave_search\"; api_key?: string }\n | { type: \"open_ai\"; api_key?: string; model?: string }\n | { type: \"slack\"; api_key?: string }\n | { type: \"discord\"; api_key?: string }\n | { type: \"whats_app\"; api_key?: string }\n | { type: \"resend\"; api_key?: string }\n | { type: \"send_grid\"; api_key?: string }\n | { type: \"airtable\"; api_key?: string }\n | { type: \"linear\"; api_key?: string }\n | { type: \"git_hub\"; api_key?: string }\n | { type: \"git_lab\"; api_key?: string }\n | { type: \"dropbox\"; api_key?: string }\n | { type: \"hub_spot\"; api_key?: string }\n | { type: \"monday\"; api_key?: string }\n | { type: \"click_up\"; api_key?: string }\n | { type: \"pipedrive\"; api_key?: string }\n | { type: \"calendly\"; api_key?: string }\n | { type: \"typeform\"; api_key?: string }\n | { type: \"webflow\"; api_key?: string }\n | { type: \"trello\"; api_key?: string }\n | { type: \"replicate\"; api_key?: string }\n | { type: \"asana\"; api_key?: string }\n | { type: \"brevo\"; api_key?: string }\n | { type: \"intercom\"; api_key?: string }\n | { type: \"notion\"; api_key?: string }\n | { type: \"eleven_labs\"; api_key?: string }\n | { type: \"active_campaign\"; api_key?: string; account_url: string }\n | { type: \"shopify\"; api_key?: string; store_domain: string }\n | { type: \"supabase\"; api_key?: string; project_url: string }\n | { type: \"mailchimp\"; api_key?: string }\n | { type: \"twilio\"; account_sid?: string; auth_token?: string }\n | { type: \"jira\"; email?: string; api_token?: string; domain: string }\n | {\n type: \"woo_commerce\";\n consumer_key?: string;\n consumer_secret?: string;\n store_url: string;\n }\n | { type: \"freshdesk\"; api_key?: string; domain: string }\n | { type: \"zendesk\"; api_token?: string; email?: string; subdomain: string }\n | { type: \"salesforce\"; access_token?: string; instance_url: string }\n | { type: \"zoom\"; api_key?: string }\n | { type: \"microsoft_teams\"; api_key?: string }\n | { type: \"firebase\"; api_key?: string }\n | { type: \"arky\"; api_key?: string }\n | { type: \"vercel_deploy_hook\"; url?: string }\n | { type: \"netlify_deploy_hook\"; url?: string }\n | { type: \"cloudflare_deploy_hook\"; url?: string }\n | { type: \"custom_deploy_hook\"; url?: string };\n\nexport interface Integration {\n id: string;\n store_id: string;\n key: string;\n provider: IntegrationProvider;\n created_at: number;\n updated_at: number;\n}\n\nexport interface ShippingWeightTier {\n up_to_grams: number;\n amount: number;\n}\n\nexport interface PaymentMethod {\n id: string;\n integration_id?: string;\n}\n\nexport interface ShippingMethod {\n id: string;\n taxable: boolean;\n eta_text: string;\n location_id?: string;\n integration_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 interface ProductVariant {\n id: string;\n sku?: string;\n prices: Price[];\n inventory: ProductInventory[];\n attributes: Block[];\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 filters?: 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 price: Price;\n}\n\nexport interface ServiceLineItemSnapshot {\n service_key: string;\n provider_key: string;\n price: Price;\n}\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 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 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 location_id?: string;\n snapshot: ProductLineItemSnapshot;\n status: OrderItemStatus;\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 forms: FormEntry[];\n snapshot: ServiceLineItemSnapshot;\n status: OrderItemStatus;\n}\n\nexport type OrderItem = ProductLineItem | ServiceLineItem;\n\nexport interface HistoryEntry {\n action: string;\n reason?: string;\n timestamp: number;\n}\n\nexport interface Order {\n id: string;\n number: string;\n store_id: string;\n source_cart_id: string;\n profile_id: string;\n status: OrderStatus;\n verified: boolean;\n items: OrderItem[];\n payment: OrderPayment;\n shipping_address?: Address;\n billing_address?: Address;\n forms: FormEntry[];\n shipments: Shipment[];\n history: HistoryEntry[];\n profile_list_id?: string;\n fired_reminders: number[];\n created_at: number;\n updated_at: number;\n}\n\nexport interface OrderCheckoutResult {\n order_id: string;\n number: string;\n client_secret: string | null;\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: \"node.created\"; parent_id?: string }\n | { event: \"node.updated\"; key?: string }\n | { event: \"node.deleted\"; 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.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: \"profile_list.created\" }\n | { event: \"profile_list.updated\" }\n | { event: \"profile_list.profile_added\" }\n | { event: \"profile_list.profile_pending\" }\n | { event: \"profile_list.profile_confirmed\" }\n | { event: \"profile_list.profile_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 profile_id: string;\n subscription_id?: string;\n price_id?: string;\n};\n\nexport interface StoreSubscriptionPayment {\n currency: string;\n market: string;\n provider?: StoreSubscriptionProvider;\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 start_date: number;\n end_date: number;\n token: string;\n source: StoreSubscriptionSource;\n}\n\nexport type ProfileListMembershipProvider = {\n type: \"stripe\";\n stripe_customer_id: string;\n subscription_id?: string;\n price_id?: string;\n};\n\nexport interface ProfileListMembershipPayment {\n currency: string;\n market: string;\n provider?: ProfileListMembershipProvider;\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 | \"list\"\n | \"map\"\n | \"relationship_entry\"\n | \"relationship_media\"\n | \"markdown\"\n | \"geo_location\";\n\nexport interface GeoLocationBlockProperties {}\n\nexport type GeoLocationValue = GeoLocation;\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 ProfileStatus = \"active\" | \"archived\";\nexport type ProfileListStatus = \"active\" | \"draft\" | \"archived\";\nexport type ProfileListSource =\n | \"manual\"\n | \"import\"\n | \"signup\"\n | \"admin\"\n | \"system\"\n | \"lead_research\";\nexport type ProfileListMembershipStatus =\n | \"pending\"\n | \"active\"\n | \"cancellation_scheduled\"\n | \"cancelled\"\n | \"expired\"\n | \"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 MailboxProvider = { type: \"fake\" } | SmtpImapMailboxProvider;\nexport type CampaignStatus =\n | \"draft\"\n | \"active\"\n | \"paused\"\n | \"completed\"\n | \"archived\";\nexport type CampaignRecipientStatus =\n | \"pending\"\n | \"active\"\n | \"replied\"\n | \"completed\"\n | \"suppressed\"\n | \"failed\"\n | \"stopped\";\nexport type CampaignRecipientImportSource =\n | \"profile_list\"\n | \"profile\"\n | \"manual\";\nexport type CampaignMessageStatus =\n | \"pending\"\n | \"sending\"\n | \"sent\"\n | \"received\"\n | \"bounced\"\n | \"failed\"\n | \"skipped\";\nexport type CampaignMessageKind =\n | \"campaign_step\"\n | \"manual_reply\"\n | \"inbound_reply\"\n | \"delivery_failure\"\n | \"activity\";\nexport type CampaignMessageDirection = \"outbound\" | \"inbound\" | \"activity\";\nexport type CampaignMessageCopySource = \"template\" | \"generated\" | \"edited\";\nexport type OutreachThreadMode = \"new_thread\" | \"same_thread\";\nexport type OutreachStepVariantStatus = \"active\" | \"archived\";\nexport type OutreachPersonalizationStatus =\n | \"idle\"\n | \"running\"\n | \"completed\"\n | \"failed\";\nexport type SuppressionStatus = \"active\" | \"archived\";\nexport type SuppressionTargetType = \"email\" | \"domain\" | \"profile\";\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 NodeStatus = \"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 | \"profile_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\nexport type OrderPaymentStatus =\n | { status: \"pending\"; at: number }\n | { status: \"authorized\"; at: number; amount: number }\n | { status: \"captured\"; at: number; amount: number }\n | { status: \"failed\"; at: number; reason?: string };\n\nexport interface TimeRange {\n from: number;\n to: number;\n}\n\nexport interface Node {\n id: string;\n key: string;\n store_id: string;\n parent_id?: string | null;\n blocks: Block[];\n taxonomies: TaxonomyEntry[];\n status: NodeStatus;\n slug: Record<string, string>;\n children: Node[];\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 profile_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 filters?: 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 filters?: 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 | 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 integration_id?: string;\n integration_provider_id?: string;\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 ProfileListType =\n | { type: \"standard\" }\n | { type: \"confirmation\"; confirm_template_id?: string | null }\n | {\n type: \"paid\";\n prices: SubscriptionPrice[];\n payment_integration_id?: string | null;\n };\n\nexport interface ProfileAuthToken {\n id: string;\n token: string;\n created_at: number;\n}\n\nexport interface ProfileVerificationCode {\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 interface Profile {\n id: string;\n store_id: string;\n email: string | null;\n verified: boolean;\n status: ProfileStatus;\n promo_usage: PromoUsage[];\n lists: ProfileListMembership[];\n taxonomies: TaxonomyEntry[];\n auth_tokens: ProfileAuthToken[];\n verification_codes: ProfileVerificationCode[];\n created_at: number;\n updated_at: number;\n}\n\nexport interface ProfileListAccessResponse {\n has_access: boolean;\n membership?: ProfileListMembership | null;\n}\n\nexport interface ProfileListSubscribeResponse {\n checkout_url?: string | null;\n membership?: ProfileListMembership | null;\n}\n\nexport interface ProfileList {\n id: string;\n store_id: string;\n key: string;\n name: string;\n description?: string | null;\n status: ProfileListStatus;\n type: ProfileListType;\n source: ProfileListSource;\n member_count: number;\n created_at: number;\n updated_at: number;\n}\n\nexport interface ProfileListMembership {\n id: string;\n store_id: string;\n profile_id: string;\n profile_list_id: string;\n source: ProfileListSource;\n fields: Record<string, unknown>;\n lead_description?: string | null;\n status: ProfileListMembershipStatus;\n plan_id: string;\n pending_plan_id: string | null;\n payment: ProfileListMembershipPayment;\n start_date: number;\n end_date: number;\n token: string;\n created_at: number;\n updated_at: number;\n}\n\nexport interface ProfileListMember {\n profile: Profile;\n membership: ProfileListMembership;\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: MailboxProvider;\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 OutreachStepVariant {\n id?: string;\n position?: number;\n weight: number;\n name?: string;\n template_id?: string | null;\n template_vars?: Record<string, unknown>;\n status?: OutreachStepVariantStatus;\n}\n\nexport interface OutreachStep {\n id?: string;\n position?: number;\n delay_seconds?: number;\n variants: OutreachStepVariant[];\n thread_mode?: OutreachThreadMode;\n attachments?: string[];\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 status: OutreachPersonalizationStatus;\n model_integration_id?: string | null;\n step_position?: number | null;\n profile_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 profile_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 CampaignRecipientImportResult {\n imported_count: number;\n existing_count: number;\n skipped_count: number;\n draft_count: number;\n}\n\nexport interface CampaignRecipientDraft {\n id: string;\n step_id?: string | null;\n step_position: number;\n step_variant_id?: string | null;\n step_variant_position?: number | null;\n step_variant_name?: string | 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 mailbox_id?: string | null;\n from_email?: string | null;\n to_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 created_at: number;\n updated_at: number;\n}\n\nexport interface CampaignRecipient {\n id: string;\n store_id: string;\n campaign_id: string;\n profile_id: string;\n profile_list_membership_id?: string | null;\n import_source: CampaignRecipientImportSource;\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 drafts: CampaignRecipientDraft[];\n status: CampaignRecipientStatus;\n current_step_position: number;\n next_send_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_recipient_id: string;\n profile_id: string;\n mailbox_id: string;\n direction: CampaignMessageDirection;\n kind: CampaignMessageKind;\n step_id?: string | null;\n step_position?: number | null;\n step_variant_id?: string | null;\n step_variant_position?: number | null;\n step_variant_name?: string | 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 provider_message_id?: string | null;\n provider_thread_id?: string | null;\n error?: string | null;\n sent_at?: number | null;\n received_at?: number | null;\n created_at: number;\n updated_at: number;\n}\n\nexport interface CampaignRecipientConversationResponse {\n recipient: CampaignRecipient;\n messages: CampaignMessage[];\n}\n\nexport interface Suppression {\n id: string;\n store_id: string;\n campaign_id?: string | null;\n profile_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 interface LeadResearchRun {\n id: string;\n store_id: string;\n integration_id: string;\n profile_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 interface LeadResearchMessage {\n id: string;\n role: string;\n content: string;\n created_at: number;\n}\n\nexport interface ResearchProfileListMember {\n profile: Profile;\n membership: ProfileListMembership;\n}\n\nexport interface SendLeadResearchMessageResult {\n response: string;\n run: LeadResearchRun;\n profile_list_members: ResearchProfileListMember[];\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: \"node_created\" }\n | { action: \"node_updated\" }\n | { action: \"node_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: \"profile_list_created\" }\n | { action: \"profile_list_updated\" }\n | { action: \"profile_list_profile_added\" }\n | { action: \"profile_list_profile_removed\" }\n | { action: \"profile_list_profile_pending\" }\n | { action: \"profile_list_profile_confirmed\" }\n | { action: \"profile_list_profile_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 quantity: number;\n}\n\nexport interface Shipment {\n id: string;\n location_id: string;\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 created_at: number;\n updated_at: number;\n}\n\nexport interface ShippingRate {\n id: string;\n provider: 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 type ShippingAddress = Address;\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 tracking_number: string;\n tracking_url?: string | null;\n label_url: string;\n carrier: string;\n service: string;\n}\n\nexport interface ShipResult {\n shipment_id: string;\n tracking_number: string;\n tracking_url?: string | null;\n label_url: string;\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":";;;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 stripe_customer_id: string;\n subscription_id?: string;\n price_id?: string;\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 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 | {\n type: \"paid\";\n prices: SubscriptionPrice[];\n payment_provider_id?: string | null;\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 lists: ContactListMembership[];\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 ContactListSubscribeResponse {\n checkout_url?: string | 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 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 ShipmentLabelStatus =\n | \"requested\"\n | \"processing\"\n | \"succeeded\"\n | \"failed\"\n | \"unknown\";\n\nexport type ShipmentLabelError =\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 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 label_status: ShipmentLabelStatus;\n label_error?: ShipmentLabelError | 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 tracking_number: string;\n tracking_url?: string | null;\n label_url: string;\n carrier: string;\n service: string;\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 label_status: ShipmentLabelStatus;\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"]}
package/dist/types.d.cts CHANGED
@@ -1 +1 @@
1
- export { dg as Access, l as Account, fX as AccountAddress, fY as AccountApiToken, fE as AccountLifecycle, ew as AccountToken, j as AccountUpdateResponse, A as AddCartItemParams, H as AddMemberParams, bJ as AddProfileListProfileParams, db as Address, cN as ApiResponse, g as AuthToken, bf as AvailabilityResponse, f0 as AvailabilitySlot, ar as Block, fB as BlockType, bX as Campaign, c2 as CampaignLaunchReadiness, cf as CampaignMessage, fG as CampaignMessageCopySource, eK as CampaignMessageDirection, eL as CampaignMessageKind, eM as CampaignMessageStatus, c7 as CampaignRecipient, c9 as CampaignRecipientConversationResponse, eq as CampaignRecipientDraft, fL as CampaignRecipientImportResult, fF as CampaignRecipientImportSource, eJ as CampaignRecipientStatus, eI as CampaignStatus, cr as CancelLeadResearchRunParams, C as Cart, cP as CartOrigin, cQ as CartStatus, e as CheckoutCartParams, fi as CheckoutItemInput, d as ClearCartParams, ez as Condition, f9 as ConditionValue, bW as CreateCampaignParams, b6 as CreateCartParams, aO as CreateEmailTemplateParams, aw as CreateFormParams, Z as CreateIntegrationParams, cm as CreateLeadResearchRunParams, n as CreateLocationParams, bO as CreateMailboxParams, q as CreateMarketParams, am as CreateNodeParams, F as CreatePortalSessionParams, aW as CreateProductParams, fS as CreateProductVariantInput, bA as CreateProfileListParams, br as CreateProfileParams, ac as CreatePromoCodeParams, bl as CreateProviderParams, b8 as CreateServiceParams, bi as CreateServiceProviderParams, t as CreateStoreParams, ch as CreateSuppressionParams, aH as CreateTaxonomyParams, a2 as CreateWebhookParams, cz as CreateWorkflowParams, dG as CustomsDeclaration, dF as CustomsItem, f1 as DaySlots, D as DeleteAccountParams, aR as DeleteEmailTemplateParams, az as DeleteFormParams, $ as DeleteIntegrationParams, p as DeleteLocationParams, s as DeleteMarketParams, ap as DeleteNodeParams, aZ as DeleteProductParams, af as DeletePromoCodeParams, bo as DeleteProviderParams, bb as DeleteServiceParams, bk as DeleteServiceProviderParams, a7 as DeleteStoreMediaParams, v as DeleteStoreParams, aK as DeleteTaxonomyParams, a4 as DeleteWebhookParams, cC as DeleteWorkflowParams, ey as Discount, c0 as DuplicateCampaignParams, aP as EmailTemplate, eX as EmailTemplateStatus, eY as EmailTemplateVariable, cO as EshopCartItem, f5 as EshopItem, f6 as EshopQuoteItem, cR as EshopStoreState, dw as Event, dx as EventAction, dt as ExecutionStatus, cy as FindActivitiesParams, ce as FindCampaignMessagesParams, c6 as FindCampaignRecipientsParams, b_ as FindCampaignsParams, b7 as FindCartsParams, cu as FindLeadResearchMessagesParams, co as FindLeadResearchRunsParams, bV as FindMailboxesParams, bN as FindProfileListProfilesParams, bE as FindProfileListsParams, bv as FindProfilesParams, bg as FindServiceProvidersParams, cl as FindSuppressionsParams, ax as Form, ea as FormEntry, e8 as FormField, e9 as FormFieldType, e6 as FormSchema, e7 as FormSchemaType, eZ as FormStatus, aD as FormSubmission, e5 as GalleryItem, c5 as GenerateOutreachPersonalizedDraftsParams, dc as GeoLocation, dH as GeoLocationBlock, fC as GeoLocationBlockProperties, fD as GeoLocationValue, fP as GetAnalyticsHealthParams, fO as GetAnalyticsParams, be as GetAvailabilityParams, c1 as GetCampaignLaunchReadinessParams, bZ as GetCampaignParams, c8 as GetCampaignRecipientConversationParams, b as GetCartParams, G as GetCurrentCartParams, fQ as GetDeliveryStatsParams, aS as GetEmailTemplateParams, aT as GetEmailTemplatesParams, aA as GetFormParams, aF as GetFormSubmissionParams, aE as GetFormSubmissionsParams, aB as GetFormsParams, g0 as GetIntegrationParams, cp as GetLeadResearchRunParams, bR as GetMailboxParams, k as GetMeParams, a5 as GetMediaParams, av as GetNodeChildrenParams, aq as GetNodeParams, au as GetNodesParams, b2 as GetOrderParams, b3 as GetOrdersParams, a_ as GetProductParams, a$ as GetProductsParams, bD as GetProfileListParams, bt as GetProfileParams, ag as GetPromoCodeParams, ah as GetPromoCodesParams, bp as GetProviderParams, bq as GetProvidersParams, b4 as GetQuoteParams, bc as GetServiceParams, bd as GetServicesParams, ai as GetShippingRatesParams, a8 as GetStoreMediaParams, K as GetStoreMediaParams2, w as GetStoreParams, x as GetStoresParams, z as GetSubscriptionPlansParams, ck as GetSuppressionParams, aM as GetTaxonomiesParams, aN as GetTaxonomyChildrenParams, aL as GetTaxonomyParams, cI as GetWorkflowExecutionParams, cH as GetWorkflowExecutionsParams, cD as GetWorkflowParams, cE as GetWorkflowsParams, e1 as HistoryEntry, c3 as ImportCampaignRecipientsParams, fp as ImportFieldMapping, fq as ImportPreviewRow, bH as ImportProfileListPreviewParams, fv as ImportProfileListRowResult, ft as ImportProfileRowError, fs as ImportProfileRowInput, fu as ImportProfileRowResult, bF as ImportProfilesIntoProfileListParams, bG as ImportProfilesIntoProfileListResult, by as ImportProfilesParams, fr as ImportProfilesPreviewParams, bI as ImportProfilesPreviewResult, bz as ImportProfilesResult, W as Integration, cT as IntegrationProvider, fx as IntervalPeriod, e4 as InventoryLevel, I as InviteUserParams, df as Language, b$ as LaunchCampaignParams, es as LeadEmailClassification, cx as LeadEmailValidationResult, cv as LeadResearchMessage, cn as LeadResearchRun, er as LeadResearchRunStatus, et as LeadValidationCheck, eu as LeadValidationCheckStatus, Y as ListIntegrationsParams, a0 as ListWebhooksParams, L as Location, fN as LoginAccountParams, f_ as LogoutParams, h as MagicLinkRequestParams, f as MagicLinkVerifyParams, bP as Mailbox, eh as MailboxConnectionSecurity, ej as MailboxPreset, ei as MailboxProvider, eH as MailboxStatus, ek as MailboxSyncStatus, M as Market, N as Media, dh as MediaResolution, bx as MergeProfilesParams, an as Node, du as NodeResult, at as NodeStatus, V as OAuthConnectParams, X as OAuthDisconnectParams, b1 as Order, e0 as OrderCancellationReason, fj as OrderCheckoutCompatibleItemInput, fh as OrderCheckoutItemInput, fM as OrderCheckoutParams, a as OrderCheckoutResult, dO as OrderItem, dP as OrderItemSnapshot, dZ as OrderItemStatus, cV as OrderPayment, cY as OrderPaymentPromoCode, cZ as OrderPaymentProvider, c_ as OrderPaymentRefund, d$ as OrderPaymentStatus, cW as OrderPaymentTax, cX as OrderPaymentTaxLine, O as OrderQuote, fe as OrderQuoteCompatibleItemInput, fc as OrderQuoteItemInput, dz as OrderShipping, d_ as OrderStatus, fU as OrderUpdateItem, eo as OutreachPersonalizationCounters, ep as OutreachPersonalizationState, eN as OutreachPersonalizationStatus, em as OutreachStep, en as OutreachStepVariant, eO as OutreachStepVariantStatus, eP as OutreachThreadMode, y as PaginatedResponse, dB as Parcel, d7 as PaymentMethod, e$ as PaymentMethodType, fw as PaymentTaxLine, bU as PrepareMailboxParams, aU as PreviewEmailTemplateParams, aV as PreviewEmailTemplateResponse, fZ as PreviewEmailTemplateWarning, cU as Price, fz as PriceProvider, b5 as ProcessOrderRefundParams, aX as Product, ff as ProductCheckoutItemInput, e3 as ProductInventory, dQ as ProductLineItem, dS as ProductLineItemSnapshot, fa as ProductQuoteItemInput, dV as ProductQuoteLine, dX as ProductQuoteLineAvailability, eC as ProductStatus, e2 as ProductVariant, P as Profile, fI as ProfileAuthToken, bu as ProfileDetail, g1 as ProfileInfo, bB as ProfileList, cL as ProfileListAccessParams, cM as ProfileListAccessResponse, bK as ProfileListMember, eg as ProfileListMembership, d5 as ProfileListMembershipPayment, d6 as ProfileListMembershipProvider, eG as ProfileListMembershipStatus, eF as ProfileListSource, eE as ProfileListStatus, cK as ProfileListSubscribeResponse, dv as ProfileListType, eD as ProfileStatus, fJ as ProfileVerificationCode, ad as PromoCode, eW as PromoCodeStatus, de as PromoCodeValidation, fK as PromoUsage, bm as Provider, f2 as ProviderAvailability, eB as ProviderStatus, dJ as ProviderTimelinePoint, di as ProviderWithTimeline, dC as PurchaseLabelResult, Q as QuoteCartParams, fd as QuoteItemInput, dU as QuoteLine, c as RemoveCartItemParams, J as RemoveMemberParams, bM as RemoveProfileListProfileParams, cc as ReplyCampaignRecipientParams, R as RequestOptions, ev as ResearchProfileListMember, m as SearchAccountsParams, fW as SearchOrderServiceItemsParams, cs as SendLeadResearchMessageParams, ct as SendLeadResearchMessageResult, b9 as Service, fg as ServiceCheckoutItemInput, f7 as ServiceCheckoutPart, dI as ServiceDuration, dR as ServiceLineItem, dT as ServiceLineItemSnapshot, bh as ServiceProvider, fV as ServiceProviderInput, f8 as ServiceQuoteItem, fb as ServiceQuoteItemInput, dW as ServiceQuoteLine, dY as ServiceQuoteLineAvailability, eA as ServiceStatus, g2 as SetProfileEmailParams, f$ as SetupAnalyticsParams, ak as ShipParams, al as ShipResult, dE as Shipment, dD as ShipmentLine, dA as ShippingAddress, d8 as ShippingMethod, aj as ShippingRate, dy as ShippingStatus, d9 as ShippingWeightTier, f3 as Slot, f4 as SlotRange, el as SmtpImapMailboxProvider, dN as SpecificDate, cd as StopCampaignRecipientParams, S as Store, fA as StoreEmails, ex as StoreMembership, fR as StoreRole, c$ as StoreSubscription, d0 as StoreSubscriptionPayment, d1 as StoreSubscriptionProvider, d3 as StoreSubscriptionSource, d2 as StoreSubscriptionStatus, aC as SubmitFormParams, E as SubscribeParams, cJ as SubscribeProfileListParams, fy as SubscriptionInterval, B as SubscriptionPlan, d4 as SubscriptionPrice, ci as Suppression, eT as SuppressionReason, eS as SuppressionScopeType, eU as SuppressionSource, eQ as SuppressionStatus, eR as SuppressionTargetType, fo as SystemTemplateKey, aI as Taxonomy, as as TaxonomyEntry, ee as TaxonomyField, ef as TaxonomyFieldQuery, eb as TaxonomyQuery, ec as TaxonomySchema, ed as TaxonomySchemaType, e_ as TaxonomyStatus, bS as TestMailboxParams, bT as TestMailboxResult, T as TestWebhookParams, fH as TimeRange, dK as TimelinePoint, aa as TrackEmailOpenParams, ab as TriggerNotificationParams, cF as TriggerWorkflowParams, fn as TrustedOrderCheckoutCompatibleItemInput, fm as TrustedOrderCheckoutItemInput, fk as TrustedProductCheckoutItemInput, fl as TrustedServiceCheckoutItemInput, i as UpdateAccountProfileParams, cg as UpdateCampaignMessageParams, bY as UpdateCampaignParams, cb as UpdateCampaignRecipientDraftParams, ca as UpdateCampaignRecipientParams, U as UpdateCartParams, aQ as UpdateEmailTemplateParams, ay as UpdateFormParams, aG as UpdateFormSubmissionParams, _ as UpdateIntegrationParams, cq as UpdateLeadResearchRunParams, o as UpdateLocationParams, bQ as UpdateMailboxParams, r as UpdateMarketParams, a9 as UpdateMediaParams, ao as UpdateNodeParams, b0 as UpdateOrderParams, aY as UpdateProductParams, fT as UpdateProductVariantInput, bC as UpdateProfileListParams, bL as UpdateProfileListProfileParams, bw as UpdateProfileParams, ae as UpdatePromoCodeParams, bn as UpdateProviderParams, ba as UpdateServiceParams, bj as UpdateServiceProviderParams, u as UpdateStoreParams, cj as UpdateSuppressionParams, aJ as UpdateTaxonomyParams, a3 as UpdateWebhookParams, cB as UpdateWorkflowParams, a6 as UploadStoreMediaParams, cw as ValidateLeadEmailParams, a1 as Webhook, cS as WebhookEventSubscription, cA as Workflow, dk as WorkflowEdge, cG as WorkflowExecution, ds as WorkflowHttpMethod, dm as WorkflowHttpNode, dr as WorkflowLoopNode, dj as WorkflowNode, eV as WorkflowStatus, dn as WorkflowSwitchNode, dp as WorkflowSwitchRule, dq as WorkflowTransformNode, dl as WorkflowTriggerNode, dM as WorkingDay, dL as WorkingHour, da as Zone, dd as ZoneLocation } from './api-BbBHcd4p.cjs';
1
+ export { dN as Access, ag as Account, hB as AccountAddress, hC as AccountApiToken, hD as AccountLifecycle, dO as AccountToken, ad as AccountUpdateResponse, cR as Action, dP as ActionContext, dQ as ActionData, hE as ActionDevice, hF as ActionLocation, hG as ActionSession, y as AddCartItemParams, cM as AddContactListContactParams, at as AddMemberParams, A as Address, dR as ApiResponse, aj as AuthToken, e as AvailabilityResponse, dS as AvailabilitySlot, B as Block, dT as BlockSchema, dU as BlockSchemaProperties, dV as BlockSchemaType, hH as BlockType, dW as BookingOrderItemStatus, aw as BuildHook, dX as BuildHookType, cU as Campaign, d4 as CampaignEnrollment, d6 as CampaignEnrollmentConversationResponse, dY as CampaignEnrollmentImportResult, dZ as CampaignEnrollmentImportSource, d_ as CampaignEnrollmentStatus, c$ as CampaignLaunchReadiness, d$ as CampaignManualTaskOutcome, dd as CampaignMessage, e0 as CampaignMessageCopySource, e1 as CampaignMessageDirection, e2 as CampaignMessageStatus, e3 as CampaignMessageType, e4 as CampaignRoute, e5 as CampaignStatus, dq as CancelLeadResearchRunParams, br as CancelSocialPublicationParams, C as Cart, e6 as CartOrigin, e7 as CartStatus, e8 as ChannelMessage, e9 as ChannelType, H as CheckoutCartParams, ea as CheckoutPaymentAction, by as ClassifySocialPublicationCommentsParams, D as ClearCartParams, l as Collection, a as CollectionEntry, eb as CollectionStatus, ec as Condition, ed as ConditionValue, bc as ConnectSocialAccountParams, aS as ConnectStripePaymentProviderParams, dL as ConnectWorkflowAccountParams, ab as Contact, ee as ContactChannel, hI as ContactChannelConsentStatus, j as ContactDetail, hJ as ContactInfo, a2 as ContactList, a6 as ContactListAccessParams, a7 as ContactListAccessResponse, cN as ContactListMember, ef as ContactListMembership, eg as ContactListMembershipPayment, eh as ContactListMembershipProvider, ei as ContactListMembershipProviderCancellation, ej as ContactListMembershipProviderCancellationError, ek as ContactListMembershipProviderCancellationStatus, el as ContactListMembershipStatus, em as ContactListSource, en as ContactListStatus, a5 as ContactListSubscribeResponse, eo as ContactListType, hK as ContactSessionToken, ep as ContactStatus, hL as ContactVerificationCode, eq as Coordinates, ax as CreateBuildHookParams, cT as CreateCampaignParams, cg as CreateCartParams, bH as CreateCollectionParams, cG as CreateContactListParams, cy as CreateContactParams, bZ as CreateEmailTemplateParams, bL as CreateEntryParams, bO as CreateFormParams, dk as CreateLeadResearchRunParams, aJ as CreateLocationParams, b0 as CreateMailboxParams, aM as CreateMarketParams, as as CreatePortalSessionParams, c5 as CreateProductParams, hM as CreateProductVariantInput, cs as CreatePromoCodeParams, cp as CreateProviderParams, ci as CreateServiceParams, cm as CreateServiceProviderParams, bi as CreateSocialPublicationParams, ak as CreateStoreParams, df as CreateSuppressionParams, bV as CreateTaxonomyParams, aD as CreateWebhookParams, dx as CreateWorkflowParams, er as CustomsDeclaration, es as CustomsItem, et as DaySlots, ae as DeleteAccountParams, az as DeleteBuildHookParams, bJ as DeleteCollectionParams, c0 as DeleteEmailTemplateParams, bN as DeleteEntryParams, bQ as DeleteFormParams, aL as DeleteLocationParams, aO as DeleteMarketParams, aU as DeletePaymentProviderParams, c7 as DeleteProductParams, cv as DeletePromoCodeParams, cr as DeleteProviderParams, ck as DeleteServiceParams, co as DeleteServiceProviderParams, bh as DeleteSocialAccountParams, aX as DeleteStoreMediaParams, am as DeleteStoreParams, bX as DeleteTaxonomyParams, aF as DeleteWebhookParams, dM as DeleteWorkflowAccountParams, dA as DeleteWorkflowParams, V as DigitalAccessDownloadResponse, eu as DigitalAccessGrant, ev as DigitalAccessGrantStatus, ew as DigitalAsset, ex as DigitalAssetStatus, ey as DigitalAssetType, ez as DigitalDeliveryPolicy, eA as Discount, eB as DiscountAllocation, N as DownloadDigitalAccessParams, cZ as DuplicateCampaignParams, b_ as EmailTemplate, eC as EmailTemplateStatus, eD as EmailTemplateVariable, eE as EntryBlockQuery, eF as EntryStatus, E as EshopCartItem, eG as EshopItem, eH as EshopQuoteItem, eI as EshopStoreState, eJ as Event, eK as EventAction, eL as ExecutionStatus, hN as FacebookPageContent, eM as FieldOperation, cS as FindActionsParams, d3 as FindCampaignEnrollmentsParams, dc as FindCampaignMessagesParams, cX as FindCampaignsParams, ch as FindCartsParams, cQ as FindContactListContactsParams, a3 as FindContactListsParams, cB as FindContactsParams, dt as FindLeadResearchMessagesParams, dm as FindLeadResearchRunsParams, b7 as FindMailboxesParams, Y as FindServiceProvidersParams, bx as FindSocialPublicationCommentsParams, bn as FindSocialPublicationsParams, aH as FindStoreMediaParams, dj as FindSuppressionsParams, b as Form, F as FormEntry, aa as FormField, eN as FormFieldType, eO as FormSchema, eP as FormSchemaType, eQ as FormStatus, r as FormSubmission, eR as FulfillmentOrder, eS as FulfillmentOrderLine, eT as FulfillmentOrderRequestStatus, eU as FulfillmentOrderStatus, eV as GalleryItem, d2 as GenerateOutreachPersonalizedDraftsParams, eW as GeoLocation, eX as GeoLocationBlock, hO as GeoLocationBlockProperties, hP as GetAnalyticsHealthParams, hQ as GetAnalyticsParams, _ as GetAvailabilityParams, d5 as GetCampaignEnrollmentConversationParams, c_ as GetCampaignLaunchReadinessParams, cW as GetCampaignParams, x as GetCartParams, G as GetCollectionParams, bK as GetCollectionsParams, a1 as GetContactListParams, cA as GetContactParams, w as GetCurrentCartParams, hR as GetDeliveryStatsParams, c1 as GetEmailTemplateParams, c2 as GetEmailTemplatesParams, n as GetEntriesParams, m as GetEntryParams, p as GetFormParams, bT as GetFormSubmissionParams, bS as GetFormSubmissionsParams, bR as GetFormsParams, dn as GetLeadResearchRunParams, b3 as GetMailboxParams, af as GetMeParams, aV as GetMediaParams, I as GetOrderParams, K as GetOrdersParams, u as GetProductParams, v as GetProductsParams, cw as GetPromoCodeParams, cx as GetPromoCodesParams, $ as GetProviderParams, a0 as GetProvidersParams, c9 as GetQuoteParams, W as GetServiceParams, X as GetServicesParams, cc as GetShippingRatesParams, b8 as GetSocialCapabilitiesParams, be as GetSocialOAuthAttemptParams, bv as GetSocialPublicationCommentThreadParams, bs as GetSocialPublicationCommentsParams, bC as GetSocialPublicationMetricsParams, bl as GetSocialPublicationParams, aY as GetStoreMediaParams, an as GetStoreParams, ao as GetStoresParams, ap as GetSubscriptionPlansParams, di as GetSuppressionParams, bY as GetTaxonomiesParams, t as GetTaxonomyChildrenParams, s as GetTaxonomyParams, dJ as GetWorkflowAccountConnectUrlParams, dH as GetWorkflowAccountsParams, dG as GetWorkflowExecutionParams, dF as GetWorkflowExecutionsParams, dB as GetWorkflowParams, dC as GetWorkflowsParams, eY as HistoryEntry, d0 as ImportCampaignEnrollmentsParams, cK as ImportContactListPreviewParams, eZ as ImportContactListRowResult, e_ as ImportContactRowError, e$ as ImportContactRowInput, f0 as ImportContactRowResult, cI as ImportContactsIntoContactListParams, cJ as ImportContactsIntoContactListResult, cE as ImportContactsParams, f1 as ImportContactsPreviewParams, cL as ImportContactsPreviewResult, cF as ImportContactsResult, f2 as ImportFieldMapping, f3 as ImportPreviewRow, hS as InstagramBusinessContent, f4 as InstagramPlacement, hT as IntervalPeriod, f5 as InventoryLevel, f6 as Language, cY as LaunchCampaignParams, f7 as LeadEmailClassification, dw as LeadEmailValidationResult, f8 as LeadInsight, du as LeadResearchMessage, f9 as LeadResearchMessageRole, dl as LeadResearchRun, fa as LeadResearchRunStatus, fb as LeadScores, fc as LeadValidationCheck, fd as LeadValidationCheckStatus, fe as LineMoneySnapshot, av as ListBuildHooksParams, aP as ListPaymentProvidersParams, ba as ListSocialAccountsParams, aB as ListWebhooksParams, L as Location, hU as LoginAccountParams, hV as LogoutParams, ai as MagicLinkVerifyParams, b1 as Mailbox, ff as MailboxConnectionSecurity, fg as MailboxPreset, fh as MailboxStatus, fi as MailboxSyncStatus, fj as ManualTaskContinueBehavior, M as Market, aI as Media, fk as MediaRef, fl as MediaResolution, cD as MergeContactsParams, fm as NodeResult, fn as OpportunitySource, fo as OpportunityStage, fp as OpportunityType, J as Order, fq as OrderCancellationReason, fr as OrderCheckoutCompatibleItemInput, a9 as OrderCheckoutItemInput, hW as OrderCheckoutParams, O as OrderCheckoutResult, fs as OrderFulfillmentStatus, ft as OrderItem, fu as OrderItemFulfillmentStatus, fv as OrderItemSnapshot, fw as OrderItemStatus, fx as OrderPayment, fy as OrderPaymentPromoCode, fz as OrderPaymentProvider, fA as OrderPaymentRefund, fB as OrderPaymentStatus, fC as OrderPaymentSummaryStatus, fD as OrderPaymentTax, fE as OrderPaymentTaxLine, f as OrderQuote, fF as OrderQuoteCompatibleItemInput, fG as OrderQuoteItemInput, hX as OrderRefundError, fH as OrderShipping, fI as OrderStatus, fJ as OutreachPersonalizationCounters, fK as OutreachPersonalizationState, fL as OutreachPersonalizationStatus, fM as OutreachStep, fN as OutreachStepType, fO as OutreachThreadMode, o as PaginatedResponse, fP as Parcel, fQ as PaymentCaptureMethod, g as PaymentMethod, fR as PaymentMethodType, aQ as PaymentProvider, fS as PaymentStoreConfig, hY as PaymentTaxLine, fT as PaymentTransaction, fU as PaymentTransactionProvider, fV as PaymentTransactionStatus, fW as PaymentTransactionType, b6 as PrepareMailboxParams, c3 as PreviewEmailTemplateParams, c4 as PreviewEmailTemplateResponse, hZ as PreviewEmailTemplateWarning, P as Price, h_ as PriceProvider, ca as ProcessOrderRefundParams, cb as ProcessOrderRefundResponse, c as Product, h as ProductCheckoutItemInput, fX as ProductInventory, fY as ProductLineItem, fZ as ProductLineItemSnapshot, f_ as ProductQuoteItemInput, f$ as ProductQuoteLine, g0 as ProductQuoteLineAvailability, g1 as ProductStatus, a8 as ProductVariant, ct as PromoCode, g2 as PromoCodeStatus, g3 as PromoCodeValidation, h$ as PromoUsage, d as Provider, g4 as ProviderAvailability, g5 as ProviderStatus, g6 as ProviderTimelinePoint, g7 as ProviderWithTimeline, g8 as PurchaseLabelResult, Q as QuoteCartParams, g9 as QuoteLine, aR as RefreshPaymentProvidersParams, ga as RefundLine, gb as RefundStatus, gc as RefundType, z as RemoveCartItemParams, cP as RemoveContactListContactParams, au as RemoveMemberParams, da as ReplyCampaignEnrollmentParams, bA as ReplySocialPublicationCommentParams, R as RequestOptions, gd as ResearchContactListMember, bq as ScheduleSocialPublicationParams, ah as SearchAccountsParams, i0 as SearchOrderServiceItemsParams, bg as SelectSocialDestinationParams, dr as SendLeadResearchMessageParams, ds as SendLeadResearchMessageResult, S as Service, i as ServiceCheckoutItemInput, ge as ServiceCheckoutPart, gf as ServiceDuration, gg as ServiceLineItem, gh as ServiceLineItemSnapshot, cl as ServiceProvider, i1 as ServiceProviderInput, gi as ServiceQuoteItem, gj as ServiceQuoteItemInput, gk as ServiceQuoteLine, gl as ServiceQuoteLineAvailability, gm as ServiceStatus, i2 as SetContactEmailParams, i3 as SetupAnalyticsParams, ce as ShipParams, cf as ShipResult, gn as Shipment, i4 as ShipmentLabelError, go as ShipmentLabelStatus, gp as ShipmentLine, gq as ShippingLine, gr as ShippingMethod, cd as ShippingRate, gs as ShippingStatus, gt as ShippingWeightTier, gu as Slot, gv as SlotRange, gw as SmtpImapMailboxProvider, bb as SocialAccount, i5 as SocialActionAuthor, gx as SocialAnalyticsCapabilities, bd as SocialConnectResponse, gy as SocialDestinationMetadata, gz as SocialEngagementCapabilities, bf as SocialOAuthCallbackResponse, gA as SocialOAuthCallbackStatus, gB as SocialOAuthCredential, gC as SocialOAuthDestinationOption, b9 as SocialProviderCapability, gD as SocialProviderType, bm as SocialPublication, bt as SocialPublicationComment, bz as SocialPublicationCommentClassificationResult, gE as SocialPublicationCommentIntent, gF as SocialPublicationCommentPriority, gG as SocialPublicationCommentReply, gH as SocialPublicationCommentReplyError, bB as SocialPublicationCommentReplyResponse, gI as SocialPublicationCommentReplyStatus, gJ as SocialPublicationCommentStatus, gK as SocialPublicationContent, bG as SocialPublicationEngagementSyncResult, bD as SocialPublicationMetricSnapshot, bj as SocialPublicationMutationResponse, gL as SocialPublicationStatus, bp as SocialPublicationValidation, gM as SpecificDate, db as StopCampaignEnrollmentParams, k as Store, i6 as StoreEmails, gN as StoreMembership, i7 as StoreRole, aG as StoreRuntimeConfig, gO as StoreSubscription, gP as StoreSubscriptionPayment, gQ as StoreSubscriptionProvider, gR as StoreSubscriptionProviderError, gS as StoreSubscriptionProviderLifecycle, gT as StoreSubscriptionProviderLifecycleStatus, gU as StoreSubscriptionProviderOperation, gV as StoreSubscriptionSource, gW as StoreSubscriptionStatus, aT as StripePaymentProviderConnectResponse, q as SubmitFormParams, a4 as SubscribeContactListParams, ar as SubscribeParams, i8 as SubscriptionAction, i9 as SubscriptionInterval, aq as SubscriptionPlan, gX as SubscriptionPrice, dg as Suppression, gY as SuppressionReason, gZ as SuppressionScopeType, g_ as SuppressionSource, g$ as SuppressionStatus, h0 as SuppressionTargetType, bF as SyncSocialEngagementParams, bw as SyncSocialPublicationCommentThreadParams, bu as SyncSocialPublicationCommentsParams, bE as SyncSocialPublicationMetricsParams, h1 as SystemTemplateKey, h2 as TaxLine, h3 as TaxLineReversal, T as Taxonomy, h4 as TaxonomyEntry, h5 as TaxonomyField, h6 as TaxonomyFieldQuery, h7 as TaxonomyQuery, h8 as TaxonomySchema, h9 as TaxonomySchemaType, ha as TaxonomyStatus, b4 as TestMailboxParams, b5 as TestMailboxResult, aA as TestWebhookParams, ia as TiktokAccountContent, hb as TiktokPrivacy, ib as TimeRange, hc as TimelinePoint, a_ as TrackEmailOpenParams, a$ as TriggerNotificationParams, dD as TriggerWorkflowParams, hd as TrustedOrderCheckoutCompatibleItemInput, he as TrustedOrderCheckoutItemInput, hf as TrustedProductCheckoutItemInput, hg as TrustedServiceCheckoutItemInput, ac as UpdateAccountContactParams, ay as UpdateBuildHookParams, d8 as UpdateCampaignEnrollmentDraftParams, d7 as UpdateCampaignEnrollmentParams, d9 as UpdateCampaignEnrollmentStepExecutionParams, de as UpdateCampaignMessageParams, cV as UpdateCampaignParams, U as UpdateCartParams, bI as UpdateCollectionParams, cO as UpdateContactListContactParams, cH as UpdateContactListParams, cC as UpdateContactParams, b$ as UpdateEmailTemplateParams, bM as UpdateEntryParams, bP as UpdateFormParams, bU as UpdateFormSubmissionParams, dp as UpdateLeadResearchRunParams, aK as UpdateLocationParams, b2 as UpdateMailboxParams, aN as UpdateMarketParams, aZ as UpdateMediaParams, c8 as UpdateOrderParams, c6 as UpdateProductParams, ic as UpdateProductVariantInput, cu as UpdatePromoCodeParams, cq as UpdateProviderParams, cj as UpdateServiceParams, cn as UpdateServiceProviderParams, bk as UpdateSocialPublicationParams, al as UpdateStoreParams, dh as UpdateSuppressionParams, bW as UpdateTaxonomyParams, aE as UpdateWebhookParams, dz as UpdateWorkflowParams, aW as UploadStoreMediaParams, dv as ValidateLeadEmailParams, bo as ValidateSocialPublicationParams, hh as ValidationError, aC as Webhook, hi as WebhookEventSubscription, dy as Workflow, dI as WorkflowAccount, dK as WorkflowAccountConnectUrl, hj as WorkflowAccountProfile, hk as WorkflowAccountType, hl as WorkflowDeployWebhookNode, hm as WorkflowEdge, dE as WorkflowExecution, hn as WorkflowGoogleDriveUploadNode, ho as WorkflowHttpMethod, hp as WorkflowHttpNode, hq as WorkflowLoopNode, hr as WorkflowNode, hs as WorkflowStatus, ht as WorkflowSwitchNode, hu as WorkflowSwitchRule, hv as WorkflowTransformNode, hw as WorkflowTriggerNode, hx as WorkingDay, hy as WorkingHour, id as XAccountContent, ie as YoutubeChannelContent, hz as YoutubePrivacy, hA as Zone, Z as ZoneLocation } from './api-DJI3S6XA.cjs';
package/dist/types.d.ts CHANGED
@@ -1 +1 @@
1
- export { dg as Access, l as Account, fX as AccountAddress, fY as AccountApiToken, fE as AccountLifecycle, ew as AccountToken, j as AccountUpdateResponse, A as AddCartItemParams, H as AddMemberParams, bJ as AddProfileListProfileParams, db as Address, cN as ApiResponse, g as AuthToken, bf as AvailabilityResponse, f0 as AvailabilitySlot, ar as Block, fB as BlockType, bX as Campaign, c2 as CampaignLaunchReadiness, cf as CampaignMessage, fG as CampaignMessageCopySource, eK as CampaignMessageDirection, eL as CampaignMessageKind, eM as CampaignMessageStatus, c7 as CampaignRecipient, c9 as CampaignRecipientConversationResponse, eq as CampaignRecipientDraft, fL as CampaignRecipientImportResult, fF as CampaignRecipientImportSource, eJ as CampaignRecipientStatus, eI as CampaignStatus, cr as CancelLeadResearchRunParams, C as Cart, cP as CartOrigin, cQ as CartStatus, e as CheckoutCartParams, fi as CheckoutItemInput, d as ClearCartParams, ez as Condition, f9 as ConditionValue, bW as CreateCampaignParams, b6 as CreateCartParams, aO as CreateEmailTemplateParams, aw as CreateFormParams, Z as CreateIntegrationParams, cm as CreateLeadResearchRunParams, n as CreateLocationParams, bO as CreateMailboxParams, q as CreateMarketParams, am as CreateNodeParams, F as CreatePortalSessionParams, aW as CreateProductParams, fS as CreateProductVariantInput, bA as CreateProfileListParams, br as CreateProfileParams, ac as CreatePromoCodeParams, bl as CreateProviderParams, b8 as CreateServiceParams, bi as CreateServiceProviderParams, t as CreateStoreParams, ch as CreateSuppressionParams, aH as CreateTaxonomyParams, a2 as CreateWebhookParams, cz as CreateWorkflowParams, dG as CustomsDeclaration, dF as CustomsItem, f1 as DaySlots, D as DeleteAccountParams, aR as DeleteEmailTemplateParams, az as DeleteFormParams, $ as DeleteIntegrationParams, p as DeleteLocationParams, s as DeleteMarketParams, ap as DeleteNodeParams, aZ as DeleteProductParams, af as DeletePromoCodeParams, bo as DeleteProviderParams, bb as DeleteServiceParams, bk as DeleteServiceProviderParams, a7 as DeleteStoreMediaParams, v as DeleteStoreParams, aK as DeleteTaxonomyParams, a4 as DeleteWebhookParams, cC as DeleteWorkflowParams, ey as Discount, c0 as DuplicateCampaignParams, aP as EmailTemplate, eX as EmailTemplateStatus, eY as EmailTemplateVariable, cO as EshopCartItem, f5 as EshopItem, f6 as EshopQuoteItem, cR as EshopStoreState, dw as Event, dx as EventAction, dt as ExecutionStatus, cy as FindActivitiesParams, ce as FindCampaignMessagesParams, c6 as FindCampaignRecipientsParams, b_ as FindCampaignsParams, b7 as FindCartsParams, cu as FindLeadResearchMessagesParams, co as FindLeadResearchRunsParams, bV as FindMailboxesParams, bN as FindProfileListProfilesParams, bE as FindProfileListsParams, bv as FindProfilesParams, bg as FindServiceProvidersParams, cl as FindSuppressionsParams, ax as Form, ea as FormEntry, e8 as FormField, e9 as FormFieldType, e6 as FormSchema, e7 as FormSchemaType, eZ as FormStatus, aD as FormSubmission, e5 as GalleryItem, c5 as GenerateOutreachPersonalizedDraftsParams, dc as GeoLocation, dH as GeoLocationBlock, fC as GeoLocationBlockProperties, fD as GeoLocationValue, fP as GetAnalyticsHealthParams, fO as GetAnalyticsParams, be as GetAvailabilityParams, c1 as GetCampaignLaunchReadinessParams, bZ as GetCampaignParams, c8 as GetCampaignRecipientConversationParams, b as GetCartParams, G as GetCurrentCartParams, fQ as GetDeliveryStatsParams, aS as GetEmailTemplateParams, aT as GetEmailTemplatesParams, aA as GetFormParams, aF as GetFormSubmissionParams, aE as GetFormSubmissionsParams, aB as GetFormsParams, g0 as GetIntegrationParams, cp as GetLeadResearchRunParams, bR as GetMailboxParams, k as GetMeParams, a5 as GetMediaParams, av as GetNodeChildrenParams, aq as GetNodeParams, au as GetNodesParams, b2 as GetOrderParams, b3 as GetOrdersParams, a_ as GetProductParams, a$ as GetProductsParams, bD as GetProfileListParams, bt as GetProfileParams, ag as GetPromoCodeParams, ah as GetPromoCodesParams, bp as GetProviderParams, bq as GetProvidersParams, b4 as GetQuoteParams, bc as GetServiceParams, bd as GetServicesParams, ai as GetShippingRatesParams, a8 as GetStoreMediaParams, K as GetStoreMediaParams2, w as GetStoreParams, x as GetStoresParams, z as GetSubscriptionPlansParams, ck as GetSuppressionParams, aM as GetTaxonomiesParams, aN as GetTaxonomyChildrenParams, aL as GetTaxonomyParams, cI as GetWorkflowExecutionParams, cH as GetWorkflowExecutionsParams, cD as GetWorkflowParams, cE as GetWorkflowsParams, e1 as HistoryEntry, c3 as ImportCampaignRecipientsParams, fp as ImportFieldMapping, fq as ImportPreviewRow, bH as ImportProfileListPreviewParams, fv as ImportProfileListRowResult, ft as ImportProfileRowError, fs as ImportProfileRowInput, fu as ImportProfileRowResult, bF as ImportProfilesIntoProfileListParams, bG as ImportProfilesIntoProfileListResult, by as ImportProfilesParams, fr as ImportProfilesPreviewParams, bI as ImportProfilesPreviewResult, bz as ImportProfilesResult, W as Integration, cT as IntegrationProvider, fx as IntervalPeriod, e4 as InventoryLevel, I as InviteUserParams, df as Language, b$ as LaunchCampaignParams, es as LeadEmailClassification, cx as LeadEmailValidationResult, cv as LeadResearchMessage, cn as LeadResearchRun, er as LeadResearchRunStatus, et as LeadValidationCheck, eu as LeadValidationCheckStatus, Y as ListIntegrationsParams, a0 as ListWebhooksParams, L as Location, fN as LoginAccountParams, f_ as LogoutParams, h as MagicLinkRequestParams, f as MagicLinkVerifyParams, bP as Mailbox, eh as MailboxConnectionSecurity, ej as MailboxPreset, ei as MailboxProvider, eH as MailboxStatus, ek as MailboxSyncStatus, M as Market, N as Media, dh as MediaResolution, bx as MergeProfilesParams, an as Node, du as NodeResult, at as NodeStatus, V as OAuthConnectParams, X as OAuthDisconnectParams, b1 as Order, e0 as OrderCancellationReason, fj as OrderCheckoutCompatibleItemInput, fh as OrderCheckoutItemInput, fM as OrderCheckoutParams, a as OrderCheckoutResult, dO as OrderItem, dP as OrderItemSnapshot, dZ as OrderItemStatus, cV as OrderPayment, cY as OrderPaymentPromoCode, cZ as OrderPaymentProvider, c_ as OrderPaymentRefund, d$ as OrderPaymentStatus, cW as OrderPaymentTax, cX as OrderPaymentTaxLine, O as OrderQuote, fe as OrderQuoteCompatibleItemInput, fc as OrderQuoteItemInput, dz as OrderShipping, d_ as OrderStatus, fU as OrderUpdateItem, eo as OutreachPersonalizationCounters, ep as OutreachPersonalizationState, eN as OutreachPersonalizationStatus, em as OutreachStep, en as OutreachStepVariant, eO as OutreachStepVariantStatus, eP as OutreachThreadMode, y as PaginatedResponse, dB as Parcel, d7 as PaymentMethod, e$ as PaymentMethodType, fw as PaymentTaxLine, bU as PrepareMailboxParams, aU as PreviewEmailTemplateParams, aV as PreviewEmailTemplateResponse, fZ as PreviewEmailTemplateWarning, cU as Price, fz as PriceProvider, b5 as ProcessOrderRefundParams, aX as Product, ff as ProductCheckoutItemInput, e3 as ProductInventory, dQ as ProductLineItem, dS as ProductLineItemSnapshot, fa as ProductQuoteItemInput, dV as ProductQuoteLine, dX as ProductQuoteLineAvailability, eC as ProductStatus, e2 as ProductVariant, P as Profile, fI as ProfileAuthToken, bu as ProfileDetail, g1 as ProfileInfo, bB as ProfileList, cL as ProfileListAccessParams, cM as ProfileListAccessResponse, bK as ProfileListMember, eg as ProfileListMembership, d5 as ProfileListMembershipPayment, d6 as ProfileListMembershipProvider, eG as ProfileListMembershipStatus, eF as ProfileListSource, eE as ProfileListStatus, cK as ProfileListSubscribeResponse, dv as ProfileListType, eD as ProfileStatus, fJ as ProfileVerificationCode, ad as PromoCode, eW as PromoCodeStatus, de as PromoCodeValidation, fK as PromoUsage, bm as Provider, f2 as ProviderAvailability, eB as ProviderStatus, dJ as ProviderTimelinePoint, di as ProviderWithTimeline, dC as PurchaseLabelResult, Q as QuoteCartParams, fd as QuoteItemInput, dU as QuoteLine, c as RemoveCartItemParams, J as RemoveMemberParams, bM as RemoveProfileListProfileParams, cc as ReplyCampaignRecipientParams, R as RequestOptions, ev as ResearchProfileListMember, m as SearchAccountsParams, fW as SearchOrderServiceItemsParams, cs as SendLeadResearchMessageParams, ct as SendLeadResearchMessageResult, b9 as Service, fg as ServiceCheckoutItemInput, f7 as ServiceCheckoutPart, dI as ServiceDuration, dR as ServiceLineItem, dT as ServiceLineItemSnapshot, bh as ServiceProvider, fV as ServiceProviderInput, f8 as ServiceQuoteItem, fb as ServiceQuoteItemInput, dW as ServiceQuoteLine, dY as ServiceQuoteLineAvailability, eA as ServiceStatus, g2 as SetProfileEmailParams, f$ as SetupAnalyticsParams, ak as ShipParams, al as ShipResult, dE as Shipment, dD as ShipmentLine, dA as ShippingAddress, d8 as ShippingMethod, aj as ShippingRate, dy as ShippingStatus, d9 as ShippingWeightTier, f3 as Slot, f4 as SlotRange, el as SmtpImapMailboxProvider, dN as SpecificDate, cd as StopCampaignRecipientParams, S as Store, fA as StoreEmails, ex as StoreMembership, fR as StoreRole, c$ as StoreSubscription, d0 as StoreSubscriptionPayment, d1 as StoreSubscriptionProvider, d3 as StoreSubscriptionSource, d2 as StoreSubscriptionStatus, aC as SubmitFormParams, E as SubscribeParams, cJ as SubscribeProfileListParams, fy as SubscriptionInterval, B as SubscriptionPlan, d4 as SubscriptionPrice, ci as Suppression, eT as SuppressionReason, eS as SuppressionScopeType, eU as SuppressionSource, eQ as SuppressionStatus, eR as SuppressionTargetType, fo as SystemTemplateKey, aI as Taxonomy, as as TaxonomyEntry, ee as TaxonomyField, ef as TaxonomyFieldQuery, eb as TaxonomyQuery, ec as TaxonomySchema, ed as TaxonomySchemaType, e_ as TaxonomyStatus, bS as TestMailboxParams, bT as TestMailboxResult, T as TestWebhookParams, fH as TimeRange, dK as TimelinePoint, aa as TrackEmailOpenParams, ab as TriggerNotificationParams, cF as TriggerWorkflowParams, fn as TrustedOrderCheckoutCompatibleItemInput, fm as TrustedOrderCheckoutItemInput, fk as TrustedProductCheckoutItemInput, fl as TrustedServiceCheckoutItemInput, i as UpdateAccountProfileParams, cg as UpdateCampaignMessageParams, bY as UpdateCampaignParams, cb as UpdateCampaignRecipientDraftParams, ca as UpdateCampaignRecipientParams, U as UpdateCartParams, aQ as UpdateEmailTemplateParams, ay as UpdateFormParams, aG as UpdateFormSubmissionParams, _ as UpdateIntegrationParams, cq as UpdateLeadResearchRunParams, o as UpdateLocationParams, bQ as UpdateMailboxParams, r as UpdateMarketParams, a9 as UpdateMediaParams, ao as UpdateNodeParams, b0 as UpdateOrderParams, aY as UpdateProductParams, fT as UpdateProductVariantInput, bC as UpdateProfileListParams, bL as UpdateProfileListProfileParams, bw as UpdateProfileParams, ae as UpdatePromoCodeParams, bn as UpdateProviderParams, ba as UpdateServiceParams, bj as UpdateServiceProviderParams, u as UpdateStoreParams, cj as UpdateSuppressionParams, aJ as UpdateTaxonomyParams, a3 as UpdateWebhookParams, cB as UpdateWorkflowParams, a6 as UploadStoreMediaParams, cw as ValidateLeadEmailParams, a1 as Webhook, cS as WebhookEventSubscription, cA as Workflow, dk as WorkflowEdge, cG as WorkflowExecution, ds as WorkflowHttpMethod, dm as WorkflowHttpNode, dr as WorkflowLoopNode, dj as WorkflowNode, eV as WorkflowStatus, dn as WorkflowSwitchNode, dp as WorkflowSwitchRule, dq as WorkflowTransformNode, dl as WorkflowTriggerNode, dM as WorkingDay, dL as WorkingHour, da as Zone, dd as ZoneLocation } from './api-BbBHcd4p.js';
1
+ export { dN as Access, ag as Account, hB as AccountAddress, hC as AccountApiToken, hD as AccountLifecycle, dO as AccountToken, ad as AccountUpdateResponse, cR as Action, dP as ActionContext, dQ as ActionData, hE as ActionDevice, hF as ActionLocation, hG as ActionSession, y as AddCartItemParams, cM as AddContactListContactParams, at as AddMemberParams, A as Address, dR as ApiResponse, aj as AuthToken, e as AvailabilityResponse, dS as AvailabilitySlot, B as Block, dT as BlockSchema, dU as BlockSchemaProperties, dV as BlockSchemaType, hH as BlockType, dW as BookingOrderItemStatus, aw as BuildHook, dX as BuildHookType, cU as Campaign, d4 as CampaignEnrollment, d6 as CampaignEnrollmentConversationResponse, dY as CampaignEnrollmentImportResult, dZ as CampaignEnrollmentImportSource, d_ as CampaignEnrollmentStatus, c$ as CampaignLaunchReadiness, d$ as CampaignManualTaskOutcome, dd as CampaignMessage, e0 as CampaignMessageCopySource, e1 as CampaignMessageDirection, e2 as CampaignMessageStatus, e3 as CampaignMessageType, e4 as CampaignRoute, e5 as CampaignStatus, dq as CancelLeadResearchRunParams, br as CancelSocialPublicationParams, C as Cart, e6 as CartOrigin, e7 as CartStatus, e8 as ChannelMessage, e9 as ChannelType, H as CheckoutCartParams, ea as CheckoutPaymentAction, by as ClassifySocialPublicationCommentsParams, D as ClearCartParams, l as Collection, a as CollectionEntry, eb as CollectionStatus, ec as Condition, ed as ConditionValue, bc as ConnectSocialAccountParams, aS as ConnectStripePaymentProviderParams, dL as ConnectWorkflowAccountParams, ab as Contact, ee as ContactChannel, hI as ContactChannelConsentStatus, j as ContactDetail, hJ as ContactInfo, a2 as ContactList, a6 as ContactListAccessParams, a7 as ContactListAccessResponse, cN as ContactListMember, ef as ContactListMembership, eg as ContactListMembershipPayment, eh as ContactListMembershipProvider, ei as ContactListMembershipProviderCancellation, ej as ContactListMembershipProviderCancellationError, ek as ContactListMembershipProviderCancellationStatus, el as ContactListMembershipStatus, em as ContactListSource, en as ContactListStatus, a5 as ContactListSubscribeResponse, eo as ContactListType, hK as ContactSessionToken, ep as ContactStatus, hL as ContactVerificationCode, eq as Coordinates, ax as CreateBuildHookParams, cT as CreateCampaignParams, cg as CreateCartParams, bH as CreateCollectionParams, cG as CreateContactListParams, cy as CreateContactParams, bZ as CreateEmailTemplateParams, bL as CreateEntryParams, bO as CreateFormParams, dk as CreateLeadResearchRunParams, aJ as CreateLocationParams, b0 as CreateMailboxParams, aM as CreateMarketParams, as as CreatePortalSessionParams, c5 as CreateProductParams, hM as CreateProductVariantInput, cs as CreatePromoCodeParams, cp as CreateProviderParams, ci as CreateServiceParams, cm as CreateServiceProviderParams, bi as CreateSocialPublicationParams, ak as CreateStoreParams, df as CreateSuppressionParams, bV as CreateTaxonomyParams, aD as CreateWebhookParams, dx as CreateWorkflowParams, er as CustomsDeclaration, es as CustomsItem, et as DaySlots, ae as DeleteAccountParams, az as DeleteBuildHookParams, bJ as DeleteCollectionParams, c0 as DeleteEmailTemplateParams, bN as DeleteEntryParams, bQ as DeleteFormParams, aL as DeleteLocationParams, aO as DeleteMarketParams, aU as DeletePaymentProviderParams, c7 as DeleteProductParams, cv as DeletePromoCodeParams, cr as DeleteProviderParams, ck as DeleteServiceParams, co as DeleteServiceProviderParams, bh as DeleteSocialAccountParams, aX as DeleteStoreMediaParams, am as DeleteStoreParams, bX as DeleteTaxonomyParams, aF as DeleteWebhookParams, dM as DeleteWorkflowAccountParams, dA as DeleteWorkflowParams, V as DigitalAccessDownloadResponse, eu as DigitalAccessGrant, ev as DigitalAccessGrantStatus, ew as DigitalAsset, ex as DigitalAssetStatus, ey as DigitalAssetType, ez as DigitalDeliveryPolicy, eA as Discount, eB as DiscountAllocation, N as DownloadDigitalAccessParams, cZ as DuplicateCampaignParams, b_ as EmailTemplate, eC as EmailTemplateStatus, eD as EmailTemplateVariable, eE as EntryBlockQuery, eF as EntryStatus, E as EshopCartItem, eG as EshopItem, eH as EshopQuoteItem, eI as EshopStoreState, eJ as Event, eK as EventAction, eL as ExecutionStatus, hN as FacebookPageContent, eM as FieldOperation, cS as FindActionsParams, d3 as FindCampaignEnrollmentsParams, dc as FindCampaignMessagesParams, cX as FindCampaignsParams, ch as FindCartsParams, cQ as FindContactListContactsParams, a3 as FindContactListsParams, cB as FindContactsParams, dt as FindLeadResearchMessagesParams, dm as FindLeadResearchRunsParams, b7 as FindMailboxesParams, Y as FindServiceProvidersParams, bx as FindSocialPublicationCommentsParams, bn as FindSocialPublicationsParams, aH as FindStoreMediaParams, dj as FindSuppressionsParams, b as Form, F as FormEntry, aa as FormField, eN as FormFieldType, eO as FormSchema, eP as FormSchemaType, eQ as FormStatus, r as FormSubmission, eR as FulfillmentOrder, eS as FulfillmentOrderLine, eT as FulfillmentOrderRequestStatus, eU as FulfillmentOrderStatus, eV as GalleryItem, d2 as GenerateOutreachPersonalizedDraftsParams, eW as GeoLocation, eX as GeoLocationBlock, hO as GeoLocationBlockProperties, hP as GetAnalyticsHealthParams, hQ as GetAnalyticsParams, _ as GetAvailabilityParams, d5 as GetCampaignEnrollmentConversationParams, c_ as GetCampaignLaunchReadinessParams, cW as GetCampaignParams, x as GetCartParams, G as GetCollectionParams, bK as GetCollectionsParams, a1 as GetContactListParams, cA as GetContactParams, w as GetCurrentCartParams, hR as GetDeliveryStatsParams, c1 as GetEmailTemplateParams, c2 as GetEmailTemplatesParams, n as GetEntriesParams, m as GetEntryParams, p as GetFormParams, bT as GetFormSubmissionParams, bS as GetFormSubmissionsParams, bR as GetFormsParams, dn as GetLeadResearchRunParams, b3 as GetMailboxParams, af as GetMeParams, aV as GetMediaParams, I as GetOrderParams, K as GetOrdersParams, u as GetProductParams, v as GetProductsParams, cw as GetPromoCodeParams, cx as GetPromoCodesParams, $ as GetProviderParams, a0 as GetProvidersParams, c9 as GetQuoteParams, W as GetServiceParams, X as GetServicesParams, cc as GetShippingRatesParams, b8 as GetSocialCapabilitiesParams, be as GetSocialOAuthAttemptParams, bv as GetSocialPublicationCommentThreadParams, bs as GetSocialPublicationCommentsParams, bC as GetSocialPublicationMetricsParams, bl as GetSocialPublicationParams, aY as GetStoreMediaParams, an as GetStoreParams, ao as GetStoresParams, ap as GetSubscriptionPlansParams, di as GetSuppressionParams, bY as GetTaxonomiesParams, t as GetTaxonomyChildrenParams, s as GetTaxonomyParams, dJ as GetWorkflowAccountConnectUrlParams, dH as GetWorkflowAccountsParams, dG as GetWorkflowExecutionParams, dF as GetWorkflowExecutionsParams, dB as GetWorkflowParams, dC as GetWorkflowsParams, eY as HistoryEntry, d0 as ImportCampaignEnrollmentsParams, cK as ImportContactListPreviewParams, eZ as ImportContactListRowResult, e_ as ImportContactRowError, e$ as ImportContactRowInput, f0 as ImportContactRowResult, cI as ImportContactsIntoContactListParams, cJ as ImportContactsIntoContactListResult, cE as ImportContactsParams, f1 as ImportContactsPreviewParams, cL as ImportContactsPreviewResult, cF as ImportContactsResult, f2 as ImportFieldMapping, f3 as ImportPreviewRow, hS as InstagramBusinessContent, f4 as InstagramPlacement, hT as IntervalPeriod, f5 as InventoryLevel, f6 as Language, cY as LaunchCampaignParams, f7 as LeadEmailClassification, dw as LeadEmailValidationResult, f8 as LeadInsight, du as LeadResearchMessage, f9 as LeadResearchMessageRole, dl as LeadResearchRun, fa as LeadResearchRunStatus, fb as LeadScores, fc as LeadValidationCheck, fd as LeadValidationCheckStatus, fe as LineMoneySnapshot, av as ListBuildHooksParams, aP as ListPaymentProvidersParams, ba as ListSocialAccountsParams, aB as ListWebhooksParams, L as Location, hU as LoginAccountParams, hV as LogoutParams, ai as MagicLinkVerifyParams, b1 as Mailbox, ff as MailboxConnectionSecurity, fg as MailboxPreset, fh as MailboxStatus, fi as MailboxSyncStatus, fj as ManualTaskContinueBehavior, M as Market, aI as Media, fk as MediaRef, fl as MediaResolution, cD as MergeContactsParams, fm as NodeResult, fn as OpportunitySource, fo as OpportunityStage, fp as OpportunityType, J as Order, fq as OrderCancellationReason, fr as OrderCheckoutCompatibleItemInput, a9 as OrderCheckoutItemInput, hW as OrderCheckoutParams, O as OrderCheckoutResult, fs as OrderFulfillmentStatus, ft as OrderItem, fu as OrderItemFulfillmentStatus, fv as OrderItemSnapshot, fw as OrderItemStatus, fx as OrderPayment, fy as OrderPaymentPromoCode, fz as OrderPaymentProvider, fA as OrderPaymentRefund, fB as OrderPaymentStatus, fC as OrderPaymentSummaryStatus, fD as OrderPaymentTax, fE as OrderPaymentTaxLine, f as OrderQuote, fF as OrderQuoteCompatibleItemInput, fG as OrderQuoteItemInput, hX as OrderRefundError, fH as OrderShipping, fI as OrderStatus, fJ as OutreachPersonalizationCounters, fK as OutreachPersonalizationState, fL as OutreachPersonalizationStatus, fM as OutreachStep, fN as OutreachStepType, fO as OutreachThreadMode, o as PaginatedResponse, fP as Parcel, fQ as PaymentCaptureMethod, g as PaymentMethod, fR as PaymentMethodType, aQ as PaymentProvider, fS as PaymentStoreConfig, hY as PaymentTaxLine, fT as PaymentTransaction, fU as PaymentTransactionProvider, fV as PaymentTransactionStatus, fW as PaymentTransactionType, b6 as PrepareMailboxParams, c3 as PreviewEmailTemplateParams, c4 as PreviewEmailTemplateResponse, hZ as PreviewEmailTemplateWarning, P as Price, h_ as PriceProvider, ca as ProcessOrderRefundParams, cb as ProcessOrderRefundResponse, c as Product, h as ProductCheckoutItemInput, fX as ProductInventory, fY as ProductLineItem, fZ as ProductLineItemSnapshot, f_ as ProductQuoteItemInput, f$ as ProductQuoteLine, g0 as ProductQuoteLineAvailability, g1 as ProductStatus, a8 as ProductVariant, ct as PromoCode, g2 as PromoCodeStatus, g3 as PromoCodeValidation, h$ as PromoUsage, d as Provider, g4 as ProviderAvailability, g5 as ProviderStatus, g6 as ProviderTimelinePoint, g7 as ProviderWithTimeline, g8 as PurchaseLabelResult, Q as QuoteCartParams, g9 as QuoteLine, aR as RefreshPaymentProvidersParams, ga as RefundLine, gb as RefundStatus, gc as RefundType, z as RemoveCartItemParams, cP as RemoveContactListContactParams, au as RemoveMemberParams, da as ReplyCampaignEnrollmentParams, bA as ReplySocialPublicationCommentParams, R as RequestOptions, gd as ResearchContactListMember, bq as ScheduleSocialPublicationParams, ah as SearchAccountsParams, i0 as SearchOrderServiceItemsParams, bg as SelectSocialDestinationParams, dr as SendLeadResearchMessageParams, ds as SendLeadResearchMessageResult, S as Service, i as ServiceCheckoutItemInput, ge as ServiceCheckoutPart, gf as ServiceDuration, gg as ServiceLineItem, gh as ServiceLineItemSnapshot, cl as ServiceProvider, i1 as ServiceProviderInput, gi as ServiceQuoteItem, gj as ServiceQuoteItemInput, gk as ServiceQuoteLine, gl as ServiceQuoteLineAvailability, gm as ServiceStatus, i2 as SetContactEmailParams, i3 as SetupAnalyticsParams, ce as ShipParams, cf as ShipResult, gn as Shipment, i4 as ShipmentLabelError, go as ShipmentLabelStatus, gp as ShipmentLine, gq as ShippingLine, gr as ShippingMethod, cd as ShippingRate, gs as ShippingStatus, gt as ShippingWeightTier, gu as Slot, gv as SlotRange, gw as SmtpImapMailboxProvider, bb as SocialAccount, i5 as SocialActionAuthor, gx as SocialAnalyticsCapabilities, bd as SocialConnectResponse, gy as SocialDestinationMetadata, gz as SocialEngagementCapabilities, bf as SocialOAuthCallbackResponse, gA as SocialOAuthCallbackStatus, gB as SocialOAuthCredential, gC as SocialOAuthDestinationOption, b9 as SocialProviderCapability, gD as SocialProviderType, bm as SocialPublication, bt as SocialPublicationComment, bz as SocialPublicationCommentClassificationResult, gE as SocialPublicationCommentIntent, gF as SocialPublicationCommentPriority, gG as SocialPublicationCommentReply, gH as SocialPublicationCommentReplyError, bB as SocialPublicationCommentReplyResponse, gI as SocialPublicationCommentReplyStatus, gJ as SocialPublicationCommentStatus, gK as SocialPublicationContent, bG as SocialPublicationEngagementSyncResult, bD as SocialPublicationMetricSnapshot, bj as SocialPublicationMutationResponse, gL as SocialPublicationStatus, bp as SocialPublicationValidation, gM as SpecificDate, db as StopCampaignEnrollmentParams, k as Store, i6 as StoreEmails, gN as StoreMembership, i7 as StoreRole, aG as StoreRuntimeConfig, gO as StoreSubscription, gP as StoreSubscriptionPayment, gQ as StoreSubscriptionProvider, gR as StoreSubscriptionProviderError, gS as StoreSubscriptionProviderLifecycle, gT as StoreSubscriptionProviderLifecycleStatus, gU as StoreSubscriptionProviderOperation, gV as StoreSubscriptionSource, gW as StoreSubscriptionStatus, aT as StripePaymentProviderConnectResponse, q as SubmitFormParams, a4 as SubscribeContactListParams, ar as SubscribeParams, i8 as SubscriptionAction, i9 as SubscriptionInterval, aq as SubscriptionPlan, gX as SubscriptionPrice, dg as Suppression, gY as SuppressionReason, gZ as SuppressionScopeType, g_ as SuppressionSource, g$ as SuppressionStatus, h0 as SuppressionTargetType, bF as SyncSocialEngagementParams, bw as SyncSocialPublicationCommentThreadParams, bu as SyncSocialPublicationCommentsParams, bE as SyncSocialPublicationMetricsParams, h1 as SystemTemplateKey, h2 as TaxLine, h3 as TaxLineReversal, T as Taxonomy, h4 as TaxonomyEntry, h5 as TaxonomyField, h6 as TaxonomyFieldQuery, h7 as TaxonomyQuery, h8 as TaxonomySchema, h9 as TaxonomySchemaType, ha as TaxonomyStatus, b4 as TestMailboxParams, b5 as TestMailboxResult, aA as TestWebhookParams, ia as TiktokAccountContent, hb as TiktokPrivacy, ib as TimeRange, hc as TimelinePoint, a_ as TrackEmailOpenParams, a$ as TriggerNotificationParams, dD as TriggerWorkflowParams, hd as TrustedOrderCheckoutCompatibleItemInput, he as TrustedOrderCheckoutItemInput, hf as TrustedProductCheckoutItemInput, hg as TrustedServiceCheckoutItemInput, ac as UpdateAccountContactParams, ay as UpdateBuildHookParams, d8 as UpdateCampaignEnrollmentDraftParams, d7 as UpdateCampaignEnrollmentParams, d9 as UpdateCampaignEnrollmentStepExecutionParams, de as UpdateCampaignMessageParams, cV as UpdateCampaignParams, U as UpdateCartParams, bI as UpdateCollectionParams, cO as UpdateContactListContactParams, cH as UpdateContactListParams, cC as UpdateContactParams, b$ as UpdateEmailTemplateParams, bM as UpdateEntryParams, bP as UpdateFormParams, bU as UpdateFormSubmissionParams, dp as UpdateLeadResearchRunParams, aK as UpdateLocationParams, b2 as UpdateMailboxParams, aN as UpdateMarketParams, aZ as UpdateMediaParams, c8 as UpdateOrderParams, c6 as UpdateProductParams, ic as UpdateProductVariantInput, cu as UpdatePromoCodeParams, cq as UpdateProviderParams, cj as UpdateServiceParams, cn as UpdateServiceProviderParams, bk as UpdateSocialPublicationParams, al as UpdateStoreParams, dh as UpdateSuppressionParams, bW as UpdateTaxonomyParams, aE as UpdateWebhookParams, dz as UpdateWorkflowParams, aW as UploadStoreMediaParams, dv as ValidateLeadEmailParams, bo as ValidateSocialPublicationParams, hh as ValidationError, aC as Webhook, hi as WebhookEventSubscription, dy as Workflow, dI as WorkflowAccount, dK as WorkflowAccountConnectUrl, hj as WorkflowAccountProfile, hk as WorkflowAccountType, hl as WorkflowDeployWebhookNode, hm as WorkflowEdge, dE as WorkflowExecution, hn as WorkflowGoogleDriveUploadNode, ho as WorkflowHttpMethod, hp as WorkflowHttpNode, hq as WorkflowLoopNode, hr as WorkflowNode, hs as WorkflowStatus, ht as WorkflowSwitchNode, hu as WorkflowSwitchRule, hv as WorkflowTransformNode, hw as WorkflowTriggerNode, hx as WorkingDay, hy as WorkingHour, id as XAccountContent, ie as YoutubeChannelContent, hz as YoutubePrivacy, hA as Zone, Z as ZoneLocation } from './api-DJI3S6XA.js';