@techextensor/tab-core-utility 2.2.195 → 2.2.197

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.
Files changed (47) hide show
  1. package/README.md +7 -0
  2. package/esm2022/lib/tab-core-utility/app/constants/api-constants.mjs +4 -4
  3. package/esm2022/lib/tab-core-utility/app/crud/tab-blueprint.service.mjs +7 -7
  4. package/esm2022/lib/tab-core-utility/app/crud/tab-crud.service.mjs +47 -40
  5. package/esm2022/lib/tab-core-utility/app/crud/tab-delete.service.mjs +7 -7
  6. package/esm2022/lib/tab-core-utility/app/crud/tab-formio.service.mjs +7 -7
  7. package/esm2022/lib/tab-core-utility/app/crud/tab-get.service.mjs +7 -7
  8. package/esm2022/lib/tab-core-utility/app/crud/tab-insert.service.mjs +7 -7
  9. package/esm2022/lib/tab-core-utility/app/crud/tab-release.service.mjs +7 -7
  10. package/esm2022/lib/tab-core-utility/app/crud/tab-update.service.mjs +7 -7
  11. package/esm2022/lib/tab-core-utility/app/crud/tab-workflow.service.mjs +7 -7
  12. package/esm2022/lib/tab-core-utility/app/helpers/auth-response.adapter.mjs +31 -6
  13. package/esm2022/lib/tab-core-utility/app/helpers/common/app.helpers.mjs +8 -8
  14. package/esm2022/lib/tab-core-utility/app/helpers/common/dsq.helpers.mjs +7 -7
  15. package/esm2022/lib/tab-core-utility/app/helpers/common/meta-data.helpers.mjs +7 -7
  16. package/esm2022/lib/tab-core-utility/app/helpers/common/req-res.helpers.mjs +7 -7
  17. package/esm2022/lib/tab-core-utility/app/helpers/common/template.helpers.mjs +7 -7
  18. package/esm2022/lib/tab-core-utility/app/helpers/common/user-personalization.helper.mjs +7 -7
  19. package/esm2022/lib/tab-core-utility/app/helpers/common/where-clause.helpers.mjs +7 -7
  20. package/esm2022/lib/tab-core-utility/app/helpers/login-response.adapter.mjs +31 -6
  21. package/esm2022/lib/tab-core-utility/app/helpers/screen/forms.helpers.mjs +7 -7
  22. package/esm2022/lib/tab-core-utility/app/helpers/screen/grid-column-data.helpers.mjs +7 -7
  23. package/esm2022/lib/tab-core-utility/app/helpers/screen/grid.helpers.mjs +7 -7
  24. package/esm2022/lib/tab-core-utility/app/helpers/screen/media-upload.helpers.mjs +7 -7
  25. package/esm2022/lib/tab-core-utility/app/helpers/screen/plugin.helpers.mjs +7 -7
  26. package/esm2022/lib/tab-core-utility/app/helpers/screen/screen.helpers.mjs +7 -7
  27. package/esm2022/lib/tab-core-utility/app/interfaces/auth.interface.mjs +1 -1
  28. package/esm2022/lib/tab-core-utility/app/models/app-screen.model.mjs +4 -4
  29. package/esm2022/lib/tab-core-utility/auth/auth.service.mjs +8 -9
  30. package/esm2022/lib/tab-core-utility/auth/idb-storage.service.mjs +7 -7
  31. package/esm2022/lib/tab-core-utility/auth/local-storage.service.mjs +7 -7
  32. package/esm2022/lib/tab-core-utility/auth/session-storage.service.mjs +7 -7
  33. package/esm2022/lib/tab-core-utility/core/http-client/api.service.mjs +7 -7
  34. package/esm2022/lib/tab-core-utility/core/pipe/translate.pipe.mjs +11 -11
  35. package/esm2022/lib/tab-core-utility/core/service/confirmation.service.mjs +9 -9
  36. package/esm2022/lib/tab-core-utility/core/service/encryption.service.mjs +7 -7
  37. package/esm2022/lib/tab-core-utility/core/service/notification.service.mjs +9 -9
  38. package/esm2022/lib/tab-core-utility/core/service/signalr/operation-tracker.service.mjs +7 -7
  39. package/esm2022/lib/tab-core-utility/core/service/signalr/signalr-infrastructure.service.mjs +9 -9
  40. package/esm2022/lib/tab-core-utility/core/service/signalr/signalr.service.mjs +9 -9
  41. package/esm2022/lib/tab-core-utility/core/service/translation.service.mjs +9 -9
  42. package/lib/tab-core-utility/app/constants/api-constants.d.ts +2 -2
  43. package/lib/tab-core-utility/app/crud/tab-crud.service.d.ts +6 -1
  44. package/lib/tab-core-utility/app/helpers/auth-response.adapter.d.ts +2 -0
  45. package/lib/tab-core-utility/app/helpers/login-response.adapter.d.ts +2 -0
  46. package/lib/tab-core-utility/app/interfaces/auth.interface.d.ts +1 -2
  47. package/package.json +1 -3
@@ -20,6 +20,8 @@ export declare class LoginResponseAdapter {
20
20
  * @returns The response with Result transformed to legacy nested format
21
21
  */
22
22
  static normalize(response: CommonApiResponse): CommonApiResponse;
23
+ private static transformPersonData;
24
+ private static transformAttributes;
23
25
  /**
24
26
  * Transforms roles from new camelCase format to old PascalCase format.
25
27
  * Structure: { tenantId: { appId: { envId: [{ id, roleName, description }] } } }
@@ -25,8 +25,7 @@ export interface RegisterTenant {
25
25
  terms: boolean;
26
26
  }
27
27
  export interface RefreshTokenRequest {
28
- Token: string;
29
- RefreshToken: string;
28
+ refreshToken: string;
30
29
  }
31
30
  export interface UserDetailsRequest {
32
31
  Username?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@techextensor/tab-core-utility",
3
- "version": "2.2.195",
3
+ "version": "2.2.197",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.2.15",
6
6
  "@angular/core": "^19.2.15",
@@ -29,8 +29,6 @@
29
29
  },
30
30
  ".": {
31
31
  "types": "./index.d.ts",
32
- "esm2022": "./esm2022/techextensor-tab-core-utility.mjs",
33
- "esm": "./esm2022/techextensor-tab-core-utility.mjs",
34
32
  "default": "./esm2022/techextensor-tab-core-utility.mjs"
35
33
  }
36
34
  }