my-q-format-response-aws-lambda 1.0.54 → 1.0.55
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 +3 -0
- package/index.ts +4 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -333,6 +333,9 @@ 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}`,
|
package/index.ts
CHANGED
|
@@ -461,6 +461,10 @@ 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}`,
|
package/package.json
CHANGED