waldur-js-client 8.0.7-dev.42 → 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 +11 -1
- 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
|
@@ -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
|
|
@@ -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
|
};
|