-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Connector Builder Server] add endpoint to resolve $refs and $options (…
- Loading branch information
Showing
7 changed files
with
340 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
airbyte-connector-builder-server/connector_builder/generated/models/resolve_manifest.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# coding: utf-8 | ||
|
||
from __future__ import annotations | ||
from datetime import date, datetime # noqa: F401 | ||
|
||
import re # noqa: F401 | ||
from typing import Any, Dict, List, Optional # noqa: F401 | ||
|
||
from pydantic import AnyUrl, BaseModel, EmailStr, validator # noqa: F401 | ||
|
||
|
||
class ResolveManifest(BaseModel): | ||
"""NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
Do not edit the class manually. | ||
ResolveManifest - a model defined in OpenAPI | ||
manifest: The manifest of this ResolveManifest. | ||
""" | ||
|
||
manifest: Dict[str, Any] | ||
|
||
ResolveManifest.update_forward_refs() |
24 changes: 24 additions & 0 deletions
24
...nector-builder-server/connector_builder/generated/models/resolve_manifest_request_body.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# coding: utf-8 | ||
|
||
from __future__ import annotations | ||
from datetime import date, datetime # noqa: F401 | ||
|
||
import re # noqa: F401 | ||
from typing import Any, Dict, List, Optional # noqa: F401 | ||
|
||
from pydantic import AnyUrl, BaseModel, EmailStr, validator # noqa: F401 | ||
|
||
|
||
class ResolveManifestRequestBody(BaseModel): | ||
"""NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
Do not edit the class manually. | ||
ResolveManifestRequestBody - a model defined in OpenAPI | ||
manifest: The manifest of this ResolveManifestRequestBody. | ||
""" | ||
|
||
manifest: Dict[str, Any] | ||
|
||
ResolveManifestRequestBody.update_forward_refs() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.