waldur-js-client 8.0.7-dev.42 → 8.0.7-dev.44

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
  /**
@@ -17310,6 +17310,14 @@ export type PermissionRequest = {
17310
17310
  readonly role_name: string;
17311
17311
  readonly role_description: string;
17312
17312
  readonly project_name_template: string;
17313
+ /**
17314
+ * Custom project name provided by user during invitation acceptance.
17315
+ */
17316
+ project_name?: string;
17317
+ /**
17318
+ * Custom project description provided by user during invitation acceptance.
17319
+ */
17320
+ project_description?: string;
17313
17321
  };
17314
17322
  export type PersonIdentifierFieldsResponse = {
17315
17323
  /**
@@ -23653,6 +23661,16 @@ export type SubNetMappingRequest = {
23653
23661
  src_cidr: string;
23654
23662
  dst_cidr: string;
23655
23663
  };
23664
+ export type SubmitRequestRequest = {
23665
+ /**
23666
+ * Custom project name to use instead of auto-generated one
23667
+ */
23668
+ project_name?: string;
23669
+ /**
23670
+ * Custom project description
23671
+ */
23672
+ project_description?: string;
23673
+ };
23656
23674
  export type SubmitRequestResponse = {
23657
23675
  /**
23658
23676
  * UUID of the created permission request
@@ -79319,7 +79337,7 @@ export type UserGroupInvitationsProjectsListResponses = {
79319
79337
  };
79320
79338
  export type UserGroupInvitationsProjectsListResponse = UserGroupInvitationsProjectsListResponses[keyof UserGroupInvitationsProjectsListResponses];
79321
79339
  export type UserGroupInvitationsSubmitRequestData = {
79322
- body?: never;
79340
+ body?: SubmitRequestRequest;
79323
79341
  path: {
79324
79342
  uuid: string;
79325
79343
  };
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.44",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",