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
26 changes: 5 additions & 21 deletions apps/api-client-go/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1642,7 +1642,7 @@ paths:
minimum: 1
type: number
style: form
- description: "Filter by partial Box ID, internal UUID, or name match"
- description: Filter by partial Box ID or name match
explode: true
in: query
name: id
Expand Down Expand Up @@ -1794,7 +1794,6 @@ paths:
default: createdAt
enum:
- id
- boxId
- name
- state
- region
Expand Down Expand Up @@ -6350,8 +6349,7 @@ components:
type: object
Box:
example:
id: fd955d93-e74a-48e7-9f2d-fcbe6dd9e920
boxId: aB3cD4eF5gH6
id: aB3cD4eF5gH6
organizationId: organization123
name: MyBox
user: boxlite
Expand Down Expand Up @@ -6389,11 +6387,7 @@ components:
toolboxProxyUrl: https://proxy.app.boxlite.io/toolbox
properties:
id:
description: The internal UUID of the box
example: fd955d93-e74a-48e7-9f2d-fcbe6dd9e920
type: string
boxId:
description: The public Box ID shown to users and SDK clients
description: The public 12-character Box ID
example: aB3cD4eF5gH6
type: string
organizationId:
Expand Down Expand Up @@ -6521,7 +6515,6 @@ components:
example: https://proxy.app.boxlite.io/toolbox
type: string
required:
- boxId
- cpu
- disk
- env
Expand All @@ -6540,8 +6533,7 @@ components:
PaginatedBoxes:
example:
items:
- id: fd955d93-e74a-48e7-9f2d-fcbe6dd9e920
boxId: aB3cD4eF5gH6
- id: aB3cD4eF5gH6
organizationId: organization123
name: MyBox
user: boxlite
Expand Down Expand Up @@ -6577,8 +6569,7 @@ components:
daemonVersion: 1.0.0
runnerId: runner123
toolboxProxyUrl: https://proxy.app.boxlite.io/toolbox
- id: fd955d93-e74a-48e7-9f2d-fcbe6dd9e920
boxId: aB3cD4eF5gH6
- id: aB3cD4eF5gH6
organizationId: organization123
name: MyBox
user: boxlite
Expand Down Expand Up @@ -8012,7 +8003,6 @@ components:
AdminBoxItem:
example:
id: box_abc123
boxId: abc123XYZ
organizationId: org_xyz
state: started
runnerId: runner-uuid
Expand All @@ -8030,10 +8020,6 @@ components:
description: Box ID
example: box_abc123
type: string
boxId:
description: Public box ID shown to users
example: abc123XYZ
type: string
organizationId:
description: Organization ID
example: org_xyz
Expand Down Expand Up @@ -9356,7 +9342,6 @@ components:
value: 0.8008281904610115
boxes:
- id: box_abc123
boxId: abc123XYZ
organizationId: org_xyz
state: started
runnerId: runner-uuid
Expand All @@ -9370,7 +9355,6 @@ components:
orgName: Alice Personal
personal: true
- id: box_abc123
boxId: abc123XYZ
organizationId: org_xyz
state: started
runnerId: runner-uuid
Expand Down
2 changes: 1 addition & 1 deletion apps/api-client-go/api_box.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 0 additions & 38 deletions apps/api-client-go/model_admin_box_item.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 2 additions & 32 deletions apps/api-client-go/model_box.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions apps/api/src/admin/dto/admin-overview.dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,6 @@ export class AdminBoxItemDto {
@ApiProperty({ description: 'Box ID', example: 'box_abc123' })
id: string

@ApiPropertyOptional({ description: 'Public box ID shown to users', example: 'abc123XYZ' })
boxId?: string

@ApiProperty({ description: 'Organization ID', example: 'org_xyz' })
organizationId: string

Expand Down
Loading
Loading