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 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
  /**
@@ -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?: never;
79332
+ body?: SubmitRequestRequest;
79323
79333
  path: {
79324
79334
  uuid: string;
79325
79335
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.7-dev.42",
3
+ "version": "8.0.7-dev.43",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",