@ariary/notification 2.0.4 → 2.0.5

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.mts CHANGED
@@ -13,6 +13,7 @@ declare class Task {
13
13
  notifTaskId: string;
14
14
  constructor(id: string, notifTaskId: string);
15
15
  status(): Promise<unknown>;
16
+ smsDetails(): Promise<unknown>;
16
17
  detailedStatus(): Promise<unknown>;
17
18
  }
18
19
  declare class Notification {
package/dist/index.d.ts CHANGED
@@ -13,6 +13,7 @@ declare class Task {
13
13
  notifTaskId: string;
14
14
  constructor(id: string, notifTaskId: string);
15
15
  status(): Promise<unknown>;
16
+ smsDetails(): Promise<unknown>;
16
17
  detailedStatus(): Promise<unknown>;
17
18
  }
18
19
  declare class Notification {
package/dist/index.js CHANGED
@@ -95,6 +95,9 @@ var Task = class {
95
95
  async status() {
96
96
  return httpGet(`/api/notif-task/${this.notifTaskId}/sms-details`);
97
97
  }
98
+ async smsDetails() {
99
+ return httpGet(`/api/notif-task/${this.notifTaskId}/sms-details`);
100
+ }
98
101
  async detailedStatus() {
99
102
  return httpGet(`/api/notif-task/${this.notifTaskId}/sms-details`);
100
103
  }
package/dist/index.mjs CHANGED
@@ -67,6 +67,9 @@ var Task = class {
67
67
  async status() {
68
68
  return httpGet(`/api/notif-task/${this.notifTaskId}/sms-details`);
69
69
  }
70
+ async smsDetails() {
71
+ return httpGet(`/api/notif-task/${this.notifTaskId}/sms-details`);
72
+ }
70
73
  async detailedStatus() {
71
74
  return httpGet(`/api/notif-task/${this.notifTaskId}/sms-details`);
72
75
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ariary/notification",
3
- "version": "2.0.4",
3
+ "version": "2.0.5",
4
4
  "description": "SMS et Notification Task SDK pour l'API Ariary",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",