@stacksjs/commerce 0.70.333 → 0.70.336

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.
Files changed (76) hide show
  1. package/dist/coupons/fetch.d.ts +1 -0
  2. package/dist/coupons/store.d.ts +1 -0
  3. package/dist/coupons/update.d.ts +1 -0
  4. package/dist/customers/fetch.d.ts +1 -0
  5. package/dist/customers/store.d.ts +1 -0
  6. package/dist/customers/update.d.ts +1 -0
  7. package/dist/devices/export.d.ts +1 -0
  8. package/dist/devices/fetch.d.ts +1 -0
  9. package/dist/devices/store.d.ts +1 -0
  10. package/dist/devices/update.d.ts +1 -0
  11. package/dist/gift-cards/fetch.d.ts +1 -0
  12. package/dist/gift-cards/store.d.ts +1 -0
  13. package/dist/gift-cards/update.d.ts +1 -0
  14. package/dist/index.js +5 -5
  15. package/dist/orders/fetch.d.ts +1 -0
  16. package/dist/orders/place-order.d.ts +1 -0
  17. package/dist/orders/store.d.ts +1 -0
  18. package/dist/orders/update.d.ts +1 -0
  19. package/dist/payments/fetch.d.ts +1 -0
  20. package/dist/payments/store.d.ts +1 -0
  21. package/dist/payments/update.d.ts +1 -0
  22. package/dist/products/categories/fetch.d.ts +1 -0
  23. package/dist/products/categories/store.d.ts +1 -0
  24. package/dist/products/categories/update.d.ts +1 -0
  25. package/dist/products/items/fetch.d.ts +1 -0
  26. package/dist/products/items/store.d.ts +1 -0
  27. package/dist/products/items/update.d.ts +1 -0
  28. package/dist/products/manufacturers/fetch.d.ts +1 -0
  29. package/dist/products/manufacturers/store.d.ts +1 -0
  30. package/dist/products/manufacturers/update.d.ts +1 -0
  31. package/dist/products/reviews/fetch.d.ts +1 -0
  32. package/dist/products/reviews/store.d.ts +1 -0
  33. package/dist/products/reviews/update.d.ts +1 -0
  34. package/dist/products/units/fetch.d.ts +1 -0
  35. package/dist/products/units/store.d.ts +1 -0
  36. package/dist/products/units/update.d.ts +1 -0
  37. package/dist/products/variants/fetch.d.ts +1 -0
  38. package/dist/products/variants/store.d.ts +1 -0
  39. package/dist/products/variants/update.d.ts +1 -0
  40. package/dist/receipts/fetch.d.ts +1 -0
  41. package/dist/receipts/store.d.ts +1 -0
  42. package/dist/receipts/update.d.ts +1 -0
  43. package/dist/shippings/delivery-routes/fetch.d.ts +1 -0
  44. package/dist/shippings/delivery-routes/store.d.ts +1 -0
  45. package/dist/shippings/delivery-routes/update.d.ts +1 -0
  46. package/dist/shippings/digital-deliveries/fetch.d.ts +1 -0
  47. package/dist/shippings/digital-deliveries/store.d.ts +1 -0
  48. package/dist/shippings/digital-deliveries/update.d.ts +1 -0
  49. package/dist/shippings/drivers/fetch.d.ts +1 -0
  50. package/dist/shippings/drivers/store.d.ts +1 -0
  51. package/dist/shippings/drivers/update.d.ts +1 -0
  52. package/dist/shippings/license-keys/fetch.d.ts +1 -0
  53. package/dist/shippings/license-keys/store.d.ts +1 -0
  54. package/dist/shippings/license-keys/update.d.ts +1 -0
  55. package/dist/shippings/shipping-methods/fetch.d.ts +1 -0
  56. package/dist/shippings/shipping-methods/store.d.ts +1 -0
  57. package/dist/shippings/shipping-methods/update.d.ts +1 -0
  58. package/dist/shippings/shipping-rates/fetch.d.ts +1 -0
  59. package/dist/shippings/shipping-rates/store.d.ts +1 -0
  60. package/dist/shippings/shipping-rates/update.d.ts +1 -0
  61. package/dist/shippings/shipping-zones/fetch.d.ts +1 -0
  62. package/dist/shippings/shipping-zones/store.d.ts +1 -0
  63. package/dist/shippings/shipping-zones/update.d.ts +1 -0
  64. package/dist/tax/fetch.d.ts +1 -0
  65. package/dist/tax/store.d.ts +1 -0
  66. package/dist/tax/update.d.ts +1 -0
  67. package/dist/types.d.ts +1 -0
  68. package/dist/waitlists/products/destroy.d.ts +1 -0
  69. package/dist/waitlists/products/fetch.d.ts +1 -0
  70. package/dist/waitlists/products/store.d.ts +1 -0
  71. package/dist/waitlists/products/update.d.ts +1 -0
  72. package/dist/waitlists/restaurant/destroy.d.ts +1 -0
  73. package/dist/waitlists/restaurant/fetch.d.ts +1 -0
  74. package/dist/waitlists/restaurant/store.d.ts +1 -0
  75. package/dist/waitlists/restaurant/update.d.ts +1 -0
  76. package/package.json +1 -1
