my-q-format-response-aws-lambda 1.0.54 → 1.0.56
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/index.js +6 -0
- package/index.ts +8 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -333,9 +333,15 @@ const messagesREST = (prefix, suffix = '') => {
|
|
|
333
333
|
GET_MANY: `${prefix}_GET_MANY${suffix}`,
|
|
334
334
|
NOT_GET_MANY: `${prefix}_NOT_GET_MANY${suffix}`,
|
|
335
335
|
ERROR_GET_MANY: `${prefix}_ERROR_GET_MANY${suffix}`,
|
|
336
|
+
GET_LIST: `${prefix}_GET_LIST${suffix}`,
|
|
337
|
+
NOT_GET_LIST: `${prefix}_NOT_GET_LIST${suffix}`,
|
|
338
|
+
ERROR_GET_LIST: `${prefix}_ERROR_GET_LIST${suffix}`,
|
|
336
339
|
GET_MANY_AND_COUNT: `${prefix}_GET_MANY_AND_COUNT${suffix}`,
|
|
337
340
|
NOT_GET_MANY_AND_COUNT: `${prefix}_NOT_GET_MANY_AND_COUNT${suffix}`,
|
|
338
341
|
ERROR_GET_MANY_AND_COUNT: `${prefix}_ERROR_GET_MANY_AND_COUNT${suffix}`,
|
|
342
|
+
GET_LIST_AND_COUNT: `${prefix}_GET_LIST_AND_COUNT${suffix}`,
|
|
343
|
+
NOT_GET_LIST_AND_COUNT: `${prefix}_NOT_GET_LIST_AND_COUNT${suffix}`,
|
|
344
|
+
ERROR_GET_LIST_AND_COUNT: `${prefix}_ERROR_GET_LIST_AND_COUNT${suffix}`,
|
|
339
345
|
GET_COUNT: `${prefix}_GET_COUNT${suffix}`,
|
|
340
346
|
NOT_GET_COUNT: `${prefix}_NOT_GET_COUNT${suffix}`,
|
|
341
347
|
ERROR_GET_COUNT: `${prefix}_ERROR_GET_COUNT${suffix}`,
|
package/index.ts
CHANGED
|
@@ -461,10 +461,18 @@ export const messagesREST = (prefix: string, suffix: string = ''): Record<string
|
|
|
461
461
|
NOT_GET_MANY: `${prefix}_NOT_GET_MANY${suffix}`,
|
|
462
462
|
ERROR_GET_MANY: `${prefix}_ERROR_GET_MANY${suffix}`,
|
|
463
463
|
|
|
464
|
+
GET_LIST: `${prefix}_GET_LIST${suffix}`,
|
|
465
|
+
NOT_GET_LIST: `${prefix}_NOT_GET_LIST${suffix}`,
|
|
466
|
+
ERROR_GET_LIST: `${prefix}_ERROR_GET_LIST${suffix}`,
|
|
467
|
+
|
|
464
468
|
GET_MANY_AND_COUNT: `${prefix}_GET_MANY_AND_COUNT${suffix}`,
|
|
465
469
|
NOT_GET_MANY_AND_COUNT: `${prefix}_NOT_GET_MANY_AND_COUNT${suffix}`,
|
|
466
470
|
ERROR_GET_MANY_AND_COUNT: `${prefix}_ERROR_GET_MANY_AND_COUNT${suffix}`,
|
|
467
471
|
|
|
472
|
+
GET_LIST_AND_COUNT: `${prefix}_GET_LIST_AND_COUNT${suffix}`,
|
|
473
|
+
NOT_GET_LIST_AND_COUNT: `${prefix}_NOT_GET_LIST_AND_COUNT${suffix}`,
|
|
474
|
+
ERROR_GET_LIST_AND_COUNT: `${prefix}_ERROR_GET_LIST_AND_COUNT${suffix}`,
|
|
475
|
+
|
|
468
476
|
GET_COUNT: `${prefix}_GET_COUNT${suffix}`,
|
|
469
477
|
NOT_GET_COUNT: `${prefix}_NOT_GET_COUNT${suffix}`,
|
|
470
478
|
ERROR_GET_COUNT: `${prefix}_ERROR_GET_COUNT${suffix}`,
|
package/package.json
CHANGED