@contember/engine-system-api 2.1.0-alpha.30 → 2.1.0-alpha.35
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/graphql.codegen.yml +1 -1
- package/package.json +25 -20
- package/src/SystemContainer.ts +61 -56
- package/src/bin/runMigrations.ts +1 -5
- package/src/index.ts +5 -5
- package/src/migrations/2018-08-04-102200-init.ts +1 -1
- package/src/migrations/2018-08-05-130501-trigger-event-function.ts +1 -1
- package/src/migrations/2019-01-14-143432-event-trx-id.ts +1 -1
- package/src/migrations/2019-02-04-154500-event-rebase.ts +1 -1
- package/src/migrations/2019-03-18-104147-event-run-migration-struct.ts +1 -1
- package/src/migrations/2019-07-29-103000-trigger-event-function-fix.ts +1 -1
- package/src/migrations/2019-11-28-100000-missing-setting-fallback.ts +1 -1
- package/src/migrations/2020-03-27-130000-project-migrations.ts +1 -1
- package/src/migrations/2020-05-06-150000-composed-primary.ts +1 -1
- package/src/migrations/2020-06-01-103000-event-trigger-perf.ts +1 -1
- package/src/migrations/2021-03-23-110000-timestamp-fix.ts +1 -1
- package/src/migrations/2021-05-07-155800-event-log-rework.ts +1 -1
- package/src/migrations/2021-05-19-1232000-event-log-fix-constraint.ts +1 -1
- package/src/migrations/2021-12-21-155500-events-up.ts +1 -1
- package/src/migrations/2022-02-08-132600-fn-search-path.ts +1 -1
- package/src/migrations/2022-02-08-140500-drop-deadcode.ts +1 -1
- package/src/migrations/2022-02-08-144400-dynamic-stage-schema.ts +1 -1
- package/src/migrations/2022-10-03-110000-table-on-delete.ts +11 -7
- package/src/migrations/2023-09-11-174000-fix-on-delete.ts +14 -8
- package/src/migrations/2023-10-19-173000-fix-unique.ts +5 -4
- package/src/migrations/2023-10-24-140000-schema-nullable-checksum.ts +1 -1
- package/src/migrations/2024-06-28-150000-migrations-drop-sequence.ts +1 -1
- package/src/migrations/2024-06-28-153000-schema.ts +1 -1
- package/src/migrations/2024-06-28-153001-schema-init.ts +1 -2
- package/src/migrations/2024-07-29-150000-event-data-index.ts +1 -1
- package/src/migrations/2025-03-14-110000-fix-missing-index.ts +2 -3
- package/src/migrations/runner.ts +12 -12
- package/src/migrations/snapshot-factory.ts +0 -1
- package/src/model/ProjectInitializer.ts +19 -14
- package/src/model/commands/Command.ts +1 -1
- package/src/model/commands/CommandBus.ts +1 -3
- package/src/model/commands/migrations/SaveMigrationCommand.ts +1 -2
- package/src/model/database/DatabaseContext.ts +1 -2
- package/src/model/dtos/ExecutedMigration.ts +0 -1
- package/src/model/dtos/Stage.ts +0 -1
- package/src/model/events/types.ts +0 -1
- package/src/model/metadata/SchemaDatabaseMetadataResolverStore.ts +0 -2
- package/src/model/migrations/ProjectMigrator.ts +16 -16
- package/src/model/migrations/SchemaProvider.ts +1 -1
- package/src/model/queries/events/EventsQuery.ts +3 -7
- package/src/model/queries/events/OldValuesQuery.ts +4 -4
- package/src/model/queries/schema/SchemaQuery.ts +1 -3
- package/src/model/stages/StageCreator.ts +0 -2
- package/src/resolvers/ResolverFactory.ts +3 -4
- package/src/resolvers/SystemResolverContext.ts +3 -1
- package/src/resolvers/mutation/MigrateMutationResolver.ts +38 -37
- package/src/resolvers/mutation/MigrationAlterMutationResolver.ts +0 -1
- package/src/resolvers/query/EventsQueryResolver.ts +8 -6
- package/src/schema/types.ts +69 -43
- package/tests/cases/migrations/2020-05-06-150000-composed-primary.test.ts +10 -9
- package/tests/cases/migrations/2020-06-01-103000-event-trigger-perf.test.ts +10 -10
- package/tests/cases/migrations/2022-10-03-110000-table-on-delete.test.ts +32 -34
- package/tests/cases/migrations/2023-09-11-174000-fix-on-delete.test.ts +65 -67
- package/tests/cases/migrations/2023-10-19-173000-fix-unique.test.ts +23 -25
- package/tests/cases/migrations/2025-03-14-110000-fix-missing-index.test.ts +18 -19
- package/tests/cases/unit/eventsQuery.test.ts +22 -15
- package/dist/development/index.cjs +0 -73
- package/dist/development/index.cjs.map +0 -1
- package/dist/development/index.js +0 -70
- package/dist/development/index.js.map +0 -1
- package/dist/development/src/SystemContainer.cjs +0 -49
- package/dist/development/src/SystemContainer.cjs.map +0 -1
- package/dist/development/src/SystemContainer.js +0 -49
- package/dist/development/src/SystemContainer.js.map +0 -1
- package/dist/development/src/migrations/2018-08-04-102200-init.cjs +0 -36
- package/dist/development/src/migrations/2018-08-04-102200-init.cjs.map +0 -1
- package/dist/development/src/migrations/2018-08-04-102200-init.js +0 -37
- package/dist/development/src/migrations/2018-08-04-102200-init.js.map +0 -1
- package/dist/development/src/migrations/2018-08-05-130501-trigger-event-function.cjs +0 -98
- package/dist/development/src/migrations/2018-08-05-130501-trigger-event-function.cjs.map +0 -1
- package/dist/development/src/migrations/2018-08-05-130501-trigger-event-function.js +0 -99
- package/dist/development/src/migrations/2018-08-05-130501-trigger-event-function.js.map +0 -1
- package/dist/development/src/migrations/2019-01-14-143432-event-trx-id.cjs +0 -16
- package/dist/development/src/migrations/2019-01-14-143432-event-trx-id.cjs.map +0 -1
- package/dist/development/src/migrations/2019-01-14-143432-event-trx-id.js +0 -17
- package/dist/development/src/migrations/2019-01-14-143432-event-trx-id.js.map +0 -1
- package/dist/development/src/migrations/2019-02-04-154500-event-rebase.cjs +0 -58
- package/dist/development/src/migrations/2019-02-04-154500-event-rebase.cjs.map +0 -1
- package/dist/development/src/migrations/2019-02-04-154500-event-rebase.js +0 -59
- package/dist/development/src/migrations/2019-02-04-154500-event-rebase.js.map +0 -1
- package/dist/development/src/migrations/2019-03-18-104147-event-run-migration-struct.cjs +0 -11
- package/dist/development/src/migrations/2019-03-18-104147-event-run-migration-struct.cjs.map +0 -1
- package/dist/development/src/migrations/2019-03-18-104147-event-run-migration-struct.js +0 -12
- package/dist/development/src/migrations/2019-03-18-104147-event-run-migration-struct.js.map +0 -1
- package/dist/development/src/migrations/2019-07-29-103000-trigger-event-function-fix.cjs +0 -65
- package/dist/development/src/migrations/2019-07-29-103000-trigger-event-function-fix.cjs.map +0 -1
- package/dist/development/src/migrations/2019-07-29-103000-trigger-event-function-fix.js +0 -66
- package/dist/development/src/migrations/2019-07-29-103000-trigger-event-function-fix.js.map +0 -1
- package/dist/development/src/migrations/2019-11-28-100000-missing-setting-fallback.cjs +0 -20
- package/dist/development/src/migrations/2019-11-28-100000-missing-setting-fallback.cjs.map +0 -1
- package/dist/development/src/migrations/2019-11-28-100000-missing-setting-fallback.js +0 -21
- package/dist/development/src/migrations/2019-11-28-100000-missing-setting-fallback.js.map +0 -1
- package/dist/development/src/migrations/2020-03-27-130000-project-migrations.cjs +0 -21
- package/dist/development/src/migrations/2020-03-27-130000-project-migrations.cjs.map +0 -1
- package/dist/development/src/migrations/2020-03-27-130000-project-migrations.js +0 -22
- package/dist/development/src/migrations/2020-03-27-130000-project-migrations.js.map +0 -1
- package/dist/development/src/migrations/2020-05-06-150000-composed-primary.cjs +0 -188
- package/dist/development/src/migrations/2020-05-06-150000-composed-primary.cjs.map +0 -1
- package/dist/development/src/migrations/2020-05-06-150000-composed-primary.js +0 -189
- package/dist/development/src/migrations/2020-05-06-150000-composed-primary.js.map +0 -1
- package/dist/development/src/migrations/2020-06-01-103000-event-trigger-perf.cjs +0 -128
- package/dist/development/src/migrations/2020-06-01-103000-event-trigger-perf.cjs.map +0 -1
- package/dist/development/src/migrations/2020-06-01-103000-event-trigger-perf.js +0 -129
- package/dist/development/src/migrations/2020-06-01-103000-event-trigger-perf.js.map +0 -1
- package/dist/development/src/migrations/2021-03-23-110000-timestamp-fix.cjs +0 -14
- package/dist/development/src/migrations/2021-03-23-110000-timestamp-fix.cjs.map +0 -1
- package/dist/development/src/migrations/2021-03-23-110000-timestamp-fix.js +0 -15
- package/dist/development/src/migrations/2021-03-23-110000-timestamp-fix.js.map +0 -1
- package/dist/development/src/migrations/2021-05-07-155800-event-log-rework.cjs +0 -286
- package/dist/development/src/migrations/2021-05-07-155800-event-log-rework.cjs.map +0 -1
- package/dist/development/src/migrations/2021-05-07-155800-event-log-rework.js +0 -287
- package/dist/development/src/migrations/2021-05-07-155800-event-log-rework.js.map +0 -1
- package/dist/development/src/migrations/2021-05-19-1232000-event-log-fix-constraint.cjs +0 -44
- package/dist/development/src/migrations/2021-05-19-1232000-event-log-fix-constraint.cjs.map +0 -1
- package/dist/development/src/migrations/2021-05-19-1232000-event-log-fix-constraint.js +0 -45
- package/dist/development/src/migrations/2021-05-19-1232000-event-log-fix-constraint.js.map +0 -1
- package/dist/development/src/migrations/2021-12-21-155500-events-up.cjs +0 -14
- package/dist/development/src/migrations/2021-12-21-155500-events-up.cjs.map +0 -1
- package/dist/development/src/migrations/2021-12-21-155500-events-up.js +0 -15
- package/dist/development/src/migrations/2021-12-21-155500-events-up.js.map +0 -1
- package/dist/development/src/migrations/2022-02-08-132600-fn-search-path.cjs +0 -15
- package/dist/development/src/migrations/2022-02-08-132600-fn-search-path.cjs.map +0 -1
- package/dist/development/src/migrations/2022-02-08-132600-fn-search-path.js +0 -16
- package/dist/development/src/migrations/2022-02-08-132600-fn-search-path.js.map +0 -1
- package/dist/development/src/migrations/2022-02-08-140500-drop-deadcode.cjs +0 -10
- package/dist/development/src/migrations/2022-02-08-140500-drop-deadcode.cjs.map +0 -1
- package/dist/development/src/migrations/2022-02-08-140500-drop-deadcode.js +0 -11
- package/dist/development/src/migrations/2022-02-08-140500-drop-deadcode.js.map +0 -1
- package/dist/development/src/migrations/2022-02-08-144400-dynamic-stage-schema.cjs +0 -49
- package/dist/development/src/migrations/2022-02-08-144400-dynamic-stage-schema.cjs.map +0 -1
- package/dist/development/src/migrations/2022-02-08-144400-dynamic-stage-schema.js +0 -50
- package/dist/development/src/migrations/2022-02-08-144400-dynamic-stage-schema.js.map +0 -1
- package/dist/development/src/migrations/2022-10-03-110000-table-on-delete.cjs +0 -59
- package/dist/development/src/migrations/2022-10-03-110000-table-on-delete.cjs.map +0 -1
- package/dist/development/src/migrations/2022-10-03-110000-table-on-delete.js +0 -60
- package/dist/development/src/migrations/2022-10-03-110000-table-on-delete.js.map +0 -1
- package/dist/development/src/migrations/2023-09-11-174000-fix-on-delete.cjs +0 -65
- package/dist/development/src/migrations/2023-09-11-174000-fix-on-delete.cjs.map +0 -1
- package/dist/development/src/migrations/2023-09-11-174000-fix-on-delete.js +0 -66
- package/dist/development/src/migrations/2023-09-11-174000-fix-on-delete.js.map +0 -1
- package/dist/development/src/migrations/2023-10-19-173000-fix-unique.cjs +0 -43
- package/dist/development/src/migrations/2023-10-19-173000-fix-unique.cjs.map +0 -1
- package/dist/development/src/migrations/2023-10-19-173000-fix-unique.js +0 -44
- package/dist/development/src/migrations/2023-10-19-173000-fix-unique.js.map +0 -1
- package/dist/development/src/migrations/2023-10-24-140000-schema-nullable-checksum.cjs +0 -11
- package/dist/development/src/migrations/2023-10-24-140000-schema-nullable-checksum.cjs.map +0 -1
- package/dist/development/src/migrations/2023-10-24-140000-schema-nullable-checksum.js +0 -12
- package/dist/development/src/migrations/2023-10-24-140000-schema-nullable-checksum.js.map +0 -1
- package/dist/development/src/migrations/2024-06-28-150000-migrations-drop-sequence.cjs +0 -15
- package/dist/development/src/migrations/2024-06-28-150000-migrations-drop-sequence.cjs.map +0 -1
- package/dist/development/src/migrations/2024-06-28-150000-migrations-drop-sequence.js +0 -16
- package/dist/development/src/migrations/2024-06-28-150000-migrations-drop-sequence.js.map +0 -1
- package/dist/development/src/migrations/2024-06-28-153000-schema.cjs +0 -18
- package/dist/development/src/migrations/2024-06-28-153000-schema.cjs.map +0 -1
- package/dist/development/src/migrations/2024-06-28-153000-schema.js +0 -19
- package/dist/development/src/migrations/2024-06-28-153000-schema.js.map +0 -1
- package/dist/development/src/migrations/2024-06-28-153001-schema-init.cjs +0 -12
- package/dist/development/src/migrations/2024-06-28-153001-schema-init.cjs.map +0 -1
- package/dist/development/src/migrations/2024-06-28-153001-schema-init.js +0 -13
- package/dist/development/src/migrations/2024-06-28-153001-schema-init.js.map +0 -1
- package/dist/development/src/migrations/2024-07-29-150000-event-data-index.cjs +0 -11
- package/dist/development/src/migrations/2024-07-29-150000-event-data-index.cjs.map +0 -1
- package/dist/development/src/migrations/2024-07-29-150000-event-data-index.js +0 -12
- package/dist/development/src/migrations/2024-07-29-150000-event-data-index.js.map +0 -1
- package/dist/development/src/migrations/2025-03-14-110000-fix-missing-index.cjs +0 -63
- package/dist/development/src/migrations/2025-03-14-110000-fix-missing-index.cjs.map +0 -1
- package/dist/development/src/migrations/2025-03-14-110000-fix-missing-index.js +0 -64
- package/dist/development/src/migrations/2025-03-14-110000-fix-missing-index.js.map +0 -1
- package/dist/development/src/migrations/runner.cjs +0 -106
- package/dist/development/src/migrations/runner.cjs.map +0 -1
- package/dist/development/src/migrations/runner.js +0 -106
- package/dist/development/src/migrations/runner.js.map +0 -1
- package/dist/development/src/migrations/snapshot-factory.cjs +0 -44
- package/dist/development/src/migrations/snapshot-factory.cjs.map +0 -1
- package/dist/development/src/migrations/snapshot-factory.js +0 -44
- package/dist/development/src/migrations/snapshot-factory.js.map +0 -1
- package/dist/development/src/migrations/snapshot.cjs +0 -184
- package/dist/development/src/migrations/snapshot.cjs.map +0 -1
- package/dist/development/src/migrations/snapshot.js +0 -185
- package/dist/development/src/migrations/snapshot.js.map +0 -1
- package/dist/development/src/model/ProjectInitializer.cjs +0 -41
- package/dist/development/src/model/ProjectInitializer.cjs.map +0 -1
- package/dist/development/src/model/ProjectInitializer.js +0 -41
- package/dist/development/src/model/ProjectInitializer.js.map +0 -1
- package/dist/development/src/model/ProjectTruncateExecutor.cjs +0 -31
- package/dist/development/src/model/ProjectTruncateExecutor.cjs.map +0 -1
- package/dist/development/src/model/ProjectTruncateExecutor.js +0 -31
- package/dist/development/src/model/ProjectTruncateExecutor.js.map +0 -1
- package/dist/development/src/model/authorization/AuthorizationActions.cjs +0 -14
- package/dist/development/src/model/authorization/AuthorizationActions.cjs.map +0 -1
- package/dist/development/src/model/authorization/AuthorizationActions.js +0 -15
- package/dist/development/src/model/authorization/AuthorizationActions.js.map +0 -1
- package/dist/development/src/model/authorization/Identity.cjs +0 -10
- package/dist/development/src/model/authorization/Identity.cjs.map +0 -1
- package/dist/development/src/model/authorization/Identity.js +0 -10
- package/dist/development/src/model/authorization/Identity.js.map +0 -1
- package/dist/development/src/model/authorization/PermissionsFactory.cjs +0 -17
- package/dist/development/src/model/authorization/PermissionsFactory.cjs.map +0 -1
- package/dist/development/src/model/authorization/PermissionsFactory.js +0 -17
- package/dist/development/src/model/authorization/PermissionsFactory.js.map +0 -1
- package/dist/development/src/model/authorization/StagePermissionsFactory.cjs +0 -56
- package/dist/development/src/model/authorization/StagePermissionsFactory.cjs.map +0 -1
- package/dist/development/src/model/authorization/StagePermissionsFactory.js +0 -56
- package/dist/development/src/model/authorization/StagePermissionsFactory.js.map +0 -1
- package/dist/development/src/model/authorization/StageScope.cjs +0 -19
- package/dist/development/src/model/authorization/StageScope.cjs.map +0 -1
- package/dist/development/src/model/authorization/StageScope.js +0 -19
- package/dist/development/src/model/authorization/StageScope.js.map +0 -1
- package/dist/development/src/model/authorization/SwitchEvaluatorNode.cjs +0 -14
- package/dist/development/src/model/authorization/SwitchEvaluatorNode.cjs.map +0 -1
- package/dist/development/src/model/authorization/SwitchEvaluatorNode.js +0 -14
- package/dist/development/src/model/authorization/SwitchEvaluatorNode.js.map +0 -1
- package/dist/development/src/model/commands/CommandBus.cjs +0 -18
- package/dist/development/src/model/commands/CommandBus.cjs.map +0 -1
- package/dist/development/src/model/commands/CommandBus.js +0 -18
- package/dist/development/src/model/commands/CommandBus.js.map +0 -1
- package/dist/development/src/model/commands/events/TruncateEventsCommand.cjs +0 -10
- package/dist/development/src/model/commands/events/TruncateEventsCommand.cjs.map +0 -1
- package/dist/development/src/model/commands/events/TruncateEventsCommand.js +0 -10
- package/dist/development/src/model/commands/events/TruncateEventsCommand.js.map +0 -1
- package/dist/development/src/model/commands/migrations/DeleteMigrationCommand.cjs +0 -16
- package/dist/development/src/model/commands/migrations/DeleteMigrationCommand.cjs.map +0 -1
- package/dist/development/src/model/commands/migrations/DeleteMigrationCommand.js +0 -16
- package/dist/development/src/model/commands/migrations/DeleteMigrationCommand.js.map +0 -1
- package/dist/development/src/model/commands/migrations/ModifyMigrationCommand.cjs +0 -38
- package/dist/development/src/model/commands/migrations/ModifyMigrationCommand.cjs.map +0 -1
- package/dist/development/src/model/commands/migrations/ModifyMigrationCommand.js +0 -38
- package/dist/development/src/model/commands/migrations/ModifyMigrationCommand.js.map +0 -1
- package/dist/development/src/model/commands/migrations/SaveMigrationCommand.cjs +0 -28
- package/dist/development/src/model/commands/migrations/SaveMigrationCommand.cjs.map +0 -1
- package/dist/development/src/model/commands/migrations/SaveMigrationCommand.js +0 -28
- package/dist/development/src/model/commands/migrations/SaveMigrationCommand.js.map +0 -1
- package/dist/development/src/model/commands/schema/SaveSchemaCommand.cjs +0 -28
- package/dist/development/src/model/commands/schema/SaveSchemaCommand.cjs.map +0 -1
- package/dist/development/src/model/commands/schema/SaveSchemaCommand.js +0 -28
- package/dist/development/src/model/commands/schema/SaveSchemaCommand.js.map +0 -1
- package/dist/development/src/model/commands/stages/CreateStageCommand.cjs +0 -22
- package/dist/development/src/model/commands/stages/CreateStageCommand.cjs.map +0 -1
- package/dist/development/src/model/commands/stages/CreateStageCommand.js +0 -22
- package/dist/development/src/model/commands/stages/CreateStageCommand.js.map +0 -1
- package/dist/development/src/model/database/DatabaseContext.cjs +0 -29
- package/dist/development/src/model/database/DatabaseContext.cjs.map +0 -1
- package/dist/development/src/model/database/DatabaseContext.js +0 -29
- package/dist/development/src/model/database/DatabaseContext.js.map +0 -1
- package/dist/development/src/model/dtos/ExecutedMigration.cjs +0 -21
- package/dist/development/src/model/dtos/ExecutedMigration.cjs.map +0 -1
- package/dist/development/src/model/dtos/ExecutedMigration.js +0 -21
- package/dist/development/src/model/dtos/ExecutedMigration.js.map +0 -1
- package/dist/development/src/model/events/EventResponseBuilder.cjs +0 -59
- package/dist/development/src/model/events/EventResponseBuilder.cjs.map +0 -1
- package/dist/development/src/model/events/EventResponseBuilder.js +0 -59
- package/dist/development/src/model/events/EventResponseBuilder.js.map +0 -1
- package/dist/development/src/model/events/EventResponseHelper.cjs +0 -25
- package/dist/development/src/model/events/EventResponseHelper.cjs.map +0 -1
- package/dist/development/src/model/events/EventResponseHelper.js +0 -25
- package/dist/development/src/model/events/EventResponseHelper.js.map +0 -1
- package/dist/development/src/model/events/identityUtils.cjs +0 -16
- package/dist/development/src/model/events/identityUtils.cjs.map +0 -1
- package/dist/development/src/model/events/identityUtils.js +0 -16
- package/dist/development/src/model/events/identityUtils.js.map +0 -1
- package/dist/development/src/model/events/types.cjs +0 -69
- package/dist/development/src/model/events/types.cjs.map +0 -1
- package/dist/development/src/model/events/types.js +0 -69
- package/dist/development/src/model/events/types.js.map +0 -1
- package/dist/development/src/model/helpers/modelHelpers.cjs +0 -28
- package/dist/development/src/model/helpers/modelHelpers.cjs.map +0 -1
- package/dist/development/src/model/helpers/modelHelpers.js +0 -28
- package/dist/development/src/model/helpers/modelHelpers.js.map +0 -1
- package/dist/development/src/model/helpers/stageHelpers.cjs +0 -7
- package/dist/development/src/model/helpers/stageHelpers.cjs.map +0 -1
- package/dist/development/src/model/helpers/stageHelpers.js +0 -7
- package/dist/development/src/model/helpers/stageHelpers.js.map +0 -1
- package/dist/development/src/model/metadata/SchemaDatabaseMetadataResolverStore.cjs +0 -35
- package/dist/development/src/model/metadata/SchemaDatabaseMetadataResolverStore.cjs.map +0 -1
- package/dist/development/src/model/metadata/SchemaDatabaseMetadataResolverStore.js +0 -35
- package/dist/development/src/model/metadata/SchemaDatabaseMetadataResolverStore.js.map +0 -1
- package/dist/development/src/model/migrations/ExecutedMigrationsResolver.cjs +0 -17
- package/dist/development/src/model/migrations/ExecutedMigrationsResolver.cjs.map +0 -1
- package/dist/development/src/model/migrations/ExecutedMigrationsResolver.js +0 -17
- package/dist/development/src/model/migrations/ExecutedMigrationsResolver.js.map +0 -1
- package/dist/development/src/model/migrations/MigrationAlterer.cjs +0 -52
- package/dist/development/src/model/migrations/MigrationAlterer.cjs.map +0 -1
- package/dist/development/src/model/migrations/MigrationAlterer.js +0 -52
- package/dist/development/src/model/migrations/MigrationAlterer.js.map +0 -1
- package/dist/development/src/model/migrations/ProjectMigrator.cjs +0 -243
- package/dist/development/src/model/migrations/ProjectMigrator.cjs.map +0 -1
- package/dist/development/src/model/migrations/ProjectMigrator.js +0 -243
- package/dist/development/src/model/migrations/ProjectMigrator.js.map +0 -1
- package/dist/development/src/model/migrations/SchemaProvider.cjs +0 -55
- package/dist/development/src/model/migrations/SchemaProvider.cjs.map +0 -1
- package/dist/development/src/model/migrations/SchemaProvider.js +0 -55
- package/dist/development/src/model/migrations/SchemaProvider.js.map +0 -1
- package/dist/development/src/model/queries/events/EventQueryHelpers.cjs +0 -48
- package/dist/development/src/model/queries/events/EventQueryHelpers.cjs.map +0 -1
- package/dist/development/src/model/queries/events/EventQueryHelpers.js +0 -48
- package/dist/development/src/model/queries/events/EventQueryHelpers.js.map +0 -1
- package/dist/development/src/model/queries/events/EventsQuery.cjs +0 -70
- package/dist/development/src/model/queries/events/EventsQuery.cjs.map +0 -1
- package/dist/development/src/model/queries/events/EventsQuery.js +0 -70
- package/dist/development/src/model/queries/events/EventsQuery.js.map +0 -1
- package/dist/development/src/model/queries/events/LatestTransactionIdByStageQuery.cjs +0 -15
- package/dist/development/src/model/queries/events/LatestTransactionIdByStageQuery.cjs.map +0 -1
- package/dist/development/src/model/queries/events/LatestTransactionIdByStageQuery.js +0 -15
- package/dist/development/src/model/queries/events/LatestTransactionIdByStageQuery.js.map +0 -1
- package/dist/development/src/model/queries/events/OldValuesQuery.cjs +0 -19
- package/dist/development/src/model/queries/events/OldValuesQuery.cjs.map +0 -1
- package/dist/development/src/model/queries/events/OldValuesQuery.js +0 -19
- package/dist/development/src/model/queries/events/OldValuesQuery.js.map +0 -1
- package/dist/development/src/model/queries/migrations/ExecutedMigrationByVersionQuery.cjs +0 -18
- package/dist/development/src/model/queries/migrations/ExecutedMigrationByVersionQuery.cjs.map +0 -1
- package/dist/development/src/model/queries/migrations/ExecutedMigrationByVersionQuery.js +0 -18
- package/dist/development/src/model/queries/migrations/ExecutedMigrationByVersionQuery.js.map +0 -1
- package/dist/development/src/model/queries/migrations/ExecutedMigrationsQuery.cjs +0 -19
- package/dist/development/src/model/queries/migrations/ExecutedMigrationsQuery.cjs.map +0 -1
- package/dist/development/src/model/queries/migrations/ExecutedMigrationsQuery.js +0 -19
- package/dist/development/src/model/queries/migrations/ExecutedMigrationsQuery.js.map +0 -1
- package/dist/development/src/model/queries/migrations/ExecutedMigrationsQueryHelper.cjs +0 -18
- package/dist/development/src/model/queries/migrations/ExecutedMigrationsQueryHelper.cjs.map +0 -1
- package/dist/development/src/model/queries/migrations/ExecutedMigrationsQueryHelper.js +0 -18
- package/dist/development/src/model/queries/migrations/ExecutedMigrationsQueryHelper.js.map +0 -1
- package/dist/development/src/model/queries/schema/SchemaQuery.cjs +0 -34
- package/dist/development/src/model/queries/schema/SchemaQuery.cjs.map +0 -1
- package/dist/development/src/model/queries/schema/SchemaQuery.js +0 -34
- package/dist/development/src/model/queries/schema/SchemaQuery.js.map +0 -1
- package/dist/development/src/model/queries/stages/StageBySlugQuery.cjs +0 -17
- package/dist/development/src/model/queries/stages/StageBySlugQuery.cjs.map +0 -1
- package/dist/development/src/model/queries/stages/StageBySlugQuery.js +0 -17
- package/dist/development/src/model/queries/stages/StageBySlugQuery.js.map +0 -1
- package/dist/development/src/model/queries/stages/StageQueryFactory.cjs +0 -8
- package/dist/development/src/model/queries/stages/StageQueryFactory.cjs.map +0 -1
- package/dist/development/src/model/queries/stages/StageQueryFactory.js +0 -8
- package/dist/development/src/model/queries/stages/StageQueryFactory.js.map +0 -1
- package/dist/development/src/model/queries/stages/StagesQuery.cjs +0 -12
- package/dist/development/src/model/queries/stages/StagesQuery.cjs.map +0 -1
- package/dist/development/src/model/queries/stages/StagesQuery.js +0 -12
- package/dist/development/src/model/queries/stages/StagesQuery.js.map +0 -1
- package/dist/development/src/model/stages/StageCreator.cjs +0 -22
- package/dist/development/src/model/stages/StageCreator.cjs.map +0 -1
- package/dist/development/src/model/stages/StageCreator.js +0 -22
- package/dist/development/src/model/stages/StageCreator.js.map +0 -1
- package/dist/development/src/resolvers/ResolverFactory.cjs +0 -92
- package/dist/development/src/resolvers/ResolverFactory.cjs.map +0 -1
- package/dist/development/src/resolvers/ResolverFactory.js +0 -92
- package/dist/development/src/resolvers/ResolverFactory.js.map +0 -1
- package/dist/development/src/resolvers/SystemResolverContext.cjs +0 -37
- package/dist/development/src/resolvers/SystemResolverContext.cjs.map +0 -1
- package/dist/development/src/resolvers/SystemResolverContext.js +0 -37
- package/dist/development/src/resolvers/SystemResolverContext.js.map +0 -1
- package/dist/development/src/resolvers/mutation/MigrateMutationResolver.cjs +0 -113
- package/dist/development/src/resolvers/mutation/MigrateMutationResolver.cjs.map +0 -1
- package/dist/development/src/resolvers/mutation/MigrateMutationResolver.js +0 -113
- package/dist/development/src/resolvers/mutation/MigrateMutationResolver.js.map +0 -1
- package/dist/development/src/resolvers/mutation/MigrationAlterMutationResolver.cjs +0 -48
- package/dist/development/src/resolvers/mutation/MigrationAlterMutationResolver.cjs.map +0 -1
- package/dist/development/src/resolvers/mutation/MigrationAlterMutationResolver.js +0 -48
- package/dist/development/src/resolvers/mutation/MigrationAlterMutationResolver.js.map +0 -1
- package/dist/development/src/resolvers/mutation/TruncateMutationResolver.cjs +0 -15
- package/dist/development/src/resolvers/mutation/TruncateMutationResolver.cjs.map +0 -1
- package/dist/development/src/resolvers/mutation/TruncateMutationResolver.js +0 -15
- package/dist/development/src/resolvers/mutation/TruncateMutationResolver.js.map +0 -1
- package/dist/development/src/resolvers/query/EventsQueryResolver.cjs +0 -43
- package/dist/development/src/resolvers/query/EventsQueryResolver.cjs.map +0 -1
- package/dist/development/src/resolvers/query/EventsQueryResolver.js +0 -43
- package/dist/development/src/resolvers/query/EventsQueryResolver.js.map +0 -1
- package/dist/development/src/resolvers/query/ExecutedMigrationsQueryResolver.cjs +0 -29
- package/dist/development/src/resolvers/query/ExecutedMigrationsQueryResolver.cjs.map +0 -1
- package/dist/development/src/resolvers/query/ExecutedMigrationsQueryResolver.js +0 -29
- package/dist/development/src/resolvers/query/ExecutedMigrationsQueryResolver.js.map +0 -1
- package/dist/development/src/resolvers/query/SchemaQueryResolver.cjs +0 -23
- package/dist/development/src/resolvers/query/SchemaQueryResolver.cjs.map +0 -1
- package/dist/development/src/resolvers/query/SchemaQueryResolver.js +0 -23
- package/dist/development/src/resolvers/query/SchemaQueryResolver.js.map +0 -1
- package/dist/development/src/resolvers/query/StagesQueryResolver.cjs +0 -19
- package/dist/development/src/resolvers/query/StagesQueryResolver.cjs.map +0 -1
- package/dist/development/src/resolvers/query/StagesQueryResolver.js +0 -19
- package/dist/development/src/resolvers/query/StagesQueryResolver.js.map +0 -1
- package/dist/development/src/resolvers/types/EventOldValuesResolver.cjs +0 -10
- package/dist/development/src/resolvers/types/EventOldValuesResolver.cjs.map +0 -1
- package/dist/development/src/resolvers/types/EventOldValuesResolver.js +0 -10
- package/dist/development/src/resolvers/types/EventOldValuesResolver.js.map +0 -1
- package/dist/development/src/resolvers/types/OldValuesHelpers.cjs +0 -21
- package/dist/development/src/resolvers/types/OldValuesHelpers.cjs.map +0 -1
- package/dist/development/src/resolvers/types/OldValuesHelpers.js +0 -21
- package/dist/development/src/resolvers/types/OldValuesHelpers.js.map +0 -1
- package/dist/development/src/schema/dev.graphql.cjs +0 -56
- package/dist/development/src/schema/dev.graphql.cjs.map +0 -1
- package/dist/development/src/schema/dev.graphql.js +0 -57
- package/dist/development/src/schema/dev.graphql.js.map +0 -1
- package/dist/development/src/schema/system.graphql.cjs +0 -211
- package/dist/development/src/schema/system.graphql.cjs.map +0 -1
- package/dist/development/src/schema/system.graphql.js +0 -212
- package/dist/development/src/schema/system.graphql.js.map +0 -1
- package/dist/development/src/schema/types.cjs +0 -46
- package/dist/development/src/schema/types.cjs.map +0 -1
- package/dist/development/src/schema/types.js +0 -46
- package/dist/development/src/schema/types.js.map +0 -1
- package/dist/development/src/utils/MapSet.cjs +0 -43
- package/dist/development/src/utils/MapSet.cjs.map +0 -1
- package/dist/development/src/utils/MapSet.js +0 -43
- package/dist/development/src/utils/MapSet.js.map +0 -1
- package/dist/development/src/utils/Response.cjs +0 -21
- package/dist/development/src/utils/Response.cjs.map +0 -1
- package/dist/development/src/utils/Response.js +0 -21
- package/dist/development/src/utils/Response.js.map +0 -1
- package/dist/development/src/utils/assertNever.cjs +0 -7
- package/dist/development/src/utils/assertNever.cjs.map +0 -1
- package/dist/development/src/utils/assertNever.js +0 -7
- package/dist/development/src/utils/assertNever.js.map +0 -1
- package/dist/development/src/utils/batchQuery.cjs +0 -22
- package/dist/development/src/utils/batchQuery.cjs.map +0 -1
- package/dist/development/src/utils/batchQuery.js +0 -22
- package/dist/development/src/utils/batchQuery.js.map +0 -1
- package/dist/development/src/utils/exceptions.cjs +0 -9
- package/dist/development/src/utils/exceptions.cjs.map +0 -1
- package/dist/development/src/utils/exceptions.js +0 -9
- package/dist/development/src/utils/exceptions.js.map +0 -1
- package/dist/development/src/utils/tick.cjs +0 -5
- package/dist/development/src/utils/tick.cjs.map +0 -1
- package/dist/development/src/utils/tick.js +0 -5
- package/dist/development/src/utils/tick.js.map +0 -1
- package/dist/development/src/utils/tuple.cjs +0 -5
- package/dist/development/src/utils/tuple.cjs.map +0 -1
- package/dist/development/src/utils/tuple.js +0 -5
- package/dist/development/src/utils/tuple.js.map +0 -1
- package/dist/production/index.cjs +0 -73
- package/dist/production/index.cjs.map +0 -1
- package/dist/production/index.js +0 -70
- package/dist/production/index.js.map +0 -1
- package/dist/production/src/SystemContainer.cjs +0 -49
- package/dist/production/src/SystemContainer.cjs.map +0 -1
- package/dist/production/src/SystemContainer.js +0 -49
- package/dist/production/src/SystemContainer.js.map +0 -1
- package/dist/production/src/migrations/2018-08-04-102200-init.cjs +0 -36
- package/dist/production/src/migrations/2018-08-04-102200-init.cjs.map +0 -1
- package/dist/production/src/migrations/2018-08-04-102200-init.js +0 -37
- package/dist/production/src/migrations/2018-08-04-102200-init.js.map +0 -1
- package/dist/production/src/migrations/2018-08-05-130501-trigger-event-function.cjs +0 -98
- package/dist/production/src/migrations/2018-08-05-130501-trigger-event-function.cjs.map +0 -1
- package/dist/production/src/migrations/2018-08-05-130501-trigger-event-function.js +0 -99
- package/dist/production/src/migrations/2018-08-05-130501-trigger-event-function.js.map +0 -1
- package/dist/production/src/migrations/2019-01-14-143432-event-trx-id.cjs +0 -16
- package/dist/production/src/migrations/2019-01-14-143432-event-trx-id.cjs.map +0 -1
- package/dist/production/src/migrations/2019-01-14-143432-event-trx-id.js +0 -17
- package/dist/production/src/migrations/2019-01-14-143432-event-trx-id.js.map +0 -1
- package/dist/production/src/migrations/2019-02-04-154500-event-rebase.cjs +0 -58
- package/dist/production/src/migrations/2019-02-04-154500-event-rebase.cjs.map +0 -1
- package/dist/production/src/migrations/2019-02-04-154500-event-rebase.js +0 -59
- package/dist/production/src/migrations/2019-02-04-154500-event-rebase.js.map +0 -1
- package/dist/production/src/migrations/2019-03-18-104147-event-run-migration-struct.cjs +0 -11
- package/dist/production/src/migrations/2019-03-18-104147-event-run-migration-struct.cjs.map +0 -1
- package/dist/production/src/migrations/2019-03-18-104147-event-run-migration-struct.js +0 -12
- package/dist/production/src/migrations/2019-03-18-104147-event-run-migration-struct.js.map +0 -1
- package/dist/production/src/migrations/2019-07-29-103000-trigger-event-function-fix.cjs +0 -65
- package/dist/production/src/migrations/2019-07-29-103000-trigger-event-function-fix.cjs.map +0 -1
- package/dist/production/src/migrations/2019-07-29-103000-trigger-event-function-fix.js +0 -66
- package/dist/production/src/migrations/2019-07-29-103000-trigger-event-function-fix.js.map +0 -1
- package/dist/production/src/migrations/2019-11-28-100000-missing-setting-fallback.cjs +0 -20
- package/dist/production/src/migrations/2019-11-28-100000-missing-setting-fallback.cjs.map +0 -1
- package/dist/production/src/migrations/2019-11-28-100000-missing-setting-fallback.js +0 -21
- package/dist/production/src/migrations/2019-11-28-100000-missing-setting-fallback.js.map +0 -1
- package/dist/production/src/migrations/2020-03-27-130000-project-migrations.cjs +0 -21
- package/dist/production/src/migrations/2020-03-27-130000-project-migrations.cjs.map +0 -1
- package/dist/production/src/migrations/2020-03-27-130000-project-migrations.js +0 -22
- package/dist/production/src/migrations/2020-03-27-130000-project-migrations.js.map +0 -1
- package/dist/production/src/migrations/2020-05-06-150000-composed-primary.cjs +0 -188
- package/dist/production/src/migrations/2020-05-06-150000-composed-primary.cjs.map +0 -1
- package/dist/production/src/migrations/2020-05-06-150000-composed-primary.js +0 -189
- package/dist/production/src/migrations/2020-05-06-150000-composed-primary.js.map +0 -1
- package/dist/production/src/migrations/2020-06-01-103000-event-trigger-perf.cjs +0 -128
- package/dist/production/src/migrations/2020-06-01-103000-event-trigger-perf.cjs.map +0 -1
- package/dist/production/src/migrations/2020-06-01-103000-event-trigger-perf.js +0 -129
- package/dist/production/src/migrations/2020-06-01-103000-event-trigger-perf.js.map +0 -1
- package/dist/production/src/migrations/2021-03-23-110000-timestamp-fix.cjs +0 -14
- package/dist/production/src/migrations/2021-03-23-110000-timestamp-fix.cjs.map +0 -1
- package/dist/production/src/migrations/2021-03-23-110000-timestamp-fix.js +0 -15
- package/dist/production/src/migrations/2021-03-23-110000-timestamp-fix.js.map +0 -1
- package/dist/production/src/migrations/2021-05-07-155800-event-log-rework.cjs +0 -286
- package/dist/production/src/migrations/2021-05-07-155800-event-log-rework.cjs.map +0 -1
- package/dist/production/src/migrations/2021-05-07-155800-event-log-rework.js +0 -287
- package/dist/production/src/migrations/2021-05-07-155800-event-log-rework.js.map +0 -1
- package/dist/production/src/migrations/2021-05-19-1232000-event-log-fix-constraint.cjs +0 -44
- package/dist/production/src/migrations/2021-05-19-1232000-event-log-fix-constraint.cjs.map +0 -1
- package/dist/production/src/migrations/2021-05-19-1232000-event-log-fix-constraint.js +0 -45
- package/dist/production/src/migrations/2021-05-19-1232000-event-log-fix-constraint.js.map +0 -1
- package/dist/production/src/migrations/2021-12-21-155500-events-up.cjs +0 -14
- package/dist/production/src/migrations/2021-12-21-155500-events-up.cjs.map +0 -1
- package/dist/production/src/migrations/2021-12-21-155500-events-up.js +0 -15
- package/dist/production/src/migrations/2021-12-21-155500-events-up.js.map +0 -1
- package/dist/production/src/migrations/2022-02-08-132600-fn-search-path.cjs +0 -15
- package/dist/production/src/migrations/2022-02-08-132600-fn-search-path.cjs.map +0 -1
- package/dist/production/src/migrations/2022-02-08-132600-fn-search-path.js +0 -16
- package/dist/production/src/migrations/2022-02-08-132600-fn-search-path.js.map +0 -1
- package/dist/production/src/migrations/2022-02-08-140500-drop-deadcode.cjs +0 -10
- package/dist/production/src/migrations/2022-02-08-140500-drop-deadcode.cjs.map +0 -1
- package/dist/production/src/migrations/2022-02-08-140500-drop-deadcode.js +0 -11
- package/dist/production/src/migrations/2022-02-08-140500-drop-deadcode.js.map +0 -1
- package/dist/production/src/migrations/2022-02-08-144400-dynamic-stage-schema.cjs +0 -49
- package/dist/production/src/migrations/2022-02-08-144400-dynamic-stage-schema.cjs.map +0 -1
- package/dist/production/src/migrations/2022-02-08-144400-dynamic-stage-schema.js +0 -50
- package/dist/production/src/migrations/2022-02-08-144400-dynamic-stage-schema.js.map +0 -1
- package/dist/production/src/migrations/2022-10-03-110000-table-on-delete.cjs +0 -59
- package/dist/production/src/migrations/2022-10-03-110000-table-on-delete.cjs.map +0 -1
- package/dist/production/src/migrations/2022-10-03-110000-table-on-delete.js +0 -60
- package/dist/production/src/migrations/2022-10-03-110000-table-on-delete.js.map +0 -1
- package/dist/production/src/migrations/2023-09-11-174000-fix-on-delete.cjs +0 -65
- package/dist/production/src/migrations/2023-09-11-174000-fix-on-delete.cjs.map +0 -1
- package/dist/production/src/migrations/2023-09-11-174000-fix-on-delete.js +0 -66
- package/dist/production/src/migrations/2023-09-11-174000-fix-on-delete.js.map +0 -1
- package/dist/production/src/migrations/2023-10-19-173000-fix-unique.cjs +0 -43
- package/dist/production/src/migrations/2023-10-19-173000-fix-unique.cjs.map +0 -1
- package/dist/production/src/migrations/2023-10-19-173000-fix-unique.js +0 -44
- package/dist/production/src/migrations/2023-10-19-173000-fix-unique.js.map +0 -1
- package/dist/production/src/migrations/2023-10-24-140000-schema-nullable-checksum.cjs +0 -11
- package/dist/production/src/migrations/2023-10-24-140000-schema-nullable-checksum.cjs.map +0 -1
- package/dist/production/src/migrations/2023-10-24-140000-schema-nullable-checksum.js +0 -12
- package/dist/production/src/migrations/2023-10-24-140000-schema-nullable-checksum.js.map +0 -1
- package/dist/production/src/migrations/2024-06-28-150000-migrations-drop-sequence.cjs +0 -15
- package/dist/production/src/migrations/2024-06-28-150000-migrations-drop-sequence.cjs.map +0 -1
- package/dist/production/src/migrations/2024-06-28-150000-migrations-drop-sequence.js +0 -16
- package/dist/production/src/migrations/2024-06-28-150000-migrations-drop-sequence.js.map +0 -1
- package/dist/production/src/migrations/2024-06-28-153000-schema.cjs +0 -18
- package/dist/production/src/migrations/2024-06-28-153000-schema.cjs.map +0 -1
- package/dist/production/src/migrations/2024-06-28-153000-schema.js +0 -19
- package/dist/production/src/migrations/2024-06-28-153000-schema.js.map +0 -1
- package/dist/production/src/migrations/2024-06-28-153001-schema-init.cjs +0 -12
- package/dist/production/src/migrations/2024-06-28-153001-schema-init.cjs.map +0 -1
- package/dist/production/src/migrations/2024-06-28-153001-schema-init.js +0 -13
- package/dist/production/src/migrations/2024-06-28-153001-schema-init.js.map +0 -1
- package/dist/production/src/migrations/2024-07-29-150000-event-data-index.cjs +0 -11
- package/dist/production/src/migrations/2024-07-29-150000-event-data-index.cjs.map +0 -1
- package/dist/production/src/migrations/2024-07-29-150000-event-data-index.js +0 -12
- package/dist/production/src/migrations/2024-07-29-150000-event-data-index.js.map +0 -1
- package/dist/production/src/migrations/2025-03-14-110000-fix-missing-index.cjs +0 -63
- package/dist/production/src/migrations/2025-03-14-110000-fix-missing-index.cjs.map +0 -1
- package/dist/production/src/migrations/2025-03-14-110000-fix-missing-index.js +0 -64
- package/dist/production/src/migrations/2025-03-14-110000-fix-missing-index.js.map +0 -1
- package/dist/production/src/migrations/runner.cjs +0 -106
- package/dist/production/src/migrations/runner.cjs.map +0 -1
- package/dist/production/src/migrations/runner.js +0 -106
- package/dist/production/src/migrations/runner.js.map +0 -1
- package/dist/production/src/migrations/snapshot-factory.cjs +0 -44
- package/dist/production/src/migrations/snapshot-factory.cjs.map +0 -1
- package/dist/production/src/migrations/snapshot-factory.js +0 -44
- package/dist/production/src/migrations/snapshot-factory.js.map +0 -1
- package/dist/production/src/migrations/snapshot.cjs +0 -184
- package/dist/production/src/migrations/snapshot.cjs.map +0 -1
- package/dist/production/src/migrations/snapshot.js +0 -185
- package/dist/production/src/migrations/snapshot.js.map +0 -1
- package/dist/production/src/model/ProjectInitializer.cjs +0 -41
- package/dist/production/src/model/ProjectInitializer.cjs.map +0 -1
- package/dist/production/src/model/ProjectInitializer.js +0 -41
- package/dist/production/src/model/ProjectInitializer.js.map +0 -1
- package/dist/production/src/model/ProjectTruncateExecutor.cjs +0 -31
- package/dist/production/src/model/ProjectTruncateExecutor.cjs.map +0 -1
- package/dist/production/src/model/ProjectTruncateExecutor.js +0 -31
- package/dist/production/src/model/ProjectTruncateExecutor.js.map +0 -1
- package/dist/production/src/model/authorization/AuthorizationActions.cjs +0 -14
- package/dist/production/src/model/authorization/AuthorizationActions.cjs.map +0 -1
- package/dist/production/src/model/authorization/AuthorizationActions.js +0 -15
- package/dist/production/src/model/authorization/AuthorizationActions.js.map +0 -1
- package/dist/production/src/model/authorization/Identity.cjs +0 -10
- package/dist/production/src/model/authorization/Identity.cjs.map +0 -1
- package/dist/production/src/model/authorization/Identity.js +0 -10
- package/dist/production/src/model/authorization/Identity.js.map +0 -1
- package/dist/production/src/model/authorization/PermissionsFactory.cjs +0 -17
- package/dist/production/src/model/authorization/PermissionsFactory.cjs.map +0 -1
- package/dist/production/src/model/authorization/PermissionsFactory.js +0 -17
- package/dist/production/src/model/authorization/PermissionsFactory.js.map +0 -1
- package/dist/production/src/model/authorization/StagePermissionsFactory.cjs +0 -56
- package/dist/production/src/model/authorization/StagePermissionsFactory.cjs.map +0 -1
- package/dist/production/src/model/authorization/StagePermissionsFactory.js +0 -56
- package/dist/production/src/model/authorization/StagePermissionsFactory.js.map +0 -1
- package/dist/production/src/model/authorization/StageScope.cjs +0 -19
- package/dist/production/src/model/authorization/StageScope.cjs.map +0 -1
- package/dist/production/src/model/authorization/StageScope.js +0 -19
- package/dist/production/src/model/authorization/StageScope.js.map +0 -1
- package/dist/production/src/model/authorization/SwitchEvaluatorNode.cjs +0 -14
- package/dist/production/src/model/authorization/SwitchEvaluatorNode.cjs.map +0 -1
- package/dist/production/src/model/authorization/SwitchEvaluatorNode.js +0 -14
- package/dist/production/src/model/authorization/SwitchEvaluatorNode.js.map +0 -1
- package/dist/production/src/model/commands/CommandBus.cjs +0 -18
- package/dist/production/src/model/commands/CommandBus.cjs.map +0 -1
- package/dist/production/src/model/commands/CommandBus.js +0 -18
- package/dist/production/src/model/commands/CommandBus.js.map +0 -1
- package/dist/production/src/model/commands/events/TruncateEventsCommand.cjs +0 -10
- package/dist/production/src/model/commands/events/TruncateEventsCommand.cjs.map +0 -1
- package/dist/production/src/model/commands/events/TruncateEventsCommand.js +0 -10
- package/dist/production/src/model/commands/events/TruncateEventsCommand.js.map +0 -1
- package/dist/production/src/model/commands/migrations/DeleteMigrationCommand.cjs +0 -16
- package/dist/production/src/model/commands/migrations/DeleteMigrationCommand.cjs.map +0 -1
- package/dist/production/src/model/commands/migrations/DeleteMigrationCommand.js +0 -16
- package/dist/production/src/model/commands/migrations/DeleteMigrationCommand.js.map +0 -1
- package/dist/production/src/model/commands/migrations/ModifyMigrationCommand.cjs +0 -38
- package/dist/production/src/model/commands/migrations/ModifyMigrationCommand.cjs.map +0 -1
- package/dist/production/src/model/commands/migrations/ModifyMigrationCommand.js +0 -38
- package/dist/production/src/model/commands/migrations/ModifyMigrationCommand.js.map +0 -1
- package/dist/production/src/model/commands/migrations/SaveMigrationCommand.cjs +0 -28
- package/dist/production/src/model/commands/migrations/SaveMigrationCommand.cjs.map +0 -1
- package/dist/production/src/model/commands/migrations/SaveMigrationCommand.js +0 -28
- package/dist/production/src/model/commands/migrations/SaveMigrationCommand.js.map +0 -1
- package/dist/production/src/model/commands/schema/SaveSchemaCommand.cjs +0 -28
- package/dist/production/src/model/commands/schema/SaveSchemaCommand.cjs.map +0 -1
- package/dist/production/src/model/commands/schema/SaveSchemaCommand.js +0 -28
- package/dist/production/src/model/commands/schema/SaveSchemaCommand.js.map +0 -1
- package/dist/production/src/model/commands/stages/CreateStageCommand.cjs +0 -22
- package/dist/production/src/model/commands/stages/CreateStageCommand.cjs.map +0 -1
- package/dist/production/src/model/commands/stages/CreateStageCommand.js +0 -22
- package/dist/production/src/model/commands/stages/CreateStageCommand.js.map +0 -1
- package/dist/production/src/model/database/DatabaseContext.cjs +0 -29
- package/dist/production/src/model/database/DatabaseContext.cjs.map +0 -1
- package/dist/production/src/model/database/DatabaseContext.js +0 -29
- package/dist/production/src/model/database/DatabaseContext.js.map +0 -1
- package/dist/production/src/model/dtos/ExecutedMigration.cjs +0 -21
- package/dist/production/src/model/dtos/ExecutedMigration.cjs.map +0 -1
- package/dist/production/src/model/dtos/ExecutedMigration.js +0 -21
- package/dist/production/src/model/dtos/ExecutedMigration.js.map +0 -1
- package/dist/production/src/model/events/EventResponseBuilder.cjs +0 -59
- package/dist/production/src/model/events/EventResponseBuilder.cjs.map +0 -1
- package/dist/production/src/model/events/EventResponseBuilder.js +0 -59
- package/dist/production/src/model/events/EventResponseBuilder.js.map +0 -1
- package/dist/production/src/model/events/EventResponseHelper.cjs +0 -25
- package/dist/production/src/model/events/EventResponseHelper.cjs.map +0 -1
- package/dist/production/src/model/events/EventResponseHelper.js +0 -25
- package/dist/production/src/model/events/EventResponseHelper.js.map +0 -1
- package/dist/production/src/model/events/identityUtils.cjs +0 -16
- package/dist/production/src/model/events/identityUtils.cjs.map +0 -1
- package/dist/production/src/model/events/identityUtils.js +0 -16
- package/dist/production/src/model/events/identityUtils.js.map +0 -1
- package/dist/production/src/model/events/types.cjs +0 -69
- package/dist/production/src/model/events/types.cjs.map +0 -1
- package/dist/production/src/model/events/types.js +0 -69
- package/dist/production/src/model/events/types.js.map +0 -1
- package/dist/production/src/model/helpers/modelHelpers.cjs +0 -28
- package/dist/production/src/model/helpers/modelHelpers.cjs.map +0 -1
- package/dist/production/src/model/helpers/modelHelpers.js +0 -28
- package/dist/production/src/model/helpers/modelHelpers.js.map +0 -1
- package/dist/production/src/model/helpers/stageHelpers.cjs +0 -7
- package/dist/production/src/model/helpers/stageHelpers.cjs.map +0 -1
- package/dist/production/src/model/helpers/stageHelpers.js +0 -7
- package/dist/production/src/model/helpers/stageHelpers.js.map +0 -1
- package/dist/production/src/model/metadata/SchemaDatabaseMetadataResolverStore.cjs +0 -35
- package/dist/production/src/model/metadata/SchemaDatabaseMetadataResolverStore.cjs.map +0 -1
- package/dist/production/src/model/metadata/SchemaDatabaseMetadataResolverStore.js +0 -35
- package/dist/production/src/model/metadata/SchemaDatabaseMetadataResolverStore.js.map +0 -1
- package/dist/production/src/model/migrations/ExecutedMigrationsResolver.cjs +0 -17
- package/dist/production/src/model/migrations/ExecutedMigrationsResolver.cjs.map +0 -1
- package/dist/production/src/model/migrations/ExecutedMigrationsResolver.js +0 -17
- package/dist/production/src/model/migrations/ExecutedMigrationsResolver.js.map +0 -1
- package/dist/production/src/model/migrations/MigrationAlterer.cjs +0 -52
- package/dist/production/src/model/migrations/MigrationAlterer.cjs.map +0 -1
- package/dist/production/src/model/migrations/MigrationAlterer.js +0 -52
- package/dist/production/src/model/migrations/MigrationAlterer.js.map +0 -1
- package/dist/production/src/model/migrations/ProjectMigrator.cjs +0 -243
- package/dist/production/src/model/migrations/ProjectMigrator.cjs.map +0 -1
- package/dist/production/src/model/migrations/ProjectMigrator.js +0 -243
- package/dist/production/src/model/migrations/ProjectMigrator.js.map +0 -1
- package/dist/production/src/model/migrations/SchemaProvider.cjs +0 -55
- package/dist/production/src/model/migrations/SchemaProvider.cjs.map +0 -1
- package/dist/production/src/model/migrations/SchemaProvider.js +0 -55
- package/dist/production/src/model/migrations/SchemaProvider.js.map +0 -1
- package/dist/production/src/model/queries/events/EventQueryHelpers.cjs +0 -48
- package/dist/production/src/model/queries/events/EventQueryHelpers.cjs.map +0 -1
- package/dist/production/src/model/queries/events/EventQueryHelpers.js +0 -48
- package/dist/production/src/model/queries/events/EventQueryHelpers.js.map +0 -1
- package/dist/production/src/model/queries/events/EventsQuery.cjs +0 -70
- package/dist/production/src/model/queries/events/EventsQuery.cjs.map +0 -1
- package/dist/production/src/model/queries/events/EventsQuery.js +0 -70
- package/dist/production/src/model/queries/events/EventsQuery.js.map +0 -1
- package/dist/production/src/model/queries/events/LatestTransactionIdByStageQuery.cjs +0 -15
- package/dist/production/src/model/queries/events/LatestTransactionIdByStageQuery.cjs.map +0 -1
- package/dist/production/src/model/queries/events/LatestTransactionIdByStageQuery.js +0 -15
- package/dist/production/src/model/queries/events/LatestTransactionIdByStageQuery.js.map +0 -1
- package/dist/production/src/model/queries/events/OldValuesQuery.cjs +0 -19
- package/dist/production/src/model/queries/events/OldValuesQuery.cjs.map +0 -1
- package/dist/production/src/model/queries/events/OldValuesQuery.js +0 -19
- package/dist/production/src/model/queries/events/OldValuesQuery.js.map +0 -1
- package/dist/production/src/model/queries/migrations/ExecutedMigrationByVersionQuery.cjs +0 -18
- package/dist/production/src/model/queries/migrations/ExecutedMigrationByVersionQuery.cjs.map +0 -1
- package/dist/production/src/model/queries/migrations/ExecutedMigrationByVersionQuery.js +0 -18
- package/dist/production/src/model/queries/migrations/ExecutedMigrationByVersionQuery.js.map +0 -1
- package/dist/production/src/model/queries/migrations/ExecutedMigrationsQuery.cjs +0 -19
- package/dist/production/src/model/queries/migrations/ExecutedMigrationsQuery.cjs.map +0 -1
- package/dist/production/src/model/queries/migrations/ExecutedMigrationsQuery.js +0 -19
- package/dist/production/src/model/queries/migrations/ExecutedMigrationsQuery.js.map +0 -1
- package/dist/production/src/model/queries/migrations/ExecutedMigrationsQueryHelper.cjs +0 -18
- package/dist/production/src/model/queries/migrations/ExecutedMigrationsQueryHelper.cjs.map +0 -1
- package/dist/production/src/model/queries/migrations/ExecutedMigrationsQueryHelper.js +0 -18
- package/dist/production/src/model/queries/migrations/ExecutedMigrationsQueryHelper.js.map +0 -1
- package/dist/production/src/model/queries/schema/SchemaQuery.cjs +0 -34
- package/dist/production/src/model/queries/schema/SchemaQuery.cjs.map +0 -1
- package/dist/production/src/model/queries/schema/SchemaQuery.js +0 -34
- package/dist/production/src/model/queries/schema/SchemaQuery.js.map +0 -1
- package/dist/production/src/model/queries/stages/StageBySlugQuery.cjs +0 -17
- package/dist/production/src/model/queries/stages/StageBySlugQuery.cjs.map +0 -1
- package/dist/production/src/model/queries/stages/StageBySlugQuery.js +0 -17
- package/dist/production/src/model/queries/stages/StageBySlugQuery.js.map +0 -1
- package/dist/production/src/model/queries/stages/StageQueryFactory.cjs +0 -8
- package/dist/production/src/model/queries/stages/StageQueryFactory.cjs.map +0 -1
- package/dist/production/src/model/queries/stages/StageQueryFactory.js +0 -8
- package/dist/production/src/model/queries/stages/StageQueryFactory.js.map +0 -1
- package/dist/production/src/model/queries/stages/StagesQuery.cjs +0 -12
- package/dist/production/src/model/queries/stages/StagesQuery.cjs.map +0 -1
- package/dist/production/src/model/queries/stages/StagesQuery.js +0 -12
- package/dist/production/src/model/queries/stages/StagesQuery.js.map +0 -1
- package/dist/production/src/model/stages/StageCreator.cjs +0 -22
- package/dist/production/src/model/stages/StageCreator.cjs.map +0 -1
- package/dist/production/src/model/stages/StageCreator.js +0 -22
- package/dist/production/src/model/stages/StageCreator.js.map +0 -1
- package/dist/production/src/resolvers/ResolverFactory.cjs +0 -92
- package/dist/production/src/resolvers/ResolverFactory.cjs.map +0 -1
- package/dist/production/src/resolvers/ResolverFactory.js +0 -92
- package/dist/production/src/resolvers/ResolverFactory.js.map +0 -1
- package/dist/production/src/resolvers/SystemResolverContext.cjs +0 -37
- package/dist/production/src/resolvers/SystemResolverContext.cjs.map +0 -1
- package/dist/production/src/resolvers/SystemResolverContext.js +0 -37
- package/dist/production/src/resolvers/SystemResolverContext.js.map +0 -1
- package/dist/production/src/resolvers/mutation/MigrateMutationResolver.cjs +0 -113
- package/dist/production/src/resolvers/mutation/MigrateMutationResolver.cjs.map +0 -1
- package/dist/production/src/resolvers/mutation/MigrateMutationResolver.js +0 -113
- package/dist/production/src/resolvers/mutation/MigrateMutationResolver.js.map +0 -1
- package/dist/production/src/resolvers/mutation/MigrationAlterMutationResolver.cjs +0 -48
- package/dist/production/src/resolvers/mutation/MigrationAlterMutationResolver.cjs.map +0 -1
- package/dist/production/src/resolvers/mutation/MigrationAlterMutationResolver.js +0 -48
- package/dist/production/src/resolvers/mutation/MigrationAlterMutationResolver.js.map +0 -1
- package/dist/production/src/resolvers/mutation/TruncateMutationResolver.cjs +0 -15
- package/dist/production/src/resolvers/mutation/TruncateMutationResolver.cjs.map +0 -1
- package/dist/production/src/resolvers/mutation/TruncateMutationResolver.js +0 -15
- package/dist/production/src/resolvers/mutation/TruncateMutationResolver.js.map +0 -1
- package/dist/production/src/resolvers/query/EventsQueryResolver.cjs +0 -43
- package/dist/production/src/resolvers/query/EventsQueryResolver.cjs.map +0 -1
- package/dist/production/src/resolvers/query/EventsQueryResolver.js +0 -43
- package/dist/production/src/resolvers/query/EventsQueryResolver.js.map +0 -1
- package/dist/production/src/resolvers/query/ExecutedMigrationsQueryResolver.cjs +0 -29
- package/dist/production/src/resolvers/query/ExecutedMigrationsQueryResolver.cjs.map +0 -1
- package/dist/production/src/resolvers/query/ExecutedMigrationsQueryResolver.js +0 -29
- package/dist/production/src/resolvers/query/ExecutedMigrationsQueryResolver.js.map +0 -1
- package/dist/production/src/resolvers/query/SchemaQueryResolver.cjs +0 -23
- package/dist/production/src/resolvers/query/SchemaQueryResolver.cjs.map +0 -1
- package/dist/production/src/resolvers/query/SchemaQueryResolver.js +0 -23
- package/dist/production/src/resolvers/query/SchemaQueryResolver.js.map +0 -1
- package/dist/production/src/resolvers/query/StagesQueryResolver.cjs +0 -19
- package/dist/production/src/resolvers/query/StagesQueryResolver.cjs.map +0 -1
- package/dist/production/src/resolvers/query/StagesQueryResolver.js +0 -19
- package/dist/production/src/resolvers/query/StagesQueryResolver.js.map +0 -1
- package/dist/production/src/resolvers/types/EventOldValuesResolver.cjs +0 -10
- package/dist/production/src/resolvers/types/EventOldValuesResolver.cjs.map +0 -1
- package/dist/production/src/resolvers/types/EventOldValuesResolver.js +0 -10
- package/dist/production/src/resolvers/types/EventOldValuesResolver.js.map +0 -1
- package/dist/production/src/resolvers/types/OldValuesHelpers.cjs +0 -21
- package/dist/production/src/resolvers/types/OldValuesHelpers.cjs.map +0 -1
- package/dist/production/src/resolvers/types/OldValuesHelpers.js +0 -21
- package/dist/production/src/resolvers/types/OldValuesHelpers.js.map +0 -1
- package/dist/production/src/schema/dev.graphql.cjs +0 -56
- package/dist/production/src/schema/dev.graphql.cjs.map +0 -1
- package/dist/production/src/schema/dev.graphql.js +0 -57
- package/dist/production/src/schema/dev.graphql.js.map +0 -1
- package/dist/production/src/schema/system.graphql.cjs +0 -211
- package/dist/production/src/schema/system.graphql.cjs.map +0 -1
- package/dist/production/src/schema/system.graphql.js +0 -212
- package/dist/production/src/schema/system.graphql.js.map +0 -1
- package/dist/production/src/schema/types.cjs +0 -46
- package/dist/production/src/schema/types.cjs.map +0 -1
- package/dist/production/src/schema/types.js +0 -46
- package/dist/production/src/schema/types.js.map +0 -1
- package/dist/production/src/utils/MapSet.cjs +0 -43
- package/dist/production/src/utils/MapSet.cjs.map +0 -1
- package/dist/production/src/utils/MapSet.js +0 -43
- package/dist/production/src/utils/MapSet.js.map +0 -1
- package/dist/production/src/utils/Response.cjs +0 -21
- package/dist/production/src/utils/Response.cjs.map +0 -1
- package/dist/production/src/utils/Response.js +0 -21
- package/dist/production/src/utils/Response.js.map +0 -1
- package/dist/production/src/utils/assertNever.cjs +0 -7
- package/dist/production/src/utils/assertNever.cjs.map +0 -1
- package/dist/production/src/utils/assertNever.js +0 -7
- package/dist/production/src/utils/assertNever.js.map +0 -1
- package/dist/production/src/utils/batchQuery.cjs +0 -22
- package/dist/production/src/utils/batchQuery.cjs.map +0 -1
- package/dist/production/src/utils/batchQuery.js +0 -22
- package/dist/production/src/utils/batchQuery.js.map +0 -1
- package/dist/production/src/utils/exceptions.cjs +0 -9
- package/dist/production/src/utils/exceptions.cjs.map +0 -1
- package/dist/production/src/utils/exceptions.js +0 -9
- package/dist/production/src/utils/exceptions.js.map +0 -1
- package/dist/production/src/utils/tick.cjs +0 -5
- package/dist/production/src/utils/tick.cjs.map +0 -1
- package/dist/production/src/utils/tick.js +0 -5
- package/dist/production/src/utils/tick.js.map +0 -1
- package/dist/production/src/utils/tuple.cjs +0 -5
- package/dist/production/src/utils/tuple.cjs.map +0 -1
- package/dist/production/src/utils/tuple.js +0 -5
- package/dist/production/src/utils/tuple.js.map +0 -1
- package/dist/tests/cases/migrations/2020-05-06-150000-composed-primary.test.d.ts +0 -2
- package/dist/tests/cases/migrations/2020-05-06-150000-composed-primary.test.d.ts.map +0 -1
- package/dist/tests/cases/migrations/2020-06-01-103000-event-trigger-perf.test.d.ts +0 -2
- package/dist/tests/cases/migrations/2020-06-01-103000-event-trigger-perf.test.d.ts.map +0 -1
- package/dist/tests/cases/migrations/2022-10-03-110000-table-on-delete.test.d.ts +0 -2
- package/dist/tests/cases/migrations/2022-10-03-110000-table-on-delete.test.d.ts.map +0 -1
- package/dist/tests/cases/migrations/2023-09-11-174000-fix-on-delete.test.d.ts +0 -2
- package/dist/tests/cases/migrations/2023-09-11-174000-fix-on-delete.test.d.ts.map +0 -1
- package/dist/tests/cases/migrations/2023-10-19-173000-fix-unique.test.d.ts +0 -2
- package/dist/tests/cases/migrations/2023-10-19-173000-fix-unique.test.d.ts.map +0 -1
- package/dist/tests/cases/migrations/2025-03-14-110000-fix-missing-index.test.d.ts +0 -2
- package/dist/tests/cases/migrations/2025-03-14-110000-fix-missing-index.test.d.ts.map +0 -1
- package/dist/tests/cases/unit/eventsQuery.test.d.ts +0 -2
- package/dist/tests/cases/unit/eventsQuery.test.d.ts.map +0 -1
- package/dist/tests/src/constants.d.ts +0 -2
- package/dist/tests/src/constants.d.ts.map +0 -1
- package/dist/tests/src/utils.d.ts +0 -6
- package/dist/tests/src/utils.d.ts.map +0 -1
- package/dist/tests/src/uuid.d.ts +0 -3
- package/dist/tests/src/uuid.d.ts.map +0 -1
- package/dist/tests/tsconfig.tsbuildinfo +0 -1
- package/dist/types/StagingDisabledError.d.ts +0 -3
- package/dist/types/StagingDisabledError.d.ts.map +0 -1
- package/dist/types/SystemContainer.d.ts +0 -79
- package/dist/types/SystemContainer.d.ts.map +0 -1
- package/dist/types/bin/runMigrations.d.ts +0 -2
- package/dist/types/bin/runMigrations.d.ts.map +0 -1
- package/dist/types/index.d.ts +0 -9
- package/dist/types/index.d.ts.map +0 -1
- package/dist/types/migrations/2018-08-04-102200-init.d.ts +0 -3
- package/dist/types/migrations/2018-08-04-102200-init.d.ts.map +0 -1
- package/dist/types/migrations/2018-08-05-130501-trigger-event-function.d.ts +0 -3
- package/dist/types/migrations/2018-08-05-130501-trigger-event-function.d.ts.map +0 -1
- package/dist/types/migrations/2019-01-14-143432-event-trx-id.d.ts +0 -3
- package/dist/types/migrations/2019-01-14-143432-event-trx-id.d.ts.map +0 -1
- package/dist/types/migrations/2019-02-04-154500-event-rebase.d.ts +0 -3
- package/dist/types/migrations/2019-02-04-154500-event-rebase.d.ts.map +0 -1
- package/dist/types/migrations/2019-03-18-104147-event-run-migration-struct.d.ts +0 -3
- package/dist/types/migrations/2019-03-18-104147-event-run-migration-struct.d.ts.map +0 -1
- package/dist/types/migrations/2019-07-29-103000-trigger-event-function-fix.d.ts +0 -3
- package/dist/types/migrations/2019-07-29-103000-trigger-event-function-fix.d.ts.map +0 -1
- package/dist/types/migrations/2019-11-28-100000-missing-setting-fallback.d.ts +0 -3
- package/dist/types/migrations/2019-11-28-100000-missing-setting-fallback.d.ts.map +0 -1
- package/dist/types/migrations/2020-03-27-130000-project-migrations.d.ts +0 -4
- package/dist/types/migrations/2020-03-27-130000-project-migrations.d.ts.map +0 -1
- package/dist/types/migrations/2020-05-06-150000-composed-primary.d.ts +0 -5
- package/dist/types/migrations/2020-05-06-150000-composed-primary.d.ts.map +0 -1
- package/dist/types/migrations/2020-06-01-103000-event-trigger-perf.d.ts +0 -5
- package/dist/types/migrations/2020-06-01-103000-event-trigger-perf.d.ts.map +0 -1
- package/dist/types/migrations/2021-03-23-110000-timestamp-fix.d.ts +0 -3
- package/dist/types/migrations/2021-03-23-110000-timestamp-fix.d.ts.map +0 -1
- package/dist/types/migrations/2021-05-07-155800-event-log-rework.d.ts +0 -5
- package/dist/types/migrations/2021-05-07-155800-event-log-rework.d.ts.map +0 -1
- package/dist/types/migrations/2021-05-19-1232000-event-log-fix-constraint.d.ts +0 -5
- package/dist/types/migrations/2021-05-19-1232000-event-log-fix-constraint.d.ts.map +0 -1
- package/dist/types/migrations/2021-12-21-155500-events-up.d.ts +0 -3
- package/dist/types/migrations/2021-12-21-155500-events-up.d.ts.map +0 -1
- package/dist/types/migrations/2022-02-08-132600-fn-search-path.d.ts +0 -3
- package/dist/types/migrations/2022-02-08-132600-fn-search-path.d.ts.map +0 -1
- package/dist/types/migrations/2022-02-08-140500-drop-deadcode.d.ts +0 -3
- package/dist/types/migrations/2022-02-08-140500-drop-deadcode.d.ts.map +0 -1
- package/dist/types/migrations/2022-02-08-144400-dynamic-stage-schema.d.ts +0 -3
- package/dist/types/migrations/2022-02-08-144400-dynamic-stage-schema.d.ts.map +0 -1
- package/dist/types/migrations/2022-10-03-110000-table-on-delete.d.ts +0 -4
- package/dist/types/migrations/2022-10-03-110000-table-on-delete.d.ts.map +0 -1
- package/dist/types/migrations/2023-09-11-174000-fix-on-delete.d.ts +0 -4
- package/dist/types/migrations/2023-09-11-174000-fix-on-delete.d.ts.map +0 -1
- package/dist/types/migrations/2023-10-19-173000-fix-unique.d.ts +0 -4
- package/dist/types/migrations/2023-10-19-173000-fix-unique.d.ts.map +0 -1
- package/dist/types/migrations/2023-10-24-140000-schema-nullable-checksum.d.ts +0 -3
- package/dist/types/migrations/2023-10-24-140000-schema-nullable-checksum.d.ts.map +0 -1
- package/dist/types/migrations/2024-06-28-150000-migrations-drop-sequence.d.ts +0 -3
- package/dist/types/migrations/2024-06-28-150000-migrations-drop-sequence.d.ts.map +0 -1
- package/dist/types/migrations/2024-06-28-153000-schema.d.ts +0 -3
- package/dist/types/migrations/2024-06-28-153000-schema.d.ts.map +0 -1
- package/dist/types/migrations/2024-06-28-153001-schema-init.d.ts +0 -4
- package/dist/types/migrations/2024-06-28-153001-schema-init.d.ts.map +0 -1
- package/dist/types/migrations/2024-07-29-150000-event-data-index.d.ts +0 -3
- package/dist/types/migrations/2024-07-29-150000-event-data-index.d.ts.map +0 -1
- package/dist/types/migrations/2025-03-14-110000-fix-missing-index.d.ts +0 -4
- package/dist/types/migrations/2025-03-14-110000-fix-missing-index.d.ts.map +0 -1
- package/dist/types/migrations/index.d.ts +0 -3
- package/dist/types/migrations/index.d.ts.map +0 -1
- package/dist/types/migrations/runner.d.ts +0 -17
- package/dist/types/migrations/runner.d.ts.map +0 -1
- package/dist/types/migrations/snapshot-factory.d.ts +0 -6
- package/dist/types/migrations/snapshot-factory.d.ts.map +0 -1
- package/dist/types/migrations/snapshot.d.ts +0 -3
- package/dist/types/migrations/snapshot.d.ts.map +0 -1
- package/dist/types/migrations/types.d.ts +0 -9
- package/dist/types/migrations/types.d.ts.map +0 -1
- package/dist/types/model/ProjectInitializer.d.ts +0 -15
- package/dist/types/model/ProjectInitializer.d.ts.map +0 -1
- package/dist/types/model/ProjectTruncateExecutor.d.ts +0 -7
- package/dist/types/model/ProjectTruncateExecutor.d.ts.map +0 -1
- package/dist/types/model/SchemaGetter.d.ts +0 -6
- package/dist/types/model/SchemaGetter.d.ts.map +0 -1
- package/dist/types/model/authorization/AuthorizationActions.d.ts +0 -27
- package/dist/types/model/authorization/AuthorizationActions.d.ts.map +0 -1
- package/dist/types/model/authorization/Identity.d.ts +0 -6
- package/dist/types/model/authorization/Identity.d.ts.map +0 -1
- package/dist/types/model/authorization/PermissionsFactory.d.ts +0 -5
- package/dist/types/model/authorization/PermissionsFactory.d.ts.map +0 -1
- package/dist/types/model/authorization/StagePermissionsFactory.d.ts +0 -9
- package/dist/types/model/authorization/StagePermissionsFactory.d.ts.map +0 -1
- package/dist/types/model/authorization/StageScope.d.ts +0 -10
- package/dist/types/model/authorization/StageScope.d.ts.map +0 -1
- package/dist/types/model/authorization/SwitchEvaluatorNode.d.ts +0 -8
- package/dist/types/model/authorization/SwitchEvaluatorNode.d.ts.map +0 -1
- package/dist/types/model/authorization/index.d.ts +0 -4
- package/dist/types/model/authorization/index.d.ts.map +0 -1
- package/dist/types/model/commands/Command.d.ts +0 -15
- package/dist/types/model/commands/Command.d.ts.map +0 -1
- package/dist/types/model/commands/CommandBus.d.ts +0 -11
- package/dist/types/model/commands/CommandBus.d.ts.map +0 -1
- package/dist/types/model/commands/events/TruncateEventsCommand.d.ts +0 -5
- package/dist/types/model/commands/events/TruncateEventsCommand.d.ts.map +0 -1
- package/dist/types/model/commands/events/index.d.ts +0 -2
- package/dist/types/model/commands/events/index.d.ts.map +0 -1
- package/dist/types/model/commands/index.d.ts +0 -6
- package/dist/types/model/commands/index.d.ts.map +0 -1
- package/dist/types/model/commands/migrations/DeleteMigrationCommand.d.ts +0 -7
- package/dist/types/model/commands/migrations/DeleteMigrationCommand.d.ts.map +0 -1
- package/dist/types/model/commands/migrations/ModifyMigrationCommand.d.ts +0 -9
- package/dist/types/model/commands/migrations/ModifyMigrationCommand.d.ts.map +0 -1
- package/dist/types/model/commands/migrations/SaveMigrationCommand.d.ts +0 -8
- package/dist/types/model/commands/migrations/SaveMigrationCommand.d.ts.map +0 -1
- package/dist/types/model/commands/migrations/index.d.ts +0 -3
- package/dist/types/model/commands/migrations/index.d.ts.map +0 -1
- package/dist/types/model/commands/schema/SaveSchemaCommand.d.ts +0 -8
- package/dist/types/model/commands/schema/SaveSchemaCommand.d.ts.map +0 -1
- package/dist/types/model/commands/stages/CreateStageCommand.d.ts +0 -8
- package/dist/types/model/commands/stages/CreateStageCommand.d.ts.map +0 -1
- package/dist/types/model/commands/stages/TruncateStagesCommand.d.ts +0 -5
- package/dist/types/model/commands/stages/TruncateStagesCommand.d.ts.map +0 -1
- package/dist/types/model/commands/stages/index.d.ts +0 -3
- package/dist/types/model/commands/stages/index.d.ts.map +0 -1
- package/dist/types/model/database/DatabaseContext.d.ts +0 -19
- package/dist/types/model/database/DatabaseContext.d.ts.map +0 -1
- package/dist/types/model/database/index.d.ts +0 -2
- package/dist/types/model/database/index.d.ts.map +0 -1
- package/dist/types/model/dependencies/content/ContentQueryExecutor.d.ts +0 -36
- package/dist/types/model/dependencies/content/ContentQueryExecutor.d.ts.map +0 -1
- package/dist/types/model/dependencies/index.d.ts +0 -3
- package/dist/types/model/dependencies/index.d.ts.map +0 -1
- package/dist/types/model/dependencies/tenant/IdentityFetcher.d.ts +0 -18
- package/dist/types/model/dependencies/tenant/IdentityFetcher.d.ts.map +0 -1
- package/dist/types/model/dependencies/tenant/index.d.ts +0 -2
- package/dist/types/model/dependencies/tenant/index.d.ts.map +0 -1
- package/dist/types/model/dtos/ExecutedMigration.d.ts +0 -13
- package/dist/types/model/dtos/ExecutedMigration.d.ts.map +0 -1
- package/dist/types/model/dtos/Stage.d.ts +0 -7
- package/dist/types/model/dtos/Stage.d.ts.map +0 -1
- package/dist/types/model/dtos/index.d.ts +0 -3
- package/dist/types/model/dtos/index.d.ts.map +0 -1
- package/dist/types/model/events/EventResponseBuilder.d.ts +0 -10
- package/dist/types/model/events/EventResponseBuilder.d.ts.map +0 -1
- package/dist/types/model/events/EventResponseHelper.d.ts +0 -22
- package/dist/types/model/events/EventResponseHelper.d.ts.map +0 -1
- package/dist/types/model/events/identityUtils.d.ts +0 -3
- package/dist/types/model/events/identityUtils.d.ts.map +0 -1
- package/dist/types/model/events/index.d.ts +0 -3
- package/dist/types/model/events/index.d.ts.map +0 -1
- package/dist/types/model/events/types.d.ts +0 -56
- package/dist/types/model/events/types.d.ts.map +0 -1
- package/dist/types/model/helpers/index.d.ts +0 -3
- package/dist/types/model/helpers/index.d.ts.map +0 -1
- package/dist/types/model/helpers/modelHelpers.d.ts +0 -3
- package/dist/types/model/helpers/modelHelpers.d.ts.map +0 -1
- package/dist/types/model/helpers/stageHelpers.d.ts +0 -3
- package/dist/types/model/helpers/stageHelpers.d.ts.map +0 -1
- package/dist/types/model/index.d.ts +0 -14
- package/dist/types/model/index.d.ts.map +0 -1
- package/dist/types/model/metadata/SchemaDatabaseMetadataResolverStore.d.ts +0 -16
- package/dist/types/model/metadata/SchemaDatabaseMetadataResolverStore.d.ts.map +0 -1
- package/dist/types/model/metadata/index.d.ts +0 -2
- package/dist/types/model/metadata/index.d.ts.map +0 -1
- package/dist/types/model/migrations/ExecutedMigrationsResolver.d.ts +0 -7
- package/dist/types/model/migrations/ExecutedMigrationsResolver.d.ts.map +0 -1
- package/dist/types/model/migrations/MigrationAlterer.d.ts +0 -18
- package/dist/types/model/migrations/MigrationAlterer.d.ts.map +0 -1
- package/dist/types/model/migrations/MigrationInput.d.ts +0 -18
- package/dist/types/model/migrations/MigrationInput.d.ts.map +0 -1
- package/dist/types/model/migrations/ProjectMigrator.d.ts +0 -63
- package/dist/types/model/migrations/ProjectMigrator.d.ts.map +0 -1
- package/dist/types/model/migrations/SchemaProvider.d.ts +0 -28
- package/dist/types/model/migrations/SchemaProvider.d.ts.map +0 -1
- package/dist/types/model/migrations/index.d.ts +0 -5
- package/dist/types/model/migrations/index.d.ts.map +0 -1
- package/dist/types/model/queries/events/EventQueryHelpers.d.ts +0 -14
- package/dist/types/model/queries/events/EventQueryHelpers.d.ts.map +0 -1
- package/dist/types/model/queries/events/EventsQuery.d.ts +0 -12
- package/dist/types/model/queries/events/EventsQuery.d.ts.map +0 -1
- package/dist/types/model/queries/events/LatestTransactionIdByStageQuery.d.ts +0 -7
- package/dist/types/model/queries/events/LatestTransactionIdByStageQuery.d.ts.map +0 -1
- package/dist/types/model/queries/events/OldValuesQuery.d.ts +0 -7
- package/dist/types/model/queries/events/OldValuesQuery.d.ts.map +0 -1
- package/dist/types/model/queries/events/index.d.ts +0 -4
- package/dist/types/model/queries/events/index.d.ts.map +0 -1
- package/dist/types/model/queries/index.d.ts +0 -5
- package/dist/types/model/queries/index.d.ts.map +0 -1
- package/dist/types/model/queries/migrations/ExecutedMigrationByVersionQuery.d.ts +0 -8
- package/dist/types/model/queries/migrations/ExecutedMigrationByVersionQuery.d.ts.map +0 -1
- package/dist/types/model/queries/migrations/ExecutedMigrationsQuery.d.ts +0 -8
- package/dist/types/model/queries/migrations/ExecutedMigrationsQuery.d.ts.map +0 -1
- package/dist/types/model/queries/migrations/ExecutedMigrationsQueryHelper.d.ts +0 -14
- package/dist/types/model/queries/migrations/ExecutedMigrationsQueryHelper.d.ts.map +0 -1
- package/dist/types/model/queries/migrations/index.d.ts +0 -4
- package/dist/types/model/queries/migrations/index.d.ts.map +0 -1
- package/dist/types/model/queries/schema/SchemaQuery.d.ts +0 -8
- package/dist/types/model/queries/schema/SchemaQuery.d.ts.map +0 -1
- package/dist/types/model/queries/schema/index.d.ts +0 -2
- package/dist/types/model/queries/schema/index.d.ts.map +0 -1
- package/dist/types/model/queries/stages/StageBySlugQuery.d.ts +0 -12
- package/dist/types/model/queries/stages/StageBySlugQuery.d.ts.map +0 -1
- package/dist/types/model/queries/stages/StageQueryFactory.d.ts +0 -4
- package/dist/types/model/queries/stages/StageQueryFactory.d.ts.map +0 -1
- package/dist/types/model/queries/stages/StagesQuery.d.ts +0 -7
- package/dist/types/model/queries/stages/StagesQuery.d.ts.map +0 -1
- package/dist/types/model/queries/stages/index.d.ts +0 -4
- package/dist/types/model/queries/stages/index.d.ts.map +0 -1
- package/dist/types/model/stages/StageCreator.d.ts +0 -8
- package/dist/types/model/stages/StageCreator.d.ts.map +0 -1
- package/dist/types/model/stages/index.d.ts +0 -2
- package/dist/types/model/stages/index.d.ts.map +0 -1
- package/dist/types/resolvers/Resolver.d.ts +0 -16
- package/dist/types/resolvers/Resolver.d.ts.map +0 -1
- package/dist/types/resolvers/ResolverFactory.d.ts +0 -20
- package/dist/types/resolvers/ResolverFactory.d.ts.map +0 -1
- package/dist/types/resolvers/SystemResolverContext.d.ts +0 -21
- package/dist/types/resolvers/SystemResolverContext.d.ts.map +0 -1
- package/dist/types/resolvers/index.d.ts +0 -6
- package/dist/types/resolvers/index.d.ts.map +0 -1
- package/dist/types/resolvers/mutation/MigrateMutationResolver.d.ts +0 -13
- package/dist/types/resolvers/mutation/MigrateMutationResolver.d.ts.map +0 -1
- package/dist/types/resolvers/mutation/MigrationAlterMutationResolver.d.ts +0 -12
- package/dist/types/resolvers/mutation/MigrationAlterMutationResolver.d.ts.map +0 -1
- package/dist/types/resolvers/mutation/TruncateMutationResolver.d.ts +0 -11
- package/dist/types/resolvers/mutation/TruncateMutationResolver.d.ts.map +0 -1
- package/dist/types/resolvers/mutation/index.d.ts +0 -4
- package/dist/types/resolvers/mutation/index.d.ts.map +0 -1
- package/dist/types/resolvers/query/EventsQueryResolver.d.ts +0 -11
- package/dist/types/resolvers/query/EventsQueryResolver.d.ts.map +0 -1
- package/dist/types/resolvers/query/ExecutedMigrationsQueryResolver.d.ts +0 -8
- package/dist/types/resolvers/query/ExecutedMigrationsQueryResolver.d.ts.map +0 -1
- package/dist/types/resolvers/query/SchemaQueryResolver.d.ts +0 -7
- package/dist/types/resolvers/query/SchemaQueryResolver.d.ts.map +0 -1
- package/dist/types/resolvers/query/StagesQueryResolver.d.ts +0 -8
- package/dist/types/resolvers/query/StagesQueryResolver.d.ts.map +0 -1
- package/dist/types/resolvers/query/index.d.ts +0 -4
- package/dist/types/resolvers/query/index.d.ts.map +0 -1
- package/dist/types/resolvers/types/EventOldValuesResolver.d.ts +0 -6
- package/dist/types/resolvers/types/EventOldValuesResolver.d.ts.map +0 -1
- package/dist/types/resolvers/types/OldValuesHelpers.d.ts +0 -3
- package/dist/types/resolvers/types/OldValuesHelpers.d.ts.map +0 -1
- package/dist/types/resolvers/types/index.d.ts +0 -2
- package/dist/types/resolvers/types/index.d.ts.map +0 -1
- package/dist/types/schema/dev.graphql.d.ts +0 -4
- package/dist/types/schema/dev.graphql.d.ts.map +0 -1
- package/dist/types/schema/index.d.ts +0 -6
- package/dist/types/schema/index.d.ts.map +0 -1
- package/dist/types/schema/system.graphql.d.ts +0 -4
- package/dist/types/schema/system.graphql.d.ts.map +0 -1
- package/dist/types/schema/types.d.ts +0 -566
- package/dist/types/schema/types.d.ts.map +0 -1
- package/dist/types/tsconfig.tsbuildinfo +0 -1
- package/dist/types/types.d.ts +0 -12
- package/dist/types/types.d.ts.map +0 -1
- package/dist/types/utils/MapSet.d.ts +0 -10
- package/dist/types/utils/MapSet.d.ts.map +0 -1
- package/dist/types/utils/Response.d.ts +0 -13
- package/dist/types/utils/Response.d.ts.map +0 -1
- package/dist/types/utils/assertNever.d.ts +0 -2
- package/dist/types/utils/assertNever.d.ts.map +0 -1
- package/dist/types/utils/batchQuery.d.ts +0 -3
- package/dist/types/utils/batchQuery.d.ts.map +0 -1
- package/dist/types/utils/exceptions.d.ts +0 -5
- package/dist/types/utils/exceptions.d.ts.map +0 -1
- package/dist/types/utils/index.d.ts +0 -8
- package/dist/types/utils/index.d.ts.map +0 -1
- package/dist/types/utils/providers.d.ts +0 -3
- package/dist/types/utils/providers.d.ts.map +0 -1
- package/dist/types/utils/set.d.ts +0 -3
- package/dist/types/utils/set.d.ts.map +0 -1
- package/dist/types/utils/tick.d.ts +0 -2
- package/dist/types/utils/tick.d.ts.map +0 -1
- package/dist/types/utils/tuple.d.ts +0 -2
- package/dist/types/utils/tuple.d.ts.map +0 -1
- package/dist/types/utils/uuid.d.ts +0 -4
- package/dist/types/utils/uuid.d.ts.map +0 -1
- package/tests/.eslintrc.cjs +0 -5
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"assertNever.js","sources":["../../../../../packages/engine-system-api/src/utils/assertNever.ts"],"sourcesContent":["export function assertNever(_: never): never {\n\tthrow new Error()\n}\n"],"names":[],"mappings":"AAAO,SAAS,YAAY,GAAiB;AAC5C,QAAM,IAAI,MAAM;AACjB;"}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const tick = require("./tick.cjs");
|
|
4
|
-
const createBatchLoader = (createResult, getItem) => {
|
|
5
|
-
let args = [];
|
|
6
|
-
let result = null;
|
|
7
|
-
return async (arg) => {
|
|
8
|
-
args.push(arg);
|
|
9
|
-
if (!result) {
|
|
10
|
-
result = (async () => {
|
|
11
|
-
await tick.waitForTick();
|
|
12
|
-
const batchArgs = args;
|
|
13
|
-
args = [];
|
|
14
|
-
result = null;
|
|
15
|
-
return await createResult(batchArgs);
|
|
16
|
-
})();
|
|
17
|
-
}
|
|
18
|
-
return getItem(arg, await result);
|
|
19
|
-
};
|
|
20
|
-
};
|
|
21
|
-
exports.createBatchLoader = createBatchLoader;
|
|
22
|
-
//# sourceMappingURL=batchQuery.cjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"batchQuery.cjs","sources":["../../../../../packages/engine-system-api/src/utils/batchQuery.ts"],"sourcesContent":["import { waitForTick } from './tick'\n\nexport type ItemLoader<Arg, Item> = (args: Arg) => Promise<Item>\n\nexport const createBatchLoader = <Arg, Result, Item>(\n\tcreateResult: (args: Arg[]) => Promise<Result>,\n\tgetItem: (arg: Arg, result: Result) => Item,\n): ItemLoader<Arg, Item> => {\n\tlet args: Arg[] = []\n\tlet result: Promise<Result> | null = null\n\n\treturn async (arg: Arg) => {\n\t\targs.push(arg)\n\t\tif (!result) {\n\t\t\tresult = (async () => {\n\t\t\t\tawait waitForTick()\n\t\t\t\tconst batchArgs = args\n\t\t\t\targs = []\n\t\t\t\tresult = null\n\t\t\t\treturn await createResult(batchArgs)\n\t\t\t})()\n\t\t}\n\t\treturn getItem(arg, await result)\n\t}\n}\n"],"names":["waitForTick"],"mappings":";;;AAIa,MAAA,oBAAoB,CAChC,cACA,YAC2B;AAC3B,MAAI,OAAc,CAAC;AACnB,MAAI,SAAiC;AAErC,SAAO,OAAO,QAAa;AAC1B,SAAK,KAAK,GAAG;AACb,QAAI,CAAC,QAAQ;AACZ,gBAAU,YAAY;AACrB,cAAMA,iBAAY;AAClB,cAAM,YAAY;AAClB,eAAO,CAAC;AACC,iBAAA;AACF,eAAA,MAAM,aAAa,SAAS;AAAA,MAAA,GACjC;AAAA,IAAA;AAEG,WAAA,QAAQ,KAAK,MAAM,MAAM;AAAA,EACjC;AACD;;"}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { waitForTick } from "./tick.js";
|
|
2
|
-
const createBatchLoader = (createResult, getItem) => {
|
|
3
|
-
let args = [];
|
|
4
|
-
let result = null;
|
|
5
|
-
return async (arg) => {
|
|
6
|
-
args.push(arg);
|
|
7
|
-
if (!result) {
|
|
8
|
-
result = (async () => {
|
|
9
|
-
await waitForTick();
|
|
10
|
-
const batchArgs = args;
|
|
11
|
-
args = [];
|
|
12
|
-
result = null;
|
|
13
|
-
return await createResult(batchArgs);
|
|
14
|
-
})();
|
|
15
|
-
}
|
|
16
|
-
return getItem(arg, await result);
|
|
17
|
-
};
|
|
18
|
-
};
|
|
19
|
-
export {
|
|
20
|
-
createBatchLoader
|
|
21
|
-
};
|
|
22
|
-
//# sourceMappingURL=batchQuery.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"batchQuery.js","sources":["../../../../../packages/engine-system-api/src/utils/batchQuery.ts"],"sourcesContent":["import { waitForTick } from './tick'\n\nexport type ItemLoader<Arg, Item> = (args: Arg) => Promise<Item>\n\nexport const createBatchLoader = <Arg, Result, Item>(\n\tcreateResult: (args: Arg[]) => Promise<Result>,\n\tgetItem: (arg: Arg, result: Result) => Item,\n): ItemLoader<Arg, Item> => {\n\tlet args: Arg[] = []\n\tlet result: Promise<Result> | null = null\n\n\treturn async (arg: Arg) => {\n\t\targs.push(arg)\n\t\tif (!result) {\n\t\t\tresult = (async () => {\n\t\t\t\tawait waitForTick()\n\t\t\t\tconst batchArgs = args\n\t\t\t\targs = []\n\t\t\t\tresult = null\n\t\t\t\treturn await createResult(batchArgs)\n\t\t\t})()\n\t\t}\n\t\treturn getItem(arg, await result)\n\t}\n}\n"],"names":[],"mappings":";AAIa,MAAA,oBAAoB,CAChC,cACA,YAC2B;AAC3B,MAAI,OAAc,CAAC;AACnB,MAAI,SAAiC;AAErC,SAAO,OAAO,QAAa;AAC1B,SAAK,KAAK,GAAG;AACb,QAAI,CAAC,QAAQ;AACZ,gBAAU,YAAY;AACrB,cAAM,YAAY;AAClB,cAAM,YAAY;AAClB,eAAO,CAAC;AACC,iBAAA;AACF,eAAA,MAAM,aAAa,SAAS;AAAA,MAAA,GACjC;AAAA,IAAA;AAEG,WAAA,QAAQ,KAAK,MAAM,MAAM;AAAA,EACjC;AACD;"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
class ImplementationException extends Error {
|
|
4
|
-
}
|
|
5
|
-
class ShouldNotHappenException extends Error {
|
|
6
|
-
}
|
|
7
|
-
exports.ImplementationException = ImplementationException;
|
|
8
|
-
exports.ShouldNotHappenException = ShouldNotHappenException;
|
|
9
|
-
//# sourceMappingURL=exceptions.cjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"exceptions.cjs","sources":["../../../../../packages/engine-system-api/src/utils/exceptions.ts"],"sourcesContent":["export class ImplementationException extends Error {}\nexport class ShouldNotHappenException extends Error {}\n"],"names":[],"mappings":";;AAAO,MAAM,gCAAgC,MAAM;AAAC;AAC7C,MAAM,iCAAiC,MAAM;AAAC;;;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"exceptions.js","sources":["../../../../../packages/engine-system-api/src/utils/exceptions.ts"],"sourcesContent":["export class ImplementationException extends Error {}\nexport class ShouldNotHappenException extends Error {}\n"],"names":[],"mappings":"AAAO,MAAM,gCAAgC,MAAM;AAAC;AAC7C,MAAM,iCAAiC,MAAM;AAAC;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"tick.cjs","sources":["../../../../../packages/engine-system-api/src/utils/tick.ts"],"sourcesContent":["export const waitForTick = () => new Promise(resolve => process.nextTick(resolve))\n"],"names":[],"mappings":";;AAAa,MAAA,cAAc,MAAM,IAAI,QAAQ,aAAW,QAAQ,SAAS,OAAO,CAAC;;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"tick.js","sources":["../../../../../packages/engine-system-api/src/utils/tick.ts"],"sourcesContent":["export const waitForTick = () => new Promise(resolve => process.nextTick(resolve))\n"],"names":[],"mappings":"AAAa,MAAA,cAAc,MAAM,IAAI,QAAQ,aAAW,QAAQ,SAAS,OAAO,CAAC;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"tuple.cjs","sources":["../../../../../packages/engine-system-api/src/utils/tuple.ts"],"sourcesContent":["export const tuple = <T extends any[]>(...values: T) => values\n"],"names":[],"mappings":";;AAAa,MAAA,QAAQ,IAAqB,WAAc;;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"tuple.js","sources":["../../../../../packages/engine-system-api/src/utils/tuple.ts"],"sourcesContent":["export const tuple = <T extends any[]>(...values: T) => values\n"],"names":[],"mappings":"AAAa,MAAA,QAAQ,IAAqB,WAAc;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"2020-05-06-150000-composed-primary.test.d.ts","sourceRoot":"","sources":["../../../../tests/cases/migrations/2020-05-06-150000-composed-primary.test.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"2020-06-01-103000-event-trigger-perf.test.d.ts","sourceRoot":"","sources":["../../../../tests/cases/migrations/2020-06-01-103000-event-trigger-perf.test.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"2022-10-03-110000-table-on-delete.test.d.ts","sourceRoot":"","sources":["../../../../tests/cases/migrations/2022-10-03-110000-table-on-delete.test.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"2023-09-11-174000-fix-on-delete.test.d.ts","sourceRoot":"","sources":["../../../../tests/cases/migrations/2023-09-11-174000-fix-on-delete.test.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"2023-10-19-173000-fix-unique.test.d.ts","sourceRoot":"","sources":["../../../../tests/cases/migrations/2023-10-19-173000-fix-unique.test.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"2025-03-14-110000-fix-missing-index.test.d.ts","sourceRoot":"","sources":["../../../../tests/cases/migrations/2025-03-14-110000-fix-missing-index.test.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"eventsQuery.test.d.ts","sourceRoot":"","sources":["../../../../tests/cases/unit/eventsQuery.test.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../tests/src/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,QAAY,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../tests/src/utils.ts"],"names":[],"mappings":"AAAA,KAAK,SAAS,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAE,CAAA;AAE5C,wBAAgB,UAAU,CAAC,CAAC,EAAE,OAAO,EAAE,SAAS,CAAC,CAAC,CAAC,GAAG,CAAC,CAEtD"}
|
package/dist/tests/src/uuid.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"uuid.d.ts","sourceRoot":"","sources":["../../../tests/src/uuid.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,cAAc,wBAAwB,CAAA;AACnD,eAAO,MAAM,QAAQ,GAAI,QAAQ,MAAM,EAAE,eAAe,WAEvD,CAAA"}
|