@yusr_systems/core 6.0.12 → 6.0.13

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.ts CHANGED
@@ -140,10 +140,17 @@ export declare class LoginRequest {
140
140
  constructor(init?: Partial<LoginRequest>);
141
141
  }
142
142
 
143
- export declare interface NumberToWordsOptions {
144
- currency?: string;
145
- fraction?: string;
146
- feminine?: boolean;
143
+ export declare class NumbertoWordsService {
144
+ private static masculineUnits;
145
+ private static feminineUnits;
146
+ private static tens;
147
+ private static teens;
148
+ private static feminineTeens;
149
+ private static hundreds;
150
+ static ConvertAmount(amount: number, currency: Currency): string;
151
+ static Convert(num: number, isFeminine?: boolean): string;
152
+ private static convertHundreds;
153
+ private static getCurrencyWord;
147
154
  }
148
155
 
149
156
  export declare type PermissionSelector<S> = (state: S, resource: string) => ResourcePermissions;
@@ -201,19 +208,6 @@ export declare class SystemPermissions {
201
208
  hasAuth(action: string): boolean;
202
209
  }
203
210
 
204
- export declare class TafqeetService {
205
- private static masculineUnits;
206
- private static feminineUnits;
207
- private static tens;
208
- private static teens;
209
- private static feminineTeens;
210
- private static hundreds;
211
- static ConvertAmount(amount: number, currency: Currency): string;
212
- static Convert(num: number, isFeminine?: boolean): string;
213
- private static convertHundreds;
214
- private static getCurrencyWord;
215
- }
216
-
217
211
  export declare class User extends BaseEntity {
218
212
  username: string;
219
213
  password: string;
package/dist/yusr-core.js CHANGED
@@ -430,4 +430,4 @@ var n = class e {
430
430
  }
431
431
  };
432
432
  //#endregion
433
- export { S as ApiConstants, n as AuthConstants, T as BaseApiService, o as BaseEntity, w as BaseFilterableApiService, g as Branch, _ as BranchFilterColumns, E as BranchesApiService, D as CitiesApiService, s as City, c as CityFilterColumns, O as CountriesApiService, l as Country, u as CountryFilterColumns, k as CurrenciesApiService, d as Currency, f as FilterCondition, p as LoginRequest, v as Role, y as RoleFilterColumns, A as RolesApiService, m as StorageFile, h as StorageFileStatus, a as SystemPermissions, M as TafqeetService, b as User, x as UserFilterColumns, j as UsersApiService, N as Validators, C as YusrApiHelper, i as createAuthSlice };
433
+ export { S as ApiConstants, n as AuthConstants, T as BaseApiService, o as BaseEntity, w as BaseFilterableApiService, g as Branch, _ as BranchFilterColumns, E as BranchesApiService, D as CitiesApiService, s as City, c as CityFilterColumns, O as CountriesApiService, l as Country, u as CountryFilterColumns, k as CurrenciesApiService, d as Currency, f as FilterCondition, p as LoginRequest, M as NumbertoWordsService, v as Role, y as RoleFilterColumns, A as RolesApiService, m as StorageFile, h as StorageFileStatus, a as SystemPermissions, b as User, x as UserFilterColumns, j as UsersApiService, N as Validators, C as YusrApiHelper, i as createAuthSlice };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yusr_systems/core",
3
- "version": "6.0.12",
3
+ "version": "6.0.13",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "publishConfig": {