@@ -1,3 +1,4 @@
1
+ import type { Coupon, ModelRow } from '@stacksjs/orm';
1
2
  import type { CouponCountStats, CouponRedemptionStats, CouponStats, CouponTimeStats } from '../types';
2
3
  /**
3
4
  * Fetch all coupons from the database
@@ -1,3 +1,4 @@
1
+ import type { Coupon, ModelRow, NewModelData } from '@stacksjs/orm';
1
2
  /**
2
3
  * Create a new coupon
3
4
  *
@@ -1,3 +1,4 @@
1
+ import type { Coupon, ModelRow, UpdateModelData } from '@stacksjs/orm';
1
2
  /**
2
3
  * Update a coupon by ID
3
4
  *
@@ -1,3 +1,4 @@
1
+ import type { Customer, ModelRow } from '@stacksjs/orm';
1
2
  /**
2
3
  * Fetch a customer by ID
3
4
  */
@@ -1,3 +1,4 @@
1
+ import type { Customer, ModelRow, NewModelData } from '@stacksjs/orm';
1
2
  /**
2
3
  * Create a new customer
3
4
  *
@@ -1,3 +1,4 @@
1
+ import type { Customer, ModelRow, UpdateModelData } from '@stacksjs/orm';
1
2
  /**
2
3
  * Update a customer
3
4
  *
@@ -1,3 +1,4 @@
1
+ import type { ModelRow, PrintDevice } from '@stacksjs/orm';
1
2
  import type { SpreadsheetWrapper } from 'ts-spreadsheets';
2
3
  /**
3
4
  * Export print devices to a spreadsheet
@@ -1,3 +1,4 @@
1
+ import type { ModelRow, PrintDevice, Receipt } from '@stacksjs/orm';
1
2
  /**
2
3
  * Fetch a print device by ID
3
4
  */
@@ -1,3 +1,4 @@
1
+ import type { ModelRow, NewModelData, PrintDevice } from '@stacksjs/orm';
1
2
  /**
2
3
  * Create a new print device
3
4
  *
@@ -1,3 +1,4 @@
1
+ import type { ModelRow, PrintDevice, UpdateModelData } from '@stacksjs/orm';
1
2
  /**
2
3
  * Update a print device by ID
3
4
  *
@@ -1,3 +1,4 @@
1
+ import type { GiftCard, ModelRow } from '@stacksjs/orm';
1
2
  import type { GiftCardStats } from '../types';
2
3
  /**
3
4
  * Fetch all gift cards from the database
@@ -1,3 +1,4 @@
1
+ import type { GiftCard, ModelRow, NewModelData } from '@stacksjs/orm';
1
2
  /**
2
3
  * Create a new gift card
3
4
  *
@@ -1,3 +1,4 @@
1
+ import type { GiftCard, ModelRow, UpdateModelData } from '@stacksjs/orm';
1
2
  /**
2
3
  * Update a gift card by ID
3
4
  *