@amohamud23/notihub 1.1.36 → 1.1.37
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.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -207,6 +207,9 @@ type INotiHubPaymentSession = {
|
|
|
207
207
|
id: string;
|
|
208
208
|
session: string;
|
|
209
209
|
customerId: string;
|
|
210
|
+
status: "PENDING" | "COMPLETED" | "FAILED";
|
|
211
|
+
createdAt: string;
|
|
212
|
+
updatedAt: string;
|
|
210
213
|
};
|
|
211
214
|
type NotiHubTypes = {
|
|
212
215
|
INotiHubUserView: INotiHubUserView;
|
package/dist/index.d.ts
CHANGED
|
@@ -207,6 +207,9 @@ type INotiHubPaymentSession = {
|
|
|
207
207
|
id: string;
|
|
208
208
|
session: string;
|
|
209
209
|
customerId: string;
|
|
210
|
+
status: "PENDING" | "COMPLETED" | "FAILED";
|
|
211
|
+
createdAt: string;
|
|
212
|
+
updatedAt: string;
|
|
210
213
|
};
|
|
211
214
|
type NotiHubTypes = {
|
|
212
215
|
INotiHubUserView: INotiHubUserView;
|