@retaila/shared-types 1.1.109 → 1.1.111
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 +400 -4
- package/dist/index.d.ts +400 -4
- package/dist/index.js +32 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +28 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -513,6 +513,7 @@ interface Customer {
|
|
|
513
513
|
lastName?: string;
|
|
514
514
|
email: string;
|
|
515
515
|
phone?: Phone;
|
|
516
|
+
newsletter: boolean;
|
|
516
517
|
status: CustomerStatus;
|
|
517
518
|
createdAt: Date;
|
|
518
519
|
updatedAt: Date;
|
|
@@ -534,6 +535,7 @@ interface CustomerUpsertDto {
|
|
|
534
535
|
firstName?: string;
|
|
535
536
|
lastName?: string;
|
|
536
537
|
email: string;
|
|
538
|
+
newsletter?: boolean;
|
|
537
539
|
phone?: Phone;
|
|
538
540
|
}
|
|
539
541
|
|
|
@@ -2032,23 +2034,86 @@ declare function getFulfillmentStatusInfo(status: FulfillmentStatus): StatusInfo
|
|
|
2032
2034
|
* Configuración de la tienda
|
|
2033
2035
|
*/
|
|
2034
2036
|
|
|
2037
|
+
/**
|
|
2038
|
+
* Tipos para la navegación personalizable del menú
|
|
2039
|
+
*/
|
|
2040
|
+
declare enum NavigationItemType {
|
|
2041
|
+
HOME = "HOME",
|
|
2042
|
+
CATALOG = "CATALOG",
|
|
2043
|
+
CATEGORY = "CATEGORY",
|
|
2044
|
+
COLLECTION = "COLLECTION",
|
|
2045
|
+
PAGE = "PAGE",
|
|
2046
|
+
CUSTOM = "CUSTOM"
|
|
2047
|
+
}
|
|
2048
|
+
interface NavigationMenuItem {
|
|
2049
|
+
id: string;
|
|
2050
|
+
label: string;
|
|
2051
|
+
itemType: NavigationItemType;
|
|
2052
|
+
referenceId?: string;
|
|
2053
|
+
customUrl?: string;
|
|
2054
|
+
order: number;
|
|
2055
|
+
includeChildren?: boolean;
|
|
2056
|
+
highlight?: boolean;
|
|
2057
|
+
highlightColor?: string;
|
|
2058
|
+
openInNewTab?: boolean;
|
|
2059
|
+
}
|
|
2060
|
+
interface NavigationMenuConfig {
|
|
2061
|
+
items: NavigationMenuItem[];
|
|
2062
|
+
autoFallback?: boolean;
|
|
2063
|
+
}
|
|
2064
|
+
/**
|
|
2065
|
+
* Zona del Header: componentes antes y después del header principal
|
|
2066
|
+
*/
|
|
2067
|
+
interface StoreCustomizationHeaderZone {
|
|
2068
|
+
header: StoreCustomizationLayoutComponent;
|
|
2069
|
+
preComponents: StoreCustomizationLayoutComponent[];
|
|
2070
|
+
postComponents: StoreCustomizationLayoutComponent[];
|
|
2071
|
+
}
|
|
2072
|
+
/**
|
|
2073
|
+
* Zona del Footer: componentes antes y después del footer principal
|
|
2074
|
+
*/
|
|
2075
|
+
interface StoreCustomizationFooterZone {
|
|
2076
|
+
footer: StoreCustomizationLayoutComponent;
|
|
2077
|
+
preComponents: StoreCustomizationLayoutComponent[];
|
|
2078
|
+
postComponents: StoreCustomizationLayoutComponent[];
|
|
2079
|
+
}
|
|
2080
|
+
/**
|
|
2081
|
+
* Nueva estructura de layout con zonas
|
|
2082
|
+
*/
|
|
2083
|
+
interface StoreCustomizationLayout {
|
|
2084
|
+
headerZone: StoreCustomizationHeaderZone;
|
|
2085
|
+
footerZone: StoreCustomizationFooterZone;
|
|
2086
|
+
}
|
|
2087
|
+
/**
|
|
2088
|
+
* Estructura legacy de layout (para retrocompatibilidad)
|
|
2089
|
+
*/
|
|
2090
|
+
interface StoreCustomizationLayoutLegacy {
|
|
2091
|
+
components: StoreCustomizationLayoutComponent[];
|
|
2092
|
+
}
|
|
2035
2093
|
interface StoreCustomization {
|
|
2036
2094
|
id: string;
|
|
2037
2095
|
accountId: string;
|
|
2038
|
-
layout:
|
|
2039
|
-
components: StoreCustomizationLayoutComponent[];
|
|
2040
|
-
};
|
|
2096
|
+
layout: StoreCustomizationLayout | StoreCustomizationLayoutLegacy;
|
|
2041
2097
|
pages: StoreCustomizationPage[];
|
|
2042
2098
|
theme: {
|
|
2043
2099
|
colors: StoreCustomizationThemeColors;
|
|
2044
2100
|
typography: StoreCustomizationThemeTypography;
|
|
2045
2101
|
buttons: StoreCustomizationThemeButtons;
|
|
2102
|
+
designTokens?: DesignTokens;
|
|
2046
2103
|
};
|
|
2047
2104
|
seo: StoreCustomizationSeo;
|
|
2048
2105
|
createdAt: Date;
|
|
2049
2106
|
updatedAt: Date;
|
|
2050
2107
|
deletedAt?: Date | null;
|
|
2051
2108
|
}
|
|
2109
|
+
/**
|
|
2110
|
+
* Type guard para verificar si el layout es legacy
|
|
2111
|
+
*/
|
|
2112
|
+
declare function isLegacyLayout(layout: StoreCustomizationLayout | StoreCustomizationLayoutLegacy): layout is StoreCustomizationLayoutLegacy;
|
|
2113
|
+
/**
|
|
2114
|
+
* Type guard para verificar si el layout es el nuevo formato con zonas
|
|
2115
|
+
*/
|
|
2116
|
+
declare function isZonedLayout(layout: StoreCustomizationLayout | StoreCustomizationLayoutLegacy): layout is StoreCustomizationLayout;
|
|
2052
2117
|
interface StoreCustomizationLayoutComponent {
|
|
2053
2118
|
id: string;
|
|
2054
2119
|
type: string;
|
|
@@ -2108,12 +2173,243 @@ interface ButtonStyle {
|
|
|
2108
2173
|
hoverBorderColor: string;
|
|
2109
2174
|
hoverEffect: string;
|
|
2110
2175
|
}
|
|
2176
|
+
interface LinkButtonStyle extends ButtonStyle {
|
|
2177
|
+
textDecoration?: string;
|
|
2178
|
+
hoverTextDecoration?: string;
|
|
2179
|
+
}
|
|
2111
2180
|
interface StoreCustomizationThemeButtons {
|
|
2112
2181
|
primary: ButtonStyle;
|
|
2113
2182
|
secondary: ButtonStyle;
|
|
2183
|
+
outline: ButtonStyle;
|
|
2184
|
+
link: LinkButtonStyle;
|
|
2114
2185
|
success: ButtonStyle;
|
|
2186
|
+
warning: ButtonStyle;
|
|
2115
2187
|
danger: ButtonStyle;
|
|
2116
2188
|
}
|
|
2189
|
+
/**
|
|
2190
|
+
* Variante de color con sus estados
|
|
2191
|
+
*/
|
|
2192
|
+
interface ColorVariant {
|
|
2193
|
+
default: string;
|
|
2194
|
+
light: string;
|
|
2195
|
+
dark: string;
|
|
2196
|
+
contrast: string;
|
|
2197
|
+
}
|
|
2198
|
+
/**
|
|
2199
|
+
* Escala de colores neutrales (50-900)
|
|
2200
|
+
*/
|
|
2201
|
+
interface NeutralColorScale {
|
|
2202
|
+
50: string;
|
|
2203
|
+
100: string;
|
|
2204
|
+
200: string;
|
|
2205
|
+
300: string;
|
|
2206
|
+
400: string;
|
|
2207
|
+
500: string;
|
|
2208
|
+
600: string;
|
|
2209
|
+
700: string;
|
|
2210
|
+
800: string;
|
|
2211
|
+
900: string;
|
|
2212
|
+
}
|
|
2213
|
+
/**
|
|
2214
|
+
* Colores de superficie (fondos)
|
|
2215
|
+
*/
|
|
2216
|
+
interface SurfaceColors {
|
|
2217
|
+
background: string;
|
|
2218
|
+
card: string;
|
|
2219
|
+
overlay: string;
|
|
2220
|
+
}
|
|
2221
|
+
/**
|
|
2222
|
+
* Paleta de colores completa del theme
|
|
2223
|
+
*/
|
|
2224
|
+
interface ThemeColorPalette {
|
|
2225
|
+
primary: ColorVariant;
|
|
2226
|
+
secondary: ColorVariant;
|
|
2227
|
+
accent: ColorVariant;
|
|
2228
|
+
neutral: NeutralColorScale;
|
|
2229
|
+
success: ColorVariant;
|
|
2230
|
+
warning: ColorVariant;
|
|
2231
|
+
error: ColorVariant;
|
|
2232
|
+
info: ColorVariant;
|
|
2233
|
+
surface: SurfaceColors;
|
|
2234
|
+
}
|
|
2235
|
+
/**
|
|
2236
|
+
* Estilo de tipografía predefinido
|
|
2237
|
+
*/
|
|
2238
|
+
interface TypographyStyle {
|
|
2239
|
+
size: string;
|
|
2240
|
+
weight: string;
|
|
2241
|
+
lineHeight: number;
|
|
2242
|
+
letterSpacing?: string;
|
|
2243
|
+
}
|
|
2244
|
+
/**
|
|
2245
|
+
* Estilos de tipografía disponibles
|
|
2246
|
+
*/
|
|
2247
|
+
interface ThemeTypographyStyles {
|
|
2248
|
+
display: TypographyStyle;
|
|
2249
|
+
'heading-1': TypographyStyle;
|
|
2250
|
+
'heading-2': TypographyStyle;
|
|
2251
|
+
'heading-3': TypographyStyle;
|
|
2252
|
+
'heading-4': TypographyStyle;
|
|
2253
|
+
'body-large': TypographyStyle;
|
|
2254
|
+
body: TypographyStyle;
|
|
2255
|
+
'body-small': TypographyStyle;
|
|
2256
|
+
caption: TypographyStyle;
|
|
2257
|
+
label: TypographyStyle;
|
|
2258
|
+
}
|
|
2259
|
+
/**
|
|
2260
|
+
* Escala de tamaños de tipografía
|
|
2261
|
+
*/
|
|
2262
|
+
interface ThemeTypographySizes {
|
|
2263
|
+
xs: string;
|
|
2264
|
+
sm: string;
|
|
2265
|
+
base: string;
|
|
2266
|
+
lg: string;
|
|
2267
|
+
xl: string;
|
|
2268
|
+
'2xl': string;
|
|
2269
|
+
'3xl': string;
|
|
2270
|
+
'4xl': string;
|
|
2271
|
+
'5xl': string;
|
|
2272
|
+
}
|
|
2273
|
+
/**
|
|
2274
|
+
* Fuentes del theme
|
|
2275
|
+
*/
|
|
2276
|
+
interface ThemeFonts {
|
|
2277
|
+
heading: string;
|
|
2278
|
+
body: string;
|
|
2279
|
+
}
|
|
2280
|
+
/**
|
|
2281
|
+
* Configuración completa de tipografía
|
|
2282
|
+
*/
|
|
2283
|
+
interface ThemeTypography {
|
|
2284
|
+
styles: ThemeTypographyStyles;
|
|
2285
|
+
sizes: ThemeTypographySizes;
|
|
2286
|
+
fonts: ThemeFonts;
|
|
2287
|
+
}
|
|
2288
|
+
/**
|
|
2289
|
+
* Estilo de variante de botón
|
|
2290
|
+
*/
|
|
2291
|
+
interface ThemeButtonVariant {
|
|
2292
|
+
background: string;
|
|
2293
|
+
text: string;
|
|
2294
|
+
border: string;
|
|
2295
|
+
hoverBackground: string;
|
|
2296
|
+
hoverText?: string;
|
|
2297
|
+
hoverBorder?: string;
|
|
2298
|
+
}
|
|
2299
|
+
/**
|
|
2300
|
+
* Tamaño de botón
|
|
2301
|
+
*/
|
|
2302
|
+
interface ThemeButtonSize {
|
|
2303
|
+
padding: string;
|
|
2304
|
+
fontSize: string;
|
|
2305
|
+
borderRadius: string;
|
|
2306
|
+
}
|
|
2307
|
+
/**
|
|
2308
|
+
* Variantes de botones disponibles
|
|
2309
|
+
*/
|
|
2310
|
+
interface ThemeButtonVariants {
|
|
2311
|
+
primary: ThemeButtonVariant;
|
|
2312
|
+
secondary: ThemeButtonVariant;
|
|
2313
|
+
outline: ThemeButtonVariant;
|
|
2314
|
+
ghost: ThemeButtonVariant;
|
|
2315
|
+
danger: ThemeButtonVariant;
|
|
2316
|
+
success: ThemeButtonVariant;
|
|
2317
|
+
}
|
|
2318
|
+
/**
|
|
2319
|
+
* Tamaños de botones disponibles
|
|
2320
|
+
*/
|
|
2321
|
+
interface ThemeButtonSizes {
|
|
2322
|
+
sm: ThemeButtonSize;
|
|
2323
|
+
md: ThemeButtonSize;
|
|
2324
|
+
lg: ThemeButtonSize;
|
|
2325
|
+
}
|
|
2326
|
+
/**
|
|
2327
|
+
* Configuración completa de botones
|
|
2328
|
+
*/
|
|
2329
|
+
interface ThemeButtons {
|
|
2330
|
+
variants: ThemeButtonVariants;
|
|
2331
|
+
sizes: ThemeButtonSizes;
|
|
2332
|
+
}
|
|
2333
|
+
/**
|
|
2334
|
+
* Escala de espaciado
|
|
2335
|
+
*/
|
|
2336
|
+
interface ThemeSpacing {
|
|
2337
|
+
none: string;
|
|
2338
|
+
xs: string;
|
|
2339
|
+
sm: string;
|
|
2340
|
+
md: string;
|
|
2341
|
+
lg: string;
|
|
2342
|
+
xl: string;
|
|
2343
|
+
'2xl': string;
|
|
2344
|
+
'3xl': string;
|
|
2345
|
+
'4xl': string;
|
|
2346
|
+
}
|
|
2347
|
+
/**
|
|
2348
|
+
* Escala de border radius
|
|
2349
|
+
*/
|
|
2350
|
+
interface ThemeBorderRadius {
|
|
2351
|
+
none: string;
|
|
2352
|
+
sm: string;
|
|
2353
|
+
md: string;
|
|
2354
|
+
lg: string;
|
|
2355
|
+
xl: string;
|
|
2356
|
+
'2xl': string;
|
|
2357
|
+
full: string;
|
|
2358
|
+
}
|
|
2359
|
+
/**
|
|
2360
|
+
* Escala de border width
|
|
2361
|
+
*/
|
|
2362
|
+
interface ThemeBorderWidth {
|
|
2363
|
+
none: string;
|
|
2364
|
+
thin: string;
|
|
2365
|
+
medium: string;
|
|
2366
|
+
thick: string;
|
|
2367
|
+
}
|
|
2368
|
+
/**
|
|
2369
|
+
* Configuración completa de bordes
|
|
2370
|
+
*/
|
|
2371
|
+
interface ThemeBorders {
|
|
2372
|
+
radius: ThemeBorderRadius;
|
|
2373
|
+
width: ThemeBorderWidth;
|
|
2374
|
+
}
|
|
2375
|
+
/**
|
|
2376
|
+
* Escala de sombras
|
|
2377
|
+
*/
|
|
2378
|
+
interface ThemeShadows {
|
|
2379
|
+
none: string;
|
|
2380
|
+
sm: string;
|
|
2381
|
+
md: string;
|
|
2382
|
+
lg: string;
|
|
2383
|
+
xl: string;
|
|
2384
|
+
}
|
|
2385
|
+
/**
|
|
2386
|
+
* Configuración de Product Cards
|
|
2387
|
+
*/
|
|
2388
|
+
interface ThemeProductCard {
|
|
2389
|
+
borderRadius: string;
|
|
2390
|
+
shadow: string;
|
|
2391
|
+
padding: string;
|
|
2392
|
+
imageAspectRatio: string;
|
|
2393
|
+
showBorder: boolean;
|
|
2394
|
+
borderColor: string;
|
|
2395
|
+
hoverEffect: string;
|
|
2396
|
+
titleSize: string;
|
|
2397
|
+
titleWeight: string;
|
|
2398
|
+
priceSize: string;
|
|
2399
|
+
priceWeight: string;
|
|
2400
|
+
}
|
|
2401
|
+
/**
|
|
2402
|
+
* Design Tokens completo
|
|
2403
|
+
*/
|
|
2404
|
+
interface DesignTokens {
|
|
2405
|
+
colors: ThemeColorPalette;
|
|
2406
|
+
typography: ThemeTypography;
|
|
2407
|
+
buttons: ThemeButtons;
|
|
2408
|
+
spacing: ThemeSpacing;
|
|
2409
|
+
borders: ThemeBorders;
|
|
2410
|
+
shadows: ThemeShadows;
|
|
2411
|
+
productCard: ThemeProductCard;
|
|
2412
|
+
}
|
|
2117
2413
|
interface StoreCustomizationSeo {
|
|
2118
2414
|
pageTitle: string;
|
|
2119
2415
|
pageSlogan: string;
|
|
@@ -2326,6 +2622,16 @@ interface StoreSettings {
|
|
|
2326
2622
|
instagram?: string;
|
|
2327
2623
|
facebook?: string;
|
|
2328
2624
|
address?: string;
|
|
2625
|
+
shippingPolicies?: {
|
|
2626
|
+
shortText: string;
|
|
2627
|
+
mediumText: string;
|
|
2628
|
+
fullContent: string;
|
|
2629
|
+
} | string;
|
|
2630
|
+
returnsPolicies?: {
|
|
2631
|
+
shortText: string;
|
|
2632
|
+
mediumText: string;
|
|
2633
|
+
fullContent: string;
|
|
2634
|
+
} | string;
|
|
2329
2635
|
createdAt: Date;
|
|
2330
2636
|
updatedAt: Date;
|
|
2331
2637
|
deletedAt?: Date;
|
|
@@ -2370,6 +2676,34 @@ interface UpdateStoreTemplateDTO {
|
|
|
2370
2676
|
isActive?: boolean;
|
|
2371
2677
|
}
|
|
2372
2678
|
|
|
2679
|
+
interface StoreComponentTemplate {
|
|
2680
|
+
id: string;
|
|
2681
|
+
componentType: string;
|
|
2682
|
+
name: string;
|
|
2683
|
+
description?: string;
|
|
2684
|
+
image?: string;
|
|
2685
|
+
config: Record<string, any>;
|
|
2686
|
+
isActive: boolean;
|
|
2687
|
+
createdAt: Date;
|
|
2688
|
+
updatedAt: Date;
|
|
2689
|
+
}
|
|
2690
|
+
interface CreateStoreComponentTemplateDTO {
|
|
2691
|
+
componentType: string;
|
|
2692
|
+
name: string;
|
|
2693
|
+
description?: string;
|
|
2694
|
+
image?: string;
|
|
2695
|
+
config: Record<string, any>;
|
|
2696
|
+
isActive?: boolean;
|
|
2697
|
+
}
|
|
2698
|
+
interface UpdateStoreComponentTemplateDTO {
|
|
2699
|
+
componentType?: string;
|
|
2700
|
+
name?: string;
|
|
2701
|
+
description?: string;
|
|
2702
|
+
image?: string;
|
|
2703
|
+
config?: Record<string, any>;
|
|
2704
|
+
isActive?: boolean;
|
|
2705
|
+
}
|
|
2706
|
+
|
|
2373
2707
|
/**
|
|
2374
2708
|
* Traffic source types
|
|
2375
2709
|
*/
|
|
@@ -2746,4 +3080,66 @@ interface AnalyticsPagination {
|
|
|
2746
3080
|
total: number;
|
|
2747
3081
|
}
|
|
2748
3082
|
|
|
2749
|
-
|
|
3083
|
+
/**
|
|
3084
|
+
* RBAC (Role-Based Access Control) Types
|
|
3085
|
+
*/
|
|
3086
|
+
interface Permission {
|
|
3087
|
+
id: string;
|
|
3088
|
+
key: string;
|
|
3089
|
+
description?: string;
|
|
3090
|
+
groupName?: string;
|
|
3091
|
+
createdAt: Date | string;
|
|
3092
|
+
updatedAt: Date | string;
|
|
3093
|
+
}
|
|
3094
|
+
interface Role {
|
|
3095
|
+
id: string;
|
|
3096
|
+
accountId: string | null;
|
|
3097
|
+
name: string;
|
|
3098
|
+
description?: string;
|
|
3099
|
+
permissions?: Permission[];
|
|
3100
|
+
createdAt: Date | string;
|
|
3101
|
+
updatedAt: Date | string;
|
|
3102
|
+
deletedAt?: Date | string | null;
|
|
3103
|
+
}
|
|
3104
|
+
interface RolePermissionLink {
|
|
3105
|
+
roleId: string;
|
|
3106
|
+
permissionId: string;
|
|
3107
|
+
accountId: string;
|
|
3108
|
+
}
|
|
3109
|
+
interface AccountUserRoleLink {
|
|
3110
|
+
accountUserId: string;
|
|
3111
|
+
roleId: string;
|
|
3112
|
+
accountId: string;
|
|
3113
|
+
}
|
|
3114
|
+
interface CreateRoleDTO {
|
|
3115
|
+
name: string;
|
|
3116
|
+
description?: string;
|
|
3117
|
+
permissionIds: string[];
|
|
3118
|
+
}
|
|
3119
|
+
interface UpdateRoleDTO {
|
|
3120
|
+
name?: string;
|
|
3121
|
+
description?: string;
|
|
3122
|
+
permissionIds?: string[];
|
|
3123
|
+
}
|
|
3124
|
+
|
|
3125
|
+
declare enum InternalNotificationType {
|
|
3126
|
+
ORDER_PLACED_SELLER = "ORDER_PLACED_SELLER",
|
|
3127
|
+
CONTACT_FORM_SUBMITTED = "CONTACT_FORM_SUBMITTED"
|
|
3128
|
+
}
|
|
3129
|
+
interface InternalNotificationConfig {
|
|
3130
|
+
id: string;
|
|
3131
|
+
accountId: string;
|
|
3132
|
+
notificationType: InternalNotificationType;
|
|
3133
|
+
enabled: boolean;
|
|
3134
|
+
recipientUserIds: string[] | null;
|
|
3135
|
+
recipientEmails: string[] | null;
|
|
3136
|
+
createdAt: Date;
|
|
3137
|
+
updatedAt: Date;
|
|
3138
|
+
}
|
|
3139
|
+
interface UpdateNotificationSettingsDTO {
|
|
3140
|
+
enabled?: boolean;
|
|
3141
|
+
recipientUserIds?: string[];
|
|
3142
|
+
recipientEmails?: string[];
|
|
3143
|
+
}
|
|
3144
|
+
|
|
3145
|
+
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 AccountUserRoleLink, 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 Collection, type CollectionMedia, type CollectionProductLink, type CollectionRule, CollectionRuleField, CollectionRuleFieldLabels, CollectionRuleOperator, CollectionRuleOperatorLabels, CollectionRulesLogic, CollectionStatus, CollectionStatusLabels, CollectionType, CollectionTypeLabels, type ColorVariant, type CreateAccountDeliveryOptionDTO, type CreateAccountExchangeRateDto, type CreateAnalyticsSessionDto, type CreateCollectionDTO, type CreateDeliveryOptionDto, type CreateExchangeRateDto, type CreateFulfillmentDto, type CreateFulfillmentItemDto, type CreatePromotionDTO, type CreateRoleDTO, type CreateStoreComponentTemplateDTO, type CreateStoreTemplateDTO, Currency, type CurrencyConversion, type Customer, CustomerStatus, type CustomerUpsertDto, DayOfWeek, DeliveryType, type DeliveryZoneInput, type DesignTokens, 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 InternalNotificationConfig, InternalNotificationType, type LinkButtonStyle, type MapPosition, type Media, MediaType, NavigationItemType, type NavigationMenuConfig, type NavigationMenuItem, type NeutralColorScale, 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 Permission, 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 Role, type RolePermissionLink, type RoundingConfig, RoundingMethod, RoundingRule, type SessionHeartbeatDto, type StandardCategory, StandardCategoryStatus, type StatusChangeHistory, type StatusFlow, type StoreBanner, StoreBannerStatus, type StoreComponentTemplate, type StoreCustomization, type StoreCustomizationComponentSettings, type StoreCustomizationFooterZone, type StoreCustomizationHeaderZone, type StoreCustomizationLayout, type StoreCustomizationLayoutComponent, type StoreCustomizationLayoutLegacy, 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 SurfaceColors, type ThemeBorderRadius, type ThemeBorderWidth, type ThemeBorders, type ThemeButtonSize, type ThemeButtonSizes, type ThemeButtonVariant, type ThemeButtonVariants, type ThemeButtons, type ThemeColorPalette, type ThemeConfig, type ThemeFonts, type ThemeProductCard, type ThemeShadows, type ThemeSpacing, type ThemeTypography, type ThemeTypographySizes, type ThemeTypographyStyles, type TopPagesData, type TrackEventDto, type TrackPageviewDto, TrafficSource, type TrafficSourceItem, type TrafficSourcesData, type TypographyStyle, type UpdateAccountDeliveryOptionDTO, type UpdateAccountExchangeRateAllDto, type UpdateAccountExchangeRateDto, type UpdateCollectionDTO, type UpdateExchangeRateDto, type UpdateFulfillmentDto, type UpdateNotificationSettingsDTO, type UpdatePromotionDTO, type UpdateRoleDTO, type UpdateStoreComponentTemplateDTO, type UpdateStoreTemplateDTO, type Webhook, type WebhookPayload, getAccountPaymentMethodStatusInfo, getCurrencySymbol, getFulfillmentStatusInfo, getIntegrationCategoryName, getOrderPaymentStatusInfo, getOrderStatusInfo, getPaymentCardBrand, getPaymentStatusInfo, getProductStatusInfo, isLegacyLayout, isZonedLayout, parsePriceFormatPattern };
|