@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 +5 -0
- package/dist/index.d.ts +5 -0
- package/package.json +1 -1
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";
|