waldur-js-client 7.7.7-dev.5 → 7.7.7-dev.7

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 +223 -29
  2. package/package.json +1 -1
@@ -924,7 +924,7 @@ export type BookingResource = {
924
924
  readonly is_usage_based?: boolean;
925
925
  readonly is_limit_based?: boolean;
926
926
  name?: string;
927
- readonly slug?: string;
927
+ slug?: string;
928
928
  readonly current_usages?: {
929
929
  [key: string]: number;
930
930
  };
@@ -1986,7 +1986,9 @@ export type Customer = {
1986
1986
  readonly url?: string;
1987
1987
  readonly uuid?: string;
1988
1988
  readonly created?: string;
1989
+ readonly organization_groups?: Array<OrganizationGroup>;
1989
1990
  readonly display_name?: string;
1991
+ readonly projects?: Array<PermissionProject>;
1990
1992
  /**
1991
1993
  * Organization identifier in another application.
1992
1994
  */
@@ -2000,6 +2002,7 @@ export type Customer = {
2000
2002
  */
2001
2003
  readonly accounting_start_date?: string;
2002
2004
  readonly projects_count?: number;
2005
+ readonly users_count?: number;
2003
2006
  /**
2004
2007
  * External ID of the sponsor covering the costs
2005
2008
  */
@@ -2011,7 +2014,7 @@ export type Customer = {
2011
2014
  readonly max_service_accounts?: number | null;
2012
2015
  readonly project_metadata_checklist?: string | null;
2013
2016
  name?: string;
2014
- readonly slug?: string;
2017
+ slug?: string;
2015
2018
  native_name?: string;
2016
2019
  abbreviation?: string;
2017
2020
  contact_details?: string;
@@ -4567,7 +4570,7 @@ export type Offering = {
4567
4570
  readonly uuid?: string;
4568
4571
  readonly created?: string;
4569
4572
  name?: string;
4570
- readonly slug?: string;
4573
+ slug?: string;
4571
4574
  description?: string;
4572
4575
  full_description?: string;
4573
4576
  privacy_policy_link?: string;
@@ -5851,6 +5854,10 @@ export type OpenStackNetwork = {
5851
5854
  * Network type, such as local, flat, vlan, vxlan, or gre
5852
5855
  */
5853
5856
  readonly type?: string;
5857
+ /**
5858
+ * VLAN ID for VLAN networks or tunnel ID for VXLAN/GRE networks
5859
+ */
5860
+ readonly segmentation_id?: number | null;
5854
5861
  readonly subnets?: Array<OpenStackNestedSubNet>;
5855
5862
  /**
5856
5863
  * The maximum transmission unit (MTU) value to address fragmentation.
@@ -6783,9 +6790,9 @@ export type OrderCreateRequest = {
6783
6790
  offering: string;
6784
6791
  plan?: string;
6785
6792
  /**
6786
- * Attributes structure depends on the offering type specified in the parent object
6793
+ * Attributes structure depends on the offering type specified in the parent object. Can also be a generic object for offerings without a specific attributes schema.
6787
6794
  */
6788
- attributes?: AzureVirtualMachineCreateOrderAttributes | AzureSqlServerCreateOrderAttributes | OpenStackTenantCreateOrderAttributes | OpenStackInstanceCreateOrderAttributes | OpenStackVolumeCreateOrderAttributes | MarketplaceRancherCreateOrderAttributes | MarketplaceManagedRancherCreateOrderAttributes | SlurmInvoicesSlurmPackageCreateOrderAttributes | VMwareVirtualMachineCreateOrderAttributes;
6795
+ attributes?: AzureVirtualMachineCreateOrderAttributes | AzureSqlServerCreateOrderAttributes | OpenStackTenantCreateOrderAttributes | OpenStackInstanceCreateOrderAttributes | OpenStackVolumeCreateOrderAttributes | MarketplaceRancherCreateOrderAttributes | MarketplaceManagedRancherCreateOrderAttributes | SlurmInvoicesSlurmPackageCreateOrderAttributes | VMwareVirtualMachineCreateOrderAttributes | GenericOrderAttributes;
6789
6796
  limits?: {
6790
6797
  [key: string]: number;
6791
6798
  };
@@ -7990,6 +7997,17 @@ export type Permission = {
7990
7997
  readonly customer_uuid?: string;
7991
7998
  readonly customer_name?: string;
7992
7999
  };
8000
+ export type PermissionProject = {
8001
+ readonly url?: string;
8002
+ readonly uuid?: string;
8003
+ name?: string;
8004
+ image?: string | null;
8005
+ readonly resource_count?: number;
8006
+ /**
8007
+ * The date is inclusive. Once reached, all project resource will be scheduled for termination.
8008
+ */
8009
+ end_date?: string | null;
8010
+ };
7993
8011
  export type PermissionRequest = {
7994
8012
  readonly url: string;
7995
8013
  readonly uuid: string;
@@ -8514,7 +8532,7 @@ export type ProtectedCall = {
8514
8532
  readonly created?: string;
8515
8533
  readonly start_date?: string;
8516
8534
  readonly end_date?: string;
8517
- readonly slug?: string;
8535
+ slug?: string;
8518
8536
  name?: string;
8519
8537
  description?: string;
8520
8538
  state?: CallStates;
@@ -8616,7 +8634,7 @@ export type ProviderOffering = {
8616
8634
  readonly uuid?: string;
8617
8635
  readonly customer_uuid?: string;
8618
8636
  name?: string;
8619
- readonly slug?: string;
8637
+ slug?: string;
8620
8638
  readonly category_title?: string;
8621
8639
  type?: string;
8622
8640
  state?: OfferingState;
@@ -8656,7 +8674,7 @@ export type ProviderOfferingDetails = {
8656
8674
  readonly uuid?: string;
8657
8675
  readonly created?: string;
8658
8676
  name?: string;
8659
- readonly slug?: string;
8677
+ slug?: string;
8660
8678
  description?: string;
8661
8679
  full_description?: string;
8662
8680
  privacy_policy_link?: string;
@@ -8886,7 +8904,7 @@ export type PublicCall = {
8886
8904
  readonly created?: string;
8887
8905
  readonly start_date?: string;
8888
8906
  readonly end_date?: string;
8889
- readonly slug?: string;
8907
+ slug?: string;
8890
8908
  name?: string;
8891
8909
  description?: string;
8892
8910
  state?: CallStates;
@@ -9133,6 +9151,8 @@ export type QuestionAnswer = {
9133
9151
  readonly question_type: string;
9134
9152
  readonly required: boolean;
9135
9153
  readonly order: number;
9154
+ readonly min_value: string | null;
9155
+ readonly max_value: string | null;
9136
9156
  /**
9137
9157
  * Get total projects count.
9138
9158
  */
@@ -11828,6 +11848,9 @@ export type WidgetEnum = 'csv' | 'filesize' | 'attached_instance';
11828
11848
  /**
11829
11849
  * This mixin allows to specify list of fields to be rendered by serializer.
11830
11850
  * It expects that request is available in serializer's context.
11851
+ *
11852
+ * It is disabled for nested serializers (where parent is another serializer)
11853
+ * but remains active for list views (where parent is a ListSerializer).
11831
11854
  */
11832
11855
  export type AzureVirtualMachineCreateOrderAttributes = {
11833
11856
  name: string;
@@ -11839,6 +11862,9 @@ export type AzureVirtualMachineCreateOrderAttributes = {
11839
11862
  /**
11840
11863
  * This mixin allows to specify list of fields to be rendered by serializer.
11841
11864
  * It expects that request is available in serializer's context.
11865
+ *
11866
+ * It is disabled for nested serializers (where parent is another serializer)
11867
+ * but remains active for list views (where parent is a ListSerializer).
11842
11868
  */
11843
11869
  export type AzureSqlServerCreateOrderAttributes = {
11844
11870
  name: string;
@@ -11848,6 +11874,9 @@ export type AzureSqlServerCreateOrderAttributes = {
11848
11874
  /**
11849
11875
  * This mixin allows to specify list of fields to be rendered by serializer.
11850
11876
  * It expects that request is available in serializer's context.
11877
+ *
11878
+ * It is disabled for nested serializers (where parent is another serializer)
11879
+ * but remains active for list views (where parent is a ListSerializer).
11851
11880
  */
11852
11881
  export type OpenStackTenantCreateOrderAttributes = {
11853
11882
  name: string;
@@ -11863,6 +11892,9 @@ export type OpenStackTenantCreateOrderAttributes = {
11863
11892
  /**
11864
11893
  * This mixin allows to specify list of fields to be rendered by serializer.
11865
11894
  * It expects that request is available in serializer's context.
11895
+ *
11896
+ * It is disabled for nested serializers (where parent is another serializer)
11897
+ * but remains active for list views (where parent is a ListSerializer).
11866
11898
  */
11867
11899
  export type OpenStackInstanceCreateOrderAttributes = {
11868
11900
  name: string;
@@ -11924,6 +11956,9 @@ export type OpenStackInstanceCreateOrderAttributes = {
11924
11956
  /**
11925
11957
  * This mixin allows to specify list of fields to be rendered by serializer.
11926
11958
  * It expects that request is available in serializer's context.
11959
+ *
11960
+ * It is disabled for nested serializers (where parent is another serializer)
11961
+ * but remains active for list views (where parent is a ListSerializer).
11927
11962
  */
11928
11963
  export type OpenStackVolumeCreateOrderAttributes = {
11929
11964
  name: string;
@@ -11948,6 +11983,9 @@ export type OpenStackVolumeCreateOrderAttributes = {
11948
11983
  /**
11949
11984
  * This mixin allows to specify list of fields to be rendered by serializer.
11950
11985
  * It expects that request is available in serializer's context.
11986
+ *
11987
+ * It is disabled for nested serializers (where parent is another serializer)
11988
+ * but remains active for list views (where parent is a ListSerializer).
11951
11989
  */
11952
11990
  export type MarketplaceRancherCreateOrderAttributes = {
11953
11991
  name: string;
@@ -11990,6 +12028,9 @@ export type MarketplaceManagedRancherCreateOrderAttributes = {
11990
12028
  /**
11991
12029
  * This mixin allows to specify list of fields to be rendered by serializer.
11992
12030
  * It expects that request is available in serializer's context.
12031
+ *
12032
+ * It is disabled for nested serializers (where parent is another serializer)
12033
+ * but remains active for list views (where parent is a ListSerializer).
11993
12034
  */
11994
12035
  export type SlurmInvoicesSlurmPackageCreateOrderAttributes = {
11995
12036
  name: string;
@@ -11998,6 +12039,9 @@ export type SlurmInvoicesSlurmPackageCreateOrderAttributes = {
11998
12039
  /**
11999
12040
  * This mixin allows to specify list of fields to be rendered by serializer.
12000
12041
  * It expects that request is available in serializer's context.
12042
+ *
12043
+ * It is disabled for nested serializers (where parent is another serializer)
12044
+ * but remains active for list views (where parent is a ListSerializer).
12001
12045
  */
12002
12046
  export type VMwareVirtualMachineCreateOrderAttributes = {
12003
12047
  name: string;
@@ -12011,6 +12055,20 @@ export type VMwareVirtualMachineCreateOrderAttributes = {
12011
12055
  cluster?: string | null;
12012
12056
  datastore?: string | null;
12013
12057
  };
12058
+ /**
12059
+ * A generic JSON object for offerings without a predefined schema. Allows any key-value pairs.
12060
+ */
12061
+ export type GenericOrderAttributes = {
12062
+ /**
12063
+ * The name of the resource to be created. Will be displayed in the portal.
12064
+ */
12065
+ name?: string;
12066
+ /**
12067
+ * A free-form description for the resource.
12068
+ */
12069
+ description?: string;
12070
+ [key: string]: unknown | string | undefined;
12071
+ };
12014
12072
  /**
12015
12073
  * A page number within the paginated result set.
12016
12074
  */
@@ -14638,8 +14696,15 @@ export type BookingResourcesListData = {
14638
14696
  * Offering shared
14639
14697
  */
14640
14698
  offering_shared?: boolean;
14699
+ /**
14700
+ * Multiple values may be separated by commas.
14701
+ */
14702
+ offering_slug?: Array<string>;
14641
14703
  offering_type?: string;
14642
- offering_uuid?: string;
14704
+ /**
14705
+ * Multiple values may be separated by commas.
14706
+ */
14707
+ offering_uuid?: Array<string>;
14643
14708
  /**
14644
14709
  * A page number within the paginated result set.
14645
14710
  */
@@ -14721,8 +14786,15 @@ export type BookingResourcesCountData = {
14721
14786
  * Offering shared
14722
14787
  */
14723
14788
  offering_shared?: boolean;
14789
+ /**
14790
+ * Multiple values may be separated by commas.
14791
+ */
14792
+ offering_slug?: Array<string>;
14724
14793
  offering_type?: string;
14725
- offering_uuid?: string;
14794
+ /**
14795
+ * Multiple values may be separated by commas.
14796
+ */
14797
+ offering_uuid?: Array<string>;
14726
14798
  /**
14727
14799
  * A page number within the paginated result set.
14728
14800
  */
@@ -16467,7 +16539,7 @@ export type CustomersListData = {
16467
16539
  archived?: boolean;
16468
16540
  backend_id?: string;
16469
16541
  contact_details?: string;
16470
- field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'uuid' | 'vat_code'>;
16542
+ field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
16471
16543
  name?: string;
16472
16544
  name_exact?: string;
16473
16545
  native_name?: string;
@@ -16678,7 +16750,7 @@ export type CustomersRetrieveData = {
16678
16750
  uuid: string;
16679
16751
  };
16680
16752
  query?: {
16681
- field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'uuid' | 'vat_code'>;
16753
+ field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
16682
16754
  };
16683
16755
  url: '/api/customers/{uuid}/';
16684
16756
  };
@@ -21347,7 +21419,14 @@ export type MarketplaceIntegrationStatusesListData = {
21347
21419
  */
21348
21420
  o?: Array<'-last_request_timestamp' | 'last_request_timestamp'>;
21349
21421
  offering?: string;
21350
- offering_uuid?: string;
21422
+ /**
21423
+ * Multiple values may be separated by commas.
21424
+ */
21425
+ offering_slug?: Array<string>;
21426
+ /**
21427
+ * Multiple values may be separated by commas.
21428
+ */
21429
+ offering_uuid?: Array<string>;
21351
21430
  /**
21352
21431
  * A page number within the paginated result set.
21353
21432
  */
@@ -21378,7 +21457,14 @@ export type MarketplaceIntegrationStatusesCountData = {
21378
21457
  */
21379
21458
  o?: Array<'-last_request_timestamp' | 'last_request_timestamp'>;
21380
21459
  offering?: string;
21381
- offering_uuid?: string;
21460
+ /**
21461
+ * Multiple values may be separated by commas.
21462
+ */
21463
+ offering_slug?: Array<string>;
21464
+ /**
21465
+ * Multiple values may be separated by commas.
21466
+ */
21467
+ offering_uuid?: Array<string>;
21382
21468
  /**
21383
21469
  * A page number within the paginated result set.
21384
21470
  */
@@ -21549,7 +21635,14 @@ export type MarketplaceOfferingFilesListData = {
21549
21635
  */
21550
21636
  o?: Array<'-created' | '-name' | 'created' | 'name'>;
21551
21637
  offering?: string;
21552
- offering_uuid?: string;
21638
+ /**
21639
+ * Multiple values may be separated by commas.
21640
+ */
21641
+ offering_slug?: Array<string>;
21642
+ /**
21643
+ * Multiple values may be separated by commas.
21644
+ */
21645
+ offering_uuid?: Array<string>;
21553
21646
  /**
21554
21647
  * A page number within the paginated result set.
21555
21648
  */
@@ -21577,7 +21670,14 @@ export type MarketplaceOfferingFilesCountData = {
21577
21670
  */
21578
21671
  o?: Array<'-created' | '-name' | 'created' | 'name'>;
21579
21672
  offering?: string;
21580
- offering_uuid?: string;
21673
+ /**
21674
+ * Multiple values may be separated by commas.
21675
+ */
21676
+ offering_slug?: Array<string>;
21677
+ /**
21678
+ * Multiple values may be separated by commas.
21679
+ */
21680
+ offering_uuid?: Array<string>;
21581
21681
  /**
21582
21682
  * A page number within the paginated result set.
21583
21683
  */
@@ -22256,7 +22356,14 @@ export type MarketplaceOfferingUserRolesListData = {
22256
22356
  path?: never;
22257
22357
  query?: {
22258
22358
  offering?: string;
22259
- offering_uuid?: string;
22359
+ /**
22360
+ * Multiple values may be separated by commas.
22361
+ */
22362
+ offering_slug?: Array<string>;
22363
+ /**
22364
+ * Multiple values may be separated by commas.
22365
+ */
22366
+ offering_uuid?: Array<string>;
22260
22367
  /**
22261
22368
  * A page number within the paginated result set.
22262
22369
  */
@@ -22278,7 +22385,14 @@ export type MarketplaceOfferingUserRolesCountData = {
22278
22385
  path?: never;
22279
22386
  query?: {
22280
22387
  offering?: string;
22281
- offering_uuid?: string;
22388
+ /**
22389
+ * Multiple values may be separated by commas.
22390
+ */
22391
+ offering_slug?: Array<string>;
22392
+ /**
22393
+ * Multiple values may be separated by commas.
22394
+ */
22395
+ offering_uuid?: Array<string>;
22282
22396
  /**
22283
22397
  * A page number within the paginated result set.
22284
22398
  */
@@ -22379,7 +22493,14 @@ export type MarketplaceOfferingUsersListData = {
22379
22493
  */
22380
22494
  o?: Array<'-created' | '-modified' | '-username' | 'created' | 'modified' | 'username'>;
22381
22495
  offering?: string;
22382
- offering_uuid?: string;
22496
+ /**
22497
+ * Multiple values may be separated by commas.
22498
+ */
22499
+ offering_slug?: Array<string>;
22500
+ /**
22501
+ * Multiple values may be separated by commas.
22502
+ */
22503
+ offering_uuid?: Array<string>;
22383
22504
  /**
22384
22505
  * A page number within the paginated result set.
22385
22506
  */
@@ -22424,7 +22545,14 @@ export type MarketplaceOfferingUsersCountData = {
22424
22545
  */
22425
22546
  o?: Array<'-created' | '-modified' | '-username' | 'created' | 'modified' | 'username'>;
22426
22547
  offering?: string;
22427
- offering_uuid?: string;
22548
+ /**
22549
+ * Multiple values may be separated by commas.
22550
+ */
22551
+ offering_slug?: Array<string>;
22552
+ /**
22553
+ * Multiple values may be separated by commas.
22554
+ */
22555
+ offering_uuid?: Array<string>;
22428
22556
  /**
22429
22557
  * A page number within the paginated result set.
22430
22558
  */
@@ -22814,6 +22942,10 @@ export type MarketplaceOrdersListData = {
22814
22942
  */
22815
22943
  o?: Array<'-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state'>;
22816
22944
  offering?: string;
22945
+ /**
22946
+ * Multiple values may be separated by commas.
22947
+ */
22948
+ offering_slug?: Array<string>;
22817
22949
  offering_type?: Array<string>;
22818
22950
  offering_uuid?: string;
22819
22951
  /**
@@ -22866,6 +22998,10 @@ export type MarketplaceOrdersCountData = {
22866
22998
  */
22867
22999
  o?: Array<'-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state'>;
22868
23000
  offering?: string;
23001
+ /**
23002
+ * Multiple values may be separated by commas.
23003
+ */
23004
+ offering_slug?: Array<string>;
22869
23005
  offering_type?: Array<string>;
22870
23006
  offering_uuid?: string;
22871
23007
  /**
@@ -23161,6 +23297,10 @@ export type MarketplacePlansListData = {
23161
23297
  path?: never;
23162
23298
  query?: {
23163
23299
  offering?: string;
23300
+ /**
23301
+ * Multiple values may be separated by commas.
23302
+ */
23303
+ offering_slug?: Array<string>;
23164
23304
  offering_uuid?: string;
23165
23305
  /**
23166
23306
  * A page number within the paginated result set.
@@ -23183,6 +23323,10 @@ export type MarketplacePlansCountData = {
23183
23323
  path?: never;
23184
23324
  query?: {
23185
23325
  offering?: string;
23326
+ /**
23327
+ * Multiple values may be separated by commas.
23328
+ */
23329
+ offering_slug?: Array<string>;
23186
23330
  offering_uuid?: string;
23187
23331
  /**
23188
23332
  * A page number within the paginated result set.
@@ -23340,6 +23484,10 @@ export type MarketplacePlansUsageStatsListData = {
23340
23484
  customer_provider_uuid?: string;
23341
23485
  o?: string;
23342
23486
  offering?: string;
23487
+ /**
23488
+ * Multiple values may be separated by commas.
23489
+ */
23490
+ offering_slug?: Array<string>;
23343
23491
  offering_uuid?: string;
23344
23492
  /**
23345
23493
  * A page number within the paginated result set.
@@ -23364,6 +23512,10 @@ export type MarketplacePlansUsageStatsCountData = {
23364
23512
  customer_provider_uuid?: string;
23365
23513
  o?: string;
23366
23514
  offering?: string;
23515
+ /**
23516
+ * Multiple values may be separated by commas.
23517
+ */
23518
+ offering_slug?: Array<string>;
23367
23519
  offering_uuid?: string;
23368
23520
  /**
23369
23521
  * A page number within the paginated result set.
@@ -25074,8 +25226,15 @@ export type MarketplaceProviderResourcesListData = {
25074
25226
  * Offering shared
25075
25227
  */
25076
25228
  offering_shared?: boolean;
25229
+ /**
25230
+ * Multiple values may be separated by commas.
25231
+ */
25232
+ offering_slug?: Array<string>;
25077
25233
  offering_type?: string;
25078
- offering_uuid?: string;
25234
+ /**
25235
+ * Multiple values may be separated by commas.
25236
+ */
25237
+ offering_uuid?: Array<string>;
25079
25238
  /**
25080
25239
  * A page number within the paginated result set.
25081
25240
  */
@@ -25156,8 +25315,15 @@ export type MarketplaceProviderResourcesCountData = {
25156
25315
  * Offering shared
25157
25316
  */
25158
25317
  offering_shared?: boolean;
25318
+ /**
25319
+ * Multiple values may be separated by commas.
25320
+ */
25321
+ offering_slug?: Array<string>;
25159
25322
  offering_type?: string;
25160
- offering_uuid?: string;
25323
+ /**
25324
+ * Multiple values may be separated by commas.
25325
+ */
25326
+ offering_uuid?: Array<string>;
25161
25327
  /**
25162
25328
  * A page number within the paginated result set.
25163
25329
  */
@@ -26009,8 +26175,15 @@ export type MarketplaceResourcesListData = {
26009
26175
  * Offering shared
26010
26176
  */
26011
26177
  offering_shared?: boolean;
26178
+ /**
26179
+ * Multiple values may be separated by commas.
26180
+ */
26181
+ offering_slug?: Array<string>;
26012
26182
  offering_type?: string;
26013
- offering_uuid?: string;
26183
+ /**
26184
+ * Multiple values may be separated by commas.
26185
+ */
26186
+ offering_uuid?: Array<string>;
26014
26187
  /**
26015
26188
  * A page number within the paginated result set.
26016
26189
  */
@@ -26091,8 +26264,15 @@ export type MarketplaceResourcesCountData = {
26091
26264
  * Offering shared
26092
26265
  */
26093
26266
  offering_shared?: boolean;
26267
+ /**
26268
+ * Multiple values may be separated by commas.
26269
+ */
26270
+ offering_slug?: Array<string>;
26094
26271
  offering_type?: string;
26095
- offering_uuid?: string;
26272
+ /**
26273
+ * Multiple values may be separated by commas.
26274
+ */
26275
+ offering_uuid?: Array<string>;
26096
26276
  /**
26097
26277
  * A page number within the paginated result set.
26098
26278
  */
@@ -26599,7 +26779,14 @@ export type MarketplaceScreenshotsListData = {
26599
26779
  */
26600
26780
  o?: Array<'-created' | '-name' | 'created' | 'name'>;
26601
26781
  offering?: string;
26602
- offering_uuid?: string;
26782
+ /**
26783
+ * Multiple values may be separated by commas.
26784
+ */
26785
+ offering_slug?: Array<string>;
26786
+ /**
26787
+ * Multiple values may be separated by commas.
26788
+ */
26789
+ offering_uuid?: Array<string>;
26603
26790
  /**
26604
26791
  * A page number within the paginated result set.
26605
26792
  */
@@ -26627,7 +26814,14 @@ export type MarketplaceScreenshotsCountData = {
26627
26814
  */
26628
26815
  o?: Array<'-created' | '-name' | 'created' | 'name'>;
26629
26816
  offering?: string;
26630
- offering_uuid?: string;
26817
+ /**
26818
+ * Multiple values may be separated by commas.
26819
+ */
26820
+ offering_slug?: Array<string>;
26821
+ /**
26822
+ * Multiple values may be separated by commas.
26823
+ */
26824
+ offering_uuid?: Array<string>;
26631
26825
  /**
26632
26826
  * A page number within the paginated result set.
26633
26827
  */
@@ -30379,7 +30573,7 @@ export type OpenstackNetworksListData = {
30379
30573
  */
30380
30574
  direct_only?: boolean;
30381
30575
  external_ip?: string;
30382
- field?: Array<'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'error_message' | 'error_traceback' | 'is_external' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'mtu' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'rbac_policies' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnets' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'type' | 'url' | 'uuid'>;
30576
+ field?: Array<'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'error_message' | 'error_traceback' | 'is_external' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'mtu' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'rbac_policies' | 'resource_type' | 'segmentation_id' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnets' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'type' | 'url' | 'uuid'>;
30383
30577
  is_external?: boolean;
30384
30578
  name?: string;
30385
30579
  name_exact?: string;
@@ -30499,7 +30693,7 @@ export type OpenstackNetworksRetrieveData = {
30499
30693
  uuid: string;
30500
30694
  };
30501
30695
  query?: {
30502
- field?: Array<'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'error_message' | 'error_traceback' | 'is_external' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'mtu' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'rbac_policies' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnets' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'type' | 'url' | 'uuid'>;
30696
+ field?: Array<'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'error_message' | 'error_traceback' | 'is_external' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'mtu' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'rbac_policies' | 'resource_type' | 'segmentation_id' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnets' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'type' | 'url' | 'uuid'>;
30503
30697
  };
30504
30698
  url: '/api/openstack-networks/{uuid}/';
30505
30699
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.7.7-dev.5",
3
+ "version": "7.7.7-dev.7",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",