waldur-js-client 8.0.8-dev.11 → 8.0.8-dev.12
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/types.gen.d.ts +2 -1
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -7613,6 +7613,7 @@ export type IdentityBridgeRemoveResult = {
|
|
|
7613
7613
|
uuid: string;
|
|
7614
7614
|
deactivated: boolean;
|
|
7615
7615
|
};
|
|
7616
|
+
export type IdentityBridgeRequestGenderEnum = 'male' | 'female' | 'unknown';
|
|
7616
7617
|
export type IdentityBridgeRequestRequest = {
|
|
7617
7618
|
/**
|
|
7618
7619
|
* CUID / username of the user to create or update.
|
|
@@ -7630,7 +7631,7 @@ export type IdentityBridgeRequestRequest = {
|
|
|
7630
7631
|
civil_number?: string;
|
|
7631
7632
|
phone_number?: string;
|
|
7632
7633
|
identity_source?: string;
|
|
7633
|
-
gender?:
|
|
7634
|
+
gender?: IdentityBridgeRequestGenderEnum | NullEnum | null;
|
|
7634
7635
|
personal_title?: string;
|
|
7635
7636
|
birth_date?: string | null;
|
|
7636
7637
|
place_of_birth?: string;
|