Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public partial interface ISandboxesClient
/// </summary>
/// <param name="snapshotId">
/// The unique identifier of the snapshot to delete.<br/>
/// Example: snap_abc123
/// Example: snap_1234567890123456789012345678
/// </param>
/// <param name="teamId">
/// Example: team_1a2b3c4d5e6f7g8h9i0j1k2l
Expand All @@ -33,7 +33,7 @@ public partial interface ISandboxesClient
/// </summary>
/// <param name="snapshotId">
/// The unique identifier of the snapshot to delete.<br/>
/// Example: snap_abc123
/// Example: snap_1234567890123456789012345678
/// </param>
/// <param name="teamId">
/// Example: team_1a2b3c4d5e6f7g8h9i0j1k2l
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public partial interface ISandboxesClient
/// </summary>
/// <param name="snapshotId">
/// The unique identifier of the snapshot to retrieve.<br/>
/// Example: snap_abc123
/// Example: snap_1234567890123456789012345678
/// </param>
/// <param name="teamId">
/// Example: team_1a2b3c4d5e6f7g8h9i0j1k2l
Expand All @@ -33,7 +33,7 @@ public partial interface ISandboxesClient
/// </summary>
/// <param name="snapshotId">
/// The unique identifier of the snapshot to retrieve.<br/>
/// Example: snap_abc123
/// Example: snap_1234567890123456789012345678
/// </param>
/// <param name="teamId">
/// Example: team_1a2b3c4d5e6f7g8h9i0j1k2l
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ partial void ProcessDeleteSessionSnapshotResponseContent(
/// </summary>
/// <param name="snapshotId">
/// The unique identifier of the snapshot to delete.<br/>
/// Example: snap_abc123
/// Example: snap_1234567890123456789012345678
/// </param>
/// <param name="teamId">
/// Example: team_1a2b3c4d5e6f7g8h9i0j1k2l
Expand Down Expand Up @@ -85,7 +85,7 @@ partial void ProcessDeleteSessionSnapshotResponseContent(
/// </summary>
/// <param name="snapshotId">
/// The unique identifier of the snapshot to delete.<br/>
/// Example: snap_abc123
/// Example: snap_1234567890123456789012345678
/// </param>
/// <param name="teamId">
/// Example: team_1a2b3c4d5e6f7g8h9i0j1k2l
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ partial void ProcessGetSessionSnapshotResponseContent(
/// </summary>
/// <param name="snapshotId">
/// The unique identifier of the snapshot to retrieve.<br/>
/// Example: snap_abc123
/// Example: snap_1234567890123456789012345678
/// </param>
/// <param name="teamId">
/// Example: team_1a2b3c4d5e6f7g8h9i0j1k2l
Expand Down Expand Up @@ -85,7 +85,7 @@ partial void ProcessGetSessionSnapshotResponseContent(
/// </summary>
/// <param name="snapshotId">
/// The unique identifier of the snapshot to retrieve.<br/>
/// Example: snap_abc123
/// Example: snap_1234567890123456789012345678
/// </param>
/// <param name="teamId">
/// Example: team_1a2b3c4d5e6f7g8h9i0j1k2l
Expand Down
8 changes: 6 additions & 2 deletions src/libs/Vercel/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -155734,7 +155734,9 @@
"schema": {
"type": "string",
"description": "The unique identifier of the snapshot to retrieve.",
"example": "snap_abc123"
"pattern": "^(?:snap_[A-Za-z0-9]{28}|vhs_[a-z0-9]{28})$",
"maxLength": 33,
"example": "snap_1234567890123456789012345678"
}
},
{
Expand Down Expand Up @@ -155816,7 +155818,9 @@
"schema": {
"type": "string",
"description": "The unique identifier of the snapshot to delete.",
"example": "snap_abc123"
"pattern": "^(?:snap_[A-Za-z0-9]{28}|vhs_[a-z0-9]{28})$",
"maxLength": 33,
"example": "snap_1234567890123456789012345678"
}
},
{
Expand Down