@qrvey/data-persistence 0.5.18-796 → 0.5.19-831-beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -183,7 +183,8 @@ declare function buildSort(column: string, direction?: string): ISorting;
183
183
  declare const DEFAULT_DB_POOL_CONFIG: PoolConfig;
184
184
  declare function getDbPool(poolConfig?: PoolConfig): Pool | undefined;
185
185
 
186
+ declare function shutdown(signal: string): Promise<void>;
186
187
  declare function closeAllPools(): Promise<void>;
187
188
  declare function closeAllClients(): Promise<void>;
188
189
 
189
- export { type AggregateFunction, CrudSchema, CrudService, DEFAULT_DB_POOL_CONFIG, type FilterInput, type ICompositeFilter, type ICrudService, type IFilter, type IFindOptions, type IFindPagination, type IFindResult, type ISorting, type SortDirection, buildFilter, buildQueryIndex, buildSort, closeAllClients, closeAllPools, getDbPool };
190
+ export { type AggregateFunction, CrudSchema, CrudService, DEFAULT_DB_POOL_CONFIG, type FilterInput, type ICompositeFilter, type ICrudService, type IFilter, type IFindOptions, type IFindPagination, type IFindResult, type ISorting, type SortDirection, buildFilter, buildQueryIndex, buildSort, closeAllClients, closeAllPools, getDbPool, shutdown };
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@qrvey/data-persistence",
3
3
  "types": "dist/types/index.d.ts",
4
4
  "main": "dist/cjs/index.js",
5
- "version": "0.5.18-796",
5
+ "version": "0.5.19-831-beta",
6
6
  "license": "MIT",
7
7
  "exports": {
8
8
  ".": {
@@ -27,7 +27,7 @@
27
27
  "login-code-artifact": "aws codeartifact --profile manualqa login --tool npm --domain qrvey-npm --repository qrvey-npm",
28
28
  "publish-codeartifact": "npm publish --prefix dist --registry=https://qrvey-npm-459649773688.d.codeartifact.us-east-1.amazonaws.com/npm/qrvey-npm/",
29
29
  "publish-package-dev": "yarn prepare-publish && yarn publish-codeartifact",
30
- "publish-package": "yarn prepare-publish && npm publish --tag latest"
30
+ "publish-package": "yarn prepare-publish && npm publish --tag beta"
31
31
  },
32
32
  "dependencies": {
33
33
  "@aws-sdk/client-dynamodb": "3.986.0",