dyna-record 0.6.6 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (244) hide show
  1. package/README.md +23 -7
  2. package/dist/index.d.ts +12 -2
  3. package/dist/index.d.ts.map +1 -1
  4. package/dist/index.js +13 -22
  5. package/dist/src/DynaRecord.d.ts +3 -3
  6. package/dist/src/DynaRecord.d.ts.map +1 -1
  7. package/dist/src/DynaRecord.js +24 -59
  8. package/dist/src/Logger.js +1 -3
  9. package/dist/src/decorators/Entity.d.ts +1 -1
  10. package/dist/src/decorators/Entity.d.ts.map +1 -1
  11. package/dist/src/decorators/Entity.js +3 -8
  12. package/dist/src/decorators/Table.d.ts +2 -2
  13. package/dist/src/decorators/Table.d.ts.map +1 -1
  14. package/dist/src/decorators/Table.js +3 -8
  15. package/dist/src/decorators/attributes/BooleanAttribute.d.ts +2 -2
  16. package/dist/src/decorators/attributes/BooleanAttribute.d.ts.map +1 -1
  17. package/dist/src/decorators/attributes/BooleanAttribute.js +6 -10
  18. package/dist/src/decorators/attributes/DateAttribute.d.ts +2 -2
  19. package/dist/src/decorators/attributes/DateAttribute.d.ts.map +1 -1
  20. package/dist/src/decorators/attributes/DateAttribute.js +8 -12
  21. package/dist/src/decorators/attributes/EnumAttribute.d.ts +2 -2
  22. package/dist/src/decorators/attributes/EnumAttribute.d.ts.map +1 -1
  23. package/dist/src/decorators/attributes/EnumAttribute.js +7 -10
  24. package/dist/src/decorators/attributes/ForeignKeyAttribute.d.ts +3 -3
  25. package/dist/src/decorators/attributes/ForeignKeyAttribute.d.ts.map +1 -1
  26. package/dist/src/decorators/attributes/ForeignKeyAttribute.js +6 -10
  27. package/dist/src/decorators/attributes/IdAttribute.d.ts +1 -1
  28. package/dist/src/decorators/attributes/IdAttribute.d.ts.map +1 -1
  29. package/dist/src/decorators/attributes/IdAttribute.js +3 -8
  30. package/dist/src/decorators/attributes/NumberAttribute.d.ts +2 -2
  31. package/dist/src/decorators/attributes/NumberAttribute.d.ts.map +1 -1
  32. package/dist/src/decorators/attributes/NumberAttribute.js +6 -10
  33. package/dist/src/decorators/attributes/ObjectAttribute.d.ts +3 -3
  34. package/dist/src/decorators/attributes/ObjectAttribute.d.ts.map +1 -1
  35. package/dist/src/decorators/attributes/ObjectAttribute.js +17 -21
  36. package/dist/src/decorators/attributes/PartitionKeyAttribute.d.ts +3 -3
  37. package/dist/src/decorators/attributes/PartitionKeyAttribute.d.ts.map +1 -1
  38. package/dist/src/decorators/attributes/PartitionKeyAttribute.js +6 -10
  39. package/dist/src/decorators/attributes/SortKeyAttribute.d.ts +3 -3
  40. package/dist/src/decorators/attributes/SortKeyAttribute.d.ts.map +1 -1
  41. package/dist/src/decorators/attributes/SortKeyAttribute.js +6 -10
  42. package/dist/src/decorators/attributes/StringAttribute.d.ts +2 -2
  43. package/dist/src/decorators/attributes/StringAttribute.d.ts.map +1 -1
  44. package/dist/src/decorators/attributes/StringAttribute.js +6 -10
  45. package/dist/src/decorators/attributes/index.d.ts +13 -13
  46. package/dist/src/decorators/attributes/index.d.ts.map +1 -1
  47. package/dist/src/decorators/attributes/index.js +11 -41
  48. package/dist/src/decorators/attributes/serializers.d.ts +2 -2
  49. package/dist/src/decorators/attributes/serializers.d.ts.map +1 -1
  50. package/dist/src/decorators/attributes/serializers.js +5 -12
  51. package/dist/src/decorators/attributes/types.js +1 -2
  52. package/dist/src/decorators/index.d.ts +5 -5
  53. package/dist/src/decorators/index.d.ts.map +1 -1
  54. package/dist/src/decorators/index.js +5 -27
  55. package/dist/src/decorators/relationships/BelongsTo.d.ts +4 -4
  56. package/dist/src/decorators/relationships/BelongsTo.d.ts.map +1 -1
  57. package/dist/src/decorators/relationships/BelongsTo.js +3 -8
  58. package/dist/src/decorators/relationships/HasAndBelongsToMany.d.ts +3 -3
  59. package/dist/src/decorators/relationships/HasAndBelongsToMany.d.ts.map +1 -1
  60. package/dist/src/decorators/relationships/HasAndBelongsToMany.js +4 -9
  61. package/dist/src/decorators/relationships/HasMany.d.ts +3 -3
  62. package/dist/src/decorators/relationships/HasMany.d.ts.map +1 -1
  63. package/dist/src/decorators/relationships/HasMany.js +4 -9
  64. package/dist/src/decorators/relationships/HasOne.d.ts +3 -3
  65. package/dist/src/decorators/relationships/HasOne.d.ts.map +1 -1
  66. package/dist/src/decorators/relationships/HasOne.js +3 -8
  67. package/dist/src/decorators/relationships/index.d.ts +5 -5
  68. package/dist/src/decorators/relationships/index.d.ts.map +1 -1
  69. package/dist/src/decorators/relationships/index.js +5 -29
  70. package/dist/src/decorators/relationships/types.d.ts +3 -3
  71. package/dist/src/decorators/relationships/types.d.ts.map +1 -1
  72. package/dist/src/decorators/relationships/types.js +1 -2
  73. package/dist/src/decorators/types.d.ts +3 -3
  74. package/dist/src/decorators/types.d.ts.map +1 -1
  75. package/dist/src/decorators/types.js +1 -2
  76. package/dist/src/dynamo-utils/DynamoClient.d.ts +1 -1
  77. package/dist/src/dynamo-utils/DynamoClient.d.ts.map +1 -1
  78. package/dist/src/dynamo-utils/DynamoClient.js +13 -18
  79. package/dist/src/dynamo-utils/TransactGetBuilder.d.ts +1 -1
  80. package/dist/src/dynamo-utils/TransactGetBuilder.d.ts.map +1 -1
  81. package/dist/src/dynamo-utils/TransactGetBuilder.js +5 -10
  82. package/dist/src/dynamo-utils/TransactWriteBuilder.d.ts +1 -1
  83. package/dist/src/dynamo-utils/TransactWriteBuilder.d.ts.map +1 -1
  84. package/dist/src/dynamo-utils/TransactWriteBuilder.js +11 -16
  85. package/dist/src/dynamo-utils/errors.js +2 -7
  86. package/dist/src/dynamo-utils/index.d.ts +7 -7
  87. package/dist/src/dynamo-utils/index.d.ts.map +1 -1
  88. package/dist/src/dynamo-utils/index.js +7 -30
  89. package/dist/src/dynamo-utils/types.js +1 -2
  90. package/dist/src/errors.js +3 -9
  91. package/dist/src/id.d.ts +12 -0
  92. package/dist/src/id.d.ts.map +1 -0
  93. package/dist/src/id.js +11 -0
  94. package/dist/src/index.d.ts +8 -6
  95. package/dist/src/index.d.ts.map +1 -1
  96. package/dist/src/index.js +4 -20
  97. package/dist/src/metadata/AttributeMetadata.d.ts +6 -4
  98. package/dist/src/metadata/AttributeMetadata.d.ts.map +1 -1
  99. package/dist/src/metadata/AttributeMetadata.js +5 -3
  100. package/dist/src/metadata/EntityMetadata.d.ts +3 -3
  101. package/dist/src/metadata/EntityMetadata.d.ts.map +1 -1
  102. package/dist/src/metadata/EntityMetadata.js +18 -23
  103. package/dist/src/metadata/JoinTableMetadata.d.ts +3 -3
  104. package/dist/src/metadata/JoinTableMetadata.d.ts.map +1 -1
  105. package/dist/src/metadata/JoinTableMetadata.js +1 -3
  106. package/dist/src/metadata/MetadataStorage.d.ts +7 -7
  107. package/dist/src/metadata/MetadataStorage.d.ts.map +1 -1
  108. package/dist/src/metadata/MetadataStorage.js +12 -17
  109. package/dist/src/metadata/TableMetadata.d.ts +3 -3
  110. package/dist/src/metadata/TableMetadata.d.ts.map +1 -1
  111. package/dist/src/metadata/TableMetadata.js +22 -21
  112. package/dist/src/metadata/index.d.ts +9 -9
  113. package/dist/src/metadata/index.d.ts.map +1 -1
  114. package/dist/src/metadata/index.js +11 -34
  115. package/dist/src/metadata/relationship-metadata/BelongsToRelationship.d.ts +2 -2
  116. package/dist/src/metadata/relationship-metadata/BelongsToRelationship.d.ts.map +1 -1
  117. package/dist/src/metadata/relationship-metadata/BelongsToRelationship.js +3 -8
  118. package/dist/src/metadata/relationship-metadata/HasAndBelongsToManyRelationship.d.ts +1 -1
  119. package/dist/src/metadata/relationship-metadata/HasAndBelongsToManyRelationship.d.ts.map +1 -1
  120. package/dist/src/metadata/relationship-metadata/HasAndBelongsToManyRelationship.js +3 -8
  121. package/dist/src/metadata/relationship-metadata/HasManyRelationship.d.ts +2 -2
  122. package/dist/src/metadata/relationship-metadata/HasManyRelationship.d.ts.map +1 -1
  123. package/dist/src/metadata/relationship-metadata/HasManyRelationship.js +3 -8
  124. package/dist/src/metadata/relationship-metadata/HasOneRelationship.d.ts +2 -2
  125. package/dist/src/metadata/relationship-metadata/HasOneRelationship.d.ts.map +1 -1
  126. package/dist/src/metadata/relationship-metadata/HasOneRelationship.js +3 -8
  127. package/dist/src/metadata/relationship-metadata/OwnedByRelationship.d.ts +2 -2
  128. package/dist/src/metadata/relationship-metadata/OwnedByRelationship.d.ts.map +1 -1
  129. package/dist/src/metadata/relationship-metadata/OwnedByRelationship.js +3 -8
  130. package/dist/src/metadata/relationship-metadata/RelationshipMetadata.d.ts +2 -2
  131. package/dist/src/metadata/relationship-metadata/RelationshipMetadata.d.ts.map +1 -1
  132. package/dist/src/metadata/relationship-metadata/RelationshipMetadata.js +1 -3
  133. package/dist/src/metadata/relationship-metadata/index.d.ts +6 -6
  134. package/dist/src/metadata/relationship-metadata/index.d.ts.map +1 -1
  135. package/dist/src/metadata/relationship-metadata/index.js +7 -31
  136. package/dist/src/metadata/relationship-metadata/types.d.ts +5 -5
  137. package/dist/src/metadata/relationship-metadata/types.d.ts.map +1 -1
  138. package/dist/src/metadata/relationship-metadata/types.js +1 -2
  139. package/dist/src/metadata/relationship-metadata/utils.d.ts +1 -1
  140. package/dist/src/metadata/relationship-metadata/utils.d.ts.map +1 -1
  141. package/dist/src/metadata/relationship-metadata/utils.js +11 -18
  142. package/dist/src/metadata/schemas.d.ts +523 -36
  143. package/dist/src/metadata/schemas.d.ts.map +1 -1
  144. package/dist/src/metadata/schemas.js +71 -44
  145. package/dist/src/metadata/types.d.ts +17 -4
  146. package/dist/src/metadata/types.d.ts.map +1 -1
  147. package/dist/src/metadata/types.js +1 -2
  148. package/dist/src/metadata/utils.d.ts +5 -5
  149. package/dist/src/metadata/utils.d.ts.map +1 -1
  150. package/dist/src/metadata/utils.js +14 -29
  151. package/dist/src/operations/Create/Create.d.ts +5 -5
  152. package/dist/src/operations/Create/Create.d.ts.map +1 -1
  153. package/dist/src/operations/Create/Create.js +18 -23
  154. package/dist/src/operations/Create/index.d.ts +2 -2
  155. package/dist/src/operations/Create/index.d.ts.map +1 -1
  156. package/dist/src/operations/Create/index.js +2 -23
  157. package/dist/src/operations/Create/types.d.ts +2 -2
  158. package/dist/src/operations/Create/types.d.ts.map +1 -1
  159. package/dist/src/operations/Create/types.js +1 -2
  160. package/dist/src/operations/Delete/Delete.d.ts +3 -3
  161. package/dist/src/operations/Delete/Delete.d.ts.map +1 -1
  162. package/dist/src/operations/Delete/Delete.js +28 -33
  163. package/dist/src/operations/Delete/index.d.ts +1 -1
  164. package/dist/src/operations/Delete/index.d.ts.map +1 -1
  165. package/dist/src/operations/Delete/index.js +1 -8
  166. package/dist/src/operations/Delete/types.js +1 -2
  167. package/dist/src/operations/FindById/FindById.d.ts +4 -4
  168. package/dist/src/operations/FindById/FindById.d.ts.map +1 -1
  169. package/dist/src/operations/FindById/FindById.js +17 -22
  170. package/dist/src/operations/FindById/index.d.ts +2 -2
  171. package/dist/src/operations/FindById/index.d.ts.map +1 -1
  172. package/dist/src/operations/FindById/index.js +2 -23
  173. package/dist/src/operations/FindById/types.d.ts +3 -3
  174. package/dist/src/operations/FindById/types.d.ts.map +1 -1
  175. package/dist/src/operations/FindById/types.js +1 -2
  176. package/dist/src/operations/OperationBase.d.ts +3 -3
  177. package/dist/src/operations/OperationBase.d.ts.map +1 -1
  178. package/dist/src/operations/OperationBase.js +4 -9
  179. package/dist/src/operations/Query/Query.d.ts +4 -4
  180. package/dist/src/operations/Query/Query.d.ts.map +1 -1
  181. package/dist/src/operations/Query/Query.js +15 -20
  182. package/dist/src/operations/Query/index.d.ts +2 -2
  183. package/dist/src/operations/Query/index.d.ts.map +1 -1
  184. package/dist/src/operations/Query/index.js +2 -23
  185. package/dist/src/operations/Query/types.d.ts +4 -4
  186. package/dist/src/operations/Query/types.d.ts.map +1 -1
  187. package/dist/src/operations/Query/types.js +1 -2
  188. package/dist/src/operations/Update/Update.d.ts +5 -5
  189. package/dist/src/operations/Update/Update.d.ts.map +1 -1
  190. package/dist/src/operations/Update/Update.js +37 -42
  191. package/dist/src/operations/Update/UpdateDryRun.d.ts +2 -2
  192. package/dist/src/operations/Update/UpdateDryRun.d.ts.map +1 -1
  193. package/dist/src/operations/Update/UpdateDryRun.js +3 -8
  194. package/dist/src/operations/Update/index.d.ts +3 -3
  195. package/dist/src/operations/Update/index.d.ts.map +1 -1
  196. package/dist/src/operations/Update/index.js +3 -25
  197. package/dist/src/operations/Update/types.d.ts +2 -2
  198. package/dist/src/operations/Update/types.d.ts.map +1 -1
  199. package/dist/src/operations/Update/types.js +1 -2
  200. package/dist/src/operations/index.d.ts +6 -6
  201. package/dist/src/operations/index.d.ts.map +1 -1
  202. package/dist/src/operations/index.js +6 -22
  203. package/dist/src/operations/types.d.ts +3 -3
  204. package/dist/src/operations/types.d.ts.map +1 -1
  205. package/dist/src/operations/types.js +1 -2
  206. package/dist/src/operations/utils/expressionBuilder.d.ts +2 -2
  207. package/dist/src/operations/utils/expressionBuilder.d.ts.map +1 -1
  208. package/dist/src/operations/utils/expressionBuilder.js +1 -5
  209. package/dist/src/operations/utils/flattenObjectForUpdate.d.ts +2 -2
  210. package/dist/src/operations/utils/flattenObjectForUpdate.d.ts.map +1 -1
  211. package/dist/src/operations/utils/flattenObjectForUpdate.js +3 -6
  212. package/dist/src/operations/utils/index.d.ts +5 -5
  213. package/dist/src/operations/utils/index.d.ts.map +1 -1
  214. package/dist/src/operations/utils/index.js +5 -21
  215. package/dist/src/operations/utils/mergePartialObjectAttributes.d.ts +1 -1
  216. package/dist/src/operations/utils/mergePartialObjectAttributes.d.ts.map +1 -1
  217. package/dist/src/operations/utils/mergePartialObjectAttributes.js +1 -4
  218. package/dist/src/operations/utils/types.js +1 -2
  219. package/dist/src/operations/utils/utils.d.ts +4 -4
  220. package/dist/src/operations/utils/utils.d.ts.map +1 -1
  221. package/dist/src/operations/utils/utils.js +13 -23
  222. package/dist/src/query-utils/Filters.d.ts +2 -2
  223. package/dist/src/query-utils/Filters.d.ts.map +1 -1
  224. package/dist/src/query-utils/Filters.js +1 -4
  225. package/dist/src/query-utils/QueryBuilder.d.ts +1 -1
  226. package/dist/src/query-utils/QueryBuilder.d.ts.map +1 -1
  227. package/dist/src/query-utils/QueryBuilder.js +8 -13
  228. package/dist/src/query-utils/index.d.ts +2 -2
  229. package/dist/src/query-utils/index.d.ts.map +1 -1
  230. package/dist/src/query-utils/index.js +2 -23
  231. package/dist/src/query-utils/types.js +1 -2
  232. package/dist/src/relationships/JoinTable.d.ts +2 -2
  233. package/dist/src/relationships/JoinTable.d.ts.map +1 -1
  234. package/dist/src/relationships/JoinTable.js +14 -19
  235. package/dist/src/relationships/index.d.ts +1 -1
  236. package/dist/src/relationships/index.d.ts.map +1 -1
  237. package/dist/src/relationships/index.js +1 -8
  238. package/dist/src/types.d.ts +2 -2
  239. package/dist/src/types.d.ts.map +1 -1
  240. package/dist/src/types.js +1 -2
  241. package/dist/src/utils.d.ts +3 -3
  242. package/dist/src/utils.d.ts.map +1 -1
  243. package/dist/src/utils.js +16 -31
  244. package/package.json +28 -24
