-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from airbytehq/speakeasy-sdk-regen-1705364089
chore: 🐝 Update SDK - Generate
- Loading branch information
Showing
222 changed files
with
2,618 additions
and
938 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,11 @@ | ||
# AccountNames | ||
|
||
Account Names Predicates Config. | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | ||
| `name` | *str* | :heavy_check_mark: | Account Name is a string value for comparing with the specified predicate. | | ||
| `operator` | [shared.Operator](../../models/shared/operator.md) | :heavy_check_mark: | An Operator that will be used to filter accounts. The Contains predicate has features for matching words, matching inflectional forms of words, searching using wildcard characters, and searching using proximity. The Equals is used to return all rows where account name is equal(=) to the string that you provided | |
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
2 changes: 1 addition & 1 deletion
2
docs/models/shared/s3staging.md → docs/models/shared/awss3staging.md
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,11 @@ | ||
# AWSSellerPartnerAccountType | ||
|
||
Type of the Account you're going to authorize the Airbyte application by | ||
|
||
|
||
## Values | ||
|
||
| Name | Value | | ||
| -------- | -------- | | ||
| `SELLER` | Seller | | ||
| `VENDOR` | Vendor | |
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,8 @@ | ||
# Cart | ||
|
||
|
||
## Values | ||
|
||
| Name | Value | | ||
| ------ | ------ | | ||
| `CART` | cart | |
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,11 @@ | ||
# CentralAPIRouter | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | | ||
| `auth_type` | [shared.SourceCartAuthType](../../models/shared/sourcecartauthtype.md) | :heavy_check_mark: | N/A | | ||
| `site_id` | *str* | :heavy_check_mark: | You can determine a site provisioning site Id by hitting https://site.com/store/sitemonitor.aspx and reading the response param PSID | | ||
| `user_name` | *str* | :heavy_check_mark: | Enter your application's User Name | | ||
| `user_secret` | *str* | :heavy_check_mark: | Enter your application's User Secret | |
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,15 @@ | ||
# ClickWindowDays | ||
|
||
Number of days to use as the conversion attribution window for a pin click action. | ||
|
||
|
||
## Values | ||
|
||
| Name | Value | | ||
| ---------- | ---------- | | ||
| `ZERO` | 0 | | ||
| `ONE` | 1 | | ||
| `SEVEN` | 7 | | ||
| `FOURTEEN` | 14 | | ||
| `THIRTY` | 30 | | ||
| `SIXTY` | 60 | |
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,19 @@ | ||
# CohortReports | ||
|
||
Cohort reports creates a time series of user retention for the cohort. | ||
|
||
|
||
## Supported Types | ||
|
||
### SourceGoogleAnalyticsDataAPIDisabled | ||
|
||
```python | ||
cohortReports: shared.SourceGoogleAnalyticsDataAPIDisabled = /* values here */ | ||
``` | ||
|
||
### SourceGoogleAnalyticsDataAPISchemasEnabled | ||
|
||
```python | ||
cohortReports: shared.SourceGoogleAnalyticsDataAPISchemasEnabled = /* values here */ | ||
``` | ||
|
Oops, something went wrong.