Skip to content

Commit

Permalink
chore: update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
github-merge-queue[bot] authored and github-actions[bot] committed Nov 27, 2024
1 parent 57a8644 commit d763d06
Showing 1 changed file with 53 additions and 2 deletions.
55 changes: 53 additions & 2 deletions test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9233,7 +9233,6 @@ paths:
examples:
test:
value: {"foo": "bar"}

/pathencoding/{param1}/{param2}:
get:
operationId: pathEncoding
Expand All @@ -9256,7 +9255,6 @@ paths:
responses:
"200":
description: OK

/queryencoding:
get:
operationId: queryEncoding
Expand All @@ -9274,8 +9272,61 @@ paths:
"200":
description: OK

webhooks:
no-signing-webhook-key:
post:
operationId: sendNoSigning
x-speakeasy-group: webhooks
summary: Send Webhook No Signing
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/WebhookRequestCreated"
responses:
'200':
description: Consumer's response
no-signing-webhook-key-2:
post:
operationId: foo
x-speakeasy-group: webhooks
summary: Send Webhook No Signing
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/WebhookRequestUpdated"
responses:
'200':
description: Consumer's response
components:
schemas:
WebhookRequestCreated:
type: object
properties:
type:
type: string
enum:
- webhook.created
data:
$ref: "components.yaml#/components/schemas/simpleObject"
required:
- type
- data
WebhookRequestUpdated:
type: object
properties:
type:
type: string
enum:
- webhook.updated
data:
$ref: "components.yaml#/components/schemas/simpleObject"
required:
- type
- data
AnyOfMultiMatch:
anyOf:
- $ref: "#/components/schemas/AnyOfMultiMatchMember1"
Expand Down

0 comments on commit d763d06

Please sign in to comment.