waldur-js-client 8.0.7-dev.0 → 8.0.7-dev.1

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.
@@ -223,7 +223,7 @@ export type AgentIdentity = {
223
223
  * UUID of an offering with a site-agent compatible type.
224
224
  */
225
225
  offering: string;
226
- readonly created_by: string;
226
+ readonly created_by: string | null;
227
227
  name: string;
228
228
  version?: string | null;
229
229
  dependencies?: unknown;
@@ -5507,7 +5507,7 @@ export type CustomerServiceAccount = {
5507
5507
  email?: string;
5508
5508
  readonly expires_at: string | null;
5509
5509
  preferred_identifier?: string;
5510
- customer: string;
5510
+ customer: string | null;
5511
5511
  readonly customer_uuid: string;
5512
5512
  readonly customer_name: string;
5513
5513
  };
@@ -5517,7 +5517,7 @@ export type CustomerServiceAccountRequest = {
5517
5517
  error_traceback?: string;
5518
5518
  email?: string;
5519
5519
  preferred_identifier?: string;
5520
- customer: string;
5520
+ customer: string | null;
5521
5521
  };
5522
5522
  export type CustomerUser = {
5523
5523
  readonly url?: string;
@@ -9858,7 +9858,7 @@ export type Message = {
9858
9858
  role: MessageRoleEnum;
9859
9859
  content: string;
9860
9860
  readonly sequence_index: number;
9861
- readonly replaces: string;
9861
+ readonly replaces: string | null;
9862
9862
  readonly created: string;
9863
9863
  readonly is_flagged: boolean;
9864
9864
  severity: InjectionSeverityEnum;
@@ -15327,7 +15327,7 @@ export type PatchedCustomerServiceAccountRequest = {
15327
15327
  error_traceback?: string;
15328
15328
  email?: string;
15329
15329
  preferred_identifier?: string;
15330
- customer?: string;
15330
+ customer?: string | null;
15331
15331
  };
15332
15332
  export type PatchedDigitalOceanDropletRequest = {
15333
15333
  name?: string;
@@ -16094,7 +16094,7 @@ export type PatchedProjectServiceAccountRequest = {
16094
16094
  error_traceback?: string;
16095
16095
  email?: string;
16096
16096
  preferred_identifier?: string;
16097
- project?: string;
16097
+ project?: string | null;
16098
16098
  };
16099
16099
  export type PatchedProjectTemplateRequest = {
16100
16100
  name?: string;
@@ -17637,7 +17637,7 @@ export type ProjectServiceAccount = {
17637
17637
  email?: string;
17638
17638
  readonly expires_at: string | null;
17639
17639
  preferred_identifier?: string;
17640
- project: string;
17640
+ project: string | null;
17641
17641
  readonly project_uuid: string;
17642
17642
  readonly project_name: string;
17643
17643
  readonly customer_uuid: string;
@@ -17650,7 +17650,7 @@ export type ProjectServiceAccountRequest = {
17650
17650
  error_traceback?: string;
17651
17651
  email?: string;
17652
17652
  preferred_identifier?: string;
17653
- project: string;
17653
+ project: string | null;
17654
17654
  };
17655
17655
  export type ProjectTemplate = {
17656
17656
  readonly uuid: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.7-dev.0",
3
+ "version": "8.0.7-dev.1",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",