triangle-utils 1.4.22 → 1.4.23
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.
|
@@ -195,7 +195,7 @@ export class UtilsDynamoDB {
|
|
|
195
195
|
const defined_attribute_names = options.defined_attribute_names !== undefined ? options.defined_attribute_names : [];
|
|
196
196
|
const reverse = options.reverse !== undefined ? options.reverse : false;
|
|
197
197
|
const compile = options.compile !== undefined ? options.compile : true;
|
|
198
|
-
const project = options.project !== undefined ? options.project :
|
|
198
|
+
const project = options.project !== undefined ? options.project : false;
|
|
199
199
|
const attribute_names = options.attribute_names !== undefined ? options.attribute_names : [];
|
|
200
200
|
const table_key_names = await this.get_table_key_names(table_name);
|
|
201
201
|
if (table_key_names === undefined || Object.keys(primary_key).length !== 1) {
|
|
@@ -243,7 +243,7 @@ export class UtilsDynamoDB {
|
|
|
243
243
|
const index_name = table_index_name.split(":")[1];
|
|
244
244
|
const reverse = options.reverse !== undefined ? options.reverse : false;
|
|
245
245
|
const compile = options.compile !== undefined ? options.compile : true;
|
|
246
|
-
const project = options.project !== undefined ? options.project :
|
|
246
|
+
const project = options.project !== undefined ? options.project : false;
|
|
247
247
|
const filters = options.filters !== undefined ? options.filters : {};
|
|
248
248
|
const undefined_attribute_names = options.undefined_attribute_names !== undefined ? options.undefined_attribute_names : [];
|
|
249
249
|
const defined_attribute_names = options.defined_attribute_names !== undefined ? options.defined_attribute_names : [];
|
|
@@ -296,7 +296,7 @@ export class UtilsDynamoDB {
|
|
|
296
296
|
const index_name = table_index_name.split(":")[1];
|
|
297
297
|
const reverse = options.reverse !== undefined ? options.reverse : false;
|
|
298
298
|
const compile = options.compile !== undefined ? options.compile : true;
|
|
299
|
-
const project = options.project !== undefined ? options.project :
|
|
299
|
+
const project = options.project !== undefined ? options.project : false;
|
|
300
300
|
const filters = options.filters !== undefined ? options.filters : {};
|
|
301
301
|
const undefined_attribute_names = options.undefined_attribute_names !== undefined ? options.undefined_attribute_names : [];
|
|
302
302
|
const defined_attribute_names = options.defined_attribute_names !== undefined ? options.defined_attribute_names : [];
|
package/package.json
CHANGED
package/src/UtilsDynamoDB.ts
CHANGED
|
@@ -237,7 +237,7 @@ export class UtilsDynamoDB {
|
|
|
237
237
|
const defined_attribute_names : string[] = options.defined_attribute_names !== undefined ? options.defined_attribute_names : []
|
|
238
238
|
const reverse = options.reverse !== undefined ? options.reverse : false
|
|
239
239
|
const compile = options.compile !== undefined ? options.compile : true
|
|
240
|
-
const project = options.project !== undefined ? options.project :
|
|
240
|
+
const project = options.project !== undefined ? options.project : false
|
|
241
241
|
const attribute_names : string[] = options.attribute_names !== undefined ? options.attribute_names : []
|
|
242
242
|
|
|
243
243
|
const table_key_names = await this.get_table_key_names(table_name)
|
|
@@ -303,7 +303,7 @@ export class UtilsDynamoDB {
|
|
|
303
303
|
const index_name : string | undefined = table_index_name.split(":")[1]
|
|
304
304
|
const reverse = options.reverse !== undefined ? options.reverse : false
|
|
305
305
|
const compile = options.compile !== undefined ? options.compile : true
|
|
306
|
-
const project = options.project !== undefined ? options.project :
|
|
306
|
+
const project = options.project !== undefined ? options.project : false
|
|
307
307
|
const filters = options.filters !== undefined ? options.filters : {}
|
|
308
308
|
const undefined_attribute_names : string[] = options.undefined_attribute_names !== undefined ? options.undefined_attribute_names : []
|
|
309
309
|
const defined_attribute_names : string[] = options.defined_attribute_names !== undefined ? options.defined_attribute_names : []
|
|
@@ -374,7 +374,7 @@ export class UtilsDynamoDB {
|
|
|
374
374
|
const index_name : string | undefined = table_index_name.split(":")[1]
|
|
375
375
|
const reverse = options.reverse !== undefined ? options.reverse : false
|
|
376
376
|
const compile = options.compile !== undefined ? options.compile : true
|
|
377
|
-
const project = options.project !== undefined ? options.project :
|
|
377
|
+
const project = options.project !== undefined ? options.project : false
|
|
378
378
|
const filters = options.filters !== undefined ? options.filters : {}
|
|
379
379
|
const undefined_attribute_names : string[] = options.undefined_attribute_names !== undefined ? options.undefined_attribute_names : []
|
|
380
380
|
const defined_attribute_names : string[] = options.defined_attribute_names !== undefined ? options.defined_attribute_names : []
|