waldur-js-client 7.7.5-dev.1 → 7.7.5-dev.2
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 +49 -25
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -3213,6 +3213,10 @@ export type MaintenanceAnnouncement = {
|
|
|
3213
3213
|
* Type of maintenance being performed
|
|
3214
3214
|
*/
|
|
3215
3215
|
maintenance_type?: MaintenanceTypeEnum;
|
|
3216
|
+
/**
|
|
3217
|
+
* Optional reference to an external maintenance tracker
|
|
3218
|
+
*/
|
|
3219
|
+
external_reference_url?: string;
|
|
3216
3220
|
state: MaintenanceAnnouncementStateEnum;
|
|
3217
3221
|
/**
|
|
3218
3222
|
* When the maintenance is scheduled to begin
|
|
@@ -3299,6 +3303,10 @@ export type MaintenanceAnnouncementRequest = {
|
|
|
3299
3303
|
* Type of maintenance being performed
|
|
3300
3304
|
*/
|
|
3301
3305
|
maintenance_type?: MaintenanceTypeEnum;
|
|
3306
|
+
/**
|
|
3307
|
+
* Optional reference to an external maintenance tracker
|
|
3308
|
+
*/
|
|
3309
|
+
external_reference_url?: string;
|
|
3302
3310
|
/**
|
|
3303
3311
|
* When the maintenance is scheduled to begin
|
|
3304
3312
|
*/
|
|
@@ -6658,6 +6666,10 @@ export type PatchedMaintenanceAnnouncementRequest = {
|
|
|
6658
6666
|
* Type of maintenance being performed
|
|
6659
6667
|
*/
|
|
6660
6668
|
maintenance_type?: MaintenanceTypeEnum;
|
|
6669
|
+
/**
|
|
6670
|
+
* Optional reference to an external maintenance tracker
|
|
6671
|
+
*/
|
|
6672
|
+
external_reference_url?: string;
|
|
6661
6673
|
/**
|
|
6662
6674
|
* When the maintenance is scheduled to begin
|
|
6663
6675
|
*/
|
|
@@ -6958,10 +6970,6 @@ export type PatchedProviderPlanDetailsRequest = {
|
|
|
6958
6970
|
};
|
|
6959
6971
|
export type PatchedQuestionAdminRequest = {
|
|
6960
6972
|
description?: string;
|
|
6961
|
-
/**
|
|
6962
|
-
* Guidance shown when answer needs clarification
|
|
6963
|
-
*/
|
|
6964
|
-
solution?: string | null;
|
|
6965
6973
|
image?: (Blob | File) | null;
|
|
6966
6974
|
checklist?: string;
|
|
6967
6975
|
order?: number;
|
|
@@ -7461,7 +7469,7 @@ export type Project = {
|
|
|
7461
7469
|
* The date is inclusive. Once reached, all project resource will be scheduled for termination.
|
|
7462
7470
|
*/
|
|
7463
7471
|
end_date?: string | null;
|
|
7464
|
-
end_date_requested_by?: string | null;
|
|
7472
|
+
readonly end_date_requested_by?: string | null;
|
|
7465
7473
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
7466
7474
|
readonly oecd_fos_2007_label?: string;
|
|
7467
7475
|
is_industry?: boolean;
|
|
@@ -7595,7 +7603,6 @@ export type ProjectRequest = {
|
|
|
7595
7603
|
* The date is inclusive. Once reached, all project resource will be scheduled for termination.
|
|
7596
7604
|
*/
|
|
7597
7605
|
end_date?: string | null;
|
|
7598
|
-
end_date_requested_by?: string | null;
|
|
7599
7606
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
7600
7607
|
is_industry?: boolean;
|
|
7601
7608
|
image?: (Blob | File) | null;
|
|
@@ -7728,7 +7735,6 @@ export type ProposalChecklistAnswer = {
|
|
|
7728
7735
|
readonly question_description: string;
|
|
7729
7736
|
readonly question_type: string;
|
|
7730
7737
|
readonly question_required: boolean;
|
|
7731
|
-
readonly question_solution: string;
|
|
7732
7738
|
/**
|
|
7733
7739
|
* Flexible answer storage for different question types
|
|
7734
7740
|
*/
|
|
@@ -7786,10 +7792,6 @@ export type ProposalChecklistQuestion = {
|
|
|
7786
7792
|
*/
|
|
7787
7793
|
question_type: QuestionTypeEnum;
|
|
7788
7794
|
readonly required: boolean;
|
|
7789
|
-
/**
|
|
7790
|
-
* Guidance shown when answer needs clarification
|
|
7791
|
-
*/
|
|
7792
|
-
readonly solution: string | null;
|
|
7793
7795
|
readonly order: number;
|
|
7794
7796
|
readonly existing_answer: {
|
|
7795
7797
|
[key: string]: unknown;
|
|
@@ -8410,22 +8412,12 @@ export type QueryRequest = {
|
|
|
8410
8412
|
export type Question = {
|
|
8411
8413
|
readonly uuid: string;
|
|
8412
8414
|
description?: string;
|
|
8413
|
-
/**
|
|
8414
|
-
* Guidance shown when answer needs clarification
|
|
8415
|
-
*/
|
|
8416
|
-
solution?: string | null;
|
|
8417
|
-
readonly category_uuid: string;
|
|
8418
8415
|
image?: string | null;
|
|
8419
8416
|
readonly question_options: Array<QuestionOptions>;
|
|
8420
8417
|
};
|
|
8421
8418
|
export type QuestionAdmin = {
|
|
8422
8419
|
readonly uuid: string;
|
|
8423
8420
|
description?: string;
|
|
8424
|
-
/**
|
|
8425
|
-
* Guidance shown when answer needs clarification
|
|
8426
|
-
*/
|
|
8427
|
-
solution?: string | null;
|
|
8428
|
-
readonly category_uuid: string;
|
|
8429
8421
|
image?: string | null;
|
|
8430
8422
|
readonly question_options: Array<QuestionOptionsAdmin>;
|
|
8431
8423
|
readonly url: string;
|
|
@@ -8450,10 +8442,6 @@ export type QuestionAdmin = {
|
|
|
8450
8442
|
};
|
|
8451
8443
|
export type QuestionAdminRequest = {
|
|
8452
8444
|
description?: string;
|
|
8453
|
-
/**
|
|
8454
|
-
* Guidance shown when answer needs clarification
|
|
8455
|
-
*/
|
|
8456
|
-
solution?: string | null;
|
|
8457
8445
|
image?: (Blob | File) | null;
|
|
8458
8446
|
checklist: string;
|
|
8459
8447
|
order?: number;
|
|
@@ -19909,6 +19897,15 @@ export type MarketplaceMaintenanceAnnouncementTemplateOfferingsListData = {
|
|
|
19909
19897
|
body?: never;
|
|
19910
19898
|
path?: never;
|
|
19911
19899
|
query?: {
|
|
19900
|
+
impact_level?: number;
|
|
19901
|
+
maintenance_template_uuid?: string;
|
|
19902
|
+
/**
|
|
19903
|
+
* Ordering
|
|
19904
|
+
*
|
|
19905
|
+
*
|
|
19906
|
+
*/
|
|
19907
|
+
o?: Array<'-created' | 'created'>;
|
|
19908
|
+
offering_uuid?: string;
|
|
19912
19909
|
/**
|
|
19913
19910
|
* A page number within the paginated result set.
|
|
19914
19911
|
*/
|
|
@@ -19917,6 +19914,7 @@ export type MarketplaceMaintenanceAnnouncementTemplateOfferingsListData = {
|
|
|
19917
19914
|
* Number of results to return per page.
|
|
19918
19915
|
*/
|
|
19919
19916
|
page_size?: number;
|
|
19917
|
+
service_provider_uuid?: string;
|
|
19920
19918
|
};
|
|
19921
19919
|
url: '/api/marketplace-maintenance-announcement-template-offerings/';
|
|
19922
19920
|
};
|
|
@@ -19928,6 +19926,15 @@ export type MarketplaceMaintenanceAnnouncementTemplateOfferingsHeadData = {
|
|
|
19928
19926
|
body?: never;
|
|
19929
19927
|
path?: never;
|
|
19930
19928
|
query?: {
|
|
19929
|
+
impact_level?: number;
|
|
19930
|
+
maintenance_template_uuid?: string;
|
|
19931
|
+
/**
|
|
19932
|
+
* Ordering
|
|
19933
|
+
*
|
|
19934
|
+
*
|
|
19935
|
+
*/
|
|
19936
|
+
o?: Array<'-created' | 'created'>;
|
|
19937
|
+
offering_uuid?: string;
|
|
19931
19938
|
/**
|
|
19932
19939
|
* A page number within the paginated result set.
|
|
19933
19940
|
*/
|
|
@@ -19936,6 +19943,7 @@ export type MarketplaceMaintenanceAnnouncementTemplateOfferingsHeadData = {
|
|
|
19936
19943
|
* Number of results to return per page.
|
|
19937
19944
|
*/
|
|
19938
19945
|
page_size?: number;
|
|
19946
|
+
service_provider_uuid?: string;
|
|
19939
19947
|
};
|
|
19940
19948
|
url: '/api/marketplace-maintenance-announcement-template-offerings/';
|
|
19941
19949
|
};
|
|
@@ -20060,6 +20068,13 @@ export type MarketplaceMaintenanceAnnouncementsTemplateListData = {
|
|
|
20060
20068
|
body?: never;
|
|
20061
20069
|
path?: never;
|
|
20062
20070
|
query?: {
|
|
20071
|
+
maintenance_type?: number;
|
|
20072
|
+
/**
|
|
20073
|
+
* Ordering
|
|
20074
|
+
*
|
|
20075
|
+
*
|
|
20076
|
+
*/
|
|
20077
|
+
o?: Array<'-created' | '-name' | 'created' | 'name'>;
|
|
20063
20078
|
/**
|
|
20064
20079
|
* A page number within the paginated result set.
|
|
20065
20080
|
*/
|
|
@@ -20068,6 +20083,7 @@ export type MarketplaceMaintenanceAnnouncementsTemplateListData = {
|
|
|
20068
20083
|
* Number of results to return per page.
|
|
20069
20084
|
*/
|
|
20070
20085
|
page_size?: number;
|
|
20086
|
+
service_provider_uuid?: string;
|
|
20071
20087
|
};
|
|
20072
20088
|
url: '/api/marketplace-maintenance-announcements-template/';
|
|
20073
20089
|
};
|
|
@@ -20079,6 +20095,13 @@ export type MarketplaceMaintenanceAnnouncementsTemplateHeadData = {
|
|
|
20079
20095
|
body?: never;
|
|
20080
20096
|
path?: never;
|
|
20081
20097
|
query?: {
|
|
20098
|
+
maintenance_type?: number;
|
|
20099
|
+
/**
|
|
20100
|
+
* Ordering
|
|
20101
|
+
*
|
|
20102
|
+
*
|
|
20103
|
+
*/
|
|
20104
|
+
o?: Array<'-created' | '-name' | 'created' | 'name'>;
|
|
20082
20105
|
/**
|
|
20083
20106
|
* A page number within the paginated result set.
|
|
20084
20107
|
*/
|
|
@@ -20087,6 +20110,7 @@ export type MarketplaceMaintenanceAnnouncementsTemplateHeadData = {
|
|
|
20087
20110
|
* Number of results to return per page.
|
|
20088
20111
|
*/
|
|
20089
20112
|
page_size?: number;
|
|
20113
|
+
service_provider_uuid?: string;
|
|
20090
20114
|
};
|
|
20091
20115
|
url: '/api/marketplace-maintenance-announcements-template/';
|
|
20092
20116
|
};
|