@ariary/ariary 1.0.4 → 1.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/README.md +3 -0
- package/dist/index.js +7 -0
- package/dist/index.mjs +7 -0
- package/dist/sms/index.d.mts +1 -0
- package/dist/sms/index.d.ts +1 -0
- package/dist/sms/index.js +7 -0
- package/dist/sms/index.mjs +7 -0
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED
package/dist/sms/index.d.mts
CHANGED
|
@@ -56,6 +56,7 @@ declare class SmsService {
|
|
|
56
56
|
message: string;
|
|
57
57
|
numbers: string | string[];
|
|
58
58
|
}[]): Promise<BulkSmsResponseDto>;
|
|
59
|
+
getAll(): Promise<ResponseSmsDto[]>;
|
|
59
60
|
}
|
|
60
61
|
|
|
61
62
|
export { type BulkSmsDto, type BulkSmsResponseDto, type CreateSmsDto, type MultiSmsResponseDto, type ResponseSmsDto, type SendSmsDto, type SendSmsResponseDto, SmsService };
|
package/dist/sms/index.d.ts
CHANGED
|
@@ -56,6 +56,7 @@ declare class SmsService {
|
|
|
56
56
|
message: string;
|
|
57
57
|
numbers: string | string[];
|
|
58
58
|
}[]): Promise<BulkSmsResponseDto>;
|
|
59
|
+
getAll(): Promise<ResponseSmsDto[]>;
|
|
59
60
|
}
|
|
60
61
|
|
|
61
62
|
export { type BulkSmsDto, type BulkSmsResponseDto, type CreateSmsDto, type MultiSmsResponseDto, type ResponseSmsDto, type SendSmsDto, type SendSmsResponseDto, SmsService };
|
package/dist/sms/index.js
CHANGED
|
@@ -50,6 +50,13 @@ var SmsService = class {
|
|
|
50
50
|
);
|
|
51
51
|
return response;
|
|
52
52
|
}
|
|
53
|
+
async getAll() {
|
|
54
|
+
const response = await this.client.get(
|
|
55
|
+
"/api/sms",
|
|
56
|
+
true
|
|
57
|
+
);
|
|
58
|
+
return response;
|
|
59
|
+
}
|
|
53
60
|
};
|
|
54
61
|
// Annotate the CommonJS export names for ESM import in node:
|
|
55
62
|
0 && (module.exports = {
|
package/dist/sms/index.mjs
CHANGED