waldur-js-client 7.7.10-dev.1 → 7.7.10-dev.2

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.
Files changed (2) hide show
  1. package/dist/types.gen.d.ts +36 -15
  2. package/package.json +1 -1
@@ -2234,6 +2234,7 @@ export type CustomerRequest = {
2234
2234
  backend_id?: string;
2235
2235
  image?: (Blob | File) | null;
2236
2236
  name: string;
2237
+ slug?: string;
2237
2238
  native_name?: string;
2238
2239
  abbreviation?: string;
2239
2240
  description?: string;
@@ -4941,7 +4942,7 @@ export type OfferingCreate = {
4941
4942
  readonly uuid: string;
4942
4943
  readonly created: string;
4943
4944
  name: string;
4944
- readonly slug: string;
4945
+ slug?: string;
4945
4946
  description?: string;
4946
4947
  full_description?: string;
4947
4948
  privacy_policy_link?: string;
@@ -5016,6 +5017,7 @@ export type OfferingCreate = {
5016
5017
  };
5017
5018
  export type OfferingCreateRequest = {
5018
5019
  name: string;
5020
+ slug?: string;
5019
5021
  description?: string;
5020
5022
  full_description?: string;
5021
5023
  privacy_policy_link?: string;
@@ -5146,6 +5148,7 @@ export type OfferingOverviewUpdateRequest = {
5146
5148
  access_url?: string;
5147
5149
  getting_started?: string;
5148
5150
  integration_guide?: string;
5151
+ slug?: string;
5149
5152
  };
5150
5153
  export type OfferingPauseRequest = {
5151
5154
  paused_reason?: string;
@@ -6811,6 +6814,14 @@ export type OpenStackTenantRequest = {
6811
6814
  * Optional availability group. Will be used for all instances provisioned in this tenant
6812
6815
  */
6813
6816
  availability_zone?: string;
6817
+ /**
6818
+ * Username of the tenant user
6819
+ */
6820
+ user_username?: string;
6821
+ /**
6822
+ * Password of the tenant user
6823
+ */
6824
+ user_password?: string;
6814
6825
  subnet_cidr?: string;
6815
6826
  /**
6816
6827
  * Volume type name to use when creating volumes.
@@ -7004,11 +7015,14 @@ export type OrderCreate = {
7004
7015
  readonly output: string;
7005
7016
  readonly marketplace_resource_uuid: string;
7006
7017
  readonly error_message: string;
7018
+ readonly error_traceback: string;
7007
7019
  callback_url?: string | null;
7008
7020
  /**
7009
7021
  * Completion time
7010
7022
  */
7011
7023
  readonly completed_at: string | null;
7024
+ request_comment?: string | null;
7025
+ attachment?: string | null;
7012
7026
  readonly url: string;
7013
7027
  readonly created_by: string;
7014
7028
  /**
@@ -7043,6 +7057,8 @@ export type OrderCreateRequest = {
7043
7057
  type?: RequestTypes;
7044
7058
  accepting_terms_of_service?: boolean;
7045
7059
  callback_url?: string | null;
7060
+ request_comment?: string | null;
7061
+ attachment?: (Blob | File) | null;
7046
7062
  project: string;
7047
7063
  };
7048
7064
  export type OrderDetails = {
@@ -7091,11 +7107,14 @@ export type OrderDetails = {
7091
7107
  readonly output?: string;
7092
7108
  readonly marketplace_resource_uuid?: string;
7093
7109
  readonly error_message?: string;
7110
+ readonly error_traceback?: string;
7094
7111
  callback_url?: string | null;
7095
7112
  /**
7096
7113
  * Completion time
7097
7114
  */
7098
7115
  readonly completed_at?: string | null;
7116
+ request_comment?: string | null;
7117
+ attachment?: string | null;
7099
7118
  /**
7100
7119
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
7101
7120
  */
@@ -7330,6 +7349,7 @@ export type PatchedCustomerRequest = {
7330
7349
  backend_id?: string;
7331
7350
  image?: (Blob | File) | null;
7332
7351
  name?: string;
7352
+ slug?: string;
7333
7353
  native_name?: string;
7334
7354
  abbreviation?: string;
7335
7355
  description?: string;
@@ -7757,6 +7777,7 @@ export type PatchedProjectEstimatedCostPolicyRequest = {
7757
7777
  };
7758
7778
  export type PatchedProjectRequest = {
7759
7779
  name?: string;
7780
+ slug?: string;
7760
7781
  /**
7761
7782
  * Organization
7762
7783
  */
@@ -7808,6 +7829,7 @@ export type PatchedProposalReviewRequest = {
7808
7829
  comment_team?: string | null;
7809
7830
  };
7810
7831
  export type PatchedProtectedCallRequest = {
7832
+ slug?: string;
7811
7833
  name?: string;
7812
7834
  description?: string;
7813
7835
  fixed_duration_in_days?: number | null;
@@ -8130,6 +8152,7 @@ export type PatchedSectionRequest = {
8130
8152
  };
8131
8153
  export type PatchedServiceProviderRequest = {
8132
8154
  description?: string;
8155
+ enable_notifications?: boolean;
8133
8156
  image?: (Blob | File) | null;
8134
8157
  };
8135
8158
  export type PatchedSlurmAllocationRequest = {
@@ -8153,6 +8176,7 @@ export type PatchedUserRequest = {
8153
8176
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
8154
8177
  */
8155
8178
  username?: string;
8179
+ slug?: string;
8156
8180
  native_name?: string;
8157
8181
  job_title?: string;
8158
8182
  phone_number?: string;
@@ -8384,7 +8408,7 @@ export type Project = {
8384
8408
  readonly url?: string;
8385
8409
  readonly uuid?: string;
8386
8410
  name?: string;
8387
- readonly slug?: string;
8411
+ slug?: string;
8388
8412
  /**
8389
8413
  * Organization
8390
8414
  */
@@ -8588,6 +8612,7 @@ export type ProjectQuotas = {
8588
8612
  };
8589
8613
  export type ProjectRequest = {
8590
8614
  name: string;
8615
+ slug?: string;
8591
8616
  /**
8592
8617
  * Organization
8593
8618
  */
@@ -8874,6 +8899,7 @@ export type ProtectedCall = {
8874
8899
  readonly compliance_checklist_name?: string;
8875
8900
  };
8876
8901
  export type ProtectedCallRequest = {
8902
+ slug?: string;
8877
8903
  name: string;
8878
8904
  description?: string;
8879
8905
  manager: string;
@@ -9067,6 +9093,7 @@ export type ProviderOfferingDetails = {
9067
9093
  };
9068
9094
  export type ProviderOfferingDetailsRequest = {
9069
9095
  name: string;
9096
+ slug?: string;
9070
9097
  description?: string;
9071
9098
  full_description?: string;
9072
9099
  privacy_policy_link?: string;
@@ -9281,7 +9308,7 @@ export type PublicOfferingDetails = {
9281
9308
  readonly uuid?: string;
9282
9309
  readonly created?: string;
9283
9310
  name?: string;
9284
- readonly slug?: string;
9311
+ slug?: string;
9285
9312
  description?: string;
9286
9313
  full_description?: string;
9287
9314
  privacy_policy_link?: string;
@@ -10597,7 +10624,7 @@ export type Resource = {
10597
10624
  readonly is_usage_based?: boolean;
10598
10625
  readonly is_limit_based?: boolean;
10599
10626
  name?: string;
10600
- readonly slug?: string;
10627
+ slug?: string;
10601
10628
  readonly current_usages?: {
10602
10629
  [key: string]: number;
10603
10630
  };
@@ -11291,6 +11318,7 @@ export type ServiceProviderOfferingUserCompliance = {
11291
11318
  export type ServiceProviderOfferingUserComplianceStateEnum = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
11292
11319
  export type ServiceProviderRequest = {
11293
11320
  description?: string;
11321
+ enable_notifications?: boolean;
11294
11322
  customer: string;
11295
11323
  image?: (Blob | File) | null;
11296
11324
  };
@@ -11592,7 +11620,7 @@ export type User = {
11592
11620
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
11593
11621
  */
11594
11622
  username?: string;
11595
- readonly slug?: string;
11623
+ slug?: string;
11596
11624
  readonly full_name?: string;
11597
11625
  native_name?: string;
11598
11626
  job_title?: string;
@@ -11734,6 +11762,7 @@ export type UserRequest = {
11734
11762
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
11735
11763
  */
11736
11764
  username: string;
11765
+ slug?: string;
11737
11766
  native_name?: string;
11738
11767
  job_title?: string;
11739
11768
  email: string;
@@ -12245,14 +12274,6 @@ export type AzureSqlServerCreateOrderAttributes = {
12245
12274
  export type OpenStackTenantCreateOrderAttributes = {
12246
12275
  name: string;
12247
12276
  description?: string;
12248
- /**
12249
- * Username of the tenant user
12250
- */
12251
- user_username?: string;
12252
- /**
12253
- * Password of the tenant user
12254
- */
12255
- user_password?: string;
12256
12277
  subnet_cidr?: string;
12257
12278
  skip_connection_extnet?: boolean;
12258
12279
  skip_creation_of_default_router?: boolean;
@@ -23531,7 +23552,7 @@ export type MarketplaceOrdersListData = {
23531
23552
  */
23532
23553
  created?: string;
23533
23554
  customer_uuid?: string;
23534
- field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_uuid' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'state' | 'termination_comment' | 'type' | 'uuid'>;
23555
+ field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'state' | 'termination_comment' | 'type' | 'uuid'>;
23535
23556
  /**
23536
23557
  * Modified after
23537
23558
  */
@@ -23665,7 +23686,7 @@ export type MarketplaceOrdersRetrieveData = {
23665
23686
  uuid: string;
23666
23687
  };
23667
23688
  query?: {
23668
- field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_uuid' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'state' | 'termination_comment' | 'type' | 'uuid'>;
23689
+ field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'state' | 'termination_comment' | 'type' | 'uuid'>;
23669
23690
  };
23670
23691
  url: '/api/marketplace-orders/{uuid}/';
23671
23692
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.7.10-dev.1",
3
+ "version": "7.7.10-dev.2",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",