@retaila/shared-types 1.1.110 → 1.1.112
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 +375 -5
- package/dist/index.d.ts +375 -5
- package/dist/index.js +19 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +16 -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
|
|
|
@@ -2059,23 +2061,59 @@ interface NavigationMenuConfig {
|
|
|
2059
2061
|
items: NavigationMenuItem[];
|
|
2060
2062
|
autoFallback?: boolean;
|
|
2061
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
|
+
}
|
|
2062
2093
|
interface StoreCustomization {
|
|
2063
2094
|
id: string;
|
|
2064
2095
|
accountId: string;
|
|
2065
|
-
layout:
|
|
2066
|
-
components: StoreCustomizationLayoutComponent[];
|
|
2067
|
-
};
|
|
2096
|
+
layout: StoreCustomizationLayout | StoreCustomizationLayoutLegacy;
|
|
2068
2097
|
pages: StoreCustomizationPage[];
|
|
2069
2098
|
theme: {
|
|
2070
2099
|
colors: StoreCustomizationThemeColors;
|
|
2071
2100
|
typography: StoreCustomizationThemeTypography;
|
|
2072
2101
|
buttons: StoreCustomizationThemeButtons;
|
|
2102
|
+
designTokens?: DesignTokens;
|
|
2073
2103
|
};
|
|
2074
2104
|
seo: StoreCustomizationSeo;
|
|
2075
2105
|
createdAt: Date;
|
|
2076
2106
|
updatedAt: Date;
|
|
2077
2107
|
deletedAt?: Date | null;
|
|
2078
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;
|
|
2079
2117
|
interface StoreCustomizationLayoutComponent {
|
|
2080
2118
|
id: string;
|
|
2081
2119
|
type: string;
|
|
@@ -2128,19 +2166,251 @@ interface ButtonStyle {
|
|
|
2128
2166
|
backgroundColor: string;
|
|
2129
2167
|
textColor: string;
|
|
2130
2168
|
borderColor: string;
|
|
2131
|
-
|
|
2169
|
+
/** Number (legacy) or CSS string e.g. "6px 6px 6px 6px" */
|
|
2170
|
+
borderRadius: number | string;
|
|
2132
2171
|
shadow: string;
|
|
2133
2172
|
hoverBackgroundColor: string;
|
|
2134
2173
|
hoverTextColor: string;
|
|
2135
2174
|
hoverBorderColor: string;
|
|
2136
2175
|
hoverEffect: string;
|
|
2137
2176
|
}
|
|
2177
|
+
interface LinkButtonStyle extends ButtonStyle {
|
|
2178
|
+
textDecoration?: string;
|
|
2179
|
+
hoverTextDecoration?: string;
|
|
2180
|
+
}
|
|
2138
2181
|
interface StoreCustomizationThemeButtons {
|
|
2139
2182
|
primary: ButtonStyle;
|
|
2140
2183
|
secondary: ButtonStyle;
|
|
2184
|
+
outline: ButtonStyle;
|
|
2185
|
+
link: LinkButtonStyle;
|
|
2141
2186
|
success: ButtonStyle;
|
|
2187
|
+
warning: ButtonStyle;
|
|
2142
2188
|
danger: ButtonStyle;
|
|
2143
2189
|
}
|
|
2190
|
+
/**
|
|
2191
|
+
* Variante de color con sus estados
|
|
2192
|
+
*/
|
|
2193
|
+
interface ColorVariant {
|
|
2194
|
+
default: string;
|
|
2195
|
+
light: string;
|
|
2196
|
+
dark: string;
|
|
2197
|
+
contrast: string;
|
|
2198
|
+
}
|
|
2199
|
+
/**
|
|
2200
|
+
* Escala de colores neutrales (50-900)
|
|
2201
|
+
*/
|
|
2202
|
+
interface NeutralColorScale {
|
|
2203
|
+
50: string;
|
|
2204
|
+
100: string;
|
|
2205
|
+
200: string;
|
|
2206
|
+
300: string;
|
|
2207
|
+
400: string;
|
|
2208
|
+
500: string;
|
|
2209
|
+
600: string;
|
|
2210
|
+
700: string;
|
|
2211
|
+
800: string;
|
|
2212
|
+
900: string;
|
|
2213
|
+
}
|
|
2214
|
+
/**
|
|
2215
|
+
* Colores de superficie (fondos)
|
|
2216
|
+
*/
|
|
2217
|
+
interface SurfaceColors {
|
|
2218
|
+
background: string;
|
|
2219
|
+
card: string;
|
|
2220
|
+
overlay: string;
|
|
2221
|
+
}
|
|
2222
|
+
/**
|
|
2223
|
+
* Paleta de colores completa del theme
|
|
2224
|
+
*/
|
|
2225
|
+
interface ThemeColorPalette {
|
|
2226
|
+
primary: ColorVariant;
|
|
2227
|
+
secondary: ColorVariant;
|
|
2228
|
+
accent: ColorVariant;
|
|
2229
|
+
neutral: NeutralColorScale;
|
|
2230
|
+
success: ColorVariant;
|
|
2231
|
+
warning: ColorVariant;
|
|
2232
|
+
error: ColorVariant;
|
|
2233
|
+
info: ColorVariant;
|
|
2234
|
+
surface: SurfaceColors;
|
|
2235
|
+
}
|
|
2236
|
+
/**
|
|
2237
|
+
* Estilo de tipografía predefinido
|
|
2238
|
+
*/
|
|
2239
|
+
interface TypographyStyle {
|
|
2240
|
+
size: string;
|
|
2241
|
+
weight: string;
|
|
2242
|
+
lineHeight: number;
|
|
2243
|
+
letterSpacing?: string;
|
|
2244
|
+
}
|
|
2245
|
+
/**
|
|
2246
|
+
* Estilos de tipografía disponibles
|
|
2247
|
+
*/
|
|
2248
|
+
interface ThemeTypographyStyles {
|
|
2249
|
+
display: TypographyStyle;
|
|
2250
|
+
'heading-1': TypographyStyle;
|
|
2251
|
+
'heading-2': TypographyStyle;
|
|
2252
|
+
'heading-3': TypographyStyle;
|
|
2253
|
+
'heading-4': TypographyStyle;
|
|
2254
|
+
'body-large': TypographyStyle;
|
|
2255
|
+
body: TypographyStyle;
|
|
2256
|
+
'body-small': TypographyStyle;
|
|
2257
|
+
caption: TypographyStyle;
|
|
2258
|
+
label: TypographyStyle;
|
|
2259
|
+
}
|
|
2260
|
+
/**
|
|
2261
|
+
* Escala de tamaños de tipografía
|
|
2262
|
+
*/
|
|
2263
|
+
interface ThemeTypographySizes {
|
|
2264
|
+
xs: string;
|
|
2265
|
+
sm: string;
|
|
2266
|
+
base: string;
|
|
2267
|
+
lg: string;
|
|
2268
|
+
xl: string;
|
|
2269
|
+
'2xl': string;
|
|
2270
|
+
'3xl': string;
|
|
2271
|
+
'4xl': string;
|
|
2272
|
+
'5xl': string;
|
|
2273
|
+
}
|
|
2274
|
+
/**
|
|
2275
|
+
* Fuentes del theme
|
|
2276
|
+
*/
|
|
2277
|
+
interface ThemeFonts {
|
|
2278
|
+
heading: string;
|
|
2279
|
+
body: string;
|
|
2280
|
+
}
|
|
2281
|
+
/**
|
|
2282
|
+
* Configuración completa de tipografía
|
|
2283
|
+
*/
|
|
2284
|
+
interface ThemeTypography {
|
|
2285
|
+
styles: ThemeTypographyStyles;
|
|
2286
|
+
sizes: ThemeTypographySizes;
|
|
2287
|
+
fonts: ThemeFonts;
|
|
2288
|
+
}
|
|
2289
|
+
/**
|
|
2290
|
+
* Estilo de variante de botón
|
|
2291
|
+
*/
|
|
2292
|
+
interface ThemeButtonVariant {
|
|
2293
|
+
background: string;
|
|
2294
|
+
text: string;
|
|
2295
|
+
border: string;
|
|
2296
|
+
hoverBackground: string;
|
|
2297
|
+
hoverText?: string;
|
|
2298
|
+
hoverBorder?: string;
|
|
2299
|
+
}
|
|
2300
|
+
/**
|
|
2301
|
+
* Tamaño de botón
|
|
2302
|
+
*/
|
|
2303
|
+
interface ThemeButtonSize {
|
|
2304
|
+
padding: string;
|
|
2305
|
+
fontSize: string;
|
|
2306
|
+
borderRadius: string;
|
|
2307
|
+
}
|
|
2308
|
+
/**
|
|
2309
|
+
* Variantes de botones disponibles
|
|
2310
|
+
*/
|
|
2311
|
+
interface ThemeButtonVariants {
|
|
2312
|
+
primary: ThemeButtonVariant;
|
|
2313
|
+
secondary: ThemeButtonVariant;
|
|
2314
|
+
outline: ThemeButtonVariant;
|
|
2315
|
+
ghost: ThemeButtonVariant;
|
|
2316
|
+
danger: ThemeButtonVariant;
|
|
2317
|
+
success: ThemeButtonVariant;
|
|
2318
|
+
}
|
|
2319
|
+
/**
|
|
2320
|
+
* Tamaños de botones disponibles
|
|
2321
|
+
*/
|
|
2322
|
+
interface ThemeButtonSizes {
|
|
2323
|
+
sm: ThemeButtonSize;
|
|
2324
|
+
md: ThemeButtonSize;
|
|
2325
|
+
lg: ThemeButtonSize;
|
|
2326
|
+
}
|
|
2327
|
+
/**
|
|
2328
|
+
* Configuración completa de botones
|
|
2329
|
+
*/
|
|
2330
|
+
interface ThemeButtons {
|
|
2331
|
+
variants: ThemeButtonVariants;
|
|
2332
|
+
sizes: ThemeButtonSizes;
|
|
2333
|
+
}
|
|
2334
|
+
/**
|
|
2335
|
+
* Escala de espaciado
|
|
2336
|
+
*/
|
|
2337
|
+
interface ThemeSpacing {
|
|
2338
|
+
none: string;
|
|
2339
|
+
xs: string;
|
|
2340
|
+
sm: string;
|
|
2341
|
+
md: string;
|
|
2342
|
+
lg: string;
|
|
2343
|
+
xl: string;
|
|
2344
|
+
'2xl': string;
|
|
2345
|
+
'3xl': string;
|
|
2346
|
+
'4xl': string;
|
|
2347
|
+
}
|
|
2348
|
+
/**
|
|
2349
|
+
* Escala de border radius
|
|
2350
|
+
*/
|
|
2351
|
+
interface ThemeBorderRadius {
|
|
2352
|
+
none: string;
|
|
2353
|
+
sm: string;
|
|
2354
|
+
md: string;
|
|
2355
|
+
lg: string;
|
|
2356
|
+
xl: string;
|
|
2357
|
+
'2xl': string;
|
|
2358
|
+
full: string;
|
|
2359
|
+
}
|
|
2360
|
+
/**
|
|
2361
|
+
* Escala de border width
|
|
2362
|
+
*/
|
|
2363
|
+
interface ThemeBorderWidth {
|
|
2364
|
+
none: string;
|
|
2365
|
+
thin: string;
|
|
2366
|
+
medium: string;
|
|
2367
|
+
thick: string;
|
|
2368
|
+
}
|
|
2369
|
+
/**
|
|
2370
|
+
* Configuración completa de bordes
|
|
2371
|
+
*/
|
|
2372
|
+
interface ThemeBorders {
|
|
2373
|
+
radius: ThemeBorderRadius;
|
|
2374
|
+
width: ThemeBorderWidth;
|
|
2375
|
+
}
|
|
2376
|
+
/**
|
|
2377
|
+
* Escala de sombras
|
|
2378
|
+
*/
|
|
2379
|
+
interface ThemeShadows {
|
|
2380
|
+
none: string;
|
|
2381
|
+
sm: string;
|
|
2382
|
+
md: string;
|
|
2383
|
+
lg: string;
|
|
2384
|
+
xl: string;
|
|
2385
|
+
}
|
|
2386
|
+
/**
|
|
2387
|
+
* Configuración de Product Cards
|
|
2388
|
+
*/
|
|
2389
|
+
interface ThemeProductCard {
|
|
2390
|
+
borderRadius: string;
|
|
2391
|
+
shadow: string;
|
|
2392
|
+
padding: string;
|
|
2393
|
+
imageAspectRatio: string;
|
|
2394
|
+
showBorder: boolean;
|
|
2395
|
+
borderColor: string;
|
|
2396
|
+
hoverEffect: string;
|
|
2397
|
+
titleSize: string;
|
|
2398
|
+
titleWeight: string;
|
|
2399
|
+
priceSize: string;
|
|
2400
|
+
priceWeight: string;
|
|
2401
|
+
}
|
|
2402
|
+
/**
|
|
2403
|
+
* Design Tokens completo
|
|
2404
|
+
*/
|
|
2405
|
+
interface DesignTokens {
|
|
2406
|
+
colors: ThemeColorPalette;
|
|
2407
|
+
typography: ThemeTypography;
|
|
2408
|
+
buttons: ThemeButtons;
|
|
2409
|
+
spacing: ThemeSpacing;
|
|
2410
|
+
borders: ThemeBorders;
|
|
2411
|
+
shadows: ThemeShadows;
|
|
2412
|
+
productCard: ThemeProductCard;
|
|
2413
|
+
}
|
|
2144
2414
|
interface StoreCustomizationSeo {
|
|
2145
2415
|
pageTitle: string;
|
|
2146
2416
|
pageSlogan: string;
|
|
@@ -2353,6 +2623,16 @@ interface StoreSettings {
|
|
|
2353
2623
|
instagram?: string;
|
|
2354
2624
|
facebook?: string;
|
|
2355
2625
|
address?: string;
|
|
2626
|
+
shippingPolicies?: {
|
|
2627
|
+
shortText: string;
|
|
2628
|
+
mediumText: string;
|
|
2629
|
+
fullContent: string;
|
|
2630
|
+
} | string;
|
|
2631
|
+
returnsPolicies?: {
|
|
2632
|
+
shortText: string;
|
|
2633
|
+
mediumText: string;
|
|
2634
|
+
fullContent: string;
|
|
2635
|
+
} | string;
|
|
2356
2636
|
createdAt: Date;
|
|
2357
2637
|
updatedAt: Date;
|
|
2358
2638
|
deletedAt?: Date;
|
|
@@ -2397,6 +2677,34 @@ interface UpdateStoreTemplateDTO {
|
|
|
2397
2677
|
isActive?: boolean;
|
|
2398
2678
|
}
|
|
2399
2679
|
|
|
2680
|
+
interface StoreComponentTemplate {
|
|
2681
|
+
id: string;
|
|
2682
|
+
componentType: string;
|
|
2683
|
+
name: string;
|
|
2684
|
+
description?: string;
|
|
2685
|
+
image?: string;
|
|
2686
|
+
config: Record<string, any>;
|
|
2687
|
+
isActive: boolean;
|
|
2688
|
+
createdAt: Date;
|
|
2689
|
+
updatedAt: Date;
|
|
2690
|
+
}
|
|
2691
|
+
interface CreateStoreComponentTemplateDTO {
|
|
2692
|
+
componentType: string;
|
|
2693
|
+
name: string;
|
|
2694
|
+
description?: string;
|
|
2695
|
+
image?: string;
|
|
2696
|
+
config: Record<string, any>;
|
|
2697
|
+
isActive?: boolean;
|
|
2698
|
+
}
|
|
2699
|
+
interface UpdateStoreComponentTemplateDTO {
|
|
2700
|
+
componentType?: string;
|
|
2701
|
+
name?: string;
|
|
2702
|
+
description?: string;
|
|
2703
|
+
image?: string;
|
|
2704
|
+
config?: Record<string, any>;
|
|
2705
|
+
isActive?: boolean;
|
|
2706
|
+
}
|
|
2707
|
+
|
|
2400
2708
|
/**
|
|
2401
2709
|
* Traffic source types
|
|
2402
2710
|
*/
|
|
@@ -2773,4 +3081,66 @@ interface AnalyticsPagination {
|
|
|
2773
3081
|
total: number;
|
|
2774
3082
|
}
|
|
2775
3083
|
|
|
2776
|
-
|
|
3084
|
+
/**
|
|
3085
|
+
* RBAC (Role-Based Access Control) Types
|
|
3086
|
+
*/
|
|
3087
|
+
interface Permission {
|
|
3088
|
+
id: string;
|
|
3089
|
+
key: string;
|
|
3090
|
+
description?: string;
|
|
3091
|
+
groupName?: string;
|
|
3092
|
+
createdAt: Date | string;
|
|
3093
|
+
updatedAt: Date | string;
|
|
3094
|
+
}
|
|
3095
|
+
interface Role {
|
|
3096
|
+
id: string;
|
|
3097
|
+
accountId: string | null;
|
|
3098
|
+
name: string;
|
|
3099
|
+
description?: string;
|
|
3100
|
+
permissions?: Permission[];
|
|
3101
|
+
createdAt: Date | string;
|
|
3102
|
+
updatedAt: Date | string;
|
|
3103
|
+
deletedAt?: Date | string | null;
|
|
3104
|
+
}
|
|
3105
|
+
interface RolePermissionLink {
|
|
3106
|
+
roleId: string;
|
|
3107
|
+
permissionId: string;
|
|
3108
|
+
accountId: string;
|
|
3109
|
+
}
|
|
3110
|
+
interface AccountUserRoleLink {
|
|
3111
|
+
accountUserId: string;
|
|
3112
|
+
roleId: string;
|
|
3113
|
+
accountId: string;
|
|
3114
|
+
}
|
|
3115
|
+
interface CreateRoleDTO {
|
|
3116
|
+
name: string;
|
|
3117
|
+
description?: string;
|
|
3118
|
+
permissionIds: string[];
|
|
3119
|
+
}
|
|
3120
|
+
interface UpdateRoleDTO {
|
|
3121
|
+
name?: string;
|
|
3122
|
+
description?: string;
|
|
3123
|
+
permissionIds?: string[];
|
|
3124
|
+
}
|
|
3125
|
+
|
|
3126
|
+
declare enum InternalNotificationType {
|
|
3127
|
+
ORDER_PLACED_SELLER = "ORDER_PLACED_SELLER",
|
|
3128
|
+
CONTACT_FORM_SUBMITTED = "CONTACT_FORM_SUBMITTED"
|
|
3129
|
+
}
|
|
3130
|
+
interface InternalNotificationConfig {
|
|
3131
|
+
id: string;
|
|
3132
|
+
accountId: string;
|
|
3133
|
+
notificationType: InternalNotificationType;
|
|
3134
|
+
enabled: boolean;
|
|
3135
|
+
recipientUserIds: string[] | null;
|
|
3136
|
+
recipientEmails: string[] | null;
|
|
3137
|
+
createdAt: Date;
|
|
3138
|
+
updatedAt: Date;
|
|
3139
|
+
}
|
|
3140
|
+
interface UpdateNotificationSettingsDTO {
|
|
3141
|
+
enabled?: boolean;
|
|
3142
|
+
recipientUserIds?: string[];
|
|
3143
|
+
recipientEmails?: string[];
|
|
3144
|
+
}
|
|
3145
|
+
|
|
3146
|
+
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 };
|