@aiao/rxdb-test 0.0.15 → 0.0.17

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 (50) hide show
  1. package/README.md +30 -1
  2. package/dist/entities/FileLarge.d.ts +339 -0
  3. package/dist/entities/FileLarge.js +77 -0
  4. package/dist/entities/FileNode.d.ts +335 -0
  5. package/dist/entities/FileNode.js +77 -0
  6. package/dist/entities/MenuLarge.d.ts +294 -0
  7. package/dist/entities/MenuLarge.js +41 -0
  8. package/dist/entities/MenuSimple.d.ts +290 -0
  9. package/dist/entities/MenuSimple.js +41 -0
  10. package/dist/entities/Todo.d.ts +165 -0
  11. package/dist/entities/Todo.js +34 -0
  12. package/dist/entities/TypeDemo.d.ts +289 -0
  13. package/dist/entities/TypeDemo.js +137 -0
  14. package/dist/entities/index.d.ts +14 -1655
  15. package/dist/entities/index.js +6 -360
  16. package/dist/graph/index.d.ts +1 -2
  17. package/dist/graph/index.js +1 -1
  18. package/dist/shop/Attribute.d.ts +992 -0
  19. package/dist/shop/Attribute.js +50 -0
  20. package/dist/shop/AttributeValue.d.ts +999 -0
  21. package/dist/shop/AttributeValue.js +51 -0
  22. package/dist/shop/Category.d.ts +772 -0
  23. package/dist/shop/Category.js +52 -0
  24. package/dist/shop/IdCard.d.ts +647 -0
  25. package/dist/shop/IdCard.js +43 -0
  26. package/dist/shop/Order.d.ts +690 -0
  27. package/dist/shop/Order.js +66 -0
  28. package/dist/shop/OrderItem.d.ts +665 -0
  29. package/dist/shop/OrderItem.js +76 -0
  30. package/dist/shop/Product.d.ts +761 -0
  31. package/dist/shop/Product.js +58 -0
  32. package/dist/shop/SKU.d.ts +634 -0
  33. package/dist/shop/SKU.js +74 -0
  34. package/dist/shop/SKUAttributes.d.ts +625 -0
  35. package/dist/shop/SKUAttributes.js +56 -0
  36. package/dist/shop/User.d.ts +679 -0
  37. package/dist/shop/User.js +74 -0
  38. package/dist/shop/index.d.ts +52 -2990
  39. package/dist/shop/index.js +10 -528
  40. package/dist/system/RxDBBranch.d.ts +396 -0
  41. package/dist/system/RxDBBranch.js +106 -0
  42. package/dist/system/RxDBChange.d.ts +361 -0
  43. package/dist/system/RxDBChange.js +123 -0
  44. package/dist/system/RxDBMigration.d.ts +167 -0
  45. package/dist/system/RxDBMigration.js +40 -0
  46. package/dist/system/RxDBSync.d.ts +339 -0
  47. package/dist/system/RxDBSync.js +122 -0
  48. package/dist/system/index.d.ts +9 -1240
  49. package/dist/system/index.js +4 -384
  50. package/package.json +3 -3
