@quilla-be-kit/persistence-init-test 0.1.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.
- package/README.md +684 -0
- package/dist/.tsbuildinfo +1 -0
- package/dist/dao/audit-columns.d.ts +19 -0
- package/dist/dao/audit-columns.d.ts.map +1 -0
- package/dist/dao/audit-columns.js +26 -0
- package/dist/dao/audit-columns.js.map +1 -0
- package/dist/dao/base-read.dao.d.ts +50 -0
- package/dist/dao/base-read.dao.d.ts.map +1 -0
- package/dist/dao/base-read.dao.js +65 -0
- package/dist/dao/base-read.dao.js.map +1 -0
- package/dist/dao/base-write.dao.d.ts +49 -0
- package/dist/dao/base-write.dao.d.ts.map +1 -0
- package/dist/dao/base-write.dao.js +130 -0
- package/dist/dao/base-write.dao.js.map +1 -0
- package/dist/dao/index.d.ts +3 -0
- package/dist/dao/index.d.ts.map +1 -0
- package/dist/dao/index.js +3 -0
- package/dist/dao/index.js.map +1 -0
- package/dist/database/database-health.type.d.ts +4 -0
- package/dist/database/database-health.type.d.ts.map +1 -0
- package/dist/database/database-health.type.js +2 -0
- package/dist/database/database-health.type.js.map +1 -0
- package/dist/database/database-result.type.d.ts +5 -0
- package/dist/database/database-result.type.d.ts.map +1 -0
- package/dist/database/database-result.type.js +2 -0
- package/dist/database/database-result.type.js.map +1 -0
- package/dist/database/database-transaction.interface.d.ts +10 -0
- package/dist/database/database-transaction.interface.d.ts.map +1 -0
- package/dist/database/database-transaction.interface.js +2 -0
- package/dist/database/database-transaction.interface.js.map +1 -0
- package/dist/database/database.interface.d.ts +10 -0
- package/dist/database/database.interface.d.ts.map +1 -0
- package/dist/database/database.interface.js +2 -0
- package/dist/database/database.interface.js.map +1 -0
- package/dist/database/index.d.ts +5 -0
- package/dist/database/index.d.ts.map +1 -0
- package/dist/database/index.js +2 -0
- package/dist/database/index.js.map +1 -0
- package/dist/db-adapter/filter-query.type.d.ts +4 -0
- package/dist/db-adapter/filter-query.type.d.ts.map +1 -0
- package/dist/db-adapter/filter-query.type.js +2 -0
- package/dist/db-adapter/filter-query.type.js.map +1 -0
- package/dist/db-adapter/index.d.ts +4 -0
- package/dist/db-adapter/index.d.ts.map +1 -0
- package/dist/db-adapter/index.js +2 -0
- package/dist/db-adapter/index.js.map +1 -0
- package/dist/db-adapter/read-db-adapter.interface.d.ts +37 -0
- package/dist/db-adapter/read-db-adapter.interface.d.ts.map +1 -0
- package/dist/db-adapter/read-db-adapter.interface.js +2 -0
- package/dist/db-adapter/read-db-adapter.interface.js.map +1 -0
- package/dist/db-adapter/write-db-adapter.interface.d.ts +61 -0
- package/dist/db-adapter/write-db-adapter.interface.d.ts.map +1 -0
- package/dist/db-adapter/write-db-adapter.interface.js +2 -0
- package/dist/db-adapter/write-db-adapter.interface.js.map +1 -0
- package/dist/errors/cross-scope-access.error.d.ts +10 -0
- package/dist/errors/cross-scope-access.error.d.ts.map +1 -0
- package/dist/errors/cross-scope-access.error.js +15 -0
- package/dist/errors/cross-scope-access.error.js.map +1 -0
- package/dist/errors/index.d.ts +3 -0
- package/dist/errors/index.d.ts.map +1 -0
- package/dist/errors/index.js +3 -0
- package/dist/errors/index.js.map +1 -0
- package/dist/errors/optimistic-lock.error.d.ts +9 -0
- package/dist/errors/optimistic-lock.error.d.ts.map +1 -0
- package/dist/errors/optimistic-lock.error.js +11 -0
- package/dist/errors/optimistic-lock.error.js.map +1 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -0
- package/dist/postgres/index.d.ts +7 -0
- package/dist/postgres/index.d.ts.map +1 -0
- package/dist/postgres/index.js +7 -0
- package/dist/postgres/index.js.map +1 -0
- package/dist/postgres/pg-query-builder.d.ts +42 -0
- package/dist/postgres/pg-query-builder.d.ts.map +1 -0
- package/dist/postgres/pg-query-builder.js +260 -0
- package/dist/postgres/pg-query-builder.js.map +1 -0
- package/dist/postgres/pg-read-db-adapter.d.ts +20 -0
- package/dist/postgres/pg-read-db-adapter.d.ts.map +1 -0
- package/dist/postgres/pg-read-db-adapter.js +28 -0
- package/dist/postgres/pg-read-db-adapter.js.map +1 -0
- package/dist/postgres/pg-sql.d.ts +44 -0
- package/dist/postgres/pg-sql.d.ts.map +1 -0
- package/dist/postgres/pg-sql.js +128 -0
- package/dist/postgres/pg-sql.js.map +1 -0
- package/dist/postgres/pg-write-db-adapter.d.ts +30 -0
- package/dist/postgres/pg-write-db-adapter.d.ts.map +1 -0
- package/dist/postgres/pg-write-db-adapter.js +133 -0
- package/dist/postgres/pg-write-db-adapter.js.map +1 -0
- package/dist/postgres/pg.database.d.ts +25 -0
- package/dist/postgres/pg.database.d.ts.map +1 -0
- package/dist/postgres/pg.database.js +48 -0
- package/dist/postgres/pg.database.js.map +1 -0
- package/dist/postgres/pg.transaction.d.ts +22 -0
- package/dist/postgres/pg.transaction.d.ts.map +1 -0
- package/dist/postgres/pg.transaction.js +78 -0
- package/dist/postgres/pg.transaction.js.map +1 -0
- package/dist/query/case.d.ts +3 -0
- package/dist/query/case.d.ts.map +1 -0
- package/dist/query/case.js +7 -0
- package/dist/query/case.js.map +1 -0
- package/dist/query/column-resolver.interface.d.ts +4 -0
- package/dist/query/column-resolver.interface.d.ts.map +1 -0
- package/dist/query/column-resolver.interface.js +2 -0
- package/dist/query/column-resolver.interface.js.map +1 -0
- package/dist/query/default.resolver.d.ts +10 -0
- package/dist/query/default.resolver.d.ts.map +1 -0
- package/dist/query/default.resolver.js +14 -0
- package/dist/query/default.resolver.js.map +1 -0
- package/dist/query/field-descriptor.type.d.ts +11 -0
- package/dist/query/field-descriptor.type.d.ts.map +1 -0
- package/dist/query/field-descriptor.type.js +20 -0
- package/dist/query/field-descriptor.type.js.map +1 -0
- package/dist/query/filter-query.type.d.ts +4 -0
- package/dist/query/filter-query.type.d.ts.map +1 -0
- package/dist/query/filter-query.type.js +2 -0
- package/dist/query/filter-query.type.js.map +1 -0
- package/dist/query/index.d.ts +9 -0
- package/dist/query/index.d.ts.map +1 -0
- package/dist/query/index.js +3 -0
- package/dist/query/index.js.map +1 -0
- package/dist/query/list-query.type.d.ts +12 -0
- package/dist/query/list-query.type.d.ts.map +1 -0
- package/dist/query/list-query.type.js +2 -0
- package/dist/query/list-query.type.js.map +1 -0
- package/dist/query/paginated-result.type.d.ts +7 -0
- package/dist/query/paginated-result.type.d.ts.map +1 -0
- package/dist/query/paginated-result.type.js +2 -0
- package/dist/query/paginated-result.type.js.map +1 -0
- package/dist/query/query-product.type.d.ts +6 -0
- package/dist/query/query-product.type.d.ts.map +1 -0
- package/dist/query/query-product.type.js +2 -0
- package/dist/query/query-product.type.js.map +1 -0
- package/dist/query/read-query-builder.interface.d.ts +17 -0
- package/dist/query/read-query-builder.interface.d.ts.map +1 -0
- package/dist/query/read-query-builder.interface.js +2 -0
- package/dist/query/read-query-builder.interface.js.map +1 -0
- package/dist/query/sql-query-builder.interface.d.ts +99 -0
- package/dist/query/sql-query-builder.interface.d.ts.map +1 -0
- package/dist/query/sql-query-builder.interface.js +2 -0
- package/dist/query/sql-query-builder.interface.js.map +1 -0
- package/dist/query/sql-statement.type.d.ts +5 -0
- package/dist/query/sql-statement.type.d.ts.map +1 -0
- package/dist/query/sql-statement.type.js +2 -0
- package/dist/query/sql-statement.type.js.map +1 -0
- package/dist/query/write-query-builder.interface.d.ts +34 -0
- package/dist/query/write-query-builder.interface.d.ts.map +1 -0
- package/dist/query/write-query-builder.interface.js +2 -0
- package/dist/query/write-query-builder.interface.js.map +1 -0
- package/dist/query-schema/field-descriptor-from-zod.d.ts +4 -0
- package/dist/query-schema/field-descriptor-from-zod.d.ts.map +1 -0
- package/dist/query-schema/field-descriptor-from-zod.js +31 -0
- package/dist/query-schema/field-descriptor-from-zod.js.map +1 -0
- package/dist/query-schema/index.d.ts +3 -0
- package/dist/query-schema/index.d.ts.map +1 -0
- package/dist/query-schema/index.js +3 -0
- package/dist/query-schema/index.js.map +1 -0
- package/dist/query-schema/zod.d.ts +73 -0
- package/dist/query-schema/zod.d.ts.map +1 -0
- package/dist/query-schema/zod.js +191 -0
- package/dist/query-schema/zod.js.map +1 -0
- package/dist/repository/base-aggregate.repository.d.ts +28 -0
- package/dist/repository/base-aggregate.repository.d.ts.map +1 -0
- package/dist/repository/base-aggregate.repository.js +49 -0
- package/dist/repository/base-aggregate.repository.js.map +1 -0
- package/dist/repository/base-basic.repository.d.ts +22 -0
- package/dist/repository/base-basic.repository.d.ts.map +1 -0
- package/dist/repository/base-basic.repository.js +30 -0
- package/dist/repository/base-basic.repository.js.map +1 -0
- package/dist/repository/base-persistence.mapper.d.ts +61 -0
- package/dist/repository/base-persistence.mapper.d.ts.map +1 -0
- package/dist/repository/base-persistence.mapper.js +119 -0
- package/dist/repository/base-persistence.mapper.js.map +1 -0
- package/dist/repository/base-scoped-aggregate.repository.d.ts +19 -0
- package/dist/repository/base-scoped-aggregate.repository.d.ts.map +1 -0
- package/dist/repository/base-scoped-aggregate.repository.js +35 -0
- package/dist/repository/base-scoped-aggregate.repository.js.map +1 -0
- package/dist/repository/base-unscoped-aggregate.repository.d.ts +17 -0
- package/dist/repository/base-unscoped-aggregate.repository.d.ts.map +1 -0
- package/dist/repository/base-unscoped-aggregate.repository.js +21 -0
- package/dist/repository/base-unscoped-aggregate.repository.js.map +1 -0
- package/dist/repository/index.d.ts +7 -0
- package/dist/repository/index.d.ts.map +1 -0
- package/dist/repository/index.js +6 -0
- package/dist/repository/index.js.map +1 -0
- package/dist/repository/mapper.interface.d.ts +5 -0
- package/dist/repository/mapper.interface.d.ts.map +1 -0
- package/dist/repository/mapper.interface.js +2 -0
- package/dist/repository/mapper.interface.js.map +1 -0
- package/dist/unit-of-work/event-sink.interface.d.ts +5 -0
- package/dist/unit-of-work/event-sink.interface.d.ts.map +1 -0
- package/dist/unit-of-work/event-sink.interface.js +2 -0
- package/dist/unit-of-work/event-sink.interface.js.map +1 -0
- package/dist/unit-of-work/index.d.ts +4 -0
- package/dist/unit-of-work/index.d.ts.map +1 -0
- package/dist/unit-of-work/index.js +2 -0
- package/dist/unit-of-work/index.js.map +1 -0
- package/dist/unit-of-work/outbox-writer.interface.d.ts +14 -0
- package/dist/unit-of-work/outbox-writer.interface.d.ts.map +1 -0
- package/dist/unit-of-work/outbox-writer.interface.js +2 -0
- package/dist/unit-of-work/outbox-writer.interface.js.map +1 -0
- package/dist/unit-of-work/unit-of-work-context.type.d.ts +8 -0
- package/dist/unit-of-work/unit-of-work-context.type.d.ts.map +1 -0
- package/dist/unit-of-work/unit-of-work-context.type.js +2 -0
- package/dist/unit-of-work/unit-of-work-context.type.js.map +1 -0
- package/dist/unit-of-work/unit-of-work.d.ts +20 -0
- package/dist/unit-of-work/unit-of-work.d.ts.map +1 -0
- package/dist/unit-of-work/unit-of-work.js +60 -0
- package/dist/unit-of-work/unit-of-work.js.map +1 -0
- package/package.json +83 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/database/database-health.type.ts","../src/database/database-result.type.ts","../src/database/database-transaction.interface.ts","../src/database/database.interface.ts","../src/database/index.ts","../src/db-adapter/filter-query.type.ts","../src/db-adapter/read-db-adapter.interface.ts","../src/db-adapter/write-db-adapter.interface.ts","../src/db-adapter/index.ts","../src/query/column-resolver.interface.ts","../src/query/case.ts","../src/query/default.resolver.ts","../src/query/list-query.type.ts","../src/query/paginated-result.type.ts","../src/query/query-product.type.ts","../src/query/sql-query-builder.interface.ts","../src/dao/base-read.dao.ts","../../ddd/dist/actors/actor.type.d.ts","../../ddd/dist/actors/index.d.ts","../../ddd/dist/events/domain.event.d.ts","../../ddd/dist/entities/entity.d.ts","../../ddd/dist/entities/root.aggregate.d.ts","../../ddd/dist/entities/index.d.ts","../../ddd/dist/events/event.metadata.d.ts","../../ddd/dist/events/integration.event.d.ts","../../ddd/dist/events/envelope.d.ts","../../ddd/dist/events/index.d.ts","../../ddd/dist/index.d.ts","../../execution-context/dist/auth-session.type.d.ts","../../execution-context/dist/execution-context.type.d.ts","../../execution-context/dist/execution-context.factory.d.ts","../../execution-context/dist/execution-context.provider.d.ts","../../execution-context/dist/async-execution-context.provider.d.ts","../../observability/dist/logger/log-entry.type.d.ts","../../observability/dist/logger/log-entry.enricher.d.ts","../../observability/dist/logger/log-error-serializer.interface.d.ts","../../observability/dist/logger/log.formatter.d.ts","../../observability/dist/logger/log.observer.d.ts","../../observability/dist/logger/logger.interface.d.ts","../../observability/dist/logger/noop.logger.d.ts","../../observability/dist/logger/obfuscation/log.obfuscator.d.ts","../../observability/dist/logger/structured.logger.d.ts","../../observability/dist/logger/json.formatter.d.ts","../../observability/dist/logger/pretty.formatter.d.ts","../../observability/dist/logger/logger.factory.d.ts","../../observability/dist/logger/obfuscation/crypto.d.ts","../../observability/dist/logger/obfuscation/recursive.obfuscator.d.ts","../../observability/dist/logger/obfuscation/index.d.ts","../../observability/dist/logger/index.d.ts","../../observability/dist/index.d.ts","../../execution-context/dist/execution-context.enricher.d.ts","../../execution-context/dist/index.d.ts","../../errors/dist/quilla.error.d.ts","../../errors/dist/quilla-error.serializer.d.ts","../../errors/dist/validation.error.d.ts","../../errors/dist/not-found.error.d.ts","../../errors/dist/conflict.error.d.ts","../../errors/dist/unauthorized.error.d.ts","../../errors/dist/forbidden.error.d.ts","../../errors/dist/internal.error.d.ts","../../errors/dist/external.error.d.ts","../../errors/dist/unknown.error.d.ts","../../errors/dist/index.d.ts","../src/errors/optimistic-lock.error.ts","../src/dao/audit-columns.ts","../src/dao/base-write.dao.ts","../src/dao/index.ts","../src/query/field-descriptor.type.ts","../src/query/index.ts","../src/repository/base-basic.repository.ts","../src/unit-of-work/unit-of-work-context.type.ts","../src/repository/mapper.interface.ts","../src/repository/base-aggregate.repository.ts","../src/errors/cross-scope-access.error.ts","../src/repository/base-scoped-aggregate.repository.ts","../src/repository/base-unscoped-aggregate.repository.ts","../src/repository/base-persistence.mapper.ts","../src/repository/index.ts","../src/unit-of-work/event-sink.interface.ts","../src/unit-of-work/unit-of-work.ts","../src/unit-of-work/index.ts","../src/errors/index.ts","../src/index.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@22.19.17/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/pg-types@2.2.0/node_modules/pg-types/index.d.ts","../../../node_modules/.pnpm/pg-protocol@1.13.0/node_modules/pg-protocol/dist/messages.d.ts","../../../node_modules/.pnpm/pg-protocol@1.13.0/node_modules/pg-protocol/dist/serializer.d.ts","../../../node_modules/.pnpm/pg-protocol@1.13.0/node_modules/pg-protocol/dist/parser.d.ts","../../../node_modules/.pnpm/pg-protocol@1.13.0/node_modules/pg-protocol/dist/index.d.ts","../../../node_modules/.pnpm/@types+pg@8.20.0/node_modules/@types/pg/lib/type-overrides.d.ts","../../../node_modules/.pnpm/@types+pg@8.20.0/node_modules/@types/pg/index.d.ts","../../../node_modules/.pnpm/@types+pg@8.20.0/node_modules/@types/pg/index.d.mts","../src/postgres/pg.transaction.ts","../src/postgres/pg.database.ts","../src/postgres/pg-sql.ts","../src/postgres/pg-write-db-adapter.ts","../src/postgres/pg-read-db-adapter.ts","../src/postgres/pg-query-builder.ts","../src/postgres/index.ts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/json-schema.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/standard-schema.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/registries.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/to-json-schema.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/util.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/versions.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/schemas.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/checks.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/errors.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/core.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/parse.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/regexes.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ar.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/az.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/be.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/bg.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ca.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/cs.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/da.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/de.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/en.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/eo.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/es.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/fa.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/fi.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/fr.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/fr-ca.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/he.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/hu.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/hy.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/id.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/is.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/it.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ja.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ka.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/kh.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/km.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ko.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/lt.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/mk.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ms.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/nl.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/no.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ota.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ps.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/pl.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/pt.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ru.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/sl.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/sv.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ta.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/th.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/tr.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ua.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/uk.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ur.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/uz.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/vi.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/zh-cn.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/zh-tw.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/yo.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/index.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/doc.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/api.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/json-schema-processors.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/json-schema-generator.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/index.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/errors.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/parse.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/schemas.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/checks.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/compat.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/from-json-schema.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/iso.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/coerce.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/external.d.cts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/index.d.cts","../src/query-schema/field-descriptor-from-zod.ts","../src/query-schema/zod.ts","../src/query-schema/index.ts"],"fileIdsList":[[159,204,205,207,224,225],[159,206,207,224,225],[207,224,225],[159,207,212,224,225,242],[159,207,208,213,218,224,225,227,239,250],[159,207,208,209,218,224,225,227],[159,207,224,225],[154,155,156,159,207,224,225],[159,207,210,224,225,251],[159,207,211,212,219,224,225,228],[159,207,212,224,225,239,247],[159,207,213,215,218,224,225,227],[159,206,207,214,224,225],[159,207,215,216,224,225],[159,207,217,218,224,225],[159,206,207,218,224,225],[159,207,218,219,220,224,225,239,250],[159,207,218,219,220,224,225,234,239,242],[159,200,207,215,218,221,224,225,227,239,250],[159,207,218,219,221,222,224,225,227,239,247,250],[159,207,221,223,224,225,239,247,250],[157,158,159,160,161,162,163,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256],[159,207,218,224,225],[159,207,224,225,226,250],[159,207,215,218,224,225,227,239],[159,207,224,225,228],[159,207,224,225,229],[159,206,207,224,225,230],[159,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256],[159,207,224,225,232],[159,207,224,225,233],[159,207,218,224,225,234,235],[159,207,224,225,234,236,251,253],[159,207,219,224,225],[159,207,218,224,225,239,240,242],[159,207,224,225,241,242],[159,207,224,225,239,240],[159,207,224,225,242],[159,207,224,225,243],[159,204,207,224,225,239,244,250],[159,207,218,224,225,245,246],[159,207,224,225,245,246],[159,207,212,224,225,227,239,247],[159,207,224,225,248],[159,207,224,225,227,249],[159,207,221,224,225,233,250],[159,207,212,224,225,251],[159,207,224,225,239,252],[159,207,224,225,226,253],[159,207,224,225,254],[159,200,207,224,225],[159,200,207,218,220,224,225,230,239,242,250,252,253,255],[159,207,224,225,239,256],[159,207,224,225,264],[159,207,218,224,225,239,247,257,258,259,262,263,264],[159,207,224,225,257,259,260,261],[159,207,224,225,257],[159,207,224,225,239,257,259],[159,172,176,207,224,225,250],[159,172,207,224,225,239,250],[159,167,207,224,225],[159,169,172,207,224,225,247,250],[159,207,224,225,227,247],[159,167,207,224,225,257],[159,169,172,207,224,225,227,250],[159,164,165,168,171,207,218,224,225,239,250],[159,172,179,207,224,225],[159,164,170,207,224,225],[159,172,193,194,207,224,225],[159,168,172,207,224,225,242,250,257],[159,193,207,224,225,257],[159,166,167,207,224,225,257],[159,172,207,224,225],[159,166,167,168,169,170,171,172,173,174,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,194,195,196,197,198,199,207,224,225],[159,172,187,207,224,225],[159,172,179,180,207,224,225],[159,170,172,180,181,207,224,225],[159,171,207,224,225],[159,164,167,172,207,224,225],[159,172,176,180,181,207,224,225],[159,176,207,224,225],[159,170,172,175,207,224,225,250],[159,164,169,172,179,207,224,225],[159,207,224,225,239],[159,167,172,193,207,224,225,255,257],[159,207,224,225,348],[159,207,224,225,339],[159,207,224,225,339,342],[159,207,224,225,334,337,339,340,341,342,343,344,345,346,347],[159,207,224,225,273,275,342],[159,207,224,225,339,340],[159,207,224,225,274,339,341],[159,207,224,225,275,277,279,280,281,282],[159,207,224,225,277,279,281,282],[159,207,224,225,277,279,281],[159,207,224,225,274,277,279,280,282],[159,207,224,225,273,275,276,277,278,279,280,281,282,283,284,334,335,336,337,338],[159,207,224,225,273,275,276,279],[159,207,224,225,275,276,279],[159,207,224,225,279,282],[159,207,224,225,273,274,276,277,278,280,281,282],[159,207,224,225,273,274,275,279,339],[159,207,224,225,279,280,281,282],[159,207,224,225,281],[159,207,224,225,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333],[88,159,207,224,225],[91,92,159,207,224,225],[90,91,159,207,224,225],[90,94,95,159,207,224,225],[90,94,95,96,159,207,224,225],[89,93,97,159,207,224,225],[123,159,207,224,225],[123,124,125,126,127,128,129,130,131,132,159,207,224,225],[130,159,207,224,225],[100,101,102,159,207,224,225],[102,120,159,207,224,225],[98,100,159,207,224,225],[100,101,159,207,224,225],[98,99,159,207,224,225],[99,100,101,102,103,121,159,207,224,225],[119,159,207,224,225],[104,105,106,107,108,109,110,112,113,114,115,118,159,207,224,225],[104,107,159,207,224,225],[104,159,207,224,225],[104,105,106,107,108,109,111,159,207,224,225],[109,159,207,224,225],[111,159,207,212,224,225],[111,116,117,159,207,224,225],[77,80,82,83,84,85,86,159,207,224,225],[73,76,78,122,134,135,159,207,224,225],[87,136,159,207,224,225],[72,159,207,224,225],[71,72,73,159,207,224,225],[71,72,73,74,159,207,224,225],[76,77,78,159,207,224,225],[76,159,207,224,225],[72,73,76,77,159,207,224,225],[133,159,207,224,225],[134,144,159,207,224,225],[75,79,137,139,148,151,152,159,207,224,225],[159,207,224,225,266,267,268,269,270,271],[80,83,85,86,138,159,207,224,225],[74,77,159,207,224,225,268],[72,73,74,76,77,159,207,224,225],[72,73,74,76,77,78,159,207,224,225,268],[71,72,73,74,159,207,224,225,265,266],[72,73,159,207,224,225,265],[138,159,207,224,225,349],[159,207,224,225,350,351],[83,138,159,207,224,225,349,350],[80,81,159,207,224,225],[80,82,83,84,85,86,138,159,207,224,225],[83,85,159,207,224,225],[98,136,141,142,159,207,224,225],[73,136,159,207,224,225],[81,142,159,207,224,225],[76,98,141,143,144,159,207,224,225],[76,98,141,143,159,207,224,225],[140,142,143,145,146,147,159,207,224,225],[73,159,207,224,225],[141,149,150,159,207,224,225],[73,98,159,207,224,225],[74,98,141,149,159,206,207,224,225]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"ef3e8ad10786b322145d3e69b8d1dbbfec403936421a4e01a16c6f3a39f4c6f7","signature":"7471fadb7034a19a9f48273ce02c34ba409c90934a9689d60056b89223c72b47","impliedFormat":99},{"version":"405457a62a4f99a38cd41379b9a8d8e243ee44956ed3f0d6cc679be99041c180","signature":"e6b5a00e161a2bb7ab5abe6d224798c7af1f8ca0ba4180f1476224309ae19912","impliedFormat":99},{"version":"f8b82a7d0028f4a47b3c91b728aa03885ea59d78f15f0b950e58de58cd328810","signature":"fa990144582400d95d10675dd3e883b13695a87eb8503a3ebf03419eded540e2","impliedFormat":99},{"version":"ed70e5055dafa4bdd6c027d32bdbb4bd5ef6f4920a3f3783482de123e28f6482","signature":"eb095f5c7a23d4d4f023a5b5b491927d62a43de7c5b92b0498c37fe3710bbc88","impliedFormat":99},{"version":"4a189f8ee1bed33116e3cc427fc2438009bd8ad192839946a01f72ddee416ac4","impliedFormat":99},{"version":"aaf6ca77c7e7c81187aef4a211e6702eaa6269dd219602123551b5ab6de15411","signature":"8baad89ca4ce8b11de74d5ae842e814278bcb9400268005a9c5828c7b4045738","impliedFormat":99},{"version":"7059c6d4b54be5859125aa47336524d4951fbdcf49db75f2be6abbb653ecf655","signature":"b212069f8f2725785e7247299ba32876b6fa3c4beb44c60aa6d7a364fe0fa14c","impliedFormat":99},{"version":"1dcba1af84da5836eaee118223281690de1123e25f89cfd84a24b6442c1b06f4","signature":"4fa37508acf269070d35499756a01228b7f1d19dcb1cbd5d0682126a96ca2deb","impliedFormat":99},{"version":"5f3a6a0bb7a71a237d0bb191ff89b5b19303de75ef9e91209a18e5b5e6c51951","signature":"cdebfe1326a1fe8bce77664130f9bcdd1e4ccc3dc75a15aaba3bbdd904303446","impliedFormat":99},{"version":"1b964f734b513c9170ca0714339ec2b075d548c7a39e944dc3bcc5ab7d90dfc1","signature":"45e132a7fc648a6262e41827c481f82e85c27d4851b407eadfb7127d19bd80d9","impliedFormat":99},{"version":"d53628507a8fb97cce9c0e4c5117871c858dcda01ee22f9cd36511910b6e4699","signature":"d1cf8b9e903d144c3e1d2891e90bd87f3e687b7c59c802b3326223b550e0c075","impliedFormat":99},{"version":"11ed937bbd287be5202e23c98066696d1dab07d2d85a180a6171dfbd884bcd8f","signature":"c00ac77f364f9343069629cca10d3cfd3223c99d3d04782b29ea3c7dab65d288","impliedFormat":99},{"version":"5cd4152b61d1d48b3e66a8a4a5ec99bc7764b971e208c711ca9d1bd311ddfe3c","signature":"54bf819cb848ddb56ec97ec0ae0b52e6b6c2ef175d95230a2b23cd9f27cbba4d","impliedFormat":99},{"version":"6105bfec092e9f92924ca0d81a63901885701b5fe0e4942a82d08d67c6eb2ef1","signature":"2e2e179bdf3c3898a5c6328017fcaf48e488594a117785218ae41841bd070b03","impliedFormat":99},{"version":"dc8794128bc089f13ea9cb3167b29d4d0d3b67f4af27f88c7eb544b716eaefeb","signature":"00066a35d29939e2a88a4e53a36f97bb9f9ba993843ccec162cf61024375c34b","impliedFormat":99},{"version":"571559ddc1cfd44b56b5caf9f233884d5fc7c90c00e5af810b0efdb13a1c2fdb","signature":"7cd65df824bc3644756eb3071b2f2f30157ded2f7377aad15204324c98770bab","impliedFormat":99},{"version":"8cbd272f814284ff815eb1a2a928a62061989cc4a9d7d3ce340c5d4022654fde","signature":"673df09cb83bc9b0f054b3be26a4248ba2173f9ca3d706389fdc6b5077b17387","impliedFormat":99},{"version":"675c9bdb48cd68b281759177f569840910d3514dcfe5cd239e21c5ca7ea26ea0","impliedFormat":99},{"version":"a1e8f35d8cf07fd0a6ebfd5f32003951fa45c41760c393d8e66de81a65fc75f2","impliedFormat":99},{"version":"32fe627aaab3c95d6c184ad5f577e827cea724f541c7ce75c9595f7bb7651b3a","impliedFormat":99},{"version":"ee341e71a6929bd68db51d212b6d9ab0af78c3ed559cb978722652368b98ce3d","impliedFormat":99},{"version":"171a517b5c6fbf9b3b9ab2f4210ac9eaa9bafb3dfaab7b55e143441a3ddb4986","impliedFormat":99},{"version":"fbd09c228833b37d9f538763d160ea5c629381d09861fc892ced99929a469b30","impliedFormat":99},{"version":"25792c77e511dd7ec733c42321d516ea44a68e1cf4948786ba69ee3b32cf928f","impliedFormat":99},{"version":"56b430718ff779dedc693db1dc9aca374c97ae35361b0bec5b77ca73bcde4c86","impliedFormat":99},{"version":"e5f51f53ceaedab982bfcfc9210d083daa8d712eb12b24c9559504cb81eedbeb","impliedFormat":99},{"version":"a543375bb2e96cb4195e34541270f6f61a315eabcddabb7ff27a400ffe488791","impliedFormat":99},{"version":"9d47715d7dfb79cbc9ab8ae191c8b68d6f24ec6108c1e4d51d38635a62a3eb6d","impliedFormat":99},{"version":"87c8f190c51017541ac6871f681a75381ef511e0b34300f79a2968de3c165972","impliedFormat":99},{"version":"a18956b4dc4a92c2ab253fe4338d61f00c450d3bff078dd45bb4aab06eee6b04","impliedFormat":99},{"version":"4fdb1da07c4ce88182695c32d6136a0c08fb53e705781f09a56697d76df38c27","impliedFormat":99},{"version":"b386de96398276509471d777a9cbc2885e4f3446b890ff35814d303e160a7f78","impliedFormat":99},{"version":"6e0a4b904140d288f8cb2bdfb2a4f4cc85e7b7211f4321f3cc65c03158831670","impliedFormat":99},{"version":"0ffae1b8cafd8a16708c688a82418eb4ad16319ad796f797b0019714dc0c5b55","impliedFormat":99},{"version":"e6fc5f97601cafa84b6842b6ff40148ab7a862f6abc1e0c10ef1ecd75fec0589","impliedFormat":99},{"version":"a85f5551355b3b4e0e8f18182ce2018e93d8bc6b7408ffd7ada3be0d31879437","impliedFormat":99},{"version":"6988c988fbd1761d19e56381db62101c47c54007dbd7edc2e311d2a0caa84896","impliedFormat":99},{"version":"7a287aa750f235af539a68f0ccae0253390d39b56dae025852ff9528cd57b46e","impliedFormat":99},{"version":"8628bd7fe01444c8565cdb352a4f2d7e341bb9c158abfcc5738977ff75c3932c","impliedFormat":99},{"version":"8754fa831f2e41de8c6b62dc87363c12b3e44ba41e5bf3f50c8b645e8d366804","impliedFormat":99},{"version":"ef2c84853374475b845e72abbabf3ed9ec06a4338c71d802570e9d0a4a4d248f","impliedFormat":99},{"version":"145bb7017d24b0e70a046e60f52a3819922c5cb2eb990d60b9bb161df86e0457","impliedFormat":99},{"version":"a5f98420aeee752292c618821bcaad8bee6e0cbcb0a8fcec88ad5a9ed62fd23a","impliedFormat":99},{"version":"89936342eb593eeec3742df9209bde8f4ea42d7682b193e51be81107ef687c28","impliedFormat":99},{"version":"6c7ebc7b209737087a91dde6b9e3250c620616c99c000fec91b930250caf9090","impliedFormat":99},{"version":"816dfd8a1e16fe163fcfcf48619970e81b86f777cb6b44f004fddd2f09048f65","impliedFormat":99},{"version":"7715114d7a618638e20fd0e2bdf9d4b991bc4c3a0cc4efc232ad12cfe18d8988","impliedFormat":99},{"version":"ab7c3e195376bb218379a64180f184c24c749c23133fc4880f755e5a301a48b2","impliedFormat":99},{"version":"e329f9b3b9781f4463928f3b7cafef13a92cc91f85b4622e45e30ec256f996c2","impliedFormat":99},{"version":"66780e3b98f46ce738196fea2e326a16e318cde752d75d8de6ffc85bc9dcc7d1","impliedFormat":99},{"version":"037b9bbad7cb7ac1d375dbe86c8f81451f5553c08fb7adac40f0ea967946c0ed","impliedFormat":99},{"version":"8ea628e72d9ae06045433d29caed92494917293064c11d86678873b5a8980618","impliedFormat":99},{"version":"460d63e92e0c9097807d9a0b6e85f1b38d0194badb80b52e41cc67ff32230ea4","impliedFormat":99},{"version":"5708ca5a26e2f161eafaf6d880f176249a792e58516cf2c0de8b566853ab57f6","impliedFormat":99},{"version":"ab10901b08761bbbb8f05f224afc0af7c17c51afbad9dd6d85ac8f68cdea8196","impliedFormat":99},{"version":"eda294ee2d79f05dbed120988f5ecd4a276ba19b5dd5cbbe030a0cbbb4817313","impliedFormat":99},{"version":"326ea146d1b0617c4ec34a005bd37b9dd46b286bde3fdf8e125db4c4cfa14162","impliedFormat":99},{"version":"e2bb8f4bda956288ad79e8b15ae0d406b71157c298d24b8e8519ddde85aabf65","impliedFormat":99},{"version":"40908fb5e000ca66bfefdc8c9c056862c3ba33e08e559ef8b4f5f3fad27deddd","impliedFormat":99},{"version":"c3f6e7cf004221de75c4a1d182675fb63b9a6894964a5b8c3050bffb968c2502","impliedFormat":99},{"version":"88adf18cb8ef58737f3d25d83ef2ae81cb1adfd85e870ff953c37c4ea9520e8e","impliedFormat":99},{"version":"d1f66781913c6ee799968ac319e734b72276f84d9a2d66e03644dc7ff5a40e84","impliedFormat":99},{"version":"64278bb2caf569989d62cee6a4308921373c480456f29112c96d3c50a5bda9ac","impliedFormat":99},{"version":"775221c96967c037eec06af6cff56b9faa6e56824616e961ad7e58785e336c33","signature":"4090064e54ce7bc9d47e812ebe722628f26b588f28c50dfaced3ca8a7b84c314","impliedFormat":99},{"version":"d02ee11c0568b99abb0d159dfa524bb12d04a330b6f3fc321847bc2694d8cc6c","signature":"86eb0668b4e2f141f91954c304ae8f18c0cff9e46572f5217554c821f9ebdac2","impliedFormat":99},{"version":"784c50f7a867462ade71da048d901de5de02b05ed4c3cfb32bed97f40738fb7b","signature":"4588eb0206a6f4218c8fc0806213942643235c1ac9aa9c66886f5f410cd23533","impliedFormat":99},{"version":"c2ef34890e9c0f2660c785aef77542ff146a33613fa6d752dc75c38b9f0a2422","signature":"eebd41958eb76af8cf8dd8c6b2e5e38df6dd87b6676c1b8f01f82724978d15ae","impliedFormat":99},{"version":"6c10ab73c047fc5f162319394e800aea7aa86c04e6870486120ffff5404a0425","signature":"2335b112e7c91840892adaf0cb83cc214a9026fc8360f04beb5db91a5ad86432","impliedFormat":99},{"version":"4cbaee962a2d8f4b44087135be98352b3ac76a0e22206bf21407d8566d377565","signature":"1a8af07153e4b75c161abf00d8f8b0f6b5618d47a70546ed54dc5a715d8b97bd","impliedFormat":99},{"version":"cae9961cd3600623ca11fa8e9301c64b435d420cf2c166c7d5e6edeb17cd1ca2","signature":"fafaa10a87364f26af7154fce3feadbc8286be0367122bde5dc39f28d0210b85","impliedFormat":99},{"version":"f34e3f0b8389a225206113636f06da4b34038941fc4acdfe53ea9f27c2ba55db","signature":"468f4b9eca088cd9aeb3a837f1b9a4b837989822be5a25a162ec975250ce9be5","impliedFormat":99},{"version":"673501e08b4fd86264a278027500716a0e713703a6699ff4c42564a613590429","signature":"ee51916ec93c1a525ea6dd4ac5136b5ba49ca163d409029e6cf6d3924281ff93","impliedFormat":99},{"version":"a8266a4c66fbdf51bdd088034033965f6af2541eb142a7f5dbc652e4a9485ab5","signature":"d8c3c0e9f802fa7a1554560586f2fde991c879763a66873e7e3886b2a1b106f1","impliedFormat":99},{"version":"b85bfdb59eb863823621217c0b414ed20775c4b19368c084d55df69c009b0880","signature":"21129024d14cf5175cb95c38e97ab4be1d407b4d699df1a685b32f220d29a822","impliedFormat":99},{"version":"384adbeac6df582fd1650085fc377bcdff96f6318cf5eba9bddcce1898c22847","signature":"18e0744f2ce8fda34cff721a29fc2e072223f13b1223d118ac0bdeeebf2df028","impliedFormat":99},{"version":"28c2df00fbb0c36403136bcb1f02bf730be49f13e74ec5f26e2d38993fee41a9","signature":"adeca821f0d58d2369b6b8f67bb701427fad708a0998c4fd4e3fa465c14563e1","impliedFormat":99},{"version":"74f5afa960a6068925c4093397094538d2dee2c0521e70d3d1bf4739fbb07cba","signature":"49b9f935a1659174924a00231b3b807bf7b1c4f9536af910c2afa3867bf4bffa","impliedFormat":99},{"version":"d82e48ad179c16e84117f54b3add5ae774e2f3b4fb7df323123d178b9b934f5d","impliedFormat":99},{"version":"02bb806e87d2b28c3eb7c0d9b8cdb487adafa6448b37fa4bbd46ef06013e77e9","signature":"d853d819bb9a26a4e1e9a022778c11fca78b83911b443830e43520f9deb0f898","impliedFormat":99},{"version":"f0a1f078951c6d42f57ffd3ddcd7391b50db6c6a75fdc9b0cb2c7452a8edd741","signature":"8e6bbdb52892b266ebc1a1c0166b3ca3027892d4f05a9cb3757a0c6e3f0e0c75","impliedFormat":99},{"version":"4123d883e24a78622e784874f4e1d6ecd285b7edcfe61abcee000ab7e0c31adc","impliedFormat":99},{"version":"87c17407c97da88d63af6895d9707cbcb8c0245da0bea3dae27e2ba5af4a3551","impliedFormat":99},{"version":"1071adc82bcf141084283e82d163d7b21dc286a8162f3f22320debf249304957","impliedFormat":99},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"808069bba06b6768b62fd22429b53362e7af342da4a236ed2d2e1c89fcca3b4a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true,"impliedFormat":1},{"version":"f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fa06ada475b910e2106c98c68b10483dc8811d0c14a8a8dd36efb2672485b29","impliedFormat":1},{"version":"33e5e9aba62c3193d10d1d33ae1fa75c46a1171cf76fef750777377d53b0303f","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"6a0cd27e5dc2cfbe039e731cf879d12b0e2dded06d1b1dedad07f7712de0d7f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f5c844119c43e51ce777c509267f14d6aaf31eafb2c2b002ca35584cd13b29","impliedFormat":1},{"version":"e60477649d6ad21542bd2dc7e3d9ff6853d0797ba9f689ba2f6653818999c264","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4c829ab315f57c5442c6667b53769975acbf92003a66aef19bce151987675bd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"b2ade7657e2db96d18315694789eff2ddd3d8aea7215b181f8a0b303277cc579","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"4d631b81fa2f07a0e63a9a143d6a82c25c5f051298651a9b69176ba28930756d","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"41670ee38943d9cbb4924e436f56fc19ee94232bc96108562de1a734af20dc2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c906fb15bd2aabc9ed1e3f44eb6a8661199d6c320b3aa196b826121552cb3695","impliedFormat":1},{"version":"22295e8103f1d6d8ea4b5d6211e43421fe4564e34d0dd8e09e520e452d89e659","impliedFormat":1},{"version":"58647d85d0f722a1ce9de50955df60a7489f0593bf1a7015521efe901c06d770","impliedFormat":1},{"version":"6b4e081d55ac24fc8a4631d5dd77fe249fa25900abd7d046abb87d90e3b45645","impliedFormat":1},{"version":"a10f0e1854f3316d7ee437b79649e5a6ae3ae14ffe6322b02d4987071a95362e","impliedFormat":1},{"version":"e208f73ef6a980104304b0d2ca5f6bf1b85de6009d2c7e404028b875020fa8f2","impliedFormat":1},{"version":"d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc","impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6f137d651076822d4fe884287e68fd61785a0d3d1fdb250a5059b691fa897db","impliedFormat":1},{"version":"24826ed94a78d5c64bd857570fdbd96229ad41b5cb654c08d75a9845e3ab7dde","impliedFormat":1},{"version":"8b479a130ccb62e98f11f136d3ac80f2984fdc07616516d29881f3061f2dd472","impliedFormat":1},{"version":"928af3d90454bf656a52a48679f199f64c1435247d6189d1caf4c68f2eaf921f","affectsGlobalScope":true,"impliedFormat":1},{"version":"bceb58df66ab8fb00170df20cd813978c5ab84be1d285710c4eb005d8e9d8efb","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"a3fc63c0d7b031693f665f5494412ba4b551fe644ededccc0ab5922401079c95","impliedFormat":1},{"version":"80523c00b8544a2000ae0143e4a90a00b47f99823eb7926c1e03c494216fc363","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"746911b62b329587939560deb5c036aca48aece03147b021fa680223255d5183","affectsGlobalScope":true,"impliedFormat":1},{"version":"18fd40412d102c5564136f29735e5d1c3b455b8a37f920da79561f1fde068208","impliedFormat":1},{"version":"c8d3e5a18ba35629954e48c4cc8f11dc88224650067a172685c736b27a34a4dc","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"2b55d426ff2b9087485e52ac4bc7cfafe1dc420fc76dad926cd46526567c501a","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"5b7aa3c4c1a5d81b411e8cb302b45507fea9358d3569196b27eb1a27ae3a90ef","affectsGlobalScope":true,"impliedFormat":1},{"version":"5987a903da92c7462e0b35704ce7da94d7fdc4b89a984871c0e2b87a8aae9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea08a0345023ade2b47fbff5a76d0d0ed8bff10bc9d22b83f40858a8e941501c","impliedFormat":1},{"version":"47613031a5a31510831304405af561b0ffaedb734437c595256bb61a90f9311b","impliedFormat":1},{"version":"ae062ce7d9510060c5d7e7952ae379224fb3f8f2dd74e88959878af2057c143b","impliedFormat":1},{"version":"8a1a0d0a4a06a8d278947fcb66bf684f117bf147f89b06e50662d79a53be3e9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"358765d5ea8afd285d4fd1532e78b88273f18cb3f87403a9b16fef61ac9fdcfe","impliedFormat":1},{"version":"9f55299850d4f0921e79b6bf344b47c420ce0f507b9dcf593e532b09ea7eeea1","impliedFormat":1},{"version":"f60e3e3060207ac982da13363181fd7ee4beecc19a7c569f0d6bb034331066c2","impliedFormat":1},{"version":"17230b34bb564a3a2e36f9d3985372ccab4ad1722df2c43f7c5c2b553f68e5db","impliedFormat":1},{"version":"6e5c9272f6b3783be7bdddaf207cccdb8e033be3d14c5beacc03ae9d27d50929","impliedFormat":1},{"version":"21ac4cf3f8d8c6e1201cb31f600be708c9a37867fc5c73b7ccf80560fae591c8","impliedFormat":1},{"version":"0dfe35191a04e8f9dc7caeb9f52f2ee07402736563d12cbccd15fb5f31ac877f","impliedFormat":1},{"version":"798367363a3274220cbed839b883fe2f52ba7197b25e8cb2ac59c1e1fd8af6b7","impliedFormat":1},{"version":"2636a309ed87d6876728d9aca846a76b372cf2a21a4fdf9940a82a2dd86687d0","impliedFormat":1},{"version":"5aea76ab98173f2c230b1f78dc010da403da622c105c468ace9fe24e3b77883c","impliedFormat":99},{"version":"41396053a44a8ed5ebc1df3f88535b72a5471e2ebd05f0a4a23a6d38a666213c","signature":"9cad16d3fbadc6eb3f6dd5173f8c58dd5960e97cb83cd4a09b67f63d55b12c77","impliedFormat":99},{"version":"36395670627d3b6b634b4f91ed4a0e4e365da4b9fffc7133d4f1d149b57c9d7b","signature":"0c244fdc5805aa326c1bc991702b725a396da5e78b99c9654b6e2bddf5b1a2c7","impliedFormat":99},{"version":"3c524cebdae9054fa71c261cab5f229fa50b3bf8609f74e9f389fa36bf39cd01","signature":"65eb55592cf837f5267a13fef02de9c67c3c039a1614efc510a81cd65d77d120","impliedFormat":99},{"version":"c51fa06c0ba7c507bf9d1414b81fdf86c2e8fb67112da73a29bb090e2cdf0b58","signature":"d2fb23c982ed49d6f64a254a4d8a64c6a6826fe85364c96d56be6590640e5d26","impliedFormat":99},{"version":"13c60b01b485de139028e712caf9d380b2414362b2f46f50d953633ebef8bfbf","signature":"c87c0b20d34517293d231e6b9e8349164448df266d38ec4e8da138244495addd","impliedFormat":99},{"version":"0fcfa4150e13d55a275e4c2d2acd5179ab6380b306e1c0d4b28d7491adde682b","signature":"cb35444aaf5bb7d5d20114010095843516048c967a39626c05b78e7ae1c0e670","impliedFormat":99},{"version":"fca9e5739ce35a7672510c94b7643a2d8b3b99c0115c1cb6d4fc3959d6588fbc","impliedFormat":99},{"version":"c1a2e05eb6d7ca8d7e4a7f4c93ccf0c2857e842a64c98eaee4d85841ee9855e6","impliedFormat":1},{"version":"835fb2909ce458740fb4a49fc61709896c6864f5ce3db7f0a88f06c720d74d02","impliedFormat":1},{"version":"6e5857f38aa297a859cab4ec891408659218a5a2610cd317b6dcbef9979459cc","impliedFormat":1},{"version":"ead8e39c2e11891f286b06ae2aa71f208b1802661fcdb2425cffa4f494a68854","impliedFormat":1},{"version":"82919acbb38870fcf5786ec1292f0f5afe490f9b3060123e48675831bd947192","impliedFormat":1},{"version":"e222701788ec77bd57c28facbbd142eadf5c749a74d586bc2f317db7e33544b1","impliedFormat":1},{"version":"09154713fae0ed7befacdad783e5bd1970c06fc41a5f866f7f933b96312ce764","impliedFormat":1},{"version":"8d67b13da77316a8a2fabc21d340866ddf8a4b99e76a6c951cc45189142df652","impliedFormat":1},{"version":"a91c8d28d10fee7fe717ddf3743f287b68770c813c98f796b6e38d5d164bd459","impliedFormat":1},{"version":"68add36d9632bc096d7245d24d6b0b8ad5f125183016102a3dad4c9c2438ccb0","impliedFormat":1},{"version":"3a819c2928ee06bbcc84e2797fd3558ae2ebb7e0ed8d87f71732fb2e2acc87b4","impliedFormat":1},{"version":"f6f827cd43e92685f194002d6b52a9408309cda1cec46fb7ca8489a95cbd2fd4","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"a270a1a893d1aee5a3c1c8c276cd2778aa970a2741ee2ccf29cc3210d7da80f5","impliedFormat":1},{"version":"add0ce7b77ba5b308492fa68f77f24d1ed1d9148534bdf05ac17c30763fc1a79","impliedFormat":1},{"version":"8926594ee895917e90701d8cbb5fdf77fc238b266ac540f929c7253f8ad6233d","impliedFormat":1},{"version":"2f67911e4bf4e0717dc2ded248ce2d5e4398d945ee13889a6852c1233ea41508","impliedFormat":1},{"version":"d8430c275b0f59417ea8e173cfb888a4477b430ec35b595bf734f3ec7a7d729f","impliedFormat":1},{"version":"69364df1c776372d7df1fb46a6cb3a6bf7f55e700f533a104e3f9d70a32bec18","impliedFormat":1},{"version":"6042774c61ece4ba77b3bf375f15942eb054675b7957882a00c22c0e4fe5865c","impliedFormat":1},{"version":"5a3bd57ed7a9d9afef74c75f77fce79ba3c786401af9810cdf45907c4e93f30e","impliedFormat":1},{"version":"ed8763205f02fb65e84eff7432155258df7f93b7d938f01785cb447d043d53f3","impliedFormat":1},{"version":"30db853bb2e60170ba11e39ab48bacecb32d06d4def89eedf17e58ebab762a65","impliedFormat":1},{"version":"e27451b24234dfed45f6cf22112a04955183a99c42a2691fb4936d63cfe42761","impliedFormat":1},{"version":"2316301dd223d31962d917999acf8e543e0119c5d24ec984c9f22cb23247160c","impliedFormat":1},{"version":"58d65a2803c3b6629b0e18c8bf1bc883a686fcf0333230dd0151ab6e85b74307","impliedFormat":1},{"version":"e818471014c77c103330aee11f00a7a00b37b35500b53ea6f337aefacd6174c9","impliedFormat":1},{"version":"d4a5b1d2ff02c37643e18db302488cd64c342b00e2786e65caac4e12bda9219b","impliedFormat":1},{"version":"29f823cbe0166e10e7176a94afe609a24b9e5af3858628c541ff8ce1727023cd","impliedFormat":1},{"version":"76c53c72e5a5edf8c7259cc4955e2781d374da1a6cb1723861378196afa8cbd2","signature":"23ae8b371724f78e7add3551e157b2215f9ffdfeaecdde3622bfeb680191a47c","impliedFormat":99},{"version":"27efeca7be82c3dbaece4c17ca70d12d4d8f1bc2e3424d857808f89213925cfe","signature":"a17b18de79e2840bf7fe9ef0c6160b6c346b99c2e3d32821228f5ee38cb33997","impliedFormat":99},{"version":"015b7198df0f1c30d1817b4ab910af085e320636396d2dc84bca18fbc540928e","signature":"3bfc1d8725652d4939caf32096eb63dfd2758cab52f98fd8ea94b069cbf6afa9","impliedFormat":99}],"root":[[71,87],[134,153],[266,272],[350,352]],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"module":199,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noUncheckedIndexedAccess":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":10,"tsBuildInfoFile":"./.tsbuildinfo","useUnknownInCatchVariables":true,"verbatimModuleSyntax":true},"referencedMap":[[204,1],[205,1],[206,2],[159,3],[207,4],[208,5],[209,6],[154,7],[157,8],[155,7],[156,7],[210,9],[211,10],[212,11],[213,12],[214,13],[215,14],[216,14],[217,15],[218,16],[219,17],[220,18],[160,7],[158,7],[221,19],[222,20],[223,21],[257,22],[224,23],[225,7],[226,24],[227,25],[228,26],[229,27],[230,28],[231,29],[232,30],[233,31],[234,32],[235,32],[236,33],[237,7],[238,34],[239,35],[241,36],[240,37],[242,38],[243,39],[244,40],[245,41],[246,42],[247,43],[248,44],[249,45],[250,46],[251,47],[252,48],[253,49],[254,50],[161,7],[162,7],[163,7],[201,51],[202,7],[203,7],[255,52],[256,53],[265,54],[264,55],[263,54],[262,56],[259,57],[261,58],[260,7],[258,7],[69,7],[70,7],[13,7],[12,7],[2,7],[14,7],[15,7],[16,7],[17,7],[18,7],[19,7],[20,7],[21,7],[3,7],[22,7],[23,7],[4,7],[24,7],[28,7],[25,7],[26,7],[27,7],[29,7],[30,7],[31,7],[5,7],[32,7],[33,7],[34,7],[35,7],[6,7],[39,7],[36,7],[37,7],[38,7],[40,7],[7,7],[41,7],[46,7],[47,7],[42,7],[43,7],[44,7],[45,7],[8,7],[51,7],[48,7],[49,7],[50,7],[52,7],[9,7],[53,7],[54,7],[55,7],[57,7],[56,7],[58,7],[59,7],[10,7],[60,7],[61,7],[62,7],[11,7],[63,7],[64,7],[65,7],[66,7],[67,7],[1,7],[68,7],[179,59],[189,60],[178,59],[199,61],[170,62],[169,63],[198,57],[192,64],[197,65],[172,66],[186,67],[171,68],[195,69],[167,70],[166,57],[196,71],[168,72],[173,73],[174,7],[177,73],[164,7],[200,74],[190,75],[181,76],[182,77],[184,78],[180,79],[183,80],[193,57],[175,81],[176,82],[185,83],[165,84],[188,75],[187,73],[191,7],[194,85],[349,86],[343,87],[347,88],[344,88],[340,87],[348,89],[345,90],[346,88],[341,91],[342,92],[336,93],[280,94],[282,95],[335,7],[281,96],[339,97],[338,98],[337,99],[273,7],[283,94],[284,7],[275,100],[279,101],[274,7],[276,102],[277,103],[278,7],[285,104],[286,104],[287,104],[288,104],[289,104],[290,104],[291,104],[292,104],[293,104],[294,104],[295,104],[296,104],[297,104],[299,104],[298,104],[300,104],[301,104],[302,104],[303,104],[334,105],[304,104],[305,104],[306,104],[307,104],[308,104],[309,104],[310,104],[311,104],[312,104],[313,104],[314,104],[315,104],[316,104],[318,104],[317,104],[319,104],[320,104],[321,104],[322,104],[323,104],[324,104],[325,104],[326,104],[327,104],[328,104],[329,104],[330,104],[333,104],[331,104],[332,104],[88,7],[89,106],[91,7],[93,107],[92,108],[90,7],[96,109],[94,106],[97,110],[95,7],[98,111],[127,112],[131,112],[129,112],[133,113],[130,112],[126,112],[124,7],[123,7],[128,112],[132,114],[125,112],[103,115],[99,7],[121,116],[101,117],[102,118],[100,119],[122,120],[120,121],[119,122],[113,123],[105,124],[104,7],[106,124],[107,124],[108,124],[115,125],[109,7],[110,126],[116,127],[118,128],[111,7],[117,127],[114,123],[112,125],[135,7],[87,129],[136,130],[137,131],[71,7],[72,7],[73,132],[74,133],[75,134],[76,7],[79,135],[77,136],[78,137],[144,138],[152,139],[134,138],[153,140],[272,141],[271,142],[270,143],[268,144],[269,145],[267,146],[266,147],[350,148],[352,149],[351,150],[81,7],[80,7],[82,151],[138,7],[139,152],[83,7],[84,7],[85,7],[86,153],[143,154],[140,155],[147,156],[145,157],[146,158],[148,159],[142,7],[149,160],[151,161],[141,162],[150,163]],"latestChangedDtsFile":"./unit-of-work/unit-of-work.d.ts","version":"5.9.3"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Canonical names for the audit and timestamp columns the toolkit manages.
|
|
3
|
+
* Referenced by `BaseWriteDao` (excluded-keys filtering, audit injection)
|
|
4
|
+
* and by `PgWriteDbAdapter` (timestamp SQL literals). Change these here
|
|
5
|
+
* if your schema uses different column names — callers derive their
|
|
6
|
+
* strings from this constant rather than hard-coding them.
|
|
7
|
+
*/
|
|
8
|
+
export declare const AUDIT_COLUMNS: {
|
|
9
|
+
readonly createdAt: "created_at";
|
|
10
|
+
readonly updatedAt: "updated_at";
|
|
11
|
+
readonly insertedBy: "inserted_by";
|
|
12
|
+
readonly updatedBy: "updated_by";
|
|
13
|
+
};
|
|
14
|
+
export type AuditColumn = (typeof AUDIT_COLUMNS)[keyof typeof AUDIT_COLUMNS];
|
|
15
|
+
/** Keys stripped from `insert` inputs — the DB generates these. */
|
|
16
|
+
export declare const INSERT_EXCLUDED_KEYS: ReadonlySet<string>;
|
|
17
|
+
/** Keys stripped from `update` SET clauses — immutable post-insert or DB-generated. */
|
|
18
|
+
export declare const UPDATE_EXCLUDED_KEYS: ReadonlySet<string>;
|
|
19
|
+
//# sourceMappingURL=audit-columns.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"audit-columns.d.ts","sourceRoot":"","sources":["../../src/dao/audit-columns.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,aAAa;;;;;CAKhB,CAAC;AAEX,MAAM,MAAM,WAAW,GAAG,CAAC,OAAO,aAAa,CAAC,CAAC,MAAM,OAAO,aAAa,CAAC,CAAC;AAE7E,mEAAmE;AACnE,eAAO,MAAM,oBAAoB,EAAE,WAAW,CAAC,MAAM,CAGnD,CAAC;AAEH,uFAAuF;AACvF,eAAO,MAAM,oBAAoB,EAAE,WAAW,CAAC,MAAM,CAKnD,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Canonical names for the audit and timestamp columns the toolkit manages.
|
|
3
|
+
* Referenced by `BaseWriteDao` (excluded-keys filtering, audit injection)
|
|
4
|
+
* and by `PgWriteDbAdapter` (timestamp SQL literals). Change these here
|
|
5
|
+
* if your schema uses different column names — callers derive their
|
|
6
|
+
* strings from this constant rather than hard-coding them.
|
|
7
|
+
*/
|
|
8
|
+
export const AUDIT_COLUMNS = {
|
|
9
|
+
createdAt: 'created_at',
|
|
10
|
+
updatedAt: 'updated_at',
|
|
11
|
+
insertedBy: 'inserted_by',
|
|
12
|
+
updatedBy: 'updated_by',
|
|
13
|
+
};
|
|
14
|
+
/** Keys stripped from `insert` inputs — the DB generates these. */
|
|
15
|
+
export const INSERT_EXCLUDED_KEYS = new Set([
|
|
16
|
+
AUDIT_COLUMNS.createdAt,
|
|
17
|
+
AUDIT_COLUMNS.updatedAt,
|
|
18
|
+
]);
|
|
19
|
+
/** Keys stripped from `update` SET clauses — immutable post-insert or DB-generated. */
|
|
20
|
+
export const UPDATE_EXCLUDED_KEYS = new Set([
|
|
21
|
+
'id',
|
|
22
|
+
AUDIT_COLUMNS.createdAt,
|
|
23
|
+
AUDIT_COLUMNS.updatedAt,
|
|
24
|
+
AUDIT_COLUMNS.insertedBy,
|
|
25
|
+
]);
|
|
26
|
+
//# sourceMappingURL=audit-columns.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"audit-columns.js","sourceRoot":"","sources":["../../src/dao/audit-columns.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG;IAC3B,SAAS,EAAE,YAAY;IACvB,SAAS,EAAE,YAAY;IACvB,UAAU,EAAE,aAAa;IACzB,SAAS,EAAE,YAAY;CACf,CAAC;AAIX,mEAAmE;AACnE,MAAM,CAAC,MAAM,oBAAoB,GAAwB,IAAI,GAAG,CAAC;IAC/D,aAAa,CAAC,SAAS;IACvB,aAAa,CAAC,SAAS;CACxB,CAAC,CAAC;AAEH,uFAAuF;AACvF,MAAM,CAAC,MAAM,oBAAoB,GAAwB,IAAI,GAAG,CAAS;IACvE,IAAI;IACJ,aAAa,CAAC,SAAS;IACvB,aAAa,CAAC,SAAS;IACvB,aAAa,CAAC,UAAU;CACzB,CAAC,CAAC"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import type { ReadDbAdapter } from '../db-adapter/read-db-adapter.interface.js';
|
|
2
|
+
import type { ColumnResolver } from '../query/column-resolver.interface.js';
|
|
3
|
+
import type { PaginationOptions } from '../query/list-query.type.js';
|
|
4
|
+
import type { PaginatedResult } from '../query/paginated-result.type.js';
|
|
5
|
+
import type { QueryProduct } from '../query/query-product.type.js';
|
|
6
|
+
import type { SqlQueryBuilder } from '../query/sql-query-builder.interface.js';
|
|
7
|
+
export type SqlQueryBuilderFactory = (columnResolver: ColumnResolver) => SqlQueryBuilder<unknown>;
|
|
8
|
+
export type BaseReadDaoOptions = {
|
|
9
|
+
readonly adapter: ReadDbAdapter;
|
|
10
|
+
readonly builderFactory: SqlQueryBuilderFactory;
|
|
11
|
+
readonly columnResolver?: ColumnResolver;
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* Read-side DAO. Reads raw rows via a `SqlQueryBuilder` and returns
|
|
15
|
+
* them to the caller. Never participates in write transactions — no
|
|
16
|
+
* `trx` parameter anywhere in its API.
|
|
17
|
+
*
|
|
18
|
+
* Subclass and add per-query methods; use `this.qb<T>()` to start a
|
|
19
|
+
* new builder, then hand the built `QueryProduct` to `findOne`,
|
|
20
|
+
* `findMany`, or `findPaginated`. A single subclass can expose any
|
|
21
|
+
* number of queries over any number of tables — read DAOs are
|
|
22
|
+
* projection-driven, not table-driven.
|
|
23
|
+
*/
|
|
24
|
+
export declare abstract class BaseReadDao {
|
|
25
|
+
protected readonly adapter: ReadDbAdapter;
|
|
26
|
+
protected readonly columnResolver: ColumnResolver;
|
|
27
|
+
private readonly builderFactory;
|
|
28
|
+
constructor(options: BaseReadDaoOptions);
|
|
29
|
+
/**
|
|
30
|
+
* Start a new query. Returns a fresh builder pre-bound to the DAO's
|
|
31
|
+
* `ColumnResolver`, so domain-keyed columns flow through to the
|
|
32
|
+
* emitted SQL automatically.
|
|
33
|
+
*/
|
|
34
|
+
protected qb<TRow>(): SqlQueryBuilder<TRow>;
|
|
35
|
+
/**
|
|
36
|
+
* Execute a built query and return at most one row.
|
|
37
|
+
*/
|
|
38
|
+
protected findOne<TRow>(query: QueryProduct): Promise<TRow | null>;
|
|
39
|
+
/**
|
|
40
|
+
* Execute a built query and return all rows.
|
|
41
|
+
*/
|
|
42
|
+
protected findMany<TRow>(query: QueryProduct): Promise<readonly TRow[]>;
|
|
43
|
+
/**
|
|
44
|
+
* Execute a paginated query. The `QueryProduct` must include a
|
|
45
|
+
* `countSql` (produced automatically by `SqlQueryBuilder.paginate`).
|
|
46
|
+
* Runs the data and count queries in parallel on the read pool.
|
|
47
|
+
*/
|
|
48
|
+
protected findPaginated<TRow>(query: QueryProduct, page: PaginationOptions): Promise<PaginatedResult<TRow>>;
|
|
49
|
+
}
|
|
50
|
+
//# sourceMappingURL=base-read.dao.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"base-read.dao.d.ts","sourceRoot":"","sources":["../../src/dao/base-read.dao.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,4CAA4C,CAAC;AAChF,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,uCAAuC,CAAC;AAE5E,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAC;AACrE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,mCAAmC,CAAC;AACzE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,gCAAgC,CAAC;AACnE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,yCAAyC,CAAC;AAE/E,MAAM,MAAM,sBAAsB,GAAG,CAAC,cAAc,EAAE,cAAc,KAAK,eAAe,CAAC,OAAO,CAAC,CAAC;AAElG,MAAM,MAAM,kBAAkB,GAAG;IAC/B,QAAQ,CAAC,OAAO,EAAE,aAAa,CAAC;IAChC,QAAQ,CAAC,cAAc,EAAE,sBAAsB,CAAC;IAChD,QAAQ,CAAC,cAAc,CAAC,EAAE,cAAc,CAAC;CAC1C,CAAC;AAEF;;;;;;;;;;GAUG;AACH,8BAAsB,WAAW;IAC/B,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,aAAa,CAAC;IAC1C,SAAS,CAAC,QAAQ,CAAC,cAAc,EAAE,cAAc,CAAC;IAClD,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAyB;gBAE5C,OAAO,EAAE,kBAAkB;IAMvC;;;;OAIG;IACH,SAAS,CAAC,EAAE,CAAC,IAAI,KAAK,eAAe,CAAC,IAAI,CAAC;IAI3C;;OAEG;cACa,OAAO,CAAC,IAAI,EAAE,KAAK,EAAE,YAAY,GAAG,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC;IAKxE;;OAEG;cACa,QAAQ,CAAC,IAAI,EAAE,KAAK,EAAE,YAAY,GAAG,OAAO,CAAC,SAAS,IAAI,EAAE,CAAC;IAI7E;;;;OAIG;cACa,aAAa,CAAC,IAAI,EAChC,KAAK,EAAE,YAAY,EACnB,IAAI,EAAE,iBAAiB,GACtB,OAAO,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC;CAkBlC"}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { DefaultColumnResolver } from '../query/default.resolver.js';
|
|
2
|
+
/**
|
|
3
|
+
* Read-side DAO. Reads raw rows via a `SqlQueryBuilder` and returns
|
|
4
|
+
* them to the caller. Never participates in write transactions — no
|
|
5
|
+
* `trx` parameter anywhere in its API.
|
|
6
|
+
*
|
|
7
|
+
* Subclass and add per-query methods; use `this.qb<T>()` to start a
|
|
8
|
+
* new builder, then hand the built `QueryProduct` to `findOne`,
|
|
9
|
+
* `findMany`, or `findPaginated`. A single subclass can expose any
|
|
10
|
+
* number of queries over any number of tables — read DAOs are
|
|
11
|
+
* projection-driven, not table-driven.
|
|
12
|
+
*/
|
|
13
|
+
export class BaseReadDao {
|
|
14
|
+
adapter;
|
|
15
|
+
columnResolver;
|
|
16
|
+
builderFactory;
|
|
17
|
+
constructor(options) {
|
|
18
|
+
this.adapter = options.adapter;
|
|
19
|
+
this.builderFactory = options.builderFactory;
|
|
20
|
+
this.columnResolver = options.columnResolver ?? new DefaultColumnResolver();
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Start a new query. Returns a fresh builder pre-bound to the DAO's
|
|
24
|
+
* `ColumnResolver`, so domain-keyed columns flow through to the
|
|
25
|
+
* emitted SQL automatically.
|
|
26
|
+
*/
|
|
27
|
+
qb() {
|
|
28
|
+
return this.builderFactory(this.columnResolver);
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Execute a built query and return at most one row.
|
|
32
|
+
*/
|
|
33
|
+
async findOne(query) {
|
|
34
|
+
const rows = await this.adapter.raw(query.sql, query.params);
|
|
35
|
+
return rows[0] ?? null;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Execute a built query and return all rows.
|
|
39
|
+
*/
|
|
40
|
+
async findMany(query) {
|
|
41
|
+
return this.adapter.raw(query.sql, query.params);
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Execute a paginated query. The `QueryProduct` must include a
|
|
45
|
+
* `countSql` (produced automatically by `SqlQueryBuilder.paginate`).
|
|
46
|
+
* Runs the data and count queries in parallel on the read pool.
|
|
47
|
+
*/
|
|
48
|
+
async findPaginated(query, page) {
|
|
49
|
+
if (!query.countSql) {
|
|
50
|
+
throw new Error('findPaginated requires query.countSql; call .paginate(...) on the builder before .build()');
|
|
51
|
+
}
|
|
52
|
+
const [rows, countRows] = await Promise.all([
|
|
53
|
+
this.adapter.raw(query.sql, query.params),
|
|
54
|
+
this.adapter.raw(query.countSql, query.params),
|
|
55
|
+
]);
|
|
56
|
+
const total = Number(countRows[0]?.count ?? 0);
|
|
57
|
+
return {
|
|
58
|
+
rows,
|
|
59
|
+
total,
|
|
60
|
+
page: page.page,
|
|
61
|
+
pageSize: page.pageSize,
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
//# sourceMappingURL=base-read.dao.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"base-read.dao.js","sourceRoot":"","sources":["../../src/dao/base-read.dao.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,qBAAqB,EAAE,MAAM,8BAA8B,CAAC;AAcrE;;;;;;;;;;GAUG;AACH,MAAM,OAAgB,WAAW;IACZ,OAAO,CAAgB;IACvB,cAAc,CAAiB;IACjC,cAAc,CAAyB;IAExD,YAAY,OAA2B;QACrC,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;QAC/B,IAAI,CAAC,cAAc,GAAG,OAAO,CAAC,cAAc,CAAC;QAC7C,IAAI,CAAC,cAAc,GAAG,OAAO,CAAC,cAAc,IAAI,IAAI,qBAAqB,EAAE,CAAC;IAC9E,CAAC;IAED;;;;OAIG;IACO,EAAE;QACV,OAAO,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,cAAc,CAA0B,CAAC;IAC3E,CAAC;IAED;;OAEG;IACO,KAAK,CAAC,OAAO,CAAO,KAAmB;QAC/C,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC,GAAG,CAAO,KAAK,CAAC,GAAG,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;QACnE,OAAO,IAAI,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC;IACzB,CAAC;IAED;;OAEG;IACO,KAAK,CAAC,QAAQ,CAAO,KAAmB;QAChD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAO,KAAK,CAAC,GAAG,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACzD,CAAC;IAED;;;;OAIG;IACO,KAAK,CAAC,aAAa,CAC3B,KAAmB,EACnB,IAAuB;QAEvB,IAAI,CAAC,KAAK,CAAC,QAAQ,EAAE,CAAC;YACpB,MAAM,IAAI,KAAK,CACb,2FAA2F,CAC5F,CAAC;QACJ,CAAC;QACD,MAAM,CAAC,IAAI,EAAE,SAAS,CAAC,GAAG,MAAM,OAAO,CAAC,GAAG,CAAC;YAC1C,IAAI,CAAC,OAAO,CAAC,GAAG,CAAO,KAAK,CAAC,GAAG,EAAE,KAAK,CAAC,MAAM,CAAC;YAC/C,IAAI,CAAC,OAAO,CAAC,GAAG,CAA6B,KAAK,CAAC,QAAQ,EAAE,KAAK,CAAC,MAAM,CAAC;SAC3E,CAAC,CAAC;QACH,MAAM,KAAK,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,KAAK,IAAI,CAAC,CAAC,CAAC;QAC/C,OAAO;YACL,IAAI;YACJ,KAAK;YACL,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,QAAQ,EAAE,IAAI,CAAC,QAAQ;SACxB,CAAC;IACJ,CAAC;CACF"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import type { ExecutionContextProvider } from '@quilla-be-kit/execution-context';
|
|
2
|
+
import type { DatabaseTransaction } from '../database/database-transaction.interface.js';
|
|
3
|
+
import type { FilterQuery } from '../db-adapter/filter-query.type.js';
|
|
4
|
+
import type { WriteDbAdapter } from '../db-adapter/write-db-adapter.interface.js';
|
|
5
|
+
/**
|
|
6
|
+
* Write-side DAO. Orchestrates row writes with audit-field injection,
|
|
7
|
+
* excluded-keys filtering, and optimistic-lock enforcement. Delegates SQL
|
|
8
|
+
* generation and execution to `WriteDbAdapter`.
|
|
9
|
+
*
|
|
10
|
+
* `find*` — returns raw `TRow` (DB-level); the repository layer wraps
|
|
11
|
+
* these into `load*` for aggregate loading.
|
|
12
|
+
*
|
|
13
|
+
* Unlocked reads (`findOne` / `findMany` / `existsBy`) accept optional
|
|
14
|
+
* `trx` for pre-create uniqueness checks. Locked reads (`findOneForUpdate`
|
|
15
|
+
* / `findManyForUpdate`) require `trx` — they're for read-before-update.
|
|
16
|
+
*
|
|
17
|
+
* `updateMany` issues a single `UPDATE ... FROM (VALUES ...)` statement
|
|
18
|
+
* via the adapter — no per-row optimistic lock. Callers needing
|
|
19
|
+
* concurrency control should `findManyForUpdate` first; the row-level
|
|
20
|
+
* locks held inside `trx` serialize concurrent writers for the duration
|
|
21
|
+
* of the unit of work. `trx` is required.
|
|
22
|
+
*/
|
|
23
|
+
export declare abstract class BaseWriteDao<TRow extends {
|
|
24
|
+
id: string;
|
|
25
|
+
}> {
|
|
26
|
+
protected readonly adapter: WriteDbAdapter;
|
|
27
|
+
protected readonly contextProvider: ExecutionContextProvider;
|
|
28
|
+
protected abstract readonly tableName: string;
|
|
29
|
+
constructor(adapter: WriteDbAdapter, contextProvider: ExecutionContextProvider);
|
|
30
|
+
findOneById(id: string, trx?: DatabaseTransaction): Promise<TRow | null>;
|
|
31
|
+
findOne(where: FilterQuery<TRow>, trx?: DatabaseTransaction): Promise<TRow | null>;
|
|
32
|
+
findMany(where: FilterQuery<TRow>, trx?: DatabaseTransaction): Promise<readonly TRow[]>;
|
|
33
|
+
existsBy(where: FilterQuery<TRow>, trx?: DatabaseTransaction): Promise<boolean>;
|
|
34
|
+
findOneForUpdate(where: FilterQuery<TRow>, trx: DatabaseTransaction): Promise<TRow | null>;
|
|
35
|
+
findManyForUpdate(where: FilterQuery<TRow>, trx: DatabaseTransaction): Promise<readonly TRow[]>;
|
|
36
|
+
create(row: TRow, trx?: DatabaseTransaction): Promise<void>;
|
|
37
|
+
createMany(rows: readonly TRow[], trx?: DatabaseTransaction): Promise<void>;
|
|
38
|
+
update(row: TRow & {
|
|
39
|
+
updated_at?: Date;
|
|
40
|
+
}, trx?: DatabaseTransaction): Promise<void>;
|
|
41
|
+
updateMany(rows: readonly TRow[], trx: DatabaseTransaction): Promise<void>;
|
|
42
|
+
delete(id: string, trx?: DatabaseTransaction): Promise<void>;
|
|
43
|
+
deleteMany(ids: readonly string[], trx?: DatabaseTransaction): Promise<void>;
|
|
44
|
+
private prepareInsertRow;
|
|
45
|
+
private prepareUpdateRow;
|
|
46
|
+
private prepareUpdateRowWithId;
|
|
47
|
+
private stripKeys;
|
|
48
|
+
}
|
|
49
|
+
//# sourceMappingURL=base-write.dao.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"base-write.dao.d.ts","sourceRoot":"","sources":["../../src/dao/base-write.dao.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAC;AACzF,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,oCAAoC,CAAC;AACtE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6CAA6C,CAAC;AAIlF;;;;;;;;;;;;;;;;;GAiBG;AACH,8BAAsB,YAAY,CAAC,IAAI,SAAS;IAAE,EAAE,EAAE,MAAM,CAAA;CAAE;IAI1D,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,cAAc;IAC1C,SAAS,CAAC,QAAQ,CAAC,eAAe,EAAE,wBAAwB;IAJ9D,SAAS,CAAC,QAAQ,CAAC,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;gBAGzB,OAAO,EAAE,cAAc,EACvB,eAAe,EAAE,wBAAwB;IAGxD,WAAW,CAAC,EAAE,EAAE,MAAM,EAAE,GAAG,CAAC,EAAE,mBAAmB,GAAG,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC;IAYxE,OAAO,CAAC,KAAK,EAAE,WAAW,CAAC,IAAI,CAAC,EAAE,GAAG,CAAC,EAAE,mBAAmB,GAAG,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC;IAKlF,QAAQ,CAAC,KAAK,EAAE,WAAW,CAAC,IAAI,CAAC,EAAE,GAAG,CAAC,EAAE,mBAAmB,GAAG,OAAO,CAAC,SAAS,IAAI,EAAE,CAAC;IAIvF,QAAQ,CAAC,KAAK,EAAE,WAAW,CAAC,IAAI,CAAC,EAAE,GAAG,CAAC,EAAE,mBAAmB,GAAG,OAAO,CAAC,OAAO,CAAC;IAI/E,gBAAgB,CAAC,KAAK,EAAE,WAAW,CAAC,IAAI,CAAC,EAAE,GAAG,EAAE,mBAAmB,GAAG,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC;IAQ1F,iBAAiB,CACrB,KAAK,EAAE,WAAW,CAAC,IAAI,CAAC,EACxB,GAAG,EAAE,mBAAmB,GACvB,OAAO,CAAC,SAAS,IAAI,EAAE,CAAC;IAIrB,MAAM,CAAC,GAAG,EAAE,IAAI,EAAE,GAAG,CAAC,EAAE,mBAAmB,GAAG,OAAO,CAAC,IAAI,CAAC;IAQ3D,UAAU,CAAC,IAAI,EAAE,SAAS,IAAI,EAAE,EAAE,GAAG,CAAC,EAAE,mBAAmB,GAAG,OAAO,CAAC,IAAI,CAAC;IAO3E,MAAM,CAAC,GAAG,EAAE,IAAI,GAAG;QAAE,UAAU,CAAC,EAAE,IAAI,CAAA;KAAE,EAAE,GAAG,CAAC,EAAE,mBAAmB,GAAG,OAAO,CAAC,IAAI,CAAC;IAoBnF,UAAU,CAAC,IAAI,EAAE,SAAS,IAAI,EAAE,EAAE,GAAG,EAAE,mBAAmB,GAAG,OAAO,CAAC,IAAI,CAAC;IAO1E,MAAM,CAAC,EAAE,EAAE,MAAM,EAAE,GAAG,CAAC,EAAE,mBAAmB,GAAG,OAAO,CAAC,IAAI,CAAC;IAU5D,UAAU,CAAC,GAAG,EAAE,SAAS,MAAM,EAAE,EAAE,GAAG,CAAC,EAAE,mBAAmB,GAAG,OAAO,CAAC,IAAI,CAAC;IAWlF,OAAO,CAAC,gBAAgB;IAQxB,OAAO,CAAC,gBAAgB;IAOxB,OAAO,CAAC,sBAAsB;IAQ9B,OAAO,CAAC,SAAS;CASlB"}
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
import { OptimisticLockError } from '../errors/optimistic-lock.error.js';
|
|
2
|
+
import { AUDIT_COLUMNS, INSERT_EXCLUDED_KEYS, UPDATE_EXCLUDED_KEYS } from './audit-columns.js';
|
|
3
|
+
/**
|
|
4
|
+
* Write-side DAO. Orchestrates row writes with audit-field injection,
|
|
5
|
+
* excluded-keys filtering, and optimistic-lock enforcement. Delegates SQL
|
|
6
|
+
* generation and execution to `WriteDbAdapter`.
|
|
7
|
+
*
|
|
8
|
+
* `find*` — returns raw `TRow` (DB-level); the repository layer wraps
|
|
9
|
+
* these into `load*` for aggregate loading.
|
|
10
|
+
*
|
|
11
|
+
* Unlocked reads (`findOne` / `findMany` / `existsBy`) accept optional
|
|
12
|
+
* `trx` for pre-create uniqueness checks. Locked reads (`findOneForUpdate`
|
|
13
|
+
* / `findManyForUpdate`) require `trx` — they're for read-before-update.
|
|
14
|
+
*
|
|
15
|
+
* `updateMany` issues a single `UPDATE ... FROM (VALUES ...)` statement
|
|
16
|
+
* via the adapter — no per-row optimistic lock. Callers needing
|
|
17
|
+
* concurrency control should `findManyForUpdate` first; the row-level
|
|
18
|
+
* locks held inside `trx` serialize concurrent writers for the duration
|
|
19
|
+
* of the unit of work. `trx` is required.
|
|
20
|
+
*/
|
|
21
|
+
export class BaseWriteDao {
|
|
22
|
+
adapter;
|
|
23
|
+
contextProvider;
|
|
24
|
+
constructor(adapter, contextProvider) {
|
|
25
|
+
this.adapter = adapter;
|
|
26
|
+
this.contextProvider = contextProvider;
|
|
27
|
+
}
|
|
28
|
+
async findOneById(id, trx) {
|
|
29
|
+
const rows = await this.adapter.find({
|
|
30
|
+
table: this.tableName,
|
|
31
|
+
where: { id },
|
|
32
|
+
limit: 1,
|
|
33
|
+
}, trx);
|
|
34
|
+
return rows[0] ?? null;
|
|
35
|
+
}
|
|
36
|
+
async findOne(where, trx) {
|
|
37
|
+
const rows = await this.adapter.find({ table: this.tableName, where, limit: 1 }, trx);
|
|
38
|
+
return rows[0] ?? null;
|
|
39
|
+
}
|
|
40
|
+
async findMany(where, trx) {
|
|
41
|
+
return this.adapter.find({ table: this.tableName, where }, trx);
|
|
42
|
+
}
|
|
43
|
+
async existsBy(where, trx) {
|
|
44
|
+
return this.adapter.exists({ table: this.tableName, where }, trx);
|
|
45
|
+
}
|
|
46
|
+
async findOneForUpdate(where, trx) {
|
|
47
|
+
const rows = await this.adapter.findForUpdate({ table: this.tableName, where, limit: 1 }, trx);
|
|
48
|
+
return rows[0] ?? null;
|
|
49
|
+
}
|
|
50
|
+
async findManyForUpdate(where, trx) {
|
|
51
|
+
return this.adapter.findForUpdate({ table: this.tableName, where }, trx);
|
|
52
|
+
}
|
|
53
|
+
async create(row, trx) {
|
|
54
|
+
const userId = this.contextProvider.getContext().session?.userId;
|
|
55
|
+
await this.adapter.insert({ table: this.tableName, rows: [this.prepareInsertRow(row, userId)] }, trx);
|
|
56
|
+
}
|
|
57
|
+
async createMany(rows, trx) {
|
|
58
|
+
if (rows.length === 0)
|
|
59
|
+
return;
|
|
60
|
+
const userId = this.contextProvider.getContext().session?.userId;
|
|
61
|
+
const prepared = rows.map((row) => this.prepareInsertRow(row, userId));
|
|
62
|
+
await this.adapter.insert({ table: this.tableName, rows: prepared }, trx);
|
|
63
|
+
}
|
|
64
|
+
async update(row, trx) {
|
|
65
|
+
const { id, updated_at } = row;
|
|
66
|
+
const userId = this.contextProvider.getContext().session?.userId;
|
|
67
|
+
const result = await this.adapter.update({
|
|
68
|
+
table: this.tableName,
|
|
69
|
+
set: this.prepareUpdateRow(row, userId),
|
|
70
|
+
where: { id },
|
|
71
|
+
...(updated_at !== undefined
|
|
72
|
+
? { optimisticLock: { column: AUDIT_COLUMNS.updatedAt, expected: updated_at } }
|
|
73
|
+
: {}),
|
|
74
|
+
}, trx);
|
|
75
|
+
if (updated_at !== undefined && result.rowCount === 0) {
|
|
76
|
+
throw new OptimisticLockError({ entity: this.tableName, id });
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
async updateMany(rows, trx) {
|
|
80
|
+
if (rows.length === 0)
|
|
81
|
+
return;
|
|
82
|
+
const userId = this.contextProvider.getContext().session?.userId;
|
|
83
|
+
const prepared = rows.map((row) => this.prepareUpdateRowWithId(row, userId));
|
|
84
|
+
await this.adapter.updateMany({ table: this.tableName, rows: prepared }, trx);
|
|
85
|
+
}
|
|
86
|
+
async delete(id, trx) {
|
|
87
|
+
await this.adapter.delete({
|
|
88
|
+
table: this.tableName,
|
|
89
|
+
where: { id },
|
|
90
|
+
}, trx);
|
|
91
|
+
}
|
|
92
|
+
async deleteMany(ids, trx) {
|
|
93
|
+
if (ids.length === 0)
|
|
94
|
+
return;
|
|
95
|
+
await this.adapter.delete({
|
|
96
|
+
table: this.tableName,
|
|
97
|
+
where: { id: ids },
|
|
98
|
+
}, trx);
|
|
99
|
+
}
|
|
100
|
+
prepareInsertRow(row, userId) {
|
|
101
|
+
return {
|
|
102
|
+
...this.stripKeys(row, INSERT_EXCLUDED_KEYS),
|
|
103
|
+
[AUDIT_COLUMNS.insertedBy]: userId,
|
|
104
|
+
[AUDIT_COLUMNS.updatedBy]: userId,
|
|
105
|
+
};
|
|
106
|
+
}
|
|
107
|
+
prepareUpdateRow(row, userId) {
|
|
108
|
+
return {
|
|
109
|
+
...this.stripKeys(row, UPDATE_EXCLUDED_KEYS),
|
|
110
|
+
[AUDIT_COLUMNS.updatedBy]: userId,
|
|
111
|
+
};
|
|
112
|
+
}
|
|
113
|
+
prepareUpdateRowWithId(row, userId) {
|
|
114
|
+
return {
|
|
115
|
+
id: row.id,
|
|
116
|
+
...this.stripKeys(row, UPDATE_EXCLUDED_KEYS),
|
|
117
|
+
[AUDIT_COLUMNS.updatedBy]: userId,
|
|
118
|
+
};
|
|
119
|
+
}
|
|
120
|
+
stripKeys(row, excluded) {
|
|
121
|
+
const out = {};
|
|
122
|
+
for (const [key, value] of Object.entries(row)) {
|
|
123
|
+
if (!excluded.has(key)) {
|
|
124
|
+
out[key] = value;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
return out;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
//# sourceMappingURL=base-write.dao.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"base-write.dao.js","sourceRoot":"","sources":["../../src/dao/base-write.dao.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,mBAAmB,EAAE,MAAM,oCAAoC,CAAC;AACzE,OAAO,EAAE,aAAa,EAAE,oBAAoB,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;AAE/F;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAM,OAAgB,YAAY;IAIX;IACA;IAFrB,YACqB,OAAuB,EACvB,eAAyC;QADzC,YAAO,GAAP,OAAO,CAAgB;QACvB,oBAAe,GAAf,eAAe,CAA0B;IAC3D,CAAC;IAEJ,KAAK,CAAC,WAAW,CAAC,EAAU,EAAE,GAAyB;QACrD,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC,IAAI,CAClC;YACE,KAAK,EAAE,IAAI,CAAC,SAAS;YACrB,KAAK,EAAE,EAAE,EAAE,EAAuB;YAClC,KAAK,EAAE,CAAC;SACT,EACD,GAAG,CACJ,CAAC;QACF,OAAO,IAAI,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC;IACzB,CAAC;IAED,KAAK,CAAC,OAAO,CAAC,KAAwB,EAAE,GAAyB;QAC/D,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC,IAAI,CAAO,EAAE,KAAK,EAAE,IAAI,CAAC,SAAS,EAAE,KAAK,EAAE,KAAK,EAAE,CAAC,EAAE,EAAE,GAAG,CAAC,CAAC;QAC5F,OAAO,IAAI,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC;IACzB,CAAC;IAED,KAAK,CAAC,QAAQ,CAAC,KAAwB,EAAE,GAAyB;QAChE,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAO,EAAE,KAAK,EAAE,IAAI,CAAC,SAAS,EAAE,KAAK,EAAE,EAAE,GAAG,CAAC,CAAC;IACxE,CAAC;IAED,KAAK,CAAC,QAAQ,CAAC,KAAwB,EAAE,GAAyB;QAChE,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAO,EAAE,KAAK,EAAE,IAAI,CAAC,SAAS,EAAE,KAAK,EAAE,EAAE,GAAG,CAAC,CAAC;IAC1E,CAAC;IAED,KAAK,CAAC,gBAAgB,CAAC,KAAwB,EAAE,GAAwB;QACvE,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC,aAAa,CAC3C,EAAE,KAAK,EAAE,IAAI,CAAC,SAAS,EAAE,KAAK,EAAE,KAAK,EAAE,CAAC,EAAE,EAC1C,GAAG,CACJ,CAAC;QACF,OAAO,IAAI,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC;IACzB,CAAC;IAED,KAAK,CAAC,iBAAiB,CACrB,KAAwB,EACxB,GAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,aAAa,CAAO,EAAE,KAAK,EAAE,IAAI,CAAC,SAAS,EAAE,KAAK,EAAE,EAAE,GAAG,CAAC,CAAC;IACjF,CAAC;IAED,KAAK,CAAC,MAAM,CAAC,GAAS,EAAE,GAAyB;QAC/C,MAAM,MAAM,GAAG,IAAI,CAAC,eAAe,CAAC,UAAU,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC;QACjE,MAAM,IAAI,CAAC,OAAO,CAAC,MAAM,CACvB,EAAE,KAAK,EAAE,IAAI,CAAC,SAAS,EAAE,IAAI,EAAE,CAAC,IAAI,CAAC,gBAAgB,CAAC,GAAG,EAAE,MAAM,CAAC,CAAC,EAAE,EACrE,GAAG,CACJ,CAAC;IACJ,CAAC;IAED,KAAK,CAAC,UAAU,CAAC,IAAqB,EAAE,GAAyB;QAC/D,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC;YAAE,OAAO;QAC9B,MAAM,MAAM,GAAG,IAAI,CAAC,eAAe,CAAC,UAAU,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC;QACjE,MAAM,QAAQ,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,IAAI,CAAC,gBAAgB,CAAC,GAAG,EAAE,MAAM,CAAC,CAAC,CAAC;QACvE,MAAM,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,KAAK,EAAE,IAAI,CAAC,SAAS,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,GAAG,CAAC,CAAC;IAC5E,CAAC;IAED,KAAK,CAAC,MAAM,CAAC,GAAiC,EAAE,GAAyB;QACvE,MAAM,EAAE,EAAE,EAAE,UAAU,EAAE,GAAG,GAAG,CAAC;QAC/B,MAAM,MAAM,GAAG,IAAI,CAAC,eAAe,CAAC,UAAU,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC;QACjE,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC,MAAM,CACtC;YACE,KAAK,EAAE,IAAI,CAAC,SAAS;YACrB,GAAG,EAAE,IAAI,CAAC,gBAAgB,CAAC,GAAG,EAAE,MAAM,CAAC;YACvC,KAAK,EAAE,EAAE,EAAE,EAAuB;YAClC,GAAG,CAAC,UAAU,KAAK,SAAS;gBAC1B,CAAC,CAAC,EAAE,cAAc,EAAE,EAAE,MAAM,EAAE,aAAa,CAAC,SAAS,EAAE,QAAQ,EAAE,UAAU,EAAE,EAAE;gBAC/E,CAAC,CAAC,EAAE,CAAC;SACR,EACD,GAAG,CACJ,CAAC;QAEF,IAAI,UAAU,KAAK,SAAS,IAAI,MAAM,CAAC,QAAQ,KAAK,CAAC,EAAE,CAAC;YACtD,MAAM,IAAI,mBAAmB,CAAC,EAAE,MAAM,EAAE,IAAI,CAAC,SAAS,EAAE,EAAE,EAAE,CAAC,CAAC;QAChE,CAAC;IACH,CAAC;IAED,KAAK,CAAC,UAAU,CAAC,IAAqB,EAAE,GAAwB;QAC9D,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC;YAAE,OAAO;QAC9B,MAAM,MAAM,GAAG,IAAI,CAAC,eAAe,CAAC,UAAU,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC;QACjE,MAAM,QAAQ,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,IAAI,CAAC,sBAAsB,CAAC,GAAG,EAAE,MAAM,CAAC,CAAC,CAAC;QAC7E,MAAM,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,EAAE,KAAK,EAAE,IAAI,CAAC,SAAS,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,GAAG,CAAC,CAAC;IAChF,CAAC;IAED,KAAK,CAAC,MAAM,CAAC,EAAU,EAAE,GAAyB;QAChD,MAAM,IAAI,CAAC,OAAO,CAAC,MAAM,CACvB;YACE,KAAK,EAAE,IAAI,CAAC,SAAS;YACrB,KAAK,EAAE,EAAE,EAAE,EAAuB;SACnC,EACD,GAAG,CACJ,CAAC;IACJ,CAAC;IAED,KAAK,CAAC,UAAU,CAAC,GAAsB,EAAE,GAAyB;QAChE,IAAI,GAAG,CAAC,MAAM,KAAK,CAAC;YAAE,OAAO;QAC7B,MAAM,IAAI,CAAC,OAAO,CAAC,MAAM,CACvB;YACE,KAAK,EAAE,IAAI,CAAC,SAAS;YACrB,KAAK,EAAE,EAAE,EAAE,EAAE,GAAG,EAAuB;SACxC,EACD,GAAG,CACJ,CAAC;IACJ,CAAC;IAEO,gBAAgB,CAAC,GAAS,EAAE,MAA0B;QAC5D,OAAO;YACL,GAAG,IAAI,CAAC,SAAS,CAAC,GAAG,EAAE,oBAAoB,CAAC;YAC5C,CAAC,aAAa,CAAC,UAAU,CAAC,EAAE,MAAM;YAClC,CAAC,aAAa,CAAC,SAAS,CAAC,EAAE,MAAM;SAClC,CAAC;IACJ,CAAC;IAEO,gBAAgB,CAAC,GAAS,EAAE,MAA0B;QAC5D,OAAO;YACL,GAAG,IAAI,CAAC,SAAS,CAAC,GAAG,EAAE,oBAAoB,CAAC;YAC5C,CAAC,aAAa,CAAC,SAAS,CAAC,EAAE,MAAM;SAClC,CAAC;IACJ,CAAC;IAEO,sBAAsB,CAAC,GAAS,EAAE,MAA0B;QAClE,OAAO;YACL,EAAE,EAAE,GAAG,CAAC,EAAE;YACV,GAAG,IAAI,CAAC,SAAS,CAAC,GAAG,EAAE,oBAAoB,CAAC;YAC5C,CAAC,aAAa,CAAC,SAAS,CAAC,EAAE,MAAM;SAClC,CAAC;IACJ,CAAC;IAEO,SAAS,CAAC,GAAS,EAAE,QAA6B;QACxD,MAAM,GAAG,GAA4B,EAAE,CAAC;QACxC,KAAK,MAAM,CAAC,GAAG,EAAE,KAAK,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,GAA8B,CAAC,EAAE,CAAC;YAC1E,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC;gBACvB,GAAG,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC;YACnB,CAAC;QACH,CAAC;QACD,OAAO,GAAG,CAAC;IACb,CAAC;CACF"}
|