Skip to content

Commit e6d0453

Browse files
authored
Merge pull request #1 from novuhq/fix-erorr
Fix erorr
2 parents ee8357c + 73069a6 commit e6d0453

39 files changed

Lines changed: 266 additions & 851 deletions

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
.DS_Store
2+
**/.speakeasy/temp/
3+
**/.speakeasy/logs/
14
.speakeasy/temp/
25
obj/
36
bin/

.idea/.gitignore

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/novu-csharp.iml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.speakeasy/gen.lock

Lines changed: 146 additions & 152 deletions
Large diffs are not rendered by default.

.speakeasy/gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ generation:
1616
oAuth2ClientCredentialsEnabled: true
1717
oAuth2PasswordEnabled: true
1818
csharp:
19-
version: 1.0.1
19+
version: 1.0.2
2020
additionalDependencies: []
2121
author: Speakeasy
2222
clientServerStatusCodesAsErrors: true
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
overlay: 1.0.0
2+
x-speakeasy-jsonpath: rfc9535
3+
info:
4+
title: example overlay
5+
version: 0.0.0
6+
actions:
7+
# changing the message field to just be a string
8+
- target: $.components.schemas.ErrorDto.properties.message
9+
remove: true
10+
- target: $.components.schemas.ErrorDto.properties
11+
update:
12+
message:
13+
description: Value that failed validation
14+
type: string

.speakeasy/workflow.lock

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
speakeasyVersion: 1.540.1
1+
speakeasyVersion: 1.542.0
22
sources:
33
Novu API:
4-
sourceNamespace: novu-api
5-
sourceRevisionDigest: sha256:a3a217e8bc1cca90844c7500eed185100418dfb7d37913ee863e13b4e796a5f0
6-
sourceBlobDigest: sha256:58cdff6184e570bd4c5eb25416bb9a00ce627b9e4d898d1985621081ac90083e
4+
sourceNamespace: novu-api-csharp
5+
sourceRevisionDigest: sha256:804a4443c1e4ec05f96a1cb087f9259022fd6d13e044dd554ad9adf1eb658054
6+
sourceBlobDigest: sha256:45aad4365f4f67a8b2c14a9ff4cc5c2103831a48486abdf043bef09636d45dc8
77
tags:
88
- latest
99
- "1.0"
1010
targets:
1111
novu:
1212
source: Novu API
13-
sourceNamespace: novu-api
14-
sourceRevisionDigest: sha256:a3a217e8bc1cca90844c7500eed185100418dfb7d37913ee863e13b4e796a5f0
15-
sourceBlobDigest: sha256:58cdff6184e570bd4c5eb25416bb9a00ce627b9e4d898d1985621081ac90083e
13+
sourceNamespace: novu-api-csharp
14+
sourceRevisionDigest: sha256:804a4443c1e4ec05f96a1cb087f9259022fd6d13e044dd554ad9adf1eb658054
15+
sourceBlobDigest: sha256:45aad4365f4f67a8b2c14a9ff4cc5c2103831a48486abdf043bef09636d45dc8
1616
codeSamplesNamespace: novu-api-csharp-code-samples
17-
codeSamplesRevisionDigest: sha256:3d09900b47b0270144a609d6427bc46edbcb003874c9c357584227d8382874c9
17+
codeSamplesRevisionDigest: sha256:846f1cbf32386688087cf0c6fd5f4ac8311e9d84702c586d50c18dd213395fcf
1818
workflow:
1919
workflowVersion: 1.0.0
2020
speakeasyVersion: latest
@@ -24,8 +24,9 @@ workflow:
2424
- location: https://api.novu.co/openapi.sdk.yaml
2525
overlays:
2626
- location: .speakeasy/speakeasy-modifications-overlay.yaml
27+
- location: .speakeasy/speakeasy-errorissue-overlay.yaml
2728
registry:
28-
location: registry.speakeasyapi.dev/novu/novu/novu-api
29+
location: registry.speakeasyapi.dev/novu/novu/novu-api-csharp
2930
targets:
3031
novu:
3132
target: csharp

.speakeasy/workflow.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ sources:
66
- location: https://api.novu.co/openapi.sdk.yaml
77
overlays:
88
- location: .speakeasy/speakeasy-modifications-overlay.yaml
9+
- location: .speakeasy/speakeasy-errorissue-overlay.yaml
910
registry:
10-
location: registry.speakeasyapi.dev/novu/novu/novu-api
11+
location: registry.speakeasyapi.dev/novu/novu/novu-api-csharp
1112
targets:
1213
novu:
1314
target: csharp

0 commit comments

Comments
 (0)