@@ -0,0 +1,999 @@
1
+ import { BooleanRules, CountOptions, DateRules, ENTITY_STATIC_TYPES, EntityBase, EntityType, FindAllOptions, FindByCursorOptions, FindOneOptions, FindOneOrFailOptions, FindOptions, IEntity, ITreeEntity, NumberRules, RelationBooleanRules, RelationDateRules, RelationEntitiesObservable, RelationEntityObservable, RelationExistsRules, RelationNumberRules, RelationStringRules, RelationUUIDRules, RuleGroupBase, StringRules, UUID, UUIDRules } from '@aiao/rxdb';
2
+ import { Observable } from 'rxjs';
3
+
4
+ /**
5
+ * rule
6
+ */
7
+ declare type AttributeValueRule = UUIDRules<AttributeValue, 'id'>
8
+ | DateRules<AttributeValue, 'createdAt'>
9
+ | DateRules<AttributeValue, 'updatedAt'>
10
+ | StringRules<AttributeValue, 'createdBy'>
11
+ | StringRules<AttributeValue, 'updatedBy'>
12
+ | StringRules<AttributeValue, 'name'>
13
+ | UUIDRules<AttributeValue, 'attributeId'>
14
+ | RelationExistsRules<'attribute', AttributeRuleGroup>
15
+ | RelationUUIDRules<'attribute.id', UUID>
16
+ | RelationDateRules<'attribute.createdAt', Date>
17
+ | RelationDateRules<'attribute.updatedAt', Date>
18
+ | RelationStringRules<'attribute.createdBy', string | null>
19
+ | RelationStringRules<'attribute.updatedBy', string | null>
20
+ | RelationStringRules<'attribute.name', string>
21
+ | RelationUUIDRules<'attribute.skuAttributes.id', UUID>
22
+ | RelationDateRules<'attribute.skuAttributes.createdAt', Date>
23
+ | RelationDateRules<'attribute.skuAttributes.updatedAt', Date>
24
+ | RelationStringRules<'attribute.skuAttributes.createdBy', string | null>
25
+ | RelationStringRules<'attribute.skuAttributes.updatedBy', string | null>
26
+ | UUIDRules<SKUAttributes, 'skuId'>
27
+ | UUIDRules<SKUAttributes, 'attributeId'>
28
+ | UUIDRules<SKUAttributes, 'valueId'>
29
+ | RelationUUIDRules<'attribute.skuAttributes.sku.id', UUID>
30
+ | RelationDateRules<'attribute.skuAttributes.sku.createdAt', Date>
31
+ | RelationDateRules<'attribute.skuAttributes.sku.updatedAt', Date>
32
+ | RelationStringRules<'attribute.skuAttributes.sku.createdBy', string | null>
33
+ | RelationStringRules<'attribute.skuAttributes.sku.updatedBy', string | null>
34
+ | RelationStringRules<'attribute.skuAttributes.sku.code', string>
35
+ | RelationNumberRules<'attribute.skuAttributes.sku.price', number>
36
+ | RelationNumberRules<'attribute.skuAttributes.sku.stock', number>
37
+ | UUIDRules<SKU, 'productId'>
38
+ | RelationUUIDRules<'attribute.skuAttributes.sku.attributes.id', UUID>
39
+ | RelationDateRules<'attribute.skuAttributes.sku.attributes.createdAt', Date>
40
+ | RelationDateRules<'attribute.skuAttributes.sku.attributes.updatedAt', Date>
41
+ | RelationStringRules<'attribute.skuAttributes.sku.attributes.createdBy', string | null>
42
+ | RelationStringRules<'attribute.skuAttributes.sku.attributes.updatedBy', string | null>
43
+ | RelationUUIDRules<'attribute.skuAttributes.sku.orderItems.id', UUID>
44
+ | RelationDateRules<'attribute.skuAttributes.sku.orderItems.createdAt', Date>
45
+ | RelationDateRules<'attribute.skuAttributes.sku.orderItems.updatedAt', Date>
46
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.createdBy', string | null>
47
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.updatedBy', string | null>
48
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.productName', string>
49
+ | RelationNumberRules<'attribute.skuAttributes.sku.orderItems.quantity', number>
50
+ | RelationNumberRules<'attribute.skuAttributes.sku.orderItems.price', number>
51
+ | UUIDRules<OrderItem, 'orderId'>
52
+ | UUIDRules<OrderItem, 'skuId'>
53
+ | RelationUUIDRules<'attribute.skuAttributes.sku.orderItems.order.id', UUID>
54
+ | RelationDateRules<'attribute.skuAttributes.sku.orderItems.order.createdAt', Date>
55
+ | RelationDateRules<'attribute.skuAttributes.sku.orderItems.order.updatedAt', Date>
56
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.order.createdBy', string | null>
57
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.order.updatedBy', string | null>
58
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.order.number', string>
59
+ | RelationNumberRules<'attribute.skuAttributes.sku.orderItems.order.amount', number>
60
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.order.status', string | null>
61
+ | UUIDRules<Order, 'ownerId'>
62
+ | RelationUUIDRules<'attribute.skuAttributes.sku.orderItems.order.owner.id', UUID>
63
+ | RelationDateRules<'attribute.skuAttributes.sku.orderItems.order.owner.createdAt', Date>
64
+ | RelationDateRules<'attribute.skuAttributes.sku.orderItems.order.owner.updatedAt', Date>
65
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.order.owner.createdBy', string | null>
66
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.order.owner.updatedBy', string | null>
67
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.order.owner.name', string>
68
+ | RelationBooleanRules<'attribute.skuAttributes.sku.orderItems.order.owner.married', boolean>
69
+ | RelationNumberRules<'attribute.skuAttributes.sku.orderItems.order.owner.age', number>
70
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.order.owner.gender', string | null>
71
+ | UUIDRules<User, 'idCardId'>
72
+ | RelationUUIDRules<'attribute.skuAttributes.sku.orderItems.order.owner.idCard.id', UUID>
73
+ | RelationDateRules<'attribute.skuAttributes.sku.orderItems.order.owner.idCard.createdAt', Date>
74
+ | RelationDateRules<'attribute.skuAttributes.sku.orderItems.order.owner.idCard.updatedAt', Date>
75
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.order.owner.idCard.createdBy', string | null>
76
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.order.owner.idCard.updatedBy', string | null>
77
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.order.owner.idCard.code', string>
78
+ | UUIDRules<IdCard, 'ownerId'>
79
+ | RelationUUIDRules<'attribute.skuAttributes.sku.orderItems.order.owner.idCard.owner.id', UUID>
80
+ | RelationDateRules<'attribute.skuAttributes.sku.orderItems.order.owner.idCard.owner.createdAt', Date>
81
+ | RelationDateRules<'attribute.skuAttributes.sku.orderItems.order.owner.idCard.owner.updatedAt', Date>
82
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.order.owner.idCard.owner.createdBy', string | null>
83
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.order.owner.idCard.owner.updatedBy', string | null>
84
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.order.owner.idCard.owner.name', string>
85
+ | RelationBooleanRules<'attribute.skuAttributes.sku.orderItems.order.owner.idCard.owner.married', boolean>
86
+ | RelationNumberRules<'attribute.skuAttributes.sku.orderItems.order.owner.idCard.owner.age', number>
87
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.order.owner.idCard.owner.gender', string | null>
88
+ | RelationUUIDRules<'attribute.skuAttributes.sku.orderItems.order.owner.orders.id', UUID>
89
+ | RelationDateRules<'attribute.skuAttributes.sku.orderItems.order.owner.orders.createdAt', Date>
90
+ | RelationDateRules<'attribute.skuAttributes.sku.orderItems.order.owner.orders.updatedAt', Date>
91
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.order.owner.orders.createdBy', string | null>
92
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.order.owner.orders.updatedBy', string | null>
93
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.order.owner.orders.number', string>
94
+ | RelationNumberRules<'attribute.skuAttributes.sku.orderItems.order.owner.orders.amount', number>
95
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.order.owner.orders.status', string | null>
96
+ | RelationUUIDRules<'attribute.skuAttributes.sku.orderItems.order.items.id', UUID>
97
+ | RelationDateRules<'attribute.skuAttributes.sku.orderItems.order.items.createdAt', Date>
98
+ | RelationDateRules<'attribute.skuAttributes.sku.orderItems.order.items.updatedAt', Date>
99
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.order.items.createdBy', string | null>
100
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.order.items.updatedBy', string | null>
101
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.order.items.productName', string>
102
+ | RelationNumberRules<'attribute.skuAttributes.sku.orderItems.order.items.quantity', number>
103
+ | RelationNumberRules<'attribute.skuAttributes.sku.orderItems.order.items.price', number>
104
+ | RelationUUIDRules<'attribute.skuAttributes.sku.orderItems.categories.id', UUID>
105
+ | RelationDateRules<'attribute.skuAttributes.sku.orderItems.categories.createdAt', Date>
106
+ | RelationDateRules<'attribute.skuAttributes.sku.orderItems.categories.updatedAt', Date>
107
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.categories.createdBy', string | null>
108
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.categories.updatedBy', string | null>
109
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.categories.name', string>
110
+ | RelationUUIDRules<'attribute.skuAttributes.sku.orderItems.categories.products.id', UUID>
111
+ | RelationDateRules<'attribute.skuAttributes.sku.orderItems.categories.products.createdAt', Date>
112
+ | RelationDateRules<'attribute.skuAttributes.sku.orderItems.categories.products.updatedAt', Date>
113
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.categories.products.createdBy', string | null>
114
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.categories.products.updatedBy', string | null>
115
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.categories.products.name', string>
116
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.categories.products.description', string | null>
117
+ | RelationUUIDRules<'attribute.skuAttributes.sku.orderItems.categories.products.skus.id', UUID>
118
+ | RelationDateRules<'attribute.skuAttributes.sku.orderItems.categories.products.skus.createdAt', Date>
119
+ | RelationDateRules<'attribute.skuAttributes.sku.orderItems.categories.products.skus.updatedAt', Date>
120
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.categories.products.skus.createdBy', string | null>
121
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.categories.products.skus.updatedBy', string | null>
122
+ | RelationStringRules<'attribute.skuAttributes.sku.orderItems.categories.products.skus.code', string>
123
+ | RelationNumberRules<'attribute.skuAttributes.sku.orderItems.categories.products.skus.price', number>
124
+ | RelationNumberRules<'attribute.skuAttributes.sku.orderItems.categories.products.skus.stock', number>
125
+ | RelationUUIDRules<'attribute.skuAttributes.sku.product.id', UUID>
126
+ | RelationDateRules<'attribute.skuAttributes.sku.product.createdAt', Date>
127
+ | RelationDateRules<'attribute.skuAttributes.sku.product.updatedAt', Date>
128
+ | RelationStringRules<'attribute.skuAttributes.sku.product.createdBy', string | null>
129
+ | RelationStringRules<'attribute.skuAttributes.sku.product.updatedBy', string | null>
130
+ | RelationStringRules<'attribute.skuAttributes.sku.product.name', string>
131
+ | RelationStringRules<'attribute.skuAttributes.sku.product.description', string | null>
132
+ | RelationUUIDRules<'attribute.skuAttributes.sku.product.skus.id', UUID>
133
+ | RelationDateRules<'attribute.skuAttributes.sku.product.skus.createdAt', Date>
134
+ | RelationDateRules<'attribute.skuAttributes.sku.product.skus.updatedAt', Date>
135
+ | RelationStringRules<'attribute.skuAttributes.sku.product.skus.createdBy', string | null>
136
+ | RelationStringRules<'attribute.skuAttributes.sku.product.skus.updatedBy', string | null>
137
+ | RelationStringRules<'attribute.skuAttributes.sku.product.skus.code', string>
138
+ | RelationNumberRules<'attribute.skuAttributes.sku.product.skus.price', number>
139
+ | RelationNumberRules<'attribute.skuAttributes.sku.product.skus.stock', number>
140
+ | RelationUUIDRules<'attribute.skuAttributes.sku.product.categories.id', UUID>
141
+ | RelationDateRules<'attribute.skuAttributes.sku.product.categories.createdAt', Date>
142
+ | RelationDateRules<'attribute.skuAttributes.sku.product.categories.updatedAt', Date>
143
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.createdBy', string | null>
144
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.updatedBy', string | null>
145
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.name', string>
146
+ | RelationUUIDRules<'attribute.skuAttributes.sku.product.categories.orderItems.id', UUID>
147
+ | RelationDateRules<'attribute.skuAttributes.sku.product.categories.orderItems.createdAt', Date>
148
+ | RelationDateRules<'attribute.skuAttributes.sku.product.categories.orderItems.updatedAt', Date>
149
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.orderItems.createdBy', string | null>
150
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.orderItems.updatedBy', string | null>
151
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.orderItems.productName', string>
152
+ | RelationNumberRules<'attribute.skuAttributes.sku.product.categories.orderItems.quantity', number>
153
+ | RelationNumberRules<'attribute.skuAttributes.sku.product.categories.orderItems.price', number>
154
+ | RelationUUIDRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.id', UUID>
155
+ | RelationDateRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.createdAt', Date>
156
+ | RelationDateRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.updatedAt', Date>
157
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.createdBy', string | null>
158
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.updatedBy', string | null>
159
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.number', string>
160
+ | RelationNumberRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.amount', number>
161
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.status', string | null>
162
+ | RelationUUIDRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.id', UUID>
163
+ | RelationDateRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.createdAt', Date>
164
+ | RelationDateRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.updatedAt', Date>
165
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.createdBy', string | null>
166
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.updatedBy', string | null>
167
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.name', string>
168
+ | RelationBooleanRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.married', boolean>
169
+ | RelationNumberRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.age', number>
170
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.gender', string | null>
171
+ | RelationUUIDRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.id', UUID>
172
+ | RelationDateRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.createdAt', Date>
173
+ | RelationDateRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.updatedAt', Date>
174
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.createdBy', string | null>
175
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.updatedBy', string | null>
176
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.code', string>
177
+ | RelationUUIDRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.owner.id', UUID>
178
+ | RelationDateRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.owner.createdAt', Date>
179
+ | RelationDateRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.owner.updatedAt', Date>
180
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.owner.createdBy', string | null>
181
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.owner.updatedBy', string | null>
182
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.owner.name', string>
183
+ | RelationBooleanRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.owner.married', boolean>
184
+ | RelationNumberRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.owner.age', number>
185
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.owner.gender', string | null>
186
+ | RelationUUIDRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.orders.id', UUID>
187
+ | RelationDateRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.orders.createdAt', Date>
188
+ | RelationDateRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.orders.updatedAt', Date>
189
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.orders.createdBy', string | null>
190
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.orders.updatedBy', string | null>
191
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.orders.number', string>
192
+ | RelationNumberRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.orders.amount', number>
193
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.orders.status', string | null>
194
+ | RelationUUIDRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.items.id', UUID>
195
+ | RelationDateRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.items.createdAt', Date>
196
+ | RelationDateRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.items.updatedAt', Date>
197
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.items.createdBy', string | null>
198
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.items.updatedBy', string | null>
199
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.items.productName', string>
200
+ | RelationNumberRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.items.quantity', number>
201
+ | RelationNumberRules<'attribute.skuAttributes.sku.product.categories.orderItems.order.items.price', number>
202
+ | RelationUUIDRules<'attribute.skuAttributes.sku.product.categories.orderItems.sku.id', UUID>
203
+ | RelationDateRules<'attribute.skuAttributes.sku.product.categories.orderItems.sku.createdAt', Date>
204
+ | RelationDateRules<'attribute.skuAttributes.sku.product.categories.orderItems.sku.updatedAt', Date>
205
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.orderItems.sku.createdBy', string | null>
206
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.orderItems.sku.updatedBy', string | null>
207
+ | RelationStringRules<'attribute.skuAttributes.sku.product.categories.orderItems.sku.code', string>
208
+ | RelationNumberRules<'attribute.skuAttributes.sku.product.categories.orderItems.sku.price', number>
209
+ | RelationNumberRules<'attribute.skuAttributes.sku.product.categories.orderItems.sku.stock', number>
210
+ | RelationExistsRules<'skuAttributeValues', SKUAttributesRuleGroup>
211
+ | RelationUUIDRules<'skuAttributeValues.id', UUID>
212
+ | RelationDateRules<'skuAttributeValues.createdAt', Date>
213
+ | RelationDateRules<'skuAttributeValues.updatedAt', Date>
214
+ | RelationStringRules<'skuAttributeValues.createdBy', string | null>
215
+ | RelationStringRules<'skuAttributeValues.updatedBy', string | null>
216
+ | RelationUUIDRules<'skuAttributeValues.sku.id', UUID>
217
+ | RelationDateRules<'skuAttributeValues.sku.createdAt', Date>
218
+ | RelationDateRules<'skuAttributeValues.sku.updatedAt', Date>
219
+ | RelationStringRules<'skuAttributeValues.sku.createdBy', string | null>
220
+ | RelationStringRules<'skuAttributeValues.sku.updatedBy', string | null>
221
+ | RelationStringRules<'skuAttributeValues.sku.code', string>
222
+ | RelationNumberRules<'skuAttributeValues.sku.price', number>
223
+ | RelationNumberRules<'skuAttributeValues.sku.stock', number>
224
+ | RelationUUIDRules<'skuAttributeValues.sku.attributes.id', UUID>
225
+ | RelationDateRules<'skuAttributeValues.sku.attributes.createdAt', Date>
226
+ | RelationDateRules<'skuAttributeValues.sku.attributes.updatedAt', Date>
227
+ | RelationStringRules<'skuAttributeValues.sku.attributes.createdBy', string | null>
228
+ | RelationStringRules<'skuAttributeValues.sku.attributes.updatedBy', string | null>
229
+ | RelationUUIDRules<'skuAttributeValues.sku.orderItems.id', UUID>
230
+ | RelationDateRules<'skuAttributeValues.sku.orderItems.createdAt', Date>
231
+ | RelationDateRules<'skuAttributeValues.sku.orderItems.updatedAt', Date>
232
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.createdBy', string | null>
233
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.updatedBy', string | null>
234
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.productName', string>
235
+ | RelationNumberRules<'skuAttributeValues.sku.orderItems.quantity', number>
236
+ | RelationNumberRules<'skuAttributeValues.sku.orderItems.price', number>
237
+ | RelationUUIDRules<'skuAttributeValues.sku.orderItems.order.id', UUID>
238
+ | RelationDateRules<'skuAttributeValues.sku.orderItems.order.createdAt', Date>
239
+ | RelationDateRules<'skuAttributeValues.sku.orderItems.order.updatedAt', Date>
240
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.order.createdBy', string | null>
241
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.order.updatedBy', string | null>
242
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.order.number', string>
243
+ | RelationNumberRules<'skuAttributeValues.sku.orderItems.order.amount', number>
244
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.order.status', string | null>
245
+ | RelationUUIDRules<'skuAttributeValues.sku.orderItems.order.owner.id', UUID>
246
+ | RelationDateRules<'skuAttributeValues.sku.orderItems.order.owner.createdAt', Date>
247
+ | RelationDateRules<'skuAttributeValues.sku.orderItems.order.owner.updatedAt', Date>
248
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.order.owner.createdBy', string | null>
249
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.order.owner.updatedBy', string | null>
250
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.order.owner.name', string>
251
+ | RelationBooleanRules<'skuAttributeValues.sku.orderItems.order.owner.married', boolean>
252
+ | RelationNumberRules<'skuAttributeValues.sku.orderItems.order.owner.age', number>
253
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.order.owner.gender', string | null>
254
+ | RelationUUIDRules<'skuAttributeValues.sku.orderItems.order.owner.idCard.id', UUID>
255
+ | RelationDateRules<'skuAttributeValues.sku.orderItems.order.owner.idCard.createdAt', Date>
256
+ | RelationDateRules<'skuAttributeValues.sku.orderItems.order.owner.idCard.updatedAt', Date>
257
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.order.owner.idCard.createdBy', string | null>
258
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.order.owner.idCard.updatedBy', string | null>
259
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.order.owner.idCard.code', string>
260
+ | RelationUUIDRules<'skuAttributeValues.sku.orderItems.order.owner.idCard.owner.id', UUID>
261
+ | RelationDateRules<'skuAttributeValues.sku.orderItems.order.owner.idCard.owner.createdAt', Date>
262
+ | RelationDateRules<'skuAttributeValues.sku.orderItems.order.owner.idCard.owner.updatedAt', Date>
263
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.order.owner.idCard.owner.createdBy', string | null>
264
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.order.owner.idCard.owner.updatedBy', string | null>
265
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.order.owner.idCard.owner.name', string>
266
+ | RelationBooleanRules<'skuAttributeValues.sku.orderItems.order.owner.idCard.owner.married', boolean>
267
+ | RelationNumberRules<'skuAttributeValues.sku.orderItems.order.owner.idCard.owner.age', number>
268
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.order.owner.idCard.owner.gender', string | null>
269
+ | RelationUUIDRules<'skuAttributeValues.sku.orderItems.order.owner.orders.id', UUID>
270
+ | RelationDateRules<'skuAttributeValues.sku.orderItems.order.owner.orders.createdAt', Date>
271
+ | RelationDateRules<'skuAttributeValues.sku.orderItems.order.owner.orders.updatedAt', Date>
272
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.order.owner.orders.createdBy', string | null>
273
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.order.owner.orders.updatedBy', string | null>
274
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.order.owner.orders.number', string>
275
+ | RelationNumberRules<'skuAttributeValues.sku.orderItems.order.owner.orders.amount', number>
276
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.order.owner.orders.status', string | null>
277
+ | RelationUUIDRules<'skuAttributeValues.sku.orderItems.order.items.id', UUID>
278
+ | RelationDateRules<'skuAttributeValues.sku.orderItems.order.items.createdAt', Date>
279
+ | RelationDateRules<'skuAttributeValues.sku.orderItems.order.items.updatedAt', Date>
280
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.order.items.createdBy', string | null>
281
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.order.items.updatedBy', string | null>
282
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.order.items.productName', string>
283
+ | RelationNumberRules<'skuAttributeValues.sku.orderItems.order.items.quantity', number>
284
+ | RelationNumberRules<'skuAttributeValues.sku.orderItems.order.items.price', number>
285
+ | RelationUUIDRules<'skuAttributeValues.sku.orderItems.categories.id', UUID>
286
+ | RelationDateRules<'skuAttributeValues.sku.orderItems.categories.createdAt', Date>
287
+ | RelationDateRules<'skuAttributeValues.sku.orderItems.categories.updatedAt', Date>
288
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.categories.createdBy', string | null>
289
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.categories.updatedBy', string | null>
290
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.categories.name', string>
291
+ | RelationUUIDRules<'skuAttributeValues.sku.orderItems.categories.products.id', UUID>
292
+ | RelationDateRules<'skuAttributeValues.sku.orderItems.categories.products.createdAt', Date>
293
+ | RelationDateRules<'skuAttributeValues.sku.orderItems.categories.products.updatedAt', Date>
294
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.categories.products.createdBy', string | null>
295
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.categories.products.updatedBy', string | null>
296
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.categories.products.name', string>
297
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.categories.products.description', string | null>
298
+ | RelationUUIDRules<'skuAttributeValues.sku.orderItems.categories.products.skus.id', UUID>
299
+ | RelationDateRules<'skuAttributeValues.sku.orderItems.categories.products.skus.createdAt', Date>
300
+ | RelationDateRules<'skuAttributeValues.sku.orderItems.categories.products.skus.updatedAt', Date>
301
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.categories.products.skus.createdBy', string | null>
302
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.categories.products.skus.updatedBy', string | null>
303
+ | RelationStringRules<'skuAttributeValues.sku.orderItems.categories.products.skus.code', string>
304
+ | RelationNumberRules<'skuAttributeValues.sku.orderItems.categories.products.skus.price', number>
305
+ | RelationNumberRules<'skuAttributeValues.sku.orderItems.categories.products.skus.stock', number>
306
+ | RelationUUIDRules<'skuAttributeValues.sku.product.id', UUID>
307
+ | RelationDateRules<'skuAttributeValues.sku.product.createdAt', Date>
308
+ | RelationDateRules<'skuAttributeValues.sku.product.updatedAt', Date>
309
+ | RelationStringRules<'skuAttributeValues.sku.product.createdBy', string | null>
310
+ | RelationStringRules<'skuAttributeValues.sku.product.updatedBy', string | null>
311
+ | RelationStringRules<'skuAttributeValues.sku.product.name', string>
312
+ | RelationStringRules<'skuAttributeValues.sku.product.description', string | null>
313
+ | RelationUUIDRules<'skuAttributeValues.sku.product.skus.id', UUID>
314
+ | RelationDateRules<'skuAttributeValues.sku.product.skus.createdAt', Date>
315
+ | RelationDateRules<'skuAttributeValues.sku.product.skus.updatedAt', Date>
316
+ | RelationStringRules<'skuAttributeValues.sku.product.skus.createdBy', string | null>
317
+ | RelationStringRules<'skuAttributeValues.sku.product.skus.updatedBy', string | null>
318
+ | RelationStringRules<'skuAttributeValues.sku.product.skus.code', string>
319
+ | RelationNumberRules<'skuAttributeValues.sku.product.skus.price', number>
320
+ | RelationNumberRules<'skuAttributeValues.sku.product.skus.stock', number>
321
+ | RelationUUIDRules<'skuAttributeValues.sku.product.categories.id', UUID>
322
+ | RelationDateRules<'skuAttributeValues.sku.product.categories.createdAt', Date>
323
+ | RelationDateRules<'skuAttributeValues.sku.product.categories.updatedAt', Date>
324
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.createdBy', string | null>
325
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.updatedBy', string | null>
326
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.name', string>
327
+ | RelationUUIDRules<'skuAttributeValues.sku.product.categories.orderItems.id', UUID>
328
+ | RelationDateRules<'skuAttributeValues.sku.product.categories.orderItems.createdAt', Date>
329
+ | RelationDateRules<'skuAttributeValues.sku.product.categories.orderItems.updatedAt', Date>
330
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.orderItems.createdBy', string | null>
331
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.orderItems.updatedBy', string | null>
332
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.orderItems.productName', string>
333
+ | RelationNumberRules<'skuAttributeValues.sku.product.categories.orderItems.quantity', number>
334
+ | RelationNumberRules<'skuAttributeValues.sku.product.categories.orderItems.price', number>
335
+ | RelationUUIDRules<'skuAttributeValues.sku.product.categories.orderItems.order.id', UUID>
336
+ | RelationDateRules<'skuAttributeValues.sku.product.categories.orderItems.order.createdAt', Date>
337
+ | RelationDateRules<'skuAttributeValues.sku.product.categories.orderItems.order.updatedAt', Date>
338
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.orderItems.order.createdBy', string | null>
339
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.orderItems.order.updatedBy', string | null>
340
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.orderItems.order.number', string>
341
+ | RelationNumberRules<'skuAttributeValues.sku.product.categories.orderItems.order.amount', number>
342
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.orderItems.order.status', string | null>
343
+ | RelationUUIDRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.id', UUID>
344
+ | RelationDateRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.createdAt', Date>
345
+ | RelationDateRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.updatedAt', Date>
346
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.createdBy', string | null>
347
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.updatedBy', string | null>
348
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.name', string>
349
+ | RelationBooleanRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.married', boolean>
350
+ | RelationNumberRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.age', number>
351
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.gender', string | null>
352
+ | RelationUUIDRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.id', UUID>
353
+ | RelationDateRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.createdAt', Date>
354
+ | RelationDateRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.updatedAt', Date>
355
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.createdBy', string | null>
356
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.updatedBy', string | null>
357
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.code', string>
358
+ | RelationUUIDRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.owner.id', UUID>
359
+ | RelationDateRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.owner.createdAt', Date>
360
+ | RelationDateRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.owner.updatedAt', Date>
361
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.owner.createdBy', string | null>
362
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.owner.updatedBy', string | null>
363
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.owner.name', string>
364
+ | RelationBooleanRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.owner.married', boolean>
365
+ | RelationNumberRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.owner.age', number>
366
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.owner.gender', string | null>
367
+ | RelationUUIDRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.orders.id', UUID>
368
+ | RelationDateRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.orders.createdAt', Date>
369
+ | RelationDateRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.orders.updatedAt', Date>
370
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.orders.createdBy', string | null>
371
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.orders.updatedBy', string | null>
372
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.orders.number', string>
373
+ | RelationNumberRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.orders.amount', number>
374
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.orderItems.order.owner.orders.status', string | null>
375
+ | RelationUUIDRules<'skuAttributeValues.sku.product.categories.orderItems.order.items.id', UUID>
376
+ | RelationDateRules<'skuAttributeValues.sku.product.categories.orderItems.order.items.createdAt', Date>
377
+ | RelationDateRules<'skuAttributeValues.sku.product.categories.orderItems.order.items.updatedAt', Date>
378
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.orderItems.order.items.createdBy', string | null>
379
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.orderItems.order.items.updatedBy', string | null>
380
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.orderItems.order.items.productName', string>
381
+ | RelationNumberRules<'skuAttributeValues.sku.product.categories.orderItems.order.items.quantity', number>
382
+ | RelationNumberRules<'skuAttributeValues.sku.product.categories.orderItems.order.items.price', number>
383
+ | RelationUUIDRules<'skuAttributeValues.sku.product.categories.orderItems.sku.id', UUID>
384
+ | RelationDateRules<'skuAttributeValues.sku.product.categories.orderItems.sku.createdAt', Date>
385
+ | RelationDateRules<'skuAttributeValues.sku.product.categories.orderItems.sku.updatedAt', Date>
386
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.orderItems.sku.createdBy', string | null>
387
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.orderItems.sku.updatedBy', string | null>
388
+ | RelationStringRules<'skuAttributeValues.sku.product.categories.orderItems.sku.code', string>
389
+ | RelationNumberRules<'skuAttributeValues.sku.product.categories.orderItems.sku.price', number>
390
+ | RelationNumberRules<'skuAttributeValues.sku.product.categories.orderItems.sku.stock', number>
391
+ | RelationUUIDRules<'skuAttributeValues.attribute.id', UUID>
392
+ | RelationDateRules<'skuAttributeValues.attribute.createdAt', Date>
393
+ | RelationDateRules<'skuAttributeValues.attribute.updatedAt', Date>
394
+ | RelationStringRules<'skuAttributeValues.attribute.createdBy', string | null>
395
+ | RelationStringRules<'skuAttributeValues.attribute.updatedBy', string | null>
396
+ | RelationStringRules<'skuAttributeValues.attribute.name', string>
397
+ | RelationUUIDRules<'skuAttributeValues.attribute.skuAttributes.id', UUID>
398
+ | RelationDateRules<'skuAttributeValues.attribute.skuAttributes.createdAt', Date>
399
+ | RelationDateRules<'skuAttributeValues.attribute.skuAttributes.updatedAt', Date>
400
+ | RelationStringRules<'skuAttributeValues.attribute.skuAttributes.createdBy', string | null>
401
+ | RelationStringRules<'skuAttributeValues.attribute.skuAttributes.updatedBy', string | null>;
402
+
403
+ /**
404
+ * RuleGroupBase
405
+ */
406
+ export declare type AttributeValueRuleGroup = RuleGroupBase<typeof AttributeValue,
407
+ |'id'
408
+ |'createdAt'
409
+ |'updatedAt'
410
+ |'createdBy'
411
+ |'updatedBy'
412
+ |'name'
413
+ |'attributeId'
414
+ |'attribute'
415
+ |'attribute.id'
416
+ |'attribute.createdAt'
417
+ |'attribute.updatedAt'
418
+ |'attribute.createdBy'
419
+ |'attribute.updatedBy'
420
+ |'attribute.name'
421
+ |'attribute.skuAttributes.id'
422
+ |'attribute.skuAttributes.createdAt'
423
+ |'attribute.skuAttributes.updatedAt'
424
+ |'attribute.skuAttributes.createdBy'
425
+ |'attribute.skuAttributes.updatedBy'
426
+ |'skuId'
427
+ |'attributeId'
428
+ |'valueId'
429
+ |'attribute.skuAttributes.sku.id'
430
+ |'attribute.skuAttributes.sku.createdAt'
431
+ |'attribute.skuAttributes.sku.updatedAt'
432
+ |'attribute.skuAttributes.sku.createdBy'
433
+ |'attribute.skuAttributes.sku.updatedBy'
434
+ |'attribute.skuAttributes.sku.code'
435
+ |'attribute.skuAttributes.sku.price'
436
+ |'attribute.skuAttributes.sku.stock'
437
+ |'productId'
438
+ |'attribute.skuAttributes.sku.attributes.id'
439
+ |'attribute.skuAttributes.sku.attributes.createdAt'
440
+ |'attribute.skuAttributes.sku.attributes.updatedAt'
441
+ |'attribute.skuAttributes.sku.attributes.createdBy'
442
+ |'attribute.skuAttributes.sku.attributes.updatedBy'
443
+ |'skuId'
444
+ |'attributeId'
445
+ |'valueId'
446
+ |'attribute.skuAttributes.sku.orderItems.id'
447
+ |'attribute.skuAttributes.sku.orderItems.createdAt'
448
+ |'attribute.skuAttributes.sku.orderItems.updatedAt'
449
+ |'attribute.skuAttributes.sku.orderItems.createdBy'
450
+ |'attribute.skuAttributes.sku.orderItems.updatedBy'
451
+ |'attribute.skuAttributes.sku.orderItems.productName'
452
+ |'attribute.skuAttributes.sku.orderItems.quantity'
453
+ |'attribute.skuAttributes.sku.orderItems.price'
454
+ |'orderId'
455
+ |'skuId'
456
+ |'attribute.skuAttributes.sku.orderItems.order.id'
457
+ |'attribute.skuAttributes.sku.orderItems.order.createdAt'
458
+ |'attribute.skuAttributes.sku.orderItems.order.updatedAt'
459
+ |'attribute.skuAttributes.sku.orderItems.order.createdBy'
460
+ |'attribute.skuAttributes.sku.orderItems.order.updatedBy'
461
+ |'attribute.skuAttributes.sku.orderItems.order.number'
462
+ |'attribute.skuAttributes.sku.orderItems.order.amount'
463
+ |'attribute.skuAttributes.sku.orderItems.order.status'
464
+ |'ownerId'
465
+ |'attribute.skuAttributes.sku.orderItems.order.owner.id'
466
+ |'attribute.skuAttributes.sku.orderItems.order.owner.createdAt'
467
+ |'attribute.skuAttributes.sku.orderItems.order.owner.updatedAt'
468
+ |'attribute.skuAttributes.sku.orderItems.order.owner.createdBy'
469
+ |'attribute.skuAttributes.sku.orderItems.order.owner.updatedBy'
470
+ |'attribute.skuAttributes.sku.orderItems.order.owner.name'
471
+ |'attribute.skuAttributes.sku.orderItems.order.owner.married'
472
+ |'attribute.skuAttributes.sku.orderItems.order.owner.age'
473
+ |'attribute.skuAttributes.sku.orderItems.order.owner.gender'
474
+ |'idCardId'
475
+ |'attribute.skuAttributes.sku.orderItems.order.owner.idCard.id'
476
+ |'attribute.skuAttributes.sku.orderItems.order.owner.idCard.createdAt'
477
+ |'attribute.skuAttributes.sku.orderItems.order.owner.idCard.updatedAt'
478
+ |'attribute.skuAttributes.sku.orderItems.order.owner.idCard.createdBy'
479
+ |'attribute.skuAttributes.sku.orderItems.order.owner.idCard.updatedBy'
480
+ |'attribute.skuAttributes.sku.orderItems.order.owner.idCard.code'
481
+ |'ownerId'
482
+ |'attribute.skuAttributes.sku.orderItems.order.owner.idCard.owner.id'
483
+ |'attribute.skuAttributes.sku.orderItems.order.owner.idCard.owner.createdAt'
484
+ |'attribute.skuAttributes.sku.orderItems.order.owner.idCard.owner.updatedAt'
485
+ |'attribute.skuAttributes.sku.orderItems.order.owner.idCard.owner.createdBy'
486
+ |'attribute.skuAttributes.sku.orderItems.order.owner.idCard.owner.updatedBy'
487
+ |'attribute.skuAttributes.sku.orderItems.order.owner.idCard.owner.name'
488
+ |'attribute.skuAttributes.sku.orderItems.order.owner.idCard.owner.married'
489
+ |'attribute.skuAttributes.sku.orderItems.order.owner.idCard.owner.age'
490
+ |'attribute.skuAttributes.sku.orderItems.order.owner.idCard.owner.gender'
491
+ |'idCardId'
492
+ |'attribute.skuAttributes.sku.orderItems.order.owner.orders.id'
493
+ |'attribute.skuAttributes.sku.orderItems.order.owner.orders.createdAt'
494
+ |'attribute.skuAttributes.sku.orderItems.order.owner.orders.updatedAt'
495
+ |'attribute.skuAttributes.sku.orderItems.order.owner.orders.createdBy'
496
+ |'attribute.skuAttributes.sku.orderItems.order.owner.orders.updatedBy'
497
+ |'attribute.skuAttributes.sku.orderItems.order.owner.orders.number'
498
+ |'attribute.skuAttributes.sku.orderItems.order.owner.orders.amount'
499
+ |'attribute.skuAttributes.sku.orderItems.order.owner.orders.status'
500
+ |'ownerId'
501
+ |'attribute.skuAttributes.sku.orderItems.order.items.id'
502
+ |'attribute.skuAttributes.sku.orderItems.order.items.createdAt'
503
+ |'attribute.skuAttributes.sku.orderItems.order.items.updatedAt'
504
+ |'attribute.skuAttributes.sku.orderItems.order.items.createdBy'
505
+ |'attribute.skuAttributes.sku.orderItems.order.items.updatedBy'
506
+ |'attribute.skuAttributes.sku.orderItems.order.items.productName'
507
+ |'attribute.skuAttributes.sku.orderItems.order.items.quantity'
508
+ |'attribute.skuAttributes.sku.orderItems.order.items.price'
509
+ |'orderId'
510
+ |'skuId'
511
+ |'attribute.skuAttributes.sku.orderItems.categories.id'
512
+ |'attribute.skuAttributes.sku.orderItems.categories.createdAt'
513
+ |'attribute.skuAttributes.sku.orderItems.categories.updatedAt'
514
+ |'attribute.skuAttributes.sku.orderItems.categories.createdBy'
515
+ |'attribute.skuAttributes.sku.orderItems.categories.updatedBy'
516
+ |'attribute.skuAttributes.sku.orderItems.categories.name'
517
+ |'attribute.skuAttributes.sku.orderItems.categories.products.id'
518
+ |'attribute.skuAttributes.sku.orderItems.categories.products.createdAt'
519
+ |'attribute.skuAttributes.sku.orderItems.categories.products.updatedAt'
520
+ |'attribute.skuAttributes.sku.orderItems.categories.products.createdBy'
521
+ |'attribute.skuAttributes.sku.orderItems.categories.products.updatedBy'
522
+ |'attribute.skuAttributes.sku.orderItems.categories.products.name'
523
+ |'attribute.skuAttributes.sku.orderItems.categories.products.description'
524
+ |'attribute.skuAttributes.sku.orderItems.categories.products.skus.id'
525
+ |'attribute.skuAttributes.sku.orderItems.categories.products.skus.createdAt'
526
+ |'attribute.skuAttributes.sku.orderItems.categories.products.skus.updatedAt'
527
+ |'attribute.skuAttributes.sku.orderItems.categories.products.skus.createdBy'
528
+ |'attribute.skuAttributes.sku.orderItems.categories.products.skus.updatedBy'
529
+ |'attribute.skuAttributes.sku.orderItems.categories.products.skus.code'
530
+ |'attribute.skuAttributes.sku.orderItems.categories.products.skus.price'
531
+ |'attribute.skuAttributes.sku.orderItems.categories.products.skus.stock'
532
+ |'productId'
533
+ |'attribute.skuAttributes.sku.product.id'
534
+ |'attribute.skuAttributes.sku.product.createdAt'
535
+ |'attribute.skuAttributes.sku.product.updatedAt'
536
+ |'attribute.skuAttributes.sku.product.createdBy'
537
+ |'attribute.skuAttributes.sku.product.updatedBy'
538
+ |'attribute.skuAttributes.sku.product.name'
539
+ |'attribute.skuAttributes.sku.product.description'
540
+ |'attribute.skuAttributes.sku.product.skus.id'
541
+ |'attribute.skuAttributes.sku.product.skus.createdAt'
542
+ |'attribute.skuAttributes.sku.product.skus.updatedAt'
543
+ |'attribute.skuAttributes.sku.product.skus.createdBy'
544
+ |'attribute.skuAttributes.sku.product.skus.updatedBy'
545
+ |'attribute.skuAttributes.sku.product.skus.code'
546
+ |'attribute.skuAttributes.sku.product.skus.price'
547
+ |'attribute.skuAttributes.sku.product.skus.stock'
548
+ |'productId'
549
+ |'attribute.skuAttributes.sku.product.categories.id'
550
+ |'attribute.skuAttributes.sku.product.categories.createdAt'
551
+ |'attribute.skuAttributes.sku.product.categories.updatedAt'
552
+ |'attribute.skuAttributes.sku.product.categories.createdBy'
553
+ |'attribute.skuAttributes.sku.product.categories.updatedBy'
554
+ |'attribute.skuAttributes.sku.product.categories.name'
555
+ |'attribute.skuAttributes.sku.product.categories.orderItems.id'
556
+ |'attribute.skuAttributes.sku.product.categories.orderItems.createdAt'
557
+ |'attribute.skuAttributes.sku.product.categories.orderItems.updatedAt'
558
+ |'attribute.skuAttributes.sku.product.categories.orderItems.createdBy'
559
+ |'attribute.skuAttributes.sku.product.categories.orderItems.updatedBy'
560
+ |'attribute.skuAttributes.sku.product.categories.orderItems.productName'
561
+ |'attribute.skuAttributes.sku.product.categories.orderItems.quantity'
562
+ |'attribute.skuAttributes.sku.product.categories.orderItems.price'
563
+ |'orderId'
564
+ |'skuId'
565
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.id'
566
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.createdAt'
567
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.updatedAt'
568
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.createdBy'
569
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.updatedBy'
570
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.number'
571
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.amount'
572
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.status'
573
+ |'ownerId'
574
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.id'
575
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.createdAt'
576
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.updatedAt'
577
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.createdBy'
578
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.updatedBy'
579
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.name'
580
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.married'
581
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.age'
582
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.gender'
583
+ |'idCardId'
584
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.id'
585
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.createdAt'
586
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.updatedAt'
587
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.createdBy'
588
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.updatedBy'
589
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.code'
590
+ |'ownerId'
591
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.owner.id'
592
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.owner.createdAt'
593
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.owner.updatedAt'
594
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.owner.createdBy'
595
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.owner.updatedBy'
596
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.owner.name'
597
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.owner.married'
598
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.owner.age'
599
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.idCard.owner.gender'
600
+ |'idCardId'
601
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.orders.id'
602
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.orders.createdAt'
603
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.orders.updatedAt'
604
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.orders.createdBy'
605
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.orders.updatedBy'
606
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.orders.number'
607
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.orders.amount'
608
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.owner.orders.status'
609
+ |'ownerId'
610
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.items.id'
611
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.items.createdAt'
612
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.items.updatedAt'
613
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.items.createdBy'
614
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.items.updatedBy'
615
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.items.productName'
616
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.items.quantity'
617
+ |'attribute.skuAttributes.sku.product.categories.orderItems.order.items.price'
618
+ |'orderId'
619
+ |'skuId'
620
+ |'attribute.skuAttributes.sku.product.categories.orderItems.sku.id'
621
+ |'attribute.skuAttributes.sku.product.categories.orderItems.sku.createdAt'
622
+ |'attribute.skuAttributes.sku.product.categories.orderItems.sku.updatedAt'
623
+ |'attribute.skuAttributes.sku.product.categories.orderItems.sku.createdBy'
624
+ |'attribute.skuAttributes.sku.product.categories.orderItems.sku.updatedBy'
625
+ |'attribute.skuAttributes.sku.product.categories.orderItems.sku.code'
626
+ |'attribute.skuAttributes.sku.product.categories.orderItems.sku.price'
627
+ |'attribute.skuAttributes.sku.product.categories.orderItems.sku.stock'
628
+ |'productId'
629
+ |'skuAttributeValues'
630
+ |'skuAttributeValues.id'
631
+ |'skuAttributeValues.createdAt'
632
+ |'skuAttributeValues.updatedAt'
633
+ |'skuAttributeValues.createdBy'
634
+ |'skuAttributeValues.updatedBy'
635
+ |'skuId'
636
+ |'attributeId'
637
+ |'valueId'
638
+ |'skuAttributeValues.sku.id'
639
+ |'skuAttributeValues.sku.createdAt'
640
+ |'skuAttributeValues.sku.updatedAt'
641
+ |'skuAttributeValues.sku.createdBy'
642
+ |'skuAttributeValues.sku.updatedBy'
643
+ |'skuAttributeValues.sku.code'
644
+ |'skuAttributeValues.sku.price'
645
+ |'skuAttributeValues.sku.stock'
646
+ |'productId'
647
+ |'skuAttributeValues.sku.attributes.id'
648
+ |'skuAttributeValues.sku.attributes.createdAt'
649
+ |'skuAttributeValues.sku.attributes.updatedAt'
650
+ |'skuAttributeValues.sku.attributes.createdBy'
651
+ |'skuAttributeValues.sku.attributes.updatedBy'
652
+ |'skuId'
653
+ |'attributeId'
654
+ |'valueId'
655
+ |'skuAttributeValues.sku.orderItems.id'
656
+ |'skuAttributeValues.sku.orderItems.createdAt'
657
+ |'skuAttributeValues.sku.orderItems.updatedAt'
658
+ |'skuAttributeValues.sku.orderItems.createdBy'
659
+ |'skuAttributeValues.sku.orderItems.updatedBy'
660
+ |'skuAttributeValues.sku.orderItems.productName'
661
+ |'skuAttributeValues.sku.orderItems.quantity'
662
+ |'skuAttributeValues.sku.orderItems.price'
663
+ |'orderId'
664
+ |'skuId'
665
+ |'skuAttributeValues.sku.orderItems.order.id'
666
+ |'skuAttributeValues.sku.orderItems.order.createdAt'
667
+ |'skuAttributeValues.sku.orderItems.order.updatedAt'
668
+ |'skuAttributeValues.sku.orderItems.order.createdBy'
669
+ |'skuAttributeValues.sku.orderItems.order.updatedBy'
670
+ |'skuAttributeValues.sku.orderItems.order.number'
671
+ |'skuAttributeValues.sku.orderItems.order.amount'
672
+ |'skuAttributeValues.sku.orderItems.order.status'
673
+ |'ownerId'
674
+ |'skuAttributeValues.sku.orderItems.order.owner.id'
675
+ |'skuAttributeValues.sku.orderItems.order.owner.createdAt'
676
+ |'skuAttributeValues.sku.orderItems.order.owner.updatedAt'
677
+ |'skuAttributeValues.sku.orderItems.order.owner.createdBy'
678
+ |'skuAttributeValues.sku.orderItems.order.owner.updatedBy'
679
+ |'skuAttributeValues.sku.orderItems.order.owner.name'
680
+ |'skuAttributeValues.sku.orderItems.order.owner.married'
681
+ |'skuAttributeValues.sku.orderItems.order.owner.age'
682
+ |'skuAttributeValues.sku.orderItems.order.owner.gender'
683
+ |'idCardId'
684
+ |'skuAttributeValues.sku.orderItems.order.owner.idCard.id'
685
+ |'skuAttributeValues.sku.orderItems.order.owner.idCard.createdAt'
686
+ |'skuAttributeValues.sku.orderItems.order.owner.idCard.updatedAt'
687
+ |'skuAttributeValues.sku.orderItems.order.owner.idCard.createdBy'
688
+ |'skuAttributeValues.sku.orderItems.order.owner.idCard.updatedBy'
689
+ |'skuAttributeValues.sku.orderItems.order.owner.idCard.code'
690
+ |'ownerId'
691
+ |'skuAttributeValues.sku.orderItems.order.owner.idCard.owner.id'
692
+ |'skuAttributeValues.sku.orderItems.order.owner.idCard.owner.createdAt'
693
+ |'skuAttributeValues.sku.orderItems.order.owner.idCard.owner.updatedAt'
694
+ |'skuAttributeValues.sku.orderItems.order.owner.idCard.owner.createdBy'
695
+ |'skuAttributeValues.sku.orderItems.order.owner.idCard.owner.updatedBy'
696
+ |'skuAttributeValues.sku.orderItems.order.owner.idCard.owner.name'
697
+ |'skuAttributeValues.sku.orderItems.order.owner.idCard.owner.married'
698
+ |'skuAttributeValues.sku.orderItems.order.owner.idCard.owner.age'
699
+ |'skuAttributeValues.sku.orderItems.order.owner.idCard.owner.gender'
700
+ |'idCardId'
701
+ |'skuAttributeValues.sku.orderItems.order.owner.orders.id'
702
+ |'skuAttributeValues.sku.orderItems.order.owner.orders.createdAt'
703
+ |'skuAttributeValues.sku.orderItems.order.owner.orders.updatedAt'
704
+ |'skuAttributeValues.sku.orderItems.order.owner.orders.createdBy'
705
+ |'skuAttributeValues.sku.orderItems.order.owner.orders.updatedBy'
706
+ |'skuAttributeValues.sku.orderItems.order.owner.orders.number'
707
+ |'skuAttributeValues.sku.orderItems.order.owner.orders.amount'
708
+ |'skuAttributeValues.sku.orderItems.order.owner.orders.status'
709
+ |'ownerId'
710
+ |'skuAttributeValues.sku.orderItems.order.items.id'
711
+ |'skuAttributeValues.sku.orderItems.order.items.createdAt'
712
+ |'skuAttributeValues.sku.orderItems.order.items.updatedAt'
713
+ |'skuAttributeValues.sku.orderItems.order.items.createdBy'
714
+ |'skuAttributeValues.sku.orderItems.order.items.updatedBy'
715
+ |'skuAttributeValues.sku.orderItems.order.items.productName'
716
+ |'skuAttributeValues.sku.orderItems.order.items.quantity'
717
+ |'skuAttributeValues.sku.orderItems.order.items.price'
718
+ |'orderId'
719
+ |'skuId'
720
+ |'skuAttributeValues.sku.orderItems.categories.id'
721
+ |'skuAttributeValues.sku.orderItems.categories.createdAt'
722
+ |'skuAttributeValues.sku.orderItems.categories.updatedAt'
723
+ |'skuAttributeValues.sku.orderItems.categories.createdBy'
724
+ |'skuAttributeValues.sku.orderItems.categories.updatedBy'
725
+ |'skuAttributeValues.sku.orderItems.categories.name'
726
+ |'skuAttributeValues.sku.orderItems.categories.products.id'
727
+ |'skuAttributeValues.sku.orderItems.categories.products.createdAt'
728
+ |'skuAttributeValues.sku.orderItems.categories.products.updatedAt'
729
+ |'skuAttributeValues.sku.orderItems.categories.products.createdBy'
730
+ |'skuAttributeValues.sku.orderItems.categories.products.updatedBy'
731
+ |'skuAttributeValues.sku.orderItems.categories.products.name'
732
+ |'skuAttributeValues.sku.orderItems.categories.products.description'
733
+ |'skuAttributeValues.sku.orderItems.categories.products.skus.id'
734
+ |'skuAttributeValues.sku.orderItems.categories.products.skus.createdAt'
735
+ |'skuAttributeValues.sku.orderItems.categories.products.skus.updatedAt'
736
+ |'skuAttributeValues.sku.orderItems.categories.products.skus.createdBy'
737
+ |'skuAttributeValues.sku.orderItems.categories.products.skus.updatedBy'
738
+ |'skuAttributeValues.sku.orderItems.categories.products.skus.code'
739
+ |'skuAttributeValues.sku.orderItems.categories.products.skus.price'
740
+ |'skuAttributeValues.sku.orderItems.categories.products.skus.stock'
741
+ |'productId'
742
+ |'skuAttributeValues.sku.product.id'
743
+ |'skuAttributeValues.sku.product.createdAt'
744
+ |'skuAttributeValues.sku.product.updatedAt'
745
+ |'skuAttributeValues.sku.product.createdBy'
746
+ |'skuAttributeValues.sku.product.updatedBy'
747
+ |'skuAttributeValues.sku.product.name'
748
+ |'skuAttributeValues.sku.product.description'
749
+ |'skuAttributeValues.sku.product.skus.id'
750
+ |'skuAttributeValues.sku.product.skus.createdAt'
751
+ |'skuAttributeValues.sku.product.skus.updatedAt'
752
+ |'skuAttributeValues.sku.product.skus.createdBy'
753
+ |'skuAttributeValues.sku.product.skus.updatedBy'
754
+ |'skuAttributeValues.sku.product.skus.code'
755
+ |'skuAttributeValues.sku.product.skus.price'
756
+ |'skuAttributeValues.sku.product.skus.stock'
757
+ |'productId'
758
+ |'skuAttributeValues.sku.product.categories.id'
759
+ |'skuAttributeValues.sku.product.categories.createdAt'
760
+ |'skuAttributeValues.sku.product.categories.updatedAt'
761
+ |'skuAttributeValues.sku.product.categories.createdBy'
762
+ |'skuAttributeValues.sku.product.categories.updatedBy'
763
+ |'skuAttributeValues.sku.product.categories.name'
764
+ |'skuAttributeValues.sku.product.categories.orderItems.id'
765
+ |'skuAttributeValues.sku.product.categories.orderItems.createdAt'
766
+ |'skuAttributeValues.sku.product.categories.orderItems.updatedAt'
767
+ |'skuAttributeValues.sku.product.categories.orderItems.createdBy'
768
+ |'skuAttributeValues.sku.product.categories.orderItems.updatedBy'
769
+ |'skuAttributeValues.sku.product.categories.orderItems.productName'
770
+ |'skuAttributeValues.sku.product.categories.orderItems.quantity'
771
+ |'skuAttributeValues.sku.product.categories.orderItems.price'
772
+ |'orderId'
773
+ |'skuId'
774
+ |'skuAttributeValues.sku.product.categories.orderItems.order.id'
775
+ |'skuAttributeValues.sku.product.categories.orderItems.order.createdAt'
776
+ |'skuAttributeValues.sku.product.categories.orderItems.order.updatedAt'
777
+ |'skuAttributeValues.sku.product.categories.orderItems.order.createdBy'
778
+ |'skuAttributeValues.sku.product.categories.orderItems.order.updatedBy'
779
+ |'skuAttributeValues.sku.product.categories.orderItems.order.number'
780
+ |'skuAttributeValues.sku.product.categories.orderItems.order.amount'
781
+ |'skuAttributeValues.sku.product.categories.orderItems.order.status'
782
+ |'ownerId'
783
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.id'
784
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.createdAt'
785
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.updatedAt'
786
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.createdBy'
787
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.updatedBy'
788
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.name'
789
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.married'
790
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.age'
791
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.gender'
792
+ |'idCardId'
793
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.id'
794
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.createdAt'
795
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.updatedAt'
796
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.createdBy'
797
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.updatedBy'
798
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.code'
799
+ |'ownerId'
800
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.owner.id'
801
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.owner.createdAt'
802
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.owner.updatedAt'
803
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.owner.createdBy'
804
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.owner.updatedBy'
805
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.owner.name'
806
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.owner.married'
807
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.owner.age'
808
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.idCard.owner.gender'
809
+ |'idCardId'
810
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.orders.id'
811
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.orders.createdAt'
812
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.orders.updatedAt'
813
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.orders.createdBy'
814
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.orders.updatedBy'
815
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.orders.number'
816
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.orders.amount'
817
+ |'skuAttributeValues.sku.product.categories.orderItems.order.owner.orders.status'
818
+ |'ownerId'
819
+ |'skuAttributeValues.sku.product.categories.orderItems.order.items.id'
820
+ |'skuAttributeValues.sku.product.categories.orderItems.order.items.createdAt'
821
+ |'skuAttributeValues.sku.product.categories.orderItems.order.items.updatedAt'
822
+ |'skuAttributeValues.sku.product.categories.orderItems.order.items.createdBy'
823
+ |'skuAttributeValues.sku.product.categories.orderItems.order.items.updatedBy'
824
+ |'skuAttributeValues.sku.product.categories.orderItems.order.items.productName'
825
+ |'skuAttributeValues.sku.product.categories.orderItems.order.items.quantity'
826
+ |'skuAttributeValues.sku.product.categories.orderItems.order.items.price'
827
+ |'orderId'
828
+ |'skuId'
829
+ |'skuAttributeValues.sku.product.categories.orderItems.sku.id'
830
+ |'skuAttributeValues.sku.product.categories.orderItems.sku.createdAt'
831
+ |'skuAttributeValues.sku.product.categories.orderItems.sku.updatedAt'
832
+ |'skuAttributeValues.sku.product.categories.orderItems.sku.createdBy'
833
+ |'skuAttributeValues.sku.product.categories.orderItems.sku.updatedBy'
834
+ |'skuAttributeValues.sku.product.categories.orderItems.sku.code'
835
+ |'skuAttributeValues.sku.product.categories.orderItems.sku.price'
836
+ |'skuAttributeValues.sku.product.categories.orderItems.sku.stock'
837
+ |'productId'
838
+ |'skuAttributeValues.attribute.id'
839
+ |'skuAttributeValues.attribute.createdAt'
840
+ |'skuAttributeValues.attribute.updatedAt'
841
+ |'skuAttributeValues.attribute.createdBy'
842
+ |'skuAttributeValues.attribute.updatedBy'
843
+ |'skuAttributeValues.attribute.name'
844
+ |'skuAttributeValues.attribute.skuAttributes.id'
845
+ |'skuAttributeValues.attribute.skuAttributes.createdAt'
846
+ |'skuAttributeValues.attribute.skuAttributes.updatedAt'
847
+ |'skuAttributeValues.attribute.skuAttributes.createdBy'
848
+ |'skuAttributeValues.attribute.skuAttributes.updatedBy'
849
+ |'skuId'
850
+ |'attributeId'
851
+ |'valueId',
852
+ AttributeValueRule>;
853
+
854
+ /**
855
+ * OrderByField
856
+ */
857
+ declare type AttributeValueOrderByField = "id" | "createdAt" | "updatedAt" | "createdBy" | "updatedBy" | "name";
858
+
859
+ /**
860
+ * 静态类型
861
+ */
862
+ export interface AttributeValueStaticTypes {
863
+ /**
864
+ * id 类型
865
+ */
866
+ idType: UUID;
867
+ /**
868
+ * 查询选项
869
+ */
870
+ getOptions: UUID;
871
+ /**
872
+ * 查询选项
873
+ */
874
+ findOneOrFailOptions: FindOneOrFailOptions<typeof AttributeValue,AttributeValueRuleGroup,AttributeValueOrderByField>;
875
+ /**
876
+ * 查询选项
877
+ */
878
+ findOptions: FindOptions<typeof AttributeValue,AttributeValueRuleGroup,AttributeValueOrderByField>;
879
+ /**
880
+ * 查询选项
881
+ */
882
+ findOneOptions: FindOneOptions<typeof AttributeValue,AttributeValueRuleGroup,AttributeValueOrderByField>;
883
+ /**
884
+ * 查询选项
885
+ */
886
+ findAllOptions: FindAllOptions<typeof AttributeValue,AttributeValueRuleGroup,AttributeValueOrderByField>;
887
+ /**
888
+ * 查询选项
889
+ */
890
+ findByCursorOptions: FindByCursorOptions<typeof AttributeValue,AttributeValueRuleGroup,AttributeValueOrderByField>;
891
+ /**
892
+ * 查询选项
893
+ */
894
+ countOptions: CountOptions<typeof AttributeValue,AttributeValueRuleGroup>;
895
+ }
896
+
897
+ /**
898
+ * 初始化数据
899
+ */
900
+ export interface AttributeValueInitData {
901
+ /**
902
+ * 属性值名称
903
+ */
904
+ name?: string;
905
+ /**
906
+ * 所属属性 id
907
+ */
908
+ attributeId?: UUID;
909
+ }
910
+
911
+ /**
912
+ * 属性值
913
+ */
914
+ export declare class AttributeValue extends EntityBase implements IEntity {
915
+ static [ENTITY_STATIC_TYPES]: AttributeValueStaticTypes;
916
+ /**
917
+ * 所属属性
918
+ */
919
+ readonly attribute$: RelationEntityObservable<typeof Attribute>;
920
+ /**
921
+ * SKU属性值关联
922
+ */
923
+ readonly skuAttributeValues$: RelationEntitiesObservable<SKUAttributes>;
924
+ /**
925
+ * 所属属性 id
926
+ */
927
+ attributeId: UUID;
928
+ /**
929
+ * 属性值名称
930
+ */
931
+ name: string;
932
+ /**
933
+ * 初始化数据
934
+ * @param initData 初始化数据
935
+ */
936
+ constructor(initData?: AttributeValueInitData);
937
+ /**
938
+ * 统计实体数量
939
+ * @param options 查询选项
940
+ * @example
941
+ * AttributeValue.count({ where: { combinator: 'and', rules: [] } }).subscribe(total => console.log(total));
942
+ */
943
+ static count(options: CountOptions<typeof AttributeValue,AttributeValueRuleGroup>): Observable<number>;
944
+ /**
945
+ * 查询多个实体
946
+ * @param options 查询选项
947
+ * @example
948
+ * AttributeValue.find({ where: { combinator: 'and', rules: [] }] }).subscribe(list => console.log(list));
949
+ */
950
+ static find(options: FindOptions<typeof AttributeValue,AttributeValueRuleGroup,AttributeValueOrderByField>): Observable<AttributeValue[]>;
951
+ /**
952
+ * 查询所有实体
953
+ * @param options 查询选项
954
+ * @example
955
+ * AttributeValue.findAll({ where: { combinator: 'and', rules: [] } }).subscribe(list => console.log(list));
956
+ */
957
+ static findAll(options: FindAllOptions<typeof AttributeValue,AttributeValueRuleGroup,AttributeValueOrderByField>): Observable<AttributeValue[]>;
958
+ /**
959
+ * 游标分页查询
960
+ * @param options 查询选项
961
+ * @example
962
+ * AttributeValue.findByCursor({ where: { combinator: 'and', rules: [] } }).subscribe(list => console.log(list));
963
+ */
964
+ static findByCursor(options: FindByCursorOptions<typeof AttributeValue,AttributeValueRuleGroup,AttributeValueOrderByField>): Observable<AttributeValue[]>;
965
+ /**
966
+ * 查询单个实体,未找到时返回 undefined
967
+ * @param options 查询选项
968
+ * @example
969
+ * AttributeValue.findOne({ where: { combinator: 'and', rules: [] } }).subscribe(entity => console.log(entity));
970
+ */
971
+ static findOne(options: FindOneOptions<typeof AttributeValue,AttributeValueRuleGroup,AttributeValueOrderByField>): Observable<AttributeValue | undefined>;
972
+ /**
973
+ * 查询单个实体,未找到时抛出错误
974
+ * @param options 查询选项
975
+ * @example
976
+ * AttributeValue.findOneOrFail({ where: { combinator: 'and', rules: [] } }).subscribe(entity => console.log(entity));
977
+ */
978
+ static findOneOrFail(options: FindOneOrFailOptions<typeof AttributeValue,AttributeValueRuleGroup,AttributeValueOrderByField>): Observable<AttributeValue>;
979
+ /**
980
+ * 根据 ID 获取单个实体
981
+ * @param options 查询选项
982
+ * @example
983
+ * AttributeValue.get('123').subscribe(entity => console.log(entity));
984
+ */
985
+ static get(options: UUID): Observable<AttributeValue>;
986
+ /**
987
+ * 删除
988
+ */
989
+ remove(): Promise<AttributeValue>;
990
+ /**
991
+ * 重置数据
992
+ */
993
+ reset(): void;
994
+ /**
995
+ * 保存
996
+ */
997
+ save(): Promise<AttributeValue>;
998
+ }
999
+