waldur-js-client 7.8.8-dev.2 → 7.8.8-dev.4

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 +211 -13
  2. package/package.json +1 -1
@@ -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 = {
@@ -2231,37 +2241,37 @@ export type Customer = {
2231
2241
  */
2232
2242
  backend_id?: string;
2233
2243
  image?: string | null;
2234
- readonly blocked?: boolean;
2235
- readonly archived?: boolean;
2236
- readonly display_billing_info_in_projects?: boolean;
2237
- readonly default_tax_percent?: string;
2244
+ blocked?: boolean;
2245
+ archived?: boolean;
2246
+ display_billing_info_in_projects?: boolean;
2247
+ default_tax_percent?: string;
2238
2248
  /**
2239
2249
  * Start date of accounting
2240
2250
  */
2241
- readonly accounting_start_date?: string;
2251
+ accounting_start_date?: string;
2242
2252
  readonly projects_count?: number;
2243
2253
  readonly users_count?: number;
2244
2254
  /**
2245
2255
  * External ID of the sponsor covering the costs
2246
2256
  */
2247
- readonly sponsor_number?: number | null;
2257
+ sponsor_number?: number | null;
2248
2258
  readonly country_name?: string;
2249
2259
  /**
2250
2260
  * Maximum number of service accounts allowed
2251
2261
  */
2252
- readonly max_service_accounts?: number | null;
2253
- readonly project_metadata_checklist?: string | null;
2262
+ max_service_accounts?: number | null;
2263
+ project_metadata_checklist?: string | null;
2254
2264
  /**
2255
2265
  * Number of extra days after project end date before resources are terminated
2256
2266
  */
2257
- readonly grace_period_days?: number | null;
2267
+ grace_period_days?: number | null;
2258
2268
  name?: string;
2259
2269
  slug?: string;
2260
2270
  native_name?: string;
2261
2271
  abbreviation?: string;
2262
2272
  description?: string;
2263
2273
  contact_details?: string;
2264
- readonly agreement_number?: string;
2274
+ agreement_number?: string;
2265
2275
  /**
2266
2276
  * Email address
2267
2277
  */
@@ -2270,10 +2280,10 @@ export type Customer = {
2270
2280
  /**
2271
2281
  * Enter a comma separated list of IPv4 or IPv6 CIDR addresses from where connection to self-service is allowed.
2272
2282
  */
2273
- readonly access_subnets?: string;
2283
+ access_subnets?: string;
2274
2284
  registration_code?: string;
2275
2285
  homepage?: string;
2276
- readonly domain?: string;
2286
+ domain?: string;
2277
2287
  /**
2278
2288
  * VAT number
2279
2289
  */
@@ -2449,19 +2459,46 @@ export type CustomerRequest = {
2449
2459
  */
2450
2460
  backend_id?: string;
2451
2461
  image?: (Blob | File) | null;
2462
+ blocked?: boolean;
2463
+ archived?: boolean;
2464
+ display_billing_info_in_projects?: boolean;
2465
+ default_tax_percent?: string;
2466
+ /**
2467
+ * Start date of accounting
2468
+ */
2469
+ accounting_start_date?: string;
2470
+ /**
2471
+ * External ID of the sponsor covering the costs
2472
+ */
2473
+ sponsor_number?: number | null;
2474
+ /**
2475
+ * Maximum number of service accounts allowed
2476
+ */
2477
+ max_service_accounts?: number | null;
2478
+ project_metadata_checklist?: string | null;
2479
+ /**
2480
+ * Number of extra days after project end date before resources are terminated
2481
+ */
2482
+ grace_period_days?: number | null;
2452
2483
  name: string;
2453
2484
  slug?: string;
2454
2485
  native_name?: string;
2455
2486
  abbreviation?: string;
2456
2487
  description?: string;
2457
2488
  contact_details?: string;
2489
+ agreement_number?: string;
2458
2490
  /**
2459
2491
  * Email address
2460
2492
  */
2461
2493
  email?: string;
2462
2494
  phone_number?: string;
2495
+ /**
2496
+ * Enter a comma separated list of IPv4 or IPv6 CIDR addresses from where connection to self-service is allowed.
2497
+ */
2498
+ access_subnets?: string;
2463
2499
  registration_code?: string;
2464
2500
  homepage?: string;
2501
+ domain?: string;
2465
2502
  /**
2466
2503
  * VAT number
2467
2504
  */
@@ -6331,6 +6368,22 @@ export type OnboardingCompanyValidationRequestRequest = {
6331
6368
  * Indicates if the validation is to be performed manually
6332
6369
  */
6333
6370
  is_manual_validation?: boolean;
6371
+ /**
6372
+ * Personal identifier (temporary workaround for Estonian civil_number)
6373
+ */
6374
+ person_identifier?: string;
6375
+ /**
6376
+ * User's first name (temporary workaround for Austrian validation)
6377
+ */
6378
+ first_name?: string;
6379
+ /**
6380
+ * User's last name (temporary workaround for Austrian validation)
6381
+ */
6382
+ last_name?: string;
6383
+ /**
6384
+ * User's birth date (temporary workaround for Austrian validation)
6385
+ */
6386
+ birth_date?: string | null;
6334
6387
  };
6335
6388
  export type OnboardingCountryChecklistConfiguration = {
6336
6389
  readonly url: string;
@@ -8567,19 +8620,46 @@ export type PatchedCustomerRequest = {
8567
8620
  */
8568
8621
  backend_id?: string;
8569
8622
  image?: (Blob | File) | null;
8623
+ blocked?: boolean;
8624
+ archived?: boolean;
8625
+ display_billing_info_in_projects?: boolean;
8626
+ default_tax_percent?: string;
8627
+ /**
8628
+ * Start date of accounting
8629
+ */
8630
+ accounting_start_date?: string;
8631
+ /**
8632
+ * External ID of the sponsor covering the costs
8633
+ */
8634
+ sponsor_number?: number | null;
8635
+ /**
8636
+ * Maximum number of service accounts allowed
8637
+ */
8638
+ max_service_accounts?: number | null;
8639
+ project_metadata_checklist?: string | null;
8640
+ /**
8641
+ * Number of extra days after project end date before resources are terminated
8642
+ */
8643
+ grace_period_days?: number | null;
8570
8644
  name?: string;
8571
8645
  slug?: string;
8572
8646
  native_name?: string;
8573
8647
  abbreviation?: string;
8574
8648
  description?: string;
8575
8649
  contact_details?: string;
8650
+ agreement_number?: string;
8576
8651
  /**
8577
8652
  * Email address
8578
8653
  */
8579
8654
  email?: string;
8580
8655
  phone_number?: string;
8656
+ /**
8657
+ * Enter a comma separated list of IPv4 or IPv6 CIDR addresses from where connection to self-service is allowed.
8658
+ */
8659
+ access_subnets?: string;
8581
8660
  registration_code?: string;
8582
8661
  homepage?: string;
8662
+ domain?: string;
8583
8663
  /**
8584
8664
  * VAT number
8585
8665
  */
@@ -13769,7 +13849,7 @@ export type UserRoleUpdateRequest = {
13769
13849
  };
13770
13850
  export type UsernameGenerationPolicyEnum = 'service_provider' | 'anonymized' | 'full_name' | 'waldur_username' | 'freeipa' | 'identity_claim';
13771
13851
  export type ValidationDecisionEnum = 'approved' | 'rejected' | 'pending';
13772
- export type ValidationMethodEnum = 'ariregister' | 'wirtschaftscompass';
13852
+ export type ValidationMethodEnum = 'ariregister' | 'wirtschaftscompass' | 'bolagsverket';
13773
13853
  export type Version = {
13774
13854
  /**
13775
13855
  * Current installed version of the application
@@ -14362,19 +14442,46 @@ export type CustomerRequestForm = {
14362
14442
  */
14363
14443
  backend_id?: string;
14364
14444
  image?: (Blob | File) | null;
14445
+ blocked?: boolean;
14446
+ archived?: boolean;
14447
+ display_billing_info_in_projects?: boolean;
14448
+ default_tax_percent?: string;
14449
+ /**
14450
+ * Start date of accounting
14451
+ */
14452
+ accounting_start_date?: string;
14453
+ /**
14454
+ * External ID of the sponsor covering the costs
14455
+ */
14456
+ sponsor_number?: number | null;
14457
+ /**
14458
+ * Maximum number of service accounts allowed
14459
+ */
14460
+ max_service_accounts?: number | null;
14461
+ project_metadata_checklist?: string | null;
14462
+ /**
14463
+ * Number of extra days after project end date before resources are terminated
14464
+ */
14465
+ grace_period_days?: number | null;
14365
14466
  name: string;
14366
14467
  slug?: string;
14367
14468
  native_name?: string;
14368
14469
  abbreviation?: string;
14369
14470
  description?: string;
14370
14471
  contact_details?: string;
14472
+ agreement_number?: string;
14371
14473
  /**
14372
14474
  * Email address
14373
14475
  */
14374
14476
  email?: string;
14375
14477
  phone_number?: string;
14478
+ /**
14479
+ * Enter a comma separated list of IPv4 or IPv6 CIDR addresses from where connection to self-service is allowed.
14480
+ */
14481
+ access_subnets?: string;
14376
14482
  registration_code?: string;
14377
14483
  homepage?: string;
14484
+ domain?: string;
14378
14485
  /**
14379
14486
  * VAT number
14380
14487
  */
@@ -14397,19 +14504,46 @@ export type CustomerRequestMultipart = {
14397
14504
  */
14398
14505
  backend_id?: string;
14399
14506
  image?: (Blob | File) | null;
14507
+ blocked?: boolean;
14508
+ archived?: boolean;
14509
+ display_billing_info_in_projects?: boolean;
14510
+ default_tax_percent?: string;
14511
+ /**
14512
+ * Start date of accounting
14513
+ */
14514
+ accounting_start_date?: string;
14515
+ /**
14516
+ * External ID of the sponsor covering the costs
14517
+ */
14518
+ sponsor_number?: number | null;
14519
+ /**
14520
+ * Maximum number of service accounts allowed
14521
+ */
14522
+ max_service_accounts?: number | null;
14523
+ project_metadata_checklist?: string | null;
14524
+ /**
14525
+ * Number of extra days after project end date before resources are terminated
14526
+ */
14527
+ grace_period_days?: number | null;
14400
14528
  name: string;
14401
14529
  slug?: string;
14402
14530
  native_name?: string;
14403
14531
  abbreviation?: string;
14404
14532
  description?: string;
14405
14533
  contact_details?: string;
14534
+ agreement_number?: string;
14406
14535
  /**
14407
14536
  * Email address
14408
14537
  */
14409
14538
  email?: string;
14410
14539
  phone_number?: string;
14540
+ /**
14541
+ * Enter a comma separated list of IPv4 or IPv6 CIDR addresses from where connection to self-service is allowed.
14542
+ */
14543
+ access_subnets?: string;
14411
14544
  registration_code?: string;
14412
14545
  homepage?: string;
14546
+ domain?: string;
14413
14547
  /**
14414
14548
  * VAT number
14415
14549
  */
@@ -14432,19 +14566,46 @@ export type PatchedCustomerRequestForm = {
14432
14566
  */
14433
14567
  backend_id?: string;
14434
14568
  image?: (Blob | File) | null;
14569
+ blocked?: boolean;
14570
+ archived?: boolean;
14571
+ display_billing_info_in_projects?: boolean;
14572
+ default_tax_percent?: string;
14573
+ /**
14574
+ * Start date of accounting
14575
+ */
14576
+ accounting_start_date?: string;
14577
+ /**
14578
+ * External ID of the sponsor covering the costs
14579
+ */
14580
+ sponsor_number?: number | null;
14581
+ /**
14582
+ * Maximum number of service accounts allowed
14583
+ */
14584
+ max_service_accounts?: number | null;
14585
+ project_metadata_checklist?: string | null;
14586
+ /**
14587
+ * Number of extra days after project end date before resources are terminated
14588
+ */
14589
+ grace_period_days?: number | null;
14435
14590
  name?: string;
14436
14591
  slug?: string;
14437
14592
  native_name?: string;
14438
14593
  abbreviation?: string;
14439
14594
  description?: string;
14440
14595
  contact_details?: string;
14596
+ agreement_number?: string;
14441
14597
  /**
14442
14598
  * Email address
14443
14599
  */
14444
14600
  email?: string;
14445
14601
  phone_number?: string;
14602
+ /**
14603
+ * Enter a comma separated list of IPv4 or IPv6 CIDR addresses from where connection to self-service is allowed.
14604
+ */
14605
+ access_subnets?: string;
14446
14606
  registration_code?: string;
14447
14607
  homepage?: string;
14608
+ domain?: string;
14448
14609
  /**
14449
14610
  * VAT number
14450
14611
  */
@@ -14467,19 +14628,46 @@ export type PatchedCustomerRequestMultipart = {
14467
14628
  */
14468
14629
  backend_id?: string;
14469
14630
  image?: (Blob | File) | null;
14631
+ blocked?: boolean;
14632
+ archived?: boolean;
14633
+ display_billing_info_in_projects?: boolean;
14634
+ default_tax_percent?: string;
14635
+ /**
14636
+ * Start date of accounting
14637
+ */
14638
+ accounting_start_date?: string;
14639
+ /**
14640
+ * External ID of the sponsor covering the costs
14641
+ */
14642
+ sponsor_number?: number | null;
14643
+ /**
14644
+ * Maximum number of service accounts allowed
14645
+ */
14646
+ max_service_accounts?: number | null;
14647
+ project_metadata_checklist?: string | null;
14648
+ /**
14649
+ * Number of extra days after project end date before resources are terminated
14650
+ */
14651
+ grace_period_days?: number | null;
14470
14652
  name?: string;
14471
14653
  slug?: string;
14472
14654
  native_name?: string;
14473
14655
  abbreviation?: string;
14474
14656
  description?: string;
14475
14657
  contact_details?: string;
14658
+ agreement_number?: string;
14476
14659
  /**
14477
14660
  * Email address
14478
14661
  */
14479
14662
  email?: string;
14480
14663
  phone_number?: string;
14664
+ /**
14665
+ * Enter a comma separated list of IPv4 or IPv6 CIDR addresses from where connection to self-service is allowed.
14666
+ */
14667
+ access_subnets?: string;
14481
14668
  registration_code?: string;
14482
14669
  homepage?: string;
14670
+ domain?: string;
14483
14671
  /**
14484
14672
  * VAT number
14485
14673
  */
@@ -14920,6 +15108,7 @@ export type ConstanceSettingsRequestForm = {
14920
15108
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
14921
15109
  ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
14922
15110
  DISABLED_OFFERING_TYPES?: Array<string>;
15111
+ ONBOARDING_COUNTRY?: string;
14923
15112
  ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
14924
15113
  ONBOARDING_ARIREGISTER_BASE_URL?: string;
14925
15114
  ONBOARDING_ARIREGISTER_USERNAME?: string;
@@ -14927,6 +15116,10 @@ export type ConstanceSettingsRequestForm = {
14927
15116
  ONBOARDING_ARIREGISTER_TIMEOUT?: number;
14928
15117
  ONBOARDING_WICO_API_URL?: string;
14929
15118
  ONBOARDING_WICO_TOKEN?: string;
15119
+ ONBOARDING_BOLAGSVERKET_API_URL?: string;
15120
+ ONBOARDING_BOLAGSVERKET_TOKEN_API_URL?: string;
15121
+ ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
15122
+ ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
14930
15123
  };
14931
15124
  export type ConstanceSettingsRequestMultipart = {
14932
15125
  SITE_NAME?: string;
@@ -15070,6 +15263,7 @@ export type ConstanceSettingsRequestMultipart = {
15070
15263
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
15071
15264
  ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
15072
15265
  DISABLED_OFFERING_TYPES?: Array<string>;
15266
+ ONBOARDING_COUNTRY?: string;
15073
15267
  ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
15074
15268
  ONBOARDING_ARIREGISTER_BASE_URL?: string;
15075
15269
  ONBOARDING_ARIREGISTER_USERNAME?: string;
@@ -15077,6 +15271,10 @@ export type ConstanceSettingsRequestMultipart = {
15077
15271
  ONBOARDING_ARIREGISTER_TIMEOUT?: number;
15078
15272
  ONBOARDING_WICO_API_URL?: string;
15079
15273
  ONBOARDING_WICO_TOKEN?: string;
15274
+ ONBOARDING_BOLAGSVERKET_API_URL?: string;
15275
+ ONBOARDING_BOLAGSVERKET_TOKEN_API_URL?: string;
15276
+ ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
15277
+ ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
15080
15278
  };
15081
15279
  export type PaymentRequestForm = {
15082
15280
  profile: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.8.8-dev.2",
3
+ "version": "7.8.8-dev.4",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",