@shophost/rest-api 2.0.34 → 2.0.36

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 (220) hide show
  1. package/LICENSE +17 -13
  2. package/README.md +76 -66
  3. package/package.json +2 -2
  4. package/scripts/minify-dist.mjs +45 -0
  5. package/src/app.js +1 -53
  6. package/src/app.js.map +1 -1
  7. package/src/core/auth/auth.schema.js +1 -41
  8. package/src/core/auth/auth.util.js +1 -44
  9. package/src/core/auth/better-auth.lib.js +1 -100
  10. package/src/core/auth/generate-password-hash.util.js +1 -30
  11. package/src/core/auth/headers.schema.js +1 -22
  12. package/src/core/auth/user.schema.js +1 -30
  13. package/src/core/db/__generated__/client/browser.js +1 -18
  14. package/src/core/db/__generated__/client/client.js +1 -35
  15. package/src/core/db/__generated__/client/commonInputTypes.js +1 -11
  16. package/src/core/db/__generated__/client/enums.js +1 -200
  17. package/src/core/db/__generated__/client/internal/class.js +769 -55
  18. package/src/core/db/__generated__/client/internal/prismaNamespace.d.ts +2 -2
  19. package/src/core/db/__generated__/client/internal/prismaNamespace.js +1 -541
  20. package/src/core/db/__generated__/client/internal/prismaNamespaceBrowser.js +1 -512
  21. package/src/core/db/__generated__/client/models/Account.d.ts +0 -5
  22. package/src/core/db/__generated__/client/models/Account.js +1 -2
  23. package/src/core/db/__generated__/client/models/Address.d.ts +0 -5
  24. package/src/core/db/__generated__/client/models/Address.js +1 -2
  25. package/src/core/db/__generated__/client/models/Campaign.d.ts +0 -5
  26. package/src/core/db/__generated__/client/models/Campaign.js +1 -2
  27. package/src/core/db/__generated__/client/models/ClosingTimes.d.ts +0 -5
  28. package/src/core/db/__generated__/client/models/ClosingTimes.js +1 -2
  29. package/src/core/db/__generated__/client/models/File.d.ts +0 -5
  30. package/src/core/db/__generated__/client/models/File.js +1 -2
  31. package/src/core/db/__generated__/client/models/Invitation.d.ts +0 -5
  32. package/src/core/db/__generated__/client/models/Invitation.js +1 -2
  33. package/src/core/db/__generated__/client/models/LegalEntity.d.ts +0 -5
  34. package/src/core/db/__generated__/client/models/LegalEntity.js +1 -2
  35. package/src/core/db/__generated__/client/models/Manufacturer.d.ts +0 -5
  36. package/src/core/db/__generated__/client/models/Manufacturer.js +1 -2
  37. package/src/core/db/__generated__/client/models/ManufacturerTranslation.d.ts +0 -5
  38. package/src/core/db/__generated__/client/models/ManufacturerTranslation.js +1 -2
  39. package/src/core/db/__generated__/client/models/Member.d.ts +0 -5
  40. package/src/core/db/__generated__/client/models/Member.js +1 -2
  41. package/src/core/db/__generated__/client/models/Modifier.d.ts +0 -5
  42. package/src/core/db/__generated__/client/models/Modifier.js +1 -2
  43. package/src/core/db/__generated__/client/models/ModifierGroup.d.ts +0 -5
  44. package/src/core/db/__generated__/client/models/ModifierGroup.js +1 -2
  45. package/src/core/db/__generated__/client/models/ModifierGroupTranslation.d.ts +0 -5
  46. package/src/core/db/__generated__/client/models/ModifierGroupTranslation.js +1 -2
  47. package/src/core/db/__generated__/client/models/OpeningTimes.d.ts +0 -5
  48. package/src/core/db/__generated__/client/models/OpeningTimes.js +1 -2
  49. package/src/core/db/__generated__/client/models/Order.d.ts +0 -5
  50. package/src/core/db/__generated__/client/models/Order.js +1 -2
  51. package/src/core/db/__generated__/client/models/OrderItem.d.ts +0 -5
  52. package/src/core/db/__generated__/client/models/OrderItem.js +1 -2
  53. package/src/core/db/__generated__/client/models/OrderItemTranslation.d.ts +0 -5
  54. package/src/core/db/__generated__/client/models/OrderItemTranslation.js +1 -2
  55. package/src/core/db/__generated__/client/models/Organization.d.ts +0 -5
  56. package/src/core/db/__generated__/client/models/Organization.js +1 -2
  57. package/src/core/db/__generated__/client/models/OrganizationConfiguration.d.ts +0 -5
  58. package/src/core/db/__generated__/client/models/OrganizationConfiguration.js +1 -2
  59. package/src/core/db/__generated__/client/models/Payment.d.ts +0 -5
  60. package/src/core/db/__generated__/client/models/Payment.js +1 -2
  61. package/src/core/db/__generated__/client/models/PaymentSession.d.ts +0 -5
  62. package/src/core/db/__generated__/client/models/PaymentSession.js +1 -2
  63. package/src/core/db/__generated__/client/models/Product.d.ts +0 -5
  64. package/src/core/db/__generated__/client/models/Product.js +1 -2
  65. package/src/core/db/__generated__/client/models/ProductCategory.d.ts +0 -5
  66. package/src/core/db/__generated__/client/models/ProductCategory.js +1 -2
  67. package/src/core/db/__generated__/client/models/ProductCategoryTranslation.d.ts +0 -5
  68. package/src/core/db/__generated__/client/models/ProductCategoryTranslation.js +1 -2
  69. package/src/core/db/__generated__/client/models/ProductSnapshot.d.ts +0 -5
  70. package/src/core/db/__generated__/client/models/ProductSnapshot.js +1 -2
  71. package/src/core/db/__generated__/client/models/ProductTranslation.d.ts +0 -5
  72. package/src/core/db/__generated__/client/models/ProductTranslation.js +1 -2
  73. package/src/core/db/__generated__/client/models/Reservation.d.ts +0 -5
  74. package/src/core/db/__generated__/client/models/Reservation.js +1 -2
  75. package/src/core/db/__generated__/client/models/Session.d.ts +0 -5
  76. package/src/core/db/__generated__/client/models/Session.js +1 -2
  77. package/src/core/db/__generated__/client/models/ShippingMethod.d.ts +0 -5
  78. package/src/core/db/__generated__/client/models/ShippingMethod.js +1 -2
  79. package/src/core/db/__generated__/client/models/ShippingZone.d.ts +0 -5
  80. package/src/core/db/__generated__/client/models/ShippingZone.js +1 -2
  81. package/src/core/db/__generated__/client/models/User.d.ts +0 -5
  82. package/src/core/db/__generated__/client/models/User.js +1 -2
  83. package/src/core/db/__generated__/client/models/Verification.d.ts +0 -5
  84. package/src/core/db/__generated__/client/models/Verification.js +1 -2
  85. package/src/core/db/__generated__/client/models.js +1 -2
  86. package/src/core/db/index.js +1 -2
  87. package/src/core/email/components.d.ts +16 -0
  88. package/src/core/email/components.js +1 -0
  89. package/src/core/email/components.js.map +1 -0
  90. package/src/core/exceptions/http-exception.js +1 -9
  91. package/src/core/hono/hono.js +1 -123
  92. package/src/core/lib/prisma.d.ts +8 -8
  93. package/src/core/lib/prisma.js +1 -11
  94. package/src/core/logging/pino.js +1 -5
  95. package/src/core/notifications/email.service.js +1 -116
  96. package/src/core/openapi/openapi.lib.js +1 -26
  97. package/src/core/types/google-maps.types.js +1 -2
  98. package/src/core/utils/currency.util.js +1 -11
  99. package/src/core/utils/env.util.js +1 -8
  100. package/src/core/utils/object.util.js +1 -39
  101. package/src/core/utils/translations.util.js +0 -1
  102. package/src/core/utils/zod.util.js +1 -85
  103. package/src/db.js +1 -3
  104. package/src/features/access/access.handler.js +1 -91
  105. package/src/features/access/access.route.js +1 -220
  106. package/src/features/access/access.schema.js +1 -108
  107. package/src/features/access/access.service.js +1 -294
  108. package/src/features/analytics/analytics.handler.d.ts +2 -0
  109. package/src/features/analytics/analytics.handler.js +1 -0
  110. package/src/features/analytics/analytics.handler.js.map +1 -0
  111. package/src/features/analytics/analytics.route.d.ts +3 -0
  112. package/src/features/analytics/analytics.route.js +1 -0
  113. package/src/features/analytics/analytics.route.js.map +1 -0
  114. package/src/features/analytics/analytics.schema.d.ts +86 -0
  115. package/src/features/analytics/analytics.schema.js +1 -0
  116. package/src/features/analytics/analytics.schema.js.map +1 -0
  117. package/src/features/analytics/analytics.service.d.ts +45 -0
  118. package/src/features/analytics/analytics.service.js +1 -0
  119. package/src/features/analytics/analytics.service.js.map +1 -0
  120. package/src/features/cart/cart.handler.js +1 -17
  121. package/src/features/cart/cart.route.js +1 -32
  122. package/src/features/cart/cart.schema.d.ts +1 -1
  123. package/src/features/cart/cart.schema.js +1 -39
  124. package/src/features/cart/cart.service.d.ts +1 -1
  125. package/src/features/cart/cart.service.js +1 -97
  126. package/src/features/cart/cart.util.js +1 -76
  127. package/src/features/file/file.handler.js +1 -23
  128. package/src/features/file/file.route.js +1 -34
  129. package/src/features/file/file.schema.js +1 -77
  130. package/src/features/file/file.service.js +1 -66
  131. package/src/features/health/health.handler.js +1 -10
  132. package/src/features/health/health.route.js +1 -25
  133. package/src/features/index.d.ts +1 -0
  134. package/src/features/index.js +1 -16
  135. package/src/features/index.js.map +1 -1
  136. package/src/features/location/location.handler.js +1 -25
  137. package/src/features/location/location.route.js +1 -56
  138. package/src/features/location/location.schema.js +1 -50
  139. package/src/features/location/location.service.js +1 -141
  140. package/src/features/manufacturer/manufacturer.handler.js +1 -53
  141. package/src/features/manufacturer/manufacturer.route.js +1 -97
  142. package/src/features/manufacturer/manufacturer.schema.js +1 -125
  143. package/src/features/manufacturer/manufacturer.service.js +1 -190
  144. package/src/features/order/emails/order-confirmation.email.js +1 -229
  145. package/src/features/order/emails/order-confirmation.email.js.map +1 -1
  146. package/src/features/order/emails/order-notification.email.js +1 -229
  147. package/src/features/order/emails/order-notification.email.js.map +1 -1
  148. package/src/features/order/fulfilment.schema.js +1 -3
  149. package/src/features/order/order.handler.js +1 -54
  150. package/src/features/order/order.route.js +1 -111
  151. package/src/features/order/order.schema.d.ts +4 -4
  152. package/src/features/order/order.schema.js +1 -158
  153. package/src/features/order/order.service.d.ts +4 -4
  154. package/src/features/order/order.service.js +1 -306
  155. package/src/features/order/recipient.schema.js +1 -38
  156. package/src/features/organization/legal-entity.schema.js +1 -83
  157. package/src/features/organization/organization-configuration.schema.js +1 -115
  158. package/src/features/organization/organization.handler.js +1 -48
  159. package/src/features/organization/organization.route.js +1 -84
  160. package/src/features/organization/organization.schema.js +1 -64
  161. package/src/features/organization/organization.service.js +1 -334
  162. package/src/features/payment/payment.handler.js +1 -16
  163. package/src/features/payment/payment.route.js +1 -22
  164. package/src/features/payment/payment.schema.d.ts +3 -3
  165. package/src/features/payment/payment.schema.js +1 -46
  166. package/src/features/payment/payment.service.d.ts +1 -1
  167. package/src/features/payment/payment.service.js +1 -100
  168. package/src/features/payment/stripe.service.js +1 -164
  169. package/src/features/product/product-modifier.schema.js +1 -84
  170. package/src/features/product/product.handler.js +1 -87
  171. package/src/features/product/product.route.js +1 -179
  172. package/src/features/product/product.schema.d.ts +3 -3
  173. package/src/features/product/product.schema.js +1 -143
  174. package/src/features/product/product.service.d.ts +2 -2
  175. package/src/features/product/product.service.js +1 -440
  176. package/src/features/product-category/product-category.handler.js +1 -59
  177. package/src/features/product-category/product-category.route.js +1 -139
  178. package/src/features/product-category/product-category.schema.js +1 -86
  179. package/src/features/product-category/product-category.service.js +1 -220
  180. package/src/features/reservation/emails/reservation-cancellation.email.js +1 -82
  181. package/src/features/reservation/emails/reservation-cancellation.email.js.map +1 -1
  182. package/src/features/reservation/emails/reservation-confirmation.email.js +1 -82
  183. package/src/features/reservation/emails/reservation-confirmation.email.js.map +1 -1
  184. package/src/features/reservation/emails/reservation-notification.email.js +1 -93
  185. package/src/features/reservation/emails/reservation-notification.email.js.map +1 -1
  186. package/src/features/reservation/reservation.handler.js +1 -65
  187. package/src/features/reservation/reservation.route.js +1 -167
  188. package/src/features/reservation/reservation.schema.d.ts +1 -1
  189. package/src/features/reservation/reservation.schema.js +1 -51
  190. package/src/features/reservation/reservation.service.js +1 -231
  191. package/src/features/shipping/shipping.handler.js +1 -32
  192. package/src/features/shipping/shipping.route.js +1 -51
  193. package/src/features/shipping/shipping.service.js +1 -96
  194. package/src/features/shipping-method/shipping-method.handler.js +1 -60
  195. package/src/features/shipping-method/shipping-method.route.js +1 -144
  196. package/src/features/shipping-method/shipping-method.schema.js +1 -48
  197. package/src/features/shipping-method/shipping-method.service.js +1 -229
  198. package/src/features/shipping-method/shipping-zone.schema.js +1 -31
  199. package/src/features/webhook/webhook.handler.js +1 -50
  200. package/src/features/webhook/webhook.route.js +1 -33
  201. package/src/index.js +1 -6
  202. package/src/integrations/next.js +1 -82
  203. package/src/schemas/address.schema.js +1 -112
  204. package/src/schemas/currency.schema.js +1 -118
  205. package/src/schemas/error.schema.js +1 -12
  206. package/src/schemas/index.d.ts +1 -0
  207. package/src/schemas/index.js +1 -29
  208. package/src/schemas/index.js.map +1 -1
  209. package/src/schemas/locales.schema.js +1 -238
  210. package/src/schemas/number.schema.js +1 -29
  211. package/src/schemas/pagination.schema.js +1 -54
  212. package/src/schemas/params.schema.js +1 -20
  213. package/src/schemas/queries.schema.js +1 -6
  214. package/src/test/global-setup.js +1 -37
  215. package/src/test/integration/api-fixtures.js +1 -160
  216. package/src/test/integration/seed.js +1 -368
  217. package/src/test/integration/test-helpers.d.ts +2 -0
  218. package/src/test/integration/test-helpers.js +1 -154
  219. package/src/test/integration/test-helpers.js.map +1 -1
  220. package/src/test/setup-test-env.js +1 -7
