@rvoh/dream 0.29.3 → 0.29.4

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 (246) hide show
  1. package/dist/cjs/src/Dream.js +58 -1
  2. package/dist/cjs/src/decorators/STI.js +1 -1
  3. package/dist/cjs/src/decorators/associations/shared.js +3 -3
  4. package/dist/cjs/src/decorators/hooks/AfterCreate.js +1 -1
  5. package/dist/cjs/src/decorators/hooks/AfterCreateCommit.js +1 -1
  6. package/dist/cjs/src/decorators/hooks/AfterDestroy.js +1 -1
  7. package/dist/cjs/src/decorators/hooks/AfterDestroyCommit.js +1 -1
  8. package/dist/cjs/src/decorators/hooks/AfterSave.js +1 -1
  9. package/dist/cjs/src/decorators/hooks/AfterSaveCommit.js +1 -1
  10. package/dist/cjs/src/decorators/hooks/AfterUpdate.js +1 -1
  11. package/dist/cjs/src/decorators/hooks/AfterUpdateCommit.js +1 -1
  12. package/dist/cjs/src/decorators/hooks/BeforeCreate.js +1 -1
  13. package/dist/cjs/src/decorators/hooks/BeforeDestroy.js +1 -1
  14. package/dist/cjs/src/decorators/hooks/BeforeSave.js +1 -1
  15. package/dist/cjs/src/decorators/hooks/BeforeUpdate.js +1 -1
  16. package/dist/cjs/src/dream/Query.js +8 -8
  17. package/dist/cjs/src/dream/internal/associations/createAssociation.js +1 -1
  18. package/dist/cjs/src/dream/internal/runHooksFor.js +1 -1
  19. package/dist/cjs/src/dream/internal/saveDream.js +1 -1
  20. package/dist/cjs/src/dream/internal/sqlResultToDreamInstance.js +1 -1
  21. package/dist/cjs/src/errors/CannotCallUndestroyOnANonSoftDeleteModel.js +1 -1
  22. package/dist/cjs/src/errors/CannotDefineAssociationWithBothDependentAndPassthrough.js +1 -1
  23. package/dist/cjs/src/errors/CannotDefineAssociationWithBothDependentAndRequiredOnClause.js +1 -1
  24. package/dist/cjs/src/errors/CannotPassUndefinedAsAValueToAWhereClause.js +1 -1
  25. package/dist/cjs/src/errors/CannotReloadUnsavedDream.js +1 -1
  26. package/dist/cjs/src/errors/CreateOrFindByFailedToCreateAndFind.js +1 -1
  27. package/dist/cjs/src/errors/DoNotSetEncryptedFieldsDirectly.js +1 -1
  28. package/dist/cjs/src/errors/MissingDeletedAtFieldForSoftDelete.js +1 -1
  29. package/dist/cjs/src/errors/MissingSerializersDefinition.js +5 -5
  30. package/dist/cjs/src/errors/MissingTable.js +4 -4
  31. package/dist/cjs/src/errors/NonBelongsToAssociationProvidedAsSortableDecoratorScope.js +2 -2
  32. package/dist/cjs/src/errors/NonExistentScopeProvidedToResort.js +2 -2
  33. package/dist/cjs/src/errors/SortableDecoratorRequiresColumnOrBelongsToAssociation.js +3 -3
  34. package/dist/cjs/src/errors/associations/CanOnlyPassBelongsToModelParam.js +1 -1
  35. package/dist/cjs/src/errors/associations/CannotAssociateThroughPolymorphic.js +1 -1
  36. package/dist/cjs/src/errors/associations/CannotCreateAssociationWithThroughContext.js +1 -1
  37. package/dist/cjs/src/errors/associations/CannotJoinPolymorphicBelongsToError.js +1 -1
  38. package/dist/cjs/src/errors/associations/CannotPassNullOrUndefinedToRequiredBelongsTo.js +1 -1
  39. package/dist/cjs/src/errors/associations/InvalidComputedForeignKey.js +2 -2
  40. package/dist/cjs/src/errors/associations/JoinAttemptedOnMissingAssociation.js +4 -4
  41. package/dist/cjs/src/errors/associations/MissingThroughAssociation.js +4 -4
  42. package/dist/cjs/src/errors/associations/MissingThroughAssociationSource.js +10 -10
  43. package/dist/cjs/src/errors/associations/NonLoadedAssociation.js +1 -1
  44. package/dist/cjs/src/errors/ops/AnyRequiresArrayColumn.js +1 -1
  45. package/dist/cjs/src/errors/schema-builder/FailedToIdentifyAssociation.js +4 -4
  46. package/dist/cjs/src/errors/sti/STIChildMissing.js +1 -1
  47. package/dist/cjs/src/errors/sti/StiChildIncompatibleWithSoftDeleteDecorator.js +1 -1
  48. package/dist/esm/src/Dream.js +58 -1
  49. package/dist/esm/src/decorators/STI.js +1 -1
  50. package/dist/esm/src/decorators/associations/shared.js +3 -3
  51. package/dist/esm/src/decorators/hooks/AfterCreate.js +1 -1
  52. package/dist/esm/src/decorators/hooks/AfterCreateCommit.js +1 -1
  53. package/dist/esm/src/decorators/hooks/AfterDestroy.js +1 -1
  54. package/dist/esm/src/decorators/hooks/AfterDestroyCommit.js +1 -1
  55. package/dist/esm/src/decorators/hooks/AfterSave.js +1 -1
  56. package/dist/esm/src/decorators/hooks/AfterSaveCommit.js +1 -1
  57. package/dist/esm/src/decorators/hooks/AfterUpdate.js +1 -1
  58. package/dist/esm/src/decorators/hooks/AfterUpdateCommit.js +1 -1
  59. package/dist/esm/src/decorators/hooks/BeforeCreate.js +1 -1
  60. package/dist/esm/src/decorators/hooks/BeforeDestroy.js +1 -1
  61. package/dist/esm/src/decorators/hooks/BeforeSave.js +1 -1
  62. package/dist/esm/src/decorators/hooks/BeforeUpdate.js +1 -1
  63. package/dist/esm/src/dream/Query.js +8 -8
  64. package/dist/esm/src/dream/internal/associations/createAssociation.js +1 -1
  65. package/dist/esm/src/dream/internal/runHooksFor.js +1 -1
  66. package/dist/esm/src/dream/internal/saveDream.js +1 -1
  67. package/dist/esm/src/dream/internal/sqlResultToDreamInstance.js +1 -1
  68. package/dist/esm/src/errors/CannotCallUndestroyOnANonSoftDeleteModel.js +1 -1
  69. package/dist/esm/src/errors/CannotDefineAssociationWithBothDependentAndPassthrough.js +1 -1
  70. package/dist/esm/src/errors/CannotDefineAssociationWithBothDependentAndRequiredOnClause.js +1 -1
  71. package/dist/esm/src/errors/CannotPassUndefinedAsAValueToAWhereClause.js +1 -1
  72. package/dist/esm/src/errors/CannotReloadUnsavedDream.js +1 -1
  73. package/dist/esm/src/errors/CreateOrFindByFailedToCreateAndFind.js +1 -1
  74. package/dist/esm/src/errors/DoNotSetEncryptedFieldsDirectly.js +1 -1
  75. package/dist/esm/src/errors/MissingDeletedAtFieldForSoftDelete.js +1 -1
  76. package/dist/esm/src/errors/MissingSerializersDefinition.js +5 -5
  77. package/dist/esm/src/errors/MissingTable.js +4 -4
  78. package/dist/esm/src/errors/NonBelongsToAssociationProvidedAsSortableDecoratorScope.js +2 -2
  79. package/dist/esm/src/errors/NonExistentScopeProvidedToResort.js +2 -2
  80. package/dist/esm/src/errors/SortableDecoratorRequiresColumnOrBelongsToAssociation.js +3 -3
  81. package/dist/esm/src/errors/associations/CanOnlyPassBelongsToModelParam.js +1 -1
  82. package/dist/esm/src/errors/associations/CannotAssociateThroughPolymorphic.js +1 -1
  83. package/dist/esm/src/errors/associations/CannotCreateAssociationWithThroughContext.js +1 -1
  84. package/dist/esm/src/errors/associations/CannotJoinPolymorphicBelongsToError.js +1 -1
  85. package/dist/esm/src/errors/associations/CannotPassNullOrUndefinedToRequiredBelongsTo.js +1 -1
  86. package/dist/esm/src/errors/associations/InvalidComputedForeignKey.js +2 -2
  87. package/dist/esm/src/errors/associations/JoinAttemptedOnMissingAssociation.js +4 -4
  88. package/dist/esm/src/errors/associations/MissingThroughAssociation.js +4 -4
  89. package/dist/esm/src/errors/associations/MissingThroughAssociationSource.js +10 -10
  90. package/dist/esm/src/errors/associations/NonLoadedAssociation.js +1 -1
  91. package/dist/esm/src/errors/ops/AnyRequiresArrayColumn.js +1 -1
  92. package/dist/esm/src/errors/schema-builder/FailedToIdentifyAssociation.js +4 -4
  93. package/dist/esm/src/errors/sti/STIChildMissing.js +1 -1
  94. package/dist/esm/src/errors/sti/StiChildIncompatibleWithSoftDeleteDecorator.js +1 -1
  95. package/dist/types/src/Dream.d.ts +49 -0
  96. package/docs/assets/search.js +1 -1
  97. package/docs/classes/Benchmark.html +2 -2
  98. package/docs/classes/CalendarDate.html +2 -2
  99. package/docs/classes/CreateOrFindByFailedToCreateAndFind.html +3 -3
  100. package/docs/classes/Decorators.html +14 -14
  101. package/docs/classes/Dream.html +146 -122
  102. package/docs/classes/DreamApplication.html +4 -4
  103. package/docs/classes/DreamBin.html +2 -2
  104. package/docs/classes/DreamCLI.html +3 -3
  105. package/docs/classes/DreamImporter.html +2 -2
  106. package/docs/classes/DreamMigrationHelpers.html +7 -7
  107. package/docs/classes/DreamSerializer.html +2 -2
  108. package/docs/classes/DreamTransaction.html +2 -2
  109. package/docs/classes/Encrypt.html +2 -2
  110. package/docs/classes/Env.html +2 -2
  111. package/docs/classes/GlobalNameNotSet.html +3 -3
  112. package/docs/classes/NonLoadedAssociation.html +3 -3
  113. package/docs/classes/Query.html +50 -50
  114. package/docs/classes/Range.html +2 -2
  115. package/docs/classes/RecordNotFound.html +3 -3
  116. package/docs/classes/ValidationError.html +3 -3
  117. package/docs/functions/Attribute.html +1 -1
  118. package/docs/functions/RendersMany.html +1 -1
  119. package/docs/functions/RendersOne.html +1 -1
  120. package/docs/functions/ReplicaSafe.html +1 -1
  121. package/docs/functions/STI.html +1 -1
  122. package/docs/functions/Scope.html +1 -1
  123. package/docs/functions/SoftDelete.html +1 -1
  124. package/docs/functions/Validate.html +1 -1
  125. package/docs/functions/Validates.html +1 -1
  126. package/docs/functions/Virtual.html +1 -1
  127. package/docs/functions/camelize.html +1 -1
  128. package/docs/functions/capitalize.html +1 -1
  129. package/docs/functions/closeAllDbConnections.html +1 -1
  130. package/docs/functions/compact.html +1 -1
  131. package/docs/functions/db.html +1 -1
  132. package/docs/functions/debug.html +1 -1
  133. package/docs/functions/dreamDbConnections.html +1 -1
  134. package/docs/functions/dreamPath.html +1 -1
  135. package/docs/functions/generateDream.html +1 -1
  136. package/docs/functions/globalClassNameFromFullyQualifiedModelName.html +1 -1
  137. package/docs/functions/hyphenize.html +1 -1
  138. package/docs/functions/inferSerializerFromDreamClassOrViewModelClass.html +1 -1
  139. package/docs/functions/inferSerializerFromDreamOrViewModel.html +1 -1
  140. package/docs/functions/isEmpty.html +1 -1
  141. package/docs/functions/loadRepl.html +1 -1
  142. package/docs/functions/lookupClassByGlobalName.html +1 -1
  143. package/docs/functions/pascalize.html +1 -1
  144. package/docs/functions/pgErrorType.html +1 -1
  145. package/docs/functions/range-1.html +1 -1
  146. package/docs/functions/relativeDreamPath.html +1 -1
  147. package/docs/functions/round.html +1 -1
  148. package/docs/functions/serializerNameFromFullyQualifiedModelName.html +1 -1
  149. package/docs/functions/sharedPathPrefix.html +1 -1
  150. package/docs/functions/snakeify.html +1 -1
  151. package/docs/functions/sortBy.html +1 -1
  152. package/docs/functions/standardizeFullyQualifiedModelName.html +1 -1
  153. package/docs/functions/uncapitalize.html +1 -1
  154. package/docs/functions/uniq.html +1 -1
  155. package/docs/functions/validateColumn.html +1 -1
  156. package/docs/functions/validateTable.html +1 -1
  157. package/docs/interfaces/AttributeStatement.html +2 -2
  158. package/docs/interfaces/DecoratorContext.html +2 -2
  159. package/docs/interfaces/DreamApplicationInitOptions.html +2 -2
  160. package/docs/interfaces/DreamApplicationOpts.html +2 -2
  161. package/docs/interfaces/DreamSerializerAssociationStatement.html +2 -2
  162. package/docs/interfaces/EncryptOptions.html +2 -2
  163. package/docs/interfaces/OpenapiSchemaProperties.html +1 -1
  164. package/docs/interfaces/OpenapiSchemaPropertiesShorthand.html +1 -1
  165. package/docs/interfaces/OpenapiTypeFieldObject.html +1 -1
  166. package/docs/types/Camelized.html +1 -1
  167. package/docs/types/CommonOpenapiSchemaObjectFields.html +1 -1
  168. package/docs/types/DreamAssociationMetadata.html +1 -1
  169. package/docs/types/DreamAttributes.html +1 -1
  170. package/docs/types/DreamClassColumn.html +1 -1
  171. package/docs/types/DreamColumn.html +1 -1
  172. package/docs/types/DreamColumnNames.html +1 -1
  173. package/docs/types/DreamLogLevel.html +1 -1
  174. package/docs/types/DreamLogger.html +1 -1
  175. package/docs/types/DreamOrViewModelSerializerKey.html +1 -1
  176. package/docs/types/DreamParamSafeAttributes.html +1 -1
  177. package/docs/types/DreamParamSafeColumnNames.html +1 -1
  178. package/docs/types/DreamSerializerKey.html +1 -1
  179. package/docs/types/DreamSerializers.html +1 -1
  180. package/docs/types/DreamTableSchema.html +1 -1
  181. package/docs/types/DreamVirtualColumns.html +1 -1
  182. package/docs/types/EncryptAlgorithm.html +1 -1
  183. package/docs/types/Hyphenized.html +1 -1
  184. package/docs/types/IdType.html +1 -1
  185. package/docs/types/OpenapiAllTypes.html +1 -1
  186. package/docs/types/OpenapiFormats.html +1 -1
  187. package/docs/types/OpenapiNumberFormats.html +1 -1
  188. package/docs/types/OpenapiPrimitiveTypes.html +1 -1
  189. package/docs/types/OpenapiSchemaArray.html +1 -1
  190. package/docs/types/OpenapiSchemaArrayShorthand.html +1 -1
  191. package/docs/types/OpenapiSchemaBase.html +1 -1
  192. package/docs/types/OpenapiSchemaBody.html +1 -1
  193. package/docs/types/OpenapiSchemaBodyShorthand.html +1 -1
  194. package/docs/types/OpenapiSchemaCommonFields.html +1 -1
  195. package/docs/types/OpenapiSchemaExpressionAllOf.html +1 -1
  196. package/docs/types/OpenapiSchemaExpressionAnyOf.html +1 -1
  197. package/docs/types/OpenapiSchemaExpressionOneOf.html +1 -1
  198. package/docs/types/OpenapiSchemaExpressionRef.html +1 -1
  199. package/docs/types/OpenapiSchemaExpressionRefSchemaShorthand.html +1 -1
  200. package/docs/types/OpenapiSchemaInteger.html +1 -1
  201. package/docs/types/OpenapiSchemaNull.html +1 -1
  202. package/docs/types/OpenapiSchemaNumber.html +1 -1
  203. package/docs/types/OpenapiSchemaObject.html +1 -1
  204. package/docs/types/OpenapiSchemaObjectAllOf.html +1 -1
  205. package/docs/types/OpenapiSchemaObjectAllOfShorthand.html +1 -1
  206. package/docs/types/OpenapiSchemaObjectAnyOf.html +1 -1
  207. package/docs/types/OpenapiSchemaObjectAnyOfShorthand.html +1 -1
  208. package/docs/types/OpenapiSchemaObjectBase.html +1 -1
  209. package/docs/types/OpenapiSchemaObjectBaseShorthand.html +1 -1
  210. package/docs/types/OpenapiSchemaObjectOneOf.html +1 -1
  211. package/docs/types/OpenapiSchemaObjectOneOfShorthand.html +1 -1
  212. package/docs/types/OpenapiSchemaObjectShorthand.html +1 -1
  213. package/docs/types/OpenapiSchemaPartialSegment.html +1 -1
  214. package/docs/types/OpenapiSchemaPrimitiveGeneric.html +1 -1
  215. package/docs/types/OpenapiSchemaShorthandExpressionAllOf.html +1 -1
  216. package/docs/types/OpenapiSchemaShorthandExpressionAnyOf.html +1 -1
  217. package/docs/types/OpenapiSchemaShorthandExpressionOneOf.html +1 -1
  218. package/docs/types/OpenapiSchemaShorthandExpressionSerializableRef.html +1 -1
  219. package/docs/types/OpenapiSchemaShorthandExpressionSerializerRef.html +1 -1
  220. package/docs/types/OpenapiSchemaShorthandPrimitiveGeneric.html +1 -1
  221. package/docs/types/OpenapiSchemaString.html +1 -1
  222. package/docs/types/OpenapiShorthandAllTypes.html +1 -1
  223. package/docs/types/OpenapiShorthandPrimitiveTypes.html +1 -1
  224. package/docs/types/OpenapiTypeField.html +1 -1
  225. package/docs/types/Pascalized.html +1 -1
  226. package/docs/types/PrimaryKeyType.html +1 -1
  227. package/docs/types/RoundingPrecision.html +1 -1
  228. package/docs/types/SerializableClassOrSerializerCallback.html +1 -1
  229. package/docs/types/SerializableDreamClassOrViewModelClass.html +1 -1
  230. package/docs/types/SerializableDreamOrViewModel.html +1 -1
  231. package/docs/types/SerializableTypes.html +1 -1
  232. package/docs/types/Snakeified.html +1 -1
  233. package/docs/types/Timestamp.html +1 -1
  234. package/docs/types/UpdateableAssociationProperties.html +1 -1
  235. package/docs/types/UpdateableProperties.html +1 -1
  236. package/docs/types/ValidationType.html +1 -1
  237. package/docs/types/ViewModelSerializerKey.html +1 -1
  238. package/docs/types/WhereStatementForDream.html +1 -1
  239. package/docs/types/WhereStatementForDreamClass.html +1 -1
  240. package/docs/variables/DreamConst.html +1 -1
  241. package/docs/variables/TRIGRAM_OPERATORS.html +1 -1
  242. package/docs/variables/openapiPrimitiveTypes-1.html +1 -1
  243. package/docs/variables/openapiShorthandPrimitiveTypes-1.html +1 -1
  244. package/docs/variables/ops.html +1 -1
  245. package/docs/variables/primaryKeyTypes.html +1 -1
  246. package/package.json +1 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.