@01.software/sdk 0.41.0 → 0.42.0
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/CHANGELOG.md +222 -0
- package/README.md +81 -18
- package/dist/analytics/react.cjs +71 -3
- package/dist/analytics/react.cjs.map +1 -1
- package/dist/analytics/react.d.cts +18 -2
- package/dist/analytics/react.d.ts +18 -2
- package/dist/analytics/react.js +67 -3
- package/dist/analytics/react.js.map +1 -1
- package/dist/analytics.cjs +6 -2
- package/dist/analytics.cjs.map +1 -1
- package/dist/analytics.d.cts +17 -4
- package/dist/analytics.d.ts +17 -4
- package/dist/analytics.js +6 -2
- package/dist/analytics.js.map +1 -1
- package/dist/client.cjs +176 -32
- package/dist/client.cjs.map +1 -1
- package/dist/client.d.cts +6 -6
- package/dist/client.d.ts +6 -6
- package/dist/client.js +176 -32
- package/dist/client.js.map +1 -1
- package/dist/{collection-client-Bymfni8u.d.cts → collection-client-B-qVIBnJ.d.cts} +5 -5
- package/dist/{collection-client-CN4lj6gi.d.ts → collection-client-BhCMwIus.d.ts} +5 -5
- package/dist/{const-4BUtUdGU.d.cts → const-BiDujixF.d.cts} +1 -1
- package/dist/{const-ymprfiPf.d.ts → const-pmHlwm3E.d.ts} +1 -1
- package/dist/{index-w36lpSkU.d.ts → index-B1UBDaKz.d.ts} +3 -3
- package/dist/{index-Dquv4xTL.d.cts → index-D78ki6Ij.d.cts} +3 -3
- package/dist/index.cjs +156 -339
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +7 -7
- package/dist/index.d.ts +7 -7
- package/dist/index.js +156 -339
- package/dist/index.js.map +1 -1
- package/dist/{payload-types-DC0xzR9i.d.cts → payload-types-C7Ul4ElL.d.cts} +181 -118
- package/dist/{payload-types-DC0xzR9i.d.ts → payload-types-C7Ul4ElL.d.ts} +181 -118
- package/dist/query.d.cts +5 -5
- package/dist/query.d.ts +5 -5
- package/dist/realtime.cjs +1 -1
- package/dist/realtime.cjs.map +1 -1
- package/dist/realtime.d.cts +2 -2
- package/dist/realtime.d.ts +2 -2
- package/dist/realtime.js +1 -1
- package/dist/realtime.js.map +1 -1
- package/dist/server.cjs +236 -50
- package/dist/server.cjs.map +1 -1
- package/dist/server.d.cts +7 -7
- package/dist/server.d.ts +7 -7
- package/dist/server.js +236 -50
- package/dist/server.js.map +1 -1
- package/dist/{types-CHrzs2GB.d.ts → types-BL7M-EUV.d.cts} +140 -14
- package/dist/{types-Bh2p-EMc.d.ts → types-Bf2iCjy8.d.ts} +1 -1
- package/dist/{types-BvpjooU-.d.cts → types-ChV1t4ei.d.cts} +1 -1
- package/dist/{types-Bl-m9ttd.d.cts → types-D5dSNIGs.d.ts} +140 -14
- package/dist/ui/canvas.cjs.map +1 -1
- package/dist/ui/canvas.js.map +1 -1
- package/dist/ui/form.d.cts +1 -1
- package/dist/ui/form.d.ts +1 -1
- package/dist/ui/video.d.cts +1 -1
- package/dist/ui/video.d.ts +1 -1
- package/dist/webhook.d.cts +4 -4
- package/dist/webhook.d.ts +4 -4
- package/package.json +3 -3
|
@@ -442,7 +442,7 @@ interface Image {
|
|
|
442
442
|
id: string;
|
|
443
443
|
tenant?: (string | null) | Tenant;
|
|
444
444
|
/**
|
|
445
|
-
*
|
|
445
|
+
* Alt text for the image, used by screen readers and search/share previews.
|
|
446
446
|
*/
|
|
447
447
|
alt?: string | null;
|
|
448
448
|
/**
|
|
@@ -562,7 +562,7 @@ interface Tenant {
|
|
|
562
562
|
[k: string]: unknown;
|
|
563
563
|
} | unknown[] | string | number | boolean | null;
|
|
564
564
|
/**
|
|
565
|
-
* Tenant
|
|
565
|
+
* Tenant status. Managed automatically.
|
|
566
566
|
*/
|
|
567
567
|
status?: ('active' | 'paused' | 'past_due' | 'canceled' | 'pending_deletion') | null;
|
|
568
568
|
/**
|
|
@@ -604,6 +604,33 @@ interface Tenant {
|
|
|
604
604
|
* Allow customer email sends for this event.
|
|
605
605
|
*/
|
|
606
606
|
returnCompleted?: boolean | null;
|
|
607
|
+
/**
|
|
608
|
+
* Brand name shown in the recipient's inbox. Leave blank to use the platform default sender. (The send-from address stays on the platform domain.)
|
|
609
|
+
*/
|
|
610
|
+
senderDisplayName?: string | null;
|
|
611
|
+
/**
|
|
612
|
+
* Address that receives customer replies to notification emails. Leave blank to omit reply-to.
|
|
613
|
+
*/
|
|
614
|
+
senderReplyTo?: string | null;
|
|
615
|
+
/**
|
|
616
|
+
* Your own sending domain (e.g. mail.example.com). After registration and verification, mail is sent from this domain. Until verified, sending safely falls back to the platform sender.
|
|
617
|
+
*/
|
|
618
|
+
senderDomain?: string | null;
|
|
619
|
+
/**
|
|
620
|
+
* The part of the from-address before @ (e.g. noreply, orders). Defaults to noreply when blank.
|
|
621
|
+
*/
|
|
622
|
+
senderLocalpart?: string | null;
|
|
623
|
+
/**
|
|
624
|
+
* Sending domain verification status. Managed automatically.
|
|
625
|
+
*/
|
|
626
|
+
senderDomainStatus?: string | null;
|
|
627
|
+
senderDomainResendId?: string | null;
|
|
628
|
+
/**
|
|
629
|
+
* DNS records required to verify the domain. Filled in automatically.
|
|
630
|
+
*/
|
|
631
|
+
senderDomainRecords?: {
|
|
632
|
+
[k: string]: unknown;
|
|
633
|
+
} | unknown[] | string | number | boolean | null;
|
|
607
634
|
};
|
|
608
635
|
/**
|
|
609
636
|
* Users connected to this tenant
|
|
@@ -636,7 +663,7 @@ interface User {
|
|
|
636
663
|
acceptsUsageAlerts?: boolean | null;
|
|
637
664
|
};
|
|
638
665
|
/**
|
|
639
|
-
* Admin contact phone number.
|
|
666
|
+
* Admin contact phone number.
|
|
640
667
|
*/
|
|
641
668
|
phone?: string | null;
|
|
642
669
|
isPhoneVerified?: boolean | null;
|
|
@@ -897,7 +924,7 @@ interface Order {
|
|
|
897
924
|
/**
|
|
898
925
|
* Fulfillment status used for order lists and filters.
|
|
899
926
|
*/
|
|
900
|
-
displayFulfillmentStatus: 'unfulfilled' | 'in_progress' | 'on_hold' | 'shipped' | 'fulfilled' | 'canceled';
|
|
927
|
+
displayFulfillmentStatus: 'unfulfilled' | 'in_progress' | 'on_hold' | 'partially_fulfilled' | 'shipped' | 'fulfilled' | 'canceled';
|
|
901
928
|
/**
|
|
902
929
|
* Return status used for order lists and filters. Orders without active returns read as no_return.
|
|
903
930
|
*/
|
|
@@ -914,9 +941,6 @@ interface Order {
|
|
|
914
941
|
* Return display status derived only when a return is active.
|
|
915
942
|
*/
|
|
916
943
|
returnDisplayStatus?: ('return_requested' | 'return_processing' | 'returned') | null;
|
|
917
|
-
/**
|
|
918
|
-
* Deprecated: compatibility alias for displayStatus.
|
|
919
|
-
*/
|
|
920
944
|
status: 'pending' | 'paid' | 'canceled' | 'refunded' | 'preparing' | 'shipped' | 'delivered' | 'confirmed' | 'return_requested' | 'return_processing' | 'returned';
|
|
921
945
|
customer?: (string | null) | Customer;
|
|
922
946
|
/**
|
|
@@ -975,6 +999,10 @@ interface Order {
|
|
|
975
999
|
* Cumulative refunded amount
|
|
976
1000
|
*/
|
|
977
1001
|
refundedAmount?: number | null;
|
|
1002
|
+
/**
|
|
1003
|
+
* Current order total after refunds (totalAmount − refundedAmount)
|
|
1004
|
+
*/
|
|
1005
|
+
currentTotalAmount?: number | null;
|
|
978
1006
|
taxAmount?: number | null;
|
|
979
1007
|
/**
|
|
980
1008
|
* Initial shipping refund policy snapshot at order time
|
|
@@ -994,6 +1022,10 @@ interface Order {
|
|
|
994
1022
|
placedAt?: string | null;
|
|
995
1023
|
confirmedAt?: string | null;
|
|
996
1024
|
cancelReason?: string | null;
|
|
1025
|
+
/**
|
|
1026
|
+
* Structured cancel reason code (Shopify cancelReason parity), set automatically on cancel. Free-text detail stays in the cancel reason field.
|
|
1027
|
+
*/
|
|
1028
|
+
cancelReasonCode?: ('customer' | 'inventory' | 'fraud' | 'declined' | 'staff' | 'other') | null;
|
|
997
1029
|
canceledAt?: string | null;
|
|
998
1030
|
completedAt?: string | null;
|
|
999
1031
|
billingAddress?: {
|
|
@@ -1068,7 +1100,7 @@ interface Customer {
|
|
|
1068
1100
|
defaultShippingAddress?: (string | null) | CustomerAddress;
|
|
1069
1101
|
defaultBillingAddress?: (string | null) | CustomerAddress;
|
|
1070
1102
|
/**
|
|
1071
|
-
*
|
|
1103
|
+
* Number of this customer's completed orders. Counted automatically.
|
|
1072
1104
|
*/
|
|
1073
1105
|
totalOrderCount?: number | null;
|
|
1074
1106
|
lifetimeValue?: number | null;
|
|
@@ -1264,7 +1296,7 @@ interface CustomerAddress {
|
|
|
1264
1296
|
*/
|
|
1265
1297
|
deliveryRequest?: ('security_office' | 'handoff_in_person' | 'call_before' | 'leave_at_door' | 'other') | null;
|
|
1266
1298
|
/**
|
|
1267
|
-
* Free-form delivery note
|
|
1299
|
+
* Free-form delivery note for the courier.
|
|
1268
1300
|
*/
|
|
1269
1301
|
deliveryNote?: string | null;
|
|
1270
1302
|
updatedAt: string;
|
|
@@ -1280,7 +1312,7 @@ interface CustomerProfile {
|
|
|
1280
1312
|
tenant?: (string | null) | Tenant;
|
|
1281
1313
|
customer: string | Customer;
|
|
1282
1314
|
/**
|
|
1283
|
-
* Public username shown like @01works.
|
|
1315
|
+
* Public username shown like @01works. Must be unique within the workspace.
|
|
1284
1316
|
*/
|
|
1285
1317
|
handle?: string | null;
|
|
1286
1318
|
displayName?: string | null;
|
|
@@ -1317,13 +1349,13 @@ interface OrderItem {
|
|
|
1317
1349
|
tenant?: (string | null) | Tenant;
|
|
1318
1350
|
order: string | Order;
|
|
1319
1351
|
/**
|
|
1320
|
-
*
|
|
1352
|
+
* Product purchased at order time.
|
|
1321
1353
|
*/
|
|
1322
1354
|
product: string | Product;
|
|
1323
1355
|
variant?: (string | null) | ProductVariant;
|
|
1324
1356
|
quantity: number;
|
|
1325
1357
|
/**
|
|
1326
|
-
* Unit-price snapshot at order time.
|
|
1358
|
+
* Unit-price snapshot at order time.
|
|
1327
1359
|
*/
|
|
1328
1360
|
unitPrice: number;
|
|
1329
1361
|
variantTitle?: string | null;
|
|
@@ -1337,7 +1369,7 @@ interface OrderItem {
|
|
|
1337
1369
|
totalPrice: number;
|
|
1338
1370
|
productTitle?: string | null;
|
|
1339
1371
|
/**
|
|
1340
|
-
* Option combination snapshot at order time.
|
|
1372
|
+
* Option combination snapshot at order time.
|
|
1341
1373
|
*/
|
|
1342
1374
|
optionSelection?: {
|
|
1343
1375
|
[k: string]: unknown;
|
|
@@ -1351,15 +1383,15 @@ interface OrderItem {
|
|
|
1351
1383
|
*/
|
|
1352
1384
|
currency?: string | null;
|
|
1353
1385
|
/**
|
|
1354
|
-
* Snapshot of the discount amount allocated to this line at order time
|
|
1386
|
+
* Snapshot of the discount amount allocated to this line at order time.
|
|
1355
1387
|
*/
|
|
1356
1388
|
discountAllocation?: number | null;
|
|
1357
1389
|
/**
|
|
1358
|
-
* Per-unit price snapshot after discount allocation
|
|
1390
|
+
* Per-unit price snapshot after discount allocation at order time.
|
|
1359
1391
|
*/
|
|
1360
1392
|
discountedUnitPrice?: number | null;
|
|
1361
1393
|
/**
|
|
1362
|
-
* Line total snapshot after discount allocation at order time
|
|
1394
|
+
* Line total snapshot after discount allocation at order time.
|
|
1363
1395
|
*/
|
|
1364
1396
|
discountedTotalPrice?: number | null;
|
|
1365
1397
|
updatedAt: string;
|
|
@@ -1390,7 +1422,7 @@ interface Product {
|
|
|
1390
1422
|
*/
|
|
1391
1423
|
images?: (string | Image)[] | null;
|
|
1392
1424
|
/**
|
|
1393
|
-
*
|
|
1425
|
+
* Attach videos to this content.
|
|
1394
1426
|
*/
|
|
1395
1427
|
videos?: (string | Video)[] | null;
|
|
1396
1428
|
/**
|
|
@@ -1505,7 +1537,7 @@ interface Product {
|
|
|
1505
1537
|
*/
|
|
1506
1538
|
description?: string | null;
|
|
1507
1539
|
/**
|
|
1508
|
-
* OG / Twitter Card image (1200×630 recommended).
|
|
1540
|
+
* OG / Twitter Card image (1200×630 recommended).
|
|
1509
1541
|
*/
|
|
1510
1542
|
image?: (string | null) | Image;
|
|
1511
1543
|
};
|
|
@@ -1580,7 +1612,7 @@ interface Video {
|
|
|
1580
1612
|
categories?: (string | VideoCategory)[] | null;
|
|
1581
1613
|
tags?: (string | VideoTag)[] | null;
|
|
1582
1614
|
/**
|
|
1583
|
-
* Mux processing status. Updated
|
|
1615
|
+
* Mux processing status. Updated automatically.
|
|
1584
1616
|
*/
|
|
1585
1617
|
muxStatus?: ('waiting' | 'preparing' | 'ready' | 'errored') | null;
|
|
1586
1618
|
durationSeconds?: number | null;
|
|
@@ -1618,7 +1650,7 @@ interface Video {
|
|
|
1618
1650
|
*/
|
|
1619
1651
|
description?: string | null;
|
|
1620
1652
|
/**
|
|
1621
|
-
* OG / Twitter Card image (1200×630 recommended).
|
|
1653
|
+
* OG / Twitter Card image (1200×630 recommended).
|
|
1622
1654
|
*/
|
|
1623
1655
|
image?: (string | null) | Image;
|
|
1624
1656
|
};
|
|
@@ -1679,7 +1711,7 @@ interface LiveStream {
|
|
|
1679
1711
|
*/
|
|
1680
1712
|
reconnectWindowSeconds?: number | null;
|
|
1681
1713
|
/**
|
|
1682
|
-
* Mux live stream status. Updated
|
|
1714
|
+
* Mux live stream status. Updated automatically.
|
|
1683
1715
|
*/
|
|
1684
1716
|
muxStatus?: ('idle' | 'active' | 'disabled') | null;
|
|
1685
1717
|
muxLiveStreamId?: string | null;
|
|
@@ -1716,7 +1748,7 @@ interface LiveStream {
|
|
|
1716
1748
|
*/
|
|
1717
1749
|
description?: string | null;
|
|
1718
1750
|
/**
|
|
1719
|
-
* OG / Twitter Card image (1200×630 recommended).
|
|
1751
|
+
* OG / Twitter Card image (1200×630 recommended).
|
|
1720
1752
|
*/
|
|
1721
1753
|
image?: (string | null) | Image;
|
|
1722
1754
|
};
|
|
@@ -1764,7 +1796,7 @@ interface VideoCategory {
|
|
|
1764
1796
|
*/
|
|
1765
1797
|
description?: string | null;
|
|
1766
1798
|
/**
|
|
1767
|
-
* Single representative
|
|
1799
|
+
* Single representative image for this taxonomy entry.
|
|
1768
1800
|
*/
|
|
1769
1801
|
image?: (string | null) | Image;
|
|
1770
1802
|
/**
|
|
@@ -1772,7 +1804,7 @@ interface VideoCategory {
|
|
|
1772
1804
|
*/
|
|
1773
1805
|
parent?: (string | null) | VideoCategory;
|
|
1774
1806
|
/**
|
|
1775
|
-
* Optional #RRGGBB
|
|
1807
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
1776
1808
|
*/
|
|
1777
1809
|
color?: string | null;
|
|
1778
1810
|
updatedAt: string;
|
|
@@ -1798,11 +1830,11 @@ interface VideoTag {
|
|
|
1798
1830
|
*/
|
|
1799
1831
|
description?: string | null;
|
|
1800
1832
|
/**
|
|
1801
|
-
* Single representative
|
|
1833
|
+
* Single representative image for this taxonomy entry.
|
|
1802
1834
|
*/
|
|
1803
1835
|
image?: (string | null) | Image;
|
|
1804
1836
|
/**
|
|
1805
|
-
* Optional #RRGGBB
|
|
1837
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
1806
1838
|
*/
|
|
1807
1839
|
color?: string | null;
|
|
1808
1840
|
updatedAt: string;
|
|
@@ -1843,6 +1875,10 @@ interface ProductVariant {
|
|
|
1843
1875
|
* Sell without tracking inventory
|
|
1844
1876
|
*/
|
|
1845
1877
|
isUnlimited?: boolean | null;
|
|
1878
|
+
/**
|
|
1879
|
+
* Whether to allow backorder (overselling) when stock reaches zero. Not applicable to unlimited variants.
|
|
1880
|
+
*/
|
|
1881
|
+
inventoryPolicy?: ('deny' | 'continue') | null;
|
|
1846
1882
|
/**
|
|
1847
1883
|
* Available quantity is stock minus reserved stock.
|
|
1848
1884
|
*/
|
|
@@ -1880,7 +1916,7 @@ interface ProductVariant {
|
|
|
1880
1916
|
*/
|
|
1881
1917
|
barcode?: string | null;
|
|
1882
1918
|
/**
|
|
1883
|
-
*
|
|
1919
|
+
* Enter this variant weight as an integer in grams.
|
|
1884
1920
|
*/
|
|
1885
1921
|
weight?: number | null;
|
|
1886
1922
|
/**
|
|
@@ -1941,7 +1977,7 @@ interface InventoryAdjustment {
|
|
|
1941
1977
|
availableBefore: number;
|
|
1942
1978
|
availableAfter: number;
|
|
1943
1979
|
/**
|
|
1944
|
-
*
|
|
1980
|
+
* Who performed the adjustment (a user, a customer, or the system).
|
|
1945
1981
|
*/
|
|
1946
1982
|
actor: string;
|
|
1947
1983
|
note?: string | null;
|
|
@@ -2150,7 +2186,7 @@ interface ProductCategory {
|
|
|
2150
2186
|
*/
|
|
2151
2187
|
description?: string | null;
|
|
2152
2188
|
/**
|
|
2153
|
-
* Single representative
|
|
2189
|
+
* Single representative image for this taxonomy entry.
|
|
2154
2190
|
*/
|
|
2155
2191
|
image?: (string | null) | Image;
|
|
2156
2192
|
/**
|
|
@@ -2158,7 +2194,7 @@ interface ProductCategory {
|
|
|
2158
2194
|
*/
|
|
2159
2195
|
parent?: (string | null) | ProductCategory;
|
|
2160
2196
|
/**
|
|
2161
|
-
* Optional #RRGGBB
|
|
2197
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
2162
2198
|
*/
|
|
2163
2199
|
color?: string | null;
|
|
2164
2200
|
updatedAt: string;
|
|
@@ -2186,11 +2222,11 @@ interface ProductTag {
|
|
|
2186
2222
|
*/
|
|
2187
2223
|
description?: string | null;
|
|
2188
2224
|
/**
|
|
2189
|
-
* Single representative
|
|
2225
|
+
* Single representative image for this taxonomy entry.
|
|
2190
2226
|
*/
|
|
2191
2227
|
image?: (string | null) | Image;
|
|
2192
2228
|
/**
|
|
2193
|
-
* Optional #RRGGBB
|
|
2229
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
2194
2230
|
*/
|
|
2195
2231
|
color?: string | null;
|
|
2196
2232
|
updatedAt: string;
|
|
@@ -2270,7 +2306,7 @@ interface Brand {
|
|
|
2270
2306
|
*/
|
|
2271
2307
|
description?: string | null;
|
|
2272
2308
|
/**
|
|
2273
|
-
* OG / Twitter Card image (1200×630 recommended).
|
|
2309
|
+
* OG / Twitter Card image (1200×630 recommended).
|
|
2274
2310
|
*/
|
|
2275
2311
|
image?: (string | null) | BrandLogo;
|
|
2276
2312
|
};
|
|
@@ -2298,7 +2334,7 @@ interface BrandLogo {
|
|
|
2298
2334
|
id: string;
|
|
2299
2335
|
tenant?: (string | null) | Tenant;
|
|
2300
2336
|
/**
|
|
2301
|
-
*
|
|
2337
|
+
* Alt text for the image, used by screen readers and search/share previews.
|
|
2302
2338
|
*/
|
|
2303
2339
|
alt?: string | null;
|
|
2304
2340
|
/**
|
|
@@ -2528,7 +2564,7 @@ interface ProductCollection {
|
|
|
2528
2564
|
*/
|
|
2529
2565
|
description?: string | null;
|
|
2530
2566
|
/**
|
|
2531
|
-
* OG / Twitter Card image (1200×630 recommended).
|
|
2567
|
+
* OG / Twitter Card image (1200×630 recommended).
|
|
2532
2568
|
*/
|
|
2533
2569
|
image?: (string | null) | Image;
|
|
2534
2570
|
};
|
|
@@ -2663,7 +2699,7 @@ interface Transaction {
|
|
|
2663
2699
|
order: string | Order;
|
|
2664
2700
|
amount?: number | null;
|
|
2665
2701
|
/**
|
|
2666
|
-
* Payment method snapshot returned by the provider.
|
|
2702
|
+
* Payment method snapshot returned by the provider.
|
|
2667
2703
|
*/
|
|
2668
2704
|
paymentMethod?: string | null;
|
|
2669
2705
|
/**
|
|
@@ -2733,25 +2769,25 @@ interface ApiKey {
|
|
|
2733
2769
|
*/
|
|
2734
2770
|
displaySuffix: string;
|
|
2735
2771
|
/**
|
|
2736
|
-
* Capability scopes. Default is read+write
|
|
2772
|
+
* Capability scopes for the key. Default is read+write.
|
|
2737
2773
|
*/
|
|
2738
2774
|
scopes?: ('read' | 'write' | 'webhook' | 'analytics' | 'super-admin')[] | null;
|
|
2739
2775
|
/**
|
|
2740
|
-
* User who issued the key.
|
|
2776
|
+
* User who issued the key.
|
|
2741
2777
|
*/
|
|
2742
2778
|
createdBy?: (string | null) | User;
|
|
2743
2779
|
/**
|
|
2744
|
-
* IP address of the key creation request.
|
|
2780
|
+
* IP address of the key creation request.
|
|
2745
2781
|
*/
|
|
2746
2782
|
createdByIp?: string | null;
|
|
2747
2783
|
lastUsedAt?: string | null;
|
|
2748
2784
|
/**
|
|
2749
|
-
* Last IP address that used the key.
|
|
2785
|
+
* Last IP address that used the key.
|
|
2750
2786
|
*/
|
|
2751
2787
|
lastUsedIp?: string | null;
|
|
2752
2788
|
revokedAt?: string | null;
|
|
2753
2789
|
/**
|
|
2754
|
-
* User who revoked the key.
|
|
2790
|
+
* User who revoked the key.
|
|
2755
2791
|
*/
|
|
2756
2792
|
revokedBy?: (string | null) | User;
|
|
2757
2793
|
/**
|
|
@@ -2787,17 +2823,17 @@ interface PersonalAccessToken {
|
|
|
2787
2823
|
*/
|
|
2788
2824
|
defaultTenant?: string | null;
|
|
2789
2825
|
/**
|
|
2790
|
-
* IP address of the PAT creation request.
|
|
2826
|
+
* IP address of the PAT creation request.
|
|
2791
2827
|
*/
|
|
2792
2828
|
createdByIp?: string | null;
|
|
2793
2829
|
lastUsedAt?: string | null;
|
|
2794
2830
|
/**
|
|
2795
|
-
* Last IP address that used the PAT.
|
|
2831
|
+
* Last IP address that used the PAT.
|
|
2796
2832
|
*/
|
|
2797
2833
|
lastUsedIp?: string | null;
|
|
2798
2834
|
revokedAt?: string | null;
|
|
2799
2835
|
/**
|
|
2800
|
-
* User who revoked the PAT.
|
|
2836
|
+
* User who revoked the PAT.
|
|
2801
2837
|
*/
|
|
2802
2838
|
revokedBy?: (string | null) | User;
|
|
2803
2839
|
/**
|
|
@@ -3153,7 +3189,7 @@ interface TenantLogo {
|
|
|
3153
3189
|
id: string;
|
|
3154
3190
|
tenant?: (string | null) | Tenant;
|
|
3155
3191
|
/**
|
|
3156
|
-
*
|
|
3192
|
+
* Alt text for the image, used by screen readers and search/share previews.
|
|
3157
3193
|
*/
|
|
3158
3194
|
alt?: string | null;
|
|
3159
3195
|
/**
|
|
@@ -3260,7 +3296,7 @@ interface TenantEntitlement {
|
|
|
3260
3296
|
priority: number;
|
|
3261
3297
|
startsAt: string;
|
|
3262
3298
|
/**
|
|
3263
|
-
* Entitlement end date. Required
|
|
3299
|
+
* Entitlement end date. Required for promo / trial sources.
|
|
3264
3300
|
*/
|
|
3265
3301
|
endsAt?: string | null;
|
|
3266
3302
|
reason?: string | null;
|
|
@@ -3490,6 +3526,10 @@ interface TenantAnalyticsDaily {
|
|
|
3490
3526
|
eventsDropped?: {
|
|
3491
3527
|
cardinality?: number | null;
|
|
3492
3528
|
schema?: number | null;
|
|
3529
|
+
schemaUnknownEvent?: number | null;
|
|
3530
|
+
schemaUnknownDim?: number | null;
|
|
3531
|
+
schemaBadValue?: number | null;
|
|
3532
|
+
schemaInvalidProps?: number | null;
|
|
3493
3533
|
late?: number | null;
|
|
3494
3534
|
origin?: number | null;
|
|
3495
3535
|
key?: number | null;
|
|
@@ -3589,7 +3629,7 @@ interface AnalyticsEventSchema {
|
|
|
3589
3629
|
key: string;
|
|
3590
3630
|
type: 'enum' | 'boolean';
|
|
3591
3631
|
/**
|
|
3592
|
-
* Comma-separated values. Required when type=enum, optional otherwise. Boolean auto-derives {true,false}. Max 20 per key.
|
|
3632
|
+
* Comma-separated values. Required when type=enum, optional otherwise. Collection compares exact String(value), so case and numeric serialization must match. Boolean auto-derives {true,false}. Max 20 per key.
|
|
3593
3633
|
*/
|
|
3594
3634
|
allowedValues?: string | null;
|
|
3595
3635
|
description?: string | null;
|
|
@@ -3664,15 +3704,15 @@ interface OrderStatusLog {
|
|
|
3664
3704
|
tenant?: (string | null) | Tenant;
|
|
3665
3705
|
order: string | Order;
|
|
3666
3706
|
/**
|
|
3667
|
-
*
|
|
3707
|
+
* Order status before the change.
|
|
3668
3708
|
*/
|
|
3669
3709
|
fromStatus: 'pending' | 'paid' | 'canceled' | 'refunded' | 'preparing' | 'shipped' | 'delivered' | 'confirmed' | 'return_requested' | 'return_processing' | 'returned';
|
|
3670
3710
|
/**
|
|
3671
|
-
*
|
|
3711
|
+
* Order status after the change.
|
|
3672
3712
|
*/
|
|
3673
3713
|
toStatus: 'pending' | 'paid' | 'canceled' | 'refunded' | 'preparing' | 'shipped' | 'delivered' | 'confirmed' | 'return_requested' | 'return_processing' | 'returned';
|
|
3674
3714
|
/**
|
|
3675
|
-
*
|
|
3715
|
+
* Who changed the status (a user, the API, or a system process).
|
|
3676
3716
|
*/
|
|
3677
3717
|
changedBy: string;
|
|
3678
3718
|
reason?: string | null;
|
|
@@ -3702,7 +3742,7 @@ interface InventoryReservation {
|
|
|
3702
3742
|
variant: string | ProductVariant;
|
|
3703
3743
|
quantity: number;
|
|
3704
3744
|
/**
|
|
3705
|
-
*
|
|
3745
|
+
* Inventory reservation status. Managed automatically by the server.
|
|
3706
3746
|
*/
|
|
3707
3747
|
status: 'pending' | 'held' | 'released' | 'consumed';
|
|
3708
3748
|
/**
|
|
@@ -3796,6 +3836,10 @@ interface Cart {
|
|
|
3796
3836
|
detailAddress?: string | null;
|
|
3797
3837
|
deliveryMessage?: string | null;
|
|
3798
3838
|
};
|
|
3839
|
+
/**
|
|
3840
|
+
* Cart shipping policy. Falls back to the default policy when unset.
|
|
3841
|
+
*/
|
|
3842
|
+
shippingPolicy?: (string | null) | ShippingPolicy;
|
|
3799
3843
|
discountCode?: string | null;
|
|
3800
3844
|
/**
|
|
3801
3845
|
* Customer note
|
|
@@ -3813,6 +3857,7 @@ interface Cart {
|
|
|
3813
3857
|
* Amount in KRW (won)
|
|
3814
3858
|
*/
|
|
3815
3859
|
shippingAmount?: number | null;
|
|
3860
|
+
freeShippingDiscount?: boolean | null;
|
|
3816
3861
|
/**
|
|
3817
3862
|
* Amount in KRW (won)
|
|
3818
3863
|
*/
|
|
@@ -3847,15 +3892,15 @@ interface CartItem {
|
|
|
3847
3892
|
*/
|
|
3848
3893
|
unitPrice: number;
|
|
3849
3894
|
/**
|
|
3850
|
-
*
|
|
3895
|
+
* Header discount allocated to this line. Calculated automatically.
|
|
3851
3896
|
*/
|
|
3852
3897
|
discountAllocation?: number | null;
|
|
3853
3898
|
/**
|
|
3854
|
-
* Per-unit price after discount allocation
|
|
3899
|
+
* Per-unit price after discount allocation. Calculated automatically.
|
|
3855
3900
|
*/
|
|
3856
3901
|
discountedUnitPrice?: number | null;
|
|
3857
3902
|
/**
|
|
3858
|
-
* Line total after discount allocation
|
|
3903
|
+
* Line total after discount allocation. Calculated automatically.
|
|
3859
3904
|
*/
|
|
3860
3905
|
discountedTotalPrice?: number | null;
|
|
3861
3906
|
metadata?: {
|
|
@@ -4037,15 +4082,15 @@ interface CustomerProfileStat {
|
|
|
4037
4082
|
tenant?: (string | null) | Tenant;
|
|
4038
4083
|
profile: string | CustomerProfile;
|
|
4039
4084
|
/**
|
|
4040
|
-
*
|
|
4085
|
+
* Number of community posts authored by this profile. Counted automatically.
|
|
4041
4086
|
*/
|
|
4042
4087
|
postCount?: number | null;
|
|
4043
4088
|
/**
|
|
4044
|
-
*
|
|
4089
|
+
* Number of community comments authored by this profile. Counted automatically.
|
|
4045
4090
|
*/
|
|
4046
4091
|
commentCount?: number | null;
|
|
4047
4092
|
/**
|
|
4048
|
-
*
|
|
4093
|
+
* Number of community reactions made by this profile. Counted automatically.
|
|
4049
4094
|
*/
|
|
4050
4095
|
reactionCount?: number | null;
|
|
4051
4096
|
}
|
|
@@ -4226,7 +4271,7 @@ interface Article {
|
|
|
4226
4271
|
categories?: (string | ArticleCategory)[] | null;
|
|
4227
4272
|
tags?: (string | ArticleTag)[] | null;
|
|
4228
4273
|
/**
|
|
4229
|
-
*
|
|
4274
|
+
* Attach videos to this content.
|
|
4230
4275
|
*/
|
|
4231
4276
|
videos?: (string | Video)[] | null;
|
|
4232
4277
|
seo?: {
|
|
@@ -4256,7 +4301,7 @@ interface Article {
|
|
|
4256
4301
|
*/
|
|
4257
4302
|
description?: string | null;
|
|
4258
4303
|
/**
|
|
4259
|
-
* OG / Twitter Card image (1200×630 recommended).
|
|
4304
|
+
* OG / Twitter Card image (1200×630 recommended).
|
|
4260
4305
|
*/
|
|
4261
4306
|
image?: (string | null) | Image;
|
|
4262
4307
|
};
|
|
@@ -4316,7 +4361,7 @@ interface ArticleAuthor {
|
|
|
4316
4361
|
bio?: string | null;
|
|
4317
4362
|
email?: string | null;
|
|
4318
4363
|
/**
|
|
4319
|
-
* Articles linked to this author.
|
|
4364
|
+
* Articles linked to this author.
|
|
4320
4365
|
*/
|
|
4321
4366
|
articles?: {
|
|
4322
4367
|
docs?: (string | Article)[];
|
|
@@ -4350,7 +4395,7 @@ interface ArticleCategory {
|
|
|
4350
4395
|
*/
|
|
4351
4396
|
description?: string | null;
|
|
4352
4397
|
/**
|
|
4353
|
-
* Single representative
|
|
4398
|
+
* Single representative image for this taxonomy entry.
|
|
4354
4399
|
*/
|
|
4355
4400
|
image?: (string | null) | Image;
|
|
4356
4401
|
/**
|
|
@@ -4358,7 +4403,7 @@ interface ArticleCategory {
|
|
|
4358
4403
|
*/
|
|
4359
4404
|
parent?: (string | null) | ArticleCategory;
|
|
4360
4405
|
/**
|
|
4361
|
-
* Optional #RRGGBB
|
|
4406
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
4362
4407
|
*/
|
|
4363
4408
|
color?: string | null;
|
|
4364
4409
|
updatedAt: string;
|
|
@@ -4384,11 +4429,11 @@ interface ArticleTag {
|
|
|
4384
4429
|
*/
|
|
4385
4430
|
description?: string | null;
|
|
4386
4431
|
/**
|
|
4387
|
-
* Single representative
|
|
4432
|
+
* Single representative image for this taxonomy entry.
|
|
4388
4433
|
*/
|
|
4389
4434
|
image?: (string | null) | Image;
|
|
4390
4435
|
/**
|
|
4391
|
-
* Optional #RRGGBB
|
|
4436
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
4392
4437
|
*/
|
|
4393
4438
|
color?: string | null;
|
|
4394
4439
|
updatedAt: string;
|
|
@@ -4430,7 +4475,7 @@ interface Document {
|
|
|
4430
4475
|
[k: string]: unknown;
|
|
4431
4476
|
} | null;
|
|
4432
4477
|
/**
|
|
4433
|
-
*
|
|
4478
|
+
* Attach videos to this content.
|
|
4434
4479
|
*/
|
|
4435
4480
|
videos?: (string | Video)[] | null;
|
|
4436
4481
|
/**
|
|
@@ -4488,7 +4533,7 @@ interface Document {
|
|
|
4488
4533
|
*/
|
|
4489
4534
|
description?: string | null;
|
|
4490
4535
|
/**
|
|
4491
|
-
* OG / Twitter Card image (1200×630 recommended).
|
|
4536
|
+
* OG / Twitter Card image (1200×630 recommended).
|
|
4492
4537
|
*/
|
|
4493
4538
|
image?: (string | null) | Image;
|
|
4494
4539
|
};
|
|
@@ -4539,7 +4584,7 @@ interface DocumentCategory {
|
|
|
4539
4584
|
*/
|
|
4540
4585
|
description?: string | null;
|
|
4541
4586
|
/**
|
|
4542
|
-
* Single representative
|
|
4587
|
+
* Single representative image for this taxonomy entry.
|
|
4543
4588
|
*/
|
|
4544
4589
|
image?: (string | null) | Image;
|
|
4545
4590
|
/**
|
|
@@ -4547,7 +4592,7 @@ interface DocumentCategory {
|
|
|
4547
4592
|
*/
|
|
4548
4593
|
parent?: (string | null) | DocumentCategory;
|
|
4549
4594
|
/**
|
|
4550
|
-
* Optional #RRGGBB
|
|
4595
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
4551
4596
|
*/
|
|
4552
4597
|
color?: string | null;
|
|
4553
4598
|
updatedAt: string;
|
|
@@ -4575,11 +4620,11 @@ interface DocumentType {
|
|
|
4575
4620
|
*/
|
|
4576
4621
|
description?: string | null;
|
|
4577
4622
|
/**
|
|
4578
|
-
* Single representative
|
|
4623
|
+
* Single representative image for this taxonomy entry.
|
|
4579
4624
|
*/
|
|
4580
4625
|
image?: (string | null) | Image;
|
|
4581
4626
|
/**
|
|
4582
|
-
* Optional #RRGGBB
|
|
4627
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
4583
4628
|
*/
|
|
4584
4629
|
color?: string | null;
|
|
4585
4630
|
updatedAt: string;
|
|
@@ -4608,7 +4653,7 @@ interface Playlist {
|
|
|
4608
4653
|
categories?: (string | PlaylistCategory)[] | null;
|
|
4609
4654
|
tags?: (string | PlaylistTag)[] | null;
|
|
4610
4655
|
/**
|
|
4611
|
-
* Tracks included in this playlist.
|
|
4656
|
+
* Tracks included in this playlist.
|
|
4612
4657
|
*/
|
|
4613
4658
|
tracks?: (string | Track)[] | null;
|
|
4614
4659
|
seo?: {
|
|
@@ -4638,7 +4683,7 @@ interface Playlist {
|
|
|
4638
4683
|
*/
|
|
4639
4684
|
description?: string | null;
|
|
4640
4685
|
/**
|
|
4641
|
-
* OG / Twitter Card image (1200×630 recommended).
|
|
4686
|
+
* OG / Twitter Card image (1200×630 recommended).
|
|
4642
4687
|
*/
|
|
4643
4688
|
image?: (string | null) | Image;
|
|
4644
4689
|
};
|
|
@@ -4678,7 +4723,7 @@ interface PlaylistCategory {
|
|
|
4678
4723
|
*/
|
|
4679
4724
|
description?: string | null;
|
|
4680
4725
|
/**
|
|
4681
|
-
* Single representative
|
|
4726
|
+
* Single representative image for this taxonomy entry.
|
|
4682
4727
|
*/
|
|
4683
4728
|
image?: (string | null) | Image;
|
|
4684
4729
|
/**
|
|
@@ -4686,7 +4731,7 @@ interface PlaylistCategory {
|
|
|
4686
4731
|
*/
|
|
4687
4732
|
parent?: (string | null) | PlaylistCategory;
|
|
4688
4733
|
/**
|
|
4689
|
-
* Optional #RRGGBB
|
|
4734
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
4690
4735
|
*/
|
|
4691
4736
|
color?: string | null;
|
|
4692
4737
|
updatedAt: string;
|
|
@@ -4712,11 +4757,11 @@ interface PlaylistTag {
|
|
|
4712
4757
|
*/
|
|
4713
4758
|
description?: string | null;
|
|
4714
4759
|
/**
|
|
4715
|
-
* Single representative
|
|
4760
|
+
* Single representative image for this taxonomy entry.
|
|
4716
4761
|
*/
|
|
4717
4762
|
image?: (string | null) | Image;
|
|
4718
4763
|
/**
|
|
4719
|
-
* Optional #RRGGBB
|
|
4764
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
4720
4765
|
*/
|
|
4721
4766
|
color?: string | null;
|
|
4722
4767
|
updatedAt: string;
|
|
@@ -4793,7 +4838,7 @@ interface TrackCategory {
|
|
|
4793
4838
|
*/
|
|
4794
4839
|
description?: string | null;
|
|
4795
4840
|
/**
|
|
4796
|
-
* Single representative
|
|
4841
|
+
* Single representative image for this taxonomy entry.
|
|
4797
4842
|
*/
|
|
4798
4843
|
image?: (string | null) | Image;
|
|
4799
4844
|
/**
|
|
@@ -4801,7 +4846,7 @@ interface TrackCategory {
|
|
|
4801
4846
|
*/
|
|
4802
4847
|
parent?: (string | null) | TrackCategory;
|
|
4803
4848
|
/**
|
|
4804
|
-
* Optional #RRGGBB
|
|
4849
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
4805
4850
|
*/
|
|
4806
4851
|
color?: string | null;
|
|
4807
4852
|
updatedAt: string;
|
|
@@ -4827,11 +4872,11 @@ interface TrackTag {
|
|
|
4827
4872
|
*/
|
|
4828
4873
|
description?: string | null;
|
|
4829
4874
|
/**
|
|
4830
|
-
* Single representative
|
|
4875
|
+
* Single representative image for this taxonomy entry.
|
|
4831
4876
|
*/
|
|
4832
4877
|
image?: (string | null) | Image;
|
|
4833
4878
|
/**
|
|
4834
|
-
* Optional #RRGGBB
|
|
4879
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
4835
4880
|
*/
|
|
4836
4881
|
color?: string | null;
|
|
4837
4882
|
updatedAt: string;
|
|
@@ -4883,7 +4928,7 @@ interface Gallery {
|
|
|
4883
4928
|
*/
|
|
4884
4929
|
description?: string | null;
|
|
4885
4930
|
/**
|
|
4886
|
-
*
|
|
4931
|
+
* Attach videos to this content.
|
|
4887
4932
|
*/
|
|
4888
4933
|
videos?: (string | Video)[] | null;
|
|
4889
4934
|
categories?: (string | GalleryCategory)[] | null;
|
|
@@ -4920,7 +4965,7 @@ interface Gallery {
|
|
|
4920
4965
|
*/
|
|
4921
4966
|
description?: string | null;
|
|
4922
4967
|
/**
|
|
4923
|
-
* OG / Twitter Card image (1200×630 recommended).
|
|
4968
|
+
* OG / Twitter Card image (1200×630 recommended).
|
|
4924
4969
|
*/
|
|
4925
4970
|
image?: (string | null) | Image;
|
|
4926
4971
|
};
|
|
@@ -4961,7 +5006,7 @@ interface GalleryCategory {
|
|
|
4961
5006
|
*/
|
|
4962
5007
|
description?: string | null;
|
|
4963
5008
|
/**
|
|
4964
|
-
* Single representative
|
|
5009
|
+
* Single representative image for this taxonomy entry.
|
|
4965
5010
|
*/
|
|
4966
5011
|
image?: (string | null) | Image;
|
|
4967
5012
|
/**
|
|
@@ -4969,7 +5014,7 @@ interface GalleryCategory {
|
|
|
4969
5014
|
*/
|
|
4970
5015
|
parent?: (string | null) | GalleryCategory;
|
|
4971
5016
|
/**
|
|
4972
|
-
* Optional #RRGGBB
|
|
5017
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
4973
5018
|
*/
|
|
4974
5019
|
color?: string | null;
|
|
4975
5020
|
updatedAt: string;
|
|
@@ -4995,11 +5040,11 @@ interface GalleryTag {
|
|
|
4995
5040
|
*/
|
|
4996
5041
|
description?: string | null;
|
|
4997
5042
|
/**
|
|
4998
|
-
* Single representative
|
|
5043
|
+
* Single representative image for this taxonomy entry.
|
|
4999
5044
|
*/
|
|
5000
5045
|
image?: (string | null) | Image;
|
|
5001
5046
|
/**
|
|
5002
|
-
* Optional #RRGGBB
|
|
5047
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
5003
5048
|
*/
|
|
5004
5049
|
color?: string | null;
|
|
5005
5050
|
updatedAt: string;
|
|
@@ -5119,7 +5164,7 @@ interface LinkCategory {
|
|
|
5119
5164
|
*/
|
|
5120
5165
|
description?: string | null;
|
|
5121
5166
|
/**
|
|
5122
|
-
* Single representative
|
|
5167
|
+
* Single representative image for this taxonomy entry.
|
|
5123
5168
|
*/
|
|
5124
5169
|
image?: (string | null) | Image;
|
|
5125
5170
|
/**
|
|
@@ -5127,7 +5172,7 @@ interface LinkCategory {
|
|
|
5127
5172
|
*/
|
|
5128
5173
|
parent?: (string | null) | LinkCategory;
|
|
5129
5174
|
/**
|
|
5130
|
-
* Optional #RRGGBB
|
|
5175
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
5131
5176
|
*/
|
|
5132
5177
|
color?: string | null;
|
|
5133
5178
|
updatedAt: string;
|
|
@@ -5153,11 +5198,11 @@ interface LinkTag {
|
|
|
5153
5198
|
*/
|
|
5154
5199
|
description?: string | null;
|
|
5155
5200
|
/**
|
|
5156
|
-
* Single representative
|
|
5201
|
+
* Single representative image for this taxonomy entry.
|
|
5157
5202
|
*/
|
|
5158
5203
|
image?: (string | null) | Image;
|
|
5159
5204
|
/**
|
|
5160
|
-
* Optional #RRGGBB
|
|
5205
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
5161
5206
|
*/
|
|
5162
5207
|
color?: string | null;
|
|
5163
5208
|
updatedAt: string;
|
|
@@ -5183,7 +5228,7 @@ interface Canvase {
|
|
|
5183
5228
|
*/
|
|
5184
5229
|
description?: string | null;
|
|
5185
5230
|
/**
|
|
5186
|
-
*
|
|
5231
|
+
* Attach videos to this content.
|
|
5187
5232
|
*/
|
|
5188
5233
|
videos?: (string | Video)[] | null;
|
|
5189
5234
|
canvas?: {
|
|
@@ -5218,7 +5263,7 @@ interface Canvase {
|
|
|
5218
5263
|
*/
|
|
5219
5264
|
description?: string | null;
|
|
5220
5265
|
/**
|
|
5221
|
-
* OG / Twitter Card image (1200×630 recommended).
|
|
5266
|
+
* OG / Twitter Card image (1200×630 recommended).
|
|
5222
5267
|
*/
|
|
5223
5268
|
image?: (string | null) | Image;
|
|
5224
5269
|
};
|
|
@@ -5235,6 +5280,7 @@ interface Canvase {
|
|
|
5235
5280
|
metadata?: {
|
|
5236
5281
|
[k: string]: unknown;
|
|
5237
5282
|
} | unknown[] | string | number | boolean | null;
|
|
5283
|
+
canvasRevision?: string | null;
|
|
5238
5284
|
updatedAt: string;
|
|
5239
5285
|
createdAt: string;
|
|
5240
5286
|
deletedAt?: string | null;
|
|
@@ -5258,7 +5304,7 @@ interface CanvasCategory {
|
|
|
5258
5304
|
*/
|
|
5259
5305
|
description?: string | null;
|
|
5260
5306
|
/**
|
|
5261
|
-
* Single representative
|
|
5307
|
+
* Single representative image for this taxonomy entry.
|
|
5262
5308
|
*/
|
|
5263
5309
|
image?: (string | null) | Image;
|
|
5264
5310
|
/**
|
|
@@ -5266,7 +5312,7 @@ interface CanvasCategory {
|
|
|
5266
5312
|
*/
|
|
5267
5313
|
parent?: (string | null) | CanvasCategory;
|
|
5268
5314
|
/**
|
|
5269
|
-
* Optional #RRGGBB
|
|
5315
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
5270
5316
|
*/
|
|
5271
5317
|
color?: string | null;
|
|
5272
5318
|
updatedAt: string;
|
|
@@ -5292,11 +5338,11 @@ interface CanvasTag {
|
|
|
5292
5338
|
*/
|
|
5293
5339
|
description?: string | null;
|
|
5294
5340
|
/**
|
|
5295
|
-
* Single representative
|
|
5341
|
+
* Single representative image for this taxonomy entry.
|
|
5296
5342
|
*/
|
|
5297
5343
|
image?: (string | null) | Image;
|
|
5298
5344
|
/**
|
|
5299
|
-
* Optional #RRGGBB
|
|
5345
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
5300
5346
|
*/
|
|
5301
5347
|
color?: string | null;
|
|
5302
5348
|
updatedAt: string;
|
|
@@ -5542,11 +5588,11 @@ interface Post {
|
|
|
5542
5588
|
*/
|
|
5543
5589
|
viewCount?: number | null;
|
|
5544
5590
|
/**
|
|
5545
|
-
*
|
|
5591
|
+
* Number of comments on this post. Counted automatically.
|
|
5546
5592
|
*/
|
|
5547
5593
|
commentCount?: number | null;
|
|
5548
5594
|
/**
|
|
5549
|
-
*
|
|
5595
|
+
* Number of reactions on this post. Counted automatically.
|
|
5550
5596
|
*/
|
|
5551
5597
|
reactionCount?: number | null;
|
|
5552
5598
|
/**
|
|
@@ -5601,7 +5647,7 @@ interface PostCategory {
|
|
|
5601
5647
|
*/
|
|
5602
5648
|
description?: string | null;
|
|
5603
5649
|
/**
|
|
5604
|
-
* Single representative
|
|
5650
|
+
* Single representative image for this taxonomy entry.
|
|
5605
5651
|
*/
|
|
5606
5652
|
image?: (string | null) | Image;
|
|
5607
5653
|
/**
|
|
@@ -5609,7 +5655,7 @@ interface PostCategory {
|
|
|
5609
5655
|
*/
|
|
5610
5656
|
parent?: (string | null) | PostCategory;
|
|
5611
5657
|
/**
|
|
5612
|
-
* Optional #RRGGBB
|
|
5658
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
5613
5659
|
*/
|
|
5614
5660
|
color?: string | null;
|
|
5615
5661
|
updatedAt: string;
|
|
@@ -5637,11 +5683,11 @@ interface PostTag {
|
|
|
5637
5683
|
*/
|
|
5638
5684
|
description?: string | null;
|
|
5639
5685
|
/**
|
|
5640
|
-
* Single representative
|
|
5686
|
+
* Single representative image for this taxonomy entry.
|
|
5641
5687
|
*/
|
|
5642
5688
|
image?: (string | null) | Image;
|
|
5643
5689
|
/**
|
|
5644
|
-
* Optional #RRGGBB
|
|
5690
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
5645
5691
|
*/
|
|
5646
5692
|
color?: string | null;
|
|
5647
5693
|
updatedAt: string;
|
|
@@ -5667,7 +5713,7 @@ interface Comment {
|
|
|
5667
5713
|
body?: string | null;
|
|
5668
5714
|
parent?: (string | null) | Comment;
|
|
5669
5715
|
/**
|
|
5670
|
-
* Comment nesting depth. Calculated
|
|
5716
|
+
* Comment nesting depth. Calculated automatically.
|
|
5671
5717
|
*/
|
|
5672
5718
|
depth?: number | null;
|
|
5673
5719
|
/**
|
|
@@ -5680,7 +5726,7 @@ interface Comment {
|
|
|
5680
5726
|
editedAt?: string | null;
|
|
5681
5727
|
isEdited?: boolean | null;
|
|
5682
5728
|
/**
|
|
5683
|
-
*
|
|
5729
|
+
* Number of reactions on this comment. Counted automatically.
|
|
5684
5730
|
*/
|
|
5685
5731
|
reactionCount?: number | null;
|
|
5686
5732
|
/**
|
|
@@ -5688,7 +5734,7 @@ interface Comment {
|
|
|
5688
5734
|
*/
|
|
5689
5735
|
reportCount?: number | null;
|
|
5690
5736
|
/**
|
|
5691
|
-
*
|
|
5737
|
+
* Number of replies to this comment. Counted automatically.
|
|
5692
5738
|
*/
|
|
5693
5739
|
replyCount?: number | null;
|
|
5694
5740
|
metadata?: {
|
|
@@ -5884,7 +5930,7 @@ interface EventCalendar {
|
|
|
5884
5930
|
*/
|
|
5885
5931
|
description?: string | null;
|
|
5886
5932
|
/**
|
|
5887
|
-
* OG / Twitter Card image (1200×630 recommended).
|
|
5933
|
+
* OG / Twitter Card image (1200×630 recommended).
|
|
5888
5934
|
*/
|
|
5889
5935
|
image?: (string | null) | Image;
|
|
5890
5936
|
};
|
|
@@ -5964,11 +6010,11 @@ interface Event {
|
|
|
5964
6010
|
user?: (string | null) | User;
|
|
5965
6011
|
};
|
|
5966
6012
|
/**
|
|
5967
|
-
* Primary start time. For recurring events, this is the first occurrence anchor.
|
|
6013
|
+
* Primary start time. For recurring events, this is the first occurrence anchor.
|
|
5968
6014
|
*/
|
|
5969
6015
|
startsAt: string;
|
|
5970
6016
|
/**
|
|
5971
|
-
* Primary end time. Must be after the start time.
|
|
6017
|
+
* Primary end time. Must be after the start time.
|
|
5972
6018
|
*/
|
|
5973
6019
|
endsAt: string;
|
|
5974
6020
|
/**
|
|
@@ -6078,7 +6124,7 @@ interface Event {
|
|
|
6078
6124
|
*/
|
|
6079
6125
|
description?: string | null;
|
|
6080
6126
|
/**
|
|
6081
|
-
* OG / Twitter Card image (1200×630 recommended).
|
|
6127
|
+
* OG / Twitter Card image (1200×630 recommended).
|
|
6082
6128
|
*/
|
|
6083
6129
|
image?: (string | null) | Image;
|
|
6084
6130
|
};
|
|
@@ -6133,7 +6179,7 @@ interface EventCategory {
|
|
|
6133
6179
|
*/
|
|
6134
6180
|
description?: string | null;
|
|
6135
6181
|
/**
|
|
6136
|
-
* Single representative
|
|
6182
|
+
* Single representative image for this taxonomy entry.
|
|
6137
6183
|
*/
|
|
6138
6184
|
image?: (string | null) | Image;
|
|
6139
6185
|
/**
|
|
@@ -6141,7 +6187,7 @@ interface EventCategory {
|
|
|
6141
6187
|
*/
|
|
6142
6188
|
parent?: (string | null) | EventCategory;
|
|
6143
6189
|
/**
|
|
6144
|
-
* Optional #RRGGBB
|
|
6190
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
6145
6191
|
*/
|
|
6146
6192
|
color?: string | null;
|
|
6147
6193
|
updatedAt: string;
|
|
@@ -6167,11 +6213,11 @@ interface EventTag {
|
|
|
6167
6213
|
*/
|
|
6168
6214
|
description?: string | null;
|
|
6169
6215
|
/**
|
|
6170
|
-
* Single representative
|
|
6216
|
+
* Single representative image for this taxonomy entry.
|
|
6171
6217
|
*/
|
|
6172
6218
|
image?: (string | null) | Image;
|
|
6173
6219
|
/**
|
|
6174
|
-
* Optional #RRGGBB
|
|
6220
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
6175
6221
|
*/
|
|
6176
6222
|
color?: string | null;
|
|
6177
6223
|
updatedAt: string;
|
|
@@ -6197,11 +6243,11 @@ interface EventOccurrence {
|
|
|
6197
6243
|
*/
|
|
6198
6244
|
instanceKey?: string | null;
|
|
6199
6245
|
/**
|
|
6200
|
-
*
|
|
6246
|
+
* Occurrence start time.
|
|
6201
6247
|
*/
|
|
6202
6248
|
startsAt: string;
|
|
6203
6249
|
/**
|
|
6204
|
-
*
|
|
6250
|
+
* Occurrence end time.
|
|
6205
6251
|
*/
|
|
6206
6252
|
endsAt: string;
|
|
6207
6253
|
timezone?: string | null;
|
|
@@ -6225,11 +6271,11 @@ interface EventOccurrence {
|
|
|
6225
6271
|
waitlistCount?: number | null;
|
|
6226
6272
|
checkInWindow?: {
|
|
6227
6273
|
/**
|
|
6228
|
-
*
|
|
6274
|
+
* Check-in opens at this time.
|
|
6229
6275
|
*/
|
|
6230
6276
|
opensAt?: string | null;
|
|
6231
6277
|
/**
|
|
6232
|
-
*
|
|
6278
|
+
* Check-in closes at this time.
|
|
6233
6279
|
*/
|
|
6234
6280
|
closesAt?: string | null;
|
|
6235
6281
|
};
|
|
@@ -6399,7 +6445,7 @@ interface Form {
|
|
|
6399
6445
|
generateSlug?: boolean | null;
|
|
6400
6446
|
slug?: string | null;
|
|
6401
6447
|
/**
|
|
6402
|
-
* Submissions received through this form.
|
|
6448
|
+
* Submissions received through this form.
|
|
6403
6449
|
*/
|
|
6404
6450
|
submissions?: {
|
|
6405
6451
|
docs?: (string | FormSubmission)[];
|
|
@@ -6997,6 +7043,13 @@ interface TenantsSelect<T extends boolean = true> {
|
|
|
6997
7043
|
orderDelivered?: T;
|
|
6998
7044
|
returnRequested?: T;
|
|
6999
7045
|
returnCompleted?: T;
|
|
7046
|
+
senderDisplayName?: T;
|
|
7047
|
+
senderReplyTo?: T;
|
|
7048
|
+
senderDomain?: T;
|
|
7049
|
+
senderLocalpart?: T;
|
|
7050
|
+
senderDomainStatus?: T;
|
|
7051
|
+
senderDomainResendId?: T;
|
|
7052
|
+
senderDomainRecords?: T;
|
|
7000
7053
|
};
|
|
7001
7054
|
members?: T;
|
|
7002
7055
|
updatedAt?: T;
|
|
@@ -7337,6 +7390,10 @@ interface TenantAnalyticsDailySelect<T extends boolean = true> {
|
|
|
7337
7390
|
eventsDropped?: T | {
|
|
7338
7391
|
cardinality?: T;
|
|
7339
7392
|
schema?: T;
|
|
7393
|
+
schemaUnknownEvent?: T;
|
|
7394
|
+
schemaUnknownDim?: T;
|
|
7395
|
+
schemaBadValue?: T;
|
|
7396
|
+
schemaInvalidProps?: T;
|
|
7340
7397
|
late?: T;
|
|
7341
7398
|
origin?: T;
|
|
7342
7399
|
key?: T;
|
|
@@ -7527,6 +7584,7 @@ interface ProductVariantsSelect<T extends boolean = true> {
|
|
|
7527
7584
|
price?: T;
|
|
7528
7585
|
compareAtPrice?: T;
|
|
7529
7586
|
isUnlimited?: T;
|
|
7587
|
+
inventoryPolicy?: T;
|
|
7530
7588
|
stock?: T;
|
|
7531
7589
|
stockAdjustmentReason?: T;
|
|
7532
7590
|
stockAdjustmentNote?: T;
|
|
@@ -7860,6 +7918,7 @@ interface OrdersSelect<T extends boolean = true> {
|
|
|
7860
7918
|
discountCode?: T;
|
|
7861
7919
|
discountAmount?: T;
|
|
7862
7920
|
refundedAmount?: T;
|
|
7921
|
+
currentTotalAmount?: T;
|
|
7863
7922
|
taxAmount?: T;
|
|
7864
7923
|
returnShippingRefundPolicySnapshot?: T;
|
|
7865
7924
|
returns?: T;
|
|
@@ -7867,6 +7926,7 @@ interface OrdersSelect<T extends boolean = true> {
|
|
|
7867
7926
|
placedAt?: T;
|
|
7868
7927
|
confirmedAt?: T;
|
|
7869
7928
|
cancelReason?: T;
|
|
7929
|
+
cancelReasonCode?: T;
|
|
7870
7930
|
canceledAt?: T;
|
|
7871
7931
|
completedAt?: T;
|
|
7872
7932
|
billingAddress?: T | {
|
|
@@ -8412,6 +8472,7 @@ interface CartsSelect<T extends boolean = true> {
|
|
|
8412
8472
|
detailAddress?: T;
|
|
8413
8473
|
deliveryMessage?: T;
|
|
8414
8474
|
};
|
|
8475
|
+
shippingPolicy?: T;
|
|
8415
8476
|
discountCode?: T;
|
|
8416
8477
|
customerNote?: T;
|
|
8417
8478
|
items?: T;
|
|
@@ -8419,6 +8480,7 @@ interface CartsSelect<T extends boolean = true> {
|
|
|
8419
8480
|
currency?: T;
|
|
8420
8481
|
subtotalAmount?: T;
|
|
8421
8482
|
shippingAmount?: T;
|
|
8483
|
+
freeShippingDiscount?: T;
|
|
8422
8484
|
discountAmount?: T;
|
|
8423
8485
|
totalAmount?: T;
|
|
8424
8486
|
cartToken?: T;
|
|
@@ -9088,6 +9150,7 @@ interface CanvasesSelect<T extends boolean = true> {
|
|
|
9088
9150
|
isFeatured?: T;
|
|
9089
9151
|
publishedAt?: T;
|
|
9090
9152
|
metadata?: T;
|
|
9153
|
+
canvasRevision?: T;
|
|
9091
9154
|
updatedAt?: T;
|
|
9092
9155
|
createdAt?: T;
|
|
9093
9156
|
deletedAt?: T;
|