waldur-js-client 8.0.7-dev.41 → 8.0.7-dev.42
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 +19 -19
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -7090,7 +7090,7 @@ export type FreeipaProfileRequest = {
|
|
|
7090
7090
|
agreement_date?: string;
|
|
7091
7091
|
};
|
|
7092
7092
|
export type FrequencyEnum = 'weekly' | 'biweekly' | 'monthly';
|
|
7093
|
-
export type GenderEnum =
|
|
7093
|
+
export type GenderEnum = 'male' | 'female' | 'unknown';
|
|
7094
7094
|
export type GenerateAssignmentsRequest = {
|
|
7095
7095
|
/**
|
|
7096
7096
|
* Specific proposal UUIDs to generate assignments for. If empty, generates for all submitted proposals needing reviewers.
|
|
@@ -9094,9 +9094,9 @@ export type MarketplaceServiceProviderUser = {
|
|
|
9094
9094
|
is_active?: boolean;
|
|
9095
9095
|
job_title?: string;
|
|
9096
9096
|
/**
|
|
9097
|
-
*
|
|
9097
|
+
* User's gender (male, female, or unknown)
|
|
9098
9098
|
*/
|
|
9099
|
-
gender?: GenderEnum | NullEnum | null;
|
|
9099
|
+
gender?: GenderEnum | BlankEnum | NullEnum | null;
|
|
9100
9100
|
/**
|
|
9101
9101
|
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
9102
9102
|
*/
|
|
@@ -12215,9 +12215,9 @@ export type OfferingUser = {
|
|
|
12215
12215
|
*/
|
|
12216
12216
|
readonly user_affiliations?: unknown;
|
|
12217
12217
|
/**
|
|
12218
|
-
*
|
|
12218
|
+
* User's gender (male, female, or unknown)
|
|
12219
12219
|
*/
|
|
12220
|
-
user_gender?: GenderEnum | NullEnum | null;
|
|
12220
|
+
user_gender?: GenderEnum | BlankEnum | NullEnum | null;
|
|
12221
12221
|
/**
|
|
12222
12222
|
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
12223
12223
|
*/
|
|
@@ -17107,9 +17107,9 @@ export type PatchedUserRequest = {
|
|
|
17107
17107
|
birth_date?: string | null;
|
|
17108
17108
|
image?: (Blob | File) | null;
|
|
17109
17109
|
/**
|
|
17110
|
-
*
|
|
17110
|
+
* User's gender (male, female, or unknown)
|
|
17111
17111
|
*/
|
|
17112
|
-
gender?: GenderEnum | NullEnum | null;
|
|
17112
|
+
gender?: GenderEnum | BlankEnum | NullEnum | null;
|
|
17113
17113
|
/**
|
|
17114
17114
|
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
17115
17115
|
*/
|
|
@@ -24454,9 +24454,9 @@ export type User = {
|
|
|
24454
24454
|
readonly has_usable_password?: boolean;
|
|
24455
24455
|
readonly ip_address?: string | null;
|
|
24456
24456
|
/**
|
|
24457
|
-
*
|
|
24457
|
+
* User's gender (male, female, or unknown)
|
|
24458
24458
|
*/
|
|
24459
|
-
gender?: GenderEnum | NullEnum | null;
|
|
24459
|
+
gender?: GenderEnum | BlankEnum | NullEnum | null;
|
|
24460
24460
|
/**
|
|
24461
24461
|
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
24462
24462
|
*/
|
|
@@ -24855,9 +24855,9 @@ export type UserRequest = {
|
|
|
24855
24855
|
birth_date?: string | null;
|
|
24856
24856
|
image?: (Blob | File) | null;
|
|
24857
24857
|
/**
|
|
24858
|
-
*
|
|
24858
|
+
* User's gender (male, female, or unknown)
|
|
24859
24859
|
*/
|
|
24860
|
-
gender?: GenderEnum | NullEnum | null;
|
|
24860
|
+
gender?: GenderEnum | BlankEnum | NullEnum | null;
|
|
24861
24861
|
/**
|
|
24862
24862
|
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
24863
24863
|
*/
|
|
@@ -27179,9 +27179,9 @@ export type UserRequestForm = {
|
|
|
27179
27179
|
birth_date?: string | null;
|
|
27180
27180
|
image?: (Blob | File) | null;
|
|
27181
27181
|
/**
|
|
27182
|
-
*
|
|
27182
|
+
* User's gender (male, female, or unknown)
|
|
27183
27183
|
*/
|
|
27184
|
-
gender?: GenderEnum | NullEnum | null;
|
|
27184
|
+
gender?: GenderEnum | BlankEnum | NullEnum | null;
|
|
27185
27185
|
/**
|
|
27186
27186
|
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
27187
27187
|
*/
|
|
@@ -27270,9 +27270,9 @@ export type UserRequestMultipart = {
|
|
|
27270
27270
|
birth_date?: string | null;
|
|
27271
27271
|
image?: (Blob | File) | null;
|
|
27272
27272
|
/**
|
|
27273
|
-
*
|
|
27273
|
+
* User's gender (male, female, or unknown)
|
|
27274
27274
|
*/
|
|
27275
|
-
gender?: GenderEnum | NullEnum | null;
|
|
27275
|
+
gender?: GenderEnum | BlankEnum | NullEnum | null;
|
|
27276
27276
|
/**
|
|
27277
27277
|
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
27278
27278
|
*/
|
|
@@ -27360,9 +27360,9 @@ export type PatchedUserRequestForm = {
|
|
|
27360
27360
|
birth_date?: string | null;
|
|
27361
27361
|
image?: (Blob | File) | null;
|
|
27362
27362
|
/**
|
|
27363
|
-
*
|
|
27363
|
+
* User's gender (male, female, or unknown)
|
|
27364
27364
|
*/
|
|
27365
|
-
gender?: GenderEnum | NullEnum | null;
|
|
27365
|
+
gender?: GenderEnum | BlankEnum | NullEnum | null;
|
|
27366
27366
|
/**
|
|
27367
27367
|
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
27368
27368
|
*/
|
|
@@ -27450,9 +27450,9 @@ export type PatchedUserRequestMultipart = {
|
|
|
27450
27450
|
birth_date?: string | null;
|
|
27451
27451
|
image?: (Blob | File) | null;
|
|
27452
27452
|
/**
|
|
27453
|
-
*
|
|
27453
|
+
* User's gender (male, female, or unknown)
|
|
27454
27454
|
*/
|
|
27455
|
-
gender?: GenderEnum | NullEnum | null;
|
|
27455
|
+
gender?: GenderEnum | BlankEnum | NullEnum | null;
|
|
27456
27456
|
/**
|
|
27457
27457
|
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
27458
27458
|
*/
|