@@ -1,8 +1,8 @@
1
- import type DynaRecord from "../../DynaRecord";
2
- import { TransactWriteBuilder } from "../../dynamo-utils";
3
- import OperationBase from "../OperationBase";
4
- import type { UpdatedAttributes, UpdateOptions, UpdateOperationOptions } from "./types";
5
- import type { EntityClass } from "../../types";
1
+ import type DynaRecord from "../../DynaRecord.js";
2
+ import { TransactWriteBuilder } from "../../dynamo-utils/index.js";
3
+ import OperationBase from "../OperationBase.js";
4
+ import type { UpdatedAttributes, UpdateOptions, UpdateOperationOptions } from "./types.js";
5
+ import type { EntityClass } from "../../types.js";
6
6
  /**
7
7
  * Represents an update operation for a DynaRecord-backed entity, handling both attribute updates and relationship consistency via denormalization.
8
8
  *
@@ -1 +1 @@
1
- {"version":3,"file":"Update.d.ts","sourceRoot":"","sources":["../../../../src/operations/Update/Update.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,UAAU,MAAM,kBAAkB,CAAC;AAC/C,OAAO,EAGL,oBAAoB,EACrB,MAAM,oBAAoB,CAAC;AAqB5B,OAAO,aAAa,MAAM,kBAAkB,CAAC;AAC7C,OAAO,KAAK,EACV,iBAAiB,EACjB,aAAa,EACb,sBAAsB,EACvB,MAAM,SAAS,CAAC;AACjB,OAAO,KAAK,EAAmB,WAAW,EAAgB,MAAM,aAAa,CAAC;AA4D9E;;;;;;;;;;;;;;;;;GAiBG;AACH,cAAM,MAAM,CAAC,CAAC,SAAS,UAAU,CAAE,SAAQ,aAAa,CAAC,CAAC,CAAC;IACzD,SAAS,CAAC,QAAQ,CAAC,kBAAkB,EAAE,oBAAoB,CAAC;gBAG1D,MAAM,EAAE,WAAW,CAAC,CAAC,CAAC,EACtB,kBAAkB,CAAC,EAAE,oBAAoB;IAO3C;;;;;;;;;;;;;;OAcG;IACU,GAAG,CACd,EAAE,EAAE,MAAM,EACV,UAAU,EAAE,aAAa,CAAC,UAAU,CAAC,EACrC,OAAO,CAAC,EAAE,sBAAsB,GAC/B,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC;cAoDhB,iBAAiB,IAAI,OAAO,CAAC,IAAI,CAAC;IAIlD;;;;OAIG;IACH,OAAO,CAAC,uCAAuC;IAY/C;;;;;;OAMG;IACH,OAAO,CAAC,sCAAsC;IAoC9C;;;;;;;;;;;;;;;OAeG;YACW,QAAQ;IAoDtB;;;;;;OAMG;IACH,OAAO,CAAC,qBAAqB;IA4B7B;;;;;;;;;;;;;;;;;OAiBG;IACH,OAAO,CAAC,mBAAmB;IA2C3B;;;;;;;;;;OAUG;IACH,OAAO,CAAC,0BAA0B;IAyBlC;;;;;;;;;;;;;;OAcG;IACH,OAAO,CAAC,0BAA0B;IA8DlC;;;;;;;;;;;;OAYG;IACH,OAAO,CAAC,iCAAiC;IAuBzC;;;;;;;;;;;;OAYG;IACH,OAAO,CAAC,8BAA8B;IAkCtC;;;;OAIG;IACH,OAAO,CAAC,0BAA0B;IAkBlC;;;;;OAKG;IACH,OAAO,CAAC,mCAAmC;IAsB3C;;;;;;;;OAQG;IACH,OAAO,CAAC,sCAAsC;IAqC9C;;;;;;;;;;OAUG;IACH,OAAO,CAAC,6BAA6B;IAuCrC;;;;;;;;;OASG;IACH,OAAO,CAAC,4BAA4B;IAgCpC;;;;;;;;;;OAUG;IACH,OAAO,CAAC,6BAA6B;IAwBrC;;;;;;OAMG;IACH,OAAO,CAAC,gCAAgC;IAgBxC;;;OAGG;IACH,OAAO,CAAC,iCAAiC;CAU1C;AAED,eAAe,MAAM,CAAC"}
1
+ {"version":3,"file":"Update.d.ts","sourceRoot":"","sources":["../../../../src/operations/Update/Update.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,UAAU,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAGL,oBAAoB,EACrB,MAAM,6BAA6B,CAAC;AAqBrC,OAAO,aAAa,MAAM,qBAAqB,CAAC;AAChD,OAAO,KAAK,EACV,iBAAiB,EACjB,aAAa,EACb,sBAAsB,EACvB,MAAM,YAAY,CAAC;AACpB,OAAO,KAAK,EAEV,WAAW,EAEZ,MAAM,gBAAgB,CAAC;AA4DxB;;;;;;;;;;;;;;;;;GAiBG;AACH,cAAM,MAAM,CAAC,CAAC,SAAS,UAAU,CAAE,SAAQ,aAAa,CAAC,CAAC,CAAC;IACzD,SAAS,CAAC,QAAQ,CAAC,kBAAkB,EAAE,oBAAoB,CAAC;gBAG1D,MAAM,EAAE,WAAW,CAAC,CAAC,CAAC,EACtB,kBAAkB,CAAC,EAAE,oBAAoB;IAO3C;;;;;;;;;;;;;;OAcG;IACU,GAAG,CACd,EAAE,EAAE,MAAM,EACV,UAAU,EAAE,aAAa,CAAC,UAAU,CAAC,EACrC,OAAO,CAAC,EAAE,sBAAsB,GAC/B,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC;cAoDhB,iBAAiB,IAAI,OAAO,CAAC,IAAI,CAAC;IAIlD;;;;OAIG;IACH,OAAO,CAAC,uCAAuC;IAY/C;;;;;;OAMG;IACH,OAAO,CAAC,sCAAsC;IAoC9C;;;;;;;;;;;;;;;OAeG;YACW,QAAQ;IAoDtB;;;;;;OAMG;IACH,OAAO,CAAC,qBAAqB;IA4B7B;;;;;;;;;;;;;;;;;OAiBG;IACH,OAAO,CAAC,mBAAmB;IAwC3B;;;;;;;;;;OAUG;IACH,OAAO,CAAC,0BAA0B;IAyBlC;;;;;;;;;;;;;;OAcG;IACH,OAAO,CAAC,0BAA0B;IA8DlC;;;;;;;;;;;;OAYG;IACH,OAAO,CAAC,iCAAiC;IAuBzC;;;;;;;;;;;;OAYG;IACH,OAAO,CAAC,8BAA8B;IAkCtC;;;;OAIG;IACH,OAAO,CAAC,0BAA0B;IAkBlC;;;;;OAKG;IACH,OAAO,CAAC,mCAAmC;IAsB3C;;;;;;;;OAQG;IACH,OAAO,CAAC,sCAAsC;IAqC9C;;;;;;;;;;OAUG;IACH,OAAO,CAAC,6BAA6B;IAuCrC;;;;;;;;;OASG;IACH,OAAO,CAAC,4BAA4B;IAgCpC;;;;;;;;;;OAUG;IACH,OAAO,CAAC,6BAA6B;IAwBrC;;;;;;OAMG;IACH,OAAO,CAAC,gCAAgC;IAgBxC;;;OAGG;IACH,OAAO,CAAC,iCAAiC;CAU1C;AAED,eAAe,MAAM,CAAC"}
@@ -1,15 +1,10 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- const dynamo_utils_1 = require("../../dynamo-utils");
7
- const utils_1 = require("../../utils");
8
- const utils_2 = require("../utils");
9
- const OperationBase_1 = __importDefault(require("../OperationBase"));
10
- const metadata_1 = __importDefault(require("../../metadata"));
11
- const errors_1 = require("../../errors");
12
- const utils_3 = require("../../metadata/utils");
1
+ import { TransactGetBuilder, TransactWriteBuilder } from "../../dynamo-utils/index.js";
2
+ import { entityToTableItem, isKeyOfObject, isNullableString, isString, tableItemToEntity } from "../../utils.js";
3
+ import { buildBelongsToLinkKey, expressionBuilder, extractForeignKeyFromEntity, flattenObjectForUpdate } from "../utils/index.js";
4
+ import OperationBase from "../OperationBase.js";
5
+ import Metadata from "../../metadata/index.js";
6
+ import { NotFoundError } from "../../errors.js";
7
+ import { isBelongsToRelationship, isHasManyRelationship } from "../../metadata/utils.js";
13
8
  /**
14
9
  * Represents an update operation for a DynaRecord-backed entity, handling both attribute updates and relationship consistency via denormalization.
15
10
  *
@@ -28,12 +23,12 @@ const utils_3 = require("../../metadata/utils");
28
23
  *
29
24
  * @template T - The type of the entity being updated, extending `DynaRecord`.
30
25
  */
