waldur-js-client 7.8.8-dev.1 → 7.8.8-dev.3

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.
@@ -1909,6 +1909,7 @@ export type ConstanceSettings = {
1909
1909
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
1910
1910
  ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
1911
1911
  DISABLED_OFFERING_TYPES?: Array<string>;
1912
+ ONBOARDING_COUNTRY?: string;
1912
1913
  ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
1913
1914
  ONBOARDING_ARIREGISTER_BASE_URL?: string;
1914
1915
  ONBOARDING_ARIREGISTER_USERNAME?: string;
@@ -1916,6 +1917,10 @@ export type ConstanceSettings = {
1916
1917
  ONBOARDING_ARIREGISTER_TIMEOUT?: number;
1917
1918
  ONBOARDING_WICO_API_URL?: string;
1918
1919
  ONBOARDING_WICO_TOKEN?: string;
1920
+ ONBOARDING_BOLAGSVERKET_API_URL?: string;
1921
+ ONBOARDING_BOLAGSVERKET_TOKEN_API_URL?: string;
1922
+ ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
1923
+ ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
1919
1924
  };
1920
1925
  export type ConstanceSettingsRequest = {
1921
1926
  SITE_NAME?: string;
@@ -2059,6 +2064,7 @@ export type ConstanceSettingsRequest = {
2059
2064
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
2060
2065
  ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
2061
2066
  DISABLED_OFFERING_TYPES?: Array<string>;
2067
+ ONBOARDING_COUNTRY?: string;
2062
2068
  ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
2063
2069
  ONBOARDING_ARIREGISTER_BASE_URL?: string;
2064
2070
  ONBOARDING_ARIREGISTER_USERNAME?: string;
@@ -2066,6 +2072,10 @@ export type ConstanceSettingsRequest = {
2066
2072
  ONBOARDING_ARIREGISTER_TIMEOUT?: number;
2067
2073
  ONBOARDING_WICO_API_URL?: string;
2068
2074
  ONBOARDING_WICO_TOKEN?: string;
2075
+ ONBOARDING_BOLAGSVERKET_API_URL?: string;
2076
+ ONBOARDING_BOLAGSVERKET_TOKEN_API_URL?: string;
2077
+ ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
2078
+ ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
2069
2079
  };
2070
2080
  export type ContainerFormatEnum = 'bare' | 'ovf' | 'aki' | 'ami' | 'ari';
2071
2081
  export type CoreAuthToken = {
@@ -2251,6 +2261,10 @@ export type Customer = {
2251
2261
  */
2252
2262
  readonly max_service_accounts?: number | null;
2253
2263
  readonly project_metadata_checklist?: string | null;
2264
+ /**
2265
+ * Number of extra days after project end date before resources are terminated
2266
+ */
2267
+ readonly grace_period_days?: number | null;
2254
2268
  name?: string;
2255
2269
  slug?: string;
2256
2270
  native_name?: string;
@@ -3711,6 +3725,7 @@ export type LexisLinkRequest = {
3711
3725
  heappe_project_id?: number | null;
3712
3726
  };
3713
3727
  export type LimitPeriodEnum = 'month' | 'quarterly' | 'annual' | 'total';
3728
+ export type LimitTypeEnum = 'GrpTRESMins' | 'MaxTRESMins' | 'GrpTRES';
3714
3729
  export type LinkOpenstackRequest = {
3715
3730
  instance: string;
3716
3731
  };
@@ -6326,6 +6341,22 @@ export type OnboardingCompanyValidationRequestRequest = {
6326
6341
  * Indicates if the validation is to be performed manually
6327
6342
  */
6328
6343
  is_manual_validation?: boolean;
6344
+ /**
6345
+ * Personal identifier (temporary workaround for Estonian civil_number)
6346
+ */
6347
+ person_identifier?: string;
6348
+ /**
6349
+ * User's first name (temporary workaround for Austrian validation)
6350
+ */
6351
+ first_name?: string;
6352
+ /**
6353
+ * User's last name (temporary workaround for Austrian validation)
6354
+ */
6355
+ last_name?: string;
6356
+ /**
6357
+ * User's birth date (temporary workaround for Austrian validation)
6358
+ */
6359
+ birth_date?: string | null;
6329
6360
  };
6330
6361
  export type OnboardingCountryChecklistConfiguration = {
6331
6362
  readonly url: string;
@@ -9166,6 +9197,10 @@ export type PatchedProjectRequest = {
9166
9197
  */
9167
9198
  kind?: KindEnum;
9168
9199
  staff_notes?: string;
9200
+ /**
9201
+ * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
9202
+ */
9203
+ grace_period_days?: number | null;
9169
9204
  };
9170
9205
  export type PatchedProjectServiceAccountRequest = {
9171
9206
  username?: string;
@@ -9542,6 +9577,49 @@ export type PatchedSlurmAllocationRequest = {
9542
9577
  name?: string;
9543
9578
  description?: string;
9544
9579
  };
9580
+ export type PatchedSlurmPeriodicUsagePolicyRequest = {
9581
+ scope?: string;
9582
+ actions?: string;
9583
+ /**
9584
+ * Fields for saving actions extra data. Keys are name of actions.
9585
+ */
9586
+ options?: unknown;
9587
+ organization_groups?: Array<string>;
9588
+ component_limits_set?: Array<NestedOfferingComponentLimitRequest>;
9589
+ period?: PeriodEnum;
9590
+ /**
9591
+ * SLURM limit type to apply
9592
+ */
9593
+ limit_type?: LimitTypeEnum;
9594
+ /**
9595
+ * Use TRES billing units instead of raw TRES values
9596
+ */
9597
+ tres_billing_enabled?: boolean;
9598
+ /**
9599
+ * TRES billing weights (e.g., {"CPU": 0.015625, "Mem": 0.001953125, "GRES/gpu": 0.25})
9600
+ */
9601
+ tres_billing_weights?: unknown;
9602
+ /**
9603
+ * Fairshare decay half-life in days (matches SLURM PriorityDecayHalfLife)
9604
+ */
9605
+ fairshare_decay_half_life?: number;
9606
+ /**
9607
+ * Grace period ratio (0.2 = 20% overconsumption allowed)
9608
+ */
9609
+ grace_ratio?: number;
9610
+ /**
9611
+ * Enable unused allocation carryover to next period
9612
+ */
9613
+ carryover_enabled?: boolean;
9614
+ /**
9615
+ * Reset raw usage at period transitions (PriorityUsageResetPeriod=None)
9616
+ */
9617
+ raw_usage_reset?: boolean;
9618
+ /**
9619
+ * QoS management strategy
9620
+ */
9621
+ qos_strategy?: QosStrategyEnum;
9622
+ };
9545
9623
  export type PatchedSoftwareCatalogRequest = {
9546
9624
  /**
9547
9625
  * Catalog name (e.g., EESSI)
@@ -9886,6 +9964,10 @@ export type Project = {
9886
9964
  readonly is_removed?: boolean;
9887
9965
  readonly termination_metadata?: unknown;
9888
9966
  staff_notes?: string;
9967
+ /**
9968
+ * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
9969
+ */
9970
+ grace_period_days?: number | null;
9889
9971
  readonly project_credit?: number | null;
9890
9972
  readonly marketplace_resource_count?: {
9891
9973
  [key: string]: number;
@@ -10092,6 +10174,10 @@ export type ProjectRequest = {
10092
10174
  */
10093
10175
  kind?: KindEnum;
10094
10176
  staff_notes?: string;
10177
+ /**
10178
+ * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
10179
+ */
10180
+ grace_period_days?: number | null;
10095
10181
  };
10096
10182
  export type ProjectServiceAccount = {
10097
10183
  readonly url: string;
@@ -10832,6 +10918,7 @@ export type PublicOfferingDetails = {
10832
10918
  export type PullMarketplaceScriptResourceRequest = {
10833
10919
  resource_uuid: string;
10834
10920
  };
10921
+ export type QosStrategyEnum = 'threshold' | 'progressive';
10835
10922
  export type QueryRequest = {
10836
10923
  query: string;
10837
10924
  };
@@ -13103,6 +13190,102 @@ export type SlurmAssociation = {
13103
13190
  username: string;
13104
13191
  allocation: string;
13105
13192
  };
13193
+ export type SlurmPeriodicUsagePolicy = {
13194
+ readonly uuid: string;
13195
+ readonly url: string;
13196
+ scope: string;
13197
+ readonly scope_name: string;
13198
+ readonly scope_uuid: string;
13199
+ actions: string;
13200
+ readonly created: string;
13201
+ readonly created_by_full_name: string;
13202
+ readonly created_by_username: string;
13203
+ readonly has_fired: boolean;
13204
+ readonly fired_datetime: string;
13205
+ /**
13206
+ * Fields for saving actions extra data. Keys are name of actions.
13207
+ */
13208
+ options?: unknown;
13209
+ organization_groups: Array<string>;
13210
+ component_limits_set: Array<NestedOfferingComponentLimit>;
13211
+ period?: PeriodEnum;
13212
+ readonly period_name: string;
13213
+ /**
13214
+ * SLURM limit type to apply
13215
+ */
13216
+ limit_type?: LimitTypeEnum;
13217
+ /**
13218
+ * Use TRES billing units instead of raw TRES values
13219
+ */
13220
+ tres_billing_enabled?: boolean;
13221
+ /**
13222
+ * TRES billing weights (e.g., {"CPU": 0.015625, "Mem": 0.001953125, "GRES/gpu": 0.25})
13223
+ */
13224
+ tres_billing_weights?: unknown;
13225
+ /**
13226
+ * Fairshare decay half-life in days (matches SLURM PriorityDecayHalfLife)
13227
+ */
13228
+ fairshare_decay_half_life?: number;
13229
+ /**
13230
+ * Grace period ratio (0.2 = 20% overconsumption allowed)
13231
+ */
13232
+ grace_ratio?: number;
13233
+ /**
13234
+ * Enable unused allocation carryover to next period
13235
+ */
13236
+ carryover_enabled?: boolean;
13237
+ /**
13238
+ * Reset raw usage at period transitions (PriorityUsageResetPeriod=None)
13239
+ */
13240
+ raw_usage_reset?: boolean;
13241
+ /**
13242
+ * QoS management strategy
13243
+ */
13244
+ qos_strategy?: QosStrategyEnum;
13245
+ };
13246
+ export type SlurmPeriodicUsagePolicyRequest = {
13247
+ scope: string;
13248
+ actions: string;
13249
+ /**
13250
+ * Fields for saving actions extra data. Keys are name of actions.
13251
+ */
13252
+ options?: unknown;
13253
+ organization_groups: Array<string>;
13254
+ component_limits_set: Array<NestedOfferingComponentLimitRequest>;
13255
+ period?: PeriodEnum;
13256
+ /**
13257
+ * SLURM limit type to apply
13258
+ */
13259
+ limit_type?: LimitTypeEnum;
13260
+ /**
13261
+ * Use TRES billing units instead of raw TRES values
13262
+ */
13263
+ tres_billing_enabled?: boolean;
13264
+ /**
13265
+ * TRES billing weights (e.g., {"CPU": 0.015625, "Mem": 0.001953125, "GRES/gpu": 0.25})
13266
+ */
13267
+ tres_billing_weights?: unknown;
13268
+ /**
13269
+ * Fairshare decay half-life in days (matches SLURM PriorityDecayHalfLife)
13270
+ */
13271
+ fairshare_decay_half_life?: number;
13272
+ /**
13273
+ * Grace period ratio (0.2 = 20% overconsumption allowed)
13274
+ */
13275
+ grace_ratio?: number;
13276
+ /**
13277
+ * Enable unused allocation carryover to next period
13278
+ */
13279
+ carryover_enabled?: boolean;
13280
+ /**
13281
+ * Reset raw usage at period transitions (PriorityUsageResetPeriod=None)
13282
+ */
13283
+ raw_usage_reset?: boolean;
13284
+ /**
13285
+ * QoS management strategy
13286
+ */
13287
+ qos_strategy?: QosStrategyEnum;
13288
+ };
13106
13289
  export type SmaxWebHookReceiver = {
13107
13290
  id: string;
13108
13291
  };
@@ -13612,7 +13795,7 @@ export type UserRoleUpdateRequest = {
13612
13795
  };
13613
13796
  export type UsernameGenerationPolicyEnum = 'service_provider' | 'anonymized' | 'full_name' | 'waldur_username' | 'freeipa' | 'identity_claim';
13614
13797
  export type ValidationDecisionEnum = 'approved' | 'rejected' | 'pending';
13615
- export type ValidationMethodEnum = 'ariregister' | 'wirtschaftscompass';
13798
+ export type ValidationMethodEnum = 'ariregister' | 'wirtschaftscompass' | 'bolagsverket';
13616
13799
  export type Version = {
13617
13800
  /**
13618
13801
  * Current installed version of the application
@@ -14763,6 +14946,7 @@ export type ConstanceSettingsRequestForm = {
14763
14946
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
14764
14947
  ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
14765
14948
  DISABLED_OFFERING_TYPES?: Array<string>;
14949
+ ONBOARDING_COUNTRY?: string;
14766
14950
  ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
14767
14951
  ONBOARDING_ARIREGISTER_BASE_URL?: string;
14768
14952
  ONBOARDING_ARIREGISTER_USERNAME?: string;
@@ -14770,6 +14954,10 @@ export type ConstanceSettingsRequestForm = {
14770
14954
  ONBOARDING_ARIREGISTER_TIMEOUT?: number;
14771
14955
  ONBOARDING_WICO_API_URL?: string;
14772
14956
  ONBOARDING_WICO_TOKEN?: string;
14957
+ ONBOARDING_BOLAGSVERKET_API_URL?: string;
14958
+ ONBOARDING_BOLAGSVERKET_TOKEN_API_URL?: string;
14959
+ ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
14960
+ ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
14773
14961
  };
14774
14962
  export type ConstanceSettingsRequestMultipart = {
14775
14963
  SITE_NAME?: string;
@@ -14913,6 +15101,7 @@ export type ConstanceSettingsRequestMultipart = {
14913
15101
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
14914
15102
  ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
14915
15103
  DISABLED_OFFERING_TYPES?: Array<string>;
15104
+ ONBOARDING_COUNTRY?: string;
14916
15105
  ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
14917
15106
  ONBOARDING_ARIREGISTER_BASE_URL?: string;
14918
15107
  ONBOARDING_ARIREGISTER_USERNAME?: string;
@@ -14920,6 +15109,10 @@ export type ConstanceSettingsRequestMultipart = {
14920
15109
  ONBOARDING_ARIREGISTER_TIMEOUT?: number;
14921
15110
  ONBOARDING_WICO_API_URL?: string;
14922
15111
  ONBOARDING_WICO_TOKEN?: string;
15112
+ ONBOARDING_BOLAGSVERKET_API_URL?: string;
15113
+ ONBOARDING_BOLAGSVERKET_TOKEN_API_URL?: string;
15114
+ ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
15115
+ ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
14923
15116
  };
14924
15117
  export type PaymentRequestForm = {
14925
15118
  profile: string;
@@ -14968,6 +15161,10 @@ export type ProjectRequestForm = {
14968
15161
  */
14969
15162
  kind?: KindEnum;
14970
15163
  staff_notes?: string;
15164
+ /**
15165
+ * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
15166
+ */
15167
+ grace_period_days?: number | null;
14971
15168
  };
14972
15169
  export type ProjectRequestMultipart = {
14973
15170
  name: string;
@@ -14992,6 +15189,10 @@ export type ProjectRequestMultipart = {
14992
15189
  */
14993
15190
  kind?: KindEnum;
14994
15191
  staff_notes?: string;
15192
+ /**
15193
+ * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
15194
+ */
15195
+ grace_period_days?: number | null;
14995
15196
  };
14996
15197
  export type PatchedProjectRequestForm = {
14997
15198
  name?: string;
@@ -15016,6 +15217,10 @@ export type PatchedProjectRequestForm = {
15016
15217
  */
15017
15218
  kind?: KindEnum;
15018
15219
  staff_notes?: string;
15220
+ /**
15221
+ * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
15222
+ */
15223
+ grace_period_days?: number | null;
15019
15224
  };
15020
15225
  export type PatchedProjectRequestMultipart = {
15021
15226
  name?: string;
@@ -15040,6 +15245,10 @@ export type PatchedProjectRequestMultipart = {
15040
15245
  */
15041
15246
  kind?: KindEnum;
15042
15247
  staff_notes?: string;
15248
+ /**
15249
+ * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
15250
+ */
15251
+ grace_period_days?: number | null;
15043
15252
  };
15044
15253
  export type ProposalDocumentationRequestForm = {
15045
15254
  /**
@@ -19858,7 +20067,7 @@ export type CustomersListData = {
19858
20067
  archived?: boolean;
19859
20068
  backend_id?: string;
19860
20069
  contact_details?: string;
19861
- 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' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | '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'>;
20070
+ 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' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'grace_period_days' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | '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'>;
19862
20071
  name?: string;
19863
20072
  name_exact?: string;
19864
20073
  native_name?: string;
@@ -20136,7 +20345,7 @@ export type CustomersRetrieveData = {
20136
20345
  uuid: string;
20137
20346
  };
20138
20347
  query?: {
20139
- 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' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | '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'>;
20348
+ 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' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'grace_period_days' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | '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'>;
20140
20349
  };
20141
20350
  url: '/api/customers/{uuid}/';
20142
20351
  };
@@ -28605,7 +28814,7 @@ export type MarketplaceProviderOfferingsListCustomerProjectsListData = {
28605
28814
  uuid: string;
28606
28815
  };
28607
28816
  query?: {
28608
- field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
28817
+ field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
28609
28818
  /**
28610
28819
  * A page number within the paginated result set.
28611
28820
  */
@@ -32086,7 +32295,7 @@ export type MarketplaceServiceProvidersProjectsListData = {
32086
32295
  customer_name?: string;
32087
32296
  customer_native_name?: string;
32088
32297
  description?: string;
32089
- field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
32298
+ field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
32090
32299
  is_removed?: boolean;
32091
32300
  /**
32092
32301
  * Modified after
@@ -32800,6 +33009,133 @@ export type MarketplaceSiteAgentServicesSetStatisticsResponses = {
32800
33009
  200: AgentService;
32801
33010
  };
32802
33011
  export type MarketplaceSiteAgentServicesSetStatisticsResponse = MarketplaceSiteAgentServicesSetStatisticsResponses[keyof MarketplaceSiteAgentServicesSetStatisticsResponses];
33012
+ export type MarketplaceSlurmPeriodicUsagePoliciesListData = {
33013
+ body?: never;
33014
+ path?: never;
33015
+ query?: {
33016
+ /**
33017
+ * A page number within the paginated result set.
33018
+ */
33019
+ page?: number;
33020
+ /**
33021
+ * Number of results to return per page.
33022
+ */
33023
+ page_size?: number;
33024
+ scope?: string;
33025
+ scope_uuid?: string;
33026
+ };
33027
+ url: '/api/marketplace-slurm-periodic-usage-policies/';
33028
+ };
33029
+ export type MarketplaceSlurmPeriodicUsagePoliciesListResponses = {
33030
+ 200: Array<SlurmPeriodicUsagePolicy>;
33031
+ };
33032
+ export type MarketplaceSlurmPeriodicUsagePoliciesListResponse = MarketplaceSlurmPeriodicUsagePoliciesListResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesListResponses];
33033
+ export type MarketplaceSlurmPeriodicUsagePoliciesCountData = {
33034
+ body?: never;
33035
+ path?: never;
33036
+ query?: {
33037
+ /**
33038
+ * A page number within the paginated result set.
33039
+ */
33040
+ page?: number;
33041
+ /**
33042
+ * Number of results to return per page.
33043
+ */
33044
+ page_size?: number;
33045
+ scope?: string;
33046
+ scope_uuid?: string;
33047
+ };
33048
+ url: '/api/marketplace-slurm-periodic-usage-policies/';
33049
+ };
33050
+ export type MarketplaceSlurmPeriodicUsagePoliciesCountResponses = {
33051
+ /**
33052
+ * No response body
33053
+ */
33054
+ 200: unknown;
33055
+ };
33056
+ export type MarketplaceSlurmPeriodicUsagePoliciesCreateData = {
33057
+ body: SlurmPeriodicUsagePolicyRequest;
33058
+ path?: never;
33059
+ query?: never;
33060
+ url: '/api/marketplace-slurm-periodic-usage-policies/';
33061
+ };
33062
+ export type MarketplaceSlurmPeriodicUsagePoliciesCreateResponses = {
33063
+ 201: SlurmPeriodicUsagePolicy;
33064
+ };
33065
+ export type MarketplaceSlurmPeriodicUsagePoliciesCreateResponse = MarketplaceSlurmPeriodicUsagePoliciesCreateResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesCreateResponses];
33066
+ export type MarketplaceSlurmPeriodicUsagePoliciesDestroyData = {
33067
+ body?: never;
33068
+ path: {
33069
+ uuid: string;
33070
+ };
33071
+ query?: never;
33072
+ url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/';
33073
+ };
33074
+ export type MarketplaceSlurmPeriodicUsagePoliciesDestroyResponses = {
33075
+ /**
33076
+ * No response body
33077
+ */
33078
+ 204: void;
33079
+ };
33080
+ export type MarketplaceSlurmPeriodicUsagePoliciesDestroyResponse = MarketplaceSlurmPeriodicUsagePoliciesDestroyResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesDestroyResponses];
33081
+ export type MarketplaceSlurmPeriodicUsagePoliciesRetrieveData = {
33082
+ body?: never;
33083
+ path: {
33084
+ uuid: string;
33085
+ };
33086
+ query?: never;
33087
+ url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/';
33088
+ };
33089
+ export type MarketplaceSlurmPeriodicUsagePoliciesRetrieveResponses = {
33090
+ 200: SlurmPeriodicUsagePolicy;
33091
+ };
33092
+ export type MarketplaceSlurmPeriodicUsagePoliciesRetrieveResponse = MarketplaceSlurmPeriodicUsagePoliciesRetrieveResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesRetrieveResponses];
33093
+ export type MarketplaceSlurmPeriodicUsagePoliciesPartialUpdateData = {
33094
+ body?: PatchedSlurmPeriodicUsagePolicyRequest;
33095
+ path: {
33096
+ uuid: string;
33097
+ };
33098
+ query?: never;
33099
+ url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/';
33100
+ };
33101
+ export type MarketplaceSlurmPeriodicUsagePoliciesPartialUpdateResponses = {
33102
+ 200: SlurmPeriodicUsagePolicy;
33103
+ };
33104
+ export type MarketplaceSlurmPeriodicUsagePoliciesPartialUpdateResponse = MarketplaceSlurmPeriodicUsagePoliciesPartialUpdateResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesPartialUpdateResponses];
33105
+ export type MarketplaceSlurmPeriodicUsagePoliciesUpdateData = {
33106
+ body: SlurmPeriodicUsagePolicyRequest;
33107
+ path: {
33108
+ uuid: string;
33109
+ };
33110
+ query?: never;
33111
+ url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/';
33112
+ };
33113
+ export type MarketplaceSlurmPeriodicUsagePoliciesUpdateResponses = {
33114
+ 200: SlurmPeriodicUsagePolicy;
33115
+ };
33116
+ export type MarketplaceSlurmPeriodicUsagePoliciesUpdateResponse = MarketplaceSlurmPeriodicUsagePoliciesUpdateResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesUpdateResponses];
33117
+ export type MarketplaceSlurmPeriodicUsagePoliciesActionsRetrieveData = {
33118
+ body?: never;
33119
+ path?: never;
33120
+ query?: never;
33121
+ url: '/api/marketplace-slurm-periodic-usage-policies/actions/';
33122
+ };
33123
+ export type MarketplaceSlurmPeriodicUsagePoliciesActionsRetrieveResponses = {
33124
+ 200: SlurmPeriodicUsagePolicy;
33125
+ };
33126
+ export type MarketplaceSlurmPeriodicUsagePoliciesActionsRetrieveResponse = MarketplaceSlurmPeriodicUsagePoliciesActionsRetrieveResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesActionsRetrieveResponses];
33127
+ export type MarketplaceSlurmPeriodicUsagePoliciesActionsCountData = {
33128
+ body?: never;
33129
+ path?: never;
33130
+ query?: never;
33131
+ url: '/api/marketplace-slurm-periodic-usage-policies/actions/';
33132
+ };
33133
+ export type MarketplaceSlurmPeriodicUsagePoliciesActionsCountResponses = {
33134
+ /**
33135
+ * No response body
33136
+ */
33137
+ 200: unknown;
33138
+ };
32803
33139
  export type MarketplaceSoftwareCatalogsListData = {
32804
33140
  body?: never;
32805
33141
  path?: never;
@@ -39636,7 +39972,7 @@ export type ProjectsListData = {
39636
39972
  customer_name?: string;
39637
39973
  customer_native_name?: string;
39638
39974
  description?: string;
39639
- field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
39975
+ field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
39640
39976
  /**
39641
39977
  * Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
39642
39978
  */
@@ -39831,7 +40167,7 @@ export type ProjectsRetrieveData = {
39831
40167
  uuid: string;
39832
40168
  };
39833
40169
  query?: {
39834
- field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
40170
+ field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
39835
40171
  };
39836
40172
  url: '/api/projects/{uuid}/';
39837
40173
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.8.8-dev.1",
3
+ "version": "7.8.8-dev.3",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",