@amohamud23/notihub 1.1.16 → 1.1.17
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/dist/index.cjs +1 -3
- package/dist/index.js +1 -3
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1206,9 +1206,7 @@ var SubscriptionType = class _SubscriptionType {
|
|
|
1206
1206
|
static async createSubscriptionType(subscriptionType) {
|
|
1207
1207
|
const command = new import_lib_dynamodb10.PutCommand({
|
|
1208
1208
|
TableName: _SubscriptionType.TABLE_NAME,
|
|
1209
|
-
Item:
|
|
1210
|
-
subscriptionType
|
|
1211
|
-
}
|
|
1209
|
+
Item: subscriptionType
|
|
1212
1210
|
});
|
|
1213
1211
|
try {
|
|
1214
1212
|
await ddbDocClient.send(command);
|
package/dist/index.js
CHANGED
|
@@ -1212,9 +1212,7 @@ var SubscriptionType = class _SubscriptionType {
|
|
|
1212
1212
|
static async createSubscriptionType(subscriptionType) {
|
|
1213
1213
|
const command = new PutCommand9({
|
|
1214
1214
|
TableName: _SubscriptionType.TABLE_NAME,
|
|
1215
|
-
Item:
|
|
1216
|
-
subscriptionType
|
|
1217
|
-
}
|
|
1215
|
+
Item: subscriptionType
|
|
1218
1216
|
});
|
|
1219
1217
|
try {
|
|
1220
1218
|
await ddbDocClient.send(command);
|