@01.software/sdk 0.1.4 → 0.1.6

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.
@@ -13,6 +13,7 @@ type SupportedTimezones = 'Pacific/Midway' | 'Pacific/Niue' | 'Pacific/Honolulu'
13
13
  interface Config {
14
14
  auth: {
15
15
  users: UserAuthOperations;
16
+ customers: CustomerAuthOperations;
16
17
  };
17
18
  blocks: {
18
19
  Player: PlayerBlock;
@@ -43,7 +44,17 @@ interface Config {
43
44
  'order-products': OrderProduct;
44
45
  returns: Return;
45
46
  'return-products': ReturnProduct;
47
+ exchanges: Exchange;
48
+ 'exchange-products': ExchangeProduct;
49
+ fulfillments: Fulfillment;
50
+ 'fulfillment-items': FulfillmentItem;
46
51
  transactions: Transaction;
52
+ customers: Customer;
53
+ 'customer-addresses': CustomerAddress;
54
+ carts: Cart;
55
+ 'cart-items': CartItem;
56
+ discounts: Discount;
57
+ 'shipping-policies': ShippingPolicy;
47
58
  posts: Post;
48
59
  'post-categories': PostCategory;
49
60
  'post-tags': PostTag;
@@ -76,10 +87,25 @@ interface Config {
76
87
  products: 'order-products';
77
88
  transactions: 'transactions';
78
89
  returns: 'returns';
90
+ exchanges: 'exchanges';
91
+ fulfillments: 'fulfillments';
79
92
  };
80
93
  returns: {
81
94
  returnProducts: 'return-products';
82
95
  };
96
+ exchanges: {
97
+ exchangeProducts: 'exchange-products';
98
+ };
99
+ fulfillments: {
100
+ items: 'fulfillment-items';
101
+ };
102
+ customers: {
103
+ orders: 'orders';
104
+ addresses: 'customer-addresses';
105
+ };
106
+ carts: {
107
+ items: 'cart-items';
108
+ };
83
109
  authors: {
84
110
  posts: 'posts';
85
111
  };
@@ -111,7 +137,17 @@ interface Config {
111
137
  'order-products': OrderProductsSelect<false> | OrderProductsSelect<true>;
112
138
  returns: ReturnsSelect<false> | ReturnsSelect<true>;
113
139
  'return-products': ReturnProductsSelect<false> | ReturnProductsSelect<true>;
140
+ exchanges: ExchangesSelect<false> | ExchangesSelect<true>;
141
+ 'exchange-products': ExchangeProductsSelect<false> | ExchangeProductsSelect<true>;
142
+ fulfillments: FulfillmentsSelect<false> | FulfillmentsSelect<true>;
143
+ 'fulfillment-items': FulfillmentItemsSelect<false> | FulfillmentItemsSelect<true>;
114
144
  transactions: TransactionsSelect<false> | TransactionsSelect<true>;
145
+ customers: CustomersSelect<false> | CustomersSelect<true>;
146
+ 'customer-addresses': CustomerAddressesSelect<false> | CustomerAddressesSelect<true>;
147
+ carts: CartsSelect<false> | CartsSelect<true>;
148
+ 'cart-items': CartItemsSelect<false> | CartItemsSelect<true>;
149
+ discounts: DiscountsSelect<false> | DiscountsSelect<true>;
150
+ 'shipping-policies': ShippingPoliciesSelect<false> | ShippingPoliciesSelect<true>;
115
151
  posts: PostsSelect<false> | PostsSelect<true>;
116
152
  'post-categories': PostCategoriesSelect<false> | PostCategoriesSelect<true>;
117
153
  'post-tags': PostTagsSelect<false> | PostTagsSelect<true>;
@@ -139,9 +175,7 @@ interface Config {
139
175
  globals: {};
140
176
  globalsSelect: {};
141
177
  locale: null;
142
- user: User & {
143
- collection: 'users';
144
- };
178
+ user: User | Customer;
145
179
  jobs: {
146
180
  tasks: unknown;
147
181
  workflows: unknown;
@@ -165,6 +199,24 @@ interface UserAuthOperations {
165
199
  password: string;
166
200
  };
167
201
  }
202
+ interface CustomerAuthOperations {
203
+ forgotPassword: {
204
+ email: string;
205
+ password: string;
206
+ };
207
+ login: {
208
+ email: string;
209
+ password: string;
210
+ };
211
+ registerFirstUser: {
212
+ email: string;
213
+ password: string;
214
+ };
215
+ unlock: {
216
+ email: string;
217
+ password: string;
218
+ };
219
+ }
168
220
  /**
169
221
  * This interface was referenced by `Config`'s JSON-Schema
170
222
  * via the `definition` "PlayerBlock".
@@ -206,7 +258,7 @@ interface CodeBlock {
206
258
  */
207
259
  interface User {
208
260
  id: number;
209
- roles: ('super-admin' | 'user' | 'customer')[];
261
+ roles: ('super-admin' | 'user')[];
210
262
  tenants?: {
211
263
  tenant: number | Tenant;
212
264
  roles: ('tenant-admin' | 'tenant-viewer')[];
@@ -232,6 +284,7 @@ interface User {
232
284
  expiresAt: string;
233
285
  }[] | null;
234
286
  password?: string | null;
287
+ collection: 'users';
235
288
  }
236
289
  /**
237
290
  * This interface was referenced by `Config`'s JSON-Schema
@@ -240,7 +293,13 @@ interface User {
240
293
  interface Tenant {
241
294
  id: number;
242
295
  name: string;
243
- domain?: string | null;
296
+ /**
297
+ * Allowed CORS origins for browser SDK requests. Empty = all origins allowed.
298
+ */
299
+ cors?: {
300
+ origin: string;
301
+ id?: string | null;
302
+ }[] | null;
244
303
  features?: ('ecommerce' | 'playlists' | 'links' | 'forms' | 'galleries' | 'posts' | 'documents')[] | null;
245
304
  plan: 'free' | 'starter' | 'basic' | 'pro' | 'enterprise';
246
305
  clientKey: string;
@@ -591,6 +650,16 @@ interface TenantOgImage {
591
650
  height?: number | null;
592
651
  focalX?: number | null;
593
652
  focalY?: number | null;
653
+ sizes?: {
654
+ '1200'?: {
655
+ url?: string | null;
656
+ width?: number | null;
657
+ height?: number | null;
658
+ mimeType?: string | null;
659
+ filesize?: number | null;
660
+ filename?: string | null;
661
+ };
662
+ };
594
663
  }
595
664
  /**
596
665
  * This interface was referenced by `Config`'s JSON-Schema
@@ -621,6 +690,64 @@ interface TenantLogo {
621
690
  height?: number | null;
622
691
  focalX?: number | null;
623
692
  focalY?: number | null;
693
+ sizes?: {
694
+ '16'?: {
695
+ url?: string | null;
696
+ width?: number | null;
697
+ height?: number | null;
698
+ mimeType?: string | null;
699
+ filesize?: number | null;
700
+ filename?: string | null;
701
+ };
702
+ '32'?: {
703
+ url?: string | null;
704
+ width?: number | null;
705
+ height?: number | null;
706
+ mimeType?: string | null;
707
+ filesize?: number | null;
708
+ filename?: string | null;
709
+ };
710
+ '64'?: {
711
+ url?: string | null;
712
+ width?: number | null;
713
+ height?: number | null;
714
+ mimeType?: string | null;
715
+ filesize?: number | null;
716
+ filename?: string | null;
717
+ };
718
+ '128'?: {
719
+ url?: string | null;
720
+ width?: number | null;
721
+ height?: number | null;
722
+ mimeType?: string | null;
723
+ filesize?: number | null;
724
+ filename?: string | null;
725
+ };
726
+ '180'?: {
727
+ url?: string | null;
728
+ width?: number | null;
729
+ height?: number | null;
730
+ mimeType?: string | null;
731
+ filesize?: number | null;
732
+ filename?: string | null;
733
+ };
734
+ '192'?: {
735
+ url?: string | null;
736
+ width?: number | null;
737
+ height?: number | null;
738
+ mimeType?: string | null;
739
+ filesize?: number | null;
740
+ filename?: string | null;
741
+ };
742
+ '512'?: {
743
+ url?: string | null;
744
+ width?: number | null;
745
+ height?: number | null;
746
+ mimeType?: string | null;
747
+ filesize?: number | null;
748
+ filename?: string | null;
749
+ };
750
+ };
624
751
  }
625
752
  /**
626
753
  * This interface was referenced by `Config`'s JSON-Schema
@@ -820,6 +947,10 @@ interface Product {
820
947
  categories?: (number | ProductCategory)[] | null;
821
948
  tags?: (number | ProductTag)[] | null;
822
949
  brand?: (number | null) | Brand;
950
+ shippingPolicy?: (number | null) | ShippingPolicy;
951
+ metadata?: {
952
+ [k: string]: unknown;
953
+ } | unknown[] | string | number | boolean | null;
823
954
  variants?: {
824
955
  docs?: (number | ProductVariant)[];
825
956
  hasNextPage?: boolean;
@@ -898,6 +1029,7 @@ interface ProductCategory {
898
1029
  description?: string | null;
899
1030
  image?: (number | null) | ProductImage;
900
1031
  parent?: (number | null) | ProductCategory;
1032
+ color?: string | null;
901
1033
  updatedAt: string;
902
1034
  createdAt: string;
903
1035
  }
@@ -917,6 +1049,8 @@ interface ProductTag {
917
1049
  slug?: string | null;
918
1050
  description?: string | null;
919
1051
  image?: (number | null) | ProductImage;
1052
+ parent?: (number | null) | ProductTag;
1053
+ color?: string | null;
920
1054
  updatedAt: string;
921
1055
  createdAt: string;
922
1056
  }
@@ -954,6 +1088,38 @@ interface Brand {
954
1088
  updatedAt: string;
955
1089
  createdAt: string;
956
1090
  }
1091
+ /**
1092
+ * This interface was referenced by `Config`'s JSON-Schema
1093
+ * via the `definition` "shipping-policies".
1094
+ */
1095
+ interface ShippingPolicy {
1096
+ id: number;
1097
+ _order?: string | null;
1098
+ tenant?: (number | null) | Tenant;
1099
+ /**
1100
+ * e.g. 기본 배송비, 대형 상품
1101
+ */
1102
+ title: string;
1103
+ /**
1104
+ * Base shipping fee
1105
+ */
1106
+ baseFee: number;
1107
+ /**
1108
+ * Free shipping above this amount (empty = no free shipping)
1109
+ */
1110
+ freeShippingThreshold?: number | null;
1111
+ /**
1112
+ * Extra fee for Jeju island
1113
+ */
1114
+ jejuExtraFee?: number | null;
1115
+ /**
1116
+ * Extra fee for remote islands
1117
+ */
1118
+ islandExtraFee?: number | null;
1119
+ isDefault?: boolean | null;
1120
+ updatedAt: string;
1121
+ createdAt: string;
1122
+ }
957
1123
  /**
958
1124
  * This interface was referenced by `Config`'s JSON-Schema
959
1125
  * via the `definition` "product-variants".
@@ -973,7 +1139,19 @@ interface ProductVariant {
973
1139
  * Override price (uses product price if empty)
974
1140
  */
975
1141
  price?: number | null;
1142
+ /**
1143
+ * Barcode (EAN, UPC, etc.)
1144
+ */
1145
+ barcode?: string | null;
1146
+ /**
1147
+ * Weight in grams (g)
1148
+ */
1149
+ weight?: number | null;
1150
+ isSoldOut?: boolean | null;
976
1151
  images?: (number | ProductImage)[] | null;
1152
+ metadata?: {
1153
+ [k: string]: unknown;
1154
+ } | unknown[] | string | number | boolean | null;
977
1155
  productOptions?: {
978
1156
  docs?: (number | ProductOption)[];
979
1157
  hasNextPage?: boolean;
@@ -1000,6 +1178,10 @@ interface ProductOption {
1000
1178
  */
1001
1179
  sku?: string | null;
1002
1180
  stock: number;
1181
+ /**
1182
+ * Reserved by carts (available = stock - reservedStock)
1183
+ */
1184
+ reservedStock?: number | null;
1003
1185
  /**
1004
1186
  * Price adjustment (add/subtract from base price)
1005
1187
  */
@@ -1016,14 +1198,18 @@ interface Order {
1016
1198
  tenant?: (number | null) | Tenant;
1017
1199
  orderNumber: string;
1018
1200
  status: 'pending' | 'paid' | 'failed' | 'canceled' | 'preparing' | 'shipped' | 'delivered' | 'confirmed' | 'return_requested' | 'return_processing' | 'returned';
1019
- customer?: {
1201
+ customer?: (number | null) | Customer;
1202
+ /**
1203
+ * Customer info at the time of order
1204
+ */
1205
+ customerSnapshot?: {
1020
1206
  name?: string | null;
1021
1207
  email?: string | null;
1022
1208
  phone?: string | null;
1023
1209
  };
1024
1210
  totalAmount?: number | null;
1025
- shippingCarrier?: ('cj' | 'hanjin' | 'lotte' | 'epost' | 'logen' | 'other') | null;
1026
- trackingNumber?: string | null;
1211
+ discountCode?: string | null;
1212
+ discountAmount?: number | null;
1027
1213
  /**
1028
1214
  * Internal notes (not visible to customers)
1029
1215
  */
@@ -1051,6 +1237,78 @@ interface Order {
1051
1237
  hasNextPage?: boolean;
1052
1238
  totalDocs?: number;
1053
1239
  };
1240
+ exchanges?: {
1241
+ docs?: (number | Exchange)[];
1242
+ hasNextPage?: boolean;
1243
+ totalDocs?: number;
1244
+ };
1245
+ fulfillments?: {
1246
+ docs?: (number | Fulfillment)[];
1247
+ hasNextPage?: boolean;
1248
+ totalDocs?: number;
1249
+ };
1250
+ updatedAt: string;
1251
+ createdAt: string;
1252
+ }
1253
+ /**
1254
+ * This interface was referenced by `Config`'s JSON-Schema
1255
+ * via the `definition` "customers".
1256
+ */
1257
+ interface Customer {
1258
+ id: number;
1259
+ tenant?: (number | null) | Tenant;
1260
+ name: string;
1261
+ email?: string | null;
1262
+ phone?: string | null;
1263
+ hashedPassword?: string | null;
1264
+ salt?: string | null;
1265
+ isGuest?: boolean | null;
1266
+ isVerified?: boolean | null;
1267
+ verificationToken?: string | null;
1268
+ resetPasswordToken?: string | null;
1269
+ resetPasswordExpiry?: string | null;
1270
+ loginAttempts?: number | null;
1271
+ lockedUntil?: string | null;
1272
+ /**
1273
+ * Internal notes (not visible to customers)
1274
+ */
1275
+ note?: string | null;
1276
+ metadata?: {
1277
+ [k: string]: unknown;
1278
+ } | unknown[] | string | number | boolean | null;
1279
+ orders?: {
1280
+ docs?: (number | Order)[];
1281
+ hasNextPage?: boolean;
1282
+ totalDocs?: number;
1283
+ };
1284
+ addresses?: {
1285
+ docs?: (number | CustomerAddress)[];
1286
+ hasNextPage?: boolean;
1287
+ totalDocs?: number;
1288
+ };
1289
+ updatedAt: string;
1290
+ createdAt: string;
1291
+ collection: 'customers';
1292
+ }
1293
+ /**
1294
+ * This interface was referenced by `Config`'s JSON-Schema
1295
+ * via the `definition` "customer-addresses".
1296
+ */
1297
+ interface CustomerAddress {
1298
+ id: number;
1299
+ tenant?: (number | null) | Tenant;
1300
+ customer: number | Customer;
1301
+ label?: string | null;
1302
+ recipientName?: string | null;
1303
+ phone?: string | null;
1304
+ postalCode?: string | null;
1305
+ address1?: string | null;
1306
+ address2?: string | null;
1307
+ isDefault?: boolean | null;
1308
+ /**
1309
+ * Default delivery message
1310
+ */
1311
+ deliveryMessage?: string | null;
1054
1312
  updatedAt: string;
1055
1313
  createdAt: string;
1056
1314
  }
@@ -1136,6 +1394,190 @@ interface ReturnProduct {
1136
1394
  updatedAt: string;
1137
1395
  createdAt: string;
1138
1396
  }
1397
+ /**
1398
+ * This interface was referenced by `Config`'s JSON-Schema
1399
+ * via the `definition` "exchanges".
1400
+ */
1401
+ interface Exchange {
1402
+ id: number;
1403
+ tenant?: (number | null) | Tenant;
1404
+ order: number | Order;
1405
+ status: 'requested' | 'processing' | 'shipped' | 'completed' | 'rejected';
1406
+ reason?: ('wrong_size' | 'wrong_color' | 'defective' | 'other') | null;
1407
+ /**
1408
+ * Detailed exchange reason
1409
+ */
1410
+ reasonDetail?: string | null;
1411
+ shippingFee?: number | null;
1412
+ exchangeProducts?: {
1413
+ docs?: (number | ExchangeProduct)[];
1414
+ hasNextPage?: boolean;
1415
+ totalDocs?: number;
1416
+ };
1417
+ updatedAt: string;
1418
+ createdAt: string;
1419
+ }
1420
+ /**
1421
+ * This interface was referenced by `Config`'s JSON-Schema
1422
+ * via the `definition` "exchange-products".
1423
+ */
1424
+ interface ExchangeProduct {
1425
+ id: number;
1426
+ tenant?: (number | null) | Tenant;
1427
+ exchange: number | Exchange;
1428
+ order: number | Order;
1429
+ orderProduct: number | OrderProduct;
1430
+ product: number | Product;
1431
+ variant?: (number | null) | ProductVariant;
1432
+ option?: (number | null) | ProductOption;
1433
+ quantity: number;
1434
+ /**
1435
+ * New variant to exchange to
1436
+ */
1437
+ newVariant?: (number | null) | ProductVariant;
1438
+ /**
1439
+ * New option to exchange to
1440
+ */
1441
+ newOption?: (number | null) | ProductOption;
1442
+ title?: string | null;
1443
+ updatedAt: string;
1444
+ createdAt: string;
1445
+ }
1446
+ /**
1447
+ * This interface was referenced by `Config`'s JSON-Schema
1448
+ * via the `definition` "fulfillments".
1449
+ */
1450
+ interface Fulfillment {
1451
+ id: number;
1452
+ tenant?: (number | null) | Tenant;
1453
+ order: number | Order;
1454
+ status: 'pending' | 'packed' | 'shipped' | 'delivered' | 'failed';
1455
+ carrier?: ('cj' | 'hanjin' | 'lotte' | 'epost' | 'logen' | 'other') | null;
1456
+ trackingNumber?: string | null;
1457
+ shippedAt?: string | null;
1458
+ deliveredAt?: string | null;
1459
+ items?: {
1460
+ docs?: (number | FulfillmentItem)[];
1461
+ hasNextPage?: boolean;
1462
+ totalDocs?: number;
1463
+ };
1464
+ updatedAt: string;
1465
+ createdAt: string;
1466
+ }
1467
+ /**
1468
+ * This interface was referenced by `Config`'s JSON-Schema
1469
+ * via the `definition` "fulfillment-items".
1470
+ */
1471
+ interface FulfillmentItem {
1472
+ id: number;
1473
+ tenant?: (number | null) | Tenant;
1474
+ fulfillment: number | Fulfillment;
1475
+ orderProduct: number | OrderProduct;
1476
+ quantity: number;
1477
+ updatedAt: string;
1478
+ createdAt: string;
1479
+ }
1480
+ /**
1481
+ * This interface was referenced by `Config`'s JSON-Schema
1482
+ * via the `definition` "carts".
1483
+ */
1484
+ interface Cart {
1485
+ id: number;
1486
+ tenant?: (number | null) | Tenant;
1487
+ customer?: (number | null) | Customer;
1488
+ status: 'active' | 'completed' | 'abandoned';
1489
+ shippingAddress?: {
1490
+ recipientName?: string | null;
1491
+ phone?: string | null;
1492
+ postalCode?: string | null;
1493
+ address1?: string | null;
1494
+ address2?: string | null;
1495
+ deliveryMessage?: string | null;
1496
+ };
1497
+ discountCode?: string | null;
1498
+ itemsTotal?: number | null;
1499
+ shippingFee?: number | null;
1500
+ discountAmount?: number | null;
1501
+ totalAmount?: number | null;
1502
+ items?: {
1503
+ docs?: (number | CartItem)[];
1504
+ hasNextPage?: boolean;
1505
+ totalDocs?: number;
1506
+ };
1507
+ expiresAt?: string | null;
1508
+ updatedAt: string;
1509
+ createdAt: string;
1510
+ }
1511
+ /**
1512
+ * This interface was referenced by `Config`'s JSON-Schema
1513
+ * via the `definition` "cart-items".
1514
+ */
1515
+ interface CartItem {
1516
+ id: number;
1517
+ tenant?: (number | null) | Tenant;
1518
+ cart: number | Cart;
1519
+ product: number | Product;
1520
+ variant?: (number | null) | ProductVariant;
1521
+ option?: (number | null) | ProductOption;
1522
+ quantity: number;
1523
+ /**
1524
+ * Price at the time of adding to cart
1525
+ */
1526
+ unitPrice: number;
1527
+ updatedAt: string;
1528
+ createdAt: string;
1529
+ }
1530
+ /**
1531
+ * This interface was referenced by `Config`'s JSON-Schema
1532
+ * via the `definition` "discounts".
1533
+ */
1534
+ interface Discount {
1535
+ id: number;
1536
+ tenant?: (number | null) | Tenant;
1537
+ /**
1538
+ * Unique discount code
1539
+ */
1540
+ code: string;
1541
+ /**
1542
+ * Internal name (e.g. 신규가입 10% 할인)
1543
+ */
1544
+ title: string;
1545
+ type: 'percentage' | 'fixed_amount' | 'free_shipping';
1546
+ /**
1547
+ * Discount rate (%) or fixed amount
1548
+ */
1549
+ value: number;
1550
+ /**
1551
+ * Minimum order amount to apply
1552
+ */
1553
+ minOrderAmount?: number | null;
1554
+ /**
1555
+ * Max discount for percentage type
1556
+ */
1557
+ maxDiscountAmount?: number | null;
1558
+ startsAt?: string | null;
1559
+ endsAt?: string | null;
1560
+ /**
1561
+ * Total usage limit (empty = unlimited)
1562
+ */
1563
+ usageLimit?: number | null;
1564
+ usageCount?: number | null;
1565
+ /**
1566
+ * Usage limit per customer (empty = unlimited)
1567
+ */
1568
+ perCustomerLimit?: number | null;
1569
+ isActive?: boolean | null;
1570
+ /**
1571
+ * Leave empty to apply to all products
1572
+ */
1573
+ applicableProducts?: (number | Product)[] | null;
1574
+ /**
1575
+ * Leave empty to apply to all categories
1576
+ */
1577
+ applicableCategories?: (number | ProductCategory)[] | null;
1578
+ updatedAt: string;
1579
+ createdAt: string;
1580
+ }
1139
1581
  /**
1140
1582
  * This interface was referenced by `Config`'s JSON-Schema
1141
1583
  * via the `definition` "posts".
@@ -1268,6 +1710,7 @@ interface PostCategory {
1268
1710
  description?: string | null;
1269
1711
  image?: (number | null) | PostImage;
1270
1712
  parent?: (number | null) | PostCategory;
1713
+ color?: string | null;
1271
1714
  updatedAt: string;
1272
1715
  createdAt: string;
1273
1716
  }
@@ -1287,6 +1730,8 @@ interface PostTag {
1287
1730
  slug?: string | null;
1288
1731
  description?: string | null;
1289
1732
  image?: (number | null) | PostImage;
1733
+ parent?: (number | null) | PostTag;
1734
+ color?: string | null;
1290
1735
  updatedAt: string;
1291
1736
  createdAt: string;
1292
1737
  }
@@ -1369,6 +1814,8 @@ interface DocumentCategory {
1369
1814
  slug?: string | null;
1370
1815
  description?: string | null;
1371
1816
  image?: (number | null) | DocumentImage;
1817
+ parent?: (number | null) | DocumentCategory;
1818
+ color?: string | null;
1372
1819
  updatedAt: string;
1373
1820
  createdAt: string;
1374
1821
  }
@@ -1854,9 +2301,39 @@ interface PayloadLockedDocument {
1854
2301
  } | null) | ({
1855
2302
  relationTo: 'return-products';
1856
2303
  value: number | ReturnProduct;
2304
+ } | null) | ({
2305
+ relationTo: 'exchanges';
2306
+ value: number | Exchange;
2307
+ } | null) | ({
2308
+ relationTo: 'exchange-products';
2309
+ value: number | ExchangeProduct;
2310
+ } | null) | ({
2311
+ relationTo: 'fulfillments';
2312
+ value: number | Fulfillment;
2313
+ } | null) | ({
2314
+ relationTo: 'fulfillment-items';
2315
+ value: number | FulfillmentItem;
1857
2316
  } | null) | ({
1858
2317
  relationTo: 'transactions';
1859
2318
  value: number | Transaction;
2319
+ } | null) | ({
2320
+ relationTo: 'customers';
2321
+ value: number | Customer;
2322
+ } | null) | ({
2323
+ relationTo: 'customer-addresses';
2324
+ value: number | CustomerAddress;
2325
+ } | null) | ({
2326
+ relationTo: 'carts';
2327
+ value: number | Cart;
2328
+ } | null) | ({
2329
+ relationTo: 'cart-items';
2330
+ value: number | CartItem;
2331
+ } | null) | ({
2332
+ relationTo: 'discounts';
2333
+ value: number | Discount;
2334
+ } | null) | ({
2335
+ relationTo: 'shipping-policies';
2336
+ value: number | ShippingPolicy;
1860
2337
  } | null) | ({
1861
2338
  relationTo: 'posts';
1862
2339
  value: number | Post;
@@ -1907,6 +2384,9 @@ interface PayloadLockedDocument {
1907
2384
  user: {
1908
2385
  relationTo: 'users';
1909
2386
  value: number | User;
2387
+ } | {
2388
+ relationTo: 'customers';
2389
+ value: number | Customer;
1910
2390
  };
1911
2391
  updatedAt: string;
1912
2392
  createdAt: string;
@@ -1920,6 +2400,9 @@ interface PayloadPreference {
1920
2400
  user: {
1921
2401
  relationTo: 'users';
1922
2402
  value: number | User;
2403
+ } | {
2404
+ relationTo: 'customers';
2405
+ value: number | Customer;
1923
2406
  };
1924
2407
  key?: string | null;
1925
2408
  value?: {
@@ -2029,7 +2512,10 @@ interface EmailLogsSelect<T extends boolean = true> {
2029
2512
  */
2030
2513
  interface TenantsSelect<T extends boolean = true> {
2031
2514
  name?: T;
2032
- domain?: T;
2515
+ cors?: T | {
2516
+ origin?: T;
2517
+ id?: T;
2518
+ };
2033
2519
  features?: T;
2034
2520
  plan?: T;
2035
2521
  clientKey?: T;
@@ -2126,6 +2612,64 @@ interface TenantLogosSelect<T extends boolean = true> {
2126
2612
  height?: T;
2127
2613
  focalX?: T;
2128
2614
  focalY?: T;
2615
+ sizes?: T | {
2616
+ '16'?: T | {
2617
+ url?: T;
2618
+ width?: T;
2619
+ height?: T;
2620
+ mimeType?: T;
2621
+ filesize?: T;
2622
+ filename?: T;
2623
+ };
2624
+ '32'?: T | {
2625
+ url?: T;
2626
+ width?: T;
2627
+ height?: T;
2628
+ mimeType?: T;
2629
+ filesize?: T;
2630
+ filename?: T;
2631
+ };
2632
+ '64'?: T | {
2633
+ url?: T;
2634
+ width?: T;
2635
+ height?: T;
2636
+ mimeType?: T;
2637
+ filesize?: T;
2638
+ filename?: T;
2639
+ };
2640
+ '128'?: T | {
2641
+ url?: T;
2642
+ width?: T;
2643
+ height?: T;
2644
+ mimeType?: T;
2645
+ filesize?: T;
2646
+ filename?: T;
2647
+ };
2648
+ '180'?: T | {
2649
+ url?: T;
2650
+ width?: T;
2651
+ height?: T;
2652
+ mimeType?: T;
2653
+ filesize?: T;
2654
+ filename?: T;
2655
+ };
2656
+ '192'?: T | {
2657
+ url?: T;
2658
+ width?: T;
2659
+ height?: T;
2660
+ mimeType?: T;
2661
+ filesize?: T;
2662
+ filename?: T;
2663
+ };
2664
+ '512'?: T | {
2665
+ url?: T;
2666
+ width?: T;
2667
+ height?: T;
2668
+ mimeType?: T;
2669
+ filesize?: T;
2670
+ filename?: T;
2671
+ };
2672
+ };
2129
2673
  }
2130
2674
  /**
2131
2675
  * This interface was referenced by `Config`'s JSON-Schema
@@ -2155,6 +2699,16 @@ interface TenantOgImagesSelect<T extends boolean = true> {
2155
2699
  height?: T;
2156
2700
  focalX?: T;
2157
2701
  focalY?: T;
2702
+ sizes?: T | {
2703
+ '1200'?: T | {
2704
+ url?: T;
2705
+ width?: T;
2706
+ height?: T;
2707
+ mimeType?: T;
2708
+ filesize?: T;
2709
+ filename?: T;
2710
+ };
2711
+ };
2158
2712
  }
2159
2713
  /**
2160
2714
  * This interface was referenced by `Config`'s JSON-Schema
@@ -2260,6 +2814,8 @@ interface ProductsSelect<T extends boolean = true> {
2260
2814
  categories?: T;
2261
2815
  tags?: T;
2262
2816
  brand?: T;
2817
+ shippingPolicy?: T;
2818
+ metadata?: T;
2263
2819
  variants?: T;
2264
2820
  options?: T;
2265
2821
  updatedAt?: T;
@@ -2277,7 +2833,11 @@ interface ProductVariantsSelect<T extends boolean = true> {
2277
2833
  title?: T;
2278
2834
  sku?: T;
2279
2835
  price?: T;
2836
+ barcode?: T;
2837
+ weight?: T;
2838
+ isSoldOut?: T;
2280
2839
  images?: T;
2840
+ metadata?: T;
2281
2841
  productOptions?: T;
2282
2842
  updatedAt?: T;
2283
2843
  createdAt?: T;
@@ -2296,6 +2856,7 @@ interface ProductOptionsSelect<T extends boolean = true> {
2296
2856
  title?: T;
2297
2857
  sku?: T;
2298
2858
  stock?: T;
2859
+ reservedStock?: T;
2299
2860
  priceAdjustment?: T;
2300
2861
  updatedAt?: T;
2301
2862
  createdAt?: T;
@@ -2313,6 +2874,7 @@ interface ProductCategoriesSelect<T extends boolean = true> {
2313
2874
  description?: T;
2314
2875
  image?: T;
2315
2876
  parent?: T;
2877
+ color?: T;
2316
2878
  updatedAt?: T;
2317
2879
  createdAt?: T;
2318
2880
  }
@@ -2328,6 +2890,8 @@ interface ProductTagsSelect<T extends boolean = true> {
2328
2890
  slug?: T;
2329
2891
  description?: T;
2330
2892
  image?: T;
2893
+ parent?: T;
2894
+ color?: T;
2331
2895
  updatedAt?: T;
2332
2896
  createdAt?: T;
2333
2897
  }
@@ -2491,14 +3055,15 @@ interface OrdersSelect<T extends boolean = true> {
2491
3055
  tenant?: T;
2492
3056
  orderNumber?: T;
2493
3057
  status?: T;
2494
- customer?: T | {
3058
+ customer?: T;
3059
+ customerSnapshot?: T | {
2495
3060
  name?: T;
2496
3061
  email?: T;
2497
3062
  phone?: T;
2498
3063
  };
2499
3064
  totalAmount?: T;
2500
- shippingCarrier?: T;
2501
- trackingNumber?: T;
3065
+ discountCode?: T;
3066
+ discountAmount?: T;
2502
3067
  notes?: T;
2503
3068
  shippingAddress?: T | {
2504
3069
  recipientName?: T;
@@ -2511,6 +3076,8 @@ interface OrdersSelect<T extends boolean = true> {
2511
3076
  products?: T;
2512
3077
  transactions?: T;
2513
3078
  returns?: T;
3079
+ exchanges?: T;
3080
+ fulfillments?: T;
2514
3081
  updatedAt?: T;
2515
3082
  createdAt?: T;
2516
3083
  }
@@ -2564,6 +3131,68 @@ interface ReturnProductsSelect<T extends boolean = true> {
2564
3131
  updatedAt?: T;
2565
3132
  createdAt?: T;
2566
3133
  }
3134
+ /**
3135
+ * This interface was referenced by `Config`'s JSON-Schema
3136
+ * via the `definition` "exchanges_select".
3137
+ */
3138
+ interface ExchangesSelect<T extends boolean = true> {
3139
+ tenant?: T;
3140
+ order?: T;
3141
+ status?: T;
3142
+ reason?: T;
3143
+ reasonDetail?: T;
3144
+ shippingFee?: T;
3145
+ exchangeProducts?: T;
3146
+ updatedAt?: T;
3147
+ createdAt?: T;
3148
+ }
3149
+ /**
3150
+ * This interface was referenced by `Config`'s JSON-Schema
3151
+ * via the `definition` "exchange-products_select".
3152
+ */
3153
+ interface ExchangeProductsSelect<T extends boolean = true> {
3154
+ tenant?: T;
3155
+ exchange?: T;
3156
+ order?: T;
3157
+ orderProduct?: T;
3158
+ product?: T;
3159
+ variant?: T;
3160
+ option?: T;
3161
+ quantity?: T;
3162
+ newVariant?: T;
3163
+ newOption?: T;
3164
+ title?: T;
3165
+ updatedAt?: T;
3166
+ createdAt?: T;
3167
+ }
3168
+ /**
3169
+ * This interface was referenced by `Config`'s JSON-Schema
3170
+ * via the `definition` "fulfillments_select".
3171
+ */
3172
+ interface FulfillmentsSelect<T extends boolean = true> {
3173
+ tenant?: T;
3174
+ order?: T;
3175
+ status?: T;
3176
+ carrier?: T;
3177
+ trackingNumber?: T;
3178
+ shippedAt?: T;
3179
+ deliveredAt?: T;
3180
+ items?: T;
3181
+ updatedAt?: T;
3182
+ createdAt?: T;
3183
+ }
3184
+ /**
3185
+ * This interface was referenced by `Config`'s JSON-Schema
3186
+ * via the `definition` "fulfillment-items_select".
3187
+ */
3188
+ interface FulfillmentItemsSelect<T extends boolean = true> {
3189
+ tenant?: T;
3190
+ fulfillment?: T;
3191
+ orderProduct?: T;
3192
+ quantity?: T;
3193
+ updatedAt?: T;
3194
+ createdAt?: T;
3195
+ }
2567
3196
  /**
2568
3197
  * This interface was referenced by `Config`'s JSON-Schema
2569
3198
  * via the `definition` "transactions_select".
@@ -2579,6 +3208,129 @@ interface TransactionsSelect<T extends boolean = true> {
2579
3208
  updatedAt?: T;
2580
3209
  createdAt?: T;
2581
3210
  }
3211
+ /**
3212
+ * This interface was referenced by `Config`'s JSON-Schema
3213
+ * via the `definition` "customers_select".
3214
+ */
3215
+ interface CustomersSelect<T extends boolean = true> {
3216
+ tenant?: T;
3217
+ name?: T;
3218
+ email?: T;
3219
+ phone?: T;
3220
+ hashedPassword?: T;
3221
+ salt?: T;
3222
+ isGuest?: T;
3223
+ isVerified?: T;
3224
+ verificationToken?: T;
3225
+ resetPasswordToken?: T;
3226
+ resetPasswordExpiry?: T;
3227
+ loginAttempts?: T;
3228
+ lockedUntil?: T;
3229
+ note?: T;
3230
+ metadata?: T;
3231
+ orders?: T;
3232
+ addresses?: T;
3233
+ updatedAt?: T;
3234
+ createdAt?: T;
3235
+ }
3236
+ /**
3237
+ * This interface was referenced by `Config`'s JSON-Schema
3238
+ * via the `definition` "customer-addresses_select".
3239
+ */
3240
+ interface CustomerAddressesSelect<T extends boolean = true> {
3241
+ tenant?: T;
3242
+ customer?: T;
3243
+ label?: T;
3244
+ recipientName?: T;
3245
+ phone?: T;
3246
+ postalCode?: T;
3247
+ address1?: T;
3248
+ address2?: T;
3249
+ isDefault?: T;
3250
+ deliveryMessage?: T;
3251
+ updatedAt?: T;
3252
+ createdAt?: T;
3253
+ }
3254
+ /**
3255
+ * This interface was referenced by `Config`'s JSON-Schema
3256
+ * via the `definition` "carts_select".
3257
+ */
3258
+ interface CartsSelect<T extends boolean = true> {
3259
+ tenant?: T;
3260
+ customer?: T;
3261
+ status?: T;
3262
+ shippingAddress?: T | {
3263
+ recipientName?: T;
3264
+ phone?: T;
3265
+ postalCode?: T;
3266
+ address1?: T;
3267
+ address2?: T;
3268
+ deliveryMessage?: T;
3269
+ };
3270
+ discountCode?: T;
3271
+ itemsTotal?: T;
3272
+ shippingFee?: T;
3273
+ discountAmount?: T;
3274
+ totalAmount?: T;
3275
+ items?: T;
3276
+ expiresAt?: T;
3277
+ updatedAt?: T;
3278
+ createdAt?: T;
3279
+ }
3280
+ /**
3281
+ * This interface was referenced by `Config`'s JSON-Schema
3282
+ * via the `definition` "cart-items_select".
3283
+ */
3284
+ interface CartItemsSelect<T extends boolean = true> {
3285
+ tenant?: T;
3286
+ cart?: T;
3287
+ product?: T;
3288
+ variant?: T;
3289
+ option?: T;
3290
+ quantity?: T;
3291
+ unitPrice?: T;
3292
+ updatedAt?: T;
3293
+ createdAt?: T;
3294
+ }
3295
+ /**
3296
+ * This interface was referenced by `Config`'s JSON-Schema
3297
+ * via the `definition` "discounts_select".
3298
+ */
3299
+ interface DiscountsSelect<T extends boolean = true> {
3300
+ tenant?: T;
3301
+ code?: T;
3302
+ title?: T;
3303
+ type?: T;
3304
+ value?: T;
3305
+ minOrderAmount?: T;
3306
+ maxDiscountAmount?: T;
3307
+ startsAt?: T;
3308
+ endsAt?: T;
3309
+ usageLimit?: T;
3310
+ usageCount?: T;
3311
+ perCustomerLimit?: T;
3312
+ isActive?: T;
3313
+ applicableProducts?: T;
3314
+ applicableCategories?: T;
3315
+ updatedAt?: T;
3316
+ createdAt?: T;
3317
+ }
3318
+ /**
3319
+ * This interface was referenced by `Config`'s JSON-Schema
3320
+ * via the `definition` "shipping-policies_select".
3321
+ */
3322
+ interface ShippingPoliciesSelect<T extends boolean = true> {
3323
+ _order?: T;
3324
+ tenant?: T;
3325
+ title?: T;
3326
+ baseFee?: T;
3327
+ freeShippingThreshold?: T;
3328
+ jejuExtraFee?: T;
3329
+ islandExtraFee?: T;
3330
+ isDefault?: T;
3331
+ updatedAt?: T;
3332
+ createdAt?: T;
3333
+ }
2582
3334
  /**
2583
3335
  * This interface was referenced by `Config`'s JSON-Schema
2584
3336
  * via the `definition` "posts_select".
@@ -2614,6 +3366,7 @@ interface PostCategoriesSelect<T extends boolean = true> {
2614
3366
  description?: T;
2615
3367
  image?: T;
2616
3368
  parent?: T;
3369
+ color?: T;
2617
3370
  updatedAt?: T;
2618
3371
  createdAt?: T;
2619
3372
  }
@@ -2629,6 +3382,8 @@ interface PostTagsSelect<T extends boolean = true> {
2629
3382
  slug?: T;
2630
3383
  description?: T;
2631
3384
  image?: T;
3385
+ parent?: T;
3386
+ color?: T;
2632
3387
  updatedAt?: T;
2633
3388
  createdAt?: T;
2634
3389
  }
@@ -2734,6 +3489,8 @@ interface DocumentCategoriesSelect<T extends boolean = true> {
2734
3489
  slug?: T;
2735
3490
  description?: T;
2736
3491
  image?: T;
3492
+ parent?: T;
3493
+ color?: T;
2737
3494
  updatedAt?: T;
2738
3495
  createdAt?: T;
2739
3496
  }
@@ -3105,4 +3862,4 @@ declare module 'payload' {
3105
3862
  }
3106
3863
  }
3107
3864
 
3108
- export type { TenantsSelect as $, Audience as A, BrandLogo as B, Config as C, Document as D, EmailLog as E, PlaylistImage as F, Music as G, Gallery as H, IframeBlock as I, GalleryImage as J, Form as K, FormSubmission as L, Media as M, PayloadKv as N, Order as O, ProductOption as P, PayloadLockedDocument as Q, Return as R, SupportedTimezones as S, Transaction as T, UserAuthOperations as U, PayloadPreference as V, PayloadMigration as W, UsersSelect as X, MediaSelect as Y, AudiencesSelect as Z, EmailLogsSelect as _, OrderProduct as a, TenantMetadataSelect as a0, TenantLogosSelect as a1, TenantOgImagesSelect as a2, ApiUsageSelect as a3, SubscriptionsSelect as a4, BillingHistorySelect as a5, ProductsSelect as a6, ProductVariantsSelect as a7, ProductOptionsSelect as a8, ProductCategoriesSelect as a9, PayloadPreferencesSelect as aA, PayloadMigrationsSelect as aB, Auth as aC, ProductTagsSelect as aa, ProductImagesSelect as ab, BrandsSelect as ac, BrandLogosSelect as ad, OrdersSelect as ae, OrderProductsSelect as af, ReturnsSelect as ag, ReturnProductsSelect as ah, TransactionsSelect as ai, PostsSelect as aj, PostCategoriesSelect as ak, PostTagsSelect as al, PostImagesSelect as am, AuthorsSelect as an, DocumentsSelect as ao, DocumentCategoriesSelect as ap, DocumentImagesSelect as aq, PlaylistsSelect as ar, PlaylistImagesSelect as as, MusicsSelect as at, GalleriesSelect as au, GalleryImagesSelect as av, FormsSelect as aw, FormSubmissionsSelect as ax, PayloadKvSelect as ay, PayloadLockedDocumentsSelect as az, PlayerBlock as b, CodeBlock as c, User as d, Tenant as e, TenantMetadatum as f, TenantOgImage as g, TenantLogo as h, ApiUsage as i, Subscription as j, BillingHistory as k, Product as l, ProductImage as m, ProductCategory as n, ProductTag as o, Brand as p, ProductVariant as q, ReturnProduct as r, Post as s, PostImage as t, Author as u, PostCategory as v, PostTag as w, DocumentCategory as x, DocumentImage as y, Playlist as z };
3865
+ export type { GalleryImage as $, Audience as A, BrandLogo as B, CartItem as C, Cart as D, EmailLog as E, Fulfillment as F, Discount as G, Post as H, IframeBlock as I, PostImage as J, Author as K, PostCategory as L, Media as M, PostTag as N, Order as O, ProductOption as P, Document as Q, Return as R, SupportedTimezones as S, Transaction as T, UserAuthOperations as U, DocumentCategory as V, DocumentImage as W, Playlist as X, PlaylistImage as Y, Music as Z, Gallery as _, OrderProduct as a, Form as a0, FormSubmission as a1, PayloadKv as a2, PayloadLockedDocument as a3, PayloadPreference as a4, PayloadMigration as a5, UsersSelect as a6, MediaSelect as a7, AudiencesSelect as a8, EmailLogsSelect as a9, CartsSelect as aA, CartItemsSelect as aB, DiscountsSelect as aC, ShippingPoliciesSelect as aD, PostsSelect as aE, PostCategoriesSelect as aF, PostTagsSelect as aG, PostImagesSelect as aH, AuthorsSelect as aI, DocumentsSelect as aJ, DocumentCategoriesSelect as aK, DocumentImagesSelect as aL, PlaylistsSelect as aM, PlaylistImagesSelect as aN, MusicsSelect as aO, GalleriesSelect as aP, GalleryImagesSelect as aQ, FormsSelect as aR, FormSubmissionsSelect as aS, PayloadKvSelect as aT, PayloadLockedDocumentsSelect as aU, PayloadPreferencesSelect as aV, PayloadMigrationsSelect as aW, Auth as aX, TenantsSelect as aa, TenantMetadataSelect as ab, TenantLogosSelect as ac, TenantOgImagesSelect as ad, ApiUsageSelect as ae, SubscriptionsSelect as af, BillingHistorySelect as ag, ProductsSelect as ah, ProductVariantsSelect as ai, ProductOptionsSelect as aj, ProductCategoriesSelect as ak, ProductTagsSelect as al, ProductImagesSelect as am, BrandsSelect as an, BrandLogosSelect as ao, OrdersSelect as ap, OrderProductsSelect as aq, ReturnsSelect as ar, ReturnProductsSelect as as, ExchangesSelect as at, ExchangeProductsSelect as au, FulfillmentsSelect as av, FulfillmentItemsSelect as aw, TransactionsSelect as ax, CustomersSelect as ay, CustomerAddressesSelect as az, Config as b, CustomerAuthOperations as c, PlayerBlock as d, CodeBlock as e, User as f, Tenant as g, TenantMetadatum as h, TenantOgImage as i, TenantLogo as j, ApiUsage as k, Subscription as l, BillingHistory as m, Product as n, ProductImage as o, ProductCategory as p, ProductTag as q, Brand as r, ShippingPolicy as s, ProductVariant as t, Customer as u, CustomerAddress as v, ReturnProduct as w, Exchange as x, ExchangeProduct as y, FulfillmentItem as z };