waldur-js-client 7.8.5-dev.6 → 7.8.5-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.
- package/dist/types.gen.d.ts +68 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -1757,6 +1757,7 @@ export type ConstanceSettings = {
|
|
|
1757
1757
|
DOCS_URL?: string;
|
|
1758
1758
|
SHORT_PAGE_TITLE?: string;
|
|
1759
1759
|
FULL_PAGE_TITLE?: string;
|
|
1760
|
+
PROJECT_END_DATE_MANDATORY?: boolean;
|
|
1760
1761
|
BRAND_COLOR?: string;
|
|
1761
1762
|
HERO_LINK_LABEL?: string;
|
|
1762
1763
|
HERO_LINK_URL?: string;
|
|
@@ -1900,6 +1901,7 @@ export type ConstanceSettingsRequest = {
|
|
|
1900
1901
|
DOCS_URL?: string;
|
|
1901
1902
|
SHORT_PAGE_TITLE?: string;
|
|
1902
1903
|
FULL_PAGE_TITLE?: string;
|
|
1904
|
+
PROJECT_END_DATE_MANDATORY?: boolean;
|
|
1903
1905
|
BRAND_COLOR?: string;
|
|
1904
1906
|
HERO_LINK_LABEL?: string;
|
|
1905
1907
|
HERO_LINK_URL?: string;
|
|
@@ -4078,6 +4080,14 @@ export type MergedPluginOptions = {
|
|
|
4078
4080
|
* Slurm account name generation policy
|
|
4079
4081
|
*/
|
|
4080
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;
|
|
4081
4091
|
};
|
|
4082
4092
|
export type MergedPluginOptionsRequest = {
|
|
4083
4093
|
/**
|
|
@@ -4248,6 +4258,14 @@ export type MergedPluginOptionsRequest = {
|
|
|
4248
4258
|
* Slurm account name generation policy
|
|
4249
4259
|
*/
|
|
4250
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;
|
|
4251
4269
|
};
|
|
4252
4270
|
export type MergedSecretOptions = {
|
|
4253
4271
|
/**
|
|
@@ -13515,6 +13533,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
13515
13533
|
DOCS_URL?: string;
|
|
13516
13534
|
SHORT_PAGE_TITLE?: string;
|
|
13517
13535
|
FULL_PAGE_TITLE?: string;
|
|
13536
|
+
PROJECT_END_DATE_MANDATORY?: boolean;
|
|
13518
13537
|
BRAND_COLOR?: string;
|
|
13519
13538
|
HERO_LINK_LABEL?: string;
|
|
13520
13539
|
HERO_LINK_URL?: string;
|
|
@@ -13658,6 +13677,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
13658
13677
|
DOCS_URL?: string;
|
|
13659
13678
|
SHORT_PAGE_TITLE?: string;
|
|
13660
13679
|
FULL_PAGE_TITLE?: string;
|
|
13680
|
+
PROJECT_END_DATE_MANDATORY?: boolean;
|
|
13661
13681
|
BRAND_COLOR?: string;
|
|
13662
13682
|
HERO_LINK_LABEL?: string;
|
|
13663
13683
|
HERO_LINK_URL?: string;
|
|
@@ -16690,6 +16710,10 @@ export type BookingResourcesListData = {
|
|
|
16690
16710
|
*/
|
|
16691
16711
|
backend_id?: string;
|
|
16692
16712
|
category_uuid?: string;
|
|
16713
|
+
/**
|
|
16714
|
+
* Filter by exact number of components
|
|
16715
|
+
*/
|
|
16716
|
+
component_count?: number;
|
|
16693
16717
|
connected_customer_uuid?: string;
|
|
16694
16718
|
/**
|
|
16695
16719
|
* Created after
|
|
@@ -16711,6 +16735,10 @@ export type BookingResourcesListData = {
|
|
|
16711
16735
|
* Filter by limit-based offerings
|
|
16712
16736
|
*/
|
|
16713
16737
|
limit_based?: boolean;
|
|
16738
|
+
/**
|
|
16739
|
+
* Filter by exact number of limit-based components
|
|
16740
|
+
*/
|
|
16741
|
+
limit_component_count?: number;
|
|
16714
16742
|
/**
|
|
16715
16743
|
* Modified after
|
|
16716
16744
|
*/
|
|
@@ -16798,6 +16826,10 @@ export type BookingResourcesCountData = {
|
|
|
16798
16826
|
*/
|
|
16799
16827
|
backend_id?: string;
|
|
16800
16828
|
category_uuid?: string;
|
|
16829
|
+
/**
|
|
16830
|
+
* Filter by exact number of components
|
|
16831
|
+
*/
|
|
16832
|
+
component_count?: number;
|
|
16801
16833
|
connected_customer_uuid?: string;
|
|
16802
16834
|
/**
|
|
16803
16835
|
* Created after
|
|
@@ -16818,6 +16850,10 @@ export type BookingResourcesCountData = {
|
|
|
16818
16850
|
* Filter by limit-based offerings
|
|
16819
16851
|
*/
|
|
16820
16852
|
limit_based?: boolean;
|
|
16853
|
+
/**
|
|
16854
|
+
* Filter by exact number of limit-based components
|
|
16855
|
+
*/
|
|
16856
|
+
limit_component_count?: number;
|
|
16821
16857
|
/**
|
|
16822
16858
|
* Modified after
|
|
16823
16859
|
*/
|
|
@@ -27992,6 +28028,10 @@ export type MarketplaceProviderResourcesListData = {
|
|
|
27992
28028
|
*/
|
|
27993
28029
|
backend_id?: string;
|
|
27994
28030
|
category_uuid?: string;
|
|
28031
|
+
/**
|
|
28032
|
+
* Filter by exact number of components
|
|
28033
|
+
*/
|
|
28034
|
+
component_count?: number;
|
|
27995
28035
|
/**
|
|
27996
28036
|
* Created after
|
|
27997
28037
|
*/
|
|
@@ -28012,6 +28052,10 @@ export type MarketplaceProviderResourcesListData = {
|
|
|
28012
28052
|
* Filter by limit-based offerings
|
|
28013
28053
|
*/
|
|
28014
28054
|
limit_based?: boolean;
|
|
28055
|
+
/**
|
|
28056
|
+
* Filter by exact number of limit-based components
|
|
28057
|
+
*/
|
|
28058
|
+
limit_component_count?: number;
|
|
28015
28059
|
/**
|
|
28016
28060
|
* Modified after
|
|
28017
28061
|
*/
|
|
@@ -28099,6 +28143,10 @@ export type MarketplaceProviderResourcesCountData = {
|
|
|
28099
28143
|
*/
|
|
28100
28144
|
backend_id?: string;
|
|
28101
28145
|
category_uuid?: string;
|
|
28146
|
+
/**
|
|
28147
|
+
* Filter by exact number of components
|
|
28148
|
+
*/
|
|
28149
|
+
component_count?: number;
|
|
28102
28150
|
/**
|
|
28103
28151
|
* Created after
|
|
28104
28152
|
*/
|
|
@@ -28118,6 +28166,10 @@ export type MarketplaceProviderResourcesCountData = {
|
|
|
28118
28166
|
* Filter by limit-based offerings
|
|
28119
28167
|
*/
|
|
28120
28168
|
limit_based?: boolean;
|
|
28169
|
+
/**
|
|
28170
|
+
* Filter by exact number of limit-based components
|
|
28171
|
+
*/
|
|
28172
|
+
limit_component_count?: number;
|
|
28121
28173
|
/**
|
|
28122
28174
|
* Modified after
|
|
28123
28175
|
*/
|
|
@@ -29061,6 +29113,10 @@ export type MarketplaceResourcesListData = {
|
|
|
29061
29113
|
*/
|
|
29062
29114
|
backend_id?: string;
|
|
29063
29115
|
category_uuid?: string;
|
|
29116
|
+
/**
|
|
29117
|
+
* Filter by exact number of components
|
|
29118
|
+
*/
|
|
29119
|
+
component_count?: number;
|
|
29064
29120
|
/**
|
|
29065
29121
|
* Created after
|
|
29066
29122
|
*/
|
|
@@ -29081,6 +29137,10 @@ export type MarketplaceResourcesListData = {
|
|
|
29081
29137
|
* Filter by limit-based offerings
|
|
29082
29138
|
*/
|
|
29083
29139
|
limit_based?: boolean;
|
|
29140
|
+
/**
|
|
29141
|
+
* Filter by exact number of limit-based components
|
|
29142
|
+
*/
|
|
29143
|
+
limit_component_count?: number;
|
|
29084
29144
|
/**
|
|
29085
29145
|
* Modified after
|
|
29086
29146
|
*/
|
|
@@ -29168,6 +29228,10 @@ export type MarketplaceResourcesCountData = {
|
|
|
29168
29228
|
*/
|
|
29169
29229
|
backend_id?: string;
|
|
29170
29230
|
category_uuid?: string;
|
|
29231
|
+
/**
|
|
29232
|
+
* Filter by exact number of components
|
|
29233
|
+
*/
|
|
29234
|
+
component_count?: number;
|
|
29171
29235
|
/**
|
|
29172
29236
|
* Created after
|
|
29173
29237
|
*/
|
|
@@ -29187,6 +29251,10 @@ export type MarketplaceResourcesCountData = {
|
|
|
29187
29251
|
* Filter by limit-based offerings
|
|
29188
29252
|
*/
|
|
29189
29253
|
limit_based?: boolean;
|
|
29254
|
+
/**
|
|
29255
|
+
* Filter by exact number of limit-based components
|
|
29256
|
+
*/
|
|
29257
|
+
limit_component_count?: number;
|
|
29190
29258
|
/**
|
|
29191
29259
|
* Modified after
|
|
29192
29260
|
*/
|