@vulog/aima-user 1.2.12 → 1.2.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.mts CHANGED
@@ -89,6 +89,8 @@ type User = {
89
89
  profilingConsent: boolean;
90
90
  profilingConsentUpdateDate: string;
91
91
  membershipNumber: string;
92
+ updateDate: string;
93
+ dateOfAgreements: string;
92
94
  };
93
95
  type UserStatus = Exclude<User, 'agreements' | 'profiles'> & {
94
96
  profiles: ProfileServiceRegistration[];
package/dist/index.d.ts CHANGED
@@ -89,6 +89,8 @@ type User = {
89
89
  profilingConsent: boolean;
90
90
  profilingConsentUpdateDate: string;
91
91
  membershipNumber: string;
92
+ updateDate: string;
93
+ dateOfAgreements: string;
92
94
  };
93
95
  type UserStatus = Exclude<User, 'agreements' | 'profiles'> & {
94
96
  profiles: ProfileServiceRegistration[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vulog/aima-user",
3
- "version": "1.2.12",
3
+ "version": "1.2.13",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
@@ -19,9 +19,9 @@
19
19
  "author": "Vulog",
20
20
  "license": "MIT",
21
21
  "dependencies": {
22
- "@vulog/aima-client": "1.2.12",
23
- "@vulog/aima-config": "1.2.12",
24
- "@vulog/aima-core": "1.2.12"
22
+ "@vulog/aima-client": "1.2.13",
23
+ "@vulog/aima-config": "1.2.13",
24
+ "@vulog/aima-core": "1.2.13"
25
25
  },
26
26
  "peerDependencies": {
27
27
  "zod": "^3.25.76"
package/src/types.ts CHANGED
@@ -101,6 +101,8 @@ export type User = {
101
101
  profilingConsent: boolean;
102
102
  profilingConsentUpdateDate: string;
103
103
  membershipNumber: string;
104
+ updateDate: string;
105
+ dateOfAgreements: string;
104
106
  };
105
107
 
106
108
  export type UserStatus = Exclude<User, 'agreements' | 'profiles'> & {