|
307 | 307 | "delete": {
|
308 | 308 | "description": "Delete plugin by team and plugin name",
|
309 | 309 | "operationId": "DeletePluginByTeamAndPluginName",
|
| 310 | + "x-internal": true, |
310 | 311 | "parameters": [
|
311 | 312 | {
|
312 | 313 | "$ref": "#/components/parameters/team_name"
|
|
1402 | 1403 | "delete": {
|
1403 | 1404 | "description": "Delete addon by team and addon name",
|
1404 | 1405 | "operationId": "DeleteAddonByTeamAndName",
|
| 1406 | + "x-internal": true, |
1405 | 1407 | "parameters": [
|
1406 | 1408 | {
|
1407 | 1409 | "$ref": "#/components/parameters/team_name"
|
|
2098 | 2100 | "delete": {
|
2099 | 2101 | "description": "Delete plugins by team",
|
2100 | 2102 | "operationId": "DeletePluginsByTeam",
|
| 2103 | + "x-internal": true, |
2101 | 2104 | "parameters": [
|
2102 | 2105 | {
|
2103 | 2106 | "$ref": "#/components/parameters/team_name"
|
|
2210 | 2213 | "delete": {
|
2211 | 2214 | "description": "Delete addons by team",
|
2212 | 2215 | "operationId": "DeleteAddonsByTeam",
|
| 2216 | + "x-internal": true, |
2213 | 2217 | "parameters": [
|
2214 | 2218 | {
|
2215 | 2219 | "$ref": "#/components/parameters/team_name"
|
|
3420 | 3424 | "other"
|
3421 | 3425 | ]
|
3422 | 3426 | },
|
| 3427 | + "PluginReleaseStage": { |
| 3428 | + "description": "Official plugins go through two release stages: Preview, and GA.\nBoth Preview and GA plugins follow semantic versioning. The main differences between the two stages are:\nPreview plugins are still experimental and may have frequent breaking changes. Preview plugins might get deprecated due to lack of usage. Long Term Support with community Discord and bug fixes is only guaranteed for GA plugins. Premium plugins are often discounted or free during the Preview stage.", |
| 3429 | + "type": "string", |
| 3430 | + "enum": [ |
| 3431 | + "preview", |
| 3432 | + "ga" |
| 3433 | + ], |
| 3434 | + "default": "preview" |
| 3435 | + }, |
3423 | 3436 | "PluginTier": {
|
3424 | 3437 | "description": "Supported tiers for plugins",
|
3425 | 3438 | "type": "string",
|
|
3468 | 3481 | "description": "True if the plugin is maintained by CloudQuery, false otherwise",
|
3469 | 3482 | "type": "boolean"
|
3470 | 3483 | },
|
| 3484 | + "release_stage": { |
| 3485 | + "$ref": "#/components/schemas/PluginReleaseStage" |
| 3486 | + }, |
3471 | 3487 | "repository": {
|
3472 | 3488 | "type": "string",
|
3473 | 3489 | "example": "https://github.com/cloudquery/cloudquery"
|
|
3593 | 3609 | "type": "string",
|
3594 | 3610 | "example": "https://cloudquery.io"
|
3595 | 3611 | },
|
3596 |
| - "repository": { |
3597 |
| - "type": "string", |
3598 |
| - "example": "https://github.com/cloudquery/cloudquery" |
3599 |
| - }, |
3600 | 3612 | "public": {
|
3601 | 3613 | "type": "boolean",
|
3602 | 3614 | "description": "Whether the plugin is listed in the CloudQuery Hub. If false, the plugin will not be shown in the CloudQuery Hub and will only be visible to members of the team.",
|
3603 | 3615 | "example": true
|
3604 | 3616 | },
|
| 3617 | + "repository": { |
| 3618 | + "type": "string", |
| 3619 | + "example": "https://github.com/cloudquery/cloudquery" |
| 3620 | + }, |
| 3621 | + "release_stage": { |
| 3622 | + "$ref": "#/components/schemas/PluginReleaseStage" |
| 3623 | + }, |
3605 | 3624 | "logo": {
|
3606 | 3625 | "type": "string",
|
3607 | 3626 | "description": "URL to the plugin's logo. This will be shown in the CloudQuery Hub. This must point to https://images.cloudquery.io/...",
|
|
3611 | 3630 | "type": "string",
|
3612 | 3631 | "pattern": "^\\d+(?:\\.\\d{1,10})?$",
|
3613 | 3632 | "description": "The price per row in USD. This is used to calculate the price of a sync.",
|
3614 |
| - "example": "0.0001", |
| 3633 | + "example": "0.00001", |
3615 | 3634 | "x-go-name": "USDPerRow"
|
3616 | 3635 | },
|
3617 | 3636 | "free_rows_per_month": {
|
3618 | 3637 | "type": "integer",
|
3619 | 3638 | "format": "int64",
|
3620 | 3639 | "description": "The number of rows that can be synced for free each month.",
|
3621 |
| - "example": 1000 |
| 3640 | + "example": 10000 |
3622 | 3641 | }
|
3623 | 3642 | }
|
3624 | 3643 | },
|
|
3686 | 3705 | "type": "boolean",
|
3687 | 3706 | "description": "If plugin is not public, it won't be visible to other teams in the CloudQuery Hub."
|
3688 | 3707 | },
|
| 3708 | + "release_stage": { |
| 3709 | + "$ref": "#/components/schemas/PluginReleaseStage" |
| 3710 | + }, |
3689 | 3711 | "usd_per_row": {
|
3690 | 3712 | "type": "string",
|
3691 | 3713 | "pattern": "^\\d+(?:\\.\\d{1,10})?$",
|
|
0 commit comments