@retaila/shared-types 1.1.95 → 1.1.102
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +414 -1
- package/dist/index.d.ts +414 -1
- package/dist/index.js +67 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +62 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2211,4 +2211,417 @@ interface StoreSettings {
|
|
|
2211
2211
|
deletedAt?: Date;
|
|
2212
2212
|
}
|
|
2213
2213
|
|
|
2214
|
-
|
|
2214
|
+
/**
|
|
2215
|
+
* Entidad StoreTemplate
|
|
2216
|
+
* Templates predefinidos para el constructor de tiendas
|
|
2217
|
+
*/
|
|
2218
|
+
|
|
2219
|
+
interface StoreTemplate {
|
|
2220
|
+
id: string;
|
|
2221
|
+
name: string;
|
|
2222
|
+
description?: string | null;
|
|
2223
|
+
image?: string | null;
|
|
2224
|
+
config: Partial<StoreCustomization>;
|
|
2225
|
+
mocks: StoreTemplateMocks;
|
|
2226
|
+
isActive: boolean;
|
|
2227
|
+
createdAt: Date;
|
|
2228
|
+
updatedAt: Date;
|
|
2229
|
+
deletedAt?: Date | null;
|
|
2230
|
+
}
|
|
2231
|
+
interface StoreTemplateMocks {
|
|
2232
|
+
products?: any[];
|
|
2233
|
+
categories?: any[];
|
|
2234
|
+
brands?: any[];
|
|
2235
|
+
[key: string]: any[] | undefined;
|
|
2236
|
+
}
|
|
2237
|
+
interface CreateStoreTemplateDTO {
|
|
2238
|
+
name: string;
|
|
2239
|
+
description?: string | null;
|
|
2240
|
+
image?: string | null;
|
|
2241
|
+
config: Partial<StoreCustomization>;
|
|
2242
|
+
mocks: StoreTemplateMocks;
|
|
2243
|
+
}
|
|
2244
|
+
interface UpdateStoreTemplateDTO {
|
|
2245
|
+
name?: string;
|
|
2246
|
+
description?: string | null;
|
|
2247
|
+
image?: string | null;
|
|
2248
|
+
config?: Partial<StoreCustomization>;
|
|
2249
|
+
mocks?: StoreTemplateMocks;
|
|
2250
|
+
isActive?: boolean;
|
|
2251
|
+
}
|
|
2252
|
+
|
|
2253
|
+
/**
|
|
2254
|
+
* Traffic source types
|
|
2255
|
+
*/
|
|
2256
|
+
declare enum TrafficSource {
|
|
2257
|
+
DIRECT = "direct",
|
|
2258
|
+
ORGANIC = "organic",
|
|
2259
|
+
PAID = "paid",
|
|
2260
|
+
REFERRAL = "referral",
|
|
2261
|
+
SOCIAL = "social",
|
|
2262
|
+
EMAIL = "email",
|
|
2263
|
+
OTHER = "other"
|
|
2264
|
+
}
|
|
2265
|
+
/**
|
|
2266
|
+
* Device types
|
|
2267
|
+
*/
|
|
2268
|
+
declare enum DeviceType {
|
|
2269
|
+
DESKTOP = "desktop",
|
|
2270
|
+
MOBILE = "mobile",
|
|
2271
|
+
TABLET = "tablet"
|
|
2272
|
+
}
|
|
2273
|
+
/**
|
|
2274
|
+
* Page types for categorization
|
|
2275
|
+
*/
|
|
2276
|
+
declare enum PageType {
|
|
2277
|
+
HOME = "home",
|
|
2278
|
+
CATALOG = "catalog",
|
|
2279
|
+
PRODUCT = "product",
|
|
2280
|
+
CART = "cart",
|
|
2281
|
+
CHECKOUT = "checkout",
|
|
2282
|
+
ORDER_CONFIRMATION = "order_confirmation",
|
|
2283
|
+
PAGE = "page",
|
|
2284
|
+
SEARCH = "search",
|
|
2285
|
+
OTHER = "other"
|
|
2286
|
+
}
|
|
2287
|
+
/**
|
|
2288
|
+
* Event types for analytics tracking
|
|
2289
|
+
*/
|
|
2290
|
+
declare enum AnalyticsEventType {
|
|
2291
|
+
SESSION_START = "session_start",
|
|
2292
|
+
SESSION_END = "session_end",
|
|
2293
|
+
PAGE_VIEW = "page_view",
|
|
2294
|
+
PRODUCT_VIEW = "product_view",
|
|
2295
|
+
PRODUCT_LIST_VIEW = "product_list_view",
|
|
2296
|
+
PRODUCT_SEARCH = "product_search",
|
|
2297
|
+
ADD_TO_CART = "add_to_cart",
|
|
2298
|
+
REMOVE_FROM_CART = "remove_from_cart",
|
|
2299
|
+
UPDATE_CART_QUANTITY = "update_cart_quantity",
|
|
2300
|
+
CHECKOUT_START = "checkout_start",
|
|
2301
|
+
CHECKOUT_STEP = "checkout_step",
|
|
2302
|
+
CHECKOUT_COMPLETE = "checkout_complete",
|
|
2303
|
+
PURCHASE = "purchase",
|
|
2304
|
+
CLICK = "click",
|
|
2305
|
+
SCROLL = "scroll"
|
|
2306
|
+
}
|
|
2307
|
+
/**
|
|
2308
|
+
* Funnel steps for sales funnel analysis
|
|
2309
|
+
*/
|
|
2310
|
+
declare enum FunnelStep {
|
|
2311
|
+
VISIT = "visit",
|
|
2312
|
+
PRODUCT_VIEW = "product_view",
|
|
2313
|
+
ADD_TO_CART = "add_to_cart",
|
|
2314
|
+
CHECKOUT_START = "checkout_start",
|
|
2315
|
+
CHECKOUT_COMPLETE = "checkout_complete",
|
|
2316
|
+
PURCHASE = "purchase"
|
|
2317
|
+
}
|
|
2318
|
+
/**
|
|
2319
|
+
* Analytics Session - Tracks a user visit session
|
|
2320
|
+
*/
|
|
2321
|
+
interface AnalyticsSession extends BaseEntityWithAccount {
|
|
2322
|
+
visitorId: string;
|
|
2323
|
+
cartId?: string;
|
|
2324
|
+
customerId?: string;
|
|
2325
|
+
startedAt: Date;
|
|
2326
|
+
endedAt?: Date;
|
|
2327
|
+
duration?: number;
|
|
2328
|
+
lastActivityAt: Date;
|
|
2329
|
+
source: TrafficSource;
|
|
2330
|
+
medium?: string;
|
|
2331
|
+
campaign?: string;
|
|
2332
|
+
content?: string;
|
|
2333
|
+
term?: string;
|
|
2334
|
+
referrer?: string;
|
|
2335
|
+
referrerDomain?: string;
|
|
2336
|
+
landingPage: string;
|
|
2337
|
+
exitPage?: string;
|
|
2338
|
+
pageviews: number;
|
|
2339
|
+
events: number;
|
|
2340
|
+
device: DeviceType;
|
|
2341
|
+
browser?: string;
|
|
2342
|
+
browserVersion?: string;
|
|
2343
|
+
os?: string;
|
|
2344
|
+
osVersion?: string;
|
|
2345
|
+
screenWidth?: number;
|
|
2346
|
+
screenHeight?: number;
|
|
2347
|
+
country?: string;
|
|
2348
|
+
region?: string;
|
|
2349
|
+
city?: string;
|
|
2350
|
+
isConverted: boolean;
|
|
2351
|
+
conversionValue: number;
|
|
2352
|
+
orderId?: string;
|
|
2353
|
+
}
|
|
2354
|
+
/**
|
|
2355
|
+
* Analytics Event - Individual user action
|
|
2356
|
+
*/
|
|
2357
|
+
interface AnalyticsEvent extends BaseEntityWithAccount {
|
|
2358
|
+
sessionId: string;
|
|
2359
|
+
visitorId: string;
|
|
2360
|
+
eventType: AnalyticsEventType;
|
|
2361
|
+
eventData?: Record<string, any>;
|
|
2362
|
+
pageUrl: string;
|
|
2363
|
+
pageTitle?: string;
|
|
2364
|
+
pageType?: PageType;
|
|
2365
|
+
productId?: string;
|
|
2366
|
+
productVariantId?: string;
|
|
2367
|
+
productSku?: string;
|
|
2368
|
+
categoryId?: string;
|
|
2369
|
+
cartId?: string;
|
|
2370
|
+
orderId?: string;
|
|
2371
|
+
value?: number;
|
|
2372
|
+
currency?: string;
|
|
2373
|
+
timestamp: Date;
|
|
2374
|
+
}
|
|
2375
|
+
/**
|
|
2376
|
+
* Analytics Pageview - Page view tracking
|
|
2377
|
+
*/
|
|
2378
|
+
interface AnalyticsPageview extends BaseEntityWithAccount {
|
|
2379
|
+
sessionId: string;
|
|
2380
|
+
visitorId: string;
|
|
2381
|
+
pageUrl: string;
|
|
2382
|
+
pageTitle?: string;
|
|
2383
|
+
pageType: PageType;
|
|
2384
|
+
referrerUrl?: string;
|
|
2385
|
+
timeOnPage?: number;
|
|
2386
|
+
scrollDepth?: number;
|
|
2387
|
+
timestamp: Date;
|
|
2388
|
+
}
|
|
2389
|
+
/**
|
|
2390
|
+
* Analytics Funnel Step - Aggregated funnel data
|
|
2391
|
+
*/
|
|
2392
|
+
interface AnalyticsFunnelStep extends BaseEntityWithAccount {
|
|
2393
|
+
date: Date;
|
|
2394
|
+
step: FunnelStep;
|
|
2395
|
+
count: number;
|
|
2396
|
+
uniqueVisitors: number;
|
|
2397
|
+
conversionFromPrevious?: number;
|
|
2398
|
+
}
|
|
2399
|
+
/**
|
|
2400
|
+
* DTO for creating/updating a session
|
|
2401
|
+
*/
|
|
2402
|
+
interface CreateAnalyticsSessionDto {
|
|
2403
|
+
visitorId: string;
|
|
2404
|
+
cartId?: string;
|
|
2405
|
+
customerId?: string;
|
|
2406
|
+
landingPage: string;
|
|
2407
|
+
source: TrafficSource;
|
|
2408
|
+
medium?: string;
|
|
2409
|
+
campaign?: string;
|
|
2410
|
+
content?: string;
|
|
2411
|
+
term?: string;
|
|
2412
|
+
referrer?: string;
|
|
2413
|
+
referrerDomain?: string;
|
|
2414
|
+
device: DeviceType;
|
|
2415
|
+
browser?: string;
|
|
2416
|
+
browserVersion?: string;
|
|
2417
|
+
os?: string;
|
|
2418
|
+
osVersion?: string;
|
|
2419
|
+
screenWidth?: number;
|
|
2420
|
+
screenHeight?: number;
|
|
2421
|
+
}
|
|
2422
|
+
/**
|
|
2423
|
+
* DTO for tracking an event
|
|
2424
|
+
*/
|
|
2425
|
+
interface TrackEventDto {
|
|
2426
|
+
sessionId: string;
|
|
2427
|
+
visitorId: string;
|
|
2428
|
+
eventType: AnalyticsEventType;
|
|
2429
|
+
eventData?: Record<string, any>;
|
|
2430
|
+
pageUrl: string;
|
|
2431
|
+
pageTitle?: string;
|
|
2432
|
+
pageType?: PageType;
|
|
2433
|
+
productId?: string;
|
|
2434
|
+
productVariantId?: string;
|
|
2435
|
+
productSku?: string;
|
|
2436
|
+
categoryId?: string;
|
|
2437
|
+
cartId?: string;
|
|
2438
|
+
orderId?: string;
|
|
2439
|
+
value?: number;
|
|
2440
|
+
currency?: string;
|
|
2441
|
+
}
|
|
2442
|
+
/**
|
|
2443
|
+
* DTO for tracking a pageview
|
|
2444
|
+
*/
|
|
2445
|
+
interface TrackPageviewDto {
|
|
2446
|
+
sessionId: string;
|
|
2447
|
+
visitorId: string;
|
|
2448
|
+
pageUrl: string;
|
|
2449
|
+
pageTitle?: string;
|
|
2450
|
+
pageType: PageType;
|
|
2451
|
+
referrerUrl?: string;
|
|
2452
|
+
}
|
|
2453
|
+
/**
|
|
2454
|
+
* DTO for session heartbeat (keep alive)
|
|
2455
|
+
*/
|
|
2456
|
+
interface SessionHeartbeatDto {
|
|
2457
|
+
sessionId: string;
|
|
2458
|
+
visitorId: string;
|
|
2459
|
+
currentPage?: string;
|
|
2460
|
+
scrollDepth?: number;
|
|
2461
|
+
}
|
|
2462
|
+
/**
|
|
2463
|
+
* Real-time analytics data
|
|
2464
|
+
*/
|
|
2465
|
+
interface RealtimeAnalytics {
|
|
2466
|
+
activeVisitors: number;
|
|
2467
|
+
activeSessions: ActiveSession[];
|
|
2468
|
+
recentEvents: RecentEvent[];
|
|
2469
|
+
pageviewsLastHour: number;
|
|
2470
|
+
conversionsLastHour: number;
|
|
2471
|
+
revenueLastHour: number;
|
|
2472
|
+
}
|
|
2473
|
+
interface ActiveSession {
|
|
2474
|
+
sessionId: string;
|
|
2475
|
+
visitorId: string;
|
|
2476
|
+
currentPage: string;
|
|
2477
|
+
pageType: PageType;
|
|
2478
|
+
device: DeviceType;
|
|
2479
|
+
source: TrafficSource;
|
|
2480
|
+
startedAt: Date;
|
|
2481
|
+
pageviews: number;
|
|
2482
|
+
}
|
|
2483
|
+
interface RecentEvent {
|
|
2484
|
+
eventType: AnalyticsEventType;
|
|
2485
|
+
pageUrl: string;
|
|
2486
|
+
productName?: string;
|
|
2487
|
+
value?: number;
|
|
2488
|
+
timestamp: Date;
|
|
2489
|
+
}
|
|
2490
|
+
/**
|
|
2491
|
+
* Overview analytics for a period
|
|
2492
|
+
*/
|
|
2493
|
+
interface AnalyticsOverview {
|
|
2494
|
+
totalVisits: number;
|
|
2495
|
+
uniqueVisitors: number;
|
|
2496
|
+
newVisitors: number;
|
|
2497
|
+
returningVisitors: number;
|
|
2498
|
+
totalPageviews: number;
|
|
2499
|
+
avgSessionDuration: number;
|
|
2500
|
+
avgPagesPerSession: number;
|
|
2501
|
+
bounceRate: number;
|
|
2502
|
+
totalConversions: number;
|
|
2503
|
+
conversionRate: number;
|
|
2504
|
+
totalRevenue: number;
|
|
2505
|
+
avgOrderValue: number;
|
|
2506
|
+
visitsPop?: number;
|
|
2507
|
+
conversionsPop?: number;
|
|
2508
|
+
revenuePop?: number;
|
|
2509
|
+
}
|
|
2510
|
+
/**
|
|
2511
|
+
* Traffic sources breakdown
|
|
2512
|
+
*/
|
|
2513
|
+
interface TrafficSourcesData {
|
|
2514
|
+
sources: TrafficSourceItem[];
|
|
2515
|
+
total: number;
|
|
2516
|
+
}
|
|
2517
|
+
interface TrafficSourceItem {
|
|
2518
|
+
source: TrafficSource;
|
|
2519
|
+
visits: number;
|
|
2520
|
+
uniqueVisitors: number;
|
|
2521
|
+
conversions: number;
|
|
2522
|
+
conversionRate: number;
|
|
2523
|
+
revenue: number;
|
|
2524
|
+
percentage: number;
|
|
2525
|
+
}
|
|
2526
|
+
/**
|
|
2527
|
+
* Sales funnel data
|
|
2528
|
+
*/
|
|
2529
|
+
interface FunnelData {
|
|
2530
|
+
steps: FunnelStepData[];
|
|
2531
|
+
overallConversionRate: number;
|
|
2532
|
+
}
|
|
2533
|
+
interface FunnelStepData {
|
|
2534
|
+
step: FunnelStep;
|
|
2535
|
+
label: string;
|
|
2536
|
+
count: number;
|
|
2537
|
+
uniqueVisitors: number;
|
|
2538
|
+
conversionRate: number;
|
|
2539
|
+
dropoffRate: number;
|
|
2540
|
+
}
|
|
2541
|
+
/**
|
|
2542
|
+
* Campaign performance
|
|
2543
|
+
*/
|
|
2544
|
+
interface CampaignPerformance {
|
|
2545
|
+
campaigns: CampaignData[];
|
|
2546
|
+
total: {
|
|
2547
|
+
visits: number;
|
|
2548
|
+
conversions: number;
|
|
2549
|
+
revenue: number;
|
|
2550
|
+
};
|
|
2551
|
+
}
|
|
2552
|
+
interface CampaignData {
|
|
2553
|
+
campaign: string;
|
|
2554
|
+
source: string;
|
|
2555
|
+
medium: string;
|
|
2556
|
+
visits: number;
|
|
2557
|
+
uniqueVisitors: number;
|
|
2558
|
+
conversions: number;
|
|
2559
|
+
conversionRate: number;
|
|
2560
|
+
revenue: number;
|
|
2561
|
+
avgOrderValue: number;
|
|
2562
|
+
}
|
|
2563
|
+
/**
|
|
2564
|
+
* Top pages data
|
|
2565
|
+
*/
|
|
2566
|
+
interface TopPagesData {
|
|
2567
|
+
pages: PageData[];
|
|
2568
|
+
}
|
|
2569
|
+
interface PageData {
|
|
2570
|
+
pageUrl: string;
|
|
2571
|
+
pageTitle: string;
|
|
2572
|
+
pageType: PageType;
|
|
2573
|
+
views: number;
|
|
2574
|
+
uniqueViews: number;
|
|
2575
|
+
avgTimeOnPage: number;
|
|
2576
|
+
bounceRate: number;
|
|
2577
|
+
exitRate: number;
|
|
2578
|
+
}
|
|
2579
|
+
/**
|
|
2580
|
+
* Product analytics
|
|
2581
|
+
*/
|
|
2582
|
+
interface ProductAnalyticsData {
|
|
2583
|
+
products: ProductAnalyticsItem[];
|
|
2584
|
+
}
|
|
2585
|
+
interface ProductAnalyticsItem {
|
|
2586
|
+
productId: string;
|
|
2587
|
+
productName: string;
|
|
2588
|
+
sku: string;
|
|
2589
|
+
views: number;
|
|
2590
|
+
addToCarts: number;
|
|
2591
|
+
purchases: number;
|
|
2592
|
+
viewToCartRate: number;
|
|
2593
|
+
cartToPurchaseRate: number;
|
|
2594
|
+
revenue: number;
|
|
2595
|
+
}
|
|
2596
|
+
/**
|
|
2597
|
+
* Historical data point for charts
|
|
2598
|
+
*/
|
|
2599
|
+
interface HistoricalDataPoint {
|
|
2600
|
+
date: string;
|
|
2601
|
+
visits: number;
|
|
2602
|
+
uniqueVisitors: number;
|
|
2603
|
+
pageviews: number;
|
|
2604
|
+
conversions: number;
|
|
2605
|
+
revenue: number;
|
|
2606
|
+
}
|
|
2607
|
+
/**
|
|
2608
|
+
* Query parameters for analytics endpoints
|
|
2609
|
+
*/
|
|
2610
|
+
interface AnalyticsQueryParams {
|
|
2611
|
+
startDate: string;
|
|
2612
|
+
endDate: string;
|
|
2613
|
+
compareWithPrevious?: boolean;
|
|
2614
|
+
source?: TrafficSource;
|
|
2615
|
+
device?: DeviceType;
|
|
2616
|
+
campaign?: string;
|
|
2617
|
+
}
|
|
2618
|
+
/**
|
|
2619
|
+
* Pagination for analytics lists
|
|
2620
|
+
*/
|
|
2621
|
+
interface AnalyticsPagination {
|
|
2622
|
+
page: number;
|
|
2623
|
+
limit: number;
|
|
2624
|
+
total: number;
|
|
2625
|
+
}
|
|
2626
|
+
|
|
2627
|
+
export { type Account, type AccountAiCreditTransaction, type AccountAiCredits, type AccountBranch, type AccountBranchSchedule, AccountBranchScheduleDay, AccountBranchScheduleStatus, AccountBranchStatus, type AccountCurrencyConfig, type AccountDeliveryOption, type AccountDeliveryOptionCalculatedCost, AccountDeliveryOptionPriceLogic, AccountDeliveryOptionStatus, type AccountDeliveryOptionZone, AccountDeliveryOptionZoneStatus, type AccountDomain, AccountDomainStatus, type AccountExchangeRate, type AccountExchangeRateListResponse, type AccountExchangeRateMetadata, type AccountExchangeRateQueryDto, type AccountExchangeRateResponse, AccountExchangeRateType, type AccountExchangeRateWithEffectiveRate, type AccountIntegration, type AccountIntegrationConfigDTO, AccountIntegrationConnectionStatus, AccountIntegrationEnvironment, AccountIntegrationStatus, type AccountPaymentMethod, AccountPaymentMethodStatus, AccountStatus, type ActiveSession, type Address, type AdminOrderStatusChangeDto, AiCreditSource, AiCreditTransactionReason, AiCreditType, type AiCreditsBalance, type AnalyticsEvent, AnalyticsEventType, type AnalyticsFunnelStep, type AnalyticsOverview, type AnalyticsPageview, type AnalyticsPagination, type AnalyticsQueryParams, type AnalyticsSession, type BaseEntity, type BaseEntityWithAccount, type BaseEntityWithAccountAndUser, type BaseEntityWithUser, type ButtonStyle, type Campaign, type CampaignBudget, CampaignBudgetType, type CampaignBudgetUsage, type CampaignData, type CampaignPerformance, CampaignStatus, type Cart, type CartConfirmDto, type CartDeliveryMethod, type CartDeliveryMethodAdjustment, type CartDeliveryMethodCreateData, type CartDeliveryMethodCreateDto, type CartDeliveryMethodFindParams, type CartDeliveryMethodResponse, type CartDeliveryMethodUpdateData, type CartDeliveryMethodUpdateDto, CartDeliveryType, type CartItem, type CartItemAddDto, type CartItemAttributeDetail, CartItemErrorCode, type CartItemRemoveDto, type CartItemUpdateDto, type CartItemValidation, type CartLineItemAdjustment, type CartPromotion, CartSource, CartStatus, type CartUpdateDto, type CreateAccountDeliveryOptionDTO, type CreateAccountExchangeRateDto, type CreateAnalyticsSessionDto, type CreateDeliveryOptionDto, type CreateExchangeRateDto, type CreateFulfillmentDto, type CreateFulfillmentItemDto, type CreatePromotionDTO, type CreateStoreTemplateDTO, Currency, type CurrencyConversion, type Customer, CustomerStatus, type CustomerUpsertDto, DayOfWeek, DeliveryType, type DeliveryZoneInput, DeviceType, type EffectiveExchangeRate, type ExchangeRate, type ExchangeRateListResponse, type ExchangeRateMetadata, type ExchangeRateQueryDto, type ExchangeRateResponse, type Fulfillment, type FulfillmentDeliveryOption, type FulfillmentItem, type FulfillmentLabel, type FulfillmentLabelCreateData, type FulfillmentLabelUpdateData, type FulfillmentProviderAdapter, type FulfillmentProviderContext, type FulfillmentProviderCreateInput, type FulfillmentProviderCreateOutput, type FulfillmentProviderKey, type FulfillmentProviderProcessWebhookInput, type FulfillmentProviderProcessWebhookOutput, type FulfillmentRecollectionCapabilities, type FulfillmentRecollectionConfig, type FulfillmentRecollectionMode, type FulfillmentRecollectionSchedule, FulfillmentStatus, type FunnelData, FunnelStep, type FunnelStepData, type GeoZone, type GeoZoneInput, GeoZoneStatus, type HistoricalDataPoint, type Integration, IntegrationCategory, type IntegrationDeliveryZone, IntegrationDeliveryZoneStatus, IntegrationStatus, type MapPosition, type Media, MediaType, type NextStatusAction, type Order, type OrderCreateFromCartDto, type OrderDeliveryMethod, type OrderDeliveryMethodAdjustment, type OrderDeliveryMethodCreateData, type OrderDeliveryMethodUpdateData, OrderDeliveryType, type OrderItem, type OrderItemSnapshot, type OrderLineItemAdjustment, OrderPaymentStatus, type OrderPromotion, OrderSource, OrderStatus, type PageData, PageType, type Payment, type PaymentCardBrand, PaymentCardBrandKey, type PaymentConversion, PaymentMethodType, type PaymentProviderAdapter, type PaymentProviderCaptureInput, type PaymentProviderCaptureOutput, type PaymentProviderContext, type PaymentProviderInitInput, type PaymentProviderInitOutput, type PaymentProviderKey, type PaymentProviderRefundInput, type PaymentProviderRefundOutput, type PaymentProviderWebhookResult, PaymentStatus, type Phone, type PickupLocation, type Product, type ProductAnalyticsData, type ProductAnalyticsItem, type ProductAttribute, type ProductAttributeOption, ProductAttributeStatus, ProductAttributeType, type ProductCategory, ProductCategoryStatus, ProductStatus, ProductType, type ProductVariant, ProductVariantStatus, type Promotion, type PromotionApplicationMethod, type PromotionApplicationMethodInput, type PromotionApplicationMethodPromotionRule, PromotionApplicationType, type PromotionListFilters, type PromotionPromotionRule, type PromotionRule, type PromotionRuleInput, PromotionRuleOperator, type PromotionRuleValue, PromotionStatus, PromotionTargetType, PromotionType, PubSubTopics, type RealtimeAnalytics, type RecentEvent, type RoundingConfig, RoundingMethod, RoundingRule, type SessionHeartbeatDto, type StandardCategory, StandardCategoryStatus, type StatusChangeHistory, type StatusFlow, type StoreBanner, StoreBannerStatus, type StoreCustomization, type StoreCustomizationComponentSettings, type StoreCustomizationLayoutComponent, type StoreCustomizationPage, type StoreCustomizationPageComponent, type StoreCustomizationSeo, type StoreCustomizationThemeButtons, type StoreCustomizationThemeColors, type StoreCustomizationThemeTypography, type StorePage, StorePageStatus, StorePageType, type StoreSettings, type StoreTemplate, type StoreTemplateMocks, type SupportConversation, SupportConversationChannel, type SupportConversationMessage, SupportConversationMessageAiAnalysisStatus, SupportConversationMessageDeliveryStatus, SupportConversationMessageDirection, SupportConversationMessageSenderType, SupportConversationPriority, SupportConversationStatus, SupportConversationVisibility, type ThemeConfig, type TopPagesData, type TrackEventDto, type TrackPageviewDto, TrafficSource, type TrafficSourceItem, type TrafficSourcesData, type UpdateAccountDeliveryOptionDTO, type UpdateAccountExchangeRateAllDto, type UpdateAccountExchangeRateDto, type UpdateExchangeRateDto, type UpdateFulfillmentDto, type UpdatePromotionDTO, type UpdateStoreTemplateDTO, type Webhook, type WebhookPayload, getAccountPaymentMethodStatusInfo, getCurrencySymbol, getFulfillmentStatusInfo, getIntegrationCategoryName, getOrderPaymentStatusInfo, getOrderStatusInfo, getPaymentCardBrand, getPaymentStatusInfo, getProductStatusInfo, parsePriceFormatPattern };
|