fix
Deploy app frontend / app frontend (push) Successful in 2m40s
Deploy db-migrations / db-migrations (push) Successful in 1m8s
Deploy service message-delivery-method-web-push / service message-delivery-method-web-push (push) Successful in 1m30s
Deploy service tg-bot / service tg-bot (push) Failing after 1m51s
Deploy app frontend / app frontend (push) Successful in 2m40s
Deploy db-migrations / db-migrations (push) Successful in 1m8s
Deploy service message-delivery-method-web-push / service message-delivery-method-web-push (push) Successful in 1m30s
Deploy service tg-bot / service tg-bot (push) Failing after 1m51s
This commit is contained in:
@@ -22,6 +22,6 @@
|
||||
"@hereconnect/types": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"typescript": "~5.6.3"
|
||||
"typescript": "~5.7.2"
|
||||
}
|
||||
}
|
||||
@@ -43,6 +43,6 @@
|
||||
"eslint-config-prettier": "^9.1.0",
|
||||
"eslint-plugin-prettier": "^5.2.1",
|
||||
"prettier": "^3.4.1",
|
||||
"typescript": "^5.7.2"
|
||||
"typescript": "~5.7.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"target": "ES2020",
|
||||
"module": "ESNext",
|
||||
"lib": ["DOM", "ES2020"],
|
||||
"outDir": "dist",
|
||||
"outDir": "./dist",
|
||||
"strict": true,
|
||||
"moduleResolution": "node",
|
||||
"esModuleInterop": true,
|
||||
|
||||
@@ -20,6 +20,6 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^20.17.6",
|
||||
"typescript": "~5.6.3"
|
||||
"typescript": "~5.7.2"
|
||||
}
|
||||
}
|
||||
@@ -1,22 +1,26 @@
|
||||
{
|
||||
"name": "@hereconnect/lib-service-seq-tracker",
|
||||
"version": "1.0.0",
|
||||
"main": "src/serviceSeqTracker.ts",
|
||||
"main": "dist/serviceSeqTracker.js",
|
||||
"types": "dist/serviceSeqTracker.d.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./src/serviceSeqTracker.ts",
|
||||
"default": "./src/serviceSeqTracker.ts"
|
||||
"import": "./dist/serviceSeqTracker.js",
|
||||
"types": "./dist/serviceSeqTracker.d.ts",
|
||||
"default": "./dist/serviceSeqTracker.js"
|
||||
}
|
||||
},
|
||||
"files": ["src/**/*"],
|
||||
"files": [
|
||||
"src/**/*"
|
||||
],
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"lint": "tsc --noEmit src/serviceSeqTracker.ts",
|
||||
"build": "pnpm run lint"
|
||||
"build": "tsc",
|
||||
"prepare": "npm run build"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "~5.6.3",
|
||||
"@types/node": "^20.17.6",
|
||||
"@types/pouchdb-core": "^7.0.15"
|
||||
"@types/pouchdb-core": "^7.0.15",
|
||||
"typescript": "~5.7.2"
|
||||
}
|
||||
}
|
||||
@@ -1,10 +1,14 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"declaration": true,
|
||||
"emitDeclarationOnly": true,
|
||||
"target": "ESNext",
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "node",
|
||||
"outDir": "./dist",
|
||||
"strict": true,
|
||||
"types": ["node"]
|
||||
"esModuleInterop": true,
|
||||
"skipLibCheck": true
|
||||
},
|
||||
"include": ["index.ts"]
|
||||
}
|
||||
"include": ["src/serviceSeqTracker.ts"],
|
||||
"exclude": ["node_modules", "dist"]
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"compilerOptions": {
|
||||
"target": "ES5",
|
||||
"module": "CommonJS",
|
||||
"outDir": "dist",
|
||||
"outDir": "./dist",
|
||||
"strict": true,
|
||||
"moduleResolution": "node",
|
||||
"esModuleInterop": true,
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
"prepare": "npm run build"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"typescript": "~5.6.3",
|
||||
"typescript": "~5.7.2",
|
||||
"@types/web-push": "^3.6.4"
|
||||
}
|
||||
}
|
||||
@@ -28,7 +28,7 @@ export interface MessageDocument extends BaseDocument {
|
||||
user_uuid: string;
|
||||
|
||||
/** Идентификатор браузера, отправившего сообщение */
|
||||
browser_uuid: string;
|
||||
browser_uuid?: string;
|
||||
|
||||
/** Вложения, такие как фото */
|
||||
// _attachments?: {
|
||||
|
||||
Reference in New Issue
Block a user