finamaze_schema 1.58.0 → 1.60.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/.github/workflows/publish.yml +22 -63
- package/dist/entity/onboarding_sessions.entity.js +35 -11
- package/dist/entity/onboarding_sessions.entity.js.map +1 -1
- package/dist/index.js +0 -1
- package/dist/index.js.map +1 -1
- package/dist/migrations/1753088595569-version11.js +40 -0
- package/dist/migrations/1753088595569-version11.js.map +1 -0
- package/dist/migrations/1753088595569-version12.js +16 -0
- package/dist/migrations/1753088595569-version12.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -1
- package/entity-structure.json +0 -449
@@ -1,4 +1,4 @@
|
|
1
|
-
name: Publish
|
1
|
+
name: Publish @finamaze/schema to GitHub Packages
|
2
2
|
|
3
3
|
on:
|
4
4
|
push:
|
@@ -8,73 +8,32 @@ on:
|
|
8
8
|
jobs:
|
9
9
|
publish:
|
10
10
|
runs-on: ubuntu-latest
|
11
|
+
|
11
12
|
steps:
|
12
|
-
-
|
13
|
-
|
14
|
-
- name:
|
15
|
-
uses: actions/setup-node@v4
|
16
|
-
with:
|
17
|
-
node-version: '20'
|
18
|
-
|
19
|
-
- name: Install dependencies
|
20
|
-
run: npm install
|
21
|
-
|
22
|
-
- name: Build
|
23
|
-
run: npm run build
|
24
|
-
|
25
|
-
- name: Check version change
|
26
|
-
id: check_version
|
13
|
+
- name: 📦 Checkout code
|
14
|
+
uses: actions/checkout@v4
|
15
|
+
- name: Check if PERSONAL_ACCESS_TOKEN is set
|
27
16
|
run: |
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
CURRENT_VERSION=$(node -p "require('./package.json').version")
|
32
|
-
echo "Current version from package.json: $CURRENT_VERSION"
|
33
|
-
|
34
|
-
# Fetch the main branch
|
35
|
-
echo "Fetching main branch..."
|
36
|
-
git fetch origin main
|
37
|
-
|
38
|
-
# Get the version from main branch
|
39
|
-
echo "Getting version from main branch..."
|
40
|
-
MAIN_VERSION=$(git show origin/main:package.json | node -p "require('./package.json').version")
|
41
|
-
echo "Main branch version: $MAIN_VERSION"
|
42
|
-
|
43
|
-
echo "Comparing versions..."
|
44
|
-
echo "Current version: $CURRENT_VERSION"
|
45
|
-
echo "Main branch version: $MAIN_VERSION"
|
46
|
-
|
47
|
-
if [ "$CURRENT_VERSION" != "$MAIN_VERSION" ]; then
|
48
|
-
echo "Version has changed from $MAIN_VERSION to $CURRENT_VERSION"
|
49
|
-
echo "should_publish=true" >> $GITHUB_OUTPUT
|
17
|
+
if [ -z "${{ secrets.PERSONAL_ACCESS_TOKEN }}" ]; then
|
18
|
+
echo "❌ PERSONAL_ACCESS_TOKEN is missing or empty!"
|
19
|
+
exit 1
|
50
20
|
else
|
51
|
-
echo "
|
52
|
-
echo "should_publish=false" >> $GITHUB_OUTPUT
|
21
|
+
echo "✅ PERSONAL_ACCESS_TOKEN is present."
|
53
22
|
fi
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
- name: Google Auth
|
58
|
-
uses: google-github-actions/auth@v2
|
23
|
+
- name: ⚙️ Setup Node.js and authenticate with GitHub Packages
|
24
|
+
uses: actions/setup-node@v4
|
59
25
|
with:
|
60
|
-
|
61
|
-
|
26
|
+
node-version: 18
|
27
|
+
registry-url: https://npm.pkg.github.com/
|
28
|
+
scope: '@finamaze'
|
29
|
+
always-auth: true
|
30
|
+
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
62
31
|
|
63
|
-
- name:
|
64
|
-
|
32
|
+
- name: 📥 Install dependencies
|
33
|
+
run: npm install
|
65
34
|
|
66
|
-
- name:
|
67
|
-
run:
|
68
|
-
# Configure npm to use Google Cloud Artifact Registry
|
69
|
-
gcloud artifacts print-settings npm \
|
70
|
-
--project=wmx-project-433914 \
|
71
|
-
--repository=wmx-finamaze-schema \
|
72
|
-
--location=europe-west1 \
|
73
|
-
--scope=@finamaze > .npmrc
|
74
|
-
|
75
|
-
# Update the access token
|
76
|
-
npx google-artifactregistry-auth .npmrc
|
35
|
+
- name: 🛠️ Build TypeScript
|
36
|
+
run: npm run build
|
77
37
|
|
78
|
-
- name: Publish
|
79
|
-
|
80
|
-
run: npm publish
|
38
|
+
- name: 🚀 Publish to GitHub Packages (private)
|
39
|
+
run: npm publish
|
@@ -22,14 +22,6 @@ __decorate([
|
|
22
22
|
(0, typeorm_1.Column)({ type: 'varchar', length: 255, unique: true }),
|
23
23
|
__metadata("design:type", String)
|
24
24
|
], OnboardingSession.prototype, "sessionId", void 0);
|
25
|
-
__decorate([
|
26
|
-
(0, typeorm_1.CreateDateColumn)({ type: 'timestamp' }),
|
27
|
-
__metadata("design:type", Date)
|
28
|
-
], OnboardingSession.prototype, "created_at", void 0);
|
29
|
-
__decorate([
|
30
|
-
(0, typeorm_1.Column)({ type: 'timestamp' }),
|
31
|
-
__metadata("design:type", Date)
|
32
|
-
], OnboardingSession.prototype, "expires_at", void 0);
|
33
25
|
__decorate([
|
34
26
|
(0, typeorm_1.Column)({
|
35
27
|
type: 'varchar',
|
@@ -39,13 +31,45 @@ __decorate([
|
|
39
31
|
__metadata("design:type", String)
|
40
32
|
], OnboardingSession.prototype, "status", void 0);
|
41
33
|
__decorate([
|
42
|
-
(0, typeorm_1.Column)({ type: '
|
43
|
-
__metadata("design:type",
|
34
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 20, default: '1' }),
|
35
|
+
__metadata("design:type", String)
|
44
36
|
], OnboardingSession.prototype, "onboardingVersion", void 0);
|
37
|
+
__decorate([
|
38
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 64, nullable: false }),
|
39
|
+
__metadata("design:type", String)
|
40
|
+
], OnboardingSession.prototype, "userHash", void 0);
|
41
|
+
__decorate([
|
42
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
|
43
|
+
__metadata("design:type", String)
|
44
|
+
], OnboardingSession.prototype, "tcsReferenceId", void 0);
|
45
|
+
__decorate([
|
46
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
|
47
|
+
__metadata("design:type", String)
|
48
|
+
], OnboardingSession.prototype, "phoneNumber", void 0);
|
49
|
+
__decorate([
|
50
|
+
(0, typeorm_1.Column)({
|
51
|
+
type: 'varchar',
|
52
|
+
length: 10,
|
53
|
+
nullable: false
|
54
|
+
}),
|
55
|
+
__metadata("design:type", String)
|
56
|
+
], OnboardingSession.prototype, "loginType", void 0);
|
57
|
+
__decorate([
|
58
|
+
(0, typeorm_1.Column)({ type: 'int', default: 0 }),
|
59
|
+
__metadata("design:type", Number)
|
60
|
+
], OnboardingSession.prototype, "attemptsCount", void 0);
|
61
|
+
__decorate([
|
62
|
+
(0, typeorm_1.Column)({ type: 'timestamp' }),
|
63
|
+
__metadata("design:type", Date)
|
64
|
+
], OnboardingSession.prototype, "expiresAt", void 0);
|
65
|
+
__decorate([
|
66
|
+
(0, typeorm_1.CreateDateColumn)({ type: 'timestamp' }),
|
67
|
+
__metadata("design:type", Date)
|
68
|
+
], OnboardingSession.prototype, "createdAt", void 0);
|
45
69
|
__decorate([
|
46
70
|
(0, typeorm_1.UpdateDateColumn)({ type: 'timestamp' }),
|
47
71
|
__metadata("design:type", Date)
|
48
|
-
], OnboardingSession.prototype, "
|
72
|
+
], OnboardingSession.prototype, "updatedAt", void 0);
|
49
73
|
__decorate([
|
50
74
|
(0, typeorm_1.OneToMany)('UserSubstepProgress', (progress) => progress.session, {
|
51
75
|
cascade: true,
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"onboarding_sessions.entity.js","sourceRoot":"","sources":["../../src/entity/onboarding_sessions.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAOiB;
|
1
|
+
{"version":3,"file":"onboarding_sessions.entity.js","sourceRoot":"","sources":["../../src/entity/onboarding_sessions.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAOiB;AAgBV,IAAM,iBAAiB,GAAvB,MAAM,iBAAiB;CAmH7B,CAAA;AAnHY,8CAAiB;AAM5B;IADC,IAAA,gCAAsB,EAAC,MAAM,CAAC;;6CACpB;AAQX;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC;;oDACrC;AAclB;IALC,IAAA,gBAAM,EAAC;QACN,IAAI,EAAE,SAAS;QACf,MAAM,EAAE,EAAE;QACV,OAAO,EAAE,QAAQ;KAClB,CAAC;;iDACoD;AAStD;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,OAAO,EAAE,GAAG,EAAE,CAAC;;4DAC5B;AAQ1B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;;mDACxC;AAOjB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;yDAClC;AAOvB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;sDACrC;AAYpB;IALC,IAAA,gBAAM,EAAC;QACN,IAAI,EAAE,SAAS;QACf,MAAM,EAAE,EAAE;QACV,QAAQ,EAAE,KAAK;KAChB,CAAC;;oDACuB;AAOzB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,OAAO,EAAE,CAAC,EAAE,CAAC;;wDACd;AAOtB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;8BACnB,IAAI;oDAAC;AAOhB;IADC,IAAA,0BAAgB,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;8BAC7B,IAAI;oDAAC;AAMhB;IADC,IAAA,0BAAgB,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;8BAC7B,IAAI;oDAAC;AAQhB;IAHC,IAAA,mBAAS,EAAC,qBAAqB,EAAE,CAAC,QAAa,EAAE,EAAE,CAAC,QAAQ,CAAC,OAAO,EAAE;QACrE,OAAO,EAAE,IAAI;KACd,CAAC;;2DACsB;AAQxB;IAHC,IAAA,mBAAS,EAAC,YAAY,EAAE,CAAC,MAAW,EAAE,EAAE,CAAC,MAAM,CAAC,OAAO,EAAE;QACxD,OAAO,EAAE,IAAI;KACd,CAAC;;kDACa;4BAlHJ,iBAAiB;IAD7B,IAAA,gBAAM,EAAC,qBAAqB,CAAC;GACjB,iBAAiB,CAmH7B"}
|
package/dist/index.js
CHANGED
@@ -23,7 +23,6 @@ __exportStar(require("./entity/document.entity"), exports);
|
|
23
23
|
__exportStar(require("./entity/role.entity"), exports);
|
24
24
|
__exportStar(require("./entity/permission.entity"), exports);
|
25
25
|
__exportStar(require("./entity/onboarding_group.entity"), exports);
|
26
|
-
__exportStar(require("./entity/user-onboarding-progress.entity"), exports);
|
27
26
|
__exportStar(require("./entity/onboarding_sessions.entity"), exports);
|
28
27
|
__exportStar(require("./entity/onboarding_step.entity"), exports);
|
29
28
|
__exportStar(require("./entity/onboarding_substep.entity"), exports);
|
package/dist/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAQA,uDAAqC;AACrC,0DAAwC;AACxC,+DAA6C;AAC7C,wDAAsC;AACtC,2DAAyC;AACzC,2DAAyC;AACzC,uDAAqC;AACrC,6DAA2C;AAC3C,mEAAiD;
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAQA,uDAAqC;AACrC,0DAAwC;AACxC,+DAA6C;AAC7C,wDAAsC;AACtC,2DAAyC;AACzC,2DAAyC;AACzC,uDAAqC;AACrC,6DAA2C;AAC3C,mEAAiD;AAGjD,sEAAoD;AACpD,kEAAgD;AAChD,qEAAmD;AACnD,sEAAoD;AACpD,wEAAsD;AACtD,yEAAuD;AAGvD,oEAAkD"}
|
@@ -0,0 +1,40 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.Version111753088595569 = void 0;
|
4
|
+
class Version111753088595569 {
|
5
|
+
constructor() {
|
6
|
+
this.name = 'Version111753088595569';
|
7
|
+
}
|
8
|
+
async up(queryRunner) {
|
9
|
+
await queryRunner.query(`ALTER TABLE "onboarding_sessions" DROP COLUMN "updated_at"`);
|
10
|
+
await queryRunner.query(`ALTER TABLE "onboarding_sessions" DROP COLUMN "expires_at"`);
|
11
|
+
await queryRunner.query(`ALTER TABLE "onboarding_sessions" DROP COLUMN "created_at"`);
|
12
|
+
await queryRunner.query(`ALTER TABLE "onboarding_sessions" ADD "userHash" varchar2(64) NOT NULL`);
|
13
|
+
await queryRunner.query(`ALTER TABLE "onboarding_sessions" ADD "tcsReferenceId" varchar2(255)`);
|
14
|
+
await queryRunner.query(`ALTER TABLE "onboarding_sessions" ADD "phoneNumber" varchar2(255)`);
|
15
|
+
await queryRunner.query(`ALTER TABLE "onboarding_sessions" ADD "loginType" varchar2(10) NOT NULL`);
|
16
|
+
await queryRunner.query(`ALTER TABLE "onboarding_sessions" ADD "attemptsCount" number DEFAULT 0 NOT NULL`);
|
17
|
+
await queryRunner.query(`ALTER TABLE "onboarding_sessions" ADD "expiresAt" timestamp NOT NULL`);
|
18
|
+
await queryRunner.query(`ALTER TABLE "onboarding_sessions" ADD "createdAt" timestamp DEFAULT CURRENT_TIMESTAMP NOT NULL`);
|
19
|
+
await queryRunner.query(`ALTER TABLE "onboarding_sessions" ADD "updatedAt" timestamp DEFAULT CURRENT_TIMESTAMP NOT NULL`);
|
20
|
+
await queryRunner.query(`ALTER TABLE "onboarding_sessions" DROP COLUMN "onboardingVersion"`);
|
21
|
+
await queryRunner.query(`ALTER TABLE "onboarding_sessions" ADD "onboardingVersion" varchar2(20) DEFAULT '1' NOT NULL`);
|
22
|
+
}
|
23
|
+
async down(queryRunner) {
|
24
|
+
await queryRunner.query(`ALTER TABLE "onboarding_sessions" DROP COLUMN "onboardingVersion"`);
|
25
|
+
await queryRunner.query(`ALTER TABLE "onboarding_sessions" ADD "onboardingVersion" number DEFAULT 1 NOT NULL`);
|
26
|
+
await queryRunner.query(`ALTER TABLE "onboarding_sessions" DROP COLUMN "updatedAt"`);
|
27
|
+
await queryRunner.query(`ALTER TABLE "onboarding_sessions" DROP COLUMN "createdAt"`);
|
28
|
+
await queryRunner.query(`ALTER TABLE "onboarding_sessions" DROP COLUMN "expiresAt"`);
|
29
|
+
await queryRunner.query(`ALTER TABLE "onboarding_sessions" DROP COLUMN "attemptsCount"`);
|
30
|
+
await queryRunner.query(`ALTER TABLE "onboarding_sessions" DROP COLUMN "loginType"`);
|
31
|
+
await queryRunner.query(`ALTER TABLE "onboarding_sessions" DROP COLUMN "phoneNumber"`);
|
32
|
+
await queryRunner.query(`ALTER TABLE "onboarding_sessions" DROP COLUMN "tcsReferenceId"`);
|
33
|
+
await queryRunner.query(`ALTER TABLE "onboarding_sessions" DROP COLUMN "userHash"`);
|
34
|
+
await queryRunner.query(`ALTER TABLE "onboarding_sessions" ADD "created_at" timestamp DEFAULT CURRENT_TIMESTAMP NOT NULL`);
|
35
|
+
await queryRunner.query(`ALTER TABLE "onboarding_sessions" ADD "expires_at" timestamp NOT NULL`);
|
36
|
+
await queryRunner.query(`ALTER TABLE "onboarding_sessions" ADD "updated_at" timestamp DEFAULT CURRENT_TIMESTAMP NOT NULL`);
|
37
|
+
}
|
38
|
+
}
|
39
|
+
exports.Version111753088595569 = Version111753088595569;
|
40
|
+
//# sourceMappingURL=1753088595569-version11.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"1753088595569-version11.js","sourceRoot":"","sources":["../../src/migrations/1753088595569-version11.ts"],"names":[],"mappings":";;;AAEA,MAAa,sBAAsB;IAAnC;QACI,SAAI,GAAG,wBAAwB,CAAA;IAkCnC,CAAC;IAhCU,KAAK,CAAC,EAAE,CAAC,WAAwB;QACpC,MAAM,WAAW,CAAC,KAAK,CAAC,4DAA4D,CAAC,CAAC;QACtF,MAAM,WAAW,CAAC,KAAK,CAAC,4DAA4D,CAAC,CAAC;QACtF,MAAM,WAAW,CAAC,KAAK,CAAC,4DAA4D,CAAC,CAAC;QACtF,MAAM,WAAW,CAAC,KAAK,CAAC,wEAAwE,CAAC,CAAC;QAClG,MAAM,WAAW,CAAC,KAAK,CAAC,sEAAsE,CAAC,CAAC;QAChG,MAAM,WAAW,CAAC,KAAK,CAAC,mEAAmE,CAAC,CAAC;QAC7F,MAAM,WAAW,CAAC,KAAK,CAAC,yEAAyE,CAAC,CAAC;QACnG,MAAM,WAAW,CAAC,KAAK,CAAC,iFAAiF,CAAC,CAAC;QAC3G,MAAM,WAAW,CAAC,KAAK,CAAC,sEAAsE,CAAC,CAAC;QAChG,MAAM,WAAW,CAAC,KAAK,CAAC,gGAAgG,CAAC,CAAC;QAC1H,MAAM,WAAW,CAAC,KAAK,CAAC,gGAAgG,CAAC,CAAC;QAC1H,MAAM,WAAW,CAAC,KAAK,CAAC,mEAAmE,CAAC,CAAC;QAC7F,MAAM,WAAW,CAAC,KAAK,CAAC,6FAA6F,CAAC,CAAC;IAC3H,CAAC;IAEM,KAAK,CAAC,IAAI,CAAC,WAAwB;QACtC,MAAM,WAAW,CAAC,KAAK,CAAC,mEAAmE,CAAC,CAAC;QAC7F,MAAM,WAAW,CAAC,KAAK,CAAC,qFAAqF,CAAC,CAAC;QAC/G,MAAM,WAAW,CAAC,KAAK,CAAC,2DAA2D,CAAC,CAAC;QACrF,MAAM,WAAW,CAAC,KAAK,CAAC,2DAA2D,CAAC,CAAC;QACrF,MAAM,WAAW,CAAC,KAAK,CAAC,2DAA2D,CAAC,CAAC;QACrF,MAAM,WAAW,CAAC,KAAK,CAAC,+DAA+D,CAAC,CAAC;QACzF,MAAM,WAAW,CAAC,KAAK,CAAC,2DAA2D,CAAC,CAAC;QACrF,MAAM,WAAW,CAAC,KAAK,CAAC,6DAA6D,CAAC,CAAC;QACvF,MAAM,WAAW,CAAC,KAAK,CAAC,gEAAgE,CAAC,CAAC;QAC1F,MAAM,WAAW,CAAC,KAAK,CAAC,0DAA0D,CAAC,CAAC;QACpF,MAAM,WAAW,CAAC,KAAK,CAAC,iGAAiG,CAAC,CAAC;QAC3H,MAAM,WAAW,CAAC,KAAK,CAAC,uEAAuE,CAAC,CAAC;QACjG,MAAM,WAAW,CAAC,KAAK,CAAC,iGAAiG,CAAC,CAAC;IAC/H,CAAC;CAEJ;AAnCD,wDAmCC"}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.Version121753088595569 = void 0;
|
4
|
+
class Version121753088595569 {
|
5
|
+
constructor() {
|
6
|
+
this.name = 'Version121753088595569';
|
7
|
+
}
|
8
|
+
async up(queryRunner) {
|
9
|
+
await queryRunner.query(`DROP TABLE "user_onboarding_progress"`);
|
10
|
+
}
|
11
|
+
async down(queryRunner) {
|
12
|
+
await queryRunner.query(`CREATE TABLE "user_onboarding_progress" ("id" varchar2(36), "session_id" varchar2(128) NOT NULL, "user_id" varchar2(128), "step" varchar2(64) NOT NULL, "completed_steps" varchar2(2000) DEFAULT '[]', "created_at" timestamp DEFAULT CURRENT_TIMESTAMP NOT NULL, "updated_at" timestamp DEFAULT CURRENT_TIMESTAMP, CONSTRAINT "UQ_4c080c03bb2bc39f4313556a622" UNIQUE ("session_id"), CONSTRAINT "PK_aa1c75812d27f2d79ba3306d0c1" PRIMARY KEY ("id"))`);
|
13
|
+
}
|
14
|
+
}
|
15
|
+
exports.Version121753088595569 = Version121753088595569;
|
16
|
+
//# sourceMappingURL=1753088595569-version12.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"1753088595569-version12.js","sourceRoot":"","sources":["../../src/migrations/1753088595569-version12.ts"],"names":[],"mappings":";;;AAEA,MAAa,sBAAsB;IAAnC;QACI,SAAI,GAAG,wBAAwB,CAAA;IAWnC,CAAC;IATU,KAAK,CAAC,EAAE,CAAC,WAAwB;QACpC,MAAM,WAAW,CAAC,KAAK,CAAC,uCAAuC,CAAC,CAAC;IAErE,CAAC;IAEM,KAAK,CAAC,IAAI,CAAC,WAAwB;QACtC,MAAM,WAAW,CAAC,KAAK,CAAC,wbAAwb,CAAC,CAAC;IACtd,CAAC;CAEJ;AAZD,wDAYC"}
|