@01.software/sdk 0.41.1 → 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 +208 -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-Bk--pNzW.d.cts → collection-client-B-qVIBnJ.d.cts} +3 -3
- package/dist/{collection-client-BdcxkW7l.d.ts → collection-client-BhCMwIus.d.ts} +3 -3
- package/dist/{const-qGGI7Uii.d.cts → const-BiDujixF.d.cts} +1 -1
- package/dist/{const-HwdntWtG.d.ts → const-pmHlwm3E.d.ts} +1 -1
- package/dist/{index-B1oW50RY.d.ts → index-B1UBDaKz.d.ts} +3 -3
- package/dist/{index-DiXtjVab.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-CqJOgON7.d.cts → payload-types-C7Ul4ElL.d.cts} +181 -115
- package/dist/{payload-types-CqJOgON7.d.ts → payload-types-C7Ul4ElL.d.ts} +181 -115
- 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 +230 -46
- 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 +230 -46
- package/dist/server.js.map +1 -1
- package/dist/{types-DgfXb7iV.d.ts → types-BL7M-EUV.d.cts} +138 -13
- package/dist/{types-BMI3M0nb.d.ts → types-Bf2iCjy8.d.ts} +1 -1
- package/dist/{types-ByLSG-O3.d.cts → types-ChV1t4ei.d.cts} +1 -1
- package/dist/{types-BKa9z9s2.d.cts → types-D5dSNIGs.d.ts} +138 -13
- 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 +1 -1
|
@@ -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
|
*/
|
|
@@ -972,6 +999,10 @@ interface Order {
|
|
|
972
999
|
* Cumulative refunded amount
|
|
973
1000
|
*/
|
|
974
1001
|
refundedAmount?: number | null;
|
|
1002
|
+
/**
|
|
1003
|
+
* Current order total after refunds (totalAmount − refundedAmount)
|
|
1004
|
+
*/
|
|
1005
|
+
currentTotalAmount?: number | null;
|
|
975
1006
|
taxAmount?: number | null;
|
|
976
1007
|
/**
|
|
977
1008
|
* Initial shipping refund policy snapshot at order time
|
|
@@ -991,6 +1022,10 @@ interface Order {
|
|
|
991
1022
|
placedAt?: string | null;
|
|
992
1023
|
confirmedAt?: string | null;
|
|
993
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;
|
|
994
1029
|
canceledAt?: string | null;
|
|
995
1030
|
completedAt?: string | null;
|
|
996
1031
|
billingAddress?: {
|
|
@@ -1065,7 +1100,7 @@ interface Customer {
|
|
|
1065
1100
|
defaultShippingAddress?: (string | null) | CustomerAddress;
|
|
1066
1101
|
defaultBillingAddress?: (string | null) | CustomerAddress;
|
|
1067
1102
|
/**
|
|
1068
|
-
*
|
|
1103
|
+
* Number of this customer's completed orders. Counted automatically.
|
|
1069
1104
|
*/
|
|
1070
1105
|
totalOrderCount?: number | null;
|
|
1071
1106
|
lifetimeValue?: number | null;
|
|
@@ -1261,7 +1296,7 @@ interface CustomerAddress {
|
|
|
1261
1296
|
*/
|
|
1262
1297
|
deliveryRequest?: ('security_office' | 'handoff_in_person' | 'call_before' | 'leave_at_door' | 'other') | null;
|
|
1263
1298
|
/**
|
|
1264
|
-
* Free-form delivery note
|
|
1299
|
+
* Free-form delivery note for the courier.
|
|
1265
1300
|
*/
|
|
1266
1301
|
deliveryNote?: string | null;
|
|
1267
1302
|
updatedAt: string;
|
|
@@ -1277,7 +1312,7 @@ interface CustomerProfile {
|
|
|
1277
1312
|
tenant?: (string | null) | Tenant;
|
|
1278
1313
|
customer: string | Customer;
|
|
1279
1314
|
/**
|
|
1280
|
-
* Public username shown like @01works.
|
|
1315
|
+
* Public username shown like @01works. Must be unique within the workspace.
|
|
1281
1316
|
*/
|
|
1282
1317
|
handle?: string | null;
|
|
1283
1318
|
displayName?: string | null;
|
|
@@ -1314,13 +1349,13 @@ interface OrderItem {
|
|
|
1314
1349
|
tenant?: (string | null) | Tenant;
|
|
1315
1350
|
order: string | Order;
|
|
1316
1351
|
/**
|
|
1317
|
-
*
|
|
1352
|
+
* Product purchased at order time.
|
|
1318
1353
|
*/
|
|
1319
1354
|
product: string | Product;
|
|
1320
1355
|
variant?: (string | null) | ProductVariant;
|
|
1321
1356
|
quantity: number;
|
|
1322
1357
|
/**
|
|
1323
|
-
* Unit-price snapshot at order time.
|
|
1358
|
+
* Unit-price snapshot at order time.
|
|
1324
1359
|
*/
|
|
1325
1360
|
unitPrice: number;
|
|
1326
1361
|
variantTitle?: string | null;
|
|
@@ -1334,7 +1369,7 @@ interface OrderItem {
|
|
|
1334
1369
|
totalPrice: number;
|
|
1335
1370
|
productTitle?: string | null;
|
|
1336
1371
|
/**
|
|
1337
|
-
* Option combination snapshot at order time.
|
|
1372
|
+
* Option combination snapshot at order time.
|
|
1338
1373
|
*/
|
|
1339
1374
|
optionSelection?: {
|
|
1340
1375
|
[k: string]: unknown;
|
|
@@ -1348,15 +1383,15 @@ interface OrderItem {
|
|
|
1348
1383
|
*/
|
|
1349
1384
|
currency?: string | null;
|
|
1350
1385
|
/**
|
|
1351
|
-
* 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.
|
|
1352
1387
|
*/
|
|
1353
1388
|
discountAllocation?: number | null;
|
|
1354
1389
|
/**
|
|
1355
|
-
* Per-unit price snapshot after discount allocation
|
|
1390
|
+
* Per-unit price snapshot after discount allocation at order time.
|
|
1356
1391
|
*/
|
|
1357
1392
|
discountedUnitPrice?: number | null;
|
|
1358
1393
|
/**
|
|
1359
|
-
* Line total snapshot after discount allocation at order time
|
|
1394
|
+
* Line total snapshot after discount allocation at order time.
|
|
1360
1395
|
*/
|
|
1361
1396
|
discountedTotalPrice?: number | null;
|
|
1362
1397
|
updatedAt: string;
|
|
@@ -1387,7 +1422,7 @@ interface Product {
|
|
|
1387
1422
|
*/
|
|
1388
1423
|
images?: (string | Image)[] | null;
|
|
1389
1424
|
/**
|
|
1390
|
-
*
|
|
1425
|
+
* Attach videos to this content.
|
|
1391
1426
|
*/
|
|
1392
1427
|
videos?: (string | Video)[] | null;
|
|
1393
1428
|
/**
|
|
@@ -1502,7 +1537,7 @@ interface Product {
|
|
|
1502
1537
|
*/
|
|
1503
1538
|
description?: string | null;
|
|
1504
1539
|
/**
|
|
1505
|
-
* OG / Twitter Card image (1200×630 recommended).
|
|
1540
|
+
* OG / Twitter Card image (1200×630 recommended).
|
|
1506
1541
|
*/
|
|
1507
1542
|
image?: (string | null) | Image;
|
|
1508
1543
|
};
|
|
@@ -1577,7 +1612,7 @@ interface Video {
|
|
|
1577
1612
|
categories?: (string | VideoCategory)[] | null;
|
|
1578
1613
|
tags?: (string | VideoTag)[] | null;
|
|
1579
1614
|
/**
|
|
1580
|
-
* Mux processing status. Updated
|
|
1615
|
+
* Mux processing status. Updated automatically.
|
|
1581
1616
|
*/
|
|
1582
1617
|
muxStatus?: ('waiting' | 'preparing' | 'ready' | 'errored') | null;
|
|
1583
1618
|
durationSeconds?: number | null;
|
|
@@ -1615,7 +1650,7 @@ interface Video {
|
|
|
1615
1650
|
*/
|
|
1616
1651
|
description?: string | null;
|
|
1617
1652
|
/**
|
|
1618
|
-
* OG / Twitter Card image (1200×630 recommended).
|
|
1653
|
+
* OG / Twitter Card image (1200×630 recommended).
|
|
1619
1654
|
*/
|
|
1620
1655
|
image?: (string | null) | Image;
|
|
1621
1656
|
};
|
|
@@ -1676,7 +1711,7 @@ interface LiveStream {
|
|
|
1676
1711
|
*/
|
|
1677
1712
|
reconnectWindowSeconds?: number | null;
|
|
1678
1713
|
/**
|
|
1679
|
-
* Mux live stream status. Updated
|
|
1714
|
+
* Mux live stream status. Updated automatically.
|
|
1680
1715
|
*/
|
|
1681
1716
|
muxStatus?: ('idle' | 'active' | 'disabled') | null;
|
|
1682
1717
|
muxLiveStreamId?: string | null;
|
|
@@ -1713,7 +1748,7 @@ interface LiveStream {
|
|
|
1713
1748
|
*/
|
|
1714
1749
|
description?: string | null;
|
|
1715
1750
|
/**
|
|
1716
|
-
* OG / Twitter Card image (1200×630 recommended).
|
|
1751
|
+
* OG / Twitter Card image (1200×630 recommended).
|
|
1717
1752
|
*/
|
|
1718
1753
|
image?: (string | null) | Image;
|
|
1719
1754
|
};
|
|
@@ -1761,7 +1796,7 @@ interface VideoCategory {
|
|
|
1761
1796
|
*/
|
|
1762
1797
|
description?: string | null;
|
|
1763
1798
|
/**
|
|
1764
|
-
* Single representative
|
|
1799
|
+
* Single representative image for this taxonomy entry.
|
|
1765
1800
|
*/
|
|
1766
1801
|
image?: (string | null) | Image;
|
|
1767
1802
|
/**
|
|
@@ -1769,7 +1804,7 @@ interface VideoCategory {
|
|
|
1769
1804
|
*/
|
|
1770
1805
|
parent?: (string | null) | VideoCategory;
|
|
1771
1806
|
/**
|
|
1772
|
-
* Optional #RRGGBB
|
|
1807
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
1773
1808
|
*/
|
|
1774
1809
|
color?: string | null;
|
|
1775
1810
|
updatedAt: string;
|
|
@@ -1795,11 +1830,11 @@ interface VideoTag {
|
|
|
1795
1830
|
*/
|
|
1796
1831
|
description?: string | null;
|
|
1797
1832
|
/**
|
|
1798
|
-
* Single representative
|
|
1833
|
+
* Single representative image for this taxonomy entry.
|
|
1799
1834
|
*/
|
|
1800
1835
|
image?: (string | null) | Image;
|
|
1801
1836
|
/**
|
|
1802
|
-
* Optional #RRGGBB
|
|
1837
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
1803
1838
|
*/
|
|
1804
1839
|
color?: string | null;
|
|
1805
1840
|
updatedAt: string;
|
|
@@ -1840,6 +1875,10 @@ interface ProductVariant {
|
|
|
1840
1875
|
* Sell without tracking inventory
|
|
1841
1876
|
*/
|
|
1842
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;
|
|
1843
1882
|
/**
|
|
1844
1883
|
* Available quantity is stock minus reserved stock.
|
|
1845
1884
|
*/
|
|
@@ -1877,7 +1916,7 @@ interface ProductVariant {
|
|
|
1877
1916
|
*/
|
|
1878
1917
|
barcode?: string | null;
|
|
1879
1918
|
/**
|
|
1880
|
-
*
|
|
1919
|
+
* Enter this variant weight as an integer in grams.
|
|
1881
1920
|
*/
|
|
1882
1921
|
weight?: number | null;
|
|
1883
1922
|
/**
|
|
@@ -1938,7 +1977,7 @@ interface InventoryAdjustment {
|
|
|
1938
1977
|
availableBefore: number;
|
|
1939
1978
|
availableAfter: number;
|
|
1940
1979
|
/**
|
|
1941
|
-
*
|
|
1980
|
+
* Who performed the adjustment (a user, a customer, or the system).
|
|
1942
1981
|
*/
|
|
1943
1982
|
actor: string;
|
|
1944
1983
|
note?: string | null;
|
|
@@ -2147,7 +2186,7 @@ interface ProductCategory {
|
|
|
2147
2186
|
*/
|
|
2148
2187
|
description?: string | null;
|
|
2149
2188
|
/**
|
|
2150
|
-
* Single representative
|
|
2189
|
+
* Single representative image for this taxonomy entry.
|
|
2151
2190
|
*/
|
|
2152
2191
|
image?: (string | null) | Image;
|
|
2153
2192
|
/**
|
|
@@ -2155,7 +2194,7 @@ interface ProductCategory {
|
|
|
2155
2194
|
*/
|
|
2156
2195
|
parent?: (string | null) | ProductCategory;
|
|
2157
2196
|
/**
|
|
2158
|
-
* Optional #RRGGBB
|
|
2197
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
2159
2198
|
*/
|
|
2160
2199
|
color?: string | null;
|
|
2161
2200
|
updatedAt: string;
|
|
@@ -2183,11 +2222,11 @@ interface ProductTag {
|
|
|
2183
2222
|
*/
|
|
2184
2223
|
description?: string | null;
|
|
2185
2224
|
/**
|
|
2186
|
-
* Single representative
|
|
2225
|
+
* Single representative image for this taxonomy entry.
|
|
2187
2226
|
*/
|
|
2188
2227
|
image?: (string | null) | Image;
|
|
2189
2228
|
/**
|
|
2190
|
-
* Optional #RRGGBB
|
|
2229
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
2191
2230
|
*/
|
|
2192
2231
|
color?: string | null;
|
|
2193
2232
|
updatedAt: string;
|
|
@@ -2267,7 +2306,7 @@ interface Brand {
|
|
|
2267
2306
|
*/
|
|
2268
2307
|
description?: string | null;
|
|
2269
2308
|
/**
|
|
2270
|
-
* OG / Twitter Card image (1200×630 recommended).
|
|
2309
|
+
* OG / Twitter Card image (1200×630 recommended).
|
|
2271
2310
|
*/
|
|
2272
2311
|
image?: (string | null) | BrandLogo;
|
|
2273
2312
|
};
|
|
@@ -2295,7 +2334,7 @@ interface BrandLogo {
|
|
|
2295
2334
|
id: string;
|
|
2296
2335
|
tenant?: (string | null) | Tenant;
|
|
2297
2336
|
/**
|
|
2298
|
-
*
|
|
2337
|
+
* Alt text for the image, used by screen readers and search/share previews.
|
|
2299
2338
|
*/
|
|
2300
2339
|
alt?: string | null;
|
|
2301
2340
|
/**
|
|
@@ -2525,7 +2564,7 @@ interface ProductCollection {
|
|
|
2525
2564
|
*/
|
|
2526
2565
|
description?: string | null;
|
|
2527
2566
|
/**
|
|
2528
|
-
* OG / Twitter Card image (1200×630 recommended).
|
|
2567
|
+
* OG / Twitter Card image (1200×630 recommended).
|
|
2529
2568
|
*/
|
|
2530
2569
|
image?: (string | null) | Image;
|
|
2531
2570
|
};
|
|
@@ -2660,7 +2699,7 @@ interface Transaction {
|
|
|
2660
2699
|
order: string | Order;
|
|
2661
2700
|
amount?: number | null;
|
|
2662
2701
|
/**
|
|
2663
|
-
* Payment method snapshot returned by the provider.
|
|
2702
|
+
* Payment method snapshot returned by the provider.
|
|
2664
2703
|
*/
|
|
2665
2704
|
paymentMethod?: string | null;
|
|
2666
2705
|
/**
|
|
@@ -2730,25 +2769,25 @@ interface ApiKey {
|
|
|
2730
2769
|
*/
|
|
2731
2770
|
displaySuffix: string;
|
|
2732
2771
|
/**
|
|
2733
|
-
* Capability scopes. Default is read+write
|
|
2772
|
+
* Capability scopes for the key. Default is read+write.
|
|
2734
2773
|
*/
|
|
2735
2774
|
scopes?: ('read' | 'write' | 'webhook' | 'analytics' | 'super-admin')[] | null;
|
|
2736
2775
|
/**
|
|
2737
|
-
* User who issued the key.
|
|
2776
|
+
* User who issued the key.
|
|
2738
2777
|
*/
|
|
2739
2778
|
createdBy?: (string | null) | User;
|
|
2740
2779
|
/**
|
|
2741
|
-
* IP address of the key creation request.
|
|
2780
|
+
* IP address of the key creation request.
|
|
2742
2781
|
*/
|
|
2743
2782
|
createdByIp?: string | null;
|
|
2744
2783
|
lastUsedAt?: string | null;
|
|
2745
2784
|
/**
|
|
2746
|
-
* Last IP address that used the key.
|
|
2785
|
+
* Last IP address that used the key.
|
|
2747
2786
|
*/
|
|
2748
2787
|
lastUsedIp?: string | null;
|
|
2749
2788
|
revokedAt?: string | null;
|
|
2750
2789
|
/**
|
|
2751
|
-
* User who revoked the key.
|
|
2790
|
+
* User who revoked the key.
|
|
2752
2791
|
*/
|
|
2753
2792
|
revokedBy?: (string | null) | User;
|
|
2754
2793
|
/**
|
|
@@ -2784,17 +2823,17 @@ interface PersonalAccessToken {
|
|
|
2784
2823
|
*/
|
|
2785
2824
|
defaultTenant?: string | null;
|
|
2786
2825
|
/**
|
|
2787
|
-
* IP address of the PAT creation request.
|
|
2826
|
+
* IP address of the PAT creation request.
|
|
2788
2827
|
*/
|
|
2789
2828
|
createdByIp?: string | null;
|
|
2790
2829
|
lastUsedAt?: string | null;
|
|
2791
2830
|
/**
|
|
2792
|
-
* Last IP address that used the PAT.
|
|
2831
|
+
* Last IP address that used the PAT.
|
|
2793
2832
|
*/
|
|
2794
2833
|
lastUsedIp?: string | null;
|
|
2795
2834
|
revokedAt?: string | null;
|
|
2796
2835
|
/**
|
|
2797
|
-
* User who revoked the PAT.
|
|
2836
|
+
* User who revoked the PAT.
|
|
2798
2837
|
*/
|
|
2799
2838
|
revokedBy?: (string | null) | User;
|
|
2800
2839
|
/**
|
|
@@ -3150,7 +3189,7 @@ interface TenantLogo {
|
|
|
3150
3189
|
id: string;
|
|
3151
3190
|
tenant?: (string | null) | Tenant;
|
|
3152
3191
|
/**
|
|
3153
|
-
*
|
|
3192
|
+
* Alt text for the image, used by screen readers and search/share previews.
|
|
3154
3193
|
*/
|
|
3155
3194
|
alt?: string | null;
|
|
3156
3195
|
/**
|
|
@@ -3257,7 +3296,7 @@ interface TenantEntitlement {
|
|
|
3257
3296
|
priority: number;
|
|
3258
3297
|
startsAt: string;
|
|
3259
3298
|
/**
|
|
3260
|
-
* Entitlement end date. Required
|
|
3299
|
+
* Entitlement end date. Required for promo / trial sources.
|
|
3261
3300
|
*/
|
|
3262
3301
|
endsAt?: string | null;
|
|
3263
3302
|
reason?: string | null;
|
|
@@ -3487,6 +3526,10 @@ interface TenantAnalyticsDaily {
|
|
|
3487
3526
|
eventsDropped?: {
|
|
3488
3527
|
cardinality?: number | null;
|
|
3489
3528
|
schema?: number | null;
|
|
3529
|
+
schemaUnknownEvent?: number | null;
|
|
3530
|
+
schemaUnknownDim?: number | null;
|
|
3531
|
+
schemaBadValue?: number | null;
|
|
3532
|
+
schemaInvalidProps?: number | null;
|
|
3490
3533
|
late?: number | null;
|
|
3491
3534
|
origin?: number | null;
|
|
3492
3535
|
key?: number | null;
|
|
@@ -3586,7 +3629,7 @@ interface AnalyticsEventSchema {
|
|
|
3586
3629
|
key: string;
|
|
3587
3630
|
type: 'enum' | 'boolean';
|
|
3588
3631
|
/**
|
|
3589
|
-
* 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.
|
|
3590
3633
|
*/
|
|
3591
3634
|
allowedValues?: string | null;
|
|
3592
3635
|
description?: string | null;
|
|
@@ -3661,15 +3704,15 @@ interface OrderStatusLog {
|
|
|
3661
3704
|
tenant?: (string | null) | Tenant;
|
|
3662
3705
|
order: string | Order;
|
|
3663
3706
|
/**
|
|
3664
|
-
*
|
|
3707
|
+
* Order status before the change.
|
|
3665
3708
|
*/
|
|
3666
3709
|
fromStatus: 'pending' | 'paid' | 'canceled' | 'refunded' | 'preparing' | 'shipped' | 'delivered' | 'confirmed' | 'return_requested' | 'return_processing' | 'returned';
|
|
3667
3710
|
/**
|
|
3668
|
-
*
|
|
3711
|
+
* Order status after the change.
|
|
3669
3712
|
*/
|
|
3670
3713
|
toStatus: 'pending' | 'paid' | 'canceled' | 'refunded' | 'preparing' | 'shipped' | 'delivered' | 'confirmed' | 'return_requested' | 'return_processing' | 'returned';
|
|
3671
3714
|
/**
|
|
3672
|
-
*
|
|
3715
|
+
* Who changed the status (a user, the API, or a system process).
|
|
3673
3716
|
*/
|
|
3674
3717
|
changedBy: string;
|
|
3675
3718
|
reason?: string | null;
|
|
@@ -3699,7 +3742,7 @@ interface InventoryReservation {
|
|
|
3699
3742
|
variant: string | ProductVariant;
|
|
3700
3743
|
quantity: number;
|
|
3701
3744
|
/**
|
|
3702
|
-
*
|
|
3745
|
+
* Inventory reservation status. Managed automatically by the server.
|
|
3703
3746
|
*/
|
|
3704
3747
|
status: 'pending' | 'held' | 'released' | 'consumed';
|
|
3705
3748
|
/**
|
|
@@ -3793,6 +3836,10 @@ interface Cart {
|
|
|
3793
3836
|
detailAddress?: string | null;
|
|
3794
3837
|
deliveryMessage?: string | null;
|
|
3795
3838
|
};
|
|
3839
|
+
/**
|
|
3840
|
+
* Cart shipping policy. Falls back to the default policy when unset.
|
|
3841
|
+
*/
|
|
3842
|
+
shippingPolicy?: (string | null) | ShippingPolicy;
|
|
3796
3843
|
discountCode?: string | null;
|
|
3797
3844
|
/**
|
|
3798
3845
|
* Customer note
|
|
@@ -3810,6 +3857,7 @@ interface Cart {
|
|
|
3810
3857
|
* Amount in KRW (won)
|
|
3811
3858
|
*/
|
|
3812
3859
|
shippingAmount?: number | null;
|
|
3860
|
+
freeShippingDiscount?: boolean | null;
|
|
3813
3861
|
/**
|
|
3814
3862
|
* Amount in KRW (won)
|
|
3815
3863
|
*/
|
|
@@ -3844,15 +3892,15 @@ interface CartItem {
|
|
|
3844
3892
|
*/
|
|
3845
3893
|
unitPrice: number;
|
|
3846
3894
|
/**
|
|
3847
|
-
*
|
|
3895
|
+
* Header discount allocated to this line. Calculated automatically.
|
|
3848
3896
|
*/
|
|
3849
3897
|
discountAllocation?: number | null;
|
|
3850
3898
|
/**
|
|
3851
|
-
* Per-unit price after discount allocation
|
|
3899
|
+
* Per-unit price after discount allocation. Calculated automatically.
|
|
3852
3900
|
*/
|
|
3853
3901
|
discountedUnitPrice?: number | null;
|
|
3854
3902
|
/**
|
|
3855
|
-
* Line total after discount allocation
|
|
3903
|
+
* Line total after discount allocation. Calculated automatically.
|
|
3856
3904
|
*/
|
|
3857
3905
|
discountedTotalPrice?: number | null;
|
|
3858
3906
|
metadata?: {
|
|
@@ -4034,15 +4082,15 @@ interface CustomerProfileStat {
|
|
|
4034
4082
|
tenant?: (string | null) | Tenant;
|
|
4035
4083
|
profile: string | CustomerProfile;
|
|
4036
4084
|
/**
|
|
4037
|
-
*
|
|
4085
|
+
* Number of community posts authored by this profile. Counted automatically.
|
|
4038
4086
|
*/
|
|
4039
4087
|
postCount?: number | null;
|
|
4040
4088
|
/**
|
|
4041
|
-
*
|
|
4089
|
+
* Number of community comments authored by this profile. Counted automatically.
|
|
4042
4090
|
*/
|
|
4043
4091
|
commentCount?: number | null;
|
|
4044
4092
|
/**
|
|
4045
|
-
*
|
|
4093
|
+
* Number of community reactions made by this profile. Counted automatically.
|
|
4046
4094
|
*/
|
|
4047
4095
|
reactionCount?: number | null;
|
|
4048
4096
|
}
|
|
@@ -4223,7 +4271,7 @@ interface Article {
|
|
|
4223
4271
|
categories?: (string | ArticleCategory)[] | null;
|
|
4224
4272
|
tags?: (string | ArticleTag)[] | null;
|
|
4225
4273
|
/**
|
|
4226
|
-
*
|
|
4274
|
+
* Attach videos to this content.
|
|
4227
4275
|
*/
|
|
4228
4276
|
videos?: (string | Video)[] | null;
|
|
4229
4277
|
seo?: {
|
|
@@ -4253,7 +4301,7 @@ interface Article {
|
|
|
4253
4301
|
*/
|
|
4254
4302
|
description?: string | null;
|
|
4255
4303
|
/**
|
|
4256
|
-
* OG / Twitter Card image (1200×630 recommended).
|
|
4304
|
+
* OG / Twitter Card image (1200×630 recommended).
|
|
4257
4305
|
*/
|
|
4258
4306
|
image?: (string | null) | Image;
|
|
4259
4307
|
};
|
|
@@ -4313,7 +4361,7 @@ interface ArticleAuthor {
|
|
|
4313
4361
|
bio?: string | null;
|
|
4314
4362
|
email?: string | null;
|
|
4315
4363
|
/**
|
|
4316
|
-
* Articles linked to this author.
|
|
4364
|
+
* Articles linked to this author.
|
|
4317
4365
|
*/
|
|
4318
4366
|
articles?: {
|
|
4319
4367
|
docs?: (string | Article)[];
|
|
@@ -4347,7 +4395,7 @@ interface ArticleCategory {
|
|
|
4347
4395
|
*/
|
|
4348
4396
|
description?: string | null;
|
|
4349
4397
|
/**
|
|
4350
|
-
* Single representative
|
|
4398
|
+
* Single representative image for this taxonomy entry.
|
|
4351
4399
|
*/
|
|
4352
4400
|
image?: (string | null) | Image;
|
|
4353
4401
|
/**
|
|
@@ -4355,7 +4403,7 @@ interface ArticleCategory {
|
|
|
4355
4403
|
*/
|
|
4356
4404
|
parent?: (string | null) | ArticleCategory;
|
|
4357
4405
|
/**
|
|
4358
|
-
* Optional #RRGGBB
|
|
4406
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
4359
4407
|
*/
|
|
4360
4408
|
color?: string | null;
|
|
4361
4409
|
updatedAt: string;
|
|
@@ -4381,11 +4429,11 @@ interface ArticleTag {
|
|
|
4381
4429
|
*/
|
|
4382
4430
|
description?: string | null;
|
|
4383
4431
|
/**
|
|
4384
|
-
* Single representative
|
|
4432
|
+
* Single representative image for this taxonomy entry.
|
|
4385
4433
|
*/
|
|
4386
4434
|
image?: (string | null) | Image;
|
|
4387
4435
|
/**
|
|
4388
|
-
* Optional #RRGGBB
|
|
4436
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
4389
4437
|
*/
|
|
4390
4438
|
color?: string | null;
|
|
4391
4439
|
updatedAt: string;
|
|
@@ -4427,7 +4475,7 @@ interface Document {
|
|
|
4427
4475
|
[k: string]: unknown;
|
|
4428
4476
|
} | null;
|
|
4429
4477
|
/**
|
|
4430
|
-
*
|
|
4478
|
+
* Attach videos to this content.
|
|
4431
4479
|
*/
|
|
4432
4480
|
videos?: (string | Video)[] | null;
|
|
4433
4481
|
/**
|
|
@@ -4485,7 +4533,7 @@ interface Document {
|
|
|
4485
4533
|
*/
|
|
4486
4534
|
description?: string | null;
|
|
4487
4535
|
/**
|
|
4488
|
-
* OG / Twitter Card image (1200×630 recommended).
|
|
4536
|
+
* OG / Twitter Card image (1200×630 recommended).
|
|
4489
4537
|
*/
|
|
4490
4538
|
image?: (string | null) | Image;
|
|
4491
4539
|
};
|
|
@@ -4536,7 +4584,7 @@ interface DocumentCategory {
|
|
|
4536
4584
|
*/
|
|
4537
4585
|
description?: string | null;
|
|
4538
4586
|
/**
|
|
4539
|
-
* Single representative
|
|
4587
|
+
* Single representative image for this taxonomy entry.
|
|
4540
4588
|
*/
|
|
4541
4589
|
image?: (string | null) | Image;
|
|
4542
4590
|
/**
|
|
@@ -4544,7 +4592,7 @@ interface DocumentCategory {
|
|
|
4544
4592
|
*/
|
|
4545
4593
|
parent?: (string | null) | DocumentCategory;
|
|
4546
4594
|
/**
|
|
4547
|
-
* Optional #RRGGBB
|
|
4595
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
4548
4596
|
*/
|
|
4549
4597
|
color?: string | null;
|
|
4550
4598
|
updatedAt: string;
|
|
@@ -4572,11 +4620,11 @@ interface DocumentType {
|
|
|
4572
4620
|
*/
|
|
4573
4621
|
description?: string | null;
|
|
4574
4622
|
/**
|
|
4575
|
-
* Single representative
|
|
4623
|
+
* Single representative image for this taxonomy entry.
|
|
4576
4624
|
*/
|
|
4577
4625
|
image?: (string | null) | Image;
|
|
4578
4626
|
/**
|
|
4579
|
-
* Optional #RRGGBB
|
|
4627
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
4580
4628
|
*/
|
|
4581
4629
|
color?: string | null;
|
|
4582
4630
|
updatedAt: string;
|
|
@@ -4605,7 +4653,7 @@ interface Playlist {
|
|
|
4605
4653
|
categories?: (string | PlaylistCategory)[] | null;
|
|
4606
4654
|
tags?: (string | PlaylistTag)[] | null;
|
|
4607
4655
|
/**
|
|
4608
|
-
* Tracks included in this playlist.
|
|
4656
|
+
* Tracks included in this playlist.
|
|
4609
4657
|
*/
|
|
4610
4658
|
tracks?: (string | Track)[] | null;
|
|
4611
4659
|
seo?: {
|
|
@@ -4635,7 +4683,7 @@ interface Playlist {
|
|
|
4635
4683
|
*/
|
|
4636
4684
|
description?: string | null;
|
|
4637
4685
|
/**
|
|
4638
|
-
* OG / Twitter Card image (1200×630 recommended).
|
|
4686
|
+
* OG / Twitter Card image (1200×630 recommended).
|
|
4639
4687
|
*/
|
|
4640
4688
|
image?: (string | null) | Image;
|
|
4641
4689
|
};
|
|
@@ -4675,7 +4723,7 @@ interface PlaylistCategory {
|
|
|
4675
4723
|
*/
|
|
4676
4724
|
description?: string | null;
|
|
4677
4725
|
/**
|
|
4678
|
-
* Single representative
|
|
4726
|
+
* Single representative image for this taxonomy entry.
|
|
4679
4727
|
*/
|
|
4680
4728
|
image?: (string | null) | Image;
|
|
4681
4729
|
/**
|
|
@@ -4683,7 +4731,7 @@ interface PlaylistCategory {
|
|
|
4683
4731
|
*/
|
|
4684
4732
|
parent?: (string | null) | PlaylistCategory;
|
|
4685
4733
|
/**
|
|
4686
|
-
* Optional #RRGGBB
|
|
4734
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
4687
4735
|
*/
|
|
4688
4736
|
color?: string | null;
|
|
4689
4737
|
updatedAt: string;
|
|
@@ -4709,11 +4757,11 @@ interface PlaylistTag {
|
|
|
4709
4757
|
*/
|
|
4710
4758
|
description?: string | null;
|
|
4711
4759
|
/**
|
|
4712
|
-
* Single representative
|
|
4760
|
+
* Single representative image for this taxonomy entry.
|
|
4713
4761
|
*/
|
|
4714
4762
|
image?: (string | null) | Image;
|
|
4715
4763
|
/**
|
|
4716
|
-
* Optional #RRGGBB
|
|
4764
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
4717
4765
|
*/
|
|
4718
4766
|
color?: string | null;
|
|
4719
4767
|
updatedAt: string;
|
|
@@ -4790,7 +4838,7 @@ interface TrackCategory {
|
|
|
4790
4838
|
*/
|
|
4791
4839
|
description?: string | null;
|
|
4792
4840
|
/**
|
|
4793
|
-
* Single representative
|
|
4841
|
+
* Single representative image for this taxonomy entry.
|
|
4794
4842
|
*/
|
|
4795
4843
|
image?: (string | null) | Image;
|
|
4796
4844
|
/**
|
|
@@ -4798,7 +4846,7 @@ interface TrackCategory {
|
|
|
4798
4846
|
*/
|
|
4799
4847
|
parent?: (string | null) | TrackCategory;
|
|
4800
4848
|
/**
|
|
4801
|
-
* Optional #RRGGBB
|
|
4849
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
4802
4850
|
*/
|
|
4803
4851
|
color?: string | null;
|
|
4804
4852
|
updatedAt: string;
|
|
@@ -4824,11 +4872,11 @@ interface TrackTag {
|
|
|
4824
4872
|
*/
|
|
4825
4873
|
description?: string | null;
|
|
4826
4874
|
/**
|
|
4827
|
-
* Single representative
|
|
4875
|
+
* Single representative image for this taxonomy entry.
|
|
4828
4876
|
*/
|
|
4829
4877
|
image?: (string | null) | Image;
|
|
4830
4878
|
/**
|
|
4831
|
-
* Optional #RRGGBB
|
|
4879
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
4832
4880
|
*/
|
|
4833
4881
|
color?: string | null;
|
|
4834
4882
|
updatedAt: string;
|
|
@@ -4880,7 +4928,7 @@ interface Gallery {
|
|
|
4880
4928
|
*/
|
|
4881
4929
|
description?: string | null;
|
|
4882
4930
|
/**
|
|
4883
|
-
*
|
|
4931
|
+
* Attach videos to this content.
|
|
4884
4932
|
*/
|
|
4885
4933
|
videos?: (string | Video)[] | null;
|
|
4886
4934
|
categories?: (string | GalleryCategory)[] | null;
|
|
@@ -4917,7 +4965,7 @@ interface Gallery {
|
|
|
4917
4965
|
*/
|
|
4918
4966
|
description?: string | null;
|
|
4919
4967
|
/**
|
|
4920
|
-
* OG / Twitter Card image (1200×630 recommended).
|
|
4968
|
+
* OG / Twitter Card image (1200×630 recommended).
|
|
4921
4969
|
*/
|
|
4922
4970
|
image?: (string | null) | Image;
|
|
4923
4971
|
};
|
|
@@ -4958,7 +5006,7 @@ interface GalleryCategory {
|
|
|
4958
5006
|
*/
|
|
4959
5007
|
description?: string | null;
|
|
4960
5008
|
/**
|
|
4961
|
-
* Single representative
|
|
5009
|
+
* Single representative image for this taxonomy entry.
|
|
4962
5010
|
*/
|
|
4963
5011
|
image?: (string | null) | Image;
|
|
4964
5012
|
/**
|
|
@@ -4966,7 +5014,7 @@ interface GalleryCategory {
|
|
|
4966
5014
|
*/
|
|
4967
5015
|
parent?: (string | null) | GalleryCategory;
|
|
4968
5016
|
/**
|
|
4969
|
-
* Optional #RRGGBB
|
|
5017
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
4970
5018
|
*/
|
|
4971
5019
|
color?: string | null;
|
|
4972
5020
|
updatedAt: string;
|
|
@@ -4992,11 +5040,11 @@ interface GalleryTag {
|
|
|
4992
5040
|
*/
|
|
4993
5041
|
description?: string | null;
|
|
4994
5042
|
/**
|
|
4995
|
-
* Single representative
|
|
5043
|
+
* Single representative image for this taxonomy entry.
|
|
4996
5044
|
*/
|
|
4997
5045
|
image?: (string | null) | Image;
|
|
4998
5046
|
/**
|
|
4999
|
-
* Optional #RRGGBB
|
|
5047
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
5000
5048
|
*/
|
|
5001
5049
|
color?: string | null;
|
|
5002
5050
|
updatedAt: string;
|
|
@@ -5116,7 +5164,7 @@ interface LinkCategory {
|
|
|
5116
5164
|
*/
|
|
5117
5165
|
description?: string | null;
|
|
5118
5166
|
/**
|
|
5119
|
-
* Single representative
|
|
5167
|
+
* Single representative image for this taxonomy entry.
|
|
5120
5168
|
*/
|
|
5121
5169
|
image?: (string | null) | Image;
|
|
5122
5170
|
/**
|
|
@@ -5124,7 +5172,7 @@ interface LinkCategory {
|
|
|
5124
5172
|
*/
|
|
5125
5173
|
parent?: (string | null) | LinkCategory;
|
|
5126
5174
|
/**
|
|
5127
|
-
* Optional #RRGGBB
|
|
5175
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
5128
5176
|
*/
|
|
5129
5177
|
color?: string | null;
|
|
5130
5178
|
updatedAt: string;
|
|
@@ -5150,11 +5198,11 @@ interface LinkTag {
|
|
|
5150
5198
|
*/
|
|
5151
5199
|
description?: string | null;
|
|
5152
5200
|
/**
|
|
5153
|
-
* Single representative
|
|
5201
|
+
* Single representative image for this taxonomy entry.
|
|
5154
5202
|
*/
|
|
5155
5203
|
image?: (string | null) | Image;
|
|
5156
5204
|
/**
|
|
5157
|
-
* Optional #RRGGBB
|
|
5205
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
5158
5206
|
*/
|
|
5159
5207
|
color?: string | null;
|
|
5160
5208
|
updatedAt: string;
|
|
@@ -5180,7 +5228,7 @@ interface Canvase {
|
|
|
5180
5228
|
*/
|
|
5181
5229
|
description?: string | null;
|
|
5182
5230
|
/**
|
|
5183
|
-
*
|
|
5231
|
+
* Attach videos to this content.
|
|
5184
5232
|
*/
|
|
5185
5233
|
videos?: (string | Video)[] | null;
|
|
5186
5234
|
canvas?: {
|
|
@@ -5215,7 +5263,7 @@ interface Canvase {
|
|
|
5215
5263
|
*/
|
|
5216
5264
|
description?: string | null;
|
|
5217
5265
|
/**
|
|
5218
|
-
* OG / Twitter Card image (1200×630 recommended).
|
|
5266
|
+
* OG / Twitter Card image (1200×630 recommended).
|
|
5219
5267
|
*/
|
|
5220
5268
|
image?: (string | null) | Image;
|
|
5221
5269
|
};
|
|
@@ -5232,6 +5280,7 @@ interface Canvase {
|
|
|
5232
5280
|
metadata?: {
|
|
5233
5281
|
[k: string]: unknown;
|
|
5234
5282
|
} | unknown[] | string | number | boolean | null;
|
|
5283
|
+
canvasRevision?: string | null;
|
|
5235
5284
|
updatedAt: string;
|
|
5236
5285
|
createdAt: string;
|
|
5237
5286
|
deletedAt?: string | null;
|
|
@@ -5255,7 +5304,7 @@ interface CanvasCategory {
|
|
|
5255
5304
|
*/
|
|
5256
5305
|
description?: string | null;
|
|
5257
5306
|
/**
|
|
5258
|
-
* Single representative
|
|
5307
|
+
* Single representative image for this taxonomy entry.
|
|
5259
5308
|
*/
|
|
5260
5309
|
image?: (string | null) | Image;
|
|
5261
5310
|
/**
|
|
@@ -5263,7 +5312,7 @@ interface CanvasCategory {
|
|
|
5263
5312
|
*/
|
|
5264
5313
|
parent?: (string | null) | CanvasCategory;
|
|
5265
5314
|
/**
|
|
5266
|
-
* Optional #RRGGBB
|
|
5315
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
5267
5316
|
*/
|
|
5268
5317
|
color?: string | null;
|
|
5269
5318
|
updatedAt: string;
|
|
@@ -5289,11 +5338,11 @@ interface CanvasTag {
|
|
|
5289
5338
|
*/
|
|
5290
5339
|
description?: string | null;
|
|
5291
5340
|
/**
|
|
5292
|
-
* Single representative
|
|
5341
|
+
* Single representative image for this taxonomy entry.
|
|
5293
5342
|
*/
|
|
5294
5343
|
image?: (string | null) | Image;
|
|
5295
5344
|
/**
|
|
5296
|
-
* Optional #RRGGBB
|
|
5345
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
5297
5346
|
*/
|
|
5298
5347
|
color?: string | null;
|
|
5299
5348
|
updatedAt: string;
|
|
@@ -5539,11 +5588,11 @@ interface Post {
|
|
|
5539
5588
|
*/
|
|
5540
5589
|
viewCount?: number | null;
|
|
5541
5590
|
/**
|
|
5542
|
-
*
|
|
5591
|
+
* Number of comments on this post. Counted automatically.
|
|
5543
5592
|
*/
|
|
5544
5593
|
commentCount?: number | null;
|
|
5545
5594
|
/**
|
|
5546
|
-
*
|
|
5595
|
+
* Number of reactions on this post. Counted automatically.
|
|
5547
5596
|
*/
|
|
5548
5597
|
reactionCount?: number | null;
|
|
5549
5598
|
/**
|
|
@@ -5598,7 +5647,7 @@ interface PostCategory {
|
|
|
5598
5647
|
*/
|
|
5599
5648
|
description?: string | null;
|
|
5600
5649
|
/**
|
|
5601
|
-
* Single representative
|
|
5650
|
+
* Single representative image for this taxonomy entry.
|
|
5602
5651
|
*/
|
|
5603
5652
|
image?: (string | null) | Image;
|
|
5604
5653
|
/**
|
|
@@ -5606,7 +5655,7 @@ interface PostCategory {
|
|
|
5606
5655
|
*/
|
|
5607
5656
|
parent?: (string | null) | PostCategory;
|
|
5608
5657
|
/**
|
|
5609
|
-
* Optional #RRGGBB
|
|
5658
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
5610
5659
|
*/
|
|
5611
5660
|
color?: string | null;
|
|
5612
5661
|
updatedAt: string;
|
|
@@ -5634,11 +5683,11 @@ interface PostTag {
|
|
|
5634
5683
|
*/
|
|
5635
5684
|
description?: string | null;
|
|
5636
5685
|
/**
|
|
5637
|
-
* Single representative
|
|
5686
|
+
* Single representative image for this taxonomy entry.
|
|
5638
5687
|
*/
|
|
5639
5688
|
image?: (string | null) | Image;
|
|
5640
5689
|
/**
|
|
5641
|
-
* Optional #RRGGBB
|
|
5690
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
5642
5691
|
*/
|
|
5643
5692
|
color?: string | null;
|
|
5644
5693
|
updatedAt: string;
|
|
@@ -5664,7 +5713,7 @@ interface Comment {
|
|
|
5664
5713
|
body?: string | null;
|
|
5665
5714
|
parent?: (string | null) | Comment;
|
|
5666
5715
|
/**
|
|
5667
|
-
* Comment nesting depth. Calculated
|
|
5716
|
+
* Comment nesting depth. Calculated automatically.
|
|
5668
5717
|
*/
|
|
5669
5718
|
depth?: number | null;
|
|
5670
5719
|
/**
|
|
@@ -5677,7 +5726,7 @@ interface Comment {
|
|
|
5677
5726
|
editedAt?: string | null;
|
|
5678
5727
|
isEdited?: boolean | null;
|
|
5679
5728
|
/**
|
|
5680
|
-
*
|
|
5729
|
+
* Number of reactions on this comment. Counted automatically.
|
|
5681
5730
|
*/
|
|
5682
5731
|
reactionCount?: number | null;
|
|
5683
5732
|
/**
|
|
@@ -5685,7 +5734,7 @@ interface Comment {
|
|
|
5685
5734
|
*/
|
|
5686
5735
|
reportCount?: number | null;
|
|
5687
5736
|
/**
|
|
5688
|
-
*
|
|
5737
|
+
* Number of replies to this comment. Counted automatically.
|
|
5689
5738
|
*/
|
|
5690
5739
|
replyCount?: number | null;
|
|
5691
5740
|
metadata?: {
|
|
@@ -5881,7 +5930,7 @@ interface EventCalendar {
|
|
|
5881
5930
|
*/
|
|
5882
5931
|
description?: string | null;
|
|
5883
5932
|
/**
|
|
5884
|
-
* OG / Twitter Card image (1200×630 recommended).
|
|
5933
|
+
* OG / Twitter Card image (1200×630 recommended).
|
|
5885
5934
|
*/
|
|
5886
5935
|
image?: (string | null) | Image;
|
|
5887
5936
|
};
|
|
@@ -5961,11 +6010,11 @@ interface Event {
|
|
|
5961
6010
|
user?: (string | null) | User;
|
|
5962
6011
|
};
|
|
5963
6012
|
/**
|
|
5964
|
-
* 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.
|
|
5965
6014
|
*/
|
|
5966
6015
|
startsAt: string;
|
|
5967
6016
|
/**
|
|
5968
|
-
* Primary end time. Must be after the start time.
|
|
6017
|
+
* Primary end time. Must be after the start time.
|
|
5969
6018
|
*/
|
|
5970
6019
|
endsAt: string;
|
|
5971
6020
|
/**
|
|
@@ -6075,7 +6124,7 @@ interface Event {
|
|
|
6075
6124
|
*/
|
|
6076
6125
|
description?: string | null;
|
|
6077
6126
|
/**
|
|
6078
|
-
* OG / Twitter Card image (1200×630 recommended).
|
|
6127
|
+
* OG / Twitter Card image (1200×630 recommended).
|
|
6079
6128
|
*/
|
|
6080
6129
|
image?: (string | null) | Image;
|
|
6081
6130
|
};
|
|
@@ -6130,7 +6179,7 @@ interface EventCategory {
|
|
|
6130
6179
|
*/
|
|
6131
6180
|
description?: string | null;
|
|
6132
6181
|
/**
|
|
6133
|
-
* Single representative
|
|
6182
|
+
* Single representative image for this taxonomy entry.
|
|
6134
6183
|
*/
|
|
6135
6184
|
image?: (string | null) | Image;
|
|
6136
6185
|
/**
|
|
@@ -6138,7 +6187,7 @@ interface EventCategory {
|
|
|
6138
6187
|
*/
|
|
6139
6188
|
parent?: (string | null) | EventCategory;
|
|
6140
6189
|
/**
|
|
6141
|
-
* Optional #RRGGBB
|
|
6190
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
6142
6191
|
*/
|
|
6143
6192
|
color?: string | null;
|
|
6144
6193
|
updatedAt: string;
|
|
@@ -6164,11 +6213,11 @@ interface EventTag {
|
|
|
6164
6213
|
*/
|
|
6165
6214
|
description?: string | null;
|
|
6166
6215
|
/**
|
|
6167
|
-
* Single representative
|
|
6216
|
+
* Single representative image for this taxonomy entry.
|
|
6168
6217
|
*/
|
|
6169
6218
|
image?: (string | null) | Image;
|
|
6170
6219
|
/**
|
|
6171
|
-
* Optional #RRGGBB
|
|
6220
|
+
* Optional #RRGGBB color for taxonomy badges or filter UI.
|
|
6172
6221
|
*/
|
|
6173
6222
|
color?: string | null;
|
|
6174
6223
|
updatedAt: string;
|
|
@@ -6194,11 +6243,11 @@ interface EventOccurrence {
|
|
|
6194
6243
|
*/
|
|
6195
6244
|
instanceKey?: string | null;
|
|
6196
6245
|
/**
|
|
6197
|
-
*
|
|
6246
|
+
* Occurrence start time.
|
|
6198
6247
|
*/
|
|
6199
6248
|
startsAt: string;
|
|
6200
6249
|
/**
|
|
6201
|
-
*
|
|
6250
|
+
* Occurrence end time.
|
|
6202
6251
|
*/
|
|
6203
6252
|
endsAt: string;
|
|
6204
6253
|
timezone?: string | null;
|
|
@@ -6222,11 +6271,11 @@ interface EventOccurrence {
|
|
|
6222
6271
|
waitlistCount?: number | null;
|
|
6223
6272
|
checkInWindow?: {
|
|
6224
6273
|
/**
|
|
6225
|
-
*
|
|
6274
|
+
* Check-in opens at this time.
|
|
6226
6275
|
*/
|
|
6227
6276
|
opensAt?: string | null;
|
|
6228
6277
|
/**
|
|
6229
|
-
*
|
|
6278
|
+
* Check-in closes at this time.
|
|
6230
6279
|
*/
|
|
6231
6280
|
closesAt?: string | null;
|
|
6232
6281
|
};
|
|
@@ -6396,7 +6445,7 @@ interface Form {
|
|
|
6396
6445
|
generateSlug?: boolean | null;
|
|
6397
6446
|
slug?: string | null;
|
|
6398
6447
|
/**
|
|
6399
|
-
* Submissions received through this form.
|
|
6448
|
+
* Submissions received through this form.
|
|
6400
6449
|
*/
|
|
6401
6450
|
submissions?: {
|
|
6402
6451
|
docs?: (string | FormSubmission)[];
|
|
@@ -6994,6 +7043,13 @@ interface TenantsSelect<T extends boolean = true> {
|
|
|
6994
7043
|
orderDelivered?: T;
|
|
6995
7044
|
returnRequested?: T;
|
|
6996
7045
|
returnCompleted?: T;
|
|
7046
|
+
senderDisplayName?: T;
|
|
7047
|
+
senderReplyTo?: T;
|
|
7048
|
+
senderDomain?: T;
|
|
7049
|
+
senderLocalpart?: T;
|
|
7050
|
+
senderDomainStatus?: T;
|
|
7051
|
+
senderDomainResendId?: T;
|
|
7052
|
+
senderDomainRecords?: T;
|
|
6997
7053
|
};
|
|
6998
7054
|
members?: T;
|
|
6999
7055
|
updatedAt?: T;
|
|
@@ -7334,6 +7390,10 @@ interface TenantAnalyticsDailySelect<T extends boolean = true> {
|
|
|
7334
7390
|
eventsDropped?: T | {
|
|
7335
7391
|
cardinality?: T;
|
|
7336
7392
|
schema?: T;
|
|
7393
|
+
schemaUnknownEvent?: T;
|
|
7394
|
+
schemaUnknownDim?: T;
|
|
7395
|
+
schemaBadValue?: T;
|
|
7396
|
+
schemaInvalidProps?: T;
|
|
7337
7397
|
late?: T;
|
|
7338
7398
|
origin?: T;
|
|
7339
7399
|
key?: T;
|
|
@@ -7524,6 +7584,7 @@ interface ProductVariantsSelect<T extends boolean = true> {
|
|
|
7524
7584
|
price?: T;
|
|
7525
7585
|
compareAtPrice?: T;
|
|
7526
7586
|
isUnlimited?: T;
|
|
7587
|
+
inventoryPolicy?: T;
|
|
7527
7588
|
stock?: T;
|
|
7528
7589
|
stockAdjustmentReason?: T;
|
|
7529
7590
|
stockAdjustmentNote?: T;
|
|
@@ -7857,6 +7918,7 @@ interface OrdersSelect<T extends boolean = true> {
|
|
|
7857
7918
|
discountCode?: T;
|
|
7858
7919
|
discountAmount?: T;
|
|
7859
7920
|
refundedAmount?: T;
|
|
7921
|
+
currentTotalAmount?: T;
|
|
7860
7922
|
taxAmount?: T;
|
|
7861
7923
|
returnShippingRefundPolicySnapshot?: T;
|
|
7862
7924
|
returns?: T;
|
|
@@ -7864,6 +7926,7 @@ interface OrdersSelect<T extends boolean = true> {
|
|
|
7864
7926
|
placedAt?: T;
|
|
7865
7927
|
confirmedAt?: T;
|
|
7866
7928
|
cancelReason?: T;
|
|
7929
|
+
cancelReasonCode?: T;
|
|
7867
7930
|
canceledAt?: T;
|
|
7868
7931
|
completedAt?: T;
|
|
7869
7932
|
billingAddress?: T | {
|
|
@@ -8409,6 +8472,7 @@ interface CartsSelect<T extends boolean = true> {
|
|
|
8409
8472
|
detailAddress?: T;
|
|
8410
8473
|
deliveryMessage?: T;
|
|
8411
8474
|
};
|
|
8475
|
+
shippingPolicy?: T;
|
|
8412
8476
|
discountCode?: T;
|
|
8413
8477
|
customerNote?: T;
|
|
8414
8478
|
items?: T;
|
|
@@ -8416,6 +8480,7 @@ interface CartsSelect<T extends boolean = true> {
|
|
|
8416
8480
|
currency?: T;
|
|
8417
8481
|
subtotalAmount?: T;
|
|
8418
8482
|
shippingAmount?: T;
|
|
8483
|
+
freeShippingDiscount?: T;
|
|
8419
8484
|
discountAmount?: T;
|
|
8420
8485
|
totalAmount?: T;
|
|
8421
8486
|
cartToken?: T;
|
|
@@ -9085,6 +9150,7 @@ interface CanvasesSelect<T extends boolean = true> {
|
|
|
9085
9150
|
isFeatured?: T;
|
|
9086
9151
|
publishedAt?: T;
|
|
9087
9152
|
metadata?: T;
|
|
9153
|
+
canvasRevision?: T;
|
|
9088
9154
|
updatedAt?: T;
|
|
9089
9155
|
createdAt?: T;
|
|
9090
9156
|
deletedAt?: T;
|