@@ -23,37 +23,14 @@ export type OrganizationSubscriptionQueryParams = {
2323// @ts -expect-error solve the query function inheritance ts error
2424export class OrganizationSubscription extends Subscription {
2525 agency_site : boolean ;
26- big_dev : null ;
2726 big_dev_service : null ;
28- continuous_profiling : null ;
29- created_at : string ;
30- enterprise_tag : string ;
31- environments : number ;
32- fastly_service_ids : null ;
33- green : boolean ;
27+ fastly_service_ids : string [ ] | null ;
3428 hipaa : boolean ;
35- id : string ;
3629 invoiced : boolean ;
3730 is_trial_plan : boolean ;
3831 locked : null ;
39- options_url : string ;
40- owner : string ;
41- owner_info : {
42- type : string ;
43- } ;
44-
45- plan : string ;
46- project_id : string ;
4732 project_notes : string ;
48- project_region_label : string ;
49- project_title : string ;
50- project_ui : string ;
5133 services : unknown [ ] ;
52- storage : number ;
53- support_tier : string ;
54- updated_at : string ;
55- user_licenses : number ;
56- vendor : string ;
5734
5835 constructor ( subscription : APIObject , customUrl ?: string ) {
5936 const { organizationId } = subscription ;
@@ -70,34 +47,14 @@ export class OrganizationSubscription extends Subscription {
7047 this . _creatableField . push ( "organizationId" ) ;
7148
7249 this . agency_site = subscription . agency_site ;
73- this . big_dev = subscription . big_dev ;
7450 this . big_dev_service = subscription . big_dev_service ;
75- this . continuous_profiling = subscription . continuous_profiling ;
76- this . created_at = subscription . created_at ;
77- this . enterprise_tag = subscription . enterprise_tag ;
78- this . environments = subscription . environments ;
7951 this . fastly_service_ids = subscription . fastly_service_ids ;
80- this . green = subscription . green ;
8152 this . hipaa = subscription . hipaa ;
82- this . id = subscription . id ;
8353 this . invoiced = subscription . invoiced ;
8454 this . is_trial_plan = subscription . is_trial_plan ;
8555 this . locked = subscription . locked ;
86- this . options_url = subscription . options_url ;
87- this . owner = subscription . owner ;
88- this . owner_info = subscription . owner_info ;
89- this . plan = subscription . plan ;
90- this . project_id = subscription . project_id ;
9156 this . project_notes = subscription . project_notes ;
92- this . project_region_label = subscription . project_region_label ;
93- this . project_title = subscription . project_title ;
94- this . project_ui = subscription . project_ui ;
9557 this . services = subscription . services ;
96- this . storage = subscription . storage ;
97- this . support_tier = subscription . support_tier ;
98- this . updated_at = subscription . updated_at ;
99- this . user_licenses = subscription . user_licenses ;
100- this . vendor = subscription . vendor ;
10158 }
10259
10360 static async get (
0 commit comments