31
- class Update extends OperationBase_1.default {
26
+ class Update extends OperationBase {
32
27
  transactionBuilder;
33
28
  constructor(Entity, transactionBuilder) {
34
29
  super(Entity);
35
30
  // Use the transaction builder passed to the class, or instantiate a new one
36
- this.transactionBuilder = transactionBuilder ?? new dynamo_utils_1.TransactWriteBuilder();
31
+ this.transactionBuilder = transactionBuilder ?? new TransactWriteBuilder();
37
32
  }
38
33
  /**
39
34
  * Executes the update operation against DynamoDB.
@@ -52,7 +47,7 @@ class Update extends OperationBase_1.default {
52
47
  */
53
48
  async run(id, attributes, options) {
54
49
  const referentialIntegrityCheck = options?.referentialIntegrityCheck ?? true;
55
- const entityMeta = metadata_1.default.getEntity(this.EntityClass.name);
50
+ const entityMeta = Metadata.getEntity(this.EntityClass.name);
56
51
  const entityAttrs = entityMeta.parseRawEntityDefinedAttributesPartial(attributes);
57
52
  const { updatedAttrs, expression } = this.buildUpdateMetadata(entityAttrs);
58
53
  this.buildUpdateItemTransaction(id, expression);
@@ -83,7 +78,7 @@ class Update extends OperationBase_1.default {
83
78
  */
84
79
  getBelongsToRelMetaAndKeyForUpdatedKeys(attributes) {
85
80
  return this.entityMetadata.belongsToRelationships.reduce((acc, meta) => {
86
- const foreignKeyVal = (0, utils_2.extractForeignKeyFromEntity)(meta, attributes);
81
+ const foreignKeyVal = extractForeignKeyFromEntity(meta, attributes);
87
82
  if (foreignKeyVal != null)
88
83
  acc.push({ meta, foreignKeyVal });
89
84
  return acc;
@@ -103,10 +98,10 @@ class Update extends OperationBase_1.default {
103
98
  const standaloneForeignKeys = this.entityMetadata.standaloneForeignKeyAttributes;
104
99
  for (const attrMeta of standaloneForeignKeys) {
105
100
  const target = attrMeta.foreignKeyTarget;
106
- if (!(0, utils_1.isKeyOfObject)(attributes, attrMeta.name))
101
+ if (!isKeyOfObject(attributes, attrMeta.name))
107
102
  continue;
108
103
  const foreignKeyValue = attributes[attrMeta.name];
109
- if (!(0, utils_1.isString)(foreignKeyValue))
104
+ if (!isString(foreignKeyValue))
110
105
  continue;
111
106
  const foreignKey = foreignKeyValue;
112
107
  const errMsg = `${target.name} with ID '${foreignKey}' does not exist`;
@@ -138,9 +133,9 @@ class Update extends OperationBase_1.default {
138
133
  * @private
139
134
  */
140
135
  async preFetch(id, belongsToRelFkAndMetas) {
141
- const hasRelMetas = this.entityMetadata.hasRelationships.filter(rel => !(0, utils_3.isHasManyRelationship)(rel) || rel.uniDirectional !== true);
136
+ const hasRelMetas = this.entityMetadata.hasRelationships.filter(rel => !isHasManyRelationship(rel) || rel.uniDirectional !== true);
142
137
  const { name: tableName } = this.tableMetadata;
143
- const transactionBuilder = new dynamo_utils_1.TransactGetBuilder();
138
+ const transactionBuilder = new TransactGetBuilder();
144
139
  // Get the new BelongsTo relationship entities that are being updated
145
140
  belongsToRelFkAndMetas.forEach(({ meta, foreignKeyVal }) => {
146
141
  transactionBuilder.addGet({
@@ -167,9 +162,9 @@ class Update extends OperationBase_1.default {
167
162
  ]);
168
163
  // Serialize table items to entities
169
164
  const foreignEntities = transactionResults.reduce((acc, res) => {
170
- if (res.Item !== undefined && (0, utils_1.isString)(res.Item[typeAlias])) {
171
- const entityMeta = metadata_1.default.getEntity(res.Item[typeAlias]);
172
- const entity = (0, utils_1.tableItemToEntity)(entityMeta.EntityClass, res.Item);
165
+ if (res.Item !== undefined && isString(res.Item[typeAlias])) {
166
+ const entityMeta = Metadata.getEntity(res.Item[typeAlias]);
167
+ const entity = tableItemToEntity(entityMeta.EntityClass, res.Item);
173
168
  acc.push(entity);
174
169
  }
175
170
  return acc;
@@ -199,7 +194,7 @@ class Update extends OperationBase_1.default {
199
194
  }
200
195
  });
201
196
  if (entityPreUpdate === undefined) {
202
- throw new errors_1.NotFoundError(`${this.EntityClass.name} does not exist: ${id}`);
197
+ throw new NotFoundError(`${this.EntityClass.name} does not exist: ${id}`);
203
198
  }
204
199
  return { entityPreUpdate, relatedEntities, newBelongsToEntityLookup };
205
200
  }
@@ -226,7 +221,7 @@ class Update extends OperationBase_1.default {
226
221
  ...attributes,
227
222
  updatedAt: new Date()
228
223
  };
229
- const entityAttrs = metadata_1.default.getEntityAttributes(this.EntityClass.name);
224
+ const entityAttrs = Metadata.getEntityAttributes(this.EntityClass.name);
230
225
  // Separate ObjectAttribute fields (non-null) for document path handling
231
226
  const regularAttrs = {};
232
227
  const allDocumentPathOps = [];
@@ -239,7 +234,7 @@ class Update extends OperationBase_1.default {
239
234
  if (attrMeta.objectSchema !== undefined) {
240
235
  // ObjectAttribute → flatten for document path updates (objects are never nullable)
241
236
  const alias = attrMeta.alias;
242
- const ops = (0, utils_2.flattenObjectForUpdate)([alias], attrMeta.objectSchema, val);
237
+ const ops = flattenObjectForUpdate([alias], attrMeta.objectSchema, val);
243
238
  allDocumentPathOps.push(...ops);
244
239
  }
245
240
  else {
@@ -247,8 +242,8 @@ class Update extends OperationBase_1.default {
247
242
  regularAttrs[key] = val;
248
243
  }
249
244
  }
250
- const tableAttrs = (0, utils_1.entityToTableItem)(this.EntityClass, regularAttrs);
251
- const expression = (0, utils_2.expressionBuilder)(tableAttrs, allDocumentPathOps);
245
+ const tableAttrs = entityToTableItem(this.EntityClass, regularAttrs);
246
+ const expression = expressionBuilder(tableAttrs, allDocumentPathOps);
252
247
  return { updatedAttrs, expression };
253
248
  }
254
249
  /**
@@ -270,7 +265,7 @@ class Update extends OperationBase_1.default {
270
265
  [pk]: this.EntityClass.partitionKeyValue(id),
271
266
  [sk]: this.EntityClass.name
272
267
  };
273
- const tableKeys = (0, utils_1.entityToTableItem)(this.EntityClass, keys);
268
+ const tableKeys = entityToTableItem(this.EntityClass, keys);
274
269
  this.transactionBuilder.addUpdate({
275
270
  TableName: tableName,
276
271
  Key: tableKeys,
@@ -297,11 +292,11 @@ class Update extends OperationBase_1.default {
297
292
  const entityId = entityPreUpdate.id;
298
293
  const relMetas = this.entityMetadata.belongsToOrOwnedByRelationships;
299
294
  for (const relMeta of relMetas) {
300
- const foreignKey = (0, utils_2.extractForeignKeyFromEntity)(relMeta, updatedEntity);
295
+ const foreignKey = extractForeignKeyFromEntity(relMeta, updatedEntity);
301
296
  const isUpdatingRelationshipId = foreignKey !== undefined;
302
- if (isUpdatingRelationshipId && (0, utils_1.isNullableString)(foreignKey)) {
297
+ if (isUpdatingRelationshipId && isNullableString(foreignKey)) {
303
298
  // Handle removal of old link if the foreign key changed.
304
- const oldFk = (0, utils_2.extractForeignKeyFromEntity)(relMeta, entityPreUpdate);
299
+ const oldFk = extractForeignKeyFromEntity(relMeta, entityPreUpdate);
305
300
  const isAddingForeignKey = oldFk === undefined && foreignKey !== null;
306
301
  const isUpdatingForeignKey = oldFk !== undefined && oldFk !== foreignKey;
307
302
  const isRemovingForeignKey = isUpdatingForeignKey && foreignKey === null;
@@ -335,7 +330,7 @@ class Update extends OperationBase_1.default {
335
330
  */
336
331
  buildUpdateBelongsToLinkedRecords(entityId, relMeta, foreignKey, updateExpression) {
337
332
  const { name: tableName } = this.tableMetadata;
338
- const newKey = (0, utils_2.buildBelongsToLinkKey)(this.EntityClass, entityId, relMeta, foreignKey);
333
+ const newKey = buildBelongsToLinkKey(this.EntityClass, entityId, relMeta, foreignKey);
339
334
  this.transactionBuilder.addUpdate({
340
335
  TableName: tableName,
341
336
  Key: newKey,
@@ -363,7 +358,7 @@ class Update extends OperationBase_1.default {
363
358
  }
364
359
  // Denormalize entity being updated to foreign partition
365
360
  this.buildLinkToForeignEntityTransaction(updatedEntity, relMeta, foreignKey);
366
- if ((0, utils_3.isBelongsToRelationship)(relMeta)) {
361
+ if (isBelongsToRelationship(relMeta)) {
367
362
  // Add denormalized record for new entity to self
368
363
  this.buildAddForeignEntityToSelfTransaction(updatedEntity, relMeta, foreignKey, newBelongsToEntityLookup, persistToSelfCondition, persistToSelfConditionErrMessage);
369
364
  }
@@ -392,8 +387,8 @@ class Update extends OperationBase_1.default {
392
387
  * @param foreignKey
393
388
  */
394
389
  buildLinkToForeignEntityTransaction(updatedEntity, relMeta, foreignKey) {
395
- const key = (0, utils_2.buildBelongsToLinkKey)(this.EntityClass, updatedEntity.id, relMeta, foreignKey);
396
- const tableItem = (0, utils_1.entityToTableItem)(this.EntityClass, updatedEntity);
390
+ const key = buildBelongsToLinkKey(this.EntityClass, updatedEntity.id, relMeta, foreignKey);
391
+ const tableItem = entityToTableItem(this.EntityClass, updatedEntity);
397
392
  this.transactionBuilder.addPut({
398
393
  TableName: this.tableMetadata.name,
399
394
  Item: { ...tableItem, ...key },
@@ -411,14 +406,14 @@ class Update extends OperationBase_1.default {
411
406
  */
412
407
  buildAddForeignEntityToSelfTransaction(updatedEntity, relMeta, foreignKey, newBelongsToEntityLookup, persistToSelfCondition, persistToSelfConditionErrMessage) {
413
408
  if (!(foreignKey in newBelongsToEntityLookup)) {
414
- throw new errors_1.NotFoundError(`${relMeta.target.name} does not exist: ${foreignKey}`);
409
+ throw new NotFoundError(`${relMeta.target.name} does not exist: ${foreignKey}`);
415
410
  }
416
411
  const linkedEntity = newBelongsToEntityLookup[foreignKey];
417
412
  const key = {
418
413
  [this.partitionKeyAlias]: this.EntityClass.partitionKeyValue(updatedEntity.id),
419
414
  [this.sortKeyAlias]: relMeta.target.name
420
415
  };
421
- const linkedRecordTableItem = (0, utils_1.entityToTableItem)(relMeta.target, linkedEntity);
416
+ const linkedRecordTableItem = entityToTableItem(relMeta.target, linkedEntity);
422
417
  this.transactionBuilder.addPut({
423
418
  TableName: this.tableMetadata.name,
424
419
  Item: { ...linkedRecordTableItem, ...key },
@@ -443,9 +438,9 @@ class Update extends OperationBase_1.default {
443
438
  [this.sortKeyAlias]: relMeta.target.name
444
439
  };
445
440
  // Keys to delete the linked record from the foreign entities partition
446
- const oldKeysToForeignEntity = (0, utils_2.buildBelongsToLinkKey)(this.EntityClass, entityId, relMeta, oldForeignKey);
441
+ const oldKeysToForeignEntity = buildBelongsToLinkKey(this.EntityClass, entityId, relMeta, oldForeignKey);
447
442
  // OwnedByRelationships do not have a record to delete from their own partition because its unidirectional
448
- if ((0, utils_3.isBelongsToRelationship)(relMeta)) {
443
+ if (isBelongsToRelationship(relMeta)) {
449
444
  this.transactionBuilder.addDelete({
450
445
  TableName: this.tableMetadata.name,
451
446
  Key: oldKeysToSelf
@@ -468,7 +463,7 @@ class Update extends OperationBase_1.default {
468
463
  */
469
464
  updateForeignKeyTransactions(updatedEntity, relMeta, newForeignKey, oldForeignKey, newBelongsToEntityLookup, referentialIntegrityCheck) {
470
465
  // Keys to delete the linked record from the foreign entities partition
471
- const oldKeysToForeignEntity = (0, utils_2.buildBelongsToLinkKey)(this.EntityClass, updatedEntity.id, relMeta, oldForeignKey);
466
+ const oldKeysToForeignEntity = buildBelongsToLinkKey(this.EntityClass, updatedEntity.id, relMeta, oldForeignKey);
472
467
  this.transactionBuilder.addDelete({
473
468
  TableName: this.tableMetadata.name,
474
469
  Key: oldKeysToForeignEntity
@@ -527,4 +522,4 @@ class Update extends OperationBase_1.default {
527
522
  }, {});
528
523
  }
529
524
  }
530
- exports.default = Update;
525
+ export default Update;
@@ -1,5 +1,5 @@
1
- import type DynaRecord from "../../DynaRecord";
2
- import Update from "./Update";
1
+ import type DynaRecord from "../../DynaRecord.js";
2
+ import Update from "./Update.js";
3
3
  /**
4
4
  * Runs Update operation with out committing the transaction
5
5
  */
@@ -1 +1 @@
1
- {"version":3,"file":"UpdateDryRun.d.ts","sourceRoot":"","sources":["../../../../src/operations/Update/UpdateDryRun.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,UAAU,MAAM,kBAAkB,CAAC;AAC/C,OAAO,MAAM,MAAM,UAAU,CAAC;AAE9B;;GAEG;AACH,cAAM,YAAY,CAAC,CAAC,SAAS,UAAU,CAAE,SAAQ,MAAM,CAAC,CAAC,CAAC;cAC/B,iBAAiB,IAAI,OAAO,CAAC,IAAI,CAAC;CAG5D;AAED,eAAe,YAAY,CAAC"}
1
+ {"version":3,"file":"UpdateDryRun.d.ts","sourceRoot":"","sources":["../../../../src/operations/Update/UpdateDryRun.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,UAAU,MAAM,qBAAqB,CAAC;AAClD,OAAO,MAAM,MAAM,aAAa,CAAC;AAEjC;;GAEG;AACH,cAAM,YAAY,CAAC,CAAC,SAAS,UAAU,CAAE,SAAQ,MAAM,CAAC,CAAC,CAAC;cAC/B,iBAAiB,IAAI,OAAO,CAAC,IAAI,CAAC;CAG5D;AAED,eAAe,YAAY,CAAC"}
@@ -1,15 +1,10 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- const Update_1 = __importDefault(require("./Update"));
1
+ import Update from "./Update.js";
7
2
  /**
8
3
  * Runs Update operation with out committing the transaction
9
4
  */
10
- class UpdateDryRun extends Update_1.default {
5
+ class UpdateDryRun extends Update {
11
6
  async commitTransaction() {
12
7
  // No-op
13
8
  }
14
9
  }
15
- exports.default = UpdateDryRun;
10
+ export default UpdateDryRun;
@@ -1,4 +1,4 @@
1
- export { default as Update } from "./Update";
2
- export * from "./types";
3
- export { default as UpdateDryRun } from "./UpdateDryRun";
1
+ export { default as Update } from "./Update.js";
2
+ export * from "./types.js";
3
+ export { default as UpdateDryRun } from "./UpdateDryRun.js";
4
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/operations/Update/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAC;AAC7C,cAAc,SAAS,CAAC;AACxB,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,gBAAgB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/operations/Update/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,aAAa,CAAC;AAChD,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,mBAAmB,CAAC"}
@@ -1,25 +1,3 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- var __importDefault = (this && this.__importDefault) || function (mod) {
17
- return (mod && mod.__esModule) ? mod : { "default": mod };
18
- };
19
- Object.defineProperty(exports, "__esModule", { value: true });
20
- exports.UpdateDryRun = exports.Update = void 0;
21
- var Update_1 = require("./Update");
22
- Object.defineProperty(exports, "Update", { enumerable: true, get: function () { return __importDefault(Update_1).default; } });
23
- __exportStar(require("./types"), exports);
24
- var UpdateDryRun_1 = require("./UpdateDryRun");
25
- Object.defineProperty(exports, "UpdateDryRun", { enumerable: true, get: function () { return __importDefault(UpdateDryRun_1).default; } });
1
+ export { default as Update } from "./Update.js";
2
+ export * from "./types.js";
3
+ export { default as UpdateDryRun } from "./UpdateDryRun.js";
@@ -1,5 +1,5 @@
1
- import type DynaRecord from "../../DynaRecord";
2
- import type { EntityDefinedAttributes } from "../types";
1
+ import type DynaRecord from "../../DynaRecord.js";
2
+ import type { EntityDefinedAttributes } from "../types.js";
3
3
  /**
4
4
  * Extracts the keys of properties in type `T` that are explicitly allowed to be `undefined`.
5
5
  *
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/operations/Update/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,UAAU,MAAM,kBAAkB,CAAC;AAC/C,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,UAAU,CAAC;AAExD;;;;;GAKG;AACH,KAAK,kBAAkB,CAAC,CAAC,IAAI;KAC1B,CAAC,IAAI,MAAM,CAAC,GAAG,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,KAAK;CACnD,CAAC,MAAM,CAAC,CAAC,CAAC;AAEX;;;;;;;;;;GAUG;AACH,KAAK,yBAAyB,CAAC,CAAC,IAAI,CAAC,SACjC,IAAI,GACJ,SAAS,OAAO,EAAE,GAClB,MAAM,GACN,MAAM,GACN,OAAO,GACP,IAAI,GACJ,SAAS,GACT,CAAC,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE,KAAK,OAAO,CAAC,GACjC,CAAC,GACD,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAC/B,OAAO,CAAC,oBAAoB,CAAC,CAAC,CAAC,CAAC,GAChC,CAAC,CAAC;AAER;;;;;;;;;GASG;AACH,KAAK,oBAAoB,CAAC,CAAC,IAAI;KAC5B,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,SAAS,kBAAkB,CAAC,CAAC,CAAC,GAC3C,yBAAyB,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,GAAG,SAAS,GAC/D,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;CACpC,CAAC;AAEF;;;;;;;;;;;;;;;;GAgBG;AACH,MAAM,MAAM,aAAa,CAAC,CAAC,SAAS,UAAU,IAAI,OAAO,CACvD,oBAAoB,CAAC,uBAAuB,CAAC,CAAC,CAAC,CAAC,CACjD,CAAC;AAEF;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACrC;;;;;OAKG;IACH,yBAAyB,CAAC,EAAE,OAAO,CAAC;CACrC;AAED;;GAEG;AACH,MAAM,MAAM,iBAAiB,CAAC,CAAC,SAAS,UAAU,IAAI,IAAI,CACxD,OAAO,CAAC,CAAC,CAAC,EACV,WAAW,CACZ,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/operations/Update/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,UAAU,MAAM,qBAAqB,CAAC;AAClD,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAC;AAE3D;;;;;GAKG;AACH,KAAK,kBAAkB,CAAC,CAAC,IAAI;KAC1B,CAAC,IAAI,MAAM,CAAC,GAAG,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,KAAK;CACnD,CAAC,MAAM,CAAC,CAAC,CAAC;AAEX;;;;;;;;;;GAUG;AACH,KAAK,yBAAyB,CAAC,CAAC,IAAI,CAAC,SACjC,IAAI,GACJ,SAAS,OAAO,EAAE,GAClB,MAAM,GACN,MAAM,GACN,OAAO,GACP,IAAI,GACJ,SAAS,GACT,CAAC,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE,KAAK,OAAO,CAAC,GACjC,CAAC,GACD,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAC/B,OAAO,CAAC,oBAAoB,CAAC,CAAC,CAAC,CAAC,GAChC,CAAC,CAAC;AAER;;;;;;;;;GASG;AACH,KAAK,oBAAoB,CAAC,CAAC,IAAI;KAC5B,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,SAAS,kBAAkB,CAAC,CAAC,CAAC,GAC3C,yBAAyB,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,GAAG,SAAS,GAC/D,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;CACpC,CAAC;AAEF;;;;;;;;;;;;;;;;GAgBG;AACH,MAAM,MAAM,aAAa,CAAC,CAAC,SAAS,UAAU,IAAI,OAAO,CACvD,oBAAoB,CAAC,uBAAuB,CAAC,CAAC,CAAC,CAAC,CACjD,CAAC;AAEF;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACrC;;;;;OAKG;IACH,yBAAyB,CAAC,EAAE,OAAO,CAAC;CACrC;AAED;;GAEG;AACH,MAAM,MAAM,iBAAiB,CAAC,CAAC,SAAS,UAAU,IAAI,IAAI,CACxD,OAAO,CAAC,CAAC,CAAC,EACV,WAAW,CACZ,CAAC"}
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ export {};
@@ -1,7 +1,7 @@
1
- export * from "./FindById";
2
- export * from "./Query";
3
- export * from "./Update";
4
- export * from "./Create";
5
- export * from "./Delete";
6
- export * from "./types";
1
+ export * from "./FindById/index.js";
2
+ export * from "./Query/index.js";
3
+ export * from "./Update/index.js";
4
+ export * from "./Create/index.js";
5
+ export * from "./Delete/index.js";
6
+ export * from "./types.js";
7
7
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/operations/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/operations/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,YAAY,CAAC"}
@@ -1,22 +1,6 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./FindById"), exports);
18
- __exportStar(require("./Query"), exports);
19
- __exportStar(require("./Update"), exports);
20
- __exportStar(require("./Create"), exports);
21
- __exportStar(require("./Delete"), exports);
22
- __exportStar(require("./types"), exports);
1
+ export * from "./FindById/index.js";
2
+ export * from "./Query/index.js";
3
+ export * from "./Update/index.js";
4
+ export * from "./Create/index.js";
5
+ export * from "./Delete/index.js";
6
+ export * from "./types.js";
@@ -1,6 +1,6 @@
1
- import type DynaRecord from "../DynaRecord";
2
- import { type DefaultFields } from "../metadata";
3
- import type { ForeignKey, NullableForeignKey, Optional, PartitionKey, SortKey } from "../types";
1
+ import type DynaRecord from "../DynaRecord.js";
2
+ import { type DefaultFields } from "../metadata/index.js";
3
+ import type { ForeignKey, NullableForeignKey, Optional, PartitionKey, SortKey } from "../types.js";
4
4
  /**
5
5
  * Represents the type of the partition key attribute for a given entity. It identifies the specific property of the entity that is marked as the partition key, which uniquely identifies each instance of the entity in the database.
6
6
  *
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/operations/types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/operations/types.ts"],"names":[],"mappings":"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"}
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ export {};
@@ -1,5 +1,5 @@
1
- import type { DynamoTableItem } from "../../types";
2
- import type { UpdateExpression, DocumentPathOperation } from "./types";
1
+ import type { DynamoTableItem } from "../../types.js";
2
+ import type { UpdateExpression, DocumentPathOperation } from "./types.js";
3
3
  /**
4
4
  * Builds a dynamo expression given the table attributes and optional document path operations
5
5
  * @param tableAttrs The table aliases of the entity attributes
@@ -1 +1 @@
1
- {"version":3,"file":"expressionBuilder.d.ts","sourceRoot":"","sources":["../../../../src/operations/utils/expressionBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AACnD,OAAO,KAAK,EACV,gBAAgB,EAGhB,qBAAqB,EACtB,MAAM,SAAS,CAAC;AAyBjB;;;;;GAKG;AACH,eAAO,MAAM,iBAAiB,eAChB,eAAe,oBACT,qBAAqB,EAAE,KACxC,gBAiEF,CAAC"}
1
+ {"version":3,"file":"expressionBuilder.d.ts","sourceRoot":"","sources":["../../../../src/operations/utils/expressionBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AACtD,OAAO,KAAK,EACV,gBAAgB,EAGhB,qBAAqB,EACtB,MAAM,YAAY,CAAC;AAyBpB;;;;;GAKG;AACH,eAAO,MAAM,iBAAiB,GAC5B,YAAY,eAAe,EAC3B,kBAAkB,qBAAqB,EAAE,KACxC,gBAiEF,CAAC"}
@@ -1,13 +1,10 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.expressionBuilder = void 0;
4
1
  /**
5
2
  * Builds a dynamo expression given the table attributes and optional document path operations
6
3
  * @param tableAttrs The table aliases of the entity attributes
7
4
  * @param documentPathOps Optional document path operations for partial ObjectAttribute updates
8
5
  * @returns
9
6
  */
10
- const expressionBuilder = (tableAttrs, documentPathOps) => {
7
+ export const expressionBuilder = (tableAttrs, documentPathOps) => {
11
8
  const sorted = sortAttributesByOperand(tableAttrs);
12
9
  const setExpression = buildUpdateSetExpression(sorted.set);
13
10
  const removeExpression = buildUpdateRemoveExpression(sorted.remove);
@@ -57,7 +54,6 @@ const expressionBuilder = (tableAttrs, documentPathOps) => {
57
54
  .join(" ")
58
55
  };
59
56
  };
60
- exports.expressionBuilder = expressionBuilder;
61
57
  /**
62
58
  * Build document path expressions from DocumentPathOperations
63
59
  */
@@ -1,5 +1,5 @@
1
- import type { ObjectSchema } from "../../decorators/attributes/types";
2
- import type { DocumentPathOperation } from "./types";
1
+ import type { ObjectSchema } from "../../decorators/attributes/types.js";
2
+ import type { DocumentPathOperation } from "./types.js";
3
3
  /**
4
4
  * Flattens a partial object value into document path operations for DynamoDB
5
5
  * update expressions.
@@ -1 +1 @@
1
- {"version":3,"file":"flattenObjectForUpdate.d.ts","sourceRoot":"","sources":["../../../../src/operations/utils/flattenObjectForUpdate.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,mCAAmC,CAAC;AAEtE,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAC;AAErD;;;;;;;;;;;;;;;GAeG;AACH,wBAAgB,sBAAsB,CACpC,UAAU,EAAE,MAAM,EAAE,EACpB,MAAM,EAAE,YAAY,EACpB,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GACpC,qBAAqB,EAAE,CAkCzB"}
1
+ {"version":3,"file":"flattenObjectForUpdate.d.ts","sourceRoot":"","sources":["../../../../src/operations/utils/flattenObjectForUpdate.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,sCAAsC,CAAC;AAEzE,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,YAAY,CAAC;AAExD;;;;;;;;;;;;;;;GAeG;AACH,wBAAgB,sBAAsB,CACpC,UAAU,EAAE,MAAM,EAAE,EACpB,MAAM,EAAE,YAAY,EACpB,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GACpC,qBAAqB,EAAE,CAkCzB"}
@@ -1,7 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.flattenObjectForUpdate = flattenObjectForUpdate;
4
- const serializers_1 = require("../../decorators/attributes/serializers");
1
+ import { convertFieldToTableItem } from "../../decorators/attributes/serializers.js";
5
2
  /**
6
3
  * Flattens a partial object value into document path operations for DynamoDB
7
4
  * update expressions.
@@ -18,7 +15,7 @@ const serializers_1 = require("../../decorators/attributes/serializers");
18
15
  * @param partialValue The partial object value to flatten
19
16
  * @returns Array of DocumentPathOperation for use in expressionBuilder
20
17
  */
21
- function flattenObjectForUpdate(parentPath, schema, partialValue) {
18
+ export function flattenObjectForUpdate(parentPath, schema, partialValue) {
22
19
  const ops = [];
23
20
  for (const [key, val] of Object.entries(partialValue)) {
24
21
  if (!(key in schema))
@@ -38,7 +35,7 @@ function flattenObjectForUpdate(parentPath, schema, partialValue) {
38
35
  ops.push(...nestedOps);
39
36
  continue;
40
37
  }
41
- const serialized = (0, serializers_1.convertFieldToTableItem)(fieldDef, val);
38
+ const serialized = convertFieldToTableItem(fieldDef, val);
42
39
  ops.push({ type: "set", path: fieldPath, value: serialized });
43
40
  }
44
41
  return ops;
@@ -1,6 +1,6 @@
1
- export * from "./expressionBuilder";
2
- export * from "./flattenObjectForUpdate";
3
- export * from "./mergePartialObjectAttributes";
4
- export * from "./types";
5
- export * from "./utils";
1
+ export * from "./expressionBuilder.js";
2
+ export * from "./flattenObjectForUpdate.js";
3
+ export * from "./mergePartialObjectAttributes.js";
4
+ export * from "./types.js";
5
+ export * from "./utils.js";
6
6
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/operations/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,CAAC;AACzC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/operations/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAC;AACvC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,mCAAmC,CAAC;AAClD,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC"}
@@ -1,21 +1,5 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./expressionBuilder"), exports);
18
- __exportStar(require("./flattenObjectForUpdate"), exports);
19
- __exportStar(require("./mergePartialObjectAttributes"), exports);
20
- __exportStar(require("./types"), exports);
21
- __exportStar(require("./utils"), exports);
1
+ export * from "./expressionBuilder.js";
2
+ export * from "./flattenObjectForUpdate.js";
3
+ export * from "./mergePartialObjectAttributes.js";
4
+ export * from "./types.js";
5
+ export * from "./utils.js";
@@ -1,4 +1,4 @@
1
- import type { AttributeMetadataStorage } from "../../metadata";
1
+ import type { AttributeMetadataStorage } from "../../metadata/index.js";
2
2
  /**
3
3
  * Deep merges partial ObjectAttribute updates into the target object.
4
4
  * For ObjectAttribute fields: recursively merges using the schema, removing null fields.
@@ -1 +1 @@
1
- {"version":3,"file":"mergePartialObjectAttributes.d.ts","sourceRoot":"","sources":["../../../../src/operations/utils/mergePartialObjectAttributes.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,gBAAgB,CAAC;AAG/D;;;;GAIG;AACH,wBAAgB,4BAA4B,CAC1C,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAC/B,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAChC,WAAW,EAAE,wBAAwB,GACpC,IAAI,CAqBN"}
1
+ {"version":3,"file":"mergePartialObjectAttributes.d.ts","sourceRoot":"","sources":["../../../../src/operations/utils/mergePartialObjectAttributes.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,yBAAyB,CAAC;AAGxE;;;;GAIG;AACH,wBAAgB,4BAA4B,CAC1C,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAC/B,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAChC,WAAW,EAAE,wBAAwB,GACpC,IAAI,CAqBN"}
@@ -1,12 +1,9 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.mergePartialObjectAttributes = mergePartialObjectAttributes;
4
1
  /**
5
2
  * Deep merges partial ObjectAttribute updates into the target object.
6
3
  * For ObjectAttribute fields: recursively merges using the schema, removing null fields.
7
4
  * For regular fields: shallow assigns (existing behavior).
8
5
  */
9
- function mergePartialObjectAttributes(target, partial, entityAttrs) {
6
+ export function mergePartialObjectAttributes(target, partial, entityAttrs) {
10
7
  for (const [key, val] of Object.entries(partial)) {
11
8
  if (!(key in entityAttrs)) {
12
9
  target[key] = val;
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ export {};
@@ -1,7 +1,7 @@
1
- import type DynaRecord from "../../DynaRecord";
2
- import type { BelongsToOrOwnedByRelationship, RelationshipMetadata } from "../../metadata";
3
- import type { DynamoTableItem, EntityClass, ForeignKey, RelationshipMetaObj } from "../../types";
4
- import { type EntityAttributesOnly } from "../types";
1
+ import type DynaRecord from "../../DynaRecord.js";
2
+ import type { BelongsToOrOwnedByRelationship, RelationshipMetadata } from "../../metadata/index.js";
3
+ import type { DynamoTableItem, EntityClass, ForeignKey, RelationshipMetaObj } from "../../types.js";
4
+ import { type EntityAttributesOnly } from "../types.js";
5
5
  /**
6
6
  * Creates an object including
7
7
  * - relationsLookup: Object to look up RelationshipMetadata by Entity name