@@ -1,512 +1 @@
1
- /* !!! This is code generated by Prisma. Do not edit directly. !!! */
2
- /* eslint-disable */
3
- // biome-ignore-all lint: generated file
4
- // @ts-nocheck
5
- /*
6
- * WARNING: This is an internal file that is subject to change!
7
- *
8
- * 🛑 Under no circumstances should you import this file directly! 🛑
9
- *
10
- * All exports from this file are wrapped under a `Prisma` namespace object in the browser.ts file.
11
- * While this enables partial backward compatibility, it is not part of the stable public API.
12
- *
13
- * If you are looking for your Models, Enums, and Input Types, please import them from the respective
14
- * model files in the `model` directory!
15
- */
16
- import * as runtime from "@prisma/client/runtime/index-browser";
17
- export const Decimal = runtime.Decimal;
18
- export const NullTypes = {
19
- DbNull: runtime.NullTypes.DbNull,
20
- JsonNull: runtime.NullTypes.JsonNull,
21
- AnyNull: runtime.NullTypes.AnyNull,
22
- };
23
- /**
24
- * Helper for filtering JSON entries that have `null` on the database (empty on the db)
25
- *
26
- * @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
27
- */
28
- export const DbNull = runtime.DbNull;
29
- /**
30
- * Helper for filtering JSON entries that have JSON `null` values (not empty on the db)
31
- *
32
- * @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
33
- */
34
- export const JsonNull = runtime.JsonNull;
35
- /**
36
- * Helper for filtering JSON entries that are `Prisma.DbNull` or `Prisma.JsonNull`
37
- *
38
- * @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
39
- */
40
- export const AnyNull = runtime.AnyNull;
41
- export const ModelName = {
42
- User: 'User',
43
- Session: 'Session',
44
- Account: 'Account',
45
- Verification: 'Verification',
46
- Member: 'Member',
47
- Invitation: 'Invitation',
48
- Organization: 'Organization',
49
- OpeningTimes: 'OpeningTimes',
50
- ClosingTimes: 'ClosingTimes',
51
- OrganizationConfiguration: 'OrganizationConfiguration',
52
- Address: 'Address',
53
- LegalEntity: 'LegalEntity',
54
- File: 'File',
55
- Manufacturer: 'Manufacturer',
56
- ManufacturerTranslation: 'ManufacturerTranslation',
57
- ProductCategory: 'ProductCategory',
58
- ProductCategoryTranslation: 'ProductCategoryTranslation',
59
- Product: 'Product',
60
- ProductSnapshot: 'ProductSnapshot',
61
- ProductTranslation: 'ProductTranslation',
62
- ModifierGroup: 'ModifierGroup',
63
- ModifierGroupTranslation: 'ModifierGroupTranslation',
64
- Modifier: 'Modifier',
65
- Order: 'Order',
66
- OrderItem: 'OrderItem',
67
- OrderItemTranslation: 'OrderItemTranslation',
68
- Payment: 'Payment',
69
- PaymentSession: 'PaymentSession',
70
- Campaign: 'Campaign',
71
- ShippingMethod: 'ShippingMethod',
72
- ShippingZone: 'ShippingZone',
73
- Reservation: 'Reservation'
74
- };
75
- /*
76
- * Enums
77
- */
78
- export const TransactionIsolationLevel = runtime.makeStrictEnum({
79
- ReadUncommitted: 'ReadUncommitted',
80
- ReadCommitted: 'ReadCommitted',
81
- RepeatableRead: 'RepeatableRead',
82
- Serializable: 'Serializable'
83
- });
84
- export const UserScalarFieldEnum = {
85
- id: 'id',
86
- name: 'name',
87
- firstname: 'firstname',
88
- lastname: 'lastname',
89
- email: 'email',
90
- emailVerified: 'emailVerified',
91
- image: 'image',
92
- createdAt: 'createdAt',
93
- updatedAt: 'updatedAt'
94
- };
95
- export const SessionScalarFieldEnum = {
96
- id: 'id',
97
- expiresAt: 'expiresAt',
98
- token: 'token',
99
- createdAt: 'createdAt',
100
- updatedAt: 'updatedAt',
101
- ipAddress: 'ipAddress',
102
- userAgent: 'userAgent',
103
- userId: 'userId',
104
- activeOrganizationId: 'activeOrganizationId'
105
- };
106
- export const AccountScalarFieldEnum = {
107
- id: 'id',
108
- accountId: 'accountId',
109
- providerId: 'providerId',
110
- userId: 'userId',
111
- accessToken: 'accessToken',
112
- refreshToken: 'refreshToken',
113
- idToken: 'idToken',
114
- accessTokenExpiresAt: 'accessTokenExpiresAt',
115
- refreshTokenExpiresAt: 'refreshTokenExpiresAt',
116
- scope: 'scope',
117
- password: 'password',
118
- createdAt: 'createdAt',
119
- updatedAt: 'updatedAt'
120
- };
121
- export const VerificationScalarFieldEnum = {
122
- id: 'id',
123
- identifier: 'identifier',
124
- value: 'value',
125
- expiresAt: 'expiresAt',
126
- createdAt: 'createdAt',
127
- updatedAt: 'updatedAt'
128
- };
129
- export const MemberScalarFieldEnum = {
130
- id: 'id',
131
- organizationId: 'organizationId',
132
- userId: 'userId',
133
- role: 'role',
134
- createdAt: 'createdAt'
135
- };
136
- export const InvitationScalarFieldEnum = {
137
- id: 'id',
138
- organizationId: 'organizationId',
139
- email: 'email',
140
- role: 'role',
141
- status: 'status',
142
- expiresAt: 'expiresAt',
143
- inviterId: 'inviterId'
144
- };
145
- export const OrganizationScalarFieldEnum = {
146
- id: 'id',
147
- name: 'name',
148
- slug: 'slug',
149
- phone: 'phone',
150
- email: 'email',
151
- legalEntityId: 'legalEntityId',
152
- addressId: 'addressId',
153
- configurationId: 'configurationId',
154
- logo: 'logo',
155
- logoId: 'logoId',
156
- createdAt: 'createdAt',
157
- createdBy: 'createdBy',
158
- updatedAt: 'updatedAt',
159
- updatedBy: 'updatedBy',
160
- deletedAt: 'deletedAt',
161
- deletedBy: 'deletedBy'
162
- };
163
- export const OpeningTimesScalarFieldEnum = {
164
- id: 'id',
165
- monday: 'monday',
166
- tuesday: 'tuesday',
167
- wednesday: 'wednesday',
168
- thursday: 'thursday',
169
- friday: 'friday',
170
- saturday: 'saturday',
171
- sunday: 'sunday'
172
- };
173
- export const ClosingTimesScalarFieldEnum = {
174
- id: 'id',
175
- monday: 'monday',
176
- tuesday: 'tuesday',
177
- wednesday: 'wednesday',
178
- thursday: 'thursday',
179
- friday: 'friday',
180
- saturday: 'saturday',
181
- sunday: 'sunday'
182
- };
183
- export const OrganizationConfigurationScalarFieldEnum = {
184
- id: 'id',
185
- hostname: 'hostname',
186
- countriesShipping: 'countriesShipping',
187
- stripeAccountId: 'stripeAccountId',
188
- enableHostCheckout: 'enableHostCheckout',
189
- enableHostTracking: 'enableHostTracking',
190
- isAcceptingOrders: 'isAcceptingOrders',
191
- defaultCurrency: 'defaultCurrency',
192
- defaultLocale: 'defaultLocale',
193
- supportedLocales: 'supportedLocales',
194
- openingTimesId: 'openingTimesId',
195
- closingTimesId: 'closingTimesId',
196
- facebookProfile: 'facebookProfile',
197
- instagramProfile: 'instagramProfile',
198
- xProfile: 'xProfile',
199
- createdAt: 'createdAt',
200
- createdBy: 'createdBy',
201
- updatedAt: 'updatedAt',
202
- updatedBy: 'updatedBy'
203
- };
204
- export const AddressScalarFieldEnum = {
205
- id: 'id',
206
- firstname: 'firstname',
207
- lastname: 'lastname',
208
- phone: 'phone',
209
- addressLineOne: 'addressLineOne',
210
- doorNumber: 'doorNumber',
211
- addressLineTwo: 'addressLineTwo',
212
- zipCode: 'zipCode',
213
- placeId: 'placeId',
214
- deliveryInstructions: 'deliveryInstructions',
215
- city: 'city',
216
- country: 'country',
217
- latitude: 'latitude',
218
- longitude: 'longitude',
219
- isDefault: 'isDefault',
220
- createdAt: 'createdAt',
221
- createdBy: 'createdBy',
222
- updatedAt: 'updatedAt',
223
- updatedBy: 'updatedBy',
224
- deletedAt: 'deletedAt',
225
- deletedBy: 'deletedBy'
226
- };
227
- export const LegalEntityScalarFieldEnum = {
228
- id: 'id',
229
- name: 'name',
230
- taxId: 'taxId',
231
- addressId: 'addressId',
232
- email: 'email',
233
- phone: 'phone',
234
- createdAt: 'createdAt',
235
- createdBy: 'createdBy',
236
- updatedAt: 'updatedAt',
237
- updatedBy: 'updatedBy',
238
- deletedAt: 'deletedAt',
239
- deletedBy: 'deletedBy'
240
- };
241
- export const FileScalarFieldEnum = {
242
- id: 'id',
243
- mimeType: 'mimeType',
244
- size: 'size',
245
- filename: 'filename',
246
- url: 'url',
247
- status: 'status',
248
- organizationId: 'organizationId',
249
- createdAt: 'createdAt',
250
- createdBy: 'createdBy',
251
- updatedAt: 'updatedAt',
252
- updatedBy: 'updatedBy',
253
- deletedAt: 'deletedAt',
254
- deletedBy: 'deletedBy'
255
- };
256
- export const ManufacturerScalarFieldEnum = {
257
- id: 'id',
258
- name: 'name',
259
- logoId: 'logoId',
260
- organizationId: 'organizationId',
261
- createdAt: 'createdAt',
262
- createdBy: 'createdBy',
263
- updatedAt: 'updatedAt',
264
- updatedBy: 'updatedBy',
265
- deletedAt: 'deletedAt',
266
- deletedBy: 'deletedBy'
267
- };
268
- export const ManufacturerTranslationScalarFieldEnum = {
269
- id: 'id',
270
- locale: 'locale',
271
- about: 'about',
272
- manufacturerId: 'manufacturerId',
273
- createdAt: 'createdAt',
274
- createdBy: 'createdBy',
275
- updatedAt: 'updatedAt',
276
- updatedBy: 'updatedBy'
277
- };
278
- export const ProductCategoryScalarFieldEnum = {
279
- id: 'id',
280
- slug: 'slug',
281
- organizationId: 'organizationId',
282
- priority: 'priority',
283
- imageId: 'imageId',
284
- createdAt: 'createdAt',
285
- createdBy: 'createdBy',
286
- updatedAt: 'updatedAt',
287
- updatedBy: 'updatedBy',
288
- deletedAt: 'deletedAt',
289
- deletedBy: 'deletedBy',
290
- publishedAt: 'publishedAt',
291
- publishedBy: 'publishedBy'
292
- };
293
- export const ProductCategoryTranslationScalarFieldEnum = {
294
- id: 'id',
295
- locale: 'locale',
296
- title: 'title',
297
- description: 'description',
298
- productCategoryId: 'productCategoryId',
299
- createdAt: 'createdAt',
300
- createdBy: 'createdBy',
301
- updatedAt: 'updatedAt',
302
- updatedBy: 'updatedBy'
303
- };
304
- export const ProductScalarFieldEnum = {
305
- id: 'id',
306
- content: 'content',
307
- slug: 'slug',
308
- sku: 'sku',
309
- basePrice: 'basePrice',
310
- discountedBasePrice: 'discountedBasePrice',
311
- currency: 'currency',
312
- organizationId: 'organizationId',
313
- manufacturerId: 'manufacturerId',
314
- tags: 'tags',
315
- metadata: 'metadata',
316
- publishedAt: 'publishedAt',
317
- publishedBy: 'publishedBy',
318
- deletedAt: 'deletedAt',
319
- deletedBy: 'deletedBy',
320
- createdAt: 'createdAt',
321
- createdBy: 'createdBy',
322
- updatedAt: 'updatedAt',
323
- updatedBy: 'updatedBy',
324
- latestSnapshotId: 'latestSnapshotId'
325
- };
326
- export const ProductSnapshotScalarFieldEnum = {
327
- id: 'id',
328
- productId: 'productId',
329
- data: 'data',
330
- createdAt: 'createdAt',
331
- createdBy: 'createdBy'
332
- };
333
- export const ProductTranslationScalarFieldEnum = {
334
- id: 'id',
335
- locale: 'locale',
336
- title: 'title',
337
- description: 'description',
338
- productId: 'productId',
339
- createdAt: 'createdAt',
340
- createdBy: 'createdBy',
341
- updatedAt: 'updatedAt',
342
- updatedBy: 'updatedBy'
343
- };
344
- export const ModifierGroupScalarFieldEnum = {
345
- id: 'id',
346
- selectMin: 'selectMin',
347
- selectMax: 'selectMax',
348
- createdAt: 'createdAt',
349
- updatedAt: 'updatedAt'
350
- };
351
- export const ModifierGroupTranslationScalarFieldEnum = {
352
- id: 'id',
353
- locale: 'locale',
354
- title: 'title',
355
- description: 'description',
356
- modifierGroupId: 'modifierGroupId'
357
- };
358
- export const ModifierScalarFieldEnum = {
359
- id: 'id',
360
- title: 'title',
361
- description: 'description',
362
- sku: 'sku',
363
- price: 'price',
364
- modifierGroupId: 'modifierGroupId'
365
- };
366
- export const OrderScalarFieldEnum = {
367
- id: 'id',
368
- organizationId: 'organizationId',
369
- userId: 'userId',
370
- paymentId: 'paymentId',
371
- token: 'token',
372
- expiresAt: 'expiresAt',
373
- referenceId: 'referenceId',
374
- fulfilmentMethod: 'fulfilmentMethod',
375
- shippingMethodId: 'shippingMethodId',
376
- shippingAddressId: 'shippingAddressId',
377
- dateOfExecution: 'dateOfExecution',
378
- currency: 'currency',
379
- sourceIp: 'sourceIp',
380
- acceptedAt: 'acceptedAt',
381
- readyForDispatchAt: 'readyForDispatchAt',
382
- dispatchedAt: 'dispatchedAt',
383
- completedAt: 'completedAt',
384
- cancelledAt: 'cancelledAt',
385
- deletedAt: 'deletedAt',
386
- deletedBy: 'deletedBy',
387
- createdAt: 'createdAt',
388
- updatedAt: 'updatedAt'
389
- };
390
- export const OrderItemScalarFieldEnum = {
391
- id: 'id',
392
- quantity: 'quantity',
393
- unitPrice: 'unitPrice',
394
- totalPrice: 'totalPrice',
395
- orderId: 'orderId',
396
- rawData: 'rawData',
397
- productSnapshotId: 'productSnapshotId',
398
- imageId: 'imageId'
399
- };
400
- export const OrderItemTranslationScalarFieldEnum = {
401
- id: 'id',
402
- locale: 'locale',
403
- title: 'title',
404
- subtitle: 'subtitle',
405
- orderItemId: 'orderItemId'
406
- };
407
- export const PaymentScalarFieldEnum = {
408
- id: 'id',
409
- method: 'method',
410
- provider: 'provider',
411
- shipping: 'shipping',
412
- subtotal: 'subtotal',
413
- total: 'total',
414
- discount: 'discount',
415
- currency: 'currency',
416
- status: 'status',
417
- createdAt: 'createdAt',
418
- updatedAt: 'updatedAt'
419
- };
420
- export const PaymentSessionScalarFieldEnum = {
421
- id: 'id',
422
- referenceId: 'referenceId',
423
- amount: 'amount',
424
- currency: 'currency',
425
- rawData: 'rawData',
426
- capturedAt: 'capturedAt',
427
- expiredAt: 'expiredAt',
428
- createdAt: 'createdAt',
429
- updatedAt: 'updatedAt',
430
- paymentId: 'paymentId'
431
- };
432
- export const CampaignScalarFieldEnum = {
433
- id: 'id',
434
- title: 'title',
435
- type: 'type',
436
- validFrom: 'validFrom',
437
- validTo: 'validTo',
438
- organizationId: 'organizationId',
439
- amount: 'amount',
440
- percentage: 'percentage',
441
- publishedAt: 'publishedAt',
442
- publishedBy: 'publishedBy',
443
- createdAt: 'createdAt',
444
- updatedAt: 'updatedAt'
445
- };
446
- export const ShippingMethodScalarFieldEnum = {
447
- id: 'id',
448
- title: 'title',
449
- providerName: 'providerName',
450
- providerLogoId: 'providerLogoId',
451
- requireDateOfDelivery: 'requireDateOfDelivery',
452
- organizationId: 'organizationId',
453
- archivedAt: 'archivedAt',
454
- archivedBy: 'archivedBy',
455
- publishedAt: 'publishedAt',
456
- publishedBy: 'publishedBy',
457
- createdAt: 'createdAt',
458
- createdBy: 'createdBy',
459
- updatedAt: 'updatedAt',
460
- updatedBy: 'updatedBy'
461
- };
462
- export const ShippingZoneScalarFieldEnum = {
463
- id: 'id',
464
- title: 'title',
465
- distanceUpto: 'distanceUpto',
466
- price: 'price',
467
- minimumOrderAmount: 'minimumOrderAmount',
468
- shippingMethodId: 'shippingMethodId',
469
- eta: 'eta',
470
- createdAt: 'createdAt',
471
- updatedAt: 'updatedAt'
472
- };
473
- export const ReservationScalarFieldEnum = {
474
- id: 'id',
475
- firstname: 'firstname',
476
- lastname: 'lastname',
477
- userId: 'userId',
478
- guests: 'guests',
479
- phone: 'phone',
480
- date: 'date',
481
- referenceId: 'referenceId',
482
- organizationId: 'organizationId',
483
- createdAt: 'createdAt',
484
- acceptedAt: 'acceptedAt',
485
- cancelledAt: 'cancelledAt',
486
- updatedAt: 'updatedAt'
487
- };
488
- export const SortOrder = {
489
- asc: 'asc',
490
- desc: 'desc'
491
- };
492
- export const NullableJsonNullValueInput = {
493
- DbNull: DbNull,
494
- JsonNull: JsonNull
495
- };
496
- export const JsonNullValueInput = {
497
- JsonNull: JsonNull
498
- };
499
- export const QueryMode = {
500
- default: 'default',
501
- insensitive: 'insensitive'
502
- };
503
- export const NullsOrder = {
504
- first: 'first',
505
- last: 'last'
506
- };
507
- export const JsonNullValueFilter = {
508
- DbNull: DbNull,
509
- JsonNull: JsonNull,
510
- AnyNull: AnyNull
511
- };
512
- //# sourceMappingURL=prismaNamespaceBrowser.js.map
1
+ import*as e from"@prisma/client/runtime/index-browser";export const Decimal=e.Decimal,NullTypes={DbNull:e.NullTypes.DbNull,JsonNull:e.NullTypes.JsonNull,AnyNull:e.NullTypes.AnyNull},DbNull=e.DbNull,JsonNull=e.JsonNull,AnyNull=e.AnyNull,ModelName={User:"User",Session:"Session",Account:"Account",Verification:"Verification",Member:"Member",Invitation:"Invitation",Organization:"Organization",OpeningTimes:"OpeningTimes",ClosingTimes:"ClosingTimes",OrganizationConfiguration:"OrganizationConfiguration",Address:"Address",LegalEntity:"LegalEntity",File:"File",Manufacturer:"Manufacturer",ManufacturerTranslation:"ManufacturerTranslation",ProductCategory:"ProductCategory",ProductCategoryTranslation:"ProductCategoryTranslation",Product:"Product",ProductSnapshot:"ProductSnapshot",ProductTranslation:"ProductTranslation",ModifierGroup:"ModifierGroup",ModifierGroupTranslation:"ModifierGroupTranslation",Modifier:"Modifier",Order:"Order",OrderItem:"OrderItem",OrderItemTranslation:"OrderItemTranslation",Payment:"Payment",PaymentSession:"PaymentSession",Campaign:"Campaign",ShippingMethod:"ShippingMethod",ShippingZone:"ShippingZone",Reservation:"Reservation"},TransactionIsolationLevel=e.makeStrictEnum({ReadUncommitted:"ReadUncommitted",ReadCommitted:"ReadCommitted",RepeatableRead:"RepeatableRead",Serializable:"Serializable"}),UserScalarFieldEnum={id:"id",name:"name",firstname:"firstname",lastname:"lastname",email:"email",emailVerified:"emailVerified",image:"image",createdAt:"createdAt",updatedAt:"updatedAt"},SessionScalarFieldEnum={id:"id",expiresAt:"expiresAt",token:"token",createdAt:"createdAt",updatedAt:"updatedAt",ipAddress:"ipAddress",userAgent:"userAgent",userId:"userId",activeOrganizationId:"activeOrganizationId"},AccountScalarFieldEnum={id:"id",accountId:"accountId",providerId:"providerId",userId:"userId",accessToken:"accessToken",refreshToken:"refreshToken",idToken:"idToken",accessTokenExpiresAt:"accessTokenExpiresAt",refreshTokenExpiresAt:"refreshTokenExpiresAt",scope:"scope",password:"password",createdAt:"createdAt",updatedAt:"updatedAt"},VerificationScalarFieldEnum={id:"id",identifier:"identifier",value:"value",expiresAt:"expiresAt",createdAt:"createdAt",updatedAt:"updatedAt"},MemberScalarFieldEnum={id:"id",organizationId:"organizationId",userId:"userId",role:"role",createdAt:"createdAt"},InvitationScalarFieldEnum={id:"id",organizationId:"organizationId",email:"email",role:"role",status:"status",expiresAt:"expiresAt",inviterId:"inviterId"},OrganizationScalarFieldEnum={id:"id",name:"name",slug:"slug",phone:"phone",email:"email",legalEntityId:"legalEntityId",addressId:"addressId",configurationId:"configurationId",logo:"logo",logoId:"logoId",createdAt:"createdAt",createdBy:"createdBy",updatedAt:"updatedAt",updatedBy:"updatedBy",deletedAt:"deletedAt",deletedBy:"deletedBy"},OpeningTimesScalarFieldEnum={id:"id",monday:"monday",tuesday:"tuesday",wednesday:"wednesday",thursday:"thursday",friday:"friday",saturday:"saturday",sunday:"sunday"},ClosingTimesScalarFieldEnum={id:"id",monday:"monday",tuesday:"tuesday",wednesday:"wednesday",thursday:"thursday",friday:"friday",saturday:"saturday",sunday:"sunday"},OrganizationConfigurationScalarFieldEnum={id:"id",hostname:"hostname",countriesShipping:"countriesShipping",stripeAccountId:"stripeAccountId",enableHostCheckout:"enableHostCheckout",enableHostTracking:"enableHostTracking",isAcceptingOrders:"isAcceptingOrders",defaultCurrency:"defaultCurrency",defaultLocale:"defaultLocale",supportedLocales:"supportedLocales",openingTimesId:"openingTimesId",closingTimesId:"closingTimesId",facebookProfile:"facebookProfile",instagramProfile:"instagramProfile",xProfile:"xProfile",createdAt:"createdAt",createdBy:"createdBy",updatedAt:"updatedAt",updatedBy:"updatedBy"},AddressScalarFieldEnum={id:"id",firstname:"firstname",lastname:"lastname",phone:"phone",addressLineOne:"addressLineOne",doorNumber:"doorNumber",addressLineTwo:"addressLineTwo",zipCode:"zipCode",placeId:"placeId",deliveryInstructions:"deliveryInstructions",city:"city",country:"country",latitude:"latitude",longitude:"longitude",isDefault:"isDefault",createdAt:"createdAt",createdBy:"createdBy",updatedAt:"updatedAt",updatedBy:"updatedBy",deletedAt:"deletedAt",deletedBy:"deletedBy"},LegalEntityScalarFieldEnum={id:"id",name:"name",taxId:"taxId",addressId:"addressId",email:"email",phone:"phone",createdAt:"createdAt",createdBy:"createdBy",updatedAt:"updatedAt",updatedBy:"updatedBy",deletedAt:"deletedAt",deletedBy:"deletedBy"},FileScalarFieldEnum={id:"id",mimeType:"mimeType",size:"size",filename:"filename",url:"url",status:"status",organizationId:"organizationId",createdAt:"createdAt",createdBy:"createdBy",updatedAt:"updatedAt",updatedBy:"updatedBy",deletedAt:"deletedAt",deletedBy:"deletedBy"},ManufacturerScalarFieldEnum={id:"id",name:"name",logoId:"logoId",organizationId:"organizationId",createdAt:"createdAt",createdBy:"createdBy",updatedAt:"updatedAt",updatedBy:"updatedBy",deletedAt:"deletedAt",deletedBy:"deletedBy"},ManufacturerTranslationScalarFieldEnum={id:"id",locale:"locale",about:"about",manufacturerId:"manufacturerId",createdAt:"createdAt",createdBy:"createdBy",updatedAt:"updatedAt",updatedBy:"updatedBy"},ProductCategoryScalarFieldEnum={id:"id",slug:"slug",organizationId:"organizationId",priority:"priority",imageId:"imageId",createdAt:"createdAt",createdBy:"createdBy",updatedAt:"updatedAt",updatedBy:"updatedBy",deletedAt:"deletedAt",deletedBy:"deletedBy",publishedAt:"publishedAt",publishedBy:"publishedBy"},ProductCategoryTranslationScalarFieldEnum={id:"id",locale:"locale",title:"title",description:"description",productCategoryId:"productCategoryId",createdAt:"createdAt",createdBy:"createdBy",updatedAt:"updatedAt",updatedBy:"updatedBy"},ProductScalarFieldEnum={id:"id",content:"content",slug:"slug",sku:"sku",basePrice:"basePrice",discountedBasePrice:"discountedBasePrice",currency:"currency",organizationId:"organizationId",manufacturerId:"manufacturerId",tags:"tags",metadata:"metadata",publishedAt:"publishedAt",publishedBy:"publishedBy",deletedAt:"deletedAt",deletedBy:"deletedBy",createdAt:"createdAt",createdBy:"createdBy",updatedAt:"updatedAt",updatedBy:"updatedBy",latestSnapshotId:"latestSnapshotId"},ProductSnapshotScalarFieldEnum={id:"id",productId:"productId",data:"data",createdAt:"createdAt",createdBy:"createdBy"},ProductTranslationScalarFieldEnum={id:"id",locale:"locale",title:"title",description:"description",productId:"productId",createdAt:"createdAt",createdBy:"createdBy",updatedAt:"updatedAt",updatedBy:"updatedBy"},ModifierGroupScalarFieldEnum={id:"id",selectMin:"selectMin",selectMax:"selectMax",createdAt:"createdAt",updatedAt:"updatedAt"},ModifierGroupTranslationScalarFieldEnum={id:"id",locale:"locale",title:"title",description:"description",modifierGroupId:"modifierGroupId"},ModifierScalarFieldEnum={id:"id",title:"title",description:"description",sku:"sku",price:"price",modifierGroupId:"modifierGroupId"},OrderScalarFieldEnum={id:"id",organizationId:"organizationId",userId:"userId",paymentId:"paymentId",token:"token",expiresAt:"expiresAt",referenceId:"referenceId",fulfilmentMethod:"fulfilmentMethod",shippingMethodId:"shippingMethodId",shippingAddressId:"shippingAddressId",dateOfExecution:"dateOfExecution",currency:"currency",sourceIp:"sourceIp",acceptedAt:"acceptedAt",readyForDispatchAt:"readyForDispatchAt",dispatchedAt:"dispatchedAt",completedAt:"completedAt",cancelledAt:"cancelledAt",deletedAt:"deletedAt",deletedBy:"deletedBy",createdAt:"createdAt",updatedAt:"updatedAt"},OrderItemScalarFieldEnum={id:"id",quantity:"quantity",unitPrice:"unitPrice",totalPrice:"totalPrice",orderId:"orderId",rawData:"rawData",productSnapshotId:"productSnapshotId",imageId:"imageId"},OrderItemTranslationScalarFieldEnum={id:"id",locale:"locale",title:"title",subtitle:"subtitle",orderItemId:"orderItemId"},PaymentScalarFieldEnum={id:"id",method:"method",provider:"provider",shipping:"shipping",subtotal:"subtotal",total:"total",discount:"discount",currency:"currency",status:"status",createdAt:"createdAt",updatedAt:"updatedAt"},PaymentSessionScalarFieldEnum={id:"id",referenceId:"referenceId",amount:"amount",currency:"currency",rawData:"rawData",capturedAt:"capturedAt",expiredAt:"expiredAt",createdAt:"createdAt",updatedAt:"updatedAt",paymentId:"paymentId"},CampaignScalarFieldEnum={id:"id",title:"title",type:"type",validFrom:"validFrom",validTo:"validTo",organizationId:"organizationId",amount:"amount",percentage:"percentage",publishedAt:"publishedAt",publishedBy:"publishedBy",createdAt:"createdAt",updatedAt:"updatedAt"},ShippingMethodScalarFieldEnum={id:"id",title:"title",providerName:"providerName",providerLogoId:"providerLogoId",requireDateOfDelivery:"requireDateOfDelivery",organizationId:"organizationId",archivedAt:"archivedAt",archivedBy:"archivedBy",publishedAt:"publishedAt",publishedBy:"publishedBy",createdAt:"createdAt",createdBy:"createdBy",updatedAt:"updatedAt",updatedBy:"updatedBy"},ShippingZoneScalarFieldEnum={id:"id",title:"title",distanceUpto:"distanceUpto",price:"price",minimumOrderAmount:"minimumOrderAmount",shippingMethodId:"shippingMethodId",eta:"eta",createdAt:"createdAt",updatedAt:"updatedAt"},ReservationScalarFieldEnum={id:"id",firstname:"firstname",lastname:"lastname",userId:"userId",guests:"guests",phone:"phone",date:"date",referenceId:"referenceId",organizationId:"organizationId",createdAt:"createdAt",acceptedAt:"acceptedAt",cancelledAt:"cancelledAt",updatedAt:"updatedAt"},SortOrder={asc:"asc",desc:"desc"},NullableJsonNullValueInput={DbNull,JsonNull},JsonNullValueInput={JsonNull},QueryMode={default:"default",insensitive:"insensitive"},NullsOrder={first:"first",last:"last"},JsonNullValueFilter={DbNull,JsonNull,AnyNull};
@@ -1245,11 +1245,6 @@ export type AccountFindManyArgs<ExtArgs extends runtime.Types.Extensions.Interna
1245
1245
  * Skip the first `n` Accounts.
