waldur-js-client 8.0.7-dev.41 → 8.0.7-dev.43
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/sdk.gen.js +5 -1
- package/dist/types.gen.d.ts +30 -20
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -54823,7 +54823,11 @@ export const userGroupInvitationsSubmitRequest = (options) => {
|
|
|
54823
54823
|
}
|
|
54824
54824
|
],
|
|
54825
54825
|
url: '/api/user-group-invitations/{uuid}/submit_request/',
|
|
54826
|
-
...options
|
|
54826
|
+
...options,
|
|
54827
|
+
headers: {
|
|
54828
|
+
'Content-Type': 'application/json',
|
|
54829
|
+
...options.headers
|
|
54830
|
+
}
|
|
54827
54831
|
});
|
|
54828
54832
|
};
|
|
54829
54833
|
/**
|
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
|
*/
|
|
@@ -23653,6 +23653,16 @@ export type SubNetMappingRequest = {
|
|
|
23653
23653
|
src_cidr: string;
|
|
23654
23654
|
dst_cidr: string;
|
|
23655
23655
|
};
|
|
23656
|
+
export type SubmitRequestRequest = {
|
|
23657
|
+
/**
|
|
23658
|
+
* Custom project name to use instead of auto-generated one
|
|
23659
|
+
*/
|
|
23660
|
+
project_name?: string;
|
|
23661
|
+
/**
|
|
23662
|
+
* Custom project description
|
|
23663
|
+
*/
|
|
23664
|
+
project_description?: string;
|
|
23665
|
+
};
|
|
23656
23666
|
export type SubmitRequestResponse = {
|
|
23657
23667
|
/**
|
|
23658
23668
|
* UUID of the created permission request
|
|
@@ -24454,9 +24464,9 @@ export type User = {
|
|
|
24454
24464
|
readonly has_usable_password?: boolean;
|
|
24455
24465
|
readonly ip_address?: string | null;
|
|
24456
24466
|
/**
|
|
24457
|
-
*
|
|
24467
|
+
* User's gender (male, female, or unknown)
|
|
24458
24468
|
*/
|
|
24459
|
-
gender?: GenderEnum | NullEnum | null;
|
|
24469
|
+
gender?: GenderEnum | BlankEnum | NullEnum | null;
|
|
24460
24470
|
/**
|
|
24461
24471
|
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
24462
24472
|
*/
|
|
@@ -24855,9 +24865,9 @@ export type UserRequest = {
|
|
|
24855
24865
|
birth_date?: string | null;
|
|
24856
24866
|
image?: (Blob | File) | null;
|
|
24857
24867
|
/**
|
|
24858
|
-
*
|
|
24868
|
+
* User's gender (male, female, or unknown)
|
|
24859
24869
|
*/
|
|
24860
|
-
gender?: GenderEnum | NullEnum | null;
|
|
24870
|
+
gender?: GenderEnum | BlankEnum | NullEnum | null;
|
|
24861
24871
|
/**
|
|
24862
24872
|
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
24863
24873
|
*/
|
|
@@ -27179,9 +27189,9 @@ export type UserRequestForm = {
|
|
|
27179
27189
|
birth_date?: string | null;
|
|
27180
27190
|
image?: (Blob | File) | null;
|
|
27181
27191
|
/**
|
|
27182
|
-
*
|
|
27192
|
+
* User's gender (male, female, or unknown)
|
|
27183
27193
|
*/
|
|
27184
|
-
gender?: GenderEnum | NullEnum | null;
|
|
27194
|
+
gender?: GenderEnum | BlankEnum | NullEnum | null;
|
|
27185
27195
|
/**
|
|
27186
27196
|
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
27187
27197
|
*/
|
|
@@ -27270,9 +27280,9 @@ export type UserRequestMultipart = {
|
|
|
27270
27280
|
birth_date?: string | null;
|
|
27271
27281
|
image?: (Blob | File) | null;
|
|
27272
27282
|
/**
|
|
27273
|
-
*
|
|
27283
|
+
* User's gender (male, female, or unknown)
|
|
27274
27284
|
*/
|
|
27275
|
-
gender?: GenderEnum | NullEnum | null;
|
|
27285
|
+
gender?: GenderEnum | BlankEnum | NullEnum | null;
|
|
27276
27286
|
/**
|
|
27277
27287
|
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
27278
27288
|
*/
|
|
@@ -27360,9 +27370,9 @@ export type PatchedUserRequestForm = {
|
|
|
27360
27370
|
birth_date?: string | null;
|
|
27361
27371
|
image?: (Blob | File) | null;
|
|
27362
27372
|
/**
|
|
27363
|
-
*
|
|
27373
|
+
* User's gender (male, female, or unknown)
|
|
27364
27374
|
*/
|
|
27365
|
-
gender?: GenderEnum | NullEnum | null;
|
|
27375
|
+
gender?: GenderEnum | BlankEnum | NullEnum | null;
|
|
27366
27376
|
/**
|
|
27367
27377
|
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
27368
27378
|
*/
|
|
@@ -27450,9 +27460,9 @@ export type PatchedUserRequestMultipart = {
|
|
|
27450
27460
|
birth_date?: string | null;
|
|
27451
27461
|
image?: (Blob | File) | null;
|
|
27452
27462
|
/**
|
|
27453
|
-
*
|
|
27463
|
+
* User's gender (male, female, or unknown)
|
|
27454
27464
|
*/
|
|
27455
|
-
gender?: GenderEnum | NullEnum | null;
|
|
27465
|
+
gender?: GenderEnum | BlankEnum | NullEnum | null;
|
|
27456
27466
|
/**
|
|
27457
27467
|
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
27458
27468
|
*/
|
|
@@ -79319,7 +79329,7 @@ export type UserGroupInvitationsProjectsListResponses = {
|
|
|
79319
79329
|
};
|
|
79320
79330
|
export type UserGroupInvitationsProjectsListResponse = UserGroupInvitationsProjectsListResponses[keyof UserGroupInvitationsProjectsListResponses];
|
|
79321
79331
|
export type UserGroupInvitationsSubmitRequestData = {
|
|
79322
|
-
body?:
|
|
79332
|
+
body?: SubmitRequestRequest;
|
|
79323
79333
|
path: {
|
|
79324
79334
|
uuid: string;
|
|
79325
79335
|
};
|