From 54579d0d49a43dcbd6fb7720a34ade9f3f9aac3e Mon Sep 17 00:00:00 2001 From: Andrey Platov Date: Sun, 8 Aug 2021 11:32:34 +0200 Subject: [PATCH 01/13] initial login lambda contribution Signed-off-by: Andrey Platov --- cloud/app/index.ts | 60 +++++++++++++++++++++++-------- common/config/rush/pnpm-lock.yaml | 29 ++++++++++++--- dev/account/.eslintrc.js | 6 ++++ dev/account/.npmignore | 4 +++ dev/account/config/rig.json | 18 ++++++++++ dev/account/package.json | 24 +++++++++++++ dev/account/src/account.ts | 15 ++++++++ dev/account/src/index.ts | 22 ++++++++++++ dev/account/tsconfig.json | 8 +++++ rush.json | 5 +++ 10 files changed, 172 insertions(+), 19 deletions(-) create mode 100644 dev/account/.eslintrc.js create mode 100644 dev/account/.npmignore create mode 100644 dev/account/config/rig.json create mode 100644 dev/account/package.json create mode 100644 dev/account/src/account.ts create mode 100644 dev/account/src/index.ts create mode 100644 dev/account/tsconfig.json diff --git a/cloud/app/index.ts b/cloud/app/index.ts index 633c10f68e5..0c9bac8d593 100644 --- a/cloud/app/index.ts +++ b/cloud/app/index.ts @@ -1,5 +1,6 @@ import * as pulumi from '@pulumi/pulumi' import * as aws from '@pulumi/aws' +import * as awsx from '@pulumi/awsx' import * as cloud from '@pulumi/cloud' import { getType } from 'mime' @@ -41,21 +42,6 @@ createObjects(buildDir + '/dist', '') export const bucketName = siteBucket.bucket // create a stack export for bucket name export const websiteUrl = siteBucket.websiteEndpoint -// D O C K E R - -const service = new cloud.Service("dev-server", { - containers: { - server: { - build: "./dev-server", - memory: 128, - ports: [{ port: 3333 }], - }, - }, - replicas: 1, -}) - -export const serverEndpoint = service.defaultEndpoint.hostname - // // Create an S3 Bucket Policy to allow public read of all objects in bucket // // This reusable function can be pulled out into its own module // function publicReadPolicyForBucket(bucketName: string) { @@ -81,6 +67,50 @@ export const serverEndpoint = service.defaultEndpoint.hostname // // transform the siteBucket.bucket output property -- see explanation below // }); +// D O C K E R + +const service = new cloud.Service("dev-server", { + containers: { + server: { + build: "./dev-server", + memory: 128, + ports: [{ port: 3333 }], + }, + }, + replicas: 1, +}) + +export const serverEndpoint = service.defaultEndpoint.hostname + +// +// L O G I N +// + +// Define a new GET endpoint that just returns a 200 and "hello" in the body. +const api = new awsx.apigateway.API("login", { + routes: [{ + path: "/", + method: "POST", + eventHandler: async (event) => { + if (event.body === null) { + return { statusCode: 401, body: '' } + } + const req = JSON.parse(event.body) + return { + statusCode: 200, + body: "Hello, API Gateway!", + } + }, + }], +}) + +// Export the auto-generated API Gateway base URL. +export const url = api.url + +// +// D N S +// + // Get the hosted zone by domain name const zoneId = aws.route53.getZone({ name: "hc.engineering." }).then(zone => zone.zoneId) diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index e7a560b6410..b0afacdecb8 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -10,6 +10,7 @@ specifiers: '@rush-temp/contact': file:./projects/contact.tgz '@rush-temp/contact-resources': file:./projects/contact-resources.tgz '@rush-temp/core': file:./projects/core.tgz + '@rush-temp/dev-account': file:./projects/dev-account.tgz '@rush-temp/dev-client-resources': file:./projects/dev-client-resources.tgz '@rush-temp/dev-server': file:./projects/dev-server.tgz '@rush-temp/dev-server-chunter-resources': file:./projects/dev-server-chunter-resources.tgz @@ -108,6 +109,7 @@ dependencies: '@rush-temp/contact': file:projects/contact.tgz_6c259fadfeb3a4b20890aefe87070b8b '@rush-temp/contact-resources': file:projects/contact-resources.tgz_c38cf1a7a413db8918b0b4754c21e4c5 '@rush-temp/core': file:projects/core.tgz_6c259fadfeb3a4b20890aefe87070b8b + '@rush-temp/dev-account': file:projects/dev-account.tgz_6c259fadfeb3a4b20890aefe87070b8b '@rush-temp/dev-client-resources': file:projects/dev-client-resources.tgz_6c259fadfeb3a4b20890aefe87070b8b '@rush-temp/dev-server': file:projects/dev-server.tgz_6c259fadfeb3a4b20890aefe87070b8b '@rush-temp/dev-server-chunter-resources': file:projects/dev-server-chunter-resources.tgz_6c259fadfeb3a4b20890aefe87070b8b @@ -8443,6 +8445,25 @@ packages: - typescript dev: false + file:projects/dev-account.tgz_6c259fadfeb3a4b20890aefe87070b8b: + resolution: {integrity: sha512-JgOQNgqk+nWDo+xJOQ1cDyAtOqh2vKY56EWohCcHQuSGKw2mgn1oMiZp1IhFwk36/QyjSok8wKM1hYh5fGIszQ==, tarball: file:projects/dev-account.tgz} + id: file:projects/dev-account.tgz + name: '@rush-temp/dev-account' + version: 0.0.0 + dependencies: + '@types/heft-jest': 1.0.2 + '@typescript-eslint/eslint-plugin': 4.28.5_a8e83fcad666e1ba86be4b2e27a20aea + eslint: 7.32.0 + eslint-plugin-import: 2.23.4_eslint@7.32.0 + eslint-plugin-node: 11.1.0_eslint@7.32.0 + eslint-plugin-promise: 4.3.1 + simplytyped: 3.3.0_typescript@4.3.5 + transitivePeerDependencies: + - '@typescript-eslint/parser' + - supports-color + - typescript + dev: false + file:projects/dev-client-resources.tgz_6c259fadfeb3a4b20890aefe87070b8b: resolution: {integrity: sha512-biw7Qe9DoDRjkgmEJ4Dl1MAxSzzm580Eb3cqU5ISPSrJ+1EIR+RqUf7W7fwN+PQQuZHy24/mR/tm6P2w8zJnwQ==, tarball: file:projects/dev-client-resources.tgz} id: file:projects/dev-client-resources.tgz @@ -8568,7 +8589,7 @@ packages: dev: false file:projects/model-all.tgz_6c259fadfeb3a4b20890aefe87070b8b: - resolution: {integrity: sha512-/GpWvrrVnXqWzYe7by1474pdG116the3TcAf7ArVScAYYXQaCwHb3gu84q0ZHR6fqt2ToFVkK9a/MlVmjDzujw==, tarball: file:projects/model-all.tgz} + resolution: {integrity: sha512-4167bgbH5r0vJ6Vz20Qunizln+miaa7pLi5zFnF87WiBq7Vj1YcgALIJZlzQsHbXKeJgtTuZF9emX6c9Rhu52w==, tarball: file:projects/model-all.tgz} id: file:projects/model-all.tgz name: '@rush-temp/model-all' version: 0.0.0 @@ -8641,7 +8662,7 @@ packages: dev: false file:projects/model-demo.tgz_6c259fadfeb3a4b20890aefe87070b8b: - resolution: {integrity: sha512-yLHv7bqAq3BIwxE5T5bQ+l/aiCUp6rB06I8rJmJGs64U7QGOt4WNzv/9yxf5Fvq3FPxBApWjqDLWSUHAIs3+bg==, tarball: file:projects/model-demo.tgz} + resolution: {integrity: sha512-iWM9a2RmUcjpMTWmw2GNxYCA2krfK9os9qIrnyaktafwXwDAfgt9apVaGnhUgNWzDe+0SNS3VbuoXehAWgwB0g==, tarball: file:projects/model-demo.tgz} id: file:projects/model-demo.tgz name: '@rush-temp/model-demo' version: 0.0.0 @@ -8695,7 +8716,7 @@ packages: dev: false file:projects/model-server-chunter.tgz_6c259fadfeb3a4b20890aefe87070b8b: - resolution: {integrity: sha512-eVwDSJ253ybGmhHs8SvB7MxIGzJ36gf7pdTHT8W6STWcg53NEdMkf99M81dhgkJH9F6frpkH2sE+MAONNy5/mA==, tarball: file:projects/model-server-chunter.tgz} + resolution: {integrity: sha512-9w+dSGnK3lVyefpXR+04A+A9p8QFJM0mlec/cv1tAv4sp0ZUI1pA4VHb5AgyeeeaeCYmf501sKoGhZWD7hE4cQ==, tarball: file:projects/model-server-chunter.tgz} id: file:projects/model-server-chunter.tgz name: '@rush-temp/model-server-chunter' version: 0.0.0 @@ -8866,7 +8887,7 @@ packages: dev: false file:projects/prod.tgz_9242e79bee31c899aa4d2de67405a771: - resolution: {integrity: sha512-KwU2YgWoCY4XohrdVNdX9DrLtDBkUwkU+lZIwzCfFWazzxTFtyUpiDPY9WLNT+7l9yePGsEpcCxbyDLQFppznA==, tarball: file:projects/prod.tgz} + resolution: {integrity: sha512-KQSRGEoTWonc4rmGhs4AtWnwwXsnL8Kk33UR/8GsUoWZxaptU37ARq4/T04TLSsjIqnaImi8Edq3vyN/3Rnyyw==, tarball: file:projects/prod.tgz} id: file:projects/prod.tgz name: '@rush-temp/prod' version: 0.0.0 diff --git a/dev/account/.eslintrc.js b/dev/account/.eslintrc.js new file mode 100644 index 00000000000..89f8151bd4e --- /dev/null +++ b/dev/account/.eslintrc.js @@ -0,0 +1,6 @@ +module.exports = { + extends: ['./node_modules/@anticrm/platform-rig/profiles/default/config/eslint.config.json'], + parserOptions: { + project: './tsconfig.json' + } +} \ No newline at end of file diff --git a/dev/account/.npmignore b/dev/account/.npmignore new file mode 100644 index 00000000000..e3ec093c383 --- /dev/null +++ b/dev/account/.npmignore @@ -0,0 +1,4 @@ +* +!/lib/** +!CHANGELOG.md +/lib/**/__tests__/ diff --git a/dev/account/config/rig.json b/dev/account/config/rig.json new file mode 100644 index 00000000000..af1257a8969 --- /dev/null +++ b/dev/account/config/rig.json @@ -0,0 +1,18 @@ +// The "rig.json" file directs tools to look for their config files in an external package. +// Documentation for this system: https://www.npmjs.com/package/@rushstack/rig-package +{ + "$schema": "https://developer.microsoft.com/json-schemas/rig-package/rig.schema.json", + + /** + * (Required) The name of the rig package to inherit from. + * It should be an NPM package name with the "-rig" suffix. + */ + "rigPackageName": "@anticrm/platform-rig" + + /** + * (Optional) Selects a config profile from the rig package. The name must consist of + * lowercase alphanumeric words separated by hyphens, for example "sample-profile". + * If omitted, then the "default" profile will be used." + */ + // "rigProfile": "your-profile-name" +} diff --git a/dev/account/package.json b/dev/account/package.json new file mode 100644 index 00000000000..bc359e318ae --- /dev/null +++ b/dev/account/package.json @@ -0,0 +1,24 @@ +{ + "name": "@anticrm/dev-account", + "version": "0.6.0", + "main": "lib/index.js", + "author": "Anticrm Platform Contributors", + "license": "EPL-2.0", + "scripts": { + "build": "heft build", + "lint:fix": "eslint --fix src" + }, + "devDependencies": { + "@anticrm/platform-rig":"~0.6.0", + "@types/heft-jest":"^1.0.2", + "@typescript-eslint/eslint-plugin":"4", + "eslint-plugin-import":"2", + "eslint-plugin-promise":"4", + "eslint-plugin-node":"11", + "eslint":"^7.32.0", + "simplytyped": "^3.3.0" + }, + "dependencies": { + "@anticrm/platform": "~0.6.0" + } +} diff --git a/dev/account/src/account.ts b/dev/account/src/account.ts new file mode 100644 index 00000000000..dd71a1868f0 --- /dev/null +++ b/dev/account/src/account.ts @@ -0,0 +1,15 @@ +// +// Copyright © 2020, 2021 Anticrm Platform Contributors. +// Copyright © 2021 Hardcore Engineering Inc. +// +// Licensed under the Eclipse Public License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. You may +// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// diff --git a/dev/account/src/index.ts b/dev/account/src/index.ts new file mode 100644 index 00000000000..6c93da4bd7b --- /dev/null +++ b/dev/account/src/index.ts @@ -0,0 +1,22 @@ +// +// Copyright © 2020, 2021 Anticrm Platform Contributors. +// Copyright © 2021 Hardcore Engineering Inc. +// +// Licensed under the Eclipse Public License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. You may +// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// + +/** + * @public + */ +export function handle (req: string | null): { statusCode: number, body: string } { + return { statusCode: 200, body: 'hello' } +} diff --git a/dev/account/tsconfig.json b/dev/account/tsconfig.json new file mode 100644 index 00000000000..aeb0517b138 --- /dev/null +++ b/dev/account/tsconfig.json @@ -0,0 +1,8 @@ +{ + "extends": "./node_modules/@anticrm/platform-rig/profiles/default/tsconfig.json", + + "compilerOptions": { + "rootDir": "./src", + "outDir": "./lib" + } +} \ No newline at end of file diff --git a/rush.json b/rush.json index d02107ade31..a5b9ffceb90 100644 --- a/rush.json +++ b/rush.json @@ -701,5 +701,10 @@ "projectFolder": "models/server-chunter", "shouldPublish": true }, + { + "packageName": "@anticrm/dev-account", + "projectFolder": "dev/account", + "shouldPublish": true + }, ] } From 973bdfd34dfdc1239ff5598a3241819618a427a4 Mon Sep 17 00:00:00 2001 From: Andrey Platov Date: Sun, 8 Aug 2021 11:34:08 +0200 Subject: [PATCH 02/13] publish `dev-account` Signed-off-by: Andrey Platov --- dev/account/CHANGELOG.json | 17 +++++++++++++++++ dev/account/CHANGELOG.md | 11 +++++++++++ dev/account/package.json | 2 +- 3 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 dev/account/CHANGELOG.json create mode 100644 dev/account/CHANGELOG.md diff --git a/dev/account/CHANGELOG.json b/dev/account/CHANGELOG.json new file mode 100644 index 00000000000..54c235fda98 --- /dev/null +++ b/dev/account/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/dev-account", + "entries": [ + { + "version": "0.6.1", + "tag": "@anticrm/dev-account_v0.6.1", + "date": "Sun, 08 Aug 2021 09:33:36 GMT", + "comments": { + "patch": [ + { + "comment": "Initial implementation" + } + ] + } + } + ] +} diff --git a/dev/account/CHANGELOG.md b/dev/account/CHANGELOG.md new file mode 100644 index 00000000000..00e76aa1cff --- /dev/null +++ b/dev/account/CHANGELOG.md @@ -0,0 +1,11 @@ +# Change Log - @anticrm/dev-account + +This log was last generated on Sun, 08 Aug 2021 09:33:36 GMT and should not be manually modified. + +## 0.6.1 +Sun, 08 Aug 2021 09:33:36 GMT + +### Patches + +- Initial implementation + diff --git a/dev/account/package.json b/dev/account/package.json index bc359e318ae..60d461b3d55 100644 --- a/dev/account/package.json +++ b/dev/account/package.json @@ -1,6 +1,6 @@ { "name": "@anticrm/dev-account", - "version": "0.6.0", + "version": "0.6.1", "main": "lib/index.js", "author": "Anticrm Platform Contributors", "license": "EPL-2.0", From 646cffeb612c4b56736719294cff9ed989bb4b7d Mon Sep 17 00:00:00 2001 From: Andrey Platov Date: Sun, 8 Aug 2021 12:14:18 +0200 Subject: [PATCH 03/13] initial implementation Signed-off-by: Andrey Platov --- cloud/app/index.ts | 11 ++--- cloud/app/package-lock.json | 75 +++++++++++++++++++++++++++++++ cloud/app/package.json | 1 + common/config/rush/pnpm-lock.yaml | 3 +- dev/account/package.json | 3 +- dev/account/src/account.ts | 34 ++++++++++++++ dev/account/src/index.ts | 9 +++- packages/platform/src/index.ts | 2 + packages/platform/src/platform.ts | 8 ++-- 9 files changed, 130 insertions(+), 16 deletions(-) diff --git a/cloud/app/index.ts b/cloud/app/index.ts index 0c9bac8d593..f8c2d501c77 100644 --- a/cloud/app/index.ts +++ b/cloud/app/index.ts @@ -8,6 +8,8 @@ import { getType } from 'mime' import { readdirSync, lstatSync } from 'fs' import { join } from 'path' +import { handle } from '@anticrm/dev-account' + const siteBucket = new aws.s3.Bucket('anticrm-app', { acl: "public-read", website: { @@ -92,14 +94,7 @@ const api = new awsx.apigateway.API("login", { path: "/", method: "POST", eventHandler: async (event) => { - if (event.body === null) { - return { statusCode: 401, body: '' } - } - const req = JSON.parse(event.body) - return { - statusCode: 200, - body: "Hello, API Gateway!", - } + return handle(event.body, serverEndpoint) }, }], }) diff --git a/cloud/app/package-lock.json b/cloud/app/package-lock.json index ed23182807d..505266257ca 100644 --- a/cloud/app/package-lock.json +++ b/cloud/app/package-lock.json @@ -3,6 +3,66 @@ "requires": true, "lockfileVersion": 1, "dependencies": { + "@anticrm/dev-account": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/@anticrm/dev-account/-/dev-account-0.6.1.tgz", + "integrity": "sha512-98OTYTLxjmi4/CN0Fq8ClM/d9jZbsFIy7BFAWi5+GT2kkSFtZq/vwjaJSLIIsCxalXC0Dv6cTVaypY6sOwgI3g==", + "requires": { + "@anticrm/platform": "~0.6.0" + } + }, + "@anticrm/platform": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/@anticrm/platform/-/platform-0.6.3.tgz", + "integrity": "sha512-gLjxO2Oa9P5x69NZ11gQ+JNB2texUT/MNilsZcf5OP13nJiFfTEhjXnYw+JCc0GnYOTIhKwycPUJJl0kISGeXA==", + "requires": { + "intl-messageformat": "^9.7.1" + } + }, + "@formatjs/ecma402-abstract": { + "version": "1.9.6", + "resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-1.9.6.tgz", + "integrity": "sha512-fgXUydhzng3JCSm3HB1bt01m1otnMybX4b/CEI/fJRPvzgtq5XwV2qW/WQQdOLTr29/ttRHCEk2Mb9IP5K/PjQ==", + "requires": { + "@formatjs/intl-localematcher": "0.2.19", + "tslib": "^2.1.0" + } + }, + "@formatjs/fast-memoize": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@formatjs/fast-memoize/-/fast-memoize-1.1.2.tgz", + "integrity": "sha512-HfN6D9yd9vhypWwTVpJHqoSb50KFuoxZ2ZS6AM1XNSyihWk7JJXjZ3mgvboJU4eNSsdxAWwR1ke5KIOobEVwBA==", + "requires": { + "tslib": "^2.1.0" + } + }, + "@formatjs/icu-messageformat-parser": { + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.0.9.tgz", + "integrity": "sha512-L1a4W7Tbk41EjENYLLeYy1B9mX85kP6Wx2bzF/VLkGOk2bkFSEFzyb2XtYuklMzWhgka665LhxyPyJy3Ktpq6A==", + "requires": { + "@formatjs/ecma402-abstract": "1.9.6", + "@formatjs/icu-skeleton-parser": "1.2.10", + "tslib": "^2.1.0" + } + }, + "@formatjs/icu-skeleton-parser": { + "version": "1.2.10", + "resolved": "https://registry.npmjs.org/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.2.10.tgz", + "integrity": "sha512-S96jf8V2SLBhjN7zTJ9xsroOOxS+STKtrjKKmF84+PAEGYAn5qlP62k9mbR0ir2cY80WNB5ehUmeDbo0plAkqg==", + "requires": { + "@formatjs/ecma402-abstract": "1.9.6", + "tslib": "^2.1.0" + } + }, + "@formatjs/intl-localematcher": { + "version": "0.2.19", + "resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.2.19.tgz", + "integrity": "sha512-eyrTiqciBSBfwx6PyyVJCEhXeAOXVJWWlvyR0Lx7OkTikWIrqhl8VIifyq3wwBiCMPOyCDN1ccik9VBdGcDiHA==", + "requires": { + "tslib": "^2.1.0" + } + }, "@grpc/grpc-js": { "version": "1.3.4", "resolved": "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.3.4.tgz", @@ -461,6 +521,16 @@ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, + "intl-messageformat": { + "version": "9.8.2", + "resolved": "https://registry.npmjs.org/intl-messageformat/-/intl-messageformat-9.8.2.tgz", + "integrity": "sha512-Qjefia3jFUML9XWRl0G3VAeiMUX7GiWvKcY9EQZJCkX8eLbe1HvLOPQvMQ5UlQLrnis1qk1BcQqbpPPvWnM2iw==", + "requires": { + "@formatjs/fast-memoize": "1.1.2", + "@formatjs/icu-messageformat-parser": "2.0.9", + "tslib": "^2.1.0" + } + }, "is-bigint": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.2.tgz", @@ -862,6 +932,11 @@ } } }, + "tslib": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz", + "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==" + }, "type-is": { "version": "1.6.18", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", diff --git a/cloud/app/package.json b/cloud/app/package.json index ec035c5daa4..04660a22940 100644 --- a/cloud/app/package.json +++ b/cloud/app/package.json @@ -5,6 +5,7 @@ "@types/mime": "^2.0.3" }, "dependencies": { + "@anticrm/dev-account": "^0.6.1", "@pulumi/aws": "^4.11.0", "@pulumi/cloud": "^0.30.1", "@pulumi/cloud-aws": "^0.30.1", diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index b0afacdecb8..831b47fe1a3 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -8446,7 +8446,7 @@ packages: dev: false file:projects/dev-account.tgz_6c259fadfeb3a4b20890aefe87070b8b: - resolution: {integrity: sha512-JgOQNgqk+nWDo+xJOQ1cDyAtOqh2vKY56EWohCcHQuSGKw2mgn1oMiZp1IhFwk36/QyjSok8wKM1hYh5fGIszQ==, tarball: file:projects/dev-account.tgz} + resolution: {integrity: sha512-TAqsbX91LUYsbg1ZILddY2vOiup5qwFbo+TDusmlMJb55egEniPQPfqkblGoSQY4jbPYYH599YhRLbvpap9EYw==, tarball: file:projects/dev-account.tgz} id: file:projects/dev-account.tgz name: '@rush-temp/dev-account' version: 0.0.0 @@ -8457,6 +8457,7 @@ packages: eslint-plugin-import: 2.23.4_eslint@7.32.0 eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 4.3.1 + jwt-simple: 0.5.6 simplytyped: 3.3.0_typescript@4.3.5 transitivePeerDependencies: - '@typescript-eslint/parser' diff --git a/dev/account/package.json b/dev/account/package.json index 60d461b3d55..936f22cde0a 100644 --- a/dev/account/package.json +++ b/dev/account/package.json @@ -19,6 +19,7 @@ "simplytyped": "^3.3.0" }, "dependencies": { - "@anticrm/platform": "~0.6.0" + "@anticrm/platform": "~0.6.0", + "jwt-simple": "^0.5.6" } } diff --git a/dev/account/src/account.ts b/dev/account/src/account.ts index dd71a1868f0..cbb9fa9fb28 100644 --- a/dev/account/src/account.ts +++ b/dev/account/src/account.ts @@ -13,3 +13,37 @@ // See the License for the specific language governing permissions and // limitations under the License. // + +import type { Request, Response } from '@anticrm/platform' +import platform, { Status, Severity } from '@anticrm/platform' + +import { encode } from 'jwt-simple' + +interface LoginInfo { + token: string, + endpoint: string +} + +function login(endpoint: string, email: string, password: string, workspace: string): Response { + if (email !== 'rosamund@hc.engineering' && email !== 'elon@hc.engineering') { + return { error: new Status(Severity.ERROR, platform.status.Unauthorized, {}) } + } + + if (password !== '1111') { + return { error: new Status(Severity.ERROR, platform.status.Unauthorized, {}) } + } + + if (workspace !== 'ws1' && workspace !== 'ws2') { + return { error: new Status(Severity.ERROR, platform.status.Unauthorized, {}) } + } + + const token = encode({ email, workspace }, 'secret') + return { result: { token, endpoint } } +} + +export function handleRequest(req: Request, serverEndpoint: string): Response { + if (req.method === 'login') + return login(serverEndpoint, ...(req as Request<[string, string, string]>).params) + + return { error: new Status(Severity.ERROR, platform.status.BadRequest, {}) } +} diff --git a/dev/account/src/index.ts b/dev/account/src/index.ts index 6c93da4bd7b..1f9c95c1eab 100644 --- a/dev/account/src/index.ts +++ b/dev/account/src/index.ts @@ -14,9 +14,14 @@ // limitations under the License. // +import { handleRequest } from "./account" + /** * @public */ -export function handle (req: string | null): { statusCode: number, body: string } { - return { statusCode: 200, body: 'hello' } +export function handle (req: string | null, serverEndpoint: string): { statusCode: number, body: string } { + if (req === null) return { statusCode: 401, body: 'unauthorized' } + const resp = handleRequest(JSON.parse(req), serverEndpoint) + if (resp.error !== undefined) { return { statusCode: 401, body: '' } } + return { statusCode: 200, body: JSON.stringify(resp.result) } } diff --git a/packages/platform/src/index.ts b/packages/platform/src/index.ts index 12c6b26d0cc..8dc426870ff 100644 --- a/packages/platform/src/index.ts +++ b/packages/platform/src/index.ts @@ -43,3 +43,5 @@ export type URL = string * @public */ export type Asset = Metadata + +export { default } from './platform' diff --git a/packages/platform/src/platform.ts b/packages/platform/src/platform.ts index 055eeb88e05..a155dd3dd2b 100644 --- a/packages/platform/src/platform.ts +++ b/packages/platform/src/platform.ts @@ -134,9 +134,9 @@ export default plugin(platformId, { NoLoaderForStrings: '' as StatusCode<{ plugin: Plugin }>, - BadRequest: '' as StatusCode - // Forbidden: '' as StatusCode, - // Unauthorized: '' as StatusCode, - // UnknownMethod: '' as StatusCode<{ method: string }> + BadRequest: '' as StatusCode, + Forbidden: '' as StatusCode, + Unauthorized: '' as StatusCode, + UnknownMethod: '' as StatusCode<{ method: string }> } }) From 4700db04b503bada48ba012470630383e19e5fa8 Mon Sep 17 00:00:00 2001 From: Andrey Platov Date: Sun, 8 Aug 2021 12:15:54 +0200 Subject: [PATCH 04/13] publish `platform` & `dev-account` Signed-off-by: Andrey Platov --- dev/account/CHANGELOG.json | 17 +++++++++++++++++ dev/account/CHANGELOG.md | 9 ++++++++- dev/account/package.json | 4 ++-- dev/client-resources/CHANGELOG.json | 17 +++++++++++++++++ dev/client-resources/CHANGELOG.md | 9 +++++++++ dev/client-resources/package.json | 2 +- dev/prod/CHANGELOG.json | 17 +++++++++++++++++ dev/prod/CHANGELOG.md | 9 +++++++++ dev/prod/package.json | 2 +- dev/server-chunter-resources/CHANGELOG.json | 17 +++++++++++++++++ dev/server-chunter-resources/CHANGELOG.md | 9 +++++++++ dev/server-chunter-resources/package.json | 2 +- dev/server/package.json | 2 +- dev/storage/package.json | 2 +- models/chunter/CHANGELOG.json | 17 +++++++++++++++++ models/chunter/CHANGELOG.md | 9 +++++++++ models/chunter/package.json | 2 +- models/contact/CHANGELOG.json | 17 +++++++++++++++++ models/contact/CHANGELOG.md | 9 +++++++++ models/contact/package.json | 2 +- models/core/CHANGELOG.json | 17 +++++++++++++++++ models/core/CHANGELOG.md | 9 +++++++++ models/core/package.json | 2 +- models/demo/CHANGELOG.json | 17 +++++++++++++++++ models/demo/CHANGELOG.md | 9 +++++++++ models/demo/package.json | 2 +- models/recruit/CHANGELOG.json | 17 +++++++++++++++++ models/recruit/CHANGELOG.md | 9 +++++++++ models/recruit/package.json | 2 +- models/server-chunter/CHANGELOG.json | 17 +++++++++++++++++ models/server-chunter/CHANGELOG.md | 9 +++++++++ models/server-chunter/package.json | 2 +- models/server-core/CHANGELOG.json | 17 +++++++++++++++++ models/server-core/CHANGELOG.md | 9 +++++++++ models/server-core/package.json | 2 +- models/task/CHANGELOG.json | 17 +++++++++++++++++ models/task/CHANGELOG.md | 9 +++++++++ models/task/package.json | 2 +- models/view/CHANGELOG.json | 17 +++++++++++++++++ models/view/CHANGELOG.md | 9 +++++++++ models/view/package.json | 2 +- models/workbench/CHANGELOG.json | 17 +++++++++++++++++ models/workbench/CHANGELOG.md | 9 +++++++++ models/workbench/package.json | 2 +- packages/core/package.json | 2 +- packages/model/CHANGELOG.json | 17 +++++++++++++++++ packages/model/CHANGELOG.md | 9 +++++++++ packages/model/package.json | 2 +- packages/platform/CHANGELOG.json | 12 ++++++++++++ packages/platform/CHANGELOG.md | 9 ++++++++- packages/platform/package.json | 2 +- packages/presentation/CHANGELOG.json | 17 +++++++++++++++++ packages/presentation/CHANGELOG.md | 9 +++++++++ packages/presentation/package.json | 2 +- packages/query/CHANGELOG.json | 17 +++++++++++++++++ packages/query/CHANGELOG.md | 9 +++++++++ packages/query/package.json | 2 +- packages/ui/CHANGELOG.json | 17 +++++++++++++++++ packages/ui/CHANGELOG.md | 9 +++++++++ packages/ui/package.json | 2 +- plugins/chunter-assets/CHANGELOG.json | 17 +++++++++++++++++ plugins/chunter-assets/CHANGELOG.md | 9 +++++++++ plugins/chunter-assets/package.json | 2 +- plugins/chunter-resources/CHANGELOG.json | 17 +++++++++++++++++ plugins/chunter-resources/CHANGELOG.md | 9 +++++++++ plugins/chunter-resources/package.json | 2 +- plugins/chunter/CHANGELOG.json | 17 +++++++++++++++++ plugins/chunter/CHANGELOG.md | 9 +++++++++ plugins/chunter/package.json | 2 +- plugins/client-resources/CHANGELOG.json | 17 +++++++++++++++++ plugins/client-resources/CHANGELOG.md | 9 +++++++++ plugins/client-resources/package.json | 2 +- plugins/client/CHANGELOG.json | 17 +++++++++++++++++ plugins/client/CHANGELOG.md | 9 +++++++++ plugins/client/package.json | 2 +- plugins/contact-resources/CHANGELOG.json | 17 +++++++++++++++++ plugins/contact-resources/CHANGELOG.md | 9 +++++++++ plugins/contact-resources/package.json | 2 +- plugins/contact/CHANGELOG.json | 17 +++++++++++++++++ plugins/contact/CHANGELOG.md | 9 +++++++++ plugins/contact/package.json | 2 +- plugins/login-assets/CHANGELOG.json | 17 +++++++++++++++++ plugins/login-assets/CHANGELOG.md | 9 +++++++++ plugins/login-assets/package.json | 2 +- plugins/login-resources/CHANGELOG.json | 17 +++++++++++++++++ plugins/login-resources/CHANGELOG.md | 9 +++++++++ plugins/login-resources/package.json | 2 +- plugins/login/CHANGELOG.json | 17 +++++++++++++++++ plugins/login/CHANGELOG.md | 9 +++++++++ plugins/login/package.json | 2 +- plugins/recruit-assets/CHANGELOG.json | 17 +++++++++++++++++ plugins/recruit-assets/CHANGELOG.md | 9 +++++++++ plugins/recruit-assets/package.json | 2 +- plugins/recruit-resources/CHANGELOG.json | 17 +++++++++++++++++ plugins/recruit-resources/CHANGELOG.md | 9 +++++++++ plugins/recruit-resources/package.json | 2 +- plugins/recruit/CHANGELOG.json | 17 +++++++++++++++++ plugins/recruit/CHANGELOG.md | 9 +++++++++ plugins/recruit/package.json | 2 +- plugins/task-assets/CHANGELOG.json | 17 +++++++++++++++++ plugins/task-assets/CHANGELOG.md | 9 +++++++++ plugins/task-assets/package.json | 2 +- plugins/task-resources/CHANGELOG.json | 17 +++++++++++++++++ plugins/task-resources/CHANGELOG.md | 9 +++++++++ plugins/task-resources/package.json | 2 +- plugins/task/CHANGELOG.json | 17 +++++++++++++++++ plugins/task/CHANGELOG.md | 9 +++++++++ plugins/task/package.json | 2 +- plugins/view-assets/CHANGELOG.json | 17 +++++++++++++++++ plugins/view-assets/CHANGELOG.md | 9 +++++++++ plugins/view-assets/package.json | 2 +- plugins/view-resources/CHANGELOG.json | 17 +++++++++++++++++ plugins/view-resources/CHANGELOG.md | 9 +++++++++ plugins/view-resources/package.json | 2 +- plugins/view/CHANGELOG.json | 17 +++++++++++++++++ plugins/view/CHANGELOG.md | 9 +++++++++ plugins/view/package.json | 2 +- plugins/workbench-resources/CHANGELOG.json | 17 +++++++++++++++++ plugins/workbench-resources/CHANGELOG.md | 9 +++++++++ plugins/workbench-resources/package.json | 2 +- plugins/workbench/CHANGELOG.json | 17 +++++++++++++++++ plugins/workbench/CHANGELOG.md | 9 +++++++++ plugins/workbench/package.json | 2 +- server/chunter/CHANGELOG.json | 17 +++++++++++++++++ server/chunter/CHANGELOG.md | 9 +++++++++ server/chunter/package.json | 2 +- server/core/CHANGELOG.json | 17 +++++++++++++++++ server/core/CHANGELOG.md | 9 +++++++++ server/core/package.json | 2 +- server/server/CHANGELOG.json | 17 +++++++++++++++++ server/server/CHANGELOG.md | 9 +++++++++ server/server/package.json | 2 +- server/ws/package.json | 2 +- 133 files changed, 1159 insertions(+), 50 deletions(-) create mode 100644 dev/client-resources/CHANGELOG.json create mode 100644 dev/client-resources/CHANGELOG.md create mode 100644 dev/prod/CHANGELOG.json create mode 100644 dev/prod/CHANGELOG.md create mode 100644 dev/server-chunter-resources/CHANGELOG.json create mode 100644 dev/server-chunter-resources/CHANGELOG.md create mode 100644 models/chunter/CHANGELOG.json create mode 100644 models/chunter/CHANGELOG.md create mode 100644 models/contact/CHANGELOG.json create mode 100644 models/contact/CHANGELOG.md create mode 100644 models/core/CHANGELOG.json create mode 100644 models/core/CHANGELOG.md create mode 100644 models/demo/CHANGELOG.json create mode 100644 models/demo/CHANGELOG.md create mode 100644 models/recruit/CHANGELOG.json create mode 100644 models/recruit/CHANGELOG.md create mode 100644 models/server-chunter/CHANGELOG.json create mode 100644 models/server-chunter/CHANGELOG.md create mode 100644 models/server-core/CHANGELOG.json create mode 100644 models/server-core/CHANGELOG.md create mode 100644 models/task/CHANGELOG.json create mode 100644 models/task/CHANGELOG.md create mode 100644 models/view/CHANGELOG.json create mode 100644 models/view/CHANGELOG.md create mode 100644 models/workbench/CHANGELOG.json create mode 100644 models/workbench/CHANGELOG.md create mode 100644 packages/model/CHANGELOG.json create mode 100644 packages/model/CHANGELOG.md create mode 100644 packages/presentation/CHANGELOG.json create mode 100644 packages/presentation/CHANGELOG.md create mode 100644 packages/query/CHANGELOG.json create mode 100644 packages/query/CHANGELOG.md create mode 100644 packages/ui/CHANGELOG.json create mode 100644 packages/ui/CHANGELOG.md create mode 100644 plugins/chunter-assets/CHANGELOG.json create mode 100644 plugins/chunter-assets/CHANGELOG.md create mode 100644 plugins/chunter-resources/CHANGELOG.json create mode 100644 plugins/chunter-resources/CHANGELOG.md create mode 100644 plugins/chunter/CHANGELOG.json create mode 100644 plugins/chunter/CHANGELOG.md create mode 100644 plugins/client-resources/CHANGELOG.json create mode 100644 plugins/client-resources/CHANGELOG.md create mode 100644 plugins/client/CHANGELOG.json create mode 100644 plugins/client/CHANGELOG.md create mode 100644 plugins/contact-resources/CHANGELOG.json create mode 100644 plugins/contact-resources/CHANGELOG.md create mode 100644 plugins/contact/CHANGELOG.json create mode 100644 plugins/contact/CHANGELOG.md create mode 100644 plugins/login-assets/CHANGELOG.json create mode 100644 plugins/login-assets/CHANGELOG.md create mode 100644 plugins/login-resources/CHANGELOG.json create mode 100644 plugins/login-resources/CHANGELOG.md create mode 100644 plugins/login/CHANGELOG.json create mode 100644 plugins/login/CHANGELOG.md create mode 100644 plugins/recruit-assets/CHANGELOG.json create mode 100644 plugins/recruit-assets/CHANGELOG.md create mode 100644 plugins/recruit-resources/CHANGELOG.json create mode 100644 plugins/recruit-resources/CHANGELOG.md create mode 100644 plugins/recruit/CHANGELOG.json create mode 100644 plugins/recruit/CHANGELOG.md create mode 100644 plugins/task-assets/CHANGELOG.json create mode 100644 plugins/task-assets/CHANGELOG.md create mode 100644 plugins/task-resources/CHANGELOG.json create mode 100644 plugins/task-resources/CHANGELOG.md create mode 100644 plugins/task/CHANGELOG.json create mode 100644 plugins/task/CHANGELOG.md create mode 100644 plugins/view-assets/CHANGELOG.json create mode 100644 plugins/view-assets/CHANGELOG.md create mode 100644 plugins/view-resources/CHANGELOG.json create mode 100644 plugins/view-resources/CHANGELOG.md create mode 100644 plugins/view/CHANGELOG.json create mode 100644 plugins/view/CHANGELOG.md create mode 100644 plugins/workbench-resources/CHANGELOG.json create mode 100644 plugins/workbench-resources/CHANGELOG.md create mode 100644 plugins/workbench/CHANGELOG.json create mode 100644 plugins/workbench/CHANGELOG.md create mode 100644 server/chunter/CHANGELOG.json create mode 100644 server/chunter/CHANGELOG.md create mode 100644 server/core/CHANGELOG.json create mode 100644 server/core/CHANGELOG.md create mode 100644 server/server/CHANGELOG.json create mode 100644 server/server/CHANGELOG.md diff --git a/dev/account/CHANGELOG.json b/dev/account/CHANGELOG.json index 54c235fda98..1e8983ed487 100644 --- a/dev/account/CHANGELOG.json +++ b/dev/account/CHANGELOG.json @@ -1,6 +1,23 @@ { "name": "@anticrm/dev-account", "entries": [ + { + "version": "0.6.2", + "tag": "@anticrm/dev-account_v0.6.2", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "patch": [ + { + "comment": "Initial" + } + ], + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.0` to `~0.6.4`" + } + ] + } + }, { "version": "0.6.1", "tag": "@anticrm/dev-account_v0.6.1", diff --git a/dev/account/CHANGELOG.md b/dev/account/CHANGELOG.md index 00e76aa1cff..0dbaba76a0b 100644 --- a/dev/account/CHANGELOG.md +++ b/dev/account/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log - @anticrm/dev-account -This log was last generated on Sun, 08 Aug 2021 09:33:36 GMT and should not be manually modified. +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.2 +Sun, 08 Aug 2021 10:14:57 GMT + +### Patches + +- Initial ## 0.6.1 Sun, 08 Aug 2021 09:33:36 GMT diff --git a/dev/account/package.json b/dev/account/package.json index 936f22cde0a..1213b9e15ac 100644 --- a/dev/account/package.json +++ b/dev/account/package.json @@ -1,6 +1,6 @@ { "name": "@anticrm/dev-account", - "version": "0.6.1", + "version": "0.6.2", "main": "lib/index.js", "author": "Anticrm Platform Contributors", "license": "EPL-2.0", @@ -19,7 +19,7 @@ "simplytyped": "^3.3.0" }, "dependencies": { - "@anticrm/platform": "~0.6.0", + "@anticrm/platform": "~0.6.4", "jwt-simple": "^0.5.6" } } diff --git a/dev/client-resources/CHANGELOG.json b/dev/client-resources/CHANGELOG.json new file mode 100644 index 00000000000..aa8625192ef --- /dev/null +++ b/dev/client-resources/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/dev-client-resources", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/dev-client-resources_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/dev/client-resources/CHANGELOG.md b/dev/client-resources/CHANGELOG.md new file mode 100644 index 00000000000..a424c957813 --- /dev/null +++ b/dev/client-resources/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/dev-client-resources + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/dev/client-resources/package.json b/dev/client-resources/package.json index 0f521b26888..7bf619eb76c 100644 --- a/dev/client-resources/package.json +++ b/dev/client-resources/package.json @@ -18,7 +18,7 @@ "eslint":"^7.32.0" }, "dependencies": { - "@anticrm/platform":"~0.6.3", + "@anticrm/platform":"~0.6.4", "@anticrm/core":"~0.6.0", "@anticrm/client":"~0.6.0", "@anticrm/dev-storage":"~0.6.3" diff --git a/dev/prod/CHANGELOG.json b/dev/prod/CHANGELOG.json new file mode 100644 index 00000000000..3a8cd9e2e06 --- /dev/null +++ b/dev/prod/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "prod", + "entries": [ + { + "version": "1.0.0", + "tag": "prod_v1.0.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/dev/prod/CHANGELOG.md b/dev/prod/CHANGELOG.md new file mode 100644 index 00000000000..c0e60407421 --- /dev/null +++ b/dev/prod/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - prod + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 1.0.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/dev/prod/package.json b/dev/prod/package.json index eee4500b014..4fc0136554f 100644 --- a/dev/prod/package.json +++ b/dev/prod/package.json @@ -37,7 +37,7 @@ "postcss-load-config": "^3.1.0" }, "dependencies": { - "@anticrm/platform": "~0.6.3", + "@anticrm/platform": "~0.6.4", "@anticrm/ui": "~0.6.0", "@anticrm/theme": "~0.6.0", "svelte": "^3.42.1", diff --git a/dev/server-chunter-resources/CHANGELOG.json b/dev/server-chunter-resources/CHANGELOG.json new file mode 100644 index 00000000000..2bc047a17a3 --- /dev/null +++ b/dev/server-chunter-resources/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/dev-server-chunter-resources", + "entries": [ + { + "version": "0.6.3", + "tag": "@anticrm/dev-server-chunter-resources_v0.6.3", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/dev/server-chunter-resources/CHANGELOG.md b/dev/server-chunter-resources/CHANGELOG.md new file mode 100644 index 00000000000..52f34058e45 --- /dev/null +++ b/dev/server-chunter-resources/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/dev-server-chunter-resources + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.3 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/dev/server-chunter-resources/package.json b/dev/server-chunter-resources/package.json index 2f77b2b697c..808f437a415 100644 --- a/dev/server-chunter-resources/package.json +++ b/dev/server-chunter-resources/package.json @@ -19,7 +19,7 @@ }, "dependencies": { "@anticrm/core": "~0.6.7", - "@anticrm/platform": "~0.6.3", + "@anticrm/platform": "~0.6.4", "@anticrm/server-core": "~0.6.0", "@anticrm/server-chunter": "~0.6.0", "@anticrm/chunter": "~0.6.0" diff --git a/dev/server/package.json b/dev/server/package.json index 4726f8df889..eb297c5501b 100644 --- a/dev/server/package.json +++ b/dev/server/package.json @@ -23,6 +23,6 @@ "@anticrm/dev-storage": "~0.6.3", "@anticrm/server-ws": "~0.6.4", "@anticrm/core": "~0.6.7", - "@anticrm/platform": "~0.6.3" + "@anticrm/platform": "~0.6.4" } } diff --git a/dev/storage/package.json b/dev/storage/package.json index 5145a4d7277..c81bb8e82ef 100644 --- a/dev/storage/package.json +++ b/dev/storage/package.json @@ -19,7 +19,7 @@ }, "dependencies": { "@anticrm/core": "~0.6.7", - "@anticrm/platform": "~0.6.3", + "@anticrm/platform": "~0.6.4", "@anticrm/server-core": "~0.6.0", "@anticrm/server": "~0.6.0" } diff --git a/models/chunter/CHANGELOG.json b/models/chunter/CHANGELOG.json new file mode 100644 index 00000000000..02f43caf9f3 --- /dev/null +++ b/models/chunter/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/model-chunter", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/model-chunter_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/models/chunter/CHANGELOG.md b/models/chunter/CHANGELOG.md new file mode 100644 index 00000000000..f4821d08351 --- /dev/null +++ b/models/chunter/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/model-chunter + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/models/chunter/package.json b/models/chunter/package.json index 70730036f50..24bffe4520c 100644 --- a/models/chunter/package.json +++ b/models/chunter/package.json @@ -23,7 +23,7 @@ "@anticrm/view": "~0.6.0", "@anticrm/chunter": "~0.6.0", "@anticrm/chunter-resources": "~0.6.0", - "@anticrm/platform": "~0.6.3", + "@anticrm/platform": "~0.6.4", "@anticrm/model-core": "~0.6.0", "@anticrm/model-view": "~0.6.0", "@anticrm/model-workbench": "~0.6.0" diff --git a/models/contact/CHANGELOG.json b/models/contact/CHANGELOG.json new file mode 100644 index 00000000000..9edd6ca123f --- /dev/null +++ b/models/contact/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/model-contact", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/model-contact_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/models/contact/CHANGELOG.md b/models/contact/CHANGELOG.md new file mode 100644 index 00000000000..062a18b7866 --- /dev/null +++ b/models/contact/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/model-contact + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/models/contact/package.json b/models/contact/package.json index 3aee497a601..c05745b6b8b 100644 --- a/models/contact/package.json +++ b/models/contact/package.json @@ -22,7 +22,7 @@ "@anticrm/model": "~0.6.0", "@anticrm/core": "~0.6.0", "@anticrm/ui": "~0.6.0", - "@anticrm/platform": "~0.6.3", + "@anticrm/platform": "~0.6.4", "@anticrm/contact": "~0.6.0" } } diff --git a/models/core/CHANGELOG.json b/models/core/CHANGELOG.json new file mode 100644 index 00000000000..8ab1a6e6d62 --- /dev/null +++ b/models/core/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/model-core", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/model-core_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/models/core/CHANGELOG.md b/models/core/CHANGELOG.md new file mode 100644 index 00000000000..3a9c05388cb --- /dev/null +++ b/models/core/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/model-core + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/models/core/package.json b/models/core/package.json index 7b11ac8e9d3..1bbb8de817b 100644 --- a/models/core/package.json +++ b/models/core/package.json @@ -19,6 +19,6 @@ "dependencies": { "@anticrm/core": "~0.6.7", "@anticrm/model": "~0.6.0", - "@anticrm/platform": "~0.6.3" + "@anticrm/platform": "~0.6.4" } } diff --git a/models/demo/CHANGELOG.json b/models/demo/CHANGELOG.json new file mode 100644 index 00000000000..bab45c72467 --- /dev/null +++ b/models/demo/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/model-demo", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/model-demo_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/models/demo/CHANGELOG.md b/models/demo/CHANGELOG.md new file mode 100644 index 00000000000..bdbbf08b70f --- /dev/null +++ b/models/demo/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/model-demo + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/models/demo/package.json b/models/demo/package.json index 5beb1ae1fba..54bfed25a60 100644 --- a/models/demo/package.json +++ b/models/demo/package.json @@ -19,7 +19,7 @@ "dependencies": { "@anticrm/core": "~0.6.7", "@anticrm/model": "~0.6.0", - "@anticrm/platform": "~0.6.3", + "@anticrm/platform": "~0.6.4", "@anticrm/model-recruit": "~0.6.0", "@anticrm/model-contact": "~0.6.0" } diff --git a/models/recruit/CHANGELOG.json b/models/recruit/CHANGELOG.json new file mode 100644 index 00000000000..080a4b713c4 --- /dev/null +++ b/models/recruit/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/model-recruit", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/model-recruit_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/models/recruit/CHANGELOG.md b/models/recruit/CHANGELOG.md new file mode 100644 index 00000000000..02b8781837b --- /dev/null +++ b/models/recruit/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/model-recruit + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/models/recruit/package.json b/models/recruit/package.json index a31338216a5..721db33d07a 100644 --- a/models/recruit/package.json +++ b/models/recruit/package.json @@ -21,7 +21,7 @@ "@anticrm/model": "~0.6.0", "@anticrm/ui": "~0.6.0", "@anticrm/contact": "~0.6.0", - "@anticrm/platform": "~0.6.3", + "@anticrm/platform": "~0.6.4", "@anticrm/model-core": "~0.6.0", "@anticrm/model-view": "~0.6.0", "@anticrm/model-workbench": "~0.6.0", diff --git a/models/server-chunter/CHANGELOG.json b/models/server-chunter/CHANGELOG.json new file mode 100644 index 00000000000..be87cc1674c --- /dev/null +++ b/models/server-chunter/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/model-server-chunter", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/model-server-chunter_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/models/server-chunter/CHANGELOG.md b/models/server-chunter/CHANGELOG.md new file mode 100644 index 00000000000..1a889880d38 --- /dev/null +++ b/models/server-chunter/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/model-server-chunter + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/models/server-chunter/package.json b/models/server-chunter/package.json index a9e9cb28054..c1e22af4d38 100644 --- a/models/server-chunter/package.json +++ b/models/server-chunter/package.json @@ -19,7 +19,7 @@ "dependencies": { "@anticrm/core": "~0.6.7", "@anticrm/model": "~0.6.0", - "@anticrm/platform": "~0.6.3", + "@anticrm/platform": "~0.6.4", "@anticrm/server-chunter": "~0.6.0", "@anticrm/server-core": "~0.6.0" } diff --git a/models/server-core/CHANGELOG.json b/models/server-core/CHANGELOG.json new file mode 100644 index 00000000000..da83300e5b2 --- /dev/null +++ b/models/server-core/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/model-server-core", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/model-server-core_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/models/server-core/CHANGELOG.md b/models/server-core/CHANGELOG.md new file mode 100644 index 00000000000..09e75927cb4 --- /dev/null +++ b/models/server-core/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/model-server-core + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/models/server-core/package.json b/models/server-core/package.json index b39b81fe2de..89b603932b8 100644 --- a/models/server-core/package.json +++ b/models/server-core/package.json @@ -19,7 +19,7 @@ "dependencies": { "@anticrm/core": "~0.6.7", "@anticrm/model": "~0.6.0", - "@anticrm/platform": "~0.6.3", + "@anticrm/platform": "~0.6.4", "@anticrm/server-core": "~0.6.0", "@anticrm/model-core": "~0.6.0" } diff --git a/models/task/CHANGELOG.json b/models/task/CHANGELOG.json new file mode 100644 index 00000000000..51843f35c44 --- /dev/null +++ b/models/task/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/model-task", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/model-task_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/models/task/CHANGELOG.md b/models/task/CHANGELOG.md new file mode 100644 index 00000000000..0a2b19e1085 --- /dev/null +++ b/models/task/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/model-task + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/models/task/package.json b/models/task/package.json index ddea1cb232c..944e0d6fa14 100644 --- a/models/task/package.json +++ b/models/task/package.json @@ -21,7 +21,7 @@ "@anticrm/model": "~0.6.0", "@anticrm/ui": "~0.6.0", "@anticrm/contact": "~0.6.0", - "@anticrm/platform": "~0.6.3", + "@anticrm/platform": "~0.6.4", "@anticrm/model-core": "~0.6.0", "@anticrm/model-view": "~0.6.0", "@anticrm/model-workbench": "~0.6.0", diff --git a/models/view/CHANGELOG.json b/models/view/CHANGELOG.json new file mode 100644 index 00000000000..d6ef4806497 --- /dev/null +++ b/models/view/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/model-view", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/model-view_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/models/view/CHANGELOG.md b/models/view/CHANGELOG.md new file mode 100644 index 00000000000..cea13cce42e --- /dev/null +++ b/models/view/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/model-view + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/models/view/package.json b/models/view/package.json index 952ee171efb..17d768e7df5 100644 --- a/models/view/package.json +++ b/models/view/package.json @@ -19,7 +19,7 @@ "dependencies": { "@anticrm/core": "~0.6.7", "@anticrm/model": "~0.6.0", - "@anticrm/platform": "~0.6.3", + "@anticrm/platform": "~0.6.4", "@anticrm/ui": "~0.6.0", "@anticrm/view": "~0.6.0", "@anticrm/model-core": "~0.6.0" diff --git a/models/workbench/CHANGELOG.json b/models/workbench/CHANGELOG.json new file mode 100644 index 00000000000..e5cd6000056 --- /dev/null +++ b/models/workbench/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/model-workbench", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/model-workbench_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/models/workbench/CHANGELOG.md b/models/workbench/CHANGELOG.md new file mode 100644 index 00000000000..16e7f7d343b --- /dev/null +++ b/models/workbench/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/model-workbench + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/models/workbench/package.json b/models/workbench/package.json index 0648f5086ab..048f4e48d50 100644 --- a/models/workbench/package.json +++ b/models/workbench/package.json @@ -19,7 +19,7 @@ "dependencies": { "@anticrm/core": "~0.6.7", "@anticrm/model": "~0.6.0", - "@anticrm/platform": "~0.6.3", + "@anticrm/platform": "~0.6.4", "@anticrm/model-core": "~0.6.0", "@anticrm/workbench": "~0.6.0" } diff --git a/packages/core/package.json b/packages/core/package.json index d0db8dbb861..a5ca6fe247f 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -19,6 +19,6 @@ "simplytyped": "^3.3.0" }, "dependencies": { - "@anticrm/platform": "~0.6.3" + "@anticrm/platform": "~0.6.4" } } diff --git a/packages/model/CHANGELOG.json b/packages/model/CHANGELOG.json new file mode 100644 index 00000000000..3e1eef61ace --- /dev/null +++ b/packages/model/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/model", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/model_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/packages/model/CHANGELOG.md b/packages/model/CHANGELOG.md new file mode 100644 index 00000000000..4d72790b132 --- /dev/null +++ b/packages/model/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/model + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/packages/model/package.json b/packages/model/package.json index cef2d5968f5..9448e804aec 100644 --- a/packages/model/package.json +++ b/packages/model/package.json @@ -20,7 +20,7 @@ }, "dependencies": { "@anticrm/core":"~0.6.7", - "@anticrm/platform":"~0.6.3", + "@anticrm/platform":"~0.6.4", "toposort":"^2.0.2" } } diff --git a/packages/platform/CHANGELOG.json b/packages/platform/CHANGELOG.json index 864ca36f8a1..569871c71a4 100644 --- a/packages/platform/CHANGELOG.json +++ b/packages/platform/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@anticrm/platform", "entries": [ + { + "version": "0.6.4", + "tag": "@anticrm/platform_v0.6.4", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "patch": [ + { + "comment": "Export status codes" + } + ] + } + }, { "version": "0.6.3", "tag": "@anticrm/platform_v0.6.3", diff --git a/packages/platform/CHANGELOG.md b/packages/platform/CHANGELOG.md index 2d0c609b154..9bfc98b0588 100644 --- a/packages/platform/CHANGELOG.md +++ b/packages/platform/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log - @anticrm/platform -This log was last generated on Wed, 04 Aug 2021 21:18:44 GMT and should not be manually modified. +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.4 +Sun, 08 Aug 2021 10:14:57 GMT + +### Patches + +- Export status codes ## 0.6.3 Wed, 04 Aug 2021 21:18:44 GMT diff --git a/packages/platform/package.json b/packages/platform/package.json index d25916a2510..f6a71ca8ff7 100644 --- a/packages/platform/package.json +++ b/packages/platform/package.json @@ -1,6 +1,6 @@ { "name": "@anticrm/platform", - "version": "0.6.3", + "version": "0.6.4", "main": "lib/index.js", "author": "Anticrm Platform Contributors", "license": "EPL-2.0", diff --git a/packages/presentation/CHANGELOG.json b/packages/presentation/CHANGELOG.json new file mode 100644 index 00000000000..32bd8f63d36 --- /dev/null +++ b/packages/presentation/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/presentation", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/presentation_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.0` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/packages/presentation/CHANGELOG.md b/packages/presentation/CHANGELOG.md new file mode 100644 index 00000000000..fb79ab54e9b --- /dev/null +++ b/packages/presentation/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/presentation + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/packages/presentation/package.json b/packages/presentation/package.json index 88cf07199f5..2663188597a 100644 --- a/packages/presentation/package.json +++ b/packages/presentation/package.json @@ -19,7 +19,7 @@ "svelte-preprocess":"^4.7.4" }, "dependencies": { - "@anticrm/platform": "~0.6.0", + "@anticrm/platform": "~0.6.4", "@anticrm/core": "~0.6.0", "@anticrm/query": "~0.6.0", "@anticrm/ui": "~0.6.0", diff --git a/packages/query/CHANGELOG.json b/packages/query/CHANGELOG.json new file mode 100644 index 00000000000..bd7d306fe82 --- /dev/null +++ b/packages/query/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/query", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/query_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/packages/query/CHANGELOG.md b/packages/query/CHANGELOG.md new file mode 100644 index 00000000000..e5e3e2afb9c --- /dev/null +++ b/packages/query/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/query + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/packages/query/package.json b/packages/query/package.json index 503b02433ef..0494332733d 100644 --- a/packages/query/package.json +++ b/packages/query/package.json @@ -19,7 +19,7 @@ "simplytyped": "^3.3.0" }, "dependencies": { - "@anticrm/platform": "~0.6.3", + "@anticrm/platform": "~0.6.4", "@anticrm/core": "~0.6.3" } } diff --git a/packages/ui/CHANGELOG.json b/packages/ui/CHANGELOG.json new file mode 100644 index 00000000000..d1f1ce30382 --- /dev/null +++ b/packages/ui/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/ui", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/ui_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.0` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/packages/ui/CHANGELOG.md b/packages/ui/CHANGELOG.md new file mode 100644 index 00000000000..6747486fd62 --- /dev/null +++ b/packages/ui/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/ui + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/packages/ui/package.json b/packages/ui/package.json index 58f5b2eca92..844ce708b34 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -19,7 +19,7 @@ "svelte-preprocess":"^4.7.4" }, "dependencies": { - "@anticrm/platform": "~0.6.0", + "@anticrm/platform": "~0.6.4", "@anticrm/theme": "~0.6.0", "svelte": "^3.37.0" } diff --git a/plugins/chunter-assets/CHANGELOG.json b/plugins/chunter-assets/CHANGELOG.json new file mode 100644 index 00000000000..ab65fb150cb --- /dev/null +++ b/plugins/chunter-assets/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/chunter-assets", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/chunter-assets_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/plugins/chunter-assets/CHANGELOG.md b/plugins/chunter-assets/CHANGELOG.md new file mode 100644 index 00000000000..8450bef2583 --- /dev/null +++ b/plugins/chunter-assets/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/chunter-assets + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/plugins/chunter-assets/package.json b/plugins/chunter-assets/package.json index 9ab63eef5b8..c21c32ff967 100644 --- a/plugins/chunter-assets/package.json +++ b/plugins/chunter-assets/package.json @@ -15,7 +15,7 @@ "devDependencies": { }, "dependencies": { - "@anticrm/platform":"~0.6.3", + "@anticrm/platform":"~0.6.4", "@anticrm/chunter":"~0.6.0" } } diff --git a/plugins/chunter-resources/CHANGELOG.json b/plugins/chunter-resources/CHANGELOG.json new file mode 100644 index 00000000000..08b3babde2c --- /dev/null +++ b/plugins/chunter-resources/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/chunter-resources", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/chunter-resources_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.0` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/plugins/chunter-resources/CHANGELOG.md b/plugins/chunter-resources/CHANGELOG.md new file mode 100644 index 00000000000..b4e2d4e0072 --- /dev/null +++ b/plugins/chunter-resources/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/chunter-resources + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/plugins/chunter-resources/package.json b/plugins/chunter-resources/package.json index 6454c6aba1c..013ebce89ee 100644 --- a/plugins/chunter-resources/package.json +++ b/plugins/chunter-resources/package.json @@ -20,7 +20,7 @@ }, "dependencies": { "@anticrm/core":"~0.6.0", - "@anticrm/platform":"~0.6.0", + "@anticrm/platform":"~0.6.4", "@anticrm/ui":"~0.6.0", "@anticrm/presentation":"~0.6.0", "@anticrm/chunter":"~0.6.0", diff --git a/plugins/chunter/CHANGELOG.json b/plugins/chunter/CHANGELOG.json new file mode 100644 index 00000000000..710d732433f --- /dev/null +++ b/plugins/chunter/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/chunter", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/chunter_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/plugins/chunter/CHANGELOG.md b/plugins/chunter/CHANGELOG.md new file mode 100644 index 00000000000..b9780632c6b --- /dev/null +++ b/plugins/chunter/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/chunter + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/plugins/chunter/package.json b/plugins/chunter/package.json index 017138ae4a6..d64a2891fe0 100644 --- a/plugins/chunter/package.json +++ b/plugins/chunter/package.json @@ -18,7 +18,7 @@ "eslint":"^7.32.0" }, "dependencies": { - "@anticrm/platform":"~0.6.3", + "@anticrm/platform":"~0.6.4", "@anticrm/core":"~0.6.3" } } diff --git a/plugins/client-resources/CHANGELOG.json b/plugins/client-resources/CHANGELOG.json new file mode 100644 index 00000000000..59d28080d73 --- /dev/null +++ b/plugins/client-resources/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/client-resources", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/client-resources_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/plugins/client-resources/CHANGELOG.md b/plugins/client-resources/CHANGELOG.md new file mode 100644 index 00000000000..447652b373a --- /dev/null +++ b/plugins/client-resources/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/client-resources + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/plugins/client-resources/package.json b/plugins/client-resources/package.json index 719b31b9fca..62eafeccb40 100644 --- a/plugins/client-resources/package.json +++ b/plugins/client-resources/package.json @@ -18,7 +18,7 @@ "eslint":"^7.32.0" }, "dependencies": { - "@anticrm/platform":"~0.6.3", + "@anticrm/platform":"~0.6.4", "@anticrm/core":"~0.6.0", "@anticrm/client":"~0.6.0" } diff --git a/plugins/client/CHANGELOG.json b/plugins/client/CHANGELOG.json new file mode 100644 index 00000000000..a7e58d2b255 --- /dev/null +++ b/plugins/client/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/client", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/client_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/plugins/client/CHANGELOG.md b/plugins/client/CHANGELOG.md new file mode 100644 index 00000000000..eef5b60c46c --- /dev/null +++ b/plugins/client/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/client + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/plugins/client/package.json b/plugins/client/package.json index e42a3a5704d..6bc0e37e1c0 100644 --- a/plugins/client/package.json +++ b/plugins/client/package.json @@ -18,7 +18,7 @@ "eslint":"^7.32.0" }, "dependencies": { - "@anticrm/platform":"~0.6.3", + "@anticrm/platform":"~0.6.4", "@anticrm/core":"~0.6.0" } } diff --git a/plugins/contact-resources/CHANGELOG.json b/plugins/contact-resources/CHANGELOG.json new file mode 100644 index 00000000000..e78c47f545f --- /dev/null +++ b/plugins/contact-resources/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/contact-resources", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/contact-resources_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.0` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/plugins/contact-resources/CHANGELOG.md b/plugins/contact-resources/CHANGELOG.md new file mode 100644 index 00000000000..5e0d84be7d4 --- /dev/null +++ b/plugins/contact-resources/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/contact-resources + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/plugins/contact-resources/package.json b/plugins/contact-resources/package.json index c64d75bf7e8..dcc85d6cc52 100644 --- a/plugins/contact-resources/package.json +++ b/plugins/contact-resources/package.json @@ -19,7 +19,7 @@ "svelte-preprocess":"^4.7.4" }, "dependencies": { - "@anticrm/platform": "~0.6.0", + "@anticrm/platform": "~0.6.4", "svelte": "^3.37.0", "@anticrm/contact": "~0.6.0", "@anticrm/ui": "~0.6.0", diff --git a/plugins/contact/CHANGELOG.json b/plugins/contact/CHANGELOG.json new file mode 100644 index 00000000000..46c82ddc5af --- /dev/null +++ b/plugins/contact/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/contact", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/contact_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/plugins/contact/CHANGELOG.md b/plugins/contact/CHANGELOG.md new file mode 100644 index 00000000000..c9360822d12 --- /dev/null +++ b/plugins/contact/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/contact + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/plugins/contact/package.json b/plugins/contact/package.json index b9a435e31bf..b6c496652dd 100644 --- a/plugins/contact/package.json +++ b/plugins/contact/package.json @@ -18,7 +18,7 @@ "eslint":"^7.32.0" }, "dependencies": { - "@anticrm/platform":"~0.6.3", + "@anticrm/platform":"~0.6.4", "@anticrm/core":"~0.6.0" } } diff --git a/plugins/login-assets/CHANGELOG.json b/plugins/login-assets/CHANGELOG.json new file mode 100644 index 00000000000..25940681c14 --- /dev/null +++ b/plugins/login-assets/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/login-assets", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/login-assets_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/plugins/login-assets/CHANGELOG.md b/plugins/login-assets/CHANGELOG.md new file mode 100644 index 00000000000..898e1ff5f0a --- /dev/null +++ b/plugins/login-assets/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/login-assets + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/plugins/login-assets/package.json b/plugins/login-assets/package.json index b81fe23b791..bdc412f728c 100644 --- a/plugins/login-assets/package.json +++ b/plugins/login-assets/package.json @@ -15,7 +15,7 @@ "devDependencies": { }, "dependencies": { - "@anticrm/platform":"~0.6.3", + "@anticrm/platform":"~0.6.4", "@anticrm/login":"~0.6.0" } } diff --git a/plugins/login-resources/CHANGELOG.json b/plugins/login-resources/CHANGELOG.json new file mode 100644 index 00000000000..e99fa7ea537 --- /dev/null +++ b/plugins/login-resources/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/login-resources", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/login-resources_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.0` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/plugins/login-resources/CHANGELOG.md b/plugins/login-resources/CHANGELOG.md new file mode 100644 index 00000000000..509261c741c --- /dev/null +++ b/plugins/login-resources/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/login-resources + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/plugins/login-resources/package.json b/plugins/login-resources/package.json index 30112aab5cb..4aa12aeb1a8 100644 --- a/plugins/login-resources/package.json +++ b/plugins/login-resources/package.json @@ -19,7 +19,7 @@ "svelte-preprocess":"^4.7.4" }, "dependencies": { - "@anticrm/platform": "~0.6.0", + "@anticrm/platform": "~0.6.4", "svelte": "^3.37.0", "@anticrm/login": "~0.6.0", "@anticrm/ui": "~0.6.0" diff --git a/plugins/login/CHANGELOG.json b/plugins/login/CHANGELOG.json new file mode 100644 index 00000000000..76fffe6a7ee --- /dev/null +++ b/plugins/login/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/login", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/login_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/plugins/login/CHANGELOG.md b/plugins/login/CHANGELOG.md new file mode 100644 index 00000000000..c675ecdd59d --- /dev/null +++ b/plugins/login/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/login + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/plugins/login/package.json b/plugins/login/package.json index 30203e629eb..bb14882cf96 100644 --- a/plugins/login/package.json +++ b/plugins/login/package.json @@ -18,6 +18,6 @@ "eslint":"^7.32.0" }, "dependencies": { - "@anticrm/platform":"~0.6.3" + "@anticrm/platform":"~0.6.4" } } diff --git a/plugins/recruit-assets/CHANGELOG.json b/plugins/recruit-assets/CHANGELOG.json new file mode 100644 index 00000000000..f2e340829bd --- /dev/null +++ b/plugins/recruit-assets/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/recruit-assets", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/recruit-assets_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/plugins/recruit-assets/CHANGELOG.md b/plugins/recruit-assets/CHANGELOG.md new file mode 100644 index 00000000000..001f3d8217c --- /dev/null +++ b/plugins/recruit-assets/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/recruit-assets + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/plugins/recruit-assets/package.json b/plugins/recruit-assets/package.json index 316652522b2..9cd61d4cd9a 100644 --- a/plugins/recruit-assets/package.json +++ b/plugins/recruit-assets/package.json @@ -15,7 +15,7 @@ "devDependencies": { }, "dependencies": { - "@anticrm/platform":"~0.6.3", + "@anticrm/platform":"~0.6.4", "@anticrm/recruit":"~0.6.0" } } diff --git a/plugins/recruit-resources/CHANGELOG.json b/plugins/recruit-resources/CHANGELOG.json new file mode 100644 index 00000000000..cbacaa35b76 --- /dev/null +++ b/plugins/recruit-resources/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/recruit-resources", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/recruit-resources_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.0` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/plugins/recruit-resources/CHANGELOG.md b/plugins/recruit-resources/CHANGELOG.md new file mode 100644 index 00000000000..e3ae63ddb49 --- /dev/null +++ b/plugins/recruit-resources/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/recruit-resources + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/plugins/recruit-resources/package.json b/plugins/recruit-resources/package.json index cecdec71728..f381af58a05 100644 --- a/plugins/recruit-resources/package.json +++ b/plugins/recruit-resources/package.json @@ -19,7 +19,7 @@ "svelte-preprocess":"^4.7.4" }, "dependencies": { - "@anticrm/platform": "~0.6.0", + "@anticrm/platform": "~0.6.4", "@anticrm/core": "~0.6.0", "svelte": "^3.37.0", "@anticrm/recruit": "~0.6.0", diff --git a/plugins/recruit/CHANGELOG.json b/plugins/recruit/CHANGELOG.json new file mode 100644 index 00000000000..f4d031e48df --- /dev/null +++ b/plugins/recruit/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/recruit", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/recruit_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/plugins/recruit/CHANGELOG.md b/plugins/recruit/CHANGELOG.md new file mode 100644 index 00000000000..abf5b5eb1ca --- /dev/null +++ b/plugins/recruit/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/recruit + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/plugins/recruit/package.json b/plugins/recruit/package.json index e53a4a09ab7..4fccaab3679 100644 --- a/plugins/recruit/package.json +++ b/plugins/recruit/package.json @@ -18,7 +18,7 @@ "eslint":"^7.32.0" }, "dependencies": { - "@anticrm/platform":"~0.6.3", + "@anticrm/platform":"~0.6.4", "@anticrm/core":"~0.6.0", "@anticrm/contact":"~0.6.0" } diff --git a/plugins/task-assets/CHANGELOG.json b/plugins/task-assets/CHANGELOG.json new file mode 100644 index 00000000000..114b04eee3c --- /dev/null +++ b/plugins/task-assets/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/task-assets", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/task-assets_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/plugins/task-assets/CHANGELOG.md b/plugins/task-assets/CHANGELOG.md new file mode 100644 index 00000000000..05375dc14a2 --- /dev/null +++ b/plugins/task-assets/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/task-assets + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/plugins/task-assets/package.json b/plugins/task-assets/package.json index 176651875e6..23f19ef2044 100644 --- a/plugins/task-assets/package.json +++ b/plugins/task-assets/package.json @@ -15,7 +15,7 @@ "devDependencies": { }, "dependencies": { - "@anticrm/platform":"~0.6.3", + "@anticrm/platform":"~0.6.4", "@anticrm/task":"~0.6.0" } } diff --git a/plugins/task-resources/CHANGELOG.json b/plugins/task-resources/CHANGELOG.json new file mode 100644 index 00000000000..6af5d1403fb --- /dev/null +++ b/plugins/task-resources/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/task-resources", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/task-resources_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.0` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/plugins/task-resources/CHANGELOG.md b/plugins/task-resources/CHANGELOG.md new file mode 100644 index 00000000000..aca6755ca90 --- /dev/null +++ b/plugins/task-resources/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/task-resources + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/plugins/task-resources/package.json b/plugins/task-resources/package.json index 535b25cebb0..ec9cc1b15a1 100644 --- a/plugins/task-resources/package.json +++ b/plugins/task-resources/package.json @@ -19,7 +19,7 @@ "svelte-preprocess":"^4.7.4" }, "dependencies": { - "@anticrm/platform": "~0.6.0", + "@anticrm/platform": "~0.6.4", "svelte": "^3.37.0", "@anticrm/task": "~0.6.0", "@anticrm/ui": "~0.6.0", diff --git a/plugins/task/CHANGELOG.json b/plugins/task/CHANGELOG.json new file mode 100644 index 00000000000..4cd180d4174 --- /dev/null +++ b/plugins/task/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/task", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/task_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/plugins/task/CHANGELOG.md b/plugins/task/CHANGELOG.md new file mode 100644 index 00000000000..02f95523477 --- /dev/null +++ b/plugins/task/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/task + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/plugins/task/package.json b/plugins/task/package.json index f4e56b379b8..10c341e3691 100644 --- a/plugins/task/package.json +++ b/plugins/task/package.json @@ -18,7 +18,7 @@ "eslint":"^7.32.0" }, "dependencies": { - "@anticrm/platform":"~0.6.3", + "@anticrm/platform":"~0.6.4", "@anticrm/core":"~0.6.0", "@anticrm/contact":"~0.6.0" } diff --git a/plugins/view-assets/CHANGELOG.json b/plugins/view-assets/CHANGELOG.json new file mode 100644 index 00000000000..7a8e1b0ac93 --- /dev/null +++ b/plugins/view-assets/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/view-assets", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/view-assets_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/plugins/view-assets/CHANGELOG.md b/plugins/view-assets/CHANGELOG.md new file mode 100644 index 00000000000..15a8fdfe094 --- /dev/null +++ b/plugins/view-assets/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/view-assets + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/plugins/view-assets/package.json b/plugins/view-assets/package.json index 77c8c5ea635..8dac246daee 100644 --- a/plugins/view-assets/package.json +++ b/plugins/view-assets/package.json @@ -15,7 +15,7 @@ "devDependencies": { }, "dependencies": { - "@anticrm/platform":"~0.6.3", + "@anticrm/platform":"~0.6.4", "@anticrm/view":"~0.6.0" } } diff --git a/plugins/view-resources/CHANGELOG.json b/plugins/view-resources/CHANGELOG.json new file mode 100644 index 00000000000..a9304bf26c4 --- /dev/null +++ b/plugins/view-resources/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/view-resources", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/view-resources_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.0` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/plugins/view-resources/CHANGELOG.md b/plugins/view-resources/CHANGELOG.md new file mode 100644 index 00000000000..2a9dbeb2e53 --- /dev/null +++ b/plugins/view-resources/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/view-resources + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/plugins/view-resources/package.json b/plugins/view-resources/package.json index 4b229957794..b39794e48f3 100644 --- a/plugins/view-resources/package.json +++ b/plugins/view-resources/package.json @@ -20,7 +20,7 @@ }, "dependencies": { "svelte": "^3.37.0", - "@anticrm/platform": "~0.6.0", + "@anticrm/platform": "~0.6.4", "@anticrm/core": "~0.6.0", "@anticrm/view": "~0.6.0", "@anticrm/ui": "~0.6.0", diff --git a/plugins/view/CHANGELOG.json b/plugins/view/CHANGELOG.json new file mode 100644 index 00000000000..6b731ce631e --- /dev/null +++ b/plugins/view/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/view", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/view_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/plugins/view/CHANGELOG.md b/plugins/view/CHANGELOG.md new file mode 100644 index 00000000000..89d5c2d482a --- /dev/null +++ b/plugins/view/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/view + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/plugins/view/package.json b/plugins/view/package.json index 52b0f010e8e..26677856c5e 100644 --- a/plugins/view/package.json +++ b/plugins/view/package.json @@ -18,7 +18,7 @@ "eslint":"^7.32.0" }, "dependencies": { - "@anticrm/platform":"~0.6.3", + "@anticrm/platform":"~0.6.4", "@anticrm/core":"~0.6.0", "@anticrm/ui":"~0.6.0" } diff --git a/plugins/workbench-resources/CHANGELOG.json b/plugins/workbench-resources/CHANGELOG.json new file mode 100644 index 00000000000..0aa065452ad --- /dev/null +++ b/plugins/workbench-resources/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/workbench-resources", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/workbench-resources_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.0` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/plugins/workbench-resources/CHANGELOG.md b/plugins/workbench-resources/CHANGELOG.md new file mode 100644 index 00000000000..831c6117b54 --- /dev/null +++ b/plugins/workbench-resources/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/workbench-resources + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/plugins/workbench-resources/package.json b/plugins/workbench-resources/package.json index 721a094b5f3..5ea785f315c 100644 --- a/plugins/workbench-resources/package.json +++ b/plugins/workbench-resources/package.json @@ -20,7 +20,7 @@ }, "dependencies": { "svelte": "^3.37.0", - "@anticrm/platform": "~0.6.0", + "@anticrm/platform": "~0.6.4", "@anticrm/core": "~0.6.0", "@anticrm/client": "~0.6.0", "@anticrm/workbench": "~0.6.0", diff --git a/plugins/workbench/CHANGELOG.json b/plugins/workbench/CHANGELOG.json new file mode 100644 index 00000000000..7f63dbaedb4 --- /dev/null +++ b/plugins/workbench/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/workbench", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/workbench_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.0` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/plugins/workbench/CHANGELOG.md b/plugins/workbench/CHANGELOG.md new file mode 100644 index 00000000000..d221232767b --- /dev/null +++ b/plugins/workbench/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/workbench + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/plugins/workbench/package.json b/plugins/workbench/package.json index b108d864a23..929311635c7 100644 --- a/plugins/workbench/package.json +++ b/plugins/workbench/package.json @@ -19,7 +19,7 @@ }, "dependencies": { "@anticrm/core":"~0.6.0", - "@anticrm/platform":"~0.6.0", + "@anticrm/platform":"~0.6.4", "@anticrm/ui":"~0.6.0" } } diff --git a/server/chunter/CHANGELOG.json b/server/chunter/CHANGELOG.json new file mode 100644 index 00000000000..1189347607c --- /dev/null +++ b/server/chunter/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/server-chunter", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/server-chunter_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/server/chunter/CHANGELOG.md b/server/chunter/CHANGELOG.md new file mode 100644 index 00000000000..e94759aa1b2 --- /dev/null +++ b/server/chunter/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/server-chunter + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/server/chunter/package.json b/server/chunter/package.json index 5da823c6f0b..6ef46a63709 100644 --- a/server/chunter/package.json +++ b/server/chunter/package.json @@ -21,7 +21,7 @@ }, "dependencies": { "@anticrm/core": "~0.6.3", - "@anticrm/platform": "~0.6.3", + "@anticrm/platform": "~0.6.4", "@anticrm/server-core": "~0.6.0" } } diff --git a/server/core/CHANGELOG.json b/server/core/CHANGELOG.json new file mode 100644 index 00000000000..d255b0b9af1 --- /dev/null +++ b/server/core/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/server-core", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/server-core_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/server/core/CHANGELOG.md b/server/core/CHANGELOG.md new file mode 100644 index 00000000000..56c164bc2d6 --- /dev/null +++ b/server/core/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/server-core + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/server/core/package.json b/server/core/package.json index f3a42c7d24a..38e4a738856 100644 --- a/server/core/package.json +++ b/server/core/package.json @@ -21,6 +21,6 @@ }, "dependencies": { "@anticrm/core": "~0.6.3", - "@anticrm/platform": "~0.6.3" + "@anticrm/platform": "~0.6.4" } } diff --git a/server/server/CHANGELOG.json b/server/server/CHANGELOG.json new file mode 100644 index 00000000000..b022c4f17b8 --- /dev/null +++ b/server/server/CHANGELOG.json @@ -0,0 +1,17 @@ +{ + "name": "@anticrm/server", + "entries": [ + { + "version": "0.6.0", + "tag": "@anticrm/server_v0.6.0", + "date": "Sun, 08 Aug 2021 10:14:57 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@anticrm/platform\" from `~0.6.3` to `~0.6.4`" + } + ] + } + } + ] +} diff --git a/server/server/CHANGELOG.md b/server/server/CHANGELOG.md new file mode 100644 index 00000000000..c754d6314c0 --- /dev/null +++ b/server/server/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log - @anticrm/server + +This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. + +## 0.6.0 +Sun, 08 Aug 2021 10:14:57 GMT + +_Initial release_ + diff --git a/server/server/package.json b/server/server/package.json index 26b0da86d38..7fe4a1c3a0a 100644 --- a/server/server/package.json +++ b/server/server/package.json @@ -21,7 +21,7 @@ }, "dependencies": { "@anticrm/core": "~0.6.3", - "@anticrm/platform": "~0.6.3", + "@anticrm/platform": "~0.6.4", "@anticrm/server-core": "~0.6.0" } } diff --git a/server/ws/package.json b/server/ws/package.json index b71343d102d..b7f1ef67168 100644 --- a/server/ws/package.json +++ b/server/ws/package.json @@ -22,6 +22,6 @@ "dependencies": { "jwt-simple": "^0.5.6", "ws": "^8.0.0", - "@anticrm/platform": "~0.6.3" + "@anticrm/platform": "~0.6.4" } } From c6afd3f112259da8d9646efea9ca93f3f82c4f82 Mon Sep 17 00:00:00 2001 From: Andrey Platov Date: Sun, 8 Aug 2021 12:20:38 +0200 Subject: [PATCH 05/13] lint Signed-off-by: Andrey Platov --- cloud/app/package-lock.json | 173 +++++++++++++++++++++++------------- cloud/app/package.json | 6 +- dev/account/src/account.ts | 9 +- dev/account/src/index.ts | 2 +- 4 files changed, 117 insertions(+), 73 deletions(-) diff --git a/cloud/app/package-lock.json b/cloud/app/package-lock.json index 505266257ca..85792f4769c 100644 --- a/cloud/app/package-lock.json +++ b/cloud/app/package-lock.json @@ -4,17 +4,18 @@ "lockfileVersion": 1, "dependencies": { "@anticrm/dev-account": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/@anticrm/dev-account/-/dev-account-0.6.1.tgz", - "integrity": "sha512-98OTYTLxjmi4/CN0Fq8ClM/d9jZbsFIy7BFAWi5+GT2kkSFtZq/vwjaJSLIIsCxalXC0Dv6cTVaypY6sOwgI3g==", + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/@anticrm/dev-account/-/dev-account-0.6.2.tgz", + "integrity": "sha512-ifRkPuWmo77TJvwyYjRfnWqDEm/A2xrNaAPVSmp5cKoWqQD8FtPW4ZpkLySR9gpb8T19lRWpg5sk952YXAgikQ==", "requires": { - "@anticrm/platform": "~0.6.0" + "@anticrm/platform": "~0.6.4", + "jwt-simple": "^0.5.6" } }, "@anticrm/platform": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/@anticrm/platform/-/platform-0.6.3.tgz", - "integrity": "sha512-gLjxO2Oa9P5x69NZ11gQ+JNB2texUT/MNilsZcf5OP13nJiFfTEhjXnYw+JCc0GnYOTIhKwycPUJJl0kISGeXA==", + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/@anticrm/platform/-/platform-0.6.4.tgz", + "integrity": "sha512-0GJ6/BsqjBBvgs7bxJgWAURWfMWmp7yycDfr1JsvDJEVvBi7VWb1+cpZHiR6MKVfLQJz0f31ET7NGSQueTCMLw==", "requires": { "intl-messageformat": "^9.7.1" } @@ -64,17 +65,17 @@ } }, "@grpc/grpc-js": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.3.4.tgz", - "integrity": "sha512-AxtZcm0mArQhY9z8T3TynCYVEaSKxNCa9mVhVwBCUnsuUEe8Zn94bPYYKVQSLt+hJJ1y0ukr3mUvtWfcATL/IQ==", + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.3.6.tgz", + "integrity": "sha512-v7+LQFbqZKmd/Tvf5/j1Xlbq6jXL/4d+gUtm2TNX4QiEC3ELWADmGr2dGlUyLl6aKTuYfsN72vAsO5zmavYkEg==", "requires": { "@types/node": ">=12.12.47" }, "dependencies": { "@types/node": { - "version": "16.3.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.3.1.tgz", - "integrity": "sha512-N87VuQi7HEeRJkhzovao/JviiqKjDKMVKxKMfUvSKw+MbkbW8R0nA3fi/MQhhlxV2fQ+2ReM+/Nt4efdrJx3zA==" + "version": "16.4.13", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.4.13.tgz", + "integrity": "sha512-bLL69sKtd25w7p1nvg9pigE4gtKVpGTPojBFLMkGHXuUgap2sLqQt2qUnqmVCDfzGUL0DRNZP+1prIZJbMeAXg==" } } }, @@ -138,9 +139,9 @@ "integrity": "sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA=" }, "@pulumi/aws": { - "version": "4.11.0", - "resolved": "https://registry.npmjs.org/@pulumi/aws/-/aws-4.11.0.tgz", - "integrity": "sha512-W2qorwzq/SBPxP5LstYwZYwBrWt/7O9P5zbgcd722uANFoOMiULL8S1i/AzQjpwrzCdPqRPCvtS90vFZhphoGg==", + "version": "4.14.0", + "resolved": "https://registry.npmjs.org/@pulumi/aws/-/aws-4.14.0.tgz", + "integrity": "sha512-X5Kb2FLYIYSLsCHDQl2Wi7MDjjF/papperFFuik1LPTpayRBrxaAokFG3u3z3X+g+ji8LKwtJdhgIrzodCUIIQ==", "requires": { "@pulumi/pulumi": "^3.0.0", "aws-sdk": "^2.0.0", @@ -207,9 +208,9 @@ } }, "@pulumi/pulumi": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/@pulumi/pulumi/-/pulumi-3.6.1.tgz", - "integrity": "sha512-oHMXXh2szmsmDW+wfJMNY7cjuW/reCCBuOc760/vDL7+DkvYX0Id9ElEVPXZM8JgxfC2L2HGePtEKI6kCDEtqA==", + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/@pulumi/pulumi/-/pulumi-3.9.1.tgz", + "integrity": "sha512-Y2LmEzMVGpNFV5gzj7jxQQcFFRZ755shs6gT1HqZ91YWdwGa1ITXZIhvjU5KAnjkQxiaoZJFD352tp+1UnzfhA==", "requires": { "@grpc/grpc-js": "^1.2.7", "@logdna/tail-file": "^2.0.6", @@ -283,9 +284,9 @@ "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" }, "aws-sdk": { - "version": "2.943.0", - "resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.943.0.tgz", - "integrity": "sha512-1/WDupJrIB0SJEzIOf+UpqmG0AP5AXoDXhbW7CEujHerOd+/b5A1ubeHKGQJvBN4tAktgsvGpDiBRfB9MpJU5g==", + "version": "2.963.0", + "resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.963.0.tgz", + "integrity": "sha512-EY7EPap1c/1RxPx+Py56t9btJug3Z3PJkCfplqzNuU1QlFGs+rN8yYm9xIn8J6gbJ5D8F4Qab0GCtTmGstlHfQ==", "requires": { "buffer": "4.9.2", "events": "1.1.1", @@ -343,9 +344,9 @@ } }, "buffer-from": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", - "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" }, "builtin-modules": { "version": "3.0.0", @@ -394,9 +395,9 @@ "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==" }, "es-abstract": { - "version": "1.18.3", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.3.tgz", - "integrity": "sha512-nQIr12dxV7SSxE6r6f1l3DtAeEYdsGpps13dR0TwJg1S8gyp4ZPgy3FZcHBgbiQqnoqSTb+oC+kO4UQ0C/J8vw==", + "version": "1.18.5", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.5.tgz", + "integrity": "sha512-DDggyJLoS91CkJjgauM5c0yZMjiD1uK3KcaCeAmffGwZ+ODWzOkPN4QwRbsK5DOFf06fywmyLci3ZD8jLGhVYA==", "requires": { "call-bind": "^1.0.2", "es-to-primitive": "^1.2.1", @@ -404,11 +405,12 @@ "get-intrinsic": "^1.1.1", "has": "^1.0.3", "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", "is-callable": "^1.2.3", "is-negative-zero": "^2.0.1", "is-regex": "^1.1.3", "is-string": "^1.0.6", - "object-inspect": "^1.10.3", + "object-inspect": "^1.11.0", "object-keys": "^1.1.1", "object.assign": "^4.1.2", "string.prototype.trimend": "^1.0.4", @@ -475,9 +477,9 @@ "integrity": "sha512-OVPzcSWIAJ+d5yiHyeaLrdufQtrvaBrF4JQg+z8ynTkbO3uFcujqXszTumqg1cGsAsjkWnI+M5B1xZ19yR4Wyg==" }, "graceful-fs": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", + "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==" }, "has": { "version": "1.0.3", @@ -497,6 +499,14 @@ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "requires": { + "has-symbols": "^1.0.2" + } + }, "hosted-git-info": { "version": "2.8.9", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", @@ -521,6 +531,16 @@ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, + "internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "requires": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + } + }, "intl-messageformat": { "version": "9.8.2", "resolved": "https://registry.npmjs.org/intl-messageformat/-/intl-messageformat-9.8.2.tgz", @@ -532,35 +552,39 @@ } }, "is-bigint": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.2.tgz", - "integrity": "sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==" + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.3.tgz", + "integrity": "sha512-ZU538ajmYJmzysE5yU4Y7uIrPQ2j704u+hXFiIPQExpqzzUbpe5jCPdTfmz7jXRxZdvjY3KZ3ZNenoXQovX+Dg==" }, "is-boolean-object": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.1.tgz", - "integrity": "sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng==", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "requires": { - "call-bind": "^1.0.2" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" } }, "is-callable": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", - "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==" + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", + "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==" }, "is-core-module": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.4.0.tgz", - "integrity": "sha512-6A2fkfq1rfeQZjxrZJGerpLCTHRNEBiSgnu0+obeJpEPZRUooHgsizvzv0ZjJwOz3iWIHdJtVWJ/tmPr3D21/A==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.5.0.tgz", + "integrity": "sha512-TXCMSDsEHMEEZ6eCA8rwRDbLu55MRGmrctljsBX/2v1d9/GzqHOxW5c5oPSgrUt2vBFXebu9rGqckXGPWOlYpg==", "requires": { "has": "^1.0.3" } }, "is-date-object": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.4.tgz", - "integrity": "sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A==" + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "requires": { + "has-tostringtag": "^1.0.0" + } }, "is-negative-zero": { "version": "2.0.1", @@ -568,23 +592,29 @@ "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==" }, "is-number-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.5.tgz", - "integrity": "sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw==" + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz", + "integrity": "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==", + "requires": { + "has-tostringtag": "^1.0.0" + } }, "is-regex": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.3.tgz", - "integrity": "sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "requires": { "call-bind": "^1.0.2", - "has-symbols": "^1.0.2" + "has-tostringtag": "^1.0.0" } }, "is-string": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.6.tgz", - "integrity": "sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==" + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "requires": { + "has-tostringtag": "^1.0.0" + } }, "is-symbol": { "version": "1.0.4", @@ -618,6 +648,11 @@ "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" }, + "jwt-simple": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/jwt-simple/-/jwt-simple-0.5.6.tgz", + "integrity": "sha512-40aUybvhH9t2h71ncA1/1SbtTNCVZHgsTsTgqPUxGWDmUDrXyDf2wMNQKEbdBjbf4AI+fQhbECNTV6lWxQKUzg==" + }, "long": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", @@ -696,9 +731,9 @@ "integrity": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==" }, "object-inspect": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.3.tgz", - "integrity": "sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==" + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz", + "integrity": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==" }, "object-keys": { "version": "1.1.1", @@ -765,9 +800,9 @@ }, "dependencies": { "@types/node": { - "version": "16.3.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.3.1.tgz", - "integrity": "sha512-N87VuQi7HEeRJkhzovao/JviiqKjDKMVKxKMfUvSKw+MbkbW8R0nA3fi/MQhhlxV2fQ+2ReM+/Nt4efdrJx3zA==" + "version": "16.4.13", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.4.13.tgz", + "integrity": "sha512-bLL69sKtd25w7p1nvg9pigE4gtKVpGTPojBFLMkGHXuUgap2sLqQt2qUnqmVCDfzGUL0DRNZP+1prIZJbMeAXg==" } } }, @@ -837,6 +872,16 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, "source-map": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", diff --git a/cloud/app/package.json b/cloud/app/package.json index 04660a22940..02ab8c91a48 100644 --- a/cloud/app/package.json +++ b/cloud/app/package.json @@ -5,11 +5,11 @@ "@types/mime": "^2.0.3" }, "dependencies": { - "@anticrm/dev-account": "^0.6.1", - "@pulumi/aws": "^4.11.0", + "@anticrm/dev-account": "^0.6.2", + "@pulumi/aws": "^4.14.0", "@pulumi/cloud": "^0.30.1", "@pulumi/cloud-aws": "^0.30.1", - "@pulumi/pulumi": "^3.0.0", + "@pulumi/pulumi": "^3.9.1", "mime": "^2.5.2" } } diff --git a/dev/account/src/account.ts b/dev/account/src/account.ts index cbb9fa9fb28..f957ed96a34 100644 --- a/dev/account/src/account.ts +++ b/dev/account/src/account.ts @@ -20,11 +20,11 @@ import platform, { Status, Severity } from '@anticrm/platform' import { encode } from 'jwt-simple' interface LoginInfo { - token: string, + token: string endpoint: string } -function login(endpoint: string, email: string, password: string, workspace: string): Response { +function login (endpoint: string, email: string, password: string, workspace: string): Response { if (email !== 'rosamund@hc.engineering' && email !== 'elon@hc.engineering') { return { error: new Status(Severity.ERROR, platform.status.Unauthorized, {}) } } @@ -41,9 +41,8 @@ function login(endpoint: string, email: string, password: string, workspace: str return { result: { token, endpoint } } } -export function handleRequest(req: Request, serverEndpoint: string): Response { - if (req.method === 'login') - return login(serverEndpoint, ...(req as Request<[string, string, string]>).params) +export function handleRequest (req: Request, serverEndpoint: string): Response { + if (req.method === 'login') { return login(serverEndpoint, ...(req as Request<[string, string, string]>).params) } return { error: new Status(Severity.ERROR, platform.status.BadRequest, {}) } } diff --git a/dev/account/src/index.ts b/dev/account/src/index.ts index 1f9c95c1eab..4ca29c45034 100644 --- a/dev/account/src/index.ts +++ b/dev/account/src/index.ts @@ -14,7 +14,7 @@ // limitations under the License. // -import { handleRequest } from "./account" +import { handleRequest } from './account' /** * @public From ff09b161745b2720fe1ff851e629a67c215f1f75 Mon Sep 17 00:00:00 2001 From: Andrey Platov Date: Sun, 8 Aug 2021 12:22:30 +0200 Subject: [PATCH 06/13] changelog Signed-off-by: Andrey Platov --- .../chunter-assets/login_2021-08-08-10-21.json | 10 ++++++++++ .../chunter-resources/login_2021-08-08-10-21.json | 10 ++++++++++ .../@anticrm/chunter/login_2021-08-08-10-21.json | 10 ++++++++++ .../client-resources/login_2021-08-08-10-21.json | 10 ++++++++++ .../@anticrm/client/login_2021-08-08-10-21.json | 10 ++++++++++ .../contact-resources/login_2021-08-08-10-21.json | 10 ++++++++++ .../@anticrm/contact/login_2021-08-08-10-21.json | 10 ++++++++++ .../@anticrm/core/login_2021-08-08-10-21.json | 10 ++++++++++ .../dev-client-resources/login_2021-08-08-10-21.json | 10 ++++++++++ .../login_2021-08-08-10-21.json | 10 ++++++++++ .../@anticrm/dev-server/login_2021-08-08-10-21.json | 10 ++++++++++ .../@anticrm/dev-storage/login_2021-08-08-10-21.json | 10 ++++++++++ .../login-assets/login_2021-08-08-10-21.json | 10 ++++++++++ .../login-resources/login_2021-08-08-10-21.json | 10 ++++++++++ .../@anticrm/login/login_2021-08-08-10-21.json | 10 ++++++++++ .../model-chunter/login_2021-08-08-10-21.json | 10 ++++++++++ .../model-contact/login_2021-08-08-10-21.json | 10 ++++++++++ .../@anticrm/model-core/login_2021-08-08-10-21.json | 10 ++++++++++ .../@anticrm/model-demo/login_2021-08-08-10-21.json | 10 ++++++++++ .../model-recruit/login_2021-08-08-10-21.json | 10 ++++++++++ .../model-server-chunter/login_2021-08-08-10-21.json | 10 ++++++++++ .../model-server-core/login_2021-08-08-10-21.json | 10 ++++++++++ .../@anticrm/model-task/login_2021-08-08-10-21.json | 10 ++++++++++ .../@anticrm/model-view/login_2021-08-08-10-21.json | 10 ++++++++++ .../model-workbench/login_2021-08-08-10-21.json | 10 ++++++++++ .../@anticrm/model/login_2021-08-08-10-21.json | 10 ++++++++++ .../@anticrm/platform/login_2021-08-08-10-21.json | 10 ++++++++++ .../presentation/login_2021-08-08-10-21.json | 10 ++++++++++ .../@anticrm/query/login_2021-08-08-10-21.json | 10 ++++++++++ .../recruit-assets/login_2021-08-08-10-21.json | 10 ++++++++++ .../recruit-resources/login_2021-08-08-10-21.json | 10 ++++++++++ .../@anticrm/recruit/login_2021-08-08-10-21.json | 10 ++++++++++ .../server-chunter/login_2021-08-08-10-21.json | 10 ++++++++++ .../@anticrm/server-core/login_2021-08-08-10-21.json | 10 ++++++++++ .../@anticrm/server-ws/login_2021-08-08-10-21.json | 10 ++++++++++ .../@anticrm/server/login_2021-08-08-10-21.json | 10 ++++++++++ .../@anticrm/task-assets/login_2021-08-08-10-21.json | 10 ++++++++++ .../task-resources/login_2021-08-08-10-21.json | 10 ++++++++++ .../@anticrm/task/login_2021-08-08-10-21.json | 10 ++++++++++ .../changes/@anticrm/ui/login_2021-08-08-10-21.json | 10 ++++++++++ .../@anticrm/view-assets/login_2021-08-08-10-21.json | 10 ++++++++++ .../view-resources/login_2021-08-08-10-21.json | 10 ++++++++++ .../@anticrm/view/login_2021-08-08-10-21.json | 10 ++++++++++ .../workbench-resources/login_2021-08-08-10-21.json | 10 ++++++++++ .../@anticrm/workbench/login_2021-08-08-10-21.json | 10 ++++++++++ common/changes/prod/login_2021-08-08-10-21.json | 10 ++++++++++ dev/account/CHANGELOG.json | 12 ++++++++++++ dev/account/CHANGELOG.md | 9 ++++++++- dev/account/package.json | 2 +- 49 files changed, 481 insertions(+), 2 deletions(-) create mode 100644 common/changes/@anticrm/chunter-assets/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/chunter-resources/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/chunter/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/client-resources/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/client/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/contact-resources/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/contact/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/core/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/dev-client-resources/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/dev-server-chunter-resources/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/dev-server/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/dev-storage/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/login-assets/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/login-resources/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/login/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/model-chunter/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/model-contact/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/model-core/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/model-demo/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/model-recruit/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/model-server-chunter/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/model-server-core/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/model-task/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/model-view/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/model-workbench/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/model/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/platform/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/presentation/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/query/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/recruit-assets/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/recruit-resources/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/recruit/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/server-chunter/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/server-core/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/server-ws/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/server/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/task-assets/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/task-resources/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/task/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/ui/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/view-assets/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/view-resources/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/view/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/workbench-resources/login_2021-08-08-10-21.json create mode 100644 common/changes/@anticrm/workbench/login_2021-08-08-10-21.json create mode 100644 common/changes/prod/login_2021-08-08-10-21.json diff --git a/common/changes/@anticrm/chunter-assets/login_2021-08-08-10-21.json b/common/changes/@anticrm/chunter-assets/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..4987e7011cc --- /dev/null +++ b/common/changes/@anticrm/chunter-assets/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/chunter-assets", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/chunter-assets" +} \ No newline at end of file diff --git a/common/changes/@anticrm/chunter-resources/login_2021-08-08-10-21.json b/common/changes/@anticrm/chunter-resources/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..55457e71a2c --- /dev/null +++ b/common/changes/@anticrm/chunter-resources/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/chunter-resources", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/chunter-resources" +} \ No newline at end of file diff --git a/common/changes/@anticrm/chunter/login_2021-08-08-10-21.json b/common/changes/@anticrm/chunter/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..8d76096a11b --- /dev/null +++ b/common/changes/@anticrm/chunter/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/chunter", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/chunter" +} \ No newline at end of file diff --git a/common/changes/@anticrm/client-resources/login_2021-08-08-10-21.json b/common/changes/@anticrm/client-resources/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..8d501a96ba2 --- /dev/null +++ b/common/changes/@anticrm/client-resources/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/client-resources", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/client-resources" +} \ No newline at end of file diff --git a/common/changes/@anticrm/client/login_2021-08-08-10-21.json b/common/changes/@anticrm/client/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..74d2bb3b32a --- /dev/null +++ b/common/changes/@anticrm/client/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/client", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/client" +} \ No newline at end of file diff --git a/common/changes/@anticrm/contact-resources/login_2021-08-08-10-21.json b/common/changes/@anticrm/contact-resources/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..562bc5b15b8 --- /dev/null +++ b/common/changes/@anticrm/contact-resources/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/contact-resources", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/contact-resources" +} \ No newline at end of file diff --git a/common/changes/@anticrm/contact/login_2021-08-08-10-21.json b/common/changes/@anticrm/contact/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..c7766541277 --- /dev/null +++ b/common/changes/@anticrm/contact/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/contact", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/contact" +} \ No newline at end of file diff --git a/common/changes/@anticrm/core/login_2021-08-08-10-21.json b/common/changes/@anticrm/core/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..07733e41308 --- /dev/null +++ b/common/changes/@anticrm/core/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/core", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/core" +} \ No newline at end of file diff --git a/common/changes/@anticrm/dev-client-resources/login_2021-08-08-10-21.json b/common/changes/@anticrm/dev-client-resources/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..a93e20a202f --- /dev/null +++ b/common/changes/@anticrm/dev-client-resources/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/dev-client-resources", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/dev-client-resources" +} \ No newline at end of file diff --git a/common/changes/@anticrm/dev-server-chunter-resources/login_2021-08-08-10-21.json b/common/changes/@anticrm/dev-server-chunter-resources/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..5ba95cde7f0 --- /dev/null +++ b/common/changes/@anticrm/dev-server-chunter-resources/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/dev-server-chunter-resources", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/dev-server-chunter-resources" +} \ No newline at end of file diff --git a/common/changes/@anticrm/dev-server/login_2021-08-08-10-21.json b/common/changes/@anticrm/dev-server/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..f1107fae3cf --- /dev/null +++ b/common/changes/@anticrm/dev-server/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/dev-server", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/dev-server" +} \ No newline at end of file diff --git a/common/changes/@anticrm/dev-storage/login_2021-08-08-10-21.json b/common/changes/@anticrm/dev-storage/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..3075a77de95 --- /dev/null +++ b/common/changes/@anticrm/dev-storage/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/dev-storage", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/dev-storage" +} \ No newline at end of file diff --git a/common/changes/@anticrm/login-assets/login_2021-08-08-10-21.json b/common/changes/@anticrm/login-assets/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..a3b565e5d98 --- /dev/null +++ b/common/changes/@anticrm/login-assets/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/login-assets", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/login-assets" +} \ No newline at end of file diff --git a/common/changes/@anticrm/login-resources/login_2021-08-08-10-21.json b/common/changes/@anticrm/login-resources/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..ab64cbbdcec --- /dev/null +++ b/common/changes/@anticrm/login-resources/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/login-resources", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/login-resources" +} \ No newline at end of file diff --git a/common/changes/@anticrm/login/login_2021-08-08-10-21.json b/common/changes/@anticrm/login/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..226ec8a2a1e --- /dev/null +++ b/common/changes/@anticrm/login/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/login", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/login" +} \ No newline at end of file diff --git a/common/changes/@anticrm/model-chunter/login_2021-08-08-10-21.json b/common/changes/@anticrm/model-chunter/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..6dc45197bae --- /dev/null +++ b/common/changes/@anticrm/model-chunter/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/model-chunter", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/model-chunter" +} \ No newline at end of file diff --git a/common/changes/@anticrm/model-contact/login_2021-08-08-10-21.json b/common/changes/@anticrm/model-contact/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..278b3be42c8 --- /dev/null +++ b/common/changes/@anticrm/model-contact/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/model-contact", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/model-contact" +} \ No newline at end of file diff --git a/common/changes/@anticrm/model-core/login_2021-08-08-10-21.json b/common/changes/@anticrm/model-core/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..b0c0401bf86 --- /dev/null +++ b/common/changes/@anticrm/model-core/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/model-core", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/model-core" +} \ No newline at end of file diff --git a/common/changes/@anticrm/model-demo/login_2021-08-08-10-21.json b/common/changes/@anticrm/model-demo/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..ccbc08d6c27 --- /dev/null +++ b/common/changes/@anticrm/model-demo/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/model-demo", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/model-demo" +} \ No newline at end of file diff --git a/common/changes/@anticrm/model-recruit/login_2021-08-08-10-21.json b/common/changes/@anticrm/model-recruit/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..726fe7b6ffa --- /dev/null +++ b/common/changes/@anticrm/model-recruit/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/model-recruit", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/model-recruit" +} \ No newline at end of file diff --git a/common/changes/@anticrm/model-server-chunter/login_2021-08-08-10-21.json b/common/changes/@anticrm/model-server-chunter/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..4bae31d629a --- /dev/null +++ b/common/changes/@anticrm/model-server-chunter/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/model-server-chunter", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/model-server-chunter" +} \ No newline at end of file diff --git a/common/changes/@anticrm/model-server-core/login_2021-08-08-10-21.json b/common/changes/@anticrm/model-server-core/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..cf9e3fd66ec --- /dev/null +++ b/common/changes/@anticrm/model-server-core/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/model-server-core", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/model-server-core" +} \ No newline at end of file diff --git a/common/changes/@anticrm/model-task/login_2021-08-08-10-21.json b/common/changes/@anticrm/model-task/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..f359dd9881f --- /dev/null +++ b/common/changes/@anticrm/model-task/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/model-task", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/model-task" +} \ No newline at end of file diff --git a/common/changes/@anticrm/model-view/login_2021-08-08-10-21.json b/common/changes/@anticrm/model-view/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..8fbd0db7211 --- /dev/null +++ b/common/changes/@anticrm/model-view/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/model-view", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/model-view" +} \ No newline at end of file diff --git a/common/changes/@anticrm/model-workbench/login_2021-08-08-10-21.json b/common/changes/@anticrm/model-workbench/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..2e48c7978e4 --- /dev/null +++ b/common/changes/@anticrm/model-workbench/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/model-workbench", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/model-workbench" +} \ No newline at end of file diff --git a/common/changes/@anticrm/model/login_2021-08-08-10-21.json b/common/changes/@anticrm/model/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..47741a8b6cd --- /dev/null +++ b/common/changes/@anticrm/model/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/model", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/model" +} \ No newline at end of file diff --git a/common/changes/@anticrm/platform/login_2021-08-08-10-21.json b/common/changes/@anticrm/platform/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..0cf584ff2f1 --- /dev/null +++ b/common/changes/@anticrm/platform/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/platform", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/platform" +} \ No newline at end of file diff --git a/common/changes/@anticrm/presentation/login_2021-08-08-10-21.json b/common/changes/@anticrm/presentation/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..daabbcc7603 --- /dev/null +++ b/common/changes/@anticrm/presentation/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/presentation", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/presentation" +} \ No newline at end of file diff --git a/common/changes/@anticrm/query/login_2021-08-08-10-21.json b/common/changes/@anticrm/query/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..b4a815839b6 --- /dev/null +++ b/common/changes/@anticrm/query/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/query", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/query" +} \ No newline at end of file diff --git a/common/changes/@anticrm/recruit-assets/login_2021-08-08-10-21.json b/common/changes/@anticrm/recruit-assets/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..5c41fd8b52c --- /dev/null +++ b/common/changes/@anticrm/recruit-assets/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/recruit-assets", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/recruit-assets" +} \ No newline at end of file diff --git a/common/changes/@anticrm/recruit-resources/login_2021-08-08-10-21.json b/common/changes/@anticrm/recruit-resources/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..2f12eeba55a --- /dev/null +++ b/common/changes/@anticrm/recruit-resources/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/recruit-resources", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/recruit-resources" +} \ No newline at end of file diff --git a/common/changes/@anticrm/recruit/login_2021-08-08-10-21.json b/common/changes/@anticrm/recruit/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..6ea2167fcc6 --- /dev/null +++ b/common/changes/@anticrm/recruit/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/recruit", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/recruit" +} \ No newline at end of file diff --git a/common/changes/@anticrm/server-chunter/login_2021-08-08-10-21.json b/common/changes/@anticrm/server-chunter/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..b106dfa8e7f --- /dev/null +++ b/common/changes/@anticrm/server-chunter/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/server-chunter", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/server-chunter" +} \ No newline at end of file diff --git a/common/changes/@anticrm/server-core/login_2021-08-08-10-21.json b/common/changes/@anticrm/server-core/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..c12bb068660 --- /dev/null +++ b/common/changes/@anticrm/server-core/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/server-core", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/server-core" +} \ No newline at end of file diff --git a/common/changes/@anticrm/server-ws/login_2021-08-08-10-21.json b/common/changes/@anticrm/server-ws/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..57238d2e4ea --- /dev/null +++ b/common/changes/@anticrm/server-ws/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/server-ws", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/server-ws" +} \ No newline at end of file diff --git a/common/changes/@anticrm/server/login_2021-08-08-10-21.json b/common/changes/@anticrm/server/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..703c38f0520 --- /dev/null +++ b/common/changes/@anticrm/server/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/server", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/server" +} \ No newline at end of file diff --git a/common/changes/@anticrm/task-assets/login_2021-08-08-10-21.json b/common/changes/@anticrm/task-assets/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..f06f268d2b8 --- /dev/null +++ b/common/changes/@anticrm/task-assets/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/task-assets", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/task-assets" +} \ No newline at end of file diff --git a/common/changes/@anticrm/task-resources/login_2021-08-08-10-21.json b/common/changes/@anticrm/task-resources/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..b8358336b1f --- /dev/null +++ b/common/changes/@anticrm/task-resources/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/task-resources", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/task-resources" +} \ No newline at end of file diff --git a/common/changes/@anticrm/task/login_2021-08-08-10-21.json b/common/changes/@anticrm/task/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..91a10810550 --- /dev/null +++ b/common/changes/@anticrm/task/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/task", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/task" +} \ No newline at end of file diff --git a/common/changes/@anticrm/ui/login_2021-08-08-10-21.json b/common/changes/@anticrm/ui/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..c37769d8f2a --- /dev/null +++ b/common/changes/@anticrm/ui/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/ui", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/ui" +} \ No newline at end of file diff --git a/common/changes/@anticrm/view-assets/login_2021-08-08-10-21.json b/common/changes/@anticrm/view-assets/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..bc23f6ede01 --- /dev/null +++ b/common/changes/@anticrm/view-assets/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/view-assets", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/view-assets" +} \ No newline at end of file diff --git a/common/changes/@anticrm/view-resources/login_2021-08-08-10-21.json b/common/changes/@anticrm/view-resources/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..ad4a208143a --- /dev/null +++ b/common/changes/@anticrm/view-resources/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/view-resources", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/view-resources" +} \ No newline at end of file diff --git a/common/changes/@anticrm/view/login_2021-08-08-10-21.json b/common/changes/@anticrm/view/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..5116e3a17f9 --- /dev/null +++ b/common/changes/@anticrm/view/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/view", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/view" +} \ No newline at end of file diff --git a/common/changes/@anticrm/workbench-resources/login_2021-08-08-10-21.json b/common/changes/@anticrm/workbench-resources/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..50a83686fa2 --- /dev/null +++ b/common/changes/@anticrm/workbench-resources/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/workbench-resources", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/workbench-resources" +} \ No newline at end of file diff --git a/common/changes/@anticrm/workbench/login_2021-08-08-10-21.json b/common/changes/@anticrm/workbench/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..23ef29dd17d --- /dev/null +++ b/common/changes/@anticrm/workbench/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/workbench", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/workbench" +} \ No newline at end of file diff --git a/common/changes/prod/login_2021-08-08-10-21.json b/common/changes/prod/login_2021-08-08-10-21.json new file mode 100644 index 00000000000..f9451f44107 --- /dev/null +++ b/common/changes/prod/login_2021-08-08-10-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "prod", + "comment": "", + "type": "none" + } + ], + "packageName": "prod" +} \ No newline at end of file diff --git a/dev/account/CHANGELOG.json b/dev/account/CHANGELOG.json index 1e8983ed487..d0ab73138c2 100644 --- a/dev/account/CHANGELOG.json +++ b/dev/account/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@anticrm/dev-account", "entries": [ + { + "version": "0.6.3", + "tag": "@anticrm/dev-account_v0.6.3", + "date": "Sun, 08 Aug 2021 10:21:31 GMT", + "comments": { + "patch": [ + { + "comment": "Lint" + } + ] + } + }, { "version": "0.6.2", "tag": "@anticrm/dev-account_v0.6.2", diff --git a/dev/account/CHANGELOG.md b/dev/account/CHANGELOG.md index 0dbaba76a0b..962691dcf65 100644 --- a/dev/account/CHANGELOG.md +++ b/dev/account/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log - @anticrm/dev-account -This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. +This log was last generated on Sun, 08 Aug 2021 10:21:31 GMT and should not be manually modified. + +## 0.6.3 +Sun, 08 Aug 2021 10:21:31 GMT + +### Patches + +- Lint ## 0.6.2 Sun, 08 Aug 2021 10:14:57 GMT diff --git a/dev/account/package.json b/dev/account/package.json index 1213b9e15ac..46971d18dcd 100644 --- a/dev/account/package.json +++ b/dev/account/package.json @@ -1,6 +1,6 @@ { "name": "@anticrm/dev-account", - "version": "0.6.2", + "version": "0.6.3", "main": "lib/index.js", "author": "Anticrm Platform Contributors", "license": "EPL-2.0", From db56d7d8aa3ce2ec68bb3f59634386e3e3b413e8 Mon Sep 17 00:00:00 2001 From: Andrey Platov Date: Sun, 8 Aug 2021 12:30:46 +0200 Subject: [PATCH 07/13] update deployment Signed-off-by: Andrey Platov --- cloud/app/index.ts | 2 +- cloud/app/package-lock.json | 6 +++--- cloud/app/package.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cloud/app/index.ts b/cloud/app/index.ts index f8c2d501c77..02d7ecb196d 100644 --- a/cloud/app/index.ts +++ b/cloud/app/index.ts @@ -94,7 +94,7 @@ const api = new awsx.apigateway.API("login", { path: "/", method: "POST", eventHandler: async (event) => { - return handle(event.body, serverEndpoint) + return handle(event.body, serverEndpoint.get()) }, }], }) diff --git a/cloud/app/package-lock.json b/cloud/app/package-lock.json index 85792f4769c..3ab54834bb3 100644 --- a/cloud/app/package-lock.json +++ b/cloud/app/package-lock.json @@ -4,9 +4,9 @@ "lockfileVersion": 1, "dependencies": { "@anticrm/dev-account": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/@anticrm/dev-account/-/dev-account-0.6.2.tgz", - "integrity": "sha512-ifRkPuWmo77TJvwyYjRfnWqDEm/A2xrNaAPVSmp5cKoWqQD8FtPW4ZpkLySR9gpb8T19lRWpg5sk952YXAgikQ==", + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/@anticrm/dev-account/-/dev-account-0.6.3.tgz", + "integrity": "sha512-2o/uQQ7yiM0vbJHFacxrBN81pVz1gdr6R0xVzQBqoc4efCta/A2K93WUWgs3S+QDuG4uhvLpDkswP7Y2Cp1ajw==", "requires": { "@anticrm/platform": "~0.6.4", "jwt-simple": "^0.5.6" diff --git a/cloud/app/package.json b/cloud/app/package.json index 02ab8c91a48..1de8c7f998a 100644 --- a/cloud/app/package.json +++ b/cloud/app/package.json @@ -5,7 +5,7 @@ "@types/mime": "^2.0.3" }, "dependencies": { - "@anticrm/dev-account": "^0.6.2", + "@anticrm/dev-account": "^0.6.3", "@pulumi/aws": "^4.14.0", "@pulumi/cloud": "^0.30.1", "@pulumi/cloud-aws": "^0.30.1", From 84f63f7822fe58fd562850ce1d2c9633549d9db3 Mon Sep 17 00:00:00 2001 From: Andrey Platov Date: Sun, 8 Aug 2021 12:31:28 +0200 Subject: [PATCH 08/13] remove changes Signed-off-by: Andrey Platov --- .../chunter-assets/login_2021-08-08-10-21.json | 10 ---------- .../chunter-resources/login_2021-08-08-10-21.json | 10 ---------- .../@anticrm/chunter/login_2021-08-08-10-21.json | 10 ---------- .../client-resources/login_2021-08-08-10-21.json | 10 ---------- .../@anticrm/client/login_2021-08-08-10-21.json | 10 ---------- .../contact-resources/login_2021-08-08-10-21.json | 10 ---------- .../@anticrm/contact/login_2021-08-08-10-21.json | 10 ---------- .../changes/@anticrm/core/login_2021-08-08-10-21.json | 10 ---------- .../dev-client-resources/login_2021-08-08-10-21.json | 10 ---------- .../login_2021-08-08-10-21.json | 10 ---------- .../@anticrm/dev-server/login_2021-08-08-10-21.json | 10 ---------- .../@anticrm/dev-storage/login_2021-08-08-10-21.json | 10 ---------- .../@anticrm/login-assets/login_2021-08-08-10-21.json | 10 ---------- .../login-resources/login_2021-08-08-10-21.json | 10 ---------- .../changes/@anticrm/login/login_2021-08-08-10-21.json | 10 ---------- .../@anticrm/model-chunter/login_2021-08-08-10-21.json | 10 ---------- .../@anticrm/model-contact/login_2021-08-08-10-21.json | 10 ---------- .../@anticrm/model-core/login_2021-08-08-10-21.json | 10 ---------- .../@anticrm/model-demo/login_2021-08-08-10-21.json | 10 ---------- .../@anticrm/model-recruit/login_2021-08-08-10-21.json | 10 ---------- .../model-server-chunter/login_2021-08-08-10-21.json | 10 ---------- .../model-server-core/login_2021-08-08-10-21.json | 10 ---------- .../@anticrm/model-task/login_2021-08-08-10-21.json | 10 ---------- .../@anticrm/model-view/login_2021-08-08-10-21.json | 10 ---------- .../model-workbench/login_2021-08-08-10-21.json | 10 ---------- .../changes/@anticrm/model/login_2021-08-08-10-21.json | 10 ---------- .../@anticrm/platform/login_2021-08-08-10-21.json | 10 ---------- .../@anticrm/presentation/login_2021-08-08-10-21.json | 10 ---------- .../changes/@anticrm/query/login_2021-08-08-10-21.json | 10 ---------- .../recruit-assets/login_2021-08-08-10-21.json | 10 ---------- .../recruit-resources/login_2021-08-08-10-21.json | 10 ---------- .../@anticrm/recruit/login_2021-08-08-10-21.json | 10 ---------- .../server-chunter/login_2021-08-08-10-21.json | 10 ---------- .../@anticrm/server-core/login_2021-08-08-10-21.json | 10 ---------- .../@anticrm/server-ws/login_2021-08-08-10-21.json | 10 ---------- .../@anticrm/server/login_2021-08-08-10-21.json | 10 ---------- .../@anticrm/task-assets/login_2021-08-08-10-21.json | 10 ---------- .../task-resources/login_2021-08-08-10-21.json | 10 ---------- .../changes/@anticrm/task/login_2021-08-08-10-21.json | 10 ---------- common/changes/@anticrm/ui/login_2021-08-08-10-21.json | 10 ---------- .../@anticrm/view-assets/login_2021-08-08-10-21.json | 10 ---------- .../view-resources/login_2021-08-08-10-21.json | 10 ---------- .../changes/@anticrm/view/login_2021-08-08-10-21.json | 10 ---------- .../workbench-resources/login_2021-08-08-10-21.json | 10 ---------- .../@anticrm/workbench/login_2021-08-08-10-21.json | 10 ---------- common/changes/prod/login_2021-08-08-10-21.json | 10 ---------- 46 files changed, 460 deletions(-) delete mode 100644 common/changes/@anticrm/chunter-assets/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/chunter-resources/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/chunter/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/client-resources/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/client/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/contact-resources/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/contact/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/core/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/dev-client-resources/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/dev-server-chunter-resources/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/dev-server/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/dev-storage/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/login-assets/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/login-resources/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/login/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/model-chunter/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/model-contact/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/model-core/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/model-demo/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/model-recruit/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/model-server-chunter/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/model-server-core/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/model-task/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/model-view/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/model-workbench/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/model/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/platform/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/presentation/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/query/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/recruit-assets/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/recruit-resources/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/recruit/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/server-chunter/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/server-core/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/server-ws/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/server/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/task-assets/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/task-resources/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/task/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/ui/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/view-assets/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/view-resources/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/view/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/workbench-resources/login_2021-08-08-10-21.json delete mode 100644 common/changes/@anticrm/workbench/login_2021-08-08-10-21.json delete mode 100644 common/changes/prod/login_2021-08-08-10-21.json diff --git a/common/changes/@anticrm/chunter-assets/login_2021-08-08-10-21.json b/common/changes/@anticrm/chunter-assets/login_2021-08-08-10-21.json deleted file mode 100644 index 4987e7011cc..00000000000 --- a/common/changes/@anticrm/chunter-assets/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/chunter-assets", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/chunter-assets" -} \ No newline at end of file diff --git a/common/changes/@anticrm/chunter-resources/login_2021-08-08-10-21.json b/common/changes/@anticrm/chunter-resources/login_2021-08-08-10-21.json deleted file mode 100644 index 55457e71a2c..00000000000 --- a/common/changes/@anticrm/chunter-resources/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/chunter-resources", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/chunter-resources" -} \ No newline at end of file diff --git a/common/changes/@anticrm/chunter/login_2021-08-08-10-21.json b/common/changes/@anticrm/chunter/login_2021-08-08-10-21.json deleted file mode 100644 index 8d76096a11b..00000000000 --- a/common/changes/@anticrm/chunter/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/chunter", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/chunter" -} \ No newline at end of file diff --git a/common/changes/@anticrm/client-resources/login_2021-08-08-10-21.json b/common/changes/@anticrm/client-resources/login_2021-08-08-10-21.json deleted file mode 100644 index 8d501a96ba2..00000000000 --- a/common/changes/@anticrm/client-resources/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/client-resources", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/client-resources" -} \ No newline at end of file diff --git a/common/changes/@anticrm/client/login_2021-08-08-10-21.json b/common/changes/@anticrm/client/login_2021-08-08-10-21.json deleted file mode 100644 index 74d2bb3b32a..00000000000 --- a/common/changes/@anticrm/client/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/client", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/client" -} \ No newline at end of file diff --git a/common/changes/@anticrm/contact-resources/login_2021-08-08-10-21.json b/common/changes/@anticrm/contact-resources/login_2021-08-08-10-21.json deleted file mode 100644 index 562bc5b15b8..00000000000 --- a/common/changes/@anticrm/contact-resources/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/contact-resources", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/contact-resources" -} \ No newline at end of file diff --git a/common/changes/@anticrm/contact/login_2021-08-08-10-21.json b/common/changes/@anticrm/contact/login_2021-08-08-10-21.json deleted file mode 100644 index c7766541277..00000000000 --- a/common/changes/@anticrm/contact/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/contact", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/contact" -} \ No newline at end of file diff --git a/common/changes/@anticrm/core/login_2021-08-08-10-21.json b/common/changes/@anticrm/core/login_2021-08-08-10-21.json deleted file mode 100644 index 07733e41308..00000000000 --- a/common/changes/@anticrm/core/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/core", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/core" -} \ No newline at end of file diff --git a/common/changes/@anticrm/dev-client-resources/login_2021-08-08-10-21.json b/common/changes/@anticrm/dev-client-resources/login_2021-08-08-10-21.json deleted file mode 100644 index a93e20a202f..00000000000 --- a/common/changes/@anticrm/dev-client-resources/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/dev-client-resources", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/dev-client-resources" -} \ No newline at end of file diff --git a/common/changes/@anticrm/dev-server-chunter-resources/login_2021-08-08-10-21.json b/common/changes/@anticrm/dev-server-chunter-resources/login_2021-08-08-10-21.json deleted file mode 100644 index 5ba95cde7f0..00000000000 --- a/common/changes/@anticrm/dev-server-chunter-resources/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/dev-server-chunter-resources", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/dev-server-chunter-resources" -} \ No newline at end of file diff --git a/common/changes/@anticrm/dev-server/login_2021-08-08-10-21.json b/common/changes/@anticrm/dev-server/login_2021-08-08-10-21.json deleted file mode 100644 index f1107fae3cf..00000000000 --- a/common/changes/@anticrm/dev-server/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/dev-server", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/dev-server" -} \ No newline at end of file diff --git a/common/changes/@anticrm/dev-storage/login_2021-08-08-10-21.json b/common/changes/@anticrm/dev-storage/login_2021-08-08-10-21.json deleted file mode 100644 index 3075a77de95..00000000000 --- a/common/changes/@anticrm/dev-storage/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/dev-storage", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/dev-storage" -} \ No newline at end of file diff --git a/common/changes/@anticrm/login-assets/login_2021-08-08-10-21.json b/common/changes/@anticrm/login-assets/login_2021-08-08-10-21.json deleted file mode 100644 index a3b565e5d98..00000000000 --- a/common/changes/@anticrm/login-assets/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/login-assets", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/login-assets" -} \ No newline at end of file diff --git a/common/changes/@anticrm/login-resources/login_2021-08-08-10-21.json b/common/changes/@anticrm/login-resources/login_2021-08-08-10-21.json deleted file mode 100644 index ab64cbbdcec..00000000000 --- a/common/changes/@anticrm/login-resources/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/login-resources", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/login-resources" -} \ No newline at end of file diff --git a/common/changes/@anticrm/login/login_2021-08-08-10-21.json b/common/changes/@anticrm/login/login_2021-08-08-10-21.json deleted file mode 100644 index 226ec8a2a1e..00000000000 --- a/common/changes/@anticrm/login/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/login", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/login" -} \ No newline at end of file diff --git a/common/changes/@anticrm/model-chunter/login_2021-08-08-10-21.json b/common/changes/@anticrm/model-chunter/login_2021-08-08-10-21.json deleted file mode 100644 index 6dc45197bae..00000000000 --- a/common/changes/@anticrm/model-chunter/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/model-chunter", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/model-chunter" -} \ No newline at end of file diff --git a/common/changes/@anticrm/model-contact/login_2021-08-08-10-21.json b/common/changes/@anticrm/model-contact/login_2021-08-08-10-21.json deleted file mode 100644 index 278b3be42c8..00000000000 --- a/common/changes/@anticrm/model-contact/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/model-contact", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/model-contact" -} \ No newline at end of file diff --git a/common/changes/@anticrm/model-core/login_2021-08-08-10-21.json b/common/changes/@anticrm/model-core/login_2021-08-08-10-21.json deleted file mode 100644 index b0c0401bf86..00000000000 --- a/common/changes/@anticrm/model-core/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/model-core", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/model-core" -} \ No newline at end of file diff --git a/common/changes/@anticrm/model-demo/login_2021-08-08-10-21.json b/common/changes/@anticrm/model-demo/login_2021-08-08-10-21.json deleted file mode 100644 index ccbc08d6c27..00000000000 --- a/common/changes/@anticrm/model-demo/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/model-demo", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/model-demo" -} \ No newline at end of file diff --git a/common/changes/@anticrm/model-recruit/login_2021-08-08-10-21.json b/common/changes/@anticrm/model-recruit/login_2021-08-08-10-21.json deleted file mode 100644 index 726fe7b6ffa..00000000000 --- a/common/changes/@anticrm/model-recruit/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/model-recruit", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/model-recruit" -} \ No newline at end of file diff --git a/common/changes/@anticrm/model-server-chunter/login_2021-08-08-10-21.json b/common/changes/@anticrm/model-server-chunter/login_2021-08-08-10-21.json deleted file mode 100644 index 4bae31d629a..00000000000 --- a/common/changes/@anticrm/model-server-chunter/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/model-server-chunter", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/model-server-chunter" -} \ No newline at end of file diff --git a/common/changes/@anticrm/model-server-core/login_2021-08-08-10-21.json b/common/changes/@anticrm/model-server-core/login_2021-08-08-10-21.json deleted file mode 100644 index cf9e3fd66ec..00000000000 --- a/common/changes/@anticrm/model-server-core/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/model-server-core", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/model-server-core" -} \ No newline at end of file diff --git a/common/changes/@anticrm/model-task/login_2021-08-08-10-21.json b/common/changes/@anticrm/model-task/login_2021-08-08-10-21.json deleted file mode 100644 index f359dd9881f..00000000000 --- a/common/changes/@anticrm/model-task/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/model-task", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/model-task" -} \ No newline at end of file diff --git a/common/changes/@anticrm/model-view/login_2021-08-08-10-21.json b/common/changes/@anticrm/model-view/login_2021-08-08-10-21.json deleted file mode 100644 index 8fbd0db7211..00000000000 --- a/common/changes/@anticrm/model-view/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/model-view", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/model-view" -} \ No newline at end of file diff --git a/common/changes/@anticrm/model-workbench/login_2021-08-08-10-21.json b/common/changes/@anticrm/model-workbench/login_2021-08-08-10-21.json deleted file mode 100644 index 2e48c7978e4..00000000000 --- a/common/changes/@anticrm/model-workbench/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/model-workbench", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/model-workbench" -} \ No newline at end of file diff --git a/common/changes/@anticrm/model/login_2021-08-08-10-21.json b/common/changes/@anticrm/model/login_2021-08-08-10-21.json deleted file mode 100644 index 47741a8b6cd..00000000000 --- a/common/changes/@anticrm/model/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/model", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/model" -} \ No newline at end of file diff --git a/common/changes/@anticrm/platform/login_2021-08-08-10-21.json b/common/changes/@anticrm/platform/login_2021-08-08-10-21.json deleted file mode 100644 index 0cf584ff2f1..00000000000 --- a/common/changes/@anticrm/platform/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/platform", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/platform" -} \ No newline at end of file diff --git a/common/changes/@anticrm/presentation/login_2021-08-08-10-21.json b/common/changes/@anticrm/presentation/login_2021-08-08-10-21.json deleted file mode 100644 index daabbcc7603..00000000000 --- a/common/changes/@anticrm/presentation/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/presentation", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/presentation" -} \ No newline at end of file diff --git a/common/changes/@anticrm/query/login_2021-08-08-10-21.json b/common/changes/@anticrm/query/login_2021-08-08-10-21.json deleted file mode 100644 index b4a815839b6..00000000000 --- a/common/changes/@anticrm/query/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/query", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/query" -} \ No newline at end of file diff --git a/common/changes/@anticrm/recruit-assets/login_2021-08-08-10-21.json b/common/changes/@anticrm/recruit-assets/login_2021-08-08-10-21.json deleted file mode 100644 index 5c41fd8b52c..00000000000 --- a/common/changes/@anticrm/recruit-assets/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/recruit-assets", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/recruit-assets" -} \ No newline at end of file diff --git a/common/changes/@anticrm/recruit-resources/login_2021-08-08-10-21.json b/common/changes/@anticrm/recruit-resources/login_2021-08-08-10-21.json deleted file mode 100644 index 2f12eeba55a..00000000000 --- a/common/changes/@anticrm/recruit-resources/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/recruit-resources", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/recruit-resources" -} \ No newline at end of file diff --git a/common/changes/@anticrm/recruit/login_2021-08-08-10-21.json b/common/changes/@anticrm/recruit/login_2021-08-08-10-21.json deleted file mode 100644 index 6ea2167fcc6..00000000000 --- a/common/changes/@anticrm/recruit/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/recruit", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/recruit" -} \ No newline at end of file diff --git a/common/changes/@anticrm/server-chunter/login_2021-08-08-10-21.json b/common/changes/@anticrm/server-chunter/login_2021-08-08-10-21.json deleted file mode 100644 index b106dfa8e7f..00000000000 --- a/common/changes/@anticrm/server-chunter/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/server-chunter", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/server-chunter" -} \ No newline at end of file diff --git a/common/changes/@anticrm/server-core/login_2021-08-08-10-21.json b/common/changes/@anticrm/server-core/login_2021-08-08-10-21.json deleted file mode 100644 index c12bb068660..00000000000 --- a/common/changes/@anticrm/server-core/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/server-core", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/server-core" -} \ No newline at end of file diff --git a/common/changes/@anticrm/server-ws/login_2021-08-08-10-21.json b/common/changes/@anticrm/server-ws/login_2021-08-08-10-21.json deleted file mode 100644 index 57238d2e4ea..00000000000 --- a/common/changes/@anticrm/server-ws/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/server-ws", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/server-ws" -} \ No newline at end of file diff --git a/common/changes/@anticrm/server/login_2021-08-08-10-21.json b/common/changes/@anticrm/server/login_2021-08-08-10-21.json deleted file mode 100644 index 703c38f0520..00000000000 --- a/common/changes/@anticrm/server/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/server", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/server" -} \ No newline at end of file diff --git a/common/changes/@anticrm/task-assets/login_2021-08-08-10-21.json b/common/changes/@anticrm/task-assets/login_2021-08-08-10-21.json deleted file mode 100644 index f06f268d2b8..00000000000 --- a/common/changes/@anticrm/task-assets/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/task-assets", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/task-assets" -} \ No newline at end of file diff --git a/common/changes/@anticrm/task-resources/login_2021-08-08-10-21.json b/common/changes/@anticrm/task-resources/login_2021-08-08-10-21.json deleted file mode 100644 index b8358336b1f..00000000000 --- a/common/changes/@anticrm/task-resources/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/task-resources", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/task-resources" -} \ No newline at end of file diff --git a/common/changes/@anticrm/task/login_2021-08-08-10-21.json b/common/changes/@anticrm/task/login_2021-08-08-10-21.json deleted file mode 100644 index 91a10810550..00000000000 --- a/common/changes/@anticrm/task/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/task", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/task" -} \ No newline at end of file diff --git a/common/changes/@anticrm/ui/login_2021-08-08-10-21.json b/common/changes/@anticrm/ui/login_2021-08-08-10-21.json deleted file mode 100644 index c37769d8f2a..00000000000 --- a/common/changes/@anticrm/ui/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/ui", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/ui" -} \ No newline at end of file diff --git a/common/changes/@anticrm/view-assets/login_2021-08-08-10-21.json b/common/changes/@anticrm/view-assets/login_2021-08-08-10-21.json deleted file mode 100644 index bc23f6ede01..00000000000 --- a/common/changes/@anticrm/view-assets/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/view-assets", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/view-assets" -} \ No newline at end of file diff --git a/common/changes/@anticrm/view-resources/login_2021-08-08-10-21.json b/common/changes/@anticrm/view-resources/login_2021-08-08-10-21.json deleted file mode 100644 index ad4a208143a..00000000000 --- a/common/changes/@anticrm/view-resources/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/view-resources", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/view-resources" -} \ No newline at end of file diff --git a/common/changes/@anticrm/view/login_2021-08-08-10-21.json b/common/changes/@anticrm/view/login_2021-08-08-10-21.json deleted file mode 100644 index 5116e3a17f9..00000000000 --- a/common/changes/@anticrm/view/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/view", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/view" -} \ No newline at end of file diff --git a/common/changes/@anticrm/workbench-resources/login_2021-08-08-10-21.json b/common/changes/@anticrm/workbench-resources/login_2021-08-08-10-21.json deleted file mode 100644 index 50a83686fa2..00000000000 --- a/common/changes/@anticrm/workbench-resources/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/workbench-resources", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/workbench-resources" -} \ No newline at end of file diff --git a/common/changes/@anticrm/workbench/login_2021-08-08-10-21.json b/common/changes/@anticrm/workbench/login_2021-08-08-10-21.json deleted file mode 100644 index 23ef29dd17d..00000000000 --- a/common/changes/@anticrm/workbench/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/workbench", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/workbench" -} \ No newline at end of file diff --git a/common/changes/prod/login_2021-08-08-10-21.json b/common/changes/prod/login_2021-08-08-10-21.json deleted file mode 100644 index f9451f44107..00000000000 --- a/common/changes/prod/login_2021-08-08-10-21.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "prod", - "comment": "", - "type": "none" - } - ], - "packageName": "prod" -} \ No newline at end of file From 74bf6c78eb69d9d5e481cacb22c78092163b65c5 Mon Sep 17 00:00:00 2001 From: Andrey Platov Date: Sun, 8 Aug 2021 13:34:46 +0200 Subject: [PATCH 09/13] publish Signed-off-by: Andrey Platov --- cloud/app/index.ts | 32 +++++++++++++++++-- .../login_2021-08-08-11-34.json | 10 ++++++ .../login_2021-08-08-11-34.json | 10 ++++++ .../chunter/login_2021-08-08-11-34.json | 10 ++++++ .../login_2021-08-08-11-34.json | 10 ++++++ .../client/login_2021-08-08-11-34.json | 10 ++++++ .../login_2021-08-08-11-34.json | 10 ++++++ .../contact/login_2021-08-08-11-34.json | 10 ++++++ .../@anticrm/core/login_2021-08-08-11-34.json | 10 ++++++ .../dev-account/login_2021-08-08-11-34.json | 10 ++++++ .../login_2021-08-08-11-34.json | 10 ++++++ .../login_2021-08-08-11-34.json | 10 ++++++ .../dev-server/login_2021-08-08-11-34.json | 10 ++++++ .../dev-storage/login_2021-08-08-11-34.json | 10 ++++++ .../login-assets/login_2021-08-08-11-34.json | 10 ++++++ .../login_2021-08-08-11-34.json | 10 ++++++ .../login/login_2021-08-08-11-34.json | 10 ++++++ .../model-chunter/login_2021-08-08-11-34.json | 10 ++++++ .../model-contact/login_2021-08-08-11-34.json | 10 ++++++ .../model-core/login_2021-08-08-11-34.json | 10 ++++++ .../model-demo/login_2021-08-08-11-34.json | 10 ++++++ .../model-recruit/login_2021-08-08-11-34.json | 10 ++++++ .../login_2021-08-08-11-34.json | 10 ++++++ .../login_2021-08-08-11-34.json | 10 ++++++ .../model-task/login_2021-08-08-11-34.json | 10 ++++++ .../model-view/login_2021-08-08-11-34.json | 10 ++++++ .../login_2021-08-08-11-34.json | 10 ++++++ .../model/login_2021-08-08-11-34.json | 10 ++++++ .../presentation/login_2021-08-08-11-34.json | 10 ++++++ .../query/login_2021-08-08-11-34.json | 10 ++++++ .../login_2021-08-08-11-34.json | 10 ++++++ .../login_2021-08-08-11-34.json | 10 ++++++ .../recruit/login_2021-08-08-11-34.json | 10 ++++++ .../login_2021-08-08-11-34.json | 10 ++++++ .../server-core/login_2021-08-08-11-34.json | 10 ++++++ .../server-ws/login_2021-08-08-11-34.json | 10 ++++++ .../server/login_2021-08-08-11-34.json | 10 ++++++ .../task-assets/login_2021-08-08-11-34.json | 10 ++++++ .../login_2021-08-08-11-34.json | 10 ++++++ .../@anticrm/task/login_2021-08-08-11-34.json | 10 ++++++ .../@anticrm/ui/login_2021-08-08-11-34.json | 10 ++++++ .../view-assets/login_2021-08-08-11-34.json | 10 ++++++ .../login_2021-08-08-11-34.json | 10 ++++++ .../@anticrm/view/login_2021-08-08-11-34.json | 10 ++++++ .../login_2021-08-08-11-34.json | 10 ++++++ .../workbench/login_2021-08-08-11-34.json | 10 ++++++ .../changes/prod/login_2021-08-08-11-34.json | 10 ++++++ dev/account/package.json | 2 +- dev/client-resources/package.json | 2 +- dev/prod/package.json | 2 +- dev/prod/src/platform.ts | 7 ++-- dev/prod/webpack.config.js | 7 ++++ dev/server-chunter-resources/package.json | 2 +- dev/server/package.json | 2 +- dev/storage/package.json | 2 +- models/chunter/package.json | 2 +- models/contact/package.json | 2 +- models/core/package.json | 2 +- models/demo/package.json | 2 +- models/recruit/package.json | 2 +- models/server-chunter/package.json | 2 +- models/server-core/package.json | 2 +- models/task/package.json | 2 +- models/view/package.json | 2 +- models/workbench/package.json | 2 +- packages/core/package.json | 2 +- packages/model/package.json | 2 +- packages/platform/CHANGELOG.json | 12 +++++++ packages/platform/CHANGELOG.md | 9 +++++- packages/platform/package.json | 2 +- packages/platform/tsconfig.json | 1 + packages/presentation/package.json | 2 +- packages/query/package.json | 2 +- packages/ui/package.json | 2 +- plugins/chunter-assets/package.json | 2 +- plugins/chunter-resources/package.json | 2 +- plugins/chunter/package.json | 2 +- plugins/client-resources/package.json | 2 +- plugins/client/package.json | 2 +- plugins/contact-resources/package.json | 2 +- plugins/contact/package.json | 2 +- plugins/login-assets/package.json | 2 +- plugins/login-resources/package.json | 2 +- plugins/login-resources/src/utils.ts | 7 ++-- plugins/login/package.json | 2 +- plugins/recruit-assets/package.json | 2 +- plugins/recruit-resources/package.json | 2 +- plugins/recruit/package.json | 2 +- plugins/task-assets/package.json | 2 +- plugins/task-resources/package.json | 2 +- plugins/task/package.json | 2 +- plugins/view-assets/package.json | 2 +- plugins/view-resources/package.json | 2 +- plugins/view/package.json | 2 +- plugins/workbench-resources/package.json | 2 +- plugins/workbench/package.json | 2 +- server/chunter/package.json | 2 +- server/core/package.json | 2 +- server/server/package.json | 2 +- server/ws/package.json | 2 +- 100 files changed, 572 insertions(+), 57 deletions(-) create mode 100644 common/changes/@anticrm/chunter-assets/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/chunter-resources/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/chunter/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/client-resources/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/client/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/contact-resources/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/contact/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/core/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/dev-account/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/dev-client-resources/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/dev-server-chunter-resources/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/dev-server/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/dev-storage/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/login-assets/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/login-resources/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/login/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/model-chunter/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/model-contact/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/model-core/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/model-demo/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/model-recruit/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/model-server-chunter/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/model-server-core/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/model-task/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/model-view/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/model-workbench/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/model/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/presentation/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/query/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/recruit-assets/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/recruit-resources/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/recruit/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/server-chunter/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/server-core/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/server-ws/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/server/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/task-assets/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/task-resources/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/task/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/ui/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/view-assets/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/view-resources/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/view/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/workbench-resources/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/workbench/login_2021-08-08-11-34.json create mode 100644 common/changes/prod/login_2021-08-08-11-34.json diff --git a/cloud/app/index.ts b/cloud/app/index.ts index 02d7ecb196d..e68120e6aa4 100644 --- a/cloud/app/index.ts +++ b/cloud/app/index.ts @@ -90,13 +90,39 @@ export const serverEndpoint = service.defaultEndpoint.hostname // Define a new GET endpoint that just returns a 200 and "hello" in the body. const api = new awsx.apigateway.API("login", { - routes: [{ + routes: [ + { path: "/", method: "POST", eventHandler: async (event) => { - return handle(event.body, serverEndpoint.get()) + const result = handle(event.body, serverEndpoint.get()) + return { + statusCode: result.statusCode, + headers: { + "Access-Control-Allow-Headers" : "Content-Type", + "Access-Control-Allow-Origin": "*", + "Access-Control-Allow-Methods": "GET,HEAD,POST" + }, + body: result.body + } }, - }], + }, + // { + // path: "/", + // method: "OPTIONS", + // eventHandler: async (event) => { + // return { + // statusCode: 200, + // headers: { + // "Access-Control-Allow-Headers" : "*", + // "Access-Control-Allow-Origin": "*", + // "Access-Control-Allow-Methods": "*" + // }, + // body: '' + // } + // }, + // }, + ], }) // Export the auto-generated API Gateway base URL. diff --git a/common/changes/@anticrm/chunter-assets/login_2021-08-08-11-34.json b/common/changes/@anticrm/chunter-assets/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..4987e7011cc --- /dev/null +++ b/common/changes/@anticrm/chunter-assets/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/chunter-assets", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/chunter-assets" +} \ No newline at end of file diff --git a/common/changes/@anticrm/chunter-resources/login_2021-08-08-11-34.json b/common/changes/@anticrm/chunter-resources/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..55457e71a2c --- /dev/null +++ b/common/changes/@anticrm/chunter-resources/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/chunter-resources", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/chunter-resources" +} \ No newline at end of file diff --git a/common/changes/@anticrm/chunter/login_2021-08-08-11-34.json b/common/changes/@anticrm/chunter/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..8d76096a11b --- /dev/null +++ b/common/changes/@anticrm/chunter/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/chunter", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/chunter" +} \ No newline at end of file diff --git a/common/changes/@anticrm/client-resources/login_2021-08-08-11-34.json b/common/changes/@anticrm/client-resources/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..8d501a96ba2 --- /dev/null +++ b/common/changes/@anticrm/client-resources/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/client-resources", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/client-resources" +} \ No newline at end of file diff --git a/common/changes/@anticrm/client/login_2021-08-08-11-34.json b/common/changes/@anticrm/client/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..74d2bb3b32a --- /dev/null +++ b/common/changes/@anticrm/client/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/client", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/client" +} \ No newline at end of file diff --git a/common/changes/@anticrm/contact-resources/login_2021-08-08-11-34.json b/common/changes/@anticrm/contact-resources/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..562bc5b15b8 --- /dev/null +++ b/common/changes/@anticrm/contact-resources/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/contact-resources", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/contact-resources" +} \ No newline at end of file diff --git a/common/changes/@anticrm/contact/login_2021-08-08-11-34.json b/common/changes/@anticrm/contact/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..c7766541277 --- /dev/null +++ b/common/changes/@anticrm/contact/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/contact", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/contact" +} \ No newline at end of file diff --git a/common/changes/@anticrm/core/login_2021-08-08-11-34.json b/common/changes/@anticrm/core/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..07733e41308 --- /dev/null +++ b/common/changes/@anticrm/core/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/core", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/core" +} \ No newline at end of file diff --git a/common/changes/@anticrm/dev-account/login_2021-08-08-11-34.json b/common/changes/@anticrm/dev-account/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..d62fcfc1fde --- /dev/null +++ b/common/changes/@anticrm/dev-account/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/dev-account", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/dev-account" +} \ No newline at end of file diff --git a/common/changes/@anticrm/dev-client-resources/login_2021-08-08-11-34.json b/common/changes/@anticrm/dev-client-resources/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..a93e20a202f --- /dev/null +++ b/common/changes/@anticrm/dev-client-resources/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/dev-client-resources", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/dev-client-resources" +} \ No newline at end of file diff --git a/common/changes/@anticrm/dev-server-chunter-resources/login_2021-08-08-11-34.json b/common/changes/@anticrm/dev-server-chunter-resources/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..5ba95cde7f0 --- /dev/null +++ b/common/changes/@anticrm/dev-server-chunter-resources/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/dev-server-chunter-resources", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/dev-server-chunter-resources" +} \ No newline at end of file diff --git a/common/changes/@anticrm/dev-server/login_2021-08-08-11-34.json b/common/changes/@anticrm/dev-server/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..f1107fae3cf --- /dev/null +++ b/common/changes/@anticrm/dev-server/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/dev-server", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/dev-server" +} \ No newline at end of file diff --git a/common/changes/@anticrm/dev-storage/login_2021-08-08-11-34.json b/common/changes/@anticrm/dev-storage/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..3075a77de95 --- /dev/null +++ b/common/changes/@anticrm/dev-storage/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/dev-storage", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/dev-storage" +} \ No newline at end of file diff --git a/common/changes/@anticrm/login-assets/login_2021-08-08-11-34.json b/common/changes/@anticrm/login-assets/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..a3b565e5d98 --- /dev/null +++ b/common/changes/@anticrm/login-assets/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/login-assets", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/login-assets" +} \ No newline at end of file diff --git a/common/changes/@anticrm/login-resources/login_2021-08-08-11-34.json b/common/changes/@anticrm/login-resources/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..ab64cbbdcec --- /dev/null +++ b/common/changes/@anticrm/login-resources/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/login-resources", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/login-resources" +} \ No newline at end of file diff --git a/common/changes/@anticrm/login/login_2021-08-08-11-34.json b/common/changes/@anticrm/login/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..226ec8a2a1e --- /dev/null +++ b/common/changes/@anticrm/login/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/login", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/login" +} \ No newline at end of file diff --git a/common/changes/@anticrm/model-chunter/login_2021-08-08-11-34.json b/common/changes/@anticrm/model-chunter/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..6dc45197bae --- /dev/null +++ b/common/changes/@anticrm/model-chunter/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/model-chunter", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/model-chunter" +} \ No newline at end of file diff --git a/common/changes/@anticrm/model-contact/login_2021-08-08-11-34.json b/common/changes/@anticrm/model-contact/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..278b3be42c8 --- /dev/null +++ b/common/changes/@anticrm/model-contact/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/model-contact", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/model-contact" +} \ No newline at end of file diff --git a/common/changes/@anticrm/model-core/login_2021-08-08-11-34.json b/common/changes/@anticrm/model-core/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..b0c0401bf86 --- /dev/null +++ b/common/changes/@anticrm/model-core/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/model-core", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/model-core" +} \ No newline at end of file diff --git a/common/changes/@anticrm/model-demo/login_2021-08-08-11-34.json b/common/changes/@anticrm/model-demo/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..ccbc08d6c27 --- /dev/null +++ b/common/changes/@anticrm/model-demo/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/model-demo", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/model-demo" +} \ No newline at end of file diff --git a/common/changes/@anticrm/model-recruit/login_2021-08-08-11-34.json b/common/changes/@anticrm/model-recruit/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..726fe7b6ffa --- /dev/null +++ b/common/changes/@anticrm/model-recruit/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/model-recruit", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/model-recruit" +} \ No newline at end of file diff --git a/common/changes/@anticrm/model-server-chunter/login_2021-08-08-11-34.json b/common/changes/@anticrm/model-server-chunter/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..4bae31d629a --- /dev/null +++ b/common/changes/@anticrm/model-server-chunter/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/model-server-chunter", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/model-server-chunter" +} \ No newline at end of file diff --git a/common/changes/@anticrm/model-server-core/login_2021-08-08-11-34.json b/common/changes/@anticrm/model-server-core/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..cf9e3fd66ec --- /dev/null +++ b/common/changes/@anticrm/model-server-core/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/model-server-core", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/model-server-core" +} \ No newline at end of file diff --git a/common/changes/@anticrm/model-task/login_2021-08-08-11-34.json b/common/changes/@anticrm/model-task/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..f359dd9881f --- /dev/null +++ b/common/changes/@anticrm/model-task/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/model-task", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/model-task" +} \ No newline at end of file diff --git a/common/changes/@anticrm/model-view/login_2021-08-08-11-34.json b/common/changes/@anticrm/model-view/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..8fbd0db7211 --- /dev/null +++ b/common/changes/@anticrm/model-view/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/model-view", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/model-view" +} \ No newline at end of file diff --git a/common/changes/@anticrm/model-workbench/login_2021-08-08-11-34.json b/common/changes/@anticrm/model-workbench/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..2e48c7978e4 --- /dev/null +++ b/common/changes/@anticrm/model-workbench/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/model-workbench", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/model-workbench" +} \ No newline at end of file diff --git a/common/changes/@anticrm/model/login_2021-08-08-11-34.json b/common/changes/@anticrm/model/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..47741a8b6cd --- /dev/null +++ b/common/changes/@anticrm/model/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/model", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/model" +} \ No newline at end of file diff --git a/common/changes/@anticrm/presentation/login_2021-08-08-11-34.json b/common/changes/@anticrm/presentation/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..daabbcc7603 --- /dev/null +++ b/common/changes/@anticrm/presentation/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/presentation", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/presentation" +} \ No newline at end of file diff --git a/common/changes/@anticrm/query/login_2021-08-08-11-34.json b/common/changes/@anticrm/query/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..b4a815839b6 --- /dev/null +++ b/common/changes/@anticrm/query/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/query", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/query" +} \ No newline at end of file diff --git a/common/changes/@anticrm/recruit-assets/login_2021-08-08-11-34.json b/common/changes/@anticrm/recruit-assets/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..5c41fd8b52c --- /dev/null +++ b/common/changes/@anticrm/recruit-assets/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/recruit-assets", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/recruit-assets" +} \ No newline at end of file diff --git a/common/changes/@anticrm/recruit-resources/login_2021-08-08-11-34.json b/common/changes/@anticrm/recruit-resources/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..2f12eeba55a --- /dev/null +++ b/common/changes/@anticrm/recruit-resources/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/recruit-resources", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/recruit-resources" +} \ No newline at end of file diff --git a/common/changes/@anticrm/recruit/login_2021-08-08-11-34.json b/common/changes/@anticrm/recruit/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..6ea2167fcc6 --- /dev/null +++ b/common/changes/@anticrm/recruit/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/recruit", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/recruit" +} \ No newline at end of file diff --git a/common/changes/@anticrm/server-chunter/login_2021-08-08-11-34.json b/common/changes/@anticrm/server-chunter/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..b106dfa8e7f --- /dev/null +++ b/common/changes/@anticrm/server-chunter/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/server-chunter", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/server-chunter" +} \ No newline at end of file diff --git a/common/changes/@anticrm/server-core/login_2021-08-08-11-34.json b/common/changes/@anticrm/server-core/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..c12bb068660 --- /dev/null +++ b/common/changes/@anticrm/server-core/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/server-core", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/server-core" +} \ No newline at end of file diff --git a/common/changes/@anticrm/server-ws/login_2021-08-08-11-34.json b/common/changes/@anticrm/server-ws/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..57238d2e4ea --- /dev/null +++ b/common/changes/@anticrm/server-ws/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/server-ws", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/server-ws" +} \ No newline at end of file diff --git a/common/changes/@anticrm/server/login_2021-08-08-11-34.json b/common/changes/@anticrm/server/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..703c38f0520 --- /dev/null +++ b/common/changes/@anticrm/server/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/server", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/server" +} \ No newline at end of file diff --git a/common/changes/@anticrm/task-assets/login_2021-08-08-11-34.json b/common/changes/@anticrm/task-assets/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..f06f268d2b8 --- /dev/null +++ b/common/changes/@anticrm/task-assets/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/task-assets", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/task-assets" +} \ No newline at end of file diff --git a/common/changes/@anticrm/task-resources/login_2021-08-08-11-34.json b/common/changes/@anticrm/task-resources/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..b8358336b1f --- /dev/null +++ b/common/changes/@anticrm/task-resources/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/task-resources", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/task-resources" +} \ No newline at end of file diff --git a/common/changes/@anticrm/task/login_2021-08-08-11-34.json b/common/changes/@anticrm/task/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..91a10810550 --- /dev/null +++ b/common/changes/@anticrm/task/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/task", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/task" +} \ No newline at end of file diff --git a/common/changes/@anticrm/ui/login_2021-08-08-11-34.json b/common/changes/@anticrm/ui/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..c37769d8f2a --- /dev/null +++ b/common/changes/@anticrm/ui/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/ui", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/ui" +} \ No newline at end of file diff --git a/common/changes/@anticrm/view-assets/login_2021-08-08-11-34.json b/common/changes/@anticrm/view-assets/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..bc23f6ede01 --- /dev/null +++ b/common/changes/@anticrm/view-assets/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/view-assets", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/view-assets" +} \ No newline at end of file diff --git a/common/changes/@anticrm/view-resources/login_2021-08-08-11-34.json b/common/changes/@anticrm/view-resources/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..ad4a208143a --- /dev/null +++ b/common/changes/@anticrm/view-resources/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/view-resources", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/view-resources" +} \ No newline at end of file diff --git a/common/changes/@anticrm/view/login_2021-08-08-11-34.json b/common/changes/@anticrm/view/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..5116e3a17f9 --- /dev/null +++ b/common/changes/@anticrm/view/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/view", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/view" +} \ No newline at end of file diff --git a/common/changes/@anticrm/workbench-resources/login_2021-08-08-11-34.json b/common/changes/@anticrm/workbench-resources/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..50a83686fa2 --- /dev/null +++ b/common/changes/@anticrm/workbench-resources/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/workbench-resources", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/workbench-resources" +} \ No newline at end of file diff --git a/common/changes/@anticrm/workbench/login_2021-08-08-11-34.json b/common/changes/@anticrm/workbench/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..23ef29dd17d --- /dev/null +++ b/common/changes/@anticrm/workbench/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/workbench", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/workbench" +} \ No newline at end of file diff --git a/common/changes/prod/login_2021-08-08-11-34.json b/common/changes/prod/login_2021-08-08-11-34.json new file mode 100644 index 00000000000..f9451f44107 --- /dev/null +++ b/common/changes/prod/login_2021-08-08-11-34.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "prod", + "comment": "", + "type": "none" + } + ], + "packageName": "prod" +} \ No newline at end of file diff --git a/dev/account/package.json b/dev/account/package.json index 46971d18dcd..6ca56fb4d0d 100644 --- a/dev/account/package.json +++ b/dev/account/package.json @@ -19,7 +19,7 @@ "simplytyped": "^3.3.0" }, "dependencies": { - "@anticrm/platform": "~0.6.4", + "@anticrm/platform": "~0.6.5", "jwt-simple": "^0.5.6" } } diff --git a/dev/client-resources/package.json b/dev/client-resources/package.json index 7bf619eb76c..09b68256980 100644 --- a/dev/client-resources/package.json +++ b/dev/client-resources/package.json @@ -18,7 +18,7 @@ "eslint":"^7.32.0" }, "dependencies": { - "@anticrm/platform":"~0.6.4", + "@anticrm/platform":"~0.6.5", "@anticrm/core":"~0.6.0", "@anticrm/client":"~0.6.0", "@anticrm/dev-storage":"~0.6.3" diff --git a/dev/prod/package.json b/dev/prod/package.json index 4fc0136554f..06884cbc0ce 100644 --- a/dev/prod/package.json +++ b/dev/prod/package.json @@ -37,7 +37,7 @@ "postcss-load-config": "^3.1.0" }, "dependencies": { - "@anticrm/platform": "~0.6.4", + "@anticrm/platform": "~0.6.5", "@anticrm/ui": "~0.6.0", "@anticrm/theme": "~0.6.0", "svelte": "^3.42.1", diff --git a/dev/prod/src/platform.ts b/dev/prod/src/platform.ts index bb9412dbe8b..05f240732ee 100644 --- a/dev/prod/src/platform.ts +++ b/dev/prod/src/platform.ts @@ -15,7 +15,7 @@ import { addLocation } from '@anticrm/platform' -import { loginId } from '@anticrm/login' +import login, { loginId } from '@anticrm/login' import { clientId } from '@anticrm/client' import { workbenchId } from '@anticrm/workbench' import { viewId } from '@anticrm/view' @@ -32,10 +32,11 @@ import '@anticrm/view-assets' import '@anticrm/chunter-assets' import '@anticrm/recruit-assets' +import { setMetadata } from '@anticrm/platform' + export function configurePlatform() { -// platform.setMetadata(ui.metadata.LoginApplication, 'login') -// platform.setMetadata(ui.metadata.DefaultApplication, 'workbench') + setMetadata(login.metadata.AccountsUrl, 'https://ftwm71rwag.execute-api.us-west-2.amazonaws.com/stage/') // if (process.env.CLIENT === 'dev') addLocation(clientId, () => import(/* webpackChunkName: "client-dev" */ '@anticrm/dev-client-resources')) diff --git a/dev/prod/webpack.config.js b/dev/prod/webpack.config.js index 435636e1728..e673a881417 100644 --- a/dev/prod/webpack.config.js +++ b/dev/prod/webpack.config.js @@ -159,6 +159,13 @@ module.exports = { publicPath: '/', historyApiFallback: { disableDotRule: true + }, + proxy: { + '/api': { + target: 'https://ftwm71rwag.execute-api.us-west-2.amazonaws.com/stage/', + changeOrigin: true, + pathRewrite: { '^/api': '' }, + }, } } } diff --git a/dev/server-chunter-resources/package.json b/dev/server-chunter-resources/package.json index 808f437a415..ef225ca033d 100644 --- a/dev/server-chunter-resources/package.json +++ b/dev/server-chunter-resources/package.json @@ -19,7 +19,7 @@ }, "dependencies": { "@anticrm/core": "~0.6.7", - "@anticrm/platform": "~0.6.4", + "@anticrm/platform": "~0.6.5", "@anticrm/server-core": "~0.6.0", "@anticrm/server-chunter": "~0.6.0", "@anticrm/chunter": "~0.6.0" diff --git a/dev/server/package.json b/dev/server/package.json index eb297c5501b..f0d1f4aa601 100644 --- a/dev/server/package.json +++ b/dev/server/package.json @@ -23,6 +23,6 @@ "@anticrm/dev-storage": "~0.6.3", "@anticrm/server-ws": "~0.6.4", "@anticrm/core": "~0.6.7", - "@anticrm/platform": "~0.6.4" + "@anticrm/platform": "~0.6.5" } } diff --git a/dev/storage/package.json b/dev/storage/package.json index c81bb8e82ef..996dd6743ef 100644 --- a/dev/storage/package.json +++ b/dev/storage/package.json @@ -19,7 +19,7 @@ }, "dependencies": { "@anticrm/core": "~0.6.7", - "@anticrm/platform": "~0.6.4", + "@anticrm/platform": "~0.6.5", "@anticrm/server-core": "~0.6.0", "@anticrm/server": "~0.6.0" } diff --git a/models/chunter/package.json b/models/chunter/package.json index 24bffe4520c..91a1ad6f769 100644 --- a/models/chunter/package.json +++ b/models/chunter/package.json @@ -23,7 +23,7 @@ "@anticrm/view": "~0.6.0", "@anticrm/chunter": "~0.6.0", "@anticrm/chunter-resources": "~0.6.0", - "@anticrm/platform": "~0.6.4", + "@anticrm/platform": "~0.6.5", "@anticrm/model-core": "~0.6.0", "@anticrm/model-view": "~0.6.0", "@anticrm/model-workbench": "~0.6.0" diff --git a/models/contact/package.json b/models/contact/package.json index c05745b6b8b..071e2c408ad 100644 --- a/models/contact/package.json +++ b/models/contact/package.json @@ -22,7 +22,7 @@ "@anticrm/model": "~0.6.0", "@anticrm/core": "~0.6.0", "@anticrm/ui": "~0.6.0", - "@anticrm/platform": "~0.6.4", + "@anticrm/platform": "~0.6.5", "@anticrm/contact": "~0.6.0" } } diff --git a/models/core/package.json b/models/core/package.json index 1bbb8de817b..e020a039519 100644 --- a/models/core/package.json +++ b/models/core/package.json @@ -19,6 +19,6 @@ "dependencies": { "@anticrm/core": "~0.6.7", "@anticrm/model": "~0.6.0", - "@anticrm/platform": "~0.6.4" + "@anticrm/platform": "~0.6.5" } } diff --git a/models/demo/package.json b/models/demo/package.json index 54bfed25a60..a81bc492582 100644 --- a/models/demo/package.json +++ b/models/demo/package.json @@ -19,7 +19,7 @@ "dependencies": { "@anticrm/core": "~0.6.7", "@anticrm/model": "~0.6.0", - "@anticrm/platform": "~0.6.4", + "@anticrm/platform": "~0.6.5", "@anticrm/model-recruit": "~0.6.0", "@anticrm/model-contact": "~0.6.0" } diff --git a/models/recruit/package.json b/models/recruit/package.json index 721db33d07a..f6a588abad1 100644 --- a/models/recruit/package.json +++ b/models/recruit/package.json @@ -21,7 +21,7 @@ "@anticrm/model": "~0.6.0", "@anticrm/ui": "~0.6.0", "@anticrm/contact": "~0.6.0", - "@anticrm/platform": "~0.6.4", + "@anticrm/platform": "~0.6.5", "@anticrm/model-core": "~0.6.0", "@anticrm/model-view": "~0.6.0", "@anticrm/model-workbench": "~0.6.0", diff --git a/models/server-chunter/package.json b/models/server-chunter/package.json index c1e22af4d38..d46f4d1ed96 100644 --- a/models/server-chunter/package.json +++ b/models/server-chunter/package.json @@ -19,7 +19,7 @@ "dependencies": { "@anticrm/core": "~0.6.7", "@anticrm/model": "~0.6.0", - "@anticrm/platform": "~0.6.4", + "@anticrm/platform": "~0.6.5", "@anticrm/server-chunter": "~0.6.0", "@anticrm/server-core": "~0.6.0" } diff --git a/models/server-core/package.json b/models/server-core/package.json index 89b603932b8..d61975766dc 100644 --- a/models/server-core/package.json +++ b/models/server-core/package.json @@ -19,7 +19,7 @@ "dependencies": { "@anticrm/core": "~0.6.7", "@anticrm/model": "~0.6.0", - "@anticrm/platform": "~0.6.4", + "@anticrm/platform": "~0.6.5", "@anticrm/server-core": "~0.6.0", "@anticrm/model-core": "~0.6.0" } diff --git a/models/task/package.json b/models/task/package.json index 944e0d6fa14..a3b26847413 100644 --- a/models/task/package.json +++ b/models/task/package.json @@ -21,7 +21,7 @@ "@anticrm/model": "~0.6.0", "@anticrm/ui": "~0.6.0", "@anticrm/contact": "~0.6.0", - "@anticrm/platform": "~0.6.4", + "@anticrm/platform": "~0.6.5", "@anticrm/model-core": "~0.6.0", "@anticrm/model-view": "~0.6.0", "@anticrm/model-workbench": "~0.6.0", diff --git a/models/view/package.json b/models/view/package.json index 17d768e7df5..8f417045418 100644 --- a/models/view/package.json +++ b/models/view/package.json @@ -19,7 +19,7 @@ "dependencies": { "@anticrm/core": "~0.6.7", "@anticrm/model": "~0.6.0", - "@anticrm/platform": "~0.6.4", + "@anticrm/platform": "~0.6.5", "@anticrm/ui": "~0.6.0", "@anticrm/view": "~0.6.0", "@anticrm/model-core": "~0.6.0" diff --git a/models/workbench/package.json b/models/workbench/package.json index 048f4e48d50..761f5e01c20 100644 --- a/models/workbench/package.json +++ b/models/workbench/package.json @@ -19,7 +19,7 @@ "dependencies": { "@anticrm/core": "~0.6.7", "@anticrm/model": "~0.6.0", - "@anticrm/platform": "~0.6.4", + "@anticrm/platform": "~0.6.5", "@anticrm/model-core": "~0.6.0", "@anticrm/workbench": "~0.6.0" } diff --git a/packages/core/package.json b/packages/core/package.json index a5ca6fe247f..3d4d76245d9 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -19,6 +19,6 @@ "simplytyped": "^3.3.0" }, "dependencies": { - "@anticrm/platform": "~0.6.4" + "@anticrm/platform": "~0.6.5" } } diff --git a/packages/model/package.json b/packages/model/package.json index 9448e804aec..86b68989467 100644 --- a/packages/model/package.json +++ b/packages/model/package.json @@ -20,7 +20,7 @@ }, "dependencies": { "@anticrm/core":"~0.6.7", - "@anticrm/platform":"~0.6.4", + "@anticrm/platform":"~0.6.5", "toposort":"^2.0.2" } } diff --git a/packages/platform/CHANGELOG.json b/packages/platform/CHANGELOG.json index 569871c71a4..8c42da398d9 100644 --- a/packages/platform/CHANGELOG.json +++ b/packages/platform/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@anticrm/platform", "entries": [ + { + "version": "0.6.5", + "tag": "@anticrm/platform_v0.6.5", + "date": "Sun, 08 Aug 2021 11:34:23 GMT", + "comments": { + "patch": [ + { + "comment": "ES6 target" + } + ] + } + }, { "version": "0.6.4", "tag": "@anticrm/platform_v0.6.4", diff --git a/packages/platform/CHANGELOG.md b/packages/platform/CHANGELOG.md index 9bfc98b0588..1cb86e06bab 100644 --- a/packages/platform/CHANGELOG.md +++ b/packages/platform/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log - @anticrm/platform -This log was last generated on Sun, 08 Aug 2021 10:14:57 GMT and should not be manually modified. +This log was last generated on Sun, 08 Aug 2021 11:34:23 GMT and should not be manually modified. + +## 0.6.5 +Sun, 08 Aug 2021 11:34:23 GMT + +### Patches + +- ES6 target ## 0.6.4 Sun, 08 Aug 2021 10:14:57 GMT diff --git a/packages/platform/package.json b/packages/platform/package.json index f6a71ca8ff7..cb72b175f44 100644 --- a/packages/platform/package.json +++ b/packages/platform/package.json @@ -1,6 +1,6 @@ { "name": "@anticrm/platform", - "version": "0.6.4", + "version": "0.6.5", "main": "lib/index.js", "author": "Anticrm Platform Contributors", "license": "EPL-2.0", diff --git a/packages/platform/tsconfig.json b/packages/platform/tsconfig.json index d3d45172beb..ba223dc71a7 100644 --- a/packages/platform/tsconfig.json +++ b/packages/platform/tsconfig.json @@ -2,6 +2,7 @@ "extends": "./node_modules/@anticrm/platform-rig/profiles/default/tsconfig.json", "compilerOptions": { + "target": "ES6", "rootDir": "./src", "outDir": "./lib", "lib": ["esnext", "esnext.intl", "dom"] diff --git a/packages/presentation/package.json b/packages/presentation/package.json index 2663188597a..b70c587ca0f 100644 --- a/packages/presentation/package.json +++ b/packages/presentation/package.json @@ -19,7 +19,7 @@ "svelte-preprocess":"^4.7.4" }, "dependencies": { - "@anticrm/platform": "~0.6.4", + "@anticrm/platform": "~0.6.5", "@anticrm/core": "~0.6.0", "@anticrm/query": "~0.6.0", "@anticrm/ui": "~0.6.0", diff --git a/packages/query/package.json b/packages/query/package.json index 0494332733d..b0f3899b604 100644 --- a/packages/query/package.json +++ b/packages/query/package.json @@ -19,7 +19,7 @@ "simplytyped": "^3.3.0" }, "dependencies": { - "@anticrm/platform": "~0.6.4", + "@anticrm/platform": "~0.6.5", "@anticrm/core": "~0.6.3" } } diff --git a/packages/ui/package.json b/packages/ui/package.json index 844ce708b34..b99f696c2bd 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -19,7 +19,7 @@ "svelte-preprocess":"^4.7.4" }, "dependencies": { - "@anticrm/platform": "~0.6.4", + "@anticrm/platform": "~0.6.5", "@anticrm/theme": "~0.6.0", "svelte": "^3.37.0" } diff --git a/plugins/chunter-assets/package.json b/plugins/chunter-assets/package.json index c21c32ff967..a4534e7e42b 100644 --- a/plugins/chunter-assets/package.json +++ b/plugins/chunter-assets/package.json @@ -15,7 +15,7 @@ "devDependencies": { }, "dependencies": { - "@anticrm/platform":"~0.6.4", + "@anticrm/platform":"~0.6.5", "@anticrm/chunter":"~0.6.0" } } diff --git a/plugins/chunter-resources/package.json b/plugins/chunter-resources/package.json index 013ebce89ee..f6306f0542b 100644 --- a/plugins/chunter-resources/package.json +++ b/plugins/chunter-resources/package.json @@ -20,7 +20,7 @@ }, "dependencies": { "@anticrm/core":"~0.6.0", - "@anticrm/platform":"~0.6.4", + "@anticrm/platform":"~0.6.5", "@anticrm/ui":"~0.6.0", "@anticrm/presentation":"~0.6.0", "@anticrm/chunter":"~0.6.0", diff --git a/plugins/chunter/package.json b/plugins/chunter/package.json index d64a2891fe0..9c63be5420e 100644 --- a/plugins/chunter/package.json +++ b/plugins/chunter/package.json @@ -18,7 +18,7 @@ "eslint":"^7.32.0" }, "dependencies": { - "@anticrm/platform":"~0.6.4", + "@anticrm/platform":"~0.6.5", "@anticrm/core":"~0.6.3" } } diff --git a/plugins/client-resources/package.json b/plugins/client-resources/package.json index 62eafeccb40..4277096172c 100644 --- a/plugins/client-resources/package.json +++ b/plugins/client-resources/package.json @@ -18,7 +18,7 @@ "eslint":"^7.32.0" }, "dependencies": { - "@anticrm/platform":"~0.6.4", + "@anticrm/platform":"~0.6.5", "@anticrm/core":"~0.6.0", "@anticrm/client":"~0.6.0" } diff --git a/plugins/client/package.json b/plugins/client/package.json index 6bc0e37e1c0..a8bf39e6828 100644 --- a/plugins/client/package.json +++ b/plugins/client/package.json @@ -18,7 +18,7 @@ "eslint":"^7.32.0" }, "dependencies": { - "@anticrm/platform":"~0.6.4", + "@anticrm/platform":"~0.6.5", "@anticrm/core":"~0.6.0" } } diff --git a/plugins/contact-resources/package.json b/plugins/contact-resources/package.json index dcc85d6cc52..ef085aa9473 100644 --- a/plugins/contact-resources/package.json +++ b/plugins/contact-resources/package.json @@ -19,7 +19,7 @@ "svelte-preprocess":"^4.7.4" }, "dependencies": { - "@anticrm/platform": "~0.6.4", + "@anticrm/platform": "~0.6.5", "svelte": "^3.37.0", "@anticrm/contact": "~0.6.0", "@anticrm/ui": "~0.6.0", diff --git a/plugins/contact/package.json b/plugins/contact/package.json index b6c496652dd..923190b219f 100644 --- a/plugins/contact/package.json +++ b/plugins/contact/package.json @@ -18,7 +18,7 @@ "eslint":"^7.32.0" }, "dependencies": { - "@anticrm/platform":"~0.6.4", + "@anticrm/platform":"~0.6.5", "@anticrm/core":"~0.6.0" } } diff --git a/plugins/login-assets/package.json b/plugins/login-assets/package.json index bdc412f728c..905894fc48d 100644 --- a/plugins/login-assets/package.json +++ b/plugins/login-assets/package.json @@ -15,7 +15,7 @@ "devDependencies": { }, "dependencies": { - "@anticrm/platform":"~0.6.4", + "@anticrm/platform":"~0.6.5", "@anticrm/login":"~0.6.0" } } diff --git a/plugins/login-resources/package.json b/plugins/login-resources/package.json index 4aa12aeb1a8..66d4d83bb40 100644 --- a/plugins/login-resources/package.json +++ b/plugins/login-resources/package.json @@ -19,7 +19,7 @@ "svelte-preprocess":"^4.7.4" }, "dependencies": { - "@anticrm/platform": "~0.6.4", + "@anticrm/platform": "~0.6.5", "svelte": "^3.37.0", "@anticrm/login": "~0.6.0", "@anticrm/ui": "~0.6.0" diff --git a/plugins/login-resources/src/utils.ts b/plugins/login-resources/src/utils.ts index e5c896844fc..cb720c5a91f 100644 --- a/plugins/login-resources/src/utils.ts +++ b/plugins/login-resources/src/utils.ts @@ -40,12 +40,13 @@ export async function doLogin ( try { const response = await fetch(accountsUrl, { method: 'POST', - headers: { - 'Content-Type': 'application/json;charset=utf-8' - }, + // headers: { + // 'Content-Type': 'text/plain' + // }, body: serialize(request) }) const result: Response = await response.json() + console.log('LOGIN: ', result) const status = result.error ?? OK return [status, result.result] } catch (err) { diff --git a/plugins/login/package.json b/plugins/login/package.json index bb14882cf96..c0f45c83e71 100644 --- a/plugins/login/package.json +++ b/plugins/login/package.json @@ -18,6 +18,6 @@ "eslint":"^7.32.0" }, "dependencies": { - "@anticrm/platform":"~0.6.4" + "@anticrm/platform":"~0.6.5" } } diff --git a/plugins/recruit-assets/package.json b/plugins/recruit-assets/package.json index 9cd61d4cd9a..e44c19163d6 100644 --- a/plugins/recruit-assets/package.json +++ b/plugins/recruit-assets/package.json @@ -15,7 +15,7 @@ "devDependencies": { }, "dependencies": { - "@anticrm/platform":"~0.6.4", + "@anticrm/platform":"~0.6.5", "@anticrm/recruit":"~0.6.0" } } diff --git a/plugins/recruit-resources/package.json b/plugins/recruit-resources/package.json index f381af58a05..929bfe8265f 100644 --- a/plugins/recruit-resources/package.json +++ b/plugins/recruit-resources/package.json @@ -19,7 +19,7 @@ "svelte-preprocess":"^4.7.4" }, "dependencies": { - "@anticrm/platform": "~0.6.4", + "@anticrm/platform": "~0.6.5", "@anticrm/core": "~0.6.0", "svelte": "^3.37.0", "@anticrm/recruit": "~0.6.0", diff --git a/plugins/recruit/package.json b/plugins/recruit/package.json index 4fccaab3679..eec876e1881 100644 --- a/plugins/recruit/package.json +++ b/plugins/recruit/package.json @@ -18,7 +18,7 @@ "eslint":"^7.32.0" }, "dependencies": { - "@anticrm/platform":"~0.6.4", + "@anticrm/platform":"~0.6.5", "@anticrm/core":"~0.6.0", "@anticrm/contact":"~0.6.0" } diff --git a/plugins/task-assets/package.json b/plugins/task-assets/package.json index 23f19ef2044..1856de50739 100644 --- a/plugins/task-assets/package.json +++ b/plugins/task-assets/package.json @@ -15,7 +15,7 @@ "devDependencies": { }, "dependencies": { - "@anticrm/platform":"~0.6.4", + "@anticrm/platform":"~0.6.5", "@anticrm/task":"~0.6.0" } } diff --git a/plugins/task-resources/package.json b/plugins/task-resources/package.json index ec9cc1b15a1..46dc332f7b6 100644 --- a/plugins/task-resources/package.json +++ b/plugins/task-resources/package.json @@ -19,7 +19,7 @@ "svelte-preprocess":"^4.7.4" }, "dependencies": { - "@anticrm/platform": "~0.6.4", + "@anticrm/platform": "~0.6.5", "svelte": "^3.37.0", "@anticrm/task": "~0.6.0", "@anticrm/ui": "~0.6.0", diff --git a/plugins/task/package.json b/plugins/task/package.json index 10c341e3691..07ce74c0acf 100644 --- a/plugins/task/package.json +++ b/plugins/task/package.json @@ -18,7 +18,7 @@ "eslint":"^7.32.0" }, "dependencies": { - "@anticrm/platform":"~0.6.4", + "@anticrm/platform":"~0.6.5", "@anticrm/core":"~0.6.0", "@anticrm/contact":"~0.6.0" } diff --git a/plugins/view-assets/package.json b/plugins/view-assets/package.json index 8dac246daee..09503a639a8 100644 --- a/plugins/view-assets/package.json +++ b/plugins/view-assets/package.json @@ -15,7 +15,7 @@ "devDependencies": { }, "dependencies": { - "@anticrm/platform":"~0.6.4", + "@anticrm/platform":"~0.6.5", "@anticrm/view":"~0.6.0" } } diff --git a/plugins/view-resources/package.json b/plugins/view-resources/package.json index b39794e48f3..5aba5673d23 100644 --- a/plugins/view-resources/package.json +++ b/plugins/view-resources/package.json @@ -20,7 +20,7 @@ }, "dependencies": { "svelte": "^3.37.0", - "@anticrm/platform": "~0.6.4", + "@anticrm/platform": "~0.6.5", "@anticrm/core": "~0.6.0", "@anticrm/view": "~0.6.0", "@anticrm/ui": "~0.6.0", diff --git a/plugins/view/package.json b/plugins/view/package.json index 26677856c5e..2003f6f288a 100644 --- a/plugins/view/package.json +++ b/plugins/view/package.json @@ -18,7 +18,7 @@ "eslint":"^7.32.0" }, "dependencies": { - "@anticrm/platform":"~0.6.4", + "@anticrm/platform":"~0.6.5", "@anticrm/core":"~0.6.0", "@anticrm/ui":"~0.6.0" } diff --git a/plugins/workbench-resources/package.json b/plugins/workbench-resources/package.json index 5ea785f315c..56ed8df3b74 100644 --- a/plugins/workbench-resources/package.json +++ b/plugins/workbench-resources/package.json @@ -20,7 +20,7 @@ }, "dependencies": { "svelte": "^3.37.0", - "@anticrm/platform": "~0.6.4", + "@anticrm/platform": "~0.6.5", "@anticrm/core": "~0.6.0", "@anticrm/client": "~0.6.0", "@anticrm/workbench": "~0.6.0", diff --git a/plugins/workbench/package.json b/plugins/workbench/package.json index 929311635c7..44265ed07d1 100644 --- a/plugins/workbench/package.json +++ b/plugins/workbench/package.json @@ -19,7 +19,7 @@ }, "dependencies": { "@anticrm/core":"~0.6.0", - "@anticrm/platform":"~0.6.4", + "@anticrm/platform":"~0.6.5", "@anticrm/ui":"~0.6.0" } } diff --git a/server/chunter/package.json b/server/chunter/package.json index 6ef46a63709..cc7b6a9ac2b 100644 --- a/server/chunter/package.json +++ b/server/chunter/package.json @@ -21,7 +21,7 @@ }, "dependencies": { "@anticrm/core": "~0.6.3", - "@anticrm/platform": "~0.6.4", + "@anticrm/platform": "~0.6.5", "@anticrm/server-core": "~0.6.0" } } diff --git a/server/core/package.json b/server/core/package.json index 38e4a738856..3c4c2e01772 100644 --- a/server/core/package.json +++ b/server/core/package.json @@ -21,6 +21,6 @@ }, "dependencies": { "@anticrm/core": "~0.6.3", - "@anticrm/platform": "~0.6.4" + "@anticrm/platform": "~0.6.5" } } diff --git a/server/server/package.json b/server/server/package.json index 7fe4a1c3a0a..3958c7e7e3c 100644 --- a/server/server/package.json +++ b/server/server/package.json @@ -21,7 +21,7 @@ }, "dependencies": { "@anticrm/core": "~0.6.3", - "@anticrm/platform": "~0.6.4", + "@anticrm/platform": "~0.6.5", "@anticrm/server-core": "~0.6.0" } } diff --git a/server/ws/package.json b/server/ws/package.json index b7f1ef67168..420f9397afa 100644 --- a/server/ws/package.json +++ b/server/ws/package.json @@ -22,6 +22,6 @@ "dependencies": { "jwt-simple": "^0.5.6", "ws": "^8.0.0", - "@anticrm/platform": "~0.6.4" + "@anticrm/platform": "~0.6.5" } } From 0913cd19fc0536e5ff55138cbea4f3aa2939d66f Mon Sep 17 00:00:00 2001 From: Andrey Platov Date: Sun, 8 Aug 2021 13:36:52 +0200 Subject: [PATCH 10/13] style Signed-off-by: Andrey Platov --- dev/account/src/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev/account/src/index.ts b/dev/account/src/index.ts index 4ca29c45034..f131b968237 100644 --- a/dev/account/src/index.ts +++ b/dev/account/src/index.ts @@ -23,5 +23,7 @@ export function handle (req: string | null, serverEndpoint: string): { statusCod if (req === null) return { statusCode: 401, body: 'unauthorized' } const resp = handleRequest(JSON.parse(req), serverEndpoint) if (resp.error !== undefined) { return { statusCode: 401, body: '' } } - return { statusCode: 200, body: JSON.stringify(resp.result) } + return { + statusCode: 200, body: JSON.stringify(resp.result) + } } From 57ce81a6d45c80e6af0ef1696cbf846d8e93dac3 Mon Sep 17 00:00:00 2001 From: Andrey Platov Date: Sun, 8 Aug 2021 13:43:00 +0200 Subject: [PATCH 11/13] changes Signed-off-by: Andrey Platov --- cloud/app/package-lock.json | 14 +++++++------- cloud/app/package.json | 2 +- .../dev-account/login_2021-08-08-11-34.json | 10 ---------- .../@anticrm/platform/login_2021-08-08-11-38.json | 10 ++++++++++ dev/account/CHANGELOG.json | 12 ++++++++++++ dev/account/CHANGELOG.md | 9 ++++++++- dev/account/package.json | 2 +- dev/account/src/index.ts | 5 +++-- dev/account/tsconfig.json | 1 + 9 files changed, 43 insertions(+), 22 deletions(-) delete mode 100644 common/changes/@anticrm/dev-account/login_2021-08-08-11-34.json create mode 100644 common/changes/@anticrm/platform/login_2021-08-08-11-38.json diff --git a/cloud/app/package-lock.json b/cloud/app/package-lock.json index 3ab54834bb3..cc125cce9fd 100644 --- a/cloud/app/package-lock.json +++ b/cloud/app/package-lock.json @@ -4,18 +4,18 @@ "lockfileVersion": 1, "dependencies": { "@anticrm/dev-account": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/@anticrm/dev-account/-/dev-account-0.6.3.tgz", - "integrity": "sha512-2o/uQQ7yiM0vbJHFacxrBN81pVz1gdr6R0xVzQBqoc4efCta/A2K93WUWgs3S+QDuG4uhvLpDkswP7Y2Cp1ajw==", + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/@anticrm/dev-account/-/dev-account-0.6.4.tgz", + "integrity": "sha512-SQSswnjEzyyxQXdYIxcv/DTLrjjigcwWVBqh1O+7aMXpk0aWA5BNRJ9e3/l3QPI8mPHNVZBDmpc4NF6Zzmi3kw==", "requires": { - "@anticrm/platform": "~0.6.4", + "@anticrm/platform": "~0.6.5", "jwt-simple": "^0.5.6" } }, "@anticrm/platform": { - "version": "0.6.4", - "resolved": "https://registry.npmjs.org/@anticrm/platform/-/platform-0.6.4.tgz", - "integrity": "sha512-0GJ6/BsqjBBvgs7bxJgWAURWfMWmp7yycDfr1JsvDJEVvBi7VWb1+cpZHiR6MKVfLQJz0f31ET7NGSQueTCMLw==", + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/@anticrm/platform/-/platform-0.6.5.tgz", + "integrity": "sha512-NwRA+s2mvqrt045NYrXXjCi/FB7uw9DFnmVqvVt4zozs8HsWtjQlQ7UPQjaqFV4rVZix6LTIGWmHAnvEGwOD5A==", "requires": { "intl-messageformat": "^9.7.1" } diff --git a/cloud/app/package.json b/cloud/app/package.json index 1de8c7f998a..2269a72725d 100644 --- a/cloud/app/package.json +++ b/cloud/app/package.json @@ -5,7 +5,7 @@ "@types/mime": "^2.0.3" }, "dependencies": { - "@anticrm/dev-account": "^0.6.3", + "@anticrm/dev-account": "^0.6.4", "@pulumi/aws": "^4.14.0", "@pulumi/cloud": "^0.30.1", "@pulumi/cloud-aws": "^0.30.1", diff --git a/common/changes/@anticrm/dev-account/login_2021-08-08-11-34.json b/common/changes/@anticrm/dev-account/login_2021-08-08-11-34.json deleted file mode 100644 index d62fcfc1fde..00000000000 --- a/common/changes/@anticrm/dev-account/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/dev-account", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/dev-account" -} \ No newline at end of file diff --git a/common/changes/@anticrm/platform/login_2021-08-08-11-38.json b/common/changes/@anticrm/platform/login_2021-08-08-11-38.json new file mode 100644 index 00000000000..0cf584ff2f1 --- /dev/null +++ b/common/changes/@anticrm/platform/login_2021-08-08-11-38.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@anticrm/platform", + "comment": "", + "type": "none" + } + ], + "packageName": "@anticrm/platform" +} \ No newline at end of file diff --git a/dev/account/CHANGELOG.json b/dev/account/CHANGELOG.json index d0ab73138c2..a4a99e13476 100644 --- a/dev/account/CHANGELOG.json +++ b/dev/account/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@anticrm/dev-account", "entries": [ + { + "version": "0.6.4", + "tag": "@anticrm/dev-account_v0.6.4", + "date": "Sun, 08 Aug 2021 11:38:34 GMT", + "comments": { + "patch": [ + { + "comment": "Update" + } + ] + } + }, { "version": "0.6.3", "tag": "@anticrm/dev-account_v0.6.3", diff --git a/dev/account/CHANGELOG.md b/dev/account/CHANGELOG.md index 962691dcf65..3ae3906c208 100644 --- a/dev/account/CHANGELOG.md +++ b/dev/account/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log - @anticrm/dev-account -This log was last generated on Sun, 08 Aug 2021 10:21:31 GMT and should not be manually modified. +This log was last generated on Sun, 08 Aug 2021 11:38:34 GMT and should not be manually modified. + +## 0.6.4 +Sun, 08 Aug 2021 11:38:34 GMT + +### Patches + +- Update ## 0.6.3 Sun, 08 Aug 2021 10:21:31 GMT diff --git a/dev/account/package.json b/dev/account/package.json index 6ca56fb4d0d..05f5b51fa08 100644 --- a/dev/account/package.json +++ b/dev/account/package.json @@ -1,6 +1,6 @@ { "name": "@anticrm/dev-account", - "version": "0.6.3", + "version": "0.6.4", "main": "lib/index.js", "author": "Anticrm Platform Contributors", "license": "EPL-2.0", diff --git a/dev/account/src/index.ts b/dev/account/src/index.ts index f131b968237..bc21c91d1e6 100644 --- a/dev/account/src/index.ts +++ b/dev/account/src/index.ts @@ -23,7 +23,8 @@ export function handle (req: string | null, serverEndpoint: string): { statusCod if (req === null) return { statusCode: 401, body: 'unauthorized' } const resp = handleRequest(JSON.parse(req), serverEndpoint) if (resp.error !== undefined) { return { statusCode: 401, body: '' } } - return { - statusCode: 200, body: JSON.stringify(resp.result) + return { + statusCode: 200, + body: JSON.stringify(resp.result) } } diff --git a/dev/account/tsconfig.json b/dev/account/tsconfig.json index aeb0517b138..cdad23c9086 100644 --- a/dev/account/tsconfig.json +++ b/dev/account/tsconfig.json @@ -2,6 +2,7 @@ "extends": "./node_modules/@anticrm/platform-rig/profiles/default/tsconfig.json", "compilerOptions": { + "target": "ES6", "rootDir": "./src", "outDir": "./lib" } From 09c372f2f7c0d2de827f206e43c33dea7df6a600 Mon Sep 17 00:00:00 2001 From: Andrey Platov Date: Sun, 8 Aug 2021 13:59:20 +0200 Subject: [PATCH 12/13] change Signed-off-by: Andrey Platov --- cloud/app/package-lock.json | 6 +++--- cloud/app/package.json | 2 +- dev/account/CHANGELOG.json | 12 ++++++++++++ dev/account/CHANGELOG.md | 9 ++++++++- dev/account/package.json | 2 +- dev/account/tsconfig.json | 2 +- packages/platform/tsconfig.json | 2 +- 7 files changed, 27 insertions(+), 8 deletions(-) diff --git a/cloud/app/package-lock.json b/cloud/app/package-lock.json index cc125cce9fd..864c93e6183 100644 --- a/cloud/app/package-lock.json +++ b/cloud/app/package-lock.json @@ -4,9 +4,9 @@ "lockfileVersion": 1, "dependencies": { "@anticrm/dev-account": { - "version": "0.6.4", - "resolved": "https://registry.npmjs.org/@anticrm/dev-account/-/dev-account-0.6.4.tgz", - "integrity": "sha512-SQSswnjEzyyxQXdYIxcv/DTLrjjigcwWVBqh1O+7aMXpk0aWA5BNRJ9e3/l3QPI8mPHNVZBDmpc4NF6Zzmi3kw==", + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/@anticrm/dev-account/-/dev-account-0.6.5.tgz", + "integrity": "sha512-WHo0lLJ2oneFz5LFVhGDVvI+ELc7V0gX+Pg5nkopahnjRGEVotuK5jN6U8mOt0x8FyF39WYK4CgKm3U8E4VDRg==", "requires": { "@anticrm/platform": "~0.6.5", "jwt-simple": "^0.5.6" diff --git a/cloud/app/package.json b/cloud/app/package.json index 2269a72725d..170b1aaff9d 100644 --- a/cloud/app/package.json +++ b/cloud/app/package.json @@ -5,7 +5,7 @@ "@types/mime": "^2.0.3" }, "dependencies": { - "@anticrm/dev-account": "^0.6.4", + "@anticrm/dev-account": "^0.6.5", "@pulumi/aws": "^4.14.0", "@pulumi/cloud": "^0.30.1", "@pulumi/cloud-aws": "^0.30.1", diff --git a/dev/account/CHANGELOG.json b/dev/account/CHANGELOG.json index a4a99e13476..dca839e3fb4 100644 --- a/dev/account/CHANGELOG.json +++ b/dev/account/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@anticrm/dev-account", "entries": [ + { + "version": "0.6.5", + "tag": "@anticrm/dev-account_v0.6.5", + "date": "Sun, 08 Aug 2021 11:43:36 GMT", + "comments": { + "patch": [ + { + "comment": "Update" + } + ] + } + }, { "version": "0.6.4", "tag": "@anticrm/dev-account_v0.6.4", diff --git a/dev/account/CHANGELOG.md b/dev/account/CHANGELOG.md index 3ae3906c208..ca2164f389e 100644 --- a/dev/account/CHANGELOG.md +++ b/dev/account/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log - @anticrm/dev-account -This log was last generated on Sun, 08 Aug 2021 11:38:34 GMT and should not be manually modified. +This log was last generated on Sun, 08 Aug 2021 11:43:36 GMT and should not be manually modified. + +## 0.6.5 +Sun, 08 Aug 2021 11:43:36 GMT + +### Patches + +- Update ## 0.6.4 Sun, 08 Aug 2021 11:38:34 GMT diff --git a/dev/account/package.json b/dev/account/package.json index 05f5b51fa08..f83c66ea04c 100644 --- a/dev/account/package.json +++ b/dev/account/package.json @@ -1,6 +1,6 @@ { "name": "@anticrm/dev-account", - "version": "0.6.4", + "version": "0.6.5", "main": "lib/index.js", "author": "Anticrm Platform Contributors", "license": "EPL-2.0", diff --git a/dev/account/tsconfig.json b/dev/account/tsconfig.json index cdad23c9086..db952534cf1 100644 --- a/dev/account/tsconfig.json +++ b/dev/account/tsconfig.json @@ -2,7 +2,7 @@ "extends": "./node_modules/@anticrm/platform-rig/profiles/default/tsconfig.json", "compilerOptions": { - "target": "ES6", + "target": "ES5", "rootDir": "./src", "outDir": "./lib" } diff --git a/packages/platform/tsconfig.json b/packages/platform/tsconfig.json index ba223dc71a7..d457bc21c97 100644 --- a/packages/platform/tsconfig.json +++ b/packages/platform/tsconfig.json @@ -2,7 +2,7 @@ "extends": "./node_modules/@anticrm/platform-rig/profiles/default/tsconfig.json", "compilerOptions": { - "target": "ES6", + "target": "ES5", "rootDir": "./src", "outDir": "./lib", "lib": ["esnext", "esnext.intl", "dom"] From a1a4651fe346f81f9351a78f2233a84d13a60a17 Mon Sep 17 00:00:00 2001 From: Andrey Platov Date: Sun, 8 Aug 2021 14:49:06 +0200 Subject: [PATCH 13/13] finalize Signed-off-by: Andrey Platov --- cloud/app/index.ts | 45 +++++++++++-------- cloud/app/package-lock.json | 6 +-- cloud/app/package.json | 2 +- .../login_2021-08-08-11-34.json | 10 ----- .../login_2021-08-08-11-34.json | 10 ----- .../chunter/login_2021-08-08-11-34.json | 10 ----- .../login_2021-08-08-11-34.json | 10 ----- .../client/login_2021-08-08-11-34.json | 10 ----- .../login_2021-08-08-11-34.json | 10 ----- .../contact/login_2021-08-08-11-34.json | 10 ----- .../@anticrm/core/login_2021-08-08-11-34.json | 10 ----- .../login_2021-08-08-11-34.json | 10 ----- .../login_2021-08-08-11-34.json | 10 ----- .../dev-server/login_2021-08-08-11-34.json | 10 ----- .../dev-storage/login_2021-08-08-11-34.json | 10 ----- .../login-assets/login_2021-08-08-11-34.json | 10 ----- .../login_2021-08-08-11-34.json | 10 ----- .../login/login_2021-08-08-11-34.json | 10 ----- .../model-chunter/login_2021-08-08-11-34.json | 10 ----- .../model-contact/login_2021-08-08-11-34.json | 10 ----- .../model-core/login_2021-08-08-11-34.json | 10 ----- .../model-demo/login_2021-08-08-11-34.json | 10 ----- .../model-recruit/login_2021-08-08-11-34.json | 10 ----- .../login_2021-08-08-11-34.json | 10 ----- .../login_2021-08-08-11-34.json | 10 ----- .../model-task/login_2021-08-08-11-34.json | 10 ----- .../model-view/login_2021-08-08-11-34.json | 10 ----- .../login_2021-08-08-11-34.json | 10 ----- .../model/login_2021-08-08-11-34.json | 10 ----- .../platform/login_2021-08-08-11-38.json | 10 ----- .../presentation/login_2021-08-08-11-34.json | 10 ----- .../query/login_2021-08-08-11-34.json | 10 ----- .../login_2021-08-08-11-34.json | 10 ----- .../login_2021-08-08-11-34.json | 10 ----- .../recruit/login_2021-08-08-11-34.json | 10 ----- .../login_2021-08-08-11-34.json | 10 ----- .../server-core/login_2021-08-08-11-34.json | 10 ----- .../server-ws/login_2021-08-08-11-34.json | 10 ----- .../server/login_2021-08-08-11-34.json | 10 ----- .../task-assets/login_2021-08-08-11-34.json | 10 ----- .../login_2021-08-08-11-34.json | 10 ----- .../@anticrm/task/login_2021-08-08-11-34.json | 10 ----- .../@anticrm/ui/login_2021-08-08-11-34.json | 10 ----- .../view-assets/login_2021-08-08-11-34.json | 10 ----- .../login_2021-08-08-11-34.json | 10 ----- .../@anticrm/view/login_2021-08-08-11-34.json | 10 ----- .../login_2021-08-08-11-34.json | 10 ----- .../workbench/login_2021-08-08-11-34.json | 10 ----- .../changes/prod/login_2021-08-08-11-34.json | 10 ----- dev/account/CHANGELOG.json | 12 +++++ dev/account/CHANGELOG.md | 9 +++- dev/account/package.json | 2 +- dev/account/src/index.ts | 4 +- dev/account/tsconfig.json | 2 +- dev/prod/src/platform.ts | 3 +- dev/prod/webpack.config.js | 1 + packages/platform/tsconfig.json | 2 +- plugins/login-resources/src/utils.ts | 6 +-- 58 files changed, 62 insertions(+), 492 deletions(-) delete mode 100644 common/changes/@anticrm/chunter-assets/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/chunter-resources/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/chunter/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/client-resources/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/client/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/contact-resources/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/contact/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/core/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/dev-client-resources/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/dev-server-chunter-resources/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/dev-server/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/dev-storage/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/login-assets/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/login-resources/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/login/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/model-chunter/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/model-contact/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/model-core/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/model-demo/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/model-recruit/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/model-server-chunter/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/model-server-core/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/model-task/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/model-view/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/model-workbench/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/model/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/platform/login_2021-08-08-11-38.json delete mode 100644 common/changes/@anticrm/presentation/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/query/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/recruit-assets/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/recruit-resources/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/recruit/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/server-chunter/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/server-core/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/server-ws/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/server/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/task-assets/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/task-resources/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/task/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/ui/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/view-assets/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/view-resources/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/view/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/workbench-resources/login_2021-08-08-11-34.json delete mode 100644 common/changes/@anticrm/workbench/login_2021-08-08-11-34.json delete mode 100644 common/changes/prod/login_2021-08-08-11-34.json diff --git a/cloud/app/index.ts b/cloud/app/index.ts index e68120e6aa4..52cd6af0aca 100644 --- a/cloud/app/index.ts +++ b/cloud/app/index.ts @@ -95,33 +95,42 @@ const api = new awsx.apigateway.API("login", { path: "/", method: "POST", eventHandler: async (event) => { - const result = handle(event.body, serverEndpoint.get()) + console.log(event.body) + console.log(serverEndpoint.get()) + + let body = event.body; + if (event.isBase64Encoded) { + body = Buffer.from(body as string, 'base64').toString() + } + + const result = handle(body, serverEndpoint.get()) return { statusCode: result.statusCode, + // headers: { + // "Access-Control-Allow-Headers" : "Content-Type", + // "Access-Control-Allow-Origin": "*", + // "Access-Control-Allow-Methods": "GET,HEAD,POST" + // }, + body: result.body + } + }, + }, + { + path: "/", + method: "OPTIONS", + eventHandler: async (event) => { + console.log('OPTIONS call') + return { + statusCode: 200, headers: { "Access-Control-Allow-Headers" : "Content-Type", "Access-Control-Allow-Origin": "*", - "Access-Control-Allow-Methods": "GET,HEAD,POST" + "Access-Control-Allow-Methods": "OPTIONS,POST" }, - body: result.body + body: '' } }, }, - // { - // path: "/", - // method: "OPTIONS", - // eventHandler: async (event) => { - // return { - // statusCode: 200, - // headers: { - // "Access-Control-Allow-Headers" : "*", - // "Access-Control-Allow-Origin": "*", - // "Access-Control-Allow-Methods": "*" - // }, - // body: '' - // } - // }, - // }, ], }) diff --git a/cloud/app/package-lock.json b/cloud/app/package-lock.json index 864c93e6183..ebe56aaf80c 100644 --- a/cloud/app/package-lock.json +++ b/cloud/app/package-lock.json @@ -4,9 +4,9 @@ "lockfileVersion": 1, "dependencies": { "@anticrm/dev-account": { - "version": "0.6.5", - "resolved": "https://registry.npmjs.org/@anticrm/dev-account/-/dev-account-0.6.5.tgz", - "integrity": "sha512-WHo0lLJ2oneFz5LFVhGDVvI+ELc7V0gX+Pg5nkopahnjRGEVotuK5jN6U8mOt0x8FyF39WYK4CgKm3U8E4VDRg==", + "version": "0.6.6", + "resolved": "https://registry.npmjs.org/@anticrm/dev-account/-/dev-account-0.6.6.tgz", + "integrity": "sha512-kdXQyNXwfS9VlyPSkNLSCsiMxVZLCvaCL48tmbP/6HcCpyraqncqqCiSIuTCyQfwK2ed/XICZGIZEiOnP/2U/Q==", "requires": { "@anticrm/platform": "~0.6.5", "jwt-simple": "^0.5.6" diff --git a/cloud/app/package.json b/cloud/app/package.json index 170b1aaff9d..46382dd5ee4 100644 --- a/cloud/app/package.json +++ b/cloud/app/package.json @@ -5,7 +5,7 @@ "@types/mime": "^2.0.3" }, "dependencies": { - "@anticrm/dev-account": "^0.6.5", + "@anticrm/dev-account": "^0.6.6", "@pulumi/aws": "^4.14.0", "@pulumi/cloud": "^0.30.1", "@pulumi/cloud-aws": "^0.30.1", diff --git a/common/changes/@anticrm/chunter-assets/login_2021-08-08-11-34.json b/common/changes/@anticrm/chunter-assets/login_2021-08-08-11-34.json deleted file mode 100644 index 4987e7011cc..00000000000 --- a/common/changes/@anticrm/chunter-assets/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/chunter-assets", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/chunter-assets" -} \ No newline at end of file diff --git a/common/changes/@anticrm/chunter-resources/login_2021-08-08-11-34.json b/common/changes/@anticrm/chunter-resources/login_2021-08-08-11-34.json deleted file mode 100644 index 55457e71a2c..00000000000 --- a/common/changes/@anticrm/chunter-resources/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/chunter-resources", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/chunter-resources" -} \ No newline at end of file diff --git a/common/changes/@anticrm/chunter/login_2021-08-08-11-34.json b/common/changes/@anticrm/chunter/login_2021-08-08-11-34.json deleted file mode 100644 index 8d76096a11b..00000000000 --- a/common/changes/@anticrm/chunter/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/chunter", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/chunter" -} \ No newline at end of file diff --git a/common/changes/@anticrm/client-resources/login_2021-08-08-11-34.json b/common/changes/@anticrm/client-resources/login_2021-08-08-11-34.json deleted file mode 100644 index 8d501a96ba2..00000000000 --- a/common/changes/@anticrm/client-resources/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/client-resources", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/client-resources" -} \ No newline at end of file diff --git a/common/changes/@anticrm/client/login_2021-08-08-11-34.json b/common/changes/@anticrm/client/login_2021-08-08-11-34.json deleted file mode 100644 index 74d2bb3b32a..00000000000 --- a/common/changes/@anticrm/client/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/client", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/client" -} \ No newline at end of file diff --git a/common/changes/@anticrm/contact-resources/login_2021-08-08-11-34.json b/common/changes/@anticrm/contact-resources/login_2021-08-08-11-34.json deleted file mode 100644 index 562bc5b15b8..00000000000 --- a/common/changes/@anticrm/contact-resources/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/contact-resources", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/contact-resources" -} \ No newline at end of file diff --git a/common/changes/@anticrm/contact/login_2021-08-08-11-34.json b/common/changes/@anticrm/contact/login_2021-08-08-11-34.json deleted file mode 100644 index c7766541277..00000000000 --- a/common/changes/@anticrm/contact/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/contact", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/contact" -} \ No newline at end of file diff --git a/common/changes/@anticrm/core/login_2021-08-08-11-34.json b/common/changes/@anticrm/core/login_2021-08-08-11-34.json deleted file mode 100644 index 07733e41308..00000000000 --- a/common/changes/@anticrm/core/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/core", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/core" -} \ No newline at end of file diff --git a/common/changes/@anticrm/dev-client-resources/login_2021-08-08-11-34.json b/common/changes/@anticrm/dev-client-resources/login_2021-08-08-11-34.json deleted file mode 100644 index a93e20a202f..00000000000 --- a/common/changes/@anticrm/dev-client-resources/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/dev-client-resources", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/dev-client-resources" -} \ No newline at end of file diff --git a/common/changes/@anticrm/dev-server-chunter-resources/login_2021-08-08-11-34.json b/common/changes/@anticrm/dev-server-chunter-resources/login_2021-08-08-11-34.json deleted file mode 100644 index 5ba95cde7f0..00000000000 --- a/common/changes/@anticrm/dev-server-chunter-resources/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/dev-server-chunter-resources", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/dev-server-chunter-resources" -} \ No newline at end of file diff --git a/common/changes/@anticrm/dev-server/login_2021-08-08-11-34.json b/common/changes/@anticrm/dev-server/login_2021-08-08-11-34.json deleted file mode 100644 index f1107fae3cf..00000000000 --- a/common/changes/@anticrm/dev-server/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/dev-server", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/dev-server" -} \ No newline at end of file diff --git a/common/changes/@anticrm/dev-storage/login_2021-08-08-11-34.json b/common/changes/@anticrm/dev-storage/login_2021-08-08-11-34.json deleted file mode 100644 index 3075a77de95..00000000000 --- a/common/changes/@anticrm/dev-storage/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/dev-storage", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/dev-storage" -} \ No newline at end of file diff --git a/common/changes/@anticrm/login-assets/login_2021-08-08-11-34.json b/common/changes/@anticrm/login-assets/login_2021-08-08-11-34.json deleted file mode 100644 index a3b565e5d98..00000000000 --- a/common/changes/@anticrm/login-assets/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/login-assets", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/login-assets" -} \ No newline at end of file diff --git a/common/changes/@anticrm/login-resources/login_2021-08-08-11-34.json b/common/changes/@anticrm/login-resources/login_2021-08-08-11-34.json deleted file mode 100644 index ab64cbbdcec..00000000000 --- a/common/changes/@anticrm/login-resources/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/login-resources", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/login-resources" -} \ No newline at end of file diff --git a/common/changes/@anticrm/login/login_2021-08-08-11-34.json b/common/changes/@anticrm/login/login_2021-08-08-11-34.json deleted file mode 100644 index 226ec8a2a1e..00000000000 --- a/common/changes/@anticrm/login/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/login", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/login" -} \ No newline at end of file diff --git a/common/changes/@anticrm/model-chunter/login_2021-08-08-11-34.json b/common/changes/@anticrm/model-chunter/login_2021-08-08-11-34.json deleted file mode 100644 index 6dc45197bae..00000000000 --- a/common/changes/@anticrm/model-chunter/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/model-chunter", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/model-chunter" -} \ No newline at end of file diff --git a/common/changes/@anticrm/model-contact/login_2021-08-08-11-34.json b/common/changes/@anticrm/model-contact/login_2021-08-08-11-34.json deleted file mode 100644 index 278b3be42c8..00000000000 --- a/common/changes/@anticrm/model-contact/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/model-contact", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/model-contact" -} \ No newline at end of file diff --git a/common/changes/@anticrm/model-core/login_2021-08-08-11-34.json b/common/changes/@anticrm/model-core/login_2021-08-08-11-34.json deleted file mode 100644 index b0c0401bf86..00000000000 --- a/common/changes/@anticrm/model-core/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/model-core", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/model-core" -} \ No newline at end of file diff --git a/common/changes/@anticrm/model-demo/login_2021-08-08-11-34.json b/common/changes/@anticrm/model-demo/login_2021-08-08-11-34.json deleted file mode 100644 index ccbc08d6c27..00000000000 --- a/common/changes/@anticrm/model-demo/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/model-demo", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/model-demo" -} \ No newline at end of file diff --git a/common/changes/@anticrm/model-recruit/login_2021-08-08-11-34.json b/common/changes/@anticrm/model-recruit/login_2021-08-08-11-34.json deleted file mode 100644 index 726fe7b6ffa..00000000000 --- a/common/changes/@anticrm/model-recruit/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/model-recruit", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/model-recruit" -} \ No newline at end of file diff --git a/common/changes/@anticrm/model-server-chunter/login_2021-08-08-11-34.json b/common/changes/@anticrm/model-server-chunter/login_2021-08-08-11-34.json deleted file mode 100644 index 4bae31d629a..00000000000 --- a/common/changes/@anticrm/model-server-chunter/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/model-server-chunter", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/model-server-chunter" -} \ No newline at end of file diff --git a/common/changes/@anticrm/model-server-core/login_2021-08-08-11-34.json b/common/changes/@anticrm/model-server-core/login_2021-08-08-11-34.json deleted file mode 100644 index cf9e3fd66ec..00000000000 --- a/common/changes/@anticrm/model-server-core/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/model-server-core", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/model-server-core" -} \ No newline at end of file diff --git a/common/changes/@anticrm/model-task/login_2021-08-08-11-34.json b/common/changes/@anticrm/model-task/login_2021-08-08-11-34.json deleted file mode 100644 index f359dd9881f..00000000000 --- a/common/changes/@anticrm/model-task/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/model-task", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/model-task" -} \ No newline at end of file diff --git a/common/changes/@anticrm/model-view/login_2021-08-08-11-34.json b/common/changes/@anticrm/model-view/login_2021-08-08-11-34.json deleted file mode 100644 index 8fbd0db7211..00000000000 --- a/common/changes/@anticrm/model-view/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/model-view", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/model-view" -} \ No newline at end of file diff --git a/common/changes/@anticrm/model-workbench/login_2021-08-08-11-34.json b/common/changes/@anticrm/model-workbench/login_2021-08-08-11-34.json deleted file mode 100644 index 2e48c7978e4..00000000000 --- a/common/changes/@anticrm/model-workbench/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/model-workbench", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/model-workbench" -} \ No newline at end of file diff --git a/common/changes/@anticrm/model/login_2021-08-08-11-34.json b/common/changes/@anticrm/model/login_2021-08-08-11-34.json deleted file mode 100644 index 47741a8b6cd..00000000000 --- a/common/changes/@anticrm/model/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/model", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/model" -} \ No newline at end of file diff --git a/common/changes/@anticrm/platform/login_2021-08-08-11-38.json b/common/changes/@anticrm/platform/login_2021-08-08-11-38.json deleted file mode 100644 index 0cf584ff2f1..00000000000 --- a/common/changes/@anticrm/platform/login_2021-08-08-11-38.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/platform", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/platform" -} \ No newline at end of file diff --git a/common/changes/@anticrm/presentation/login_2021-08-08-11-34.json b/common/changes/@anticrm/presentation/login_2021-08-08-11-34.json deleted file mode 100644 index daabbcc7603..00000000000 --- a/common/changes/@anticrm/presentation/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/presentation", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/presentation" -} \ No newline at end of file diff --git a/common/changes/@anticrm/query/login_2021-08-08-11-34.json b/common/changes/@anticrm/query/login_2021-08-08-11-34.json deleted file mode 100644 index b4a815839b6..00000000000 --- a/common/changes/@anticrm/query/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/query", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/query" -} \ No newline at end of file diff --git a/common/changes/@anticrm/recruit-assets/login_2021-08-08-11-34.json b/common/changes/@anticrm/recruit-assets/login_2021-08-08-11-34.json deleted file mode 100644 index 5c41fd8b52c..00000000000 --- a/common/changes/@anticrm/recruit-assets/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/recruit-assets", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/recruit-assets" -} \ No newline at end of file diff --git a/common/changes/@anticrm/recruit-resources/login_2021-08-08-11-34.json b/common/changes/@anticrm/recruit-resources/login_2021-08-08-11-34.json deleted file mode 100644 index 2f12eeba55a..00000000000 --- a/common/changes/@anticrm/recruit-resources/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/recruit-resources", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/recruit-resources" -} \ No newline at end of file diff --git a/common/changes/@anticrm/recruit/login_2021-08-08-11-34.json b/common/changes/@anticrm/recruit/login_2021-08-08-11-34.json deleted file mode 100644 index 6ea2167fcc6..00000000000 --- a/common/changes/@anticrm/recruit/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/recruit", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/recruit" -} \ No newline at end of file diff --git a/common/changes/@anticrm/server-chunter/login_2021-08-08-11-34.json b/common/changes/@anticrm/server-chunter/login_2021-08-08-11-34.json deleted file mode 100644 index b106dfa8e7f..00000000000 --- a/common/changes/@anticrm/server-chunter/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/server-chunter", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/server-chunter" -} \ No newline at end of file diff --git a/common/changes/@anticrm/server-core/login_2021-08-08-11-34.json b/common/changes/@anticrm/server-core/login_2021-08-08-11-34.json deleted file mode 100644 index c12bb068660..00000000000 --- a/common/changes/@anticrm/server-core/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/server-core", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/server-core" -} \ No newline at end of file diff --git a/common/changes/@anticrm/server-ws/login_2021-08-08-11-34.json b/common/changes/@anticrm/server-ws/login_2021-08-08-11-34.json deleted file mode 100644 index 57238d2e4ea..00000000000 --- a/common/changes/@anticrm/server-ws/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/server-ws", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/server-ws" -} \ No newline at end of file diff --git a/common/changes/@anticrm/server/login_2021-08-08-11-34.json b/common/changes/@anticrm/server/login_2021-08-08-11-34.json deleted file mode 100644 index 703c38f0520..00000000000 --- a/common/changes/@anticrm/server/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/server", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/server" -} \ No newline at end of file diff --git a/common/changes/@anticrm/task-assets/login_2021-08-08-11-34.json b/common/changes/@anticrm/task-assets/login_2021-08-08-11-34.json deleted file mode 100644 index f06f268d2b8..00000000000 --- a/common/changes/@anticrm/task-assets/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/task-assets", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/task-assets" -} \ No newline at end of file diff --git a/common/changes/@anticrm/task-resources/login_2021-08-08-11-34.json b/common/changes/@anticrm/task-resources/login_2021-08-08-11-34.json deleted file mode 100644 index b8358336b1f..00000000000 --- a/common/changes/@anticrm/task-resources/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/task-resources", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/task-resources" -} \ No newline at end of file diff --git a/common/changes/@anticrm/task/login_2021-08-08-11-34.json b/common/changes/@anticrm/task/login_2021-08-08-11-34.json deleted file mode 100644 index 91a10810550..00000000000 --- a/common/changes/@anticrm/task/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/task", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/task" -} \ No newline at end of file diff --git a/common/changes/@anticrm/ui/login_2021-08-08-11-34.json b/common/changes/@anticrm/ui/login_2021-08-08-11-34.json deleted file mode 100644 index c37769d8f2a..00000000000 --- a/common/changes/@anticrm/ui/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/ui", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/ui" -} \ No newline at end of file diff --git a/common/changes/@anticrm/view-assets/login_2021-08-08-11-34.json b/common/changes/@anticrm/view-assets/login_2021-08-08-11-34.json deleted file mode 100644 index bc23f6ede01..00000000000 --- a/common/changes/@anticrm/view-assets/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/view-assets", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/view-assets" -} \ No newline at end of file diff --git a/common/changes/@anticrm/view-resources/login_2021-08-08-11-34.json b/common/changes/@anticrm/view-resources/login_2021-08-08-11-34.json deleted file mode 100644 index ad4a208143a..00000000000 --- a/common/changes/@anticrm/view-resources/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/view-resources", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/view-resources" -} \ No newline at end of file diff --git a/common/changes/@anticrm/view/login_2021-08-08-11-34.json b/common/changes/@anticrm/view/login_2021-08-08-11-34.json deleted file mode 100644 index 5116e3a17f9..00000000000 --- a/common/changes/@anticrm/view/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/view", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/view" -} \ No newline at end of file diff --git a/common/changes/@anticrm/workbench-resources/login_2021-08-08-11-34.json b/common/changes/@anticrm/workbench-resources/login_2021-08-08-11-34.json deleted file mode 100644 index 50a83686fa2..00000000000 --- a/common/changes/@anticrm/workbench-resources/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/workbench-resources", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/workbench-resources" -} \ No newline at end of file diff --git a/common/changes/@anticrm/workbench/login_2021-08-08-11-34.json b/common/changes/@anticrm/workbench/login_2021-08-08-11-34.json deleted file mode 100644 index 23ef29dd17d..00000000000 --- a/common/changes/@anticrm/workbench/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@anticrm/workbench", - "comment": "", - "type": "none" - } - ], - "packageName": "@anticrm/workbench" -} \ No newline at end of file diff --git a/common/changes/prod/login_2021-08-08-11-34.json b/common/changes/prod/login_2021-08-08-11-34.json deleted file mode 100644 index f9451f44107..00000000000 --- a/common/changes/prod/login_2021-08-08-11-34.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "prod", - "comment": "", - "type": "none" - } - ], - "packageName": "prod" -} \ No newline at end of file diff --git a/dev/account/CHANGELOG.json b/dev/account/CHANGELOG.json index dca839e3fb4..f6f8878c7ff 100644 --- a/dev/account/CHANGELOG.json +++ b/dev/account/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@anticrm/dev-account", "entries": [ + { + "version": "0.6.6", + "tag": "@anticrm/dev-account_v0.6.6", + "date": "Sun, 08 Aug 2021 12:00:07 GMT", + "comments": { + "patch": [ + { + "comment": "Change" + } + ] + } + }, { "version": "0.6.5", "tag": "@anticrm/dev-account_v0.6.5", diff --git a/dev/account/CHANGELOG.md b/dev/account/CHANGELOG.md index ca2164f389e..e256d75350f 100644 --- a/dev/account/CHANGELOG.md +++ b/dev/account/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log - @anticrm/dev-account -This log was last generated on Sun, 08 Aug 2021 11:43:36 GMT and should not be manually modified. +This log was last generated on Sun, 08 Aug 2021 12:00:07 GMT and should not be manually modified. + +## 0.6.6 +Sun, 08 Aug 2021 12:00:07 GMT + +### Patches + +- Change ## 0.6.5 Sun, 08 Aug 2021 11:43:36 GMT diff --git a/dev/account/package.json b/dev/account/package.json index f83c66ea04c..dda3a888f20 100644 --- a/dev/account/package.json +++ b/dev/account/package.json @@ -1,6 +1,6 @@ { "name": "@anticrm/dev-account", - "version": "0.6.5", + "version": "0.6.6", "main": "lib/index.js", "author": "Anticrm Platform Contributors", "license": "EPL-2.0", diff --git a/dev/account/src/index.ts b/dev/account/src/index.ts index bc21c91d1e6..08b5db8b64b 100644 --- a/dev/account/src/index.ts +++ b/dev/account/src/index.ts @@ -19,8 +19,8 @@ import { handleRequest } from './account' /** * @public */ -export function handle (req: string | null, serverEndpoint: string): { statusCode: number, body: string } { - if (req === null) return { statusCode: 401, body: 'unauthorized' } +export function handle (req: string | null | undefined, serverEndpoint: string): { statusCode: number, body: string } { + if (req === null || req === undefined) return { statusCode: 401, body: 'unauthorized' } const resp = handleRequest(JSON.parse(req), serverEndpoint) if (resp.error !== undefined) { return { statusCode: 401, body: '' } } return { diff --git a/dev/account/tsconfig.json b/dev/account/tsconfig.json index db952534cf1..cdad23c9086 100644 --- a/dev/account/tsconfig.json +++ b/dev/account/tsconfig.json @@ -2,7 +2,7 @@ "extends": "./node_modules/@anticrm/platform-rig/profiles/default/tsconfig.json", "compilerOptions": { - "target": "ES5", + "target": "ES6", "rootDir": "./src", "outDir": "./lib" } diff --git a/dev/prod/src/platform.ts b/dev/prod/src/platform.ts index 05f240732ee..5c952b2a745 100644 --- a/dev/prod/src/platform.ts +++ b/dev/prod/src/platform.ts @@ -36,7 +36,8 @@ import { setMetadata } from '@anticrm/platform' export function configurePlatform() { - setMetadata(login.metadata.AccountsUrl, 'https://ftwm71rwag.execute-api.us-west-2.amazonaws.com/stage/') + // setMetadata(login.metadata.AccountsUrl, 'https://ftwm71rwag.execute-api.us-west-2.amazonaws.com/stage/') + setMetadata(login.metadata.AccountsUrl, '/api') // if (process.env.CLIENT === 'dev') addLocation(clientId, () => import(/* webpackChunkName: "client-dev" */ '@anticrm/dev-client-resources')) diff --git a/dev/prod/webpack.config.js b/dev/prod/webpack.config.js index e673a881417..cbd018c7f04 100644 --- a/dev/prod/webpack.config.js +++ b/dev/prod/webpack.config.js @@ -165,6 +165,7 @@ module.exports = { target: 'https://ftwm71rwag.execute-api.us-west-2.amazonaws.com/stage/', changeOrigin: true, pathRewrite: { '^/api': '' }, + logLevel: 'debug' }, } } diff --git a/packages/platform/tsconfig.json b/packages/platform/tsconfig.json index d457bc21c97..ba223dc71a7 100644 --- a/packages/platform/tsconfig.json +++ b/packages/platform/tsconfig.json @@ -2,7 +2,7 @@ "extends": "./node_modules/@anticrm/platform-rig/profiles/default/tsconfig.json", "compilerOptions": { - "target": "ES5", + "target": "ES6", "rootDir": "./src", "outDir": "./lib", "lib": ["esnext", "esnext.intl", "dom"] diff --git a/plugins/login-resources/src/utils.ts b/plugins/login-resources/src/utils.ts index cb720c5a91f..bcba27fa485 100644 --- a/plugins/login-resources/src/utils.ts +++ b/plugins/login-resources/src/utils.ts @@ -40,9 +40,9 @@ export async function doLogin ( try { const response = await fetch(accountsUrl, { method: 'POST', - // headers: { - // 'Content-Type': 'text/plain' - // }, + headers: { + 'Content-Type': 'application/json' + }, body: serialize(request) }) const result: Response = await response.json()