Skip to content

Commit

Permalink
Updated OpenAPI spec
Browse files Browse the repository at this point in the history
  • Loading branch information
vigoo committed Dec 22, 2024
1 parent 4f970f2 commit df4fb49
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions openapi/golem-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6305,10 +6305,15 @@ components:
type: array
items:
$ref: '#/components/schemas/LinearMemory'
dynamicLinking:
type: object
additionalProperties:
$ref: '#/components/schemas/DynamicLinkedInstance'
required:
- exports
- producers
- memories
- dynamicLinking
ComponentPluginScope:
type: object
properties:
Expand Down Expand Up @@ -6372,6 +6377,33 @@ components:
required:
- type
- $ref: '#/components/schemas/Empty'
DynamicLinkedInstance:
discriminator:
propertyName: type
mapping:
WasmRpc: '#/components/schemas/DynamicLinkedInstance_DynamicLinkedWasmRpc'
type: object
oneOf:
- $ref: '#/components/schemas/DynamicLinkedInstance_DynamicLinkedWasmRpc'
DynamicLinkedInstance_DynamicLinkedWasmRpc:
allOf:
- type: object
properties:
type:
example: WasmRpc
type: string
enum:
- WasmRpc
required:
- type
- $ref: '#/components/schemas/DynamicLinkedWasmRpc'
DynamicLinkedWasmRpc:
type: object
properties:
targetInterfaceName:
type: string
required:
- targetInterfaceName
InitialComponentFile:
type: object
properties:
Expand Down

0 comments on commit df4fb49

Please sign in to comment.