waldur-js-client 1.0.4-dev.26 → 1.0.4-dev.28
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 +12 -12
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -5261,8 +5261,8 @@ export type OrderCreate = {
|
|
|
5261
5261
|
/**
|
|
5262
5262
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
5263
5263
|
*/
|
|
5264
|
-
readonly consumer_reviewed_by_username: string;
|
|
5265
|
-
readonly consumer_reviewed_by_full_name: string;
|
|
5264
|
+
readonly consumer_reviewed_by_username: string | null;
|
|
5265
|
+
readonly consumer_reviewed_by_full_name: string | null;
|
|
5266
5266
|
project: string;
|
|
5267
5267
|
readonly project_uuid: string;
|
|
5268
5268
|
readonly project_name: string;
|
|
@@ -5338,22 +5338,22 @@ export type OrderDetails = {
|
|
|
5338
5338
|
/**
|
|
5339
5339
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
5340
5340
|
*/
|
|
5341
|
-
readonly consumer_reviewed_by?: string;
|
|
5342
|
-
readonly consumer_reviewed_by_full_name?: string;
|
|
5341
|
+
readonly consumer_reviewed_by?: string | null;
|
|
5342
|
+
readonly consumer_reviewed_by_full_name?: string | null;
|
|
5343
5343
|
/**
|
|
5344
5344
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
5345
5345
|
*/
|
|
5346
|
-
readonly consumer_reviewed_by_username?: string;
|
|
5346
|
+
readonly consumer_reviewed_by_username?: string | null;
|
|
5347
5347
|
readonly consumer_reviewed_at?: string | null;
|
|
5348
5348
|
/**
|
|
5349
5349
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
5350
5350
|
*/
|
|
5351
|
-
readonly provider_reviewed_by?: string;
|
|
5352
|
-
readonly provider_reviewed_by_full_name?: string;
|
|
5351
|
+
readonly provider_reviewed_by?: string | null;
|
|
5352
|
+
readonly provider_reviewed_by_full_name?: string | null;
|
|
5353
5353
|
/**
|
|
5354
5354
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
5355
5355
|
*/
|
|
5356
|
-
readonly provider_reviewed_by_username?: string;
|
|
5356
|
+
readonly provider_reviewed_by_username?: string | null;
|
|
5357
5357
|
readonly provider_reviewed_at?: string | null;
|
|
5358
5358
|
/**
|
|
5359
5359
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
@@ -5368,10 +5368,10 @@ export type OrderDetails = {
|
|
|
5368
5368
|
readonly project_uuid?: string;
|
|
5369
5369
|
readonly project_description?: string;
|
|
5370
5370
|
readonly project_slug?: string;
|
|
5371
|
-
readonly old_plan_name?: string;
|
|
5372
|
-
readonly new_plan_name?: string;
|
|
5373
|
-
readonly old_plan_uuid?: string;
|
|
5374
|
-
readonly new_plan_uuid?: string;
|
|
5371
|
+
readonly old_plan_name?: string | null;
|
|
5372
|
+
readonly new_plan_name?: string | null;
|
|
5373
|
+
readonly old_plan_uuid?: string | null;
|
|
5374
|
+
readonly new_plan_uuid?: string | null;
|
|
5375
5375
|
readonly old_cost_estimate?: string | null;
|
|
5376
5376
|
readonly new_cost_estimate?: string | null;
|
|
5377
5377
|
readonly can_terminate?: boolean;
|