waldur-js-client 7.8.5-dev.7 → 7.8.5-dev.9

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.
@@ -4080,6 +4080,14 @@ export type MergedPluginOptions = {
4080
4080
  * Slurm account name generation policy
4081
4081
  */
4082
4082
  account_name_generation_policy?: AccountNameGenerationPolicyEnum | NullEnum | null;
4083
+ /**
4084
+ * Defines if backend_id should be shown more prominently by the UI
4085
+ */
4086
+ highlight_backend_id_display?: boolean;
4087
+ /**
4088
+ * Label used by UI for showing value of the backend_id
4089
+ */
4090
+ backend_id_display_label?: string;
4083
4091
  };
4084
4092
  export type MergedPluginOptionsRequest = {
4085
4093
  /**
@@ -4250,6 +4258,14 @@ export type MergedPluginOptionsRequest = {
4250
4258
  * Slurm account name generation policy
4251
4259
  */
4252
4260
  account_name_generation_policy?: AccountNameGenerationPolicyEnum | NullEnum | null;
4261
+ /**
4262
+ * Defines if backend_id should be shown more prominently by the UI
4263
+ */
4264
+ highlight_backend_id_display?: boolean;
4265
+ /**
4266
+ * Label used by UI for showing value of the backend_id
4267
+ */
4268
+ backend_id_display_label?: string;
4253
4269
  };
4254
4270
  export type MergedSecretOptions = {
4255
4271
  /**
@@ -5701,7 +5717,7 @@ export type OnboardingJustification = {
5701
5717
  /**
5702
5718
  * User's explanation for why they should be authorized
5703
5719
  */
5704
- user_justification: string;
5720
+ user_justification?: string | null;
5705
5721
  readonly validated_by: number | null;
5706
5722
  readonly validated_at: string | null;
5707
5723
  validation_decision: ValidationDecisionEnum;
@@ -5721,7 +5737,7 @@ export type OnboardingJustificationCreateRequest = {
5721
5737
  /**
5722
5738
  * User's explanation for why they should be authorized
5723
5739
  */
5724
- user_justification: string;
5740
+ user_justification?: string;
5725
5741
  };
5726
5742
  export type OnboardingJustificationDocumentation = {
5727
5743
  readonly uuid: string;
@@ -5745,7 +5761,7 @@ export type OnboardingJustificationRequest = {
5745
5761
  /**
5746
5762
  * User's explanation for why they should be authorized
5747
5763
  */
5748
- user_justification: string;
5764
+ user_justification?: string | null;
5749
5765
  };
5750
5766
  export type OnboardingJustificationReviewRequest = {
5751
5767
  /**
@@ -8135,7 +8151,7 @@ export type PatchedOnboardingJustificationRequest = {
8135
8151
  /**
8136
8152
  * User's explanation for why they should be authorized
8137
8153
  */
8138
- user_justification?: string;
8154
+ user_justification?: string | null;
8139
8155
  };
8140
8156
  export type PatchedOnboardingVerificationRequest = {
8141
8157
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.8.5-dev.7",
3
+ "version": "7.8.5-dev.9",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",