-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.456.0 (#15)
Co-authored-by: speakeasybot <[email protected]>
- Loading branch information
1 parent
321b022
commit 21e3d97
Showing
4,086 changed files
with
194,208 additions
and
184,763 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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,4 +1,7 @@ | ||
**/* | ||
!/FUNCTIONS.md | ||
!/RUNTIMES.md | ||
!/REACT_QUERY.md | ||
!/**/*.ts | ||
!/**/*.js | ||
!/**/*.map | ||
|
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
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# AcceptedChallenges | ||
|
||
Which challenge types the domain can use for issuing certs. | ||
|
||
## Example Usage | ||
|
||
```typescript | ||
import { AcceptedChallenges } from "@vercel/sdk/models/getdomainconfigop.js"; | ||
|
||
let value: AcceptedChallenges = "http-01"; | ||
``` | ||
|
||
## Values | ||
|
||
```typescript | ||
"dns-01" | "http-01" | ||
``` |
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 @@ | ||
# Access | ||
|
||
## Example Usage | ||
|
||
```typescript | ||
import { Access } from "@vercel/sdk/models/getaliasop.js"; | ||
|
||
let value: Access = "granted"; | ||
``` | ||
|
||
## Values | ||
|
||
```typescript | ||
"requested" | "granted" | ||
``` |
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,17 @@ | ||
# ACLAction | ||
|
||
Enum containing the actions that can be performed against a resource. Group operations are included. | ||
|
||
## Example Usage | ||
|
||
```typescript | ||
import { ACLAction } from "@vercel/sdk/models/aclaction.js"; | ||
|
||
let value: ACLAction = "update"; | ||
``` | ||
|
||
## Values | ||
|
||
```typescript | ||
"create" | "delete" | "read" | "update" | "list" | ||
``` |
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 @@ | ||
# Action | ||
|
||
## Example Usage | ||
|
||
```typescript | ||
import { Action } from "@vercel/sdk/models/updateinvoiceop.js"; | ||
|
||
let value: Action = "refund"; | ||
``` | ||
|
||
## Values | ||
|
||
```typescript | ||
"refund" | ||
``` |
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 @@ | ||
# Action1 | ||
|
||
## Example Usage | ||
|
||
```typescript | ||
import { Action1 } from "@vercel/sdk/models/putfirewallconfigop.js"; | ||
|
||
let value: Action1 = "rate_limit"; | ||
``` | ||
|
||
## Values | ||
|
||
```typescript | ||
"log" | "challenge" | "deny" | "rate_limit" | ||
``` |
Oops, something went wrong.