|
26 | 26 | from ._version import __version__ |
27 | 27 | from .resources import ( |
28 | 28 | tasks, |
| 29 | + editors, |
29 | 30 | projects, |
30 | 31 | services, |
31 | 32 | environments, |
@@ -53,6 +54,7 @@ class Gitpod(SyncAPIClient): |
53 | 54 | services: services.ServicesResource |
54 | 55 | automations_files: automations_files.AutomationsFilesResource |
55 | 56 | tasks: tasks.TasksResource |
| 57 | + editors: editors.EditorsResource |
56 | 58 | environment_automations: environment_automations.EnvironmentAutomationsResource |
57 | 59 | environments: environments.EnvironmentsResource |
58 | 60 | environment_classes: environment_classes.EnvironmentClassesResource |
@@ -109,6 +111,7 @@ def __init__( |
109 | 111 | self.services = services.ServicesResource(self) |
110 | 112 | self.automations_files = automations_files.AutomationsFilesResource(self) |
111 | 113 | self.tasks = tasks.TasksResource(self) |
| 114 | + self.editors = editors.EditorsResource(self) |
112 | 115 | self.environment_automations = environment_automations.EnvironmentAutomationsResource(self) |
113 | 116 | self.environments = environments.EnvironmentsResource(self) |
114 | 117 | self.environment_classes = environment_classes.EnvironmentClassesResource(self) |
@@ -222,6 +225,7 @@ class AsyncGitpod(AsyncAPIClient): |
222 | 225 | services: services.AsyncServicesResource |
223 | 226 | automations_files: automations_files.AsyncAutomationsFilesResource |
224 | 227 | tasks: tasks.AsyncTasksResource |
| 228 | + editors: editors.AsyncEditorsResource |
225 | 229 | environment_automations: environment_automations.AsyncEnvironmentAutomationsResource |
226 | 230 | environments: environments.AsyncEnvironmentsResource |
227 | 231 | environment_classes: environment_classes.AsyncEnvironmentClassesResource |
@@ -278,6 +282,7 @@ def __init__( |
278 | 282 | self.services = services.AsyncServicesResource(self) |
279 | 283 | self.automations_files = automations_files.AsyncAutomationsFilesResource(self) |
280 | 284 | self.tasks = tasks.AsyncTasksResource(self) |
| 285 | + self.editors = editors.AsyncEditorsResource(self) |
281 | 286 | self.environment_automations = environment_automations.AsyncEnvironmentAutomationsResource(self) |
282 | 287 | self.environments = environments.AsyncEnvironmentsResource(self) |
283 | 288 | self.environment_classes = environment_classes.AsyncEnvironmentClassesResource(self) |
@@ -392,6 +397,7 @@ def __init__(self, client: Gitpod) -> None: |
392 | 397 | self.services = services.ServicesResourceWithRawResponse(client.services) |
393 | 398 | self.automations_files = automations_files.AutomationsFilesResourceWithRawResponse(client.automations_files) |
394 | 399 | self.tasks = tasks.TasksResourceWithRawResponse(client.tasks) |
| 400 | + self.editors = editors.EditorsResourceWithRawResponse(client.editors) |
395 | 401 | self.environment_automations = environment_automations.EnvironmentAutomationsResourceWithRawResponse( |
396 | 402 | client.environment_automations |
397 | 403 | ) |
@@ -420,6 +426,7 @@ def __init__(self, client: AsyncGitpod) -> None: |
420 | 426 | client.automations_files |
421 | 427 | ) |
422 | 428 | self.tasks = tasks.AsyncTasksResourceWithRawResponse(client.tasks) |
| 429 | + self.editors = editors.AsyncEditorsResourceWithRawResponse(client.editors) |
423 | 430 | self.environment_automations = environment_automations.AsyncEnvironmentAutomationsResourceWithRawResponse( |
424 | 431 | client.environment_automations |
425 | 432 | ) |
@@ -448,6 +455,7 @@ def __init__(self, client: Gitpod) -> None: |
448 | 455 | client.automations_files |
449 | 456 | ) |
450 | 457 | self.tasks = tasks.TasksResourceWithStreamingResponse(client.tasks) |
| 458 | + self.editors = editors.EditorsResourceWithStreamingResponse(client.editors) |
451 | 459 | self.environment_automations = environment_automations.EnvironmentAutomationsResourceWithStreamingResponse( |
452 | 460 | client.environment_automations |
453 | 461 | ) |
@@ -476,6 +484,7 @@ def __init__(self, client: AsyncGitpod) -> None: |
476 | 484 | client.automations_files |
477 | 485 | ) |
478 | 486 | self.tasks = tasks.AsyncTasksResourceWithStreamingResponse(client.tasks) |
| 487 | + self.editors = editors.AsyncEditorsResourceWithStreamingResponse(client.editors) |
479 | 488 | self.environment_automations = environment_automations.AsyncEnvironmentAutomationsResourceWithStreamingResponse( |
480 | 489 | client.environment_automations |
481 | 490 | ) |
|
0 commit comments