@peacom/model 2.0.353 → 2.0.354

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@peacom/model",
3
- "version": "2.0.353",
3
+ "version": "2.0.354",
4
4
  "type": "commonjs",
5
5
  "dependencies": {
6
6
  "google-libphonenumber": "^3.2.41",
@@ -1,9 +1,9 @@
1
1
  export type SmsCharset = "GSM 03.38" | "Unicode";
2
- export interface SmsSplitResult {
2
+ export interface SmsPartsInfo {
3
3
  smsCount: number;
4
4
  charsLeft: number;
5
5
  charSet: SmsCharset;
6
6
  parts: string[];
7
7
  totalChars: number;
8
8
  }
9
- export declare function getSmsPartsInfo(content?: string): SmsSplitResult;
9
+ export declare function getSmsPartsInfo(content?: string): SmsPartsInfo;