waldur-js-client 7.8.6-dev.6 → 7.8.6-dev.8

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 +53 -10
  2. package/package.json +1 -1
@@ -1878,6 +1878,8 @@ export type ConstanceSettings = {
1878
1878
  ONBOARDING_ARIREGISTER_USERNAME?: string;
1879
1879
  ONBOARDING_ARIREGISTER_PASSWORD?: string;
1880
1880
  ONBOARDING_ARIREGISTER_TIMEOUT?: number;
1881
+ ONBOARDING_WICO_API_URL?: string;
1882
+ ONBOARDING_WICO_TOKEN?: string;
1881
1883
  };
1882
1884
  export type ConstanceSettingsRequest = {
1883
1885
  SITE_NAME?: string;
@@ -2025,6 +2027,8 @@ export type ConstanceSettingsRequest = {
2025
2027
  ONBOARDING_ARIREGISTER_USERNAME?: string;
2026
2028
  ONBOARDING_ARIREGISTER_PASSWORD?: string;
2027
2029
  ONBOARDING_ARIREGISTER_TIMEOUT?: number;
2030
+ ONBOARDING_WICO_API_URL?: string;
2031
+ ONBOARDING_WICO_TOKEN?: string;
2028
2032
  };
2029
2033
  export type ContainerFormatEnum = 'bare' | 'ovf' | 'aki' | 'ami' | 'ari';
2030
2034
  export type CoreAuthToken = {
@@ -4024,6 +4028,10 @@ export type MergedPluginOptions = {
4024
4028
  * Default limit for number of volumes in OpenStack tenant
4025
4029
  */
4026
4030
  max_volumes?: number;
4031
+ /**
4032
+ * Default limit for number of security groups in OpenStack tenant
4033
+ */
4034
+ max_security_groups?: number;
4027
4035
  /**
4028
4036
  * Storage mode for OpenStack offering
4029
4037
  */
@@ -4210,6 +4218,10 @@ export type MergedPluginOptionsRequest = {
4210
4218
  * Default limit for number of volumes in OpenStack tenant
4211
4219
  */
4212
4220
  max_volumes?: number;
4221
+ /**
4222
+ * Default limit for number of security groups in OpenStack tenant
4223
+ */
4224
+ max_security_groups?: number;
4213
4225
  /**
4214
4226
  * Storage mode for OpenStack offering
4215
4227
  */
@@ -6236,6 +6248,7 @@ export type OnboardingCompanyValidationRequestRequest = {
6236
6248
  legal_name?: string;
6237
6249
  };
6238
6250
  export type OnboardingCountryChecklistConfiguration = {
6251
+ readonly url: string;
6239
6252
  readonly uuid: string;
6240
6253
  /**
6241
6254
  * ISO country code (e.g., 'EE' for Estonia)
@@ -6244,7 +6257,7 @@ export type OnboardingCountryChecklistConfiguration = {
6244
6257
  /**
6245
6258
  * Checklist to use for this country's onboarding
6246
6259
  */
6247
- checklist: number;
6260
+ checklist: string;
6248
6261
  readonly checklist_name: string;
6249
6262
  readonly checklist_uuid: string;
6250
6263
  /**
@@ -6262,7 +6275,7 @@ export type OnboardingCountryChecklistConfigurationRequest = {
6262
6275
  /**
6263
6276
  * Checklist to use for this country's onboarding
6264
6277
  */
6265
- checklist: number;
6278
+ checklist: string;
6266
6279
  /**
6267
6280
  * Whether this country configuration is active
6268
6281
  */
@@ -6334,10 +6347,11 @@ export type OnboardingJustificationReviewRequest = {
6334
6347
  };
6335
6348
  export type OnboardingQuestionMetadata = {
6336
6349
  readonly uuid: string;
6350
+ readonly url: string;
6337
6351
  /**
6338
6352
  * Question this metadata applies to
6339
6353
  */
6340
- question: number;
6354
+ question: string;
6341
6355
  readonly question_uuid: string;
6342
6356
  readonly question_description: string;
6343
6357
  /**
@@ -6355,7 +6369,7 @@ export type OnboardingQuestionMetadataRequest = {
6355
6369
  /**
6356
6370
  * Question this metadata applies to
6357
6371
  */
6358
- question: number;
6372
+ question: string;
6359
6373
  /**
6360
6374
  * Customer model field name to map this answer to (e.g., 'registration_code', 'email', 'vat_code')
6361
6375
  */
@@ -8874,7 +8888,7 @@ export type PatchedOnboardingCountryChecklistConfigurationRequest = {
8874
8888
  /**
8875
8889
  * Checklist to use for this country's onboarding
8876
8890
  */
8877
- checklist?: number;
8891
+ checklist?: string;
8878
8892
  /**
8879
8893
  * Whether this country configuration is active
8880
8894
  */
@@ -8892,7 +8906,7 @@ export type PatchedOnboardingQuestionMetadataRequest = {
8892
8906
  /**
8893
8907
  * Question this metadata applies to
8894
8908
  */
8895
- question?: number;
8909
+ question?: string;
8896
8910
  /**
8897
8911
  * Customer model field name to map this answer to (e.g., 'registration_code', 'email', 'vat_code')
8898
8912
  */
@@ -9498,6 +9512,7 @@ export type PatchedUserRequest = {
9498
9512
  preferred_language?: string;
9499
9513
  first_name?: string;
9500
9514
  last_name?: string;
9515
+ birth_date?: string | null;
9501
9516
  image?: (Blob | File) | null;
9502
9517
  };
9503
9518
  export type PatchedVmwareVirtualMachineRequest = {
@@ -13183,6 +13198,7 @@ export type User = {
13183
13198
  readonly affiliations?: unknown;
13184
13199
  first_name?: string;
13185
13200
  last_name?: string;
13201
+ birth_date?: string | null;
13186
13202
  readonly identity_provider_name?: string;
13187
13203
  readonly identity_provider_label?: string;
13188
13204
  readonly identity_provider_management_url?: string;
@@ -13344,6 +13360,7 @@ export type UserRequest = {
13344
13360
  preferred_language?: string;
13345
13361
  first_name?: string;
13346
13362
  last_name?: string;
13363
+ birth_date?: string | null;
13347
13364
  image?: (Blob | File) | null;
13348
13365
  };
13349
13366
  export type UserRoleCreateRequest = {
@@ -13386,7 +13403,7 @@ export type UserRoleUpdateRequest = {
13386
13403
  };
13387
13404
  export type UsernameGenerationPolicyEnum = 'service_provider' | 'anonymized' | 'full_name' | 'waldur_username' | 'freeipa' | 'identity_claim';
13388
13405
  export type ValidationDecisionEnum = 'approved' | 'rejected' | 'pending';
13389
- export type ValidationMethodEnum = 'ariregister';
13406
+ export type ValidationMethodEnum = 'ariregister' | 'wirtschaftscompass';
13390
13407
  export type Version = {
13391
13408
  /**
13392
13409
  * Current installed version of the application
@@ -14533,6 +14550,8 @@ export type ConstanceSettingsRequestForm = {
14533
14550
  ONBOARDING_ARIREGISTER_USERNAME?: string;
14534
14551
  ONBOARDING_ARIREGISTER_PASSWORD?: string;
14535
14552
  ONBOARDING_ARIREGISTER_TIMEOUT?: number;
14553
+ ONBOARDING_WICO_API_URL?: string;
14554
+ ONBOARDING_WICO_TOKEN?: string;
14536
14555
  };
14537
14556
  export type ConstanceSettingsRequestMultipart = {
14538
14557
  SITE_NAME?: string;
@@ -14680,6 +14699,8 @@ export type ConstanceSettingsRequestMultipart = {
14680
14699
  ONBOARDING_ARIREGISTER_USERNAME?: string;
14681
14700
  ONBOARDING_ARIREGISTER_PASSWORD?: string;
14682
14701
  ONBOARDING_ARIREGISTER_TIMEOUT?: number;
14702
+ ONBOARDING_WICO_API_URL?: string;
14703
+ ONBOARDING_WICO_TOKEN?: string;
14683
14704
  };
14684
14705
  export type PaymentRequestForm = {
14685
14706
  profile: string;
@@ -14885,6 +14906,7 @@ export type UserRequestForm = {
14885
14906
  preferred_language?: string;
14886
14907
  first_name?: string;
14887
14908
  last_name?: string;
14909
+ birth_date?: string | null;
14888
14910
  image?: (Blob | File) | null;
14889
14911
  };
14890
14912
  export type UserRequestMultipart = {
@@ -14929,6 +14951,7 @@ export type UserRequestMultipart = {
14929
14951
  preferred_language?: string;
14930
14952
  first_name?: string;
14931
14953
  last_name?: string;
14954
+ birth_date?: string | null;
14932
14955
  image?: (Blob | File) | null;
14933
14956
  };
14934
14957
  export type PatchedUserRequestForm = {
@@ -14972,6 +14995,7 @@ export type PatchedUserRequestForm = {
14972
14995
  preferred_language?: string;
14973
14996
  first_name?: string;
14974
14997
  last_name?: string;
14998
+ birth_date?: string | null;
14975
14999
  image?: (Blob | File) | null;
14976
15000
  };
14977
15001
  export type PatchedUserRequestMultipart = {
@@ -15015,6 +15039,7 @@ export type PatchedUserRequestMultipart = {
15015
15039
  preferred_language?: string;
15016
15040
  first_name?: string;
15017
15041
  last_name?: string;
15042
+ birth_date?: string | null;
15018
15043
  image?: (Blob | File) | null;
15019
15044
  };
15020
15045
  /**
@@ -34313,6 +34338,8 @@ export type OnboardingCountryConfigsListData = {
34313
34338
  body?: never;
34314
34339
  path?: never;
34315
34340
  query?: {
34341
+ country?: string;
34342
+ is_active?: boolean;
34316
34343
  /**
34317
34344
  * A page number within the paginated result set.
34318
34345
  */
@@ -34332,6 +34359,8 @@ export type OnboardingCountryConfigsCountData = {
34332
34359
  body?: never;
34333
34360
  path?: never;
34334
34361
  query?: {
34362
+ country?: string;
34363
+ is_active?: boolean;
34335
34364
  /**
34336
34365
  * A page number within the paginated result set.
34337
34366
  */
@@ -34561,6 +34590,12 @@ export type OnboardingQuestionMetadataListData = {
34561
34590
  body?: never;
34562
34591
  path?: never;
34563
34592
  query?: {
34593
+ /**
34594
+ * Checklist uuid
34595
+ */
34596
+ checklist_uuid?: string;
34597
+ intent_field?: string;
34598
+ maps_to_customer_field?: string;
34564
34599
  /**
34565
34600
  * A page number within the paginated result set.
34566
34601
  */
@@ -34569,6 +34604,7 @@ export type OnboardingQuestionMetadataListData = {
34569
34604
  * Number of results to return per page.
34570
34605
  */
34571
34606
  page_size?: number;
34607
+ question_uuid?: string;
34572
34608
  };
34573
34609
  url: '/api/onboarding-question-metadata/';
34574
34610
  };
@@ -34580,6 +34616,12 @@ export type OnboardingQuestionMetadataCountData = {
34580
34616
  body?: never;
34581
34617
  path?: never;
34582
34618
  query?: {
34619
+ /**
34620
+ * Checklist uuid
34621
+ */
34622
+ checklist_uuid?: string;
34623
+ intent_field?: string;
34624
+ maps_to_customer_field?: string;
34583
34625
  /**
34584
34626
  * A page number within the paginated result set.
34585
34627
  */
@@ -34588,6 +34630,7 @@ export type OnboardingQuestionMetadataCountData = {
34588
34630
  * Number of results to return per page.
34589
34631
  */
34590
34632
  page_size?: number;
34633
+ question_uuid?: string;
34591
34634
  };
34592
34635
  url: '/api/onboarding-question-metadata/';
34593
34636
  };
@@ -46291,7 +46334,7 @@ export type UsersListData = {
46291
46334
  date_joined?: string;
46292
46335
  description?: string;
46293
46336
  email?: string;
46294
- field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'civil_number' | 'date_joined' | 'description' | 'email' | 'first_name' | 'full_name' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'native_name' | 'notifications_enabled' | 'organization' | 'permissions' | 'phone_number' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid'>;
46337
+ field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'birth_date' | 'civil_number' | 'date_joined' | 'description' | 'email' | 'first_name' | 'full_name' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'native_name' | 'notifications_enabled' | 'organization' | 'permissions' | 'phone_number' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid'>;
46295
46338
  /**
46296
46339
  * Full name
46297
46340
  */
@@ -46459,7 +46502,7 @@ export type UsersRetrieveData = {
46459
46502
  uuid: string;
46460
46503
  };
46461
46504
  query?: {
46462
- field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'civil_number' | 'date_joined' | 'description' | 'email' | 'first_name' | 'full_name' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'native_name' | 'notifications_enabled' | 'organization' | 'permissions' | 'phone_number' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid'>;
46505
+ field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'birth_date' | 'civil_number' | 'date_joined' | 'description' | 'email' | 'first_name' | 'full_name' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'native_name' | 'notifications_enabled' | 'organization' | 'permissions' | 'phone_number' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid'>;
46463
46506
  };
46464
46507
  url: '/api/users/{uuid}/';
46465
46508
  };
@@ -46587,7 +46630,7 @@ export type UsersMeRetrieveData = {
46587
46630
  body?: never;
46588
46631
  path?: never;
46589
46632
  query?: {
46590
- field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'civil_number' | 'date_joined' | 'description' | 'email' | 'first_name' | 'full_name' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'native_name' | 'notifications_enabled' | 'organization' | 'permissions' | 'phone_number' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid'>;
46633
+ field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'birth_date' | 'civil_number' | 'date_joined' | 'description' | 'email' | 'first_name' | 'full_name' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'native_name' | 'notifications_enabled' | 'organization' | 'permissions' | 'phone_number' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid'>;
46591
46634
  };
46592
46635
  url: '/api/users/me/';
46593
46636
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.8.6-dev.6",
3
+ "version": "7.8.6-dev.8",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",