1246
1246
  */
1247
1247
  skip?: number;
1248
- /**
1249
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
1250
- *
1251
- * Filter by unique combinations of Accounts.
1252
- */
1253
1248
  distinct?: Prisma.AccountScalarFieldEnum | Prisma.AccountScalarFieldEnum[];
1254
1249
  };
1255
1250
  /**
@@ -1,2 +1 @@
1
- export {};
2
- //# sourceMappingURL=Account.js.map
1
+ export{};
@@ -2039,11 +2039,6 @@ export type AddressFindManyArgs<ExtArgs extends runtime.Types.Extensions.Interna
2039
2039
  * Skip the first `n` Addresses.
2040
2040
  */
2041
2041
  skip?: number;
2042
- /**
2043
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
2044
- *
2045
- * Filter by unique combinations of Addresses.
2046
- */
2047
2042
  distinct?: Prisma.AddressScalarFieldEnum | Prisma.AddressScalarFieldEnum[];
2048
2043
  };
2049
2044
  /**
@@ -1,2 +1 @@
1
- export {};
2
- //# sourceMappingURL=Address.js.map
1
+ export{};
@@ -1255,11 +1255,6 @@ export type CampaignFindManyArgs<ExtArgs extends runtime.Types.Extensions.Intern
1255
1255
  * Skip the first `n` Campaigns.
1256
1256
  */
