Skip to content
Open
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
1 change: 1 addition & 0 deletions apps/api-client-go/.openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ model_signed_port_preview_url.go
model_ssh_access_dto.go
model_ssh_access_validation_dto.go
model_storage_access_dto.go
model_system_images_config.go
model_system_role.go
model_toolbox_proxy_url.go
model_trace_span.go
Expand Down
22 changes: 22 additions & 0 deletions apps/api-client-go/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5112,6 +5112,22 @@ components:
- clientId
- issuer
type: object
SystemImagesConfig:
properties:
base:
description: Curated Base image reference
type: string
python:
description: Curated Python image reference
type: string
node:
description: Curated Node.js image reference
type: string
required:
- base
- node
- python
type: object
RateLimitEntry:
properties:
ttl:
Expand Down Expand Up @@ -5147,6 +5163,7 @@ components:
version: 0.0.1
posthog: ""
oidc: ""
systemImages: ""
linkedAccountsEnabled: true
announcements:
feature-update:
Expand Down Expand Up @@ -5176,6 +5193,10 @@ components:
allOf:
- $ref: "#/components/schemas/OidcConfig"
description: OIDC configuration
systemImages:
allOf:
- $ref: "#/components/schemas/SystemImagesConfig"
description: Curated system images available for Box creation
linkedAccountsEnabled:
description: Whether linked accounts are enabled
example: true
Expand Down Expand Up @@ -5242,6 +5263,7 @@ components:
- oidc
- proxyTemplateUrl
- proxyToolboxUrl
- systemImages
- version
type: object
CreateApiKey:
Expand Down
32 changes: 31 additions & 1 deletion apps/api-client-go/model_boxlite_configuration.go

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

228 changes: 228 additions & 0 deletions apps/api-client-go/model_system_images_config.go

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

Loading