@@ -639,7 +639,7 @@ export interface definitions {
639
639
readonly sso_url ?: string
640
640
/** @enum {string} */
641
641
readonly version ?: 'v1'
642
- /** @default [object Object] */
642
+ /** @default {} */
643
643
readonly features ?: {
644
644
readonly access_code ?: boolean
645
645
readonly sso ?: boolean
@@ -762,7 +762,13 @@ export interface definitions {
762
762
/**
763
763
* @description Price describes how the feature cost should be calculated.
764
764
*
765
- * @example [object Object]
765
+ * @example {
766
+ * "feature_multiplies_base_cost": "(* plan#base_cost feature-a#multiply_factor)",
767
+ * "feature_multiplies_feature_cost": "(* feature-b#cost feature-a#multiply_factor)",
768
+ * "feature_multiplies_numeric_value": "(* feature-c#number feature-a#multiply_factor)",
769
+ * "feature_multiplies_total_cost": "(* plan#total_cost feature-a#multiply_factor)",
770
+ * "feature_nested_formulas": "(+ (- (* feature-a#cost feature-b#multiply_factor) 500) plan#partial_cost)"
771
+ * }
766
772
*/
767
773
readonly formula ?: definitions [ 'PriceFormula' ]
768
774
/** @description Description explains how a feature is calculated to the user. */
@@ -834,7 +840,7 @@ export interface definitions {
834
840
readonly ProductTags : readonly definitions [ 'Label' ] [ ]
835
841
/** @enum {string} */
836
842
readonly ProductState : 'available' | 'hidden' | 'grandfathered' | 'new' | 'upcoming'
837
- /** @default [object Object] */
843
+ /** @default {} */
838
844
readonly ProductListing : {
839
845
/**
840
846
* @description When true, everyone can see the product when requested. When false it will
@@ -859,7 +865,7 @@ export interface definitions {
859
865
* we find ourselves in a position where we think they should, we should
860
866
* consider refactoring our listing definition.
861
867
*
862
- * @default [object Object]
868
+ * @default {}
863
869
*/
864
870
readonly marketing ?: {
865
871
/**
@@ -898,7 +904,7 @@ export interface definitions {
898
904
* @enum {string}
899
905
*/
900
906
readonly ProductProvisioning : 'provider-only' | 'pre-order' | 'public'
901
- /** @default [object Object] */
907
+ /** @default {} */
902
908
readonly ProductIntegrationFeatures : {
903
909
/**
904
910
* @description Indicates whether or not this product supports resource transitions to
0 commit comments