├── .DS_Store ├── .eslintignore ├── .gitignore ├── .lintstagedrc ├── .prettierrc ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── database ├── backup │ └── system_empty.sql ├── language_init.sql ├── roles_init.sql └── users_init.sql ├── docker ├── Dockerfile ├── docker-compose.yaml ├── docker-entrypoint-initdb.d │ └── init.sql ├── server_env └── start.sh ├── generate-buildno.js ├── global.d.ts ├── nodemon.json ├── package.json ├── schema ├── actions.graphql ├── attributes.graphql ├── audit.graphql ├── auth.graphql ├── channels.graphql ├── collections.graphql ├── dashboards.graphql ├── import.graphql ├── importConfigs.graphql ├── index.graphql ├── itemRelations.graphql ├── items.graphql ├── languages.graphql ├── lovs.graphql ├── processes.graphql ├── relations.graphql ├── reload.graphql ├── search.graphql ├── templates.graphql ├── types.graphql └── users.graphql ├── server.config ├── channelDialogConfigExample.json ├── openIDConfigExample.json ├── otherConfigExample.json └── s3StorageExample.config ├── src ├── audit.ts ├── channels │ ├── ChannelHandler.ts │ ├── ext │ │ └── ExtChannelHandler.ts │ ├── index.ts │ ├── ozon │ │ └── OzonChannelHandler.ts │ ├── wb │ │ └── WBNewChannelHandler.ts │ └── ym │ │ └── YMChannelHandler.ts ├── context.ts ├── i18n.ts ├── index.ts ├── locales │ ├── en.json │ └── ru.json ├── logger.ts ├── media │ ├── FileManager.ts │ ├── ImportManager.ts │ └── index.ts ├── metrics.ts ├── models │ ├── actions.ts │ ├── attributes.ts │ ├── base.ts │ ├── channels.ts │ ├── collectionItems.ts │ ├── collections.ts │ ├── dashboards.ts │ ├── import.ts │ ├── importConfigs.ts │ ├── index.ts │ ├── itemRelations.ts │ ├── items.ts │ ├── languages.ts │ ├── lovs.ts │ ├── manager.ts │ ├── processes.ts │ ├── relations.ts │ ├── search.ts │ ├── templates.ts │ ├── types.ts │ ├── users.ts │ └── utils │ │ └── ltreeSupport.ts ├── resolvers │ ├── actions.ts │ ├── attributes.ts │ ├── audit.ts │ ├── auth.ts │ ├── channels.ts │ ├── collections.ts │ ├── dashboards.ts │ ├── import │ │ ├── actions.ts │ │ ├── attrGroups.ts │ │ ├── attributes.ts │ │ ├── channels.ts │ │ ├── collections.ts │ │ ├── index.ts │ │ ├── itemRelations.ts │ │ ├── items.ts │ │ ├── lovs.ts │ │ ├── relations.ts │ │ ├── roles.ts │ │ ├── types.ts │ │ └── users.ts │ ├── importConfigs.ts │ ├── index.ts │ ├── itemRelations.ts │ ├── items.ts │ ├── languages.ts │ ├── lovs.ts │ ├── processes.ts │ ├── relations.ts │ ├── reload.ts │ ├── search.ts │ ├── templates.ts │ ├── types.ts │ ├── users.ts │ ├── utils.ts │ └── utils │ │ ├── cleaningDatabase.ts │ │ └── languageDependentString.ts ├── storage │ ├── FilesystemStorageManager.ts │ ├── S3StorageManager.ts │ ├── StorageFactory.ts │ └── StorageManager.ts ├── templates.ts └── version.ts ├── tsconfig.eslint.json └── tsconfig.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/.DS_Store -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/README.md -------------------------------------------------------------------------------- /database/backup/system_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/database/backup/system_empty.sql -------------------------------------------------------------------------------- /database/language_init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/database/language_init.sql -------------------------------------------------------------------------------- /database/roles_init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/database/roles_init.sql -------------------------------------------------------------------------------- /database/users_init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/database/users_init.sql -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/docker/docker-compose.yaml -------------------------------------------------------------------------------- /docker/docker-entrypoint-initdb.d/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/docker/docker-entrypoint-initdb.d/init.sql -------------------------------------------------------------------------------- /docker/server_env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/docker/server_env -------------------------------------------------------------------------------- /docker/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/docker/start.sh -------------------------------------------------------------------------------- /generate-buildno.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/generate-buildno.js -------------------------------------------------------------------------------- /global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/global.d.ts -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/package.json -------------------------------------------------------------------------------- /schema/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/schema/actions.graphql -------------------------------------------------------------------------------- /schema/attributes.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/schema/attributes.graphql -------------------------------------------------------------------------------- /schema/audit.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/schema/audit.graphql -------------------------------------------------------------------------------- /schema/auth.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/schema/auth.graphql -------------------------------------------------------------------------------- /schema/channels.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/schema/channels.graphql -------------------------------------------------------------------------------- /schema/collections.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/schema/collections.graphql -------------------------------------------------------------------------------- /schema/dashboards.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/schema/dashboards.graphql -------------------------------------------------------------------------------- /schema/import.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/schema/import.graphql -------------------------------------------------------------------------------- /schema/importConfigs.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/schema/importConfigs.graphql -------------------------------------------------------------------------------- /schema/index.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/schema/index.graphql -------------------------------------------------------------------------------- /schema/itemRelations.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/schema/itemRelations.graphql -------------------------------------------------------------------------------- /schema/items.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/schema/items.graphql -------------------------------------------------------------------------------- /schema/languages.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/schema/languages.graphql -------------------------------------------------------------------------------- /schema/lovs.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/schema/lovs.graphql -------------------------------------------------------------------------------- /schema/processes.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/schema/processes.graphql -------------------------------------------------------------------------------- /schema/relations.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/schema/relations.graphql -------------------------------------------------------------------------------- /schema/reload.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/schema/reload.graphql -------------------------------------------------------------------------------- /schema/search.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/schema/search.graphql -------------------------------------------------------------------------------- /schema/templates.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/schema/templates.graphql -------------------------------------------------------------------------------- /schema/types.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/schema/types.graphql -------------------------------------------------------------------------------- /schema/users.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/schema/users.graphql -------------------------------------------------------------------------------- /server.config/channelDialogConfigExample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/server.config/channelDialogConfigExample.json -------------------------------------------------------------------------------- /server.config/openIDConfigExample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/server.config/openIDConfigExample.json -------------------------------------------------------------------------------- /server.config/otherConfigExample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/server.config/otherConfigExample.json -------------------------------------------------------------------------------- /server.config/s3StorageExample.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/server.config/s3StorageExample.config -------------------------------------------------------------------------------- /src/audit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/audit.ts -------------------------------------------------------------------------------- /src/channels/ChannelHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/channels/ChannelHandler.ts -------------------------------------------------------------------------------- /src/channels/ext/ExtChannelHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/channels/ext/ExtChannelHandler.ts -------------------------------------------------------------------------------- /src/channels/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/channels/index.ts -------------------------------------------------------------------------------- /src/channels/ozon/OzonChannelHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/channels/ozon/OzonChannelHandler.ts -------------------------------------------------------------------------------- /src/channels/wb/WBNewChannelHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/channels/wb/WBNewChannelHandler.ts -------------------------------------------------------------------------------- /src/channels/ym/YMChannelHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/channels/ym/YMChannelHandler.ts -------------------------------------------------------------------------------- /src/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/context.ts -------------------------------------------------------------------------------- /src/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/i18n.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/locales/en.json -------------------------------------------------------------------------------- /src/locales/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/locales/ru.json -------------------------------------------------------------------------------- /src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/logger.ts -------------------------------------------------------------------------------- /src/media/FileManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/media/FileManager.ts -------------------------------------------------------------------------------- /src/media/ImportManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/media/ImportManager.ts -------------------------------------------------------------------------------- /src/media/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/media/index.ts -------------------------------------------------------------------------------- /src/metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/metrics.ts -------------------------------------------------------------------------------- /src/models/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/models/actions.ts -------------------------------------------------------------------------------- /src/models/attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/models/attributes.ts -------------------------------------------------------------------------------- /src/models/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/models/base.ts -------------------------------------------------------------------------------- /src/models/channels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/models/channels.ts -------------------------------------------------------------------------------- /src/models/collectionItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/models/collectionItems.ts -------------------------------------------------------------------------------- /src/models/collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/models/collections.ts -------------------------------------------------------------------------------- /src/models/dashboards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/models/dashboards.ts -------------------------------------------------------------------------------- /src/models/import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/models/import.ts -------------------------------------------------------------------------------- /src/models/importConfigs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/models/importConfigs.ts -------------------------------------------------------------------------------- /src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/models/index.ts -------------------------------------------------------------------------------- /src/models/itemRelations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/models/itemRelations.ts -------------------------------------------------------------------------------- /src/models/items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/models/items.ts -------------------------------------------------------------------------------- /src/models/languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/models/languages.ts -------------------------------------------------------------------------------- /src/models/lovs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/models/lovs.ts -------------------------------------------------------------------------------- /src/models/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/models/manager.ts -------------------------------------------------------------------------------- /src/models/processes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/models/processes.ts -------------------------------------------------------------------------------- /src/models/relations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/models/relations.ts -------------------------------------------------------------------------------- /src/models/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/models/search.ts -------------------------------------------------------------------------------- /src/models/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/models/templates.ts -------------------------------------------------------------------------------- /src/models/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/models/types.ts -------------------------------------------------------------------------------- /src/models/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/models/users.ts -------------------------------------------------------------------------------- /src/models/utils/ltreeSupport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/models/utils/ltreeSupport.ts -------------------------------------------------------------------------------- /src/resolvers/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/actions.ts -------------------------------------------------------------------------------- /src/resolvers/attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/attributes.ts -------------------------------------------------------------------------------- /src/resolvers/audit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/audit.ts -------------------------------------------------------------------------------- /src/resolvers/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/auth.ts -------------------------------------------------------------------------------- /src/resolvers/channels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/channels.ts -------------------------------------------------------------------------------- /src/resolvers/collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/collections.ts -------------------------------------------------------------------------------- /src/resolvers/dashboards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/dashboards.ts -------------------------------------------------------------------------------- /src/resolvers/import/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/import/actions.ts -------------------------------------------------------------------------------- /src/resolvers/import/attrGroups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/import/attrGroups.ts -------------------------------------------------------------------------------- /src/resolvers/import/attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/import/attributes.ts -------------------------------------------------------------------------------- /src/resolvers/import/channels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/import/channels.ts -------------------------------------------------------------------------------- /src/resolvers/import/collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/import/collections.ts -------------------------------------------------------------------------------- /src/resolvers/import/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/import/index.ts -------------------------------------------------------------------------------- /src/resolvers/import/itemRelations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/import/itemRelations.ts -------------------------------------------------------------------------------- /src/resolvers/import/items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/import/items.ts -------------------------------------------------------------------------------- /src/resolvers/import/lovs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/import/lovs.ts -------------------------------------------------------------------------------- /src/resolvers/import/relations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/import/relations.ts -------------------------------------------------------------------------------- /src/resolvers/import/roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/import/roles.ts -------------------------------------------------------------------------------- /src/resolvers/import/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/import/types.ts -------------------------------------------------------------------------------- /src/resolvers/import/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/import/users.ts -------------------------------------------------------------------------------- /src/resolvers/importConfigs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/importConfigs.ts -------------------------------------------------------------------------------- /src/resolvers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/index.ts -------------------------------------------------------------------------------- /src/resolvers/itemRelations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/itemRelations.ts -------------------------------------------------------------------------------- /src/resolvers/items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/items.ts -------------------------------------------------------------------------------- /src/resolvers/languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/languages.ts -------------------------------------------------------------------------------- /src/resolvers/lovs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/lovs.ts -------------------------------------------------------------------------------- /src/resolvers/processes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/processes.ts -------------------------------------------------------------------------------- /src/resolvers/relations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/relations.ts -------------------------------------------------------------------------------- /src/resolvers/reload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/reload.ts -------------------------------------------------------------------------------- /src/resolvers/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/search.ts -------------------------------------------------------------------------------- /src/resolvers/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/templates.ts -------------------------------------------------------------------------------- /src/resolvers/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/types.ts -------------------------------------------------------------------------------- /src/resolvers/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/users.ts -------------------------------------------------------------------------------- /src/resolvers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/utils.ts -------------------------------------------------------------------------------- /src/resolvers/utils/cleaningDatabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/utils/cleaningDatabase.ts -------------------------------------------------------------------------------- /src/resolvers/utils/languageDependentString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/resolvers/utils/languageDependentString.ts -------------------------------------------------------------------------------- /src/storage/FilesystemStorageManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/storage/FilesystemStorageManager.ts -------------------------------------------------------------------------------- /src/storage/S3StorageManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/storage/S3StorageManager.ts -------------------------------------------------------------------------------- /src/storage/StorageFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/storage/StorageFactory.ts -------------------------------------------------------------------------------- /src/storage/StorageManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/storage/StorageManager.ts -------------------------------------------------------------------------------- /src/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/templates.ts -------------------------------------------------------------------------------- /src/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/src/version.ts -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpim/server/HEAD/tsconfig.json --------------------------------------------------------------------------------