waldur-js-client 7.7.7-dev.6 → 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 +205 -27
  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.
@@ -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;
@@ -11830,6 +11848,9 @@ export type WidgetEnum = 'csv' | 'filesize' | 'attached_instance';
11830
11848
  /**
11831
11849
  * This mixin allows to specify list of fields to be rendered by serializer.
11832
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).
11833
11854
  */
11834
11855
  export type AzureVirtualMachineCreateOrderAttributes = {
11835
11856
  name: string;
@@ -11841,6 +11862,9 @@ export type AzureVirtualMachineCreateOrderAttributes = {
11841
11862
  /**
11842
11863
  * This mixin allows to specify list of fields to be rendered by serializer.
11843
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).
11844
11868
  */
11845
11869
  export type AzureSqlServerCreateOrderAttributes = {
11846
11870
  name: string;
@@ -11850,6 +11874,9 @@ export type AzureSqlServerCreateOrderAttributes = {
11850
11874
  /**
11851
11875
  * This mixin allows to specify list of fields to be rendered by serializer.
11852
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).
11853
11880
  */
11854
11881
  export type OpenStackTenantCreateOrderAttributes = {
11855
11882
  name: string;
@@ -11865,6 +11892,9 @@ export type OpenStackTenantCreateOrderAttributes = {
11865
11892
  /**
11866
11893
  * This mixin allows to specify list of fields to be rendered by serializer.
11867
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).
11868
11898
  */
11869
11899
  export type OpenStackInstanceCreateOrderAttributes = {
11870
11900
  name: string;
@@ -11926,6 +11956,9 @@ export type OpenStackInstanceCreateOrderAttributes = {
11926
11956
  /**
11927
11957
  * This mixin allows to specify list of fields to be rendered by serializer.
11928
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).
11929
11962
  */
11930
11963
  export type OpenStackVolumeCreateOrderAttributes = {
11931
11964
  name: string;
@@ -11950,6 +11983,9 @@ export type OpenStackVolumeCreateOrderAttributes = {
11950
11983
  /**
11951
11984
  * This mixin allows to specify list of fields to be rendered by serializer.
11952
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).
11953
11989
  */
11954
11990
  export type MarketplaceRancherCreateOrderAttributes = {
11955
11991
  name: string;
@@ -11992,6 +12028,9 @@ export type MarketplaceManagedRancherCreateOrderAttributes = {
11992
12028
  /**
11993
12029
  * This mixin allows to specify list of fields to be rendered by serializer.
11994
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).
11995
12034
  */
11996
12035
  export type SlurmInvoicesSlurmPackageCreateOrderAttributes = {
11997
12036
  name: string;
@@ -12000,6 +12039,9 @@ export type SlurmInvoicesSlurmPackageCreateOrderAttributes = {
12000
12039
  /**
12001
12040
  * This mixin allows to specify list of fields to be rendered by serializer.
12002
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).
12003
12045
  */
12004
12046
  export type VMwareVirtualMachineCreateOrderAttributes = {
12005
12047
  name: string;
@@ -14654,8 +14696,15 @@ export type BookingResourcesListData = {
14654
14696
  * Offering shared
14655
14697
  */
14656
14698
  offering_shared?: boolean;
14699
+ /**
14700
+ * Multiple values may be separated by commas.
14701
+ */
14702
+ offering_slug?: Array<string>;
14657
14703
  offering_type?: string;
14658
- offering_uuid?: string;
14704
+ /**
14705
+ * Multiple values may be separated by commas.
14706
+ */
14707
+ offering_uuid?: Array<string>;
14659
14708
  /**
14660
14709
  * A page number within the paginated result set.
14661
14710
  */
@@ -14737,8 +14786,15 @@ export type BookingResourcesCountData = {
14737
14786
  * Offering shared
14738
14787
  */
14739
14788
  offering_shared?: boolean;
14789
+ /**
14790
+ * Multiple values may be separated by commas.
14791
+ */
14792
+ offering_slug?: Array<string>;
14740
14793
  offering_type?: string;
14741
- offering_uuid?: string;
14794
+ /**
14795
+ * Multiple values may be separated by commas.
14796
+ */
14797
+ offering_uuid?: Array<string>;
14742
14798
  /**
14743
14799
  * A page number within the paginated result set.
14744
14800
  */
@@ -16483,7 +16539,7 @@ export type CustomersListData = {
16483
16539
  archived?: boolean;
16484
16540
  backend_id?: string;
16485
16541
  contact_details?: string;
16486
- 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'>;
16487
16543
  name?: string;
16488
16544
  name_exact?: string;
16489
16545
  native_name?: string;
@@ -16694,7 +16750,7 @@ export type CustomersRetrieveData = {
16694
16750
  uuid: string;
16695
16751
  };
16696
16752
  query?: {
16697
- 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'>;
16698
16754
  };
16699
16755
  url: '/api/customers/{uuid}/';
16700
16756
  };
@@ -21363,7 +21419,14 @@ export type MarketplaceIntegrationStatusesListData = {
21363
21419
  */
21364
21420
  o?: Array<'-last_request_timestamp' | 'last_request_timestamp'>;
21365
21421
  offering?: string;
21366
- 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>;
21367
21430
  /**
21368
21431
  * A page number within the paginated result set.
21369
21432
  */
@@ -21394,7 +21457,14 @@ export type MarketplaceIntegrationStatusesCountData = {
21394
21457
  */
21395
21458
  o?: Array<'-last_request_timestamp' | 'last_request_timestamp'>;
21396
21459
  offering?: string;
21397
- 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>;
21398
21468
  /**
21399
21469
  * A page number within the paginated result set.
21400
21470
  */
@@ -21565,7 +21635,14 @@ export type MarketplaceOfferingFilesListData = {
21565
21635
  */
21566
21636
  o?: Array<'-created' | '-name' | 'created' | 'name'>;
21567
21637
  offering?: string;
21568
- 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>;
21569
21646
  /**
21570
21647
  * A page number within the paginated result set.
21571
21648
  */
@@ -21593,7 +21670,14 @@ export type MarketplaceOfferingFilesCountData = {
21593
21670
  */
21594
21671
  o?: Array<'-created' | '-name' | 'created' | 'name'>;
21595
21672
  offering?: string;
21596
- 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>;
21597
21681
  /**
21598
21682
  * A page number within the paginated result set.
21599
21683
  */
@@ -22272,7 +22356,14 @@ export type MarketplaceOfferingUserRolesListData = {
22272
22356
  path?: never;
22273
22357
  query?: {
22274
22358
  offering?: string;
22275
- 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>;
22276
22367
  /**
22277
22368
  * A page number within the paginated result set.
22278
22369
  */
@@ -22294,7 +22385,14 @@ export type MarketplaceOfferingUserRolesCountData = {
22294
22385
  path?: never;
22295
22386
  query?: {
22296
22387
  offering?: string;
22297
- 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>;
22298
22396
  /**
22299
22397
  * A page number within the paginated result set.
22300
22398
  */
@@ -22395,7 +22493,14 @@ export type MarketplaceOfferingUsersListData = {
22395
22493
  */
22396
22494
  o?: Array<'-created' | '-modified' | '-username' | 'created' | 'modified' | 'username'>;
22397
22495
  offering?: string;
22398
- 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>;
22399
22504
  /**
22400
22505
  * A page number within the paginated result set.
22401
22506
  */
@@ -22440,7 +22545,14 @@ export type MarketplaceOfferingUsersCountData = {
22440
22545
  */
22441
22546
  o?: Array<'-created' | '-modified' | '-username' | 'created' | 'modified' | 'username'>;
22442
22547
  offering?: string;
22443
- 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>;
22444
22556
  /**
22445
22557
  * A page number within the paginated result set.
22446
22558
  */
@@ -22830,6 +22942,10 @@ export type MarketplaceOrdersListData = {
22830
22942
  */
22831
22943
  o?: Array<'-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state'>;
22832
22944
  offering?: string;
22945
+ /**
22946
+ * Multiple values may be separated by commas.
22947
+ */
22948
+ offering_slug?: Array<string>;
22833
22949
  offering_type?: Array<string>;
22834
22950
  offering_uuid?: string;
22835
22951
  /**
@@ -22882,6 +22998,10 @@ export type MarketplaceOrdersCountData = {
22882
22998
  */
22883
22999
  o?: Array<'-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state'>;
22884
23000
  offering?: string;
23001
+ /**
23002
+ * Multiple values may be separated by commas.
23003
+ */
23004
+ offering_slug?: Array<string>;
22885
23005
  offering_type?: Array<string>;
22886
23006
  offering_uuid?: string;
22887
23007
  /**
@@ -23177,6 +23297,10 @@ export type MarketplacePlansListData = {
23177
23297
  path?: never;
23178
23298
  query?: {
23179
23299
  offering?: string;
23300
+ /**
23301
+ * Multiple values may be separated by commas.
23302
+ */
23303
+ offering_slug?: Array<string>;
23180
23304
  offering_uuid?: string;
23181
23305
  /**
23182
23306
  * A page number within the paginated result set.
@@ -23199,6 +23323,10 @@ export type MarketplacePlansCountData = {
23199
23323
  path?: never;
23200
23324
  query?: {
23201
23325
  offering?: string;
23326
+ /**
23327
+ * Multiple values may be separated by commas.
23328
+ */
23329
+ offering_slug?: Array<string>;
23202
23330
  offering_uuid?: string;
23203
23331
  /**
23204
23332
  * A page number within the paginated result set.
@@ -23356,6 +23484,10 @@ export type MarketplacePlansUsageStatsListData = {
23356
23484
  customer_provider_uuid?: string;
23357
23485
  o?: string;
23358
23486
  offering?: string;
23487
+ /**
23488
+ * Multiple values may be separated by commas.
23489
+ */
23490
+ offering_slug?: Array<string>;
23359
23491
  offering_uuid?: string;
23360
23492
  /**
23361
23493
  * A page number within the paginated result set.
@@ -23380,6 +23512,10 @@ export type MarketplacePlansUsageStatsCountData = {
23380
23512
  customer_provider_uuid?: string;
23381
23513
  o?: string;
23382
23514
  offering?: string;
23515
+ /**
23516
+ * Multiple values may be separated by commas.
23517
+ */
23518
+ offering_slug?: Array<string>;
23383
23519
  offering_uuid?: string;
23384
23520
  /**
23385
23521
  * A page number within the paginated result set.
@@ -25090,8 +25226,15 @@ export type MarketplaceProviderResourcesListData = {
25090
25226
  * Offering shared
25091
25227
  */
25092
25228
  offering_shared?: boolean;
25229
+ /**
25230
+ * Multiple values may be separated by commas.
25231
+ */
25232
+ offering_slug?: Array<string>;
25093
25233
  offering_type?: string;
25094
- offering_uuid?: string;
25234
+ /**
25235
+ * Multiple values may be separated by commas.
25236
+ */
25237
+ offering_uuid?: Array<string>;
25095
25238
  /**
25096
25239
  * A page number within the paginated result set.
25097
25240
  */
@@ -25172,8 +25315,15 @@ export type MarketplaceProviderResourcesCountData = {
25172
25315
  * Offering shared
25173
25316
  */
25174
25317
  offering_shared?: boolean;
25318
+ /**
25319
+ * Multiple values may be separated by commas.
25320
+ */
25321
+ offering_slug?: Array<string>;
25175
25322
  offering_type?: string;
25176
- offering_uuid?: string;
25323
+ /**
25324
+ * Multiple values may be separated by commas.
25325
+ */
25326
+ offering_uuid?: Array<string>;
25177
25327
  /**
25178
25328
  * A page number within the paginated result set.
25179
25329
  */
@@ -26025,8 +26175,15 @@ export type MarketplaceResourcesListData = {
26025
26175
  * Offering shared
26026
26176
  */
26027
26177
  offering_shared?: boolean;
26178
+ /**
26179
+ * Multiple values may be separated by commas.
26180
+ */
26181
+ offering_slug?: Array<string>;
26028
26182
  offering_type?: string;
26029
- offering_uuid?: string;
26183
+ /**
26184
+ * Multiple values may be separated by commas.
26185
+ */
26186
+ offering_uuid?: Array<string>;
26030
26187
  /**
26031
26188
  * A page number within the paginated result set.
26032
26189
  */
@@ -26107,8 +26264,15 @@ export type MarketplaceResourcesCountData = {
26107
26264
  * Offering shared
26108
26265
  */
26109
26266
  offering_shared?: boolean;
26267
+ /**
26268
+ * Multiple values may be separated by commas.
26269
+ */
26270
+ offering_slug?: Array<string>;
26110
26271
  offering_type?: string;
26111
- offering_uuid?: string;
26272
+ /**
26273
+ * Multiple values may be separated by commas.
26274
+ */
26275
+ offering_uuid?: Array<string>;
26112
26276
  /**
26113
26277
  * A page number within the paginated result set.
26114
26278
  */
@@ -26615,7 +26779,14 @@ export type MarketplaceScreenshotsListData = {
26615
26779
  */
26616
26780
  o?: Array<'-created' | '-name' | 'created' | 'name'>;
26617
26781
  offering?: string;
26618
- 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>;
26619
26790
  /**
26620
26791
  * A page number within the paginated result set.
26621
26792
  */
@@ -26643,7 +26814,14 @@ export type MarketplaceScreenshotsCountData = {
26643
26814
  */
26644
26815
  o?: Array<'-created' | '-name' | 'created' | 'name'>;
26645
26816
  offering?: string;
26646
- 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>;
26647
26825
  /**
26648
26826
  * A page number within the paginated result set.
26649
26827
  */
@@ -30395,7 +30573,7 @@ export type OpenstackNetworksListData = {
30395
30573
  */
30396
30574
  direct_only?: boolean;
30397
30575
  external_ip?: string;
30398
- 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'>;
30399
30577
  is_external?: boolean;
30400
30578
  name?: string;
30401
30579
  name_exact?: string;
@@ -30515,7 +30693,7 @@ export type OpenstackNetworksRetrieveData = {
30515
30693
  uuid: string;
30516
30694
  };
30517
30695
  query?: {
30518
- 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'>;
30519
30697
  };
30520
30698
  url: '/api/openstack-networks/{uuid}/';
30521
30699
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.7.7-dev.6",
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",