Skip to content

Commit b22df92

Browse files
committed
Updated on 2025-02-26 20:25:57. Version: 3.0.1
1 parent 0832629 commit b22df92

14 files changed

+58
-24
lines changed

.!4652!nuget.exe

Whitespace-only changes.

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 3.0.1 [February 26, 2025]
2+
3+
- Fixed User-Agent header: docspring-csharp-x.x.x
4+
15
### 3.0.0 [February 23, 2025]
26

37
- **BREAKING CHANGE**: Updated default host to our new synchronous API subdomain: sync.api.docspring.com. (EU customers should use sync.api-eu.docspring.com). Removed all custom polling code from library since this logic is now handled by the API service running on our sync subdomain

DocSpring.Client.sln

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio 14
33
VisualStudioVersion = 14.0.25420.1
44
MinimumVisualStudioVersion = 10.0.40219.1
5-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DocSpring.Client", "src\DocSpring.Client\DocSpring.Client.csproj", "{A6AE9ACF-B218-49CE-9D79-9CAE9A58B04D}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DocSpring.Client", "src\DocSpring.Client\DocSpring.Client.csproj", "{A7EB6260-4D9D-40AB-A3ED-D71303CB3017}"
66
EndProject
77
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DocSpring.Client.Test", "src\DocSpring.Client.Test\DocSpring.Client.Test.csproj", "{19F1DEBC-DE5E-4517-8062-F000CD499087}"
88
EndProject
@@ -12,10 +12,10 @@ Global
1212
Release|Any CPU = Release|Any CPU
1313
EndGlobalSection
1414
GlobalSection(ProjectConfigurationPlatforms) = postSolution
15-
{A6AE9ACF-B218-49CE-9D79-9CAE9A58B04D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16-
{A6AE9ACF-B218-49CE-9D79-9CAE9A58B04D}.Debug|Any CPU.Build.0 = Debug|Any CPU
17-
{A6AE9ACF-B218-49CE-9D79-9CAE9A58B04D}.Release|Any CPU.ActiveCfg = Release|Any CPU
18-
{A6AE9ACF-B218-49CE-9D79-9CAE9A58B04D}.Release|Any CPU.Build.0 = Release|Any CPU
15+
{A7EB6260-4D9D-40AB-A3ED-D71303CB3017}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16+
{A7EB6260-4D9D-40AB-A3ED-D71303CB3017}.Debug|Any CPU.Build.0 = Debug|Any CPU
17+
{A7EB6260-4D9D-40AB-A3ED-D71303CB3017}.Release|Any CPU.ActiveCfg = Release|Any CPU
18+
{A7EB6260-4D9D-40AB-A3ED-D71303CB3017}.Release|Any CPU.Build.0 = Release|Any CPU
1919
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
2020
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.Build.0 = Debug|Any CPU
2121
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Release|Any CPU.ActiveCfg = Release|Any CPU

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ DocSpring provides an API that helps you fill out and sign PDF templates.
55
This C# SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
66

77
- API version: v1
8-
- SDK version: 3.0.0
8+
- SDK version: 3.0.1
99
- Generator version: 7.11.0
1010
- Build package: org.openapitools.codegen.languages.CSharpClientCodegen
1111

api/openapi.yaml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1621,17 +1621,6 @@ paths:
16211621
schema:
16221622
$ref: '#/components/schemas/error_response'
16231623
description: authentication failed
1624-
"400":
1625-
content:
1626-
application/json:
1627-
example:
1628-
status: error
1629-
error: "There was a problem with the JSON you submitted: unexpected\
1630-
\ character at line 1, column 25 in '{ \"first_name\": \"John\"\
1631-
, last_name: \"Smith\" }"
1632-
schema:
1633-
$ref: '#/components/schemas/error_response'
1634-
description: invalid JSON
16351624
security:
16361625
- api_token_basic: []
16371626
summary: Generates a new PDF
@@ -5658,6 +5647,8 @@ components:
56585647
items:
56595648
$ref: '#/components/schemas/create_submission_data_request_data'
56605649
type: array
5650+
editable:
5651+
type: boolean
56615652
expires_in:
56625653
type: integer
56635654
field_overrides:
@@ -5799,6 +5790,8 @@ components:
57995790
properties: {}
58005791
title: submission_data
58015792
type: object
5793+
editable:
5794+
type: boolean
58025795
expires_in:
58035796
type: integer
58045797
field_overrides:

docs/CreateHtmlSubmissionData.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**Css** | **string** | | [optional]
88
**Data** | **Object** | | [optional]
9+
**Editable** | **bool** | | [optional]
910
**ExpiresIn** | **int** | | [optional]
1011
**FieldOverrides** | **Object** | | [optional]
1112
**Html** | **string** | | [optional]

docs/CreatePdfSubmissionData.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**Data** | **Object** | |
88
**DataRequests** | [**List<CreateSubmissionDataRequestData>**](CreateSubmissionDataRequestData.md) | | [optional]
9+
**Editable** | **bool** | | [optional]
910
**ExpiresIn** | **int** | | [optional]
1011
**FieldOverrides** | **Object** | | [optional]
1112
**Metadata** | **Object** | | [optional]

docs/PDFApi.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1681,7 +1681,6 @@ catch (ApiException e)
16811681
| **201** | submission created | - |
16821682
| **422** | invalid request | - |
16831683
| **401** | authentication failed | - |
1684-
| **400** | invalid JSON | - |
16851684

16861685
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
16871686

src/DocSpring.Client.Test/Model/CreateHtmlSubmissionDataTests.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,15 @@ public void DataTest()
7272
// TODO unit test for the property 'Data'
7373
}
7474

75+
/// <summary>
76+
/// Test the property 'Editable'
77+
/// </summary>
78+
[Fact]
79+
public void EditableTest()
80+
{
81+
// TODO unit test for the property 'Editable'
82+
}
83+
7584
/// <summary>
7685
/// Test the property 'ExpiresIn'
7786
/// </summary>

src/DocSpring.Client.Test/Model/CreatePdfSubmissionDataTests.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,15 @@ public void DataRequestsTest()
7272
// TODO unit test for the property 'DataRequests'
7373
}
7474

75+
/// <summary>
76+
/// Test the property 'Editable'
77+
/// </summary>
78+
[Fact]
79+
public void EditableTest()
80+
{
81+
// TODO unit test for the property 'Editable'
82+
}
83+
7584
/// <summary>
7685
/// Test the property 'ExpiresIn'
7786
/// </summary>

0 commit comments

Comments
 (0)