@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 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()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@amohamud23/notihub",
3
- "version": "1.1.50",
3
+ "version": "1.1.51",
4
4
  "description": "Notihub Package",
5
5
  "main": "./dist/index.cjs",
6
6
  "types": "./dist/index.d.cts",