1257
1257
  skip?: number;
1258
- /**
1259
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
1260
- *
1261
- * Filter by unique combinations of Campaigns.
1262
- */
1263
1258
  distinct?: Prisma.CampaignScalarFieldEnum | Prisma.CampaignScalarFieldEnum[];
1264
1259
  };
1265
1260
  /**
@@ -1,2 +1 @@
1
- export {};
2
- //# sourceMappingURL=Campaign.js.map
1
+ export{};
@@ -1003,11 +1003,6 @@ export type ClosingTimesFindManyArgs<ExtArgs extends runtime.Types.Extensions.In
1003
1003
  * Skip the first `n` ClosingTimes.
1004
1004
  */
1005
1005
  skip?: number;
1006
- /**
1007
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
1008
- *
1009
- * Filter by unique combinations of ClosingTimes.
1010
- */
1011
1006
  distinct?: Prisma.ClosingTimesScalarFieldEnum | Prisma.ClosingTimesScalarFieldEnum[];
1012
1007
  };
1013
1008
  /**
@@ -1,2 +1 @@
1
- export {};
2
- //# sourceMappingURL=ClosingTimes.js.map
1
+ export{};
@@ -2297,11 +2297,6 @@ export type FileFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalAr
2297
2297
  * Skip the first `n` Files.
2298
2298
  */
