@@ -14,7 +14,7 @@ class ApiKeyDetails < ::SpeakeasyClientSDK::Utils::FieldAugmented
14
14
15
15
field :account_type , ::SpeakeasyClientSDK ::Shared ::AccountType , { 'format_json' : { 'letter_case' : ::SpeakeasyClientSDK ::Utils . field_name ( 'account_type' ) , 'decoder' : Utils . enum_from_string ( ::SpeakeasyClientSDK ::Shared ::AccountType , false ) } }
16
16
17
- field :feature_flags , T ::Array [ ::SpeakeasyClientSDK :: Shared :: FeatureFlags ] , { 'format_json' : { 'letter_case' : ::SpeakeasyClientSDK ::Utils . field_name ( 'feature_flags ' ) } }
17
+ field :enabled_features , T ::Array [ ::String ] , { 'format_json' : { 'letter_case' : ::SpeakeasyClientSDK ::Utils . field_name ( 'enabled_features ' ) } }
18
18
19
19
field :org_slug , ::String , { 'format_json' : { 'letter_case' : ::SpeakeasyClientSDK ::Utils . field_name ( 'org_slug' ) } }
20
20
@@ -25,10 +25,10 @@ class ApiKeyDetails < ::SpeakeasyClientSDK::Utils::FieldAugmented
25
25
field :generation_access_unlimited , T . nilable ( T ::Boolean ) , { 'format_json' : { 'letter_case' : ::SpeakeasyClientSDK ::Utils . field_name ( 'generation_access_unlimited' ) } }
26
26
27
27
28
- sig { params ( account_type : ::SpeakeasyClientSDK ::Shared ::AccountType , feature_flags : T ::Array [ ::SpeakeasyClientSDK :: Shared :: FeatureFlags ] , org_slug : ::String , workspace_id : ::String , workspace_slug : ::String , generation_access_unlimited : T . nilable ( T ::Boolean ) ) . void }
29
- def initialize ( account_type : nil , feature_flags : nil , org_slug : nil , workspace_id : nil , workspace_slug : nil , generation_access_unlimited : nil )
28
+ sig { params ( account_type : ::SpeakeasyClientSDK ::Shared ::AccountType , enabled_features : T ::Array [ ::String ] , org_slug : ::String , workspace_id : ::String , workspace_slug : ::String , generation_access_unlimited : T . nilable ( T ::Boolean ) ) . void }
29
+ def initialize ( account_type : nil , enabled_features : nil , org_slug : nil , workspace_id : nil , workspace_slug : nil , generation_access_unlimited : nil )
30
30
@account_type = account_type
31
- @feature_flags = feature_flags
31
+ @enabled_features = enabled_features
32
32
@org_slug = org_slug
33
33
@workspace_id = workspace_id
34
34
@workspace_slug = workspace_slug
0 commit comments