@amohamud23/notihub 1.1.50 → 1.1.51
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 +4 -0
- package/dist/index.js +4 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1961,6 +1961,10 @@ var PaymentSession = class _PaymentSession {
|
|
|
1961
1961
|
TableName: _PaymentSession.TABLE_NAME,
|
|
1962
1962
|
Key: { sessionId },
|
|
1963
1963
|
UpdateExpression: "set #status = :status, #updatedAt = :updatedAt",
|
|
1964
|
+
ExpressionAttributeNames: {
|
|
1965
|
+
"#status": "status",
|
|
1966
|
+
"#updatedAt": "updatedAt"
|
|
1967
|
+
},
|
|
1964
1968
|
ExpressionAttributeValues: {
|
|
1965
1969
|
":status": intent,
|
|
1966
1970
|
":updatedAt": (/* @__PURE__ */ new Date()).toISOString()
|
package/dist/index.js
CHANGED
|
@@ -1995,6 +1995,10 @@ var PaymentSession = class _PaymentSession {
|
|
|
1995
1995
|
TableName: _PaymentSession.TABLE_NAME,
|
|
1996
1996
|
Key: { sessionId },
|
|
1997
1997
|
UpdateExpression: "set #status = :status, #updatedAt = :updatedAt",
|
|
1998
|
+
ExpressionAttributeNames: {
|
|
1999
|
+
"#status": "status",
|
|
2000
|
+
"#updatedAt": "updatedAt"
|
|
2001
|
+
},
|
|
1998
2002
|
ExpressionAttributeValues: {
|
|
1999
2003
|
":status": intent,
|
|
2000
2004
|
":updatedAt": (/* @__PURE__ */ new Date()).toISOString()
|