2299
2299
  skip?: number;
2300
- /**
2301
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
2302
- *
2303
- * Filter by unique combinations of Files.
2304
- */
2305
2300
  distinct?: Prisma.FileScalarFieldEnum | Prisma.FileScalarFieldEnum[];
2306
2301
  };
2307
2302
  /**
@@ -1,2 +1 @@
1
- export {};
2
- //# sourceMappingURL=File.js.map
1
+ export{};
@@ -1149,11 +1149,6 @@ export type InvitationFindManyArgs<ExtArgs extends runtime.Types.Extensions.Inte
1149
1149
  * Skip the first `n` Invitations.
1150
1150
  */
1151
1151
  skip?: number;
1152
- /**
1153
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
1154
- *
1155
- * Filter by unique combinations of Invitations.
1156
- */
1157
1152
  distinct?: Prisma.InvitationScalarFieldEnum | Prisma.InvitationScalarFieldEnum[];
1158
1153
  };
1159
1154
  /**
@@ -1,2 +1 @@
1
- export {};
2
- //# sourceMappingURL=Invitation.js.map
1
+ export{};
@@ -1335,11 +1335,6 @@ export type LegalEntityFindManyArgs<ExtArgs extends runtime.Types.Extensions.Int
1335
1335
  * Skip the first `n` LegalEntities.
1336
1336
  */
1337
1337
  skip?: number;
1338
- /**
1339
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
1340
- *
1341
- * Filter by unique combinations of LegalEntities.
1342
- */
1343
1338
  distinct?: Prisma.LegalEntityScalarFieldEnum | Prisma.LegalEntityScalarFieldEnum[];
1344
1339
  };
1345
1340
  /**
@@ -1,2 +1 @@
1
- export {};
2
- //# sourceMappingURL=LegalEntity.js.map
1
+ export{};
@@ -1468,11 +1468,6 @@ export type ManufacturerFindManyArgs<ExtArgs extends runtime.Types.Extensions.In
1468
1468
  * Skip the first `n` Manufacturers.
1469
1469
  */
1470
1470
  skip?: number;
1471
- /**
1472
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
1473
- *
1474
- * Filter by unique combinations of Manufacturers.
1475
- */
1476
1471
  distinct?: Prisma.ManufacturerScalarFieldEnum | Prisma.ManufacturerScalarFieldEnum[];
1477
1472
  };
1478
1473
  /**
@@ -1,2 +1 @@
1
- export {};
2
- //# sourceMappingURL=Manufacturer.js.map
1
+ export{};