waldur-js-client 7.7.10-dev.0 → 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.
- package/dist/types.gen.d.ts +54 -17
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -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
|
-
|
|
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;
|
|
@@ -5332,6 +5335,14 @@ export type OfferingUser = {
|
|
|
5332
5335
|
* URL link for additional information or actions related to service provider comment
|
|
5333
5336
|
*/
|
|
5334
5337
|
readonly service_provider_comment_url?: string;
|
|
5338
|
+
/**
|
|
5339
|
+
* Check if the user has active consent for this offering.
|
|
5340
|
+
*/
|
|
5341
|
+
readonly has_consent?: boolean;
|
|
5342
|
+
/**
|
|
5343
|
+
* Check if the user needs to re-consent due to ToS changes.
|
|
5344
|
+
*/
|
|
5345
|
+
readonly requires_reconsent?: boolean;
|
|
5335
5346
|
};
|
|
5336
5347
|
export type OfferingUserRequest = {
|
|
5337
5348
|
user?: string;
|
|
@@ -6803,6 +6814,14 @@ export type OpenStackTenantRequest = {
|
|
|
6803
6814
|
* Optional availability group. Will be used for all instances provisioned in this tenant
|
|
6804
6815
|
*/
|
|
6805
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;
|
|
6806
6825
|
subnet_cidr?: string;
|
|
6807
6826
|
/**
|
|
6808
6827
|
* Volume type name to use when creating volumes.
|
|
@@ -6996,11 +7015,14 @@ export type OrderCreate = {
|
|
|
6996
7015
|
readonly output: string;
|
|
6997
7016
|
readonly marketplace_resource_uuid: string;
|
|
6998
7017
|
readonly error_message: string;
|
|
7018
|
+
readonly error_traceback: string;
|
|
6999
7019
|
callback_url?: string | null;
|
|
7000
7020
|
/**
|
|
7001
7021
|
* Completion time
|
|
7002
7022
|
*/
|
|
7003
7023
|
readonly completed_at: string | null;
|
|
7024
|
+
request_comment?: string | null;
|
|
7025
|
+
attachment?: string | null;
|
|
7004
7026
|
readonly url: string;
|
|
7005
7027
|
readonly created_by: string;
|
|
7006
7028
|
/**
|
|
@@ -7035,6 +7057,8 @@ export type OrderCreateRequest = {
|
|
|
7035
7057
|
type?: RequestTypes;
|
|
7036
7058
|
accepting_terms_of_service?: boolean;
|
|
7037
7059
|
callback_url?: string | null;
|
|
7060
|
+
request_comment?: string | null;
|
|
7061
|
+
attachment?: (Blob | File) | null;
|
|
7038
7062
|
project: string;
|
|
7039
7063
|
};
|
|
7040
7064
|
export type OrderDetails = {
|
|
@@ -7083,11 +7107,14 @@ export type OrderDetails = {
|
|
|
7083
7107
|
readonly output?: string;
|
|
7084
7108
|
readonly marketplace_resource_uuid?: string;
|
|
7085
7109
|
readonly error_message?: string;
|
|
7110
|
+
readonly error_traceback?: string;
|
|
7086
7111
|
callback_url?: string | null;
|
|
7087
7112
|
/**
|
|
7088
7113
|
* Completion time
|
|
7089
7114
|
*/
|
|
7090
7115
|
readonly completed_at?: string | null;
|
|
7116
|
+
request_comment?: string | null;
|
|
7117
|
+
attachment?: string | null;
|
|
7091
7118
|
/**
|
|
7092
7119
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
7093
7120
|
*/
|
|
@@ -7322,6 +7349,7 @@ export type PatchedCustomerRequest = {
|
|
|
7322
7349
|
backend_id?: string;
|
|
7323
7350
|
image?: (Blob | File) | null;
|
|
7324
7351
|
name?: string;
|
|
7352
|
+
slug?: string;
|
|
7325
7353
|
native_name?: string;
|
|
7326
7354
|
abbreviation?: string;
|
|
7327
7355
|
description?: string;
|
|
@@ -7749,6 +7777,7 @@ export type PatchedProjectEstimatedCostPolicyRequest = {
|
|
|
7749
7777
|
};
|
|
7750
7778
|
export type PatchedProjectRequest = {
|
|
7751
7779
|
name?: string;
|
|
7780
|
+
slug?: string;
|
|
7752
7781
|
/**
|
|
7753
7782
|
* Organization
|
|
7754
7783
|
*/
|
|
@@ -7800,6 +7829,7 @@ export type PatchedProposalReviewRequest = {
|
|
|
7800
7829
|
comment_team?: string | null;
|
|
7801
7830
|
};
|
|
7802
7831
|
export type PatchedProtectedCallRequest = {
|
|
7832
|
+
slug?: string;
|
|
7803
7833
|
name?: string;
|
|
7804
7834
|
description?: string;
|
|
7805
7835
|
fixed_duration_in_days?: number | null;
|
|
@@ -8122,6 +8152,7 @@ export type PatchedSectionRequest = {
|
|
|
8122
8152
|
};
|
|
8123
8153
|
export type PatchedServiceProviderRequest = {
|
|
8124
8154
|
description?: string;
|
|
8155
|
+
enable_notifications?: boolean;
|
|
8125
8156
|
image?: (Blob | File) | null;
|
|
8126
8157
|
};
|
|
8127
8158
|
export type PatchedSlurmAllocationRequest = {
|
|
@@ -8145,6 +8176,7 @@ export type PatchedUserRequest = {
|
|
|
8145
8176
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
8146
8177
|
*/
|
|
8147
8178
|
username?: string;
|
|
8179
|
+
slug?: string;
|
|
8148
8180
|
native_name?: string;
|
|
8149
8181
|
job_title?: string;
|
|
8150
8182
|
phone_number?: string;
|
|
@@ -8376,7 +8408,7 @@ export type Project = {
|
|
|
8376
8408
|
readonly url?: string;
|
|
8377
8409
|
readonly uuid?: string;
|
|
8378
8410
|
name?: string;
|
|
8379
|
-
|
|
8411
|
+
slug?: string;
|
|
8380
8412
|
/**
|
|
8381
8413
|
* Organization
|
|
8382
8414
|
*/
|
|
@@ -8580,6 +8612,7 @@ export type ProjectQuotas = {
|
|
|
8580
8612
|
};
|
|
8581
8613
|
export type ProjectRequest = {
|
|
8582
8614
|
name: string;
|
|
8615
|
+
slug?: string;
|
|
8583
8616
|
/**
|
|
8584
8617
|
* Organization
|
|
8585
8618
|
*/
|
|
@@ -8866,6 +8899,7 @@ export type ProtectedCall = {
|
|
|
8866
8899
|
readonly compliance_checklist_name?: string;
|
|
8867
8900
|
};
|
|
8868
8901
|
export type ProtectedCallRequest = {
|
|
8902
|
+
slug?: string;
|
|
8869
8903
|
name: string;
|
|
8870
8904
|
description?: string;
|
|
8871
8905
|
manager: string;
|
|
@@ -9059,6 +9093,7 @@ export type ProviderOfferingDetails = {
|
|
|
9059
9093
|
};
|
|
9060
9094
|
export type ProviderOfferingDetailsRequest = {
|
|
9061
9095
|
name: string;
|
|
9096
|
+
slug?: string;
|
|
9062
9097
|
description?: string;
|
|
9063
9098
|
full_description?: string;
|
|
9064
9099
|
privacy_policy_link?: string;
|
|
@@ -9273,7 +9308,7 @@ export type PublicOfferingDetails = {
|
|
|
9273
9308
|
readonly uuid?: string;
|
|
9274
9309
|
readonly created?: string;
|
|
9275
9310
|
name?: string;
|
|
9276
|
-
|
|
9311
|
+
slug?: string;
|
|
9277
9312
|
description?: string;
|
|
9278
9313
|
full_description?: string;
|
|
9279
9314
|
privacy_policy_link?: string;
|
|
@@ -10589,7 +10624,7 @@ export type Resource = {
|
|
|
10589
10624
|
readonly is_usage_based?: boolean;
|
|
10590
10625
|
readonly is_limit_based?: boolean;
|
|
10591
10626
|
name?: string;
|
|
10592
|
-
|
|
10627
|
+
slug?: string;
|
|
10593
10628
|
readonly current_usages?: {
|
|
10594
10629
|
[key: string]: number;
|
|
10595
10630
|
};
|
|
@@ -11283,6 +11318,7 @@ export type ServiceProviderOfferingUserCompliance = {
|
|
|
11283
11318
|
export type ServiceProviderOfferingUserComplianceStateEnum = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
|
|
11284
11319
|
export type ServiceProviderRequest = {
|
|
11285
11320
|
description?: string;
|
|
11321
|
+
enable_notifications?: boolean;
|
|
11286
11322
|
customer: string;
|
|
11287
11323
|
image?: (Blob | File) | null;
|
|
11288
11324
|
};
|
|
@@ -11584,7 +11620,7 @@ export type User = {
|
|
|
11584
11620
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
11585
11621
|
*/
|
|
11586
11622
|
username?: string;
|
|
11587
|
-
|
|
11623
|
+
slug?: string;
|
|
11588
11624
|
readonly full_name?: string;
|
|
11589
11625
|
native_name?: string;
|
|
11590
11626
|
job_title?: string;
|
|
@@ -11726,6 +11762,7 @@ export type UserRequest = {
|
|
|
11726
11762
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
11727
11763
|
*/
|
|
11728
11764
|
username: string;
|
|
11765
|
+
slug?: string;
|
|
11729
11766
|
native_name?: string;
|
|
11730
11767
|
job_title?: string;
|
|
11731
11768
|
email: string;
|
|
@@ -12237,14 +12274,6 @@ export type AzureSqlServerCreateOrderAttributes = {
|
|
|
12237
12274
|
export type OpenStackTenantCreateOrderAttributes = {
|
|
12238
12275
|
name: string;
|
|
12239
12276
|
description?: string;
|
|
12240
|
-
/**
|
|
12241
|
-
* Username of the tenant user
|
|
12242
|
-
*/
|
|
12243
|
-
user_username?: string;
|
|
12244
|
-
/**
|
|
12245
|
-
* Password of the tenant user
|
|
12246
|
-
*/
|
|
12247
|
-
user_password?: string;
|
|
12248
12277
|
subnet_cidr?: string;
|
|
12249
12278
|
skip_connection_extnet?: boolean;
|
|
12250
12279
|
skip_creation_of_default_router?: boolean;
|
|
@@ -23065,7 +23094,11 @@ export type MarketplaceOfferingUsersListData = {
|
|
|
23065
23094
|
* Created after
|
|
23066
23095
|
*/
|
|
23067
23096
|
created?: string;
|
|
23068
|
-
field?: Array<'created' | 'customer_name' | 'customer_uuid' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_email' | 'user_full_name' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
|
|
23097
|
+
field?: Array<'created' | 'customer_name' | 'customer_uuid' | 'has_consent' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_email' | 'user_full_name' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
|
|
23098
|
+
/**
|
|
23099
|
+
* User Has Consent
|
|
23100
|
+
*/
|
|
23101
|
+
has_consent?: boolean;
|
|
23069
23102
|
is_restricted?: boolean;
|
|
23070
23103
|
/**
|
|
23071
23104
|
* Modified after
|
|
@@ -23118,6 +23151,10 @@ export type MarketplaceOfferingUsersCountData = {
|
|
|
23118
23151
|
* Created after
|
|
23119
23152
|
*/
|
|
23120
23153
|
created?: string;
|
|
23154
|
+
/**
|
|
23155
|
+
* User Has Consent
|
|
23156
|
+
*/
|
|
23157
|
+
has_consent?: boolean;
|
|
23121
23158
|
is_restricted?: boolean;
|
|
23122
23159
|
/**
|
|
23123
23160
|
* Modified after
|
|
@@ -23195,7 +23232,7 @@ export type MarketplaceOfferingUsersRetrieveData = {
|
|
|
23195
23232
|
uuid: string;
|
|
23196
23233
|
};
|
|
23197
23234
|
query?: {
|
|
23198
|
-
field?: Array<'created' | 'customer_name' | 'customer_uuid' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_email' | 'user_full_name' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
|
|
23235
|
+
field?: Array<'created' | 'customer_name' | 'customer_uuid' | 'has_consent' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_email' | 'user_full_name' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
|
|
23199
23236
|
};
|
|
23200
23237
|
url: '/api/marketplace-offering-users/{uuid}/';
|
|
23201
23238
|
};
|
|
@@ -23515,7 +23552,7 @@ export type MarketplaceOrdersListData = {
|
|
|
23515
23552
|
*/
|
|
23516
23553
|
created?: string;
|
|
23517
23554
|
customer_uuid?: string;
|
|
23518
|
-
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'>;
|
|
23519
23556
|
/**
|
|
23520
23557
|
* Modified after
|
|
23521
23558
|
*/
|
|
@@ -23649,7 +23686,7 @@ export type MarketplaceOrdersRetrieveData = {
|
|
|
23649
23686
|
uuid: string;
|
|
23650
23687
|
};
|
|
23651
23688
|
query?: {
|
|
23652
|
-
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'>;
|
|
23653
23690
|
};
|
|
23654
23691
|
url: '/api/marketplace-orders/{uuid}/';
|
|
23655
23692
|
};
|