2626 guides ,
2727 commits ,
2828 api_keys ,
29+ branches ,
2930 channels ,
3031 partials ,
3132 variables ,
@@ -70,6 +71,7 @@ class KnockMgmt(SyncAPIClient):
7071 environments : environments .EnvironmentsResource
7172 variables : variables .VariablesResource
7273 guides : guides .GuidesResource
74+ branches : branches .BranchesResource
7375 with_raw_response : KnockMgmtWithRawResponse
7476 with_streaming_response : KnockMgmtWithStreamedResponse
7577
@@ -140,6 +142,7 @@ def __init__(
140142 self .environments = environments .EnvironmentsResource (self )
141143 self .variables = variables .VariablesResource (self )
142144 self .guides = guides .GuidesResource (self )
145+ self .branches = branches .BranchesResource (self )
143146 self .with_raw_response = KnockMgmtWithRawResponse (self )
144147 self .with_streaming_response = KnockMgmtWithStreamedResponse (self )
145148
@@ -262,6 +265,7 @@ class AsyncKnockMgmt(AsyncAPIClient):
262265 environments : environments .AsyncEnvironmentsResource
263266 variables : variables .AsyncVariablesResource
264267 guides : guides .AsyncGuidesResource
268+ branches : branches .AsyncBranchesResource
265269 with_raw_response : AsyncKnockMgmtWithRawResponse
266270 with_streaming_response : AsyncKnockMgmtWithStreamedResponse
267271
@@ -332,6 +336,7 @@ def __init__(
332336 self .environments = environments .AsyncEnvironmentsResource (self )
333337 self .variables = variables .AsyncVariablesResource (self )
334338 self .guides = guides .AsyncGuidesResource (self )
339+ self .branches = branches .AsyncBranchesResource (self )
335340 self .with_raw_response = AsyncKnockMgmtWithRawResponse (self )
336341 self .with_streaming_response = AsyncKnockMgmtWithStreamedResponse (self )
337342
@@ -455,6 +460,7 @@ def __init__(self, client: KnockMgmt) -> None:
455460 self .environments = environments .EnvironmentsResourceWithRawResponse (client .environments )
456461 self .variables = variables .VariablesResourceWithRawResponse (client .variables )
457462 self .guides = guides .GuidesResourceWithRawResponse (client .guides )
463+ self .branches = branches .BranchesResourceWithRawResponse (client .branches )
458464
459465
460466class AsyncKnockMgmtWithRawResponse :
@@ -472,6 +478,7 @@ def __init__(self, client: AsyncKnockMgmt) -> None:
472478 self .environments = environments .AsyncEnvironmentsResourceWithRawResponse (client .environments )
473479 self .variables = variables .AsyncVariablesResourceWithRawResponse (client .variables )
474480 self .guides = guides .AsyncGuidesResourceWithRawResponse (client .guides )
481+ self .branches = branches .AsyncBranchesResourceWithRawResponse (client .branches )
475482
476483
477484class KnockMgmtWithStreamedResponse :
@@ -489,6 +496,7 @@ def __init__(self, client: KnockMgmt) -> None:
489496 self .environments = environments .EnvironmentsResourceWithStreamingResponse (client .environments )
490497 self .variables = variables .VariablesResourceWithStreamingResponse (client .variables )
491498 self .guides = guides .GuidesResourceWithStreamingResponse (client .guides )
499+ self .branches = branches .BranchesResourceWithStreamingResponse (client .branches )
492500
493501
494502class AsyncKnockMgmtWithStreamedResponse :
@@ -506,6 +514,7 @@ def __init__(self, client: AsyncKnockMgmt) -> None:
506514 self .environments = environments .AsyncEnvironmentsResourceWithStreamingResponse (client .environments )
507515 self .variables = variables .AsyncVariablesResourceWithStreamingResponse (client .variables )
508516 self .guides = guides .AsyncGuidesResourceWithStreamingResponse (client .guides )
517+ self .branches = branches .AsyncBranchesResourceWithStreamingResponse (client .branches )
509518
510519
511520Client = KnockMgmt
0 commit comments