@sqb/connect 4.20.7 → 4.21.1

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 (144) hide show
  1. package/{types/client → client}/cursor-stream.d.ts +1 -1
  2. package/{types/client → client}/cursor.d.ts +4 -4
  3. package/{types/client → client}/sqb-connection.d.ts +4 -4
  4. package/{esm/orm → orm}/commands/command.helper.js +2 -3
  5. package/{types/orm → orm}/commands/count.command.d.ts +2 -2
  6. package/{types/orm → orm}/commands/create.command.d.ts +1 -1
  7. package/{esm/orm → orm}/commands/create.command.js +3 -5
  8. package/{types/orm → orm}/commands/delete.command.d.ts +2 -2
  9. package/{types/orm → orm}/commands/find.command.d.ts +2 -2
  10. package/{esm/orm → orm}/commands/find.command.js +3 -4
  11. package/{types/orm → orm}/commands/row-converter.d.ts +1 -1
  12. package/{types/orm → orm}/commands/update.command.d.ts +2 -2
  13. package/{esm/orm → orm}/commands/update.command.js +3 -5
  14. package/{types/orm → orm}/model/association-field-metadata.d.ts +0 -5
  15. package/{types/orm → orm}/model/association.d.ts +3 -3
  16. package/{esm/orm → orm}/model/association.js +1 -1
  17. package/{types/orm → orm}/model/column-field-metadata.d.ts +2 -8
  18. package/{types/orm → orm}/model/embedded-field-metadata.d.ts +0 -1
  19. package/{esm/orm → orm}/model/embedded-field-metadata.js +0 -14
  20. package/{types/orm → orm}/model/entity-metadata.d.ts +3 -3
  21. package/{esm/orm → orm}/model/entity-metadata.js +21 -6
  22. package/orm/model/index-metadata.js +1 -0
  23. package/orm/orm.type.js +1 -0
  24. package/{types/orm → orm}/repository.class.d.ts +2 -2
  25. package/{esm/orm → orm}/repository.class.js +1 -1
  26. package/{types/orm → orm}/util/orm.helper.d.ts +5 -3
  27. package/{esm/orm → orm}/util/orm.helper.js +14 -0
  28. package/package.json +10 -26
  29. package/cjs/client/adapter.js +0 -2
  30. package/cjs/client/cursor-stream.js +0 -104
  31. package/cjs/client/cursor.js +0 -261
  32. package/cjs/client/extensions.js +0 -41
  33. package/cjs/client/field-info-map.js +0 -54
  34. package/cjs/client/helpers.js +0 -140
  35. package/cjs/client/sqb-client.js +0 -175
  36. package/cjs/client/sqb-connection.js +0 -293
  37. package/cjs/client/sqb-error.js +0 -15
  38. package/cjs/client/types.js +0 -5
  39. package/cjs/index.js +0 -41
  40. package/cjs/orm/backward.js +0 -24
  41. package/cjs/orm/base-entity.js +0 -29
  42. package/cjs/orm/commands/command.helper.js +0 -170
  43. package/cjs/orm/commands/count.command.js +0 -30
  44. package/cjs/orm/commands/create.command.js +0 -92
  45. package/cjs/orm/commands/delete.command.js +0 -30
  46. package/cjs/orm/commands/find.command.js +0 -301
  47. package/cjs/orm/commands/row-converter.js +0 -190
  48. package/cjs/orm/commands/update.command.js +0 -83
  49. package/cjs/orm/decorators/column.decorator.js +0 -32
  50. package/cjs/orm/decorators/embedded.decorator.js +0 -15
  51. package/cjs/orm/decorators/entity.decorator.js +0 -180
  52. package/cjs/orm/decorators/events.decorator.js +0 -63
  53. package/cjs/orm/decorators/foreignkey.decorator.js +0 -12
  54. package/cjs/orm/decorators/index.decorator.js +0 -20
  55. package/cjs/orm/decorators/link.decorator.js +0 -72
  56. package/cjs/orm/decorators/primarykey.decorator.js +0 -24
  57. package/cjs/orm/decorators/transform.decorator.js +0 -21
  58. package/cjs/orm/model/association-field-metadata.js +0 -24
  59. package/cjs/orm/model/association-node.js +0 -28
  60. package/cjs/orm/model/association.js +0 -141
  61. package/cjs/orm/model/column-field-metadata.js +0 -32
  62. package/cjs/orm/model/embedded-field-metadata.js +0 -28
  63. package/cjs/orm/model/entity-metadata.js +0 -327
  64. package/cjs/orm/model/field-metadata.js +0 -2
  65. package/cjs/orm/model/index-metadata.js +0 -2
  66. package/cjs/orm/model/link-chain.js +0 -47
  67. package/cjs/orm/orm.const.js +0 -6
  68. package/cjs/orm/orm.type.js +0 -2
  69. package/cjs/orm/repository.class.js +0 -293
  70. package/cjs/orm/util/apply-mixins.js +0 -16
  71. package/cjs/orm/util/extract-keyvalues.js +0 -63
  72. package/cjs/orm/util/orm.helper.js +0 -34
  73. package/cjs/orm/util/parse-fields-projection.js +0 -68
  74. package/cjs/orm/util/serialize-field.js +0 -49
  75. package/cjs/package.json +0 -3
  76. package/esm/orm/model/association-field-metadata.js +0 -20
  77. package/esm/orm/model/column-field-metadata.js +0 -28
  78. package/esm/package.json +0 -3
  79. package/types/index.d.cts +0 -33
  80. /package/{types/client → client}/adapter.d.ts +0 -0
  81. /package/{esm/client → client}/adapter.js +0 -0
  82. /package/{esm/client → client}/cursor-stream.js +0 -0
  83. /package/{esm/client → client}/cursor.js +0 -0
  84. /package/{types/client → client}/extensions.d.ts +0 -0
  85. /package/{esm/client → client}/extensions.js +0 -0
  86. /package/{types/client → client}/field-info-map.d.ts +0 -0
  87. /package/{esm/client → client}/field-info-map.js +0 -0
  88. /package/{types/client → client}/helpers.d.ts +0 -0
  89. /package/{esm/client → client}/helpers.js +0 -0
  90. /package/{types/client → client}/sqb-client.d.ts +0 -0
  91. /package/{esm/client → client}/sqb-client.js +0 -0
  92. /package/{esm/client → client}/sqb-connection.js +0 -0
  93. /package/{types/client → client}/sqb-error.d.ts +0 -0
  94. /package/{esm/client → client}/sqb-error.js +0 -0
  95. /package/{types/client → client}/types.d.ts +0 -0
  96. /package/{esm/client → client}/types.js +0 -0
  97. /package/{types/index.d.ts → index.d.ts} +0 -0
  98. /package/{esm/index.js → index.js} +0 -0
  99. /package/{types/orm → orm}/backward.d.ts +0 -0
  100. /package/{esm/orm → orm}/backward.js +0 -0
  101. /package/{types/orm → orm}/base-entity.d.ts +0 -0
  102. /package/{esm/orm → orm}/base-entity.js +0 -0
  103. /package/{types/orm → orm}/commands/command.helper.d.ts +0 -0
  104. /package/{esm/orm → orm}/commands/count.command.js +0 -0
  105. /package/{esm/orm → orm}/commands/delete.command.js +0 -0
  106. /package/{esm/orm → orm}/commands/row-converter.js +0 -0
  107. /package/{types/orm → orm}/decorators/column.decorator.d.ts +0 -0
  108. /package/{esm/orm → orm}/decorators/column.decorator.js +0 -0
  109. /package/{types/orm → orm}/decorators/embedded.decorator.d.ts +0 -0
  110. /package/{esm/orm → orm}/decorators/embedded.decorator.js +0 -0
  111. /package/{types/orm → orm}/decorators/entity.decorator.d.ts +0 -0
  112. /package/{esm/orm → orm}/decorators/entity.decorator.js +0 -0
  113. /package/{types/orm → orm}/decorators/events.decorator.d.ts +0 -0
  114. /package/{esm/orm → orm}/decorators/events.decorator.js +0 -0
  115. /package/{types/orm → orm}/decorators/foreignkey.decorator.d.ts +0 -0
  116. /package/{esm/orm → orm}/decorators/foreignkey.decorator.js +0 -0
  117. /package/{types/orm → orm}/decorators/index.decorator.d.ts +0 -0
  118. /package/{esm/orm → orm}/decorators/index.decorator.js +0 -0
  119. /package/{types/orm → orm}/decorators/link.decorator.d.ts +0 -0
  120. /package/{esm/orm → orm}/decorators/link.decorator.js +0 -0
  121. /package/{types/orm → orm}/decorators/primarykey.decorator.d.ts +0 -0
  122. /package/{esm/orm → orm}/decorators/primarykey.decorator.js +0 -0
  123. /package/{types/orm → orm}/decorators/transform.decorator.d.ts +0 -0
  124. /package/{esm/orm → orm}/decorators/transform.decorator.js +0 -0
  125. /package/{esm/orm/model/field-metadata.js → orm/model/association-field-metadata.js} +0 -0
  126. /package/{types/orm → orm}/model/association-node.d.ts +0 -0
  127. /package/{esm/orm → orm}/model/association-node.js +0 -0
  128. /package/{esm/orm/model/index-metadata.js → orm/model/column-field-metadata.js} +0 -0
  129. /package/{types/orm → orm}/model/field-metadata.d.ts +0 -0
  130. /package/{esm/orm/orm.type.js → orm/model/field-metadata.js} +0 -0
  131. /package/{types/orm → orm}/model/index-metadata.d.ts +0 -0
  132. /package/{types/orm → orm}/model/link-chain.d.ts +0 -0
  133. /package/{esm/orm → orm}/model/link-chain.js +0 -0
  134. /package/{types/orm → orm}/orm.const.d.ts +0 -0
  135. /package/{esm/orm → orm}/orm.const.js +0 -0
  136. /package/{types/orm → orm}/orm.type.d.ts +0 -0
  137. /package/{types/orm → orm}/util/apply-mixins.d.ts +0 -0
  138. /package/{esm/orm → orm}/util/apply-mixins.js +0 -0
  139. /package/{types/orm → orm}/util/extract-keyvalues.d.ts +0 -0
  140. /package/{esm/orm → orm}/util/extract-keyvalues.js +0 -0
  141. /package/{types/orm → orm}/util/parse-fields-projection.d.ts +0 -0
  142. /package/{esm/orm → orm}/util/parse-fields-projection.js +0 -0
  143. /package/{types/orm → orm}/util/serialize-field.d.ts +0 -0
  144. /package/{esm/orm → orm}/util/serialize-field.js +0 -0
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes