@@ -50,8 +50,12 @@ export interface definitions {
5050 version : 1 ;
5151 body : definitions [ "RegionBody" ] ;
5252 } ;
53- CreateRegion : { body : definitions [ "RegionBody" ] } ;
54- UpdateRegion : { name : string } ;
53+ CreateRegion : {
54+ body : definitions [ "RegionBody" ] ;
55+ } ;
56+ UpdateRegion : {
57+ name : string ;
58+ } ;
5559 ProviderBody : {
5660 owner_id ?: definitions [ "OptionalFlexID" ] ;
5761 team_id ?: definitions [ "OptionalID" ] ;
@@ -76,7 +80,9 @@ export interface definitions {
7680 type : "provider" ;
7781 body : definitions [ "ProviderBody" ] ;
7882 } ;
79- CreateProvider : { body : definitions [ "ProviderBody" ] } ;
83+ CreateProvider : {
84+ body : definitions [ "ProviderBody" ] ;
85+ } ;
8086 UpdateProvider : {
8187 id : definitions [ "ID" ] ;
8288 body : definitions [ "UpdateProviderBody" ] ;
@@ -121,7 +127,10 @@ export interface definitions {
121127 platform_ids ?: definitions [ "ID" ] [ ] ;
122128 tags ?: definitions [ "ProductTags" ] ;
123129 } ;
124- UpdatePlan : { id : definitions [ "ID" ] ; body : definitions [ "UpdatePlanBody" ] } ;
130+ UpdatePlan : {
131+ id : definitions [ "ID" ] ;
132+ body : definitions [ "UpdatePlanBody" ] ;
133+ } ;
125134 UpdatePlanBody : {
126135 name ?: definitions [ "Name" ] ;
127136 label ?: definitions [ "Label" ] ;
@@ -254,7 +263,8 @@ export interface definitions {
254263 value : definitions [ "FeatureValueLabel" ] ;
255264 } ;
256265 ValueProp : {
257- /** Heading of a value proposition. */ header : string ;
266+ /** Heading of a value proposition. */
267+ header : string ;
258268 /** Body of a value proposition. */
259269 body : string ;
260270 } ;
@@ -369,7 +379,10 @@ export interface definitions {
369379 * URL to this Product's Terms of Service. If provided is true, then
370380 * a url must be set. Otherwise, provided is false.
371381 */
372- terms : { url ?: string ; provided : boolean } ;
382+ terms : {
383+ url ?: string ;
384+ provided : boolean ;
385+ } ;
373386 feature_types : definitions [ "FeatureType" ] [ ] ;
374387 billing : {
375388 type : "monthly-prorated" | "monthly-anniversary" | "annual-anniversary" ;
@@ -390,7 +403,9 @@ export interface definitions {
390403 type : "product" ;
391404 body : definitions [ "ProductBody" ] ;
392405 } ;
393- CreateProduct : { body : definitions [ "ProductBody" ] } ;
406+ CreateProduct : {
407+ body : definitions [ "ProductBody" ] ;
408+ } ;
394409 /** Array of Plan IDs that this Plan can be resized to, if null all will be assumed */
395410 PlanResizeList : definitions [ "ID" ] [ ] ;
396411 PlanBody : {
@@ -441,10 +456,13 @@ export interface definitions {
441456 type : "plan" ;
442457 body : definitions [ "ExpandedPlanBody" ] ;
443458 } ;
444- CreatePlan : { body : definitions [ "PlanBody" ] } ;
459+ CreatePlan : {
460+ body : definitions [ "PlanBody" ] ;
461+ } ;
445462 /** Unexpected error */
446463 Error : {
447- /** The error type */ type : string ;
464+ /** The error type */
465+ type : string ;
448466 /** Explanation of the errors */
449467 message : string [ ] ;
450468 } ;
0 commit comments