@juhuu/sdk-ts 1.2.270 → 1.2.271

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
@@ -2304,6 +2304,11 @@ declare namespace JUHUU {
2304
2304
  };
2305
2305
  group: UserGroup;
2306
2306
  createdByPropertyId: string | null;
2307
+ identity: {
2308
+ status: "unverified" | "pending" | "verified";
2309
+ verifiedAt: Date | null;
2310
+ expiresAt: Date | null;
2311
+ };
2307
2312
  };
2308
2313
  export interface Standard extends Base {
2309
2314
  type: "standard";
package/dist/index.d.ts CHANGED
@@ -2304,6 +2304,11 @@ declare namespace JUHUU {
2304
2304
  };
2305
2305
  group: UserGroup;
2306
2306
  createdByPropertyId: string | null;
2307
+ identity: {
2308
+ status: "unverified" | "pending" | "verified";
2309
+ verifiedAt: Date | null;
2310
+ expiresAt: Date | null;
2311
+ };
2307
2312
  };
2308
2313
  export interface Standard extends Base {
2309
2314
  type: "standard";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.270",
3
+ "version": "1.2.271",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",