@kravc/dos-dynamodb 1.0.0-alpha.1 → 1.0.0-alpha.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bin/table.js CHANGED
@@ -76,7 +76,7 @@ const run = async callback => {
76
76
  return callback();
77
77
  }
78
78
 
79
- const command = exec('docker compose -f node_modules/@kravc/dos-dynamodb/docker-compose.yaml up -d', callback);
79
+ const command = exec('docker compose --project-name dos -f node_modules/@kravc/dos-dynamodb/docker-compose.yaml up -d', callback);
80
80
  command.stdout.on('data', data => console.log(data));
81
81
  command.stderr.on('data', data => console.error(data));
82
82
  };
@@ -0,0 +1,13 @@
1
+ import type { DefaultAttributes as CommonAttributes } from '@kravc/dos';
2
+ export interface DefaultAttributes extends CommonAttributes {
3
+ _lsi1SortKey?: string;
4
+ _lsi2SortKey?: string;
5
+ _lsi3SortKey?: string;
6
+ _gsi1PartitionKey?: string;
7
+ _gsi1SortKey?: string;
8
+ _gsi2PartitionKey?: string;
9
+ _gsi2SortKey?: string;
10
+ _gsi3PartitionKey?: string;
11
+ _gsi3SortKey?: string;
12
+ }
13
+ //# sourceMappingURL=DefaultAttributes.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DefaultAttributes.d.ts","sourceRoot":"","sources":["../../../src/Document/DefaultAttributes.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,IAAI,gBAAgB,EAAE,MAAM,YAAY,CAAC;AAExE,MAAM,WAAW,iBAAkB,SAAQ,gBAAgB;IACzD,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB"}
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=DefaultAttributes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DefaultAttributes.js","sourceRoot":"","sources":["../../../src/Document/DefaultAttributes.ts"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kravc/dos-dynamodb",
3
- "version": "1.0.0-alpha.1",
3
+ "version": "1.0.0-alpha.3",
4
4
  "description": "CRUD interface for DynamoDB table to be used with @kravc/dos service.",
5
5
  "main": "dist/src/index.js",
6
6
  "types": "dist/src/index.d.ts",