-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into leti/experiment-add-source-in-signup
* master: (130 commits) ami-0d648081937c75a73 -> ami-06cf12549e3d9c522 (#18667) Rename maxCursor and add comment (#18570) Fix source spec diff (#18645) Source S3: use AirbyteTracedException (#18602) Add endpoint to retrieve manifest template (#18578) Source Mailjet SMS: publish PR and add source def (#18620) 🎉 New Connector: Zendesk Sell [python cdk] (#17888) More comprehensive temporal error message (#18608) 🎉 New Source: Mailjet SMS (#18345) Fix ConfiguredCatalog for Resets (#18625) Bmoric/extract healt api (#18523) Add versioning logging (#18618) 🐛 Lowcode: ListStreamSlicer and SubstreamSlicer should get the stream_slice from the arguments (#18574) Improved the Oracle cloud deployment guide (#18615) Remove workflow version check (#18613) Protocol Change: `AirbyteControlMessage.ConnectorConfig` (#17907) Replace `recipesLink` link with `tutorialsLink` (#18616) 🎉 New Source: Waiteraid [low-code cdk] (#18165) 🎉 New Destination: Typesense (#18349) Clean up build.gradle. (#18555) ...
- Loading branch information
Showing
1,140 changed files
with
37,860 additions
and
5,306 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,51 @@ | ||
name: Deploy docs.airbyte.com [DUMMY workflow] | ||
name: Deploy docs.airbyte.com | ||
|
||
on: | ||
## XXX uncomment the following when this code gets in good shape | ||
#push: | ||
# branches: | ||
# - master | ||
# paths: | ||
# - 'docs/**' | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- 'docs/**' | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
dummy-job: | ||
name: A placeholder job | ||
name: Deploy Docs Assets | ||
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: A placeholder step | ||
shell: bash | ||
run: |- | ||
echo "Hello from 'Deploy Docs' workflow!" | ||
- name: Check out the repository | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
# Node.js is needed for Yarn | ||
- name: Setup Yarn | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '16.14.0' | ||
cache: 'yarn' | ||
cache-dependency-path: docusaurus | ||
|
||
- name: Run Docusaurus | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: ./tools/bin/deploy_docusaurus | ||
|
||
- name: Notify Slack channel on failure | ||
uses: abinoda/slack-action@master | ||
if: failure() | ||
env: | ||
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN_AIRBYTE_TEAM }} | ||
with: | ||
# 'C03BEADRPNY' channel => '#oss-master-build-failure' | ||
args: >- | ||
{\"channel\":\"C03BEADRPNY\", \"blocks\":[ | ||
{\"type\":\"divider\"}, | ||
{\"type\":\"section\",\"text\":{\"type\":\"mrkdwn\",\"text\":\"OSS Docs build fails on the latest master :bangbang: \n\n\"}}, | ||
{\"type\":\"section\",\"text\":{\"type\":\"mrkdwn\",\"text\":\"_merged by_: *${{ github.actor }}* \n\"}}, | ||
{\"type\":\"section\",\"text\":{\"type\":\"mrkdwn\",\"text\":\" :octavia-shocked: <https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}|View Action Run> :octavia-shocked: \n\"}}, | ||
{\"type\":\"divider\"}]} | ||
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# generated by generate-protocol-files | ||
from .airbyte_protocol import * | ||
from .well_known_types import * |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
# | ||
# Copyright (c) 2022 Airbyte, Inc., all rights reserved. | ||
# | ||
|
||
# generated by datamodel-codegen: | ||
# filename: well_known_types.yaml | ||
|
||
from __future__ import annotations | ||
|
||
from enum import Enum | ||
from typing import Any, Union | ||
|
||
from pydantic import BaseModel, Field, constr | ||
|
||
|
||
class Model(BaseModel): | ||
__root__: Any | ||
|
||
|
||
class String(BaseModel): | ||
__root__: str = Field(..., description="Arbitrary text") | ||
|
||
|
||
class BinaryData(BaseModel): | ||
__root__: constr(regex=r"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$") = Field( | ||
..., | ||
description="Arbitrary binary data. Represented as base64-encoded strings in the JSON transport. In the future, if we support other transports, may be encoded differently.\n", | ||
) | ||
|
||
|
||
class Date(BaseModel): | ||
__root__: constr(regex=r"^\d{4}-\d{2}-\d{2}( BC)?$") = Field( | ||
..., description="RFC 3339§5.6's full-date format, extended with BC era support" | ||
) | ||
|
||
|
||
class TimestampWithTimezone(BaseModel): | ||
__root__: constr(regex=r"^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d+)?(Z|[+\-]\d{1,2}:\d{2})( BC)?$") = Field( | ||
..., | ||
description='An instant in time. Frequently simply referred to as just a timestamp, or timestamptz. Uses RFC 3339§5.6\'s date-time format, requiring a "T" separator, and extended with BC era support. Note that we do _not_ accept Unix epochs here.\n', | ||
) | ||
|
||
|
||
class TimestampWithoutTimezone(BaseModel): | ||
__root__: constr(regex=r"^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d+)?( BC)?$") = Field( | ||
..., | ||
description='Also known as a localdatetime, or just datetime. Under RFC 3339§5.6, this would be represented as `full-date "T" partial-time`, extended with BC era support.\n', | ||
) | ||
|
||
|
||
class TimeWithTimezone(BaseModel): | ||
__root__: constr(regex=r"^\d{2}:\d{2}:\d{2}(\.\d+)?(Z|[+\-]\d{1,2}:\d{2})$") = Field(..., description="An RFC 3339§5.6 full-time") | ||
|
||
|
||
class TimeWithoutTimezone(BaseModel): | ||
__root__: constr(regex=r"^\d{2}:\d{2}:\d{2}(\.\d+)?$") = Field(..., description="An RFC 3339§5.6 partial-time") | ||
|
||
|
||
class NumberEnum(Enum): | ||
Infinity = "Infinity" | ||
_Infinity = "-Infinity" | ||
NaN = "NaN" | ||
|
||
|
||
class Number(BaseModel): | ||
__root__: Union[Any, NumberEnum] = Field( | ||
..., | ||
description="Note the mix of regex validation for normal numbers, and enum validation for special values.", | ||
) | ||
|
||
|
||
class IntegerEnum(Enum): | ||
Infinity = "Infinity" | ||
_Infinity = "-Infinity" | ||
NaN = "NaN" | ||
|
||
|
||
class Integer(BaseModel): | ||
__root__: Union[Any, IntegerEnum] | ||
|
||
|
||
class Boolean(BaseModel): | ||
__root__: bool = Field( | ||
..., | ||
description="Note the direct usage of a primitive boolean rather than string. Unlike Numbers and Integers, we don't expect unusual values here.", | ||
) |
Oops, something went wrong.