@@ -14,7 +14,7 @@ class ApiKeyDetails < ::SpeakeasyClientSDK::Utils::FieldAugmented
1414
1515 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 ) } }
1616
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 ' ) } }
1818
1919 field :org_slug , ::String , { 'format_json' : { 'letter_case' : ::SpeakeasyClientSDK ::Utils . field_name ( 'org_slug' ) } }
2020
@@ -25,10 +25,10 @@ class ApiKeyDetails < ::SpeakeasyClientSDK::Utils::FieldAugmented
2525 field :generation_access_unlimited , T . nilable ( T ::Boolean ) , { 'format_json' : { 'letter_case' : ::SpeakeasyClientSDK ::Utils . field_name ( 'generation_access_unlimited' ) } }
2626
2727
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 )
3030 @account_type = account_type
31- @feature_flags = feature_flags
31+ @enabled_features = enabled_features
3232 @org_slug = org_slug
3333 @workspace_id = workspace_id
3434 @workspace_slug = workspace_slug
0 commit comments