Skip to content

Commit 52054c1

Browse files
committed
Updated on 2025-09-24 12:57:22. Version: 3.0.0
1 parent 29a47d0 commit 52054c1

File tree

139 files changed

+3752
-2685
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+3752
-2685
lines changed

.github/workflows/python.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,16 @@ name: docspring Python package
77

88
on: [push, pull_request]
99

10+
permissions:
11+
contents: read
12+
1013
jobs:
1114
build:
1215

1316
runs-on: ubuntu-latest
1417
strategy:
1518
matrix:
16-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
19+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1720

1821
steps:
1922
- uses: actions/checkout@v4
@@ -28,4 +31,4 @@ jobs:
2831
pip install -r test-requirements.txt
2932
- name: Test with pytest
3033
run: |
31-
pytest --cov={{packageName}}
34+
pytest --cov=docspring

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,5 @@ docs/_build/
6262
# PyBuilder
6363
target/
6464

65-
#Ipython Notebook
65+
# Ipython Notebook
6666
.ipynb_checkpoints

.gitlab-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ stages:
1414
- pip install -r test-requirements.txt
1515
- pytest --cov=docspring
1616

17-
pytest-3.8:
18-
extends: .pytest
19-
image: python:3.8-alpine
2017
pytest-3.9:
2118
extends: .pytest
2219
image: python:3.9-alpine
@@ -29,3 +26,6 @@ pytest-3.11:
2926
pytest-3.12:
3027
extends: .pytest
3128
image: python:3.12-alpine
29+
pytest-3.13:
30+
extends: .pytest
31+
image: python:3.13-alpine

.openapi-generator/FILES

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,15 @@
55
README.md
66
docs/AddFieldsData.md
77
docs/BatchGeneratePdfs201Response.md
8+
docs/Client.md
89
docs/CombinePdfsData.md
910
docs/CombinedSubmission.md
1011
docs/CombinedSubmissionAction.md
11-
docs/CombinedSubmissionData.md
1212
docs/CopyTemplateOptions.md
1313
docs/CreateCombinedSubmissionResponse.md
1414
docs/CreateCustomFileData.md
1515
docs/CreateCustomFileResponse.md
1616
docs/CreateFolderData.md
17-
docs/CreateHtmlSubmissionData.md
1817
docs/CreateHtmlTemplate.md
1918
docs/CreatePdfSubmissionData.md
2019
docs/CreatePdfTemplate.md
@@ -25,18 +24,19 @@ docs/CreateSubmissionDataRequestResponse.md
2524
docs/CreateSubmissionDataRequestTokenResponse.md
2625
docs/CreateSubmissionResponse.md
2726
docs/CustomFile.md
27+
docs/ErrorOrMultipleErrorsResponse.md
2828
docs/ErrorResponse.md
2929
docs/Folder.md
3030
docs/JsonSchema.md
3131
docs/ListSubmissionsResponse.md
3232
docs/MoveFolderData.md
3333
docs/MoveTemplateData.md
3434
docs/MultipleErrorsResponse.md
35-
docs/PDFApi.md
3635
docs/PublishVersionData.md
3736
docs/RenameFolderData.md
3837
docs/RestoreVersionData.md
3938
docs/Submission.md
39+
docs/Submission422Response.md
4040
docs/SubmissionAction.md
4141
docs/SubmissionBatch.md
4242
docs/SubmissionBatchData.md
@@ -54,11 +54,12 @@ docs/TemplateDeleteResponse.md
5454
docs/TemplatePreview.md
5555
docs/TemplatePublishVersionResponse.md
5656
docs/UpdateHtmlTemplate.md
57+
docs/UpdatePdfTemplate.md
5758
docs/UpdateSubmissionDataRequestData.md
5859
docs/UploadPresignResponse.md
5960
docspring/__init__.py
6061
docspring/api/__init__.py
61-
docspring/api/pdf_api.py
62+
docspring/api/client.py
6263
docspring/api_client.py
6364
docspring/api_response.py
6465
docspring/configuration.py
@@ -69,13 +70,11 @@ docspring/models/batch_generate_pdfs201_response.py
6970
docspring/models/combine_pdfs_data.py
7071
docspring/models/combined_submission.py
7172
docspring/models/combined_submission_action.py
72-
docspring/models/combined_submission_data.py
7373
docspring/models/copy_template_options.py
7474
docspring/models/create_combined_submission_response.py
7575
docspring/models/create_custom_file_data.py
7676
docspring/models/create_custom_file_response.py
7777
docspring/models/create_folder_data.py
78-
docspring/models/create_html_submission_data.py
7978
docspring/models/create_html_template.py
8079
docspring/models/create_pdf_submission_data.py
8180
docspring/models/create_pdf_template.py
@@ -86,6 +85,7 @@ docspring/models/create_submission_data_request_response.py
8685
docspring/models/create_submission_data_request_token_response.py
8786
docspring/models/create_submission_response.py
8887
docspring/models/custom_file.py
88+
docspring/models/error_or_multiple_errors_response.py
8989
docspring/models/error_response.py
9090
docspring/models/folder.py
9191
docspring/models/json_schema.py
@@ -97,6 +97,7 @@ docspring/models/publish_version_data.py
9797
docspring/models/rename_folder_data.py
9898
docspring/models/restore_version_data.py
9999
docspring/models/submission.py
100+
docspring/models/submission422_response.py
100101
docspring/models/submission_action.py
101102
docspring/models/submission_batch.py
102103
docspring/models/submission_batch_data.py
@@ -114,6 +115,7 @@ docspring/models/template_delete_response.py
114115
docspring/models/template_preview.py
115116
docspring/models/template_publish_version_response.py
116117
docspring/models/update_html_template.py
118+
docspring/models/update_pdf_template.py
117119
docspring/models/update_submission_data_request_data.py
118120
docspring/models/upload_presign_response.py
119121
docspring/py.typed
@@ -127,16 +129,15 @@ test-requirements.txt
127129
test/__init__.py
128130
test/test_add_fields_data.py
129131
test/test_batch_generate_pdfs201_response.py
132+
test/test_client.py
130133
test/test_combine_pdfs_data.py
131134
test/test_combined_submission.py
132135
test/test_combined_submission_action.py
133-
test/test_combined_submission_data.py
134136
test/test_copy_template_options.py
135137
test/test_create_combined_submission_response.py
136138
test/test_create_custom_file_data.py
137139
test/test_create_custom_file_response.py
138140
test/test_create_folder_data.py
139-
test/test_create_html_submission_data.py
140141
test/test_create_html_template.py
141142
test/test_create_pdf_submission_data.py
142143
test/test_create_pdf_template.py
@@ -147,18 +148,19 @@ test/test_create_submission_data_request_response.py
147148
test/test_create_submission_data_request_token_response.py
148149
test/test_create_submission_response.py
149150
test/test_custom_file.py
151+
test/test_error_or_multiple_errors_response.py
150152
test/test_error_response.py
151153
test/test_folder.py
152154
test/test_json_schema.py
153155
test/test_list_submissions_response.py
154156
test/test_move_folder_data.py
155157
test/test_move_template_data.py
156158
test/test_multiple_errors_response.py
157-
test/test_pdf_api.py
158159
test/test_publish_version_data.py
159160
test/test_rename_folder_data.py
160161
test/test_restore_version_data.py
161162
test/test_submission.py
163+
test/test_submission422_response.py
162164
test/test_submission_action.py
163165
test/test_submission_batch.py
164166
test/test_submission_batch_data.py
@@ -176,6 +178,7 @@ test/test_template_delete_response.py
176178
test/test_template_preview.py
177179
test/test_template_publish_version_response.py
178180
test/test_update_html_template.py
181+
test/test_update_pdf_template.py
179182
test/test_update_submission_data_request_data.py
180183
test/test_upload_presign_response.py
181184
tox.ini

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.11.0
1+
7.16.0-DOCSPRING

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# ref: https://docs.travis-ci.com/user/languages/python
22
language: python
33
python:
4-
- "3.8"
54
- "3.9"
65
- "3.10"
76
- "3.11"
87
- "3.12"
8+
- "3.13"
99
# uncomment the following if needed
10-
#- "3.12-dev" # 3.12 development branch
10+
#- "3.13-dev" # 3.13 development branch
1111
#- "nightly" # nightly build
1212
# command to install dependencies
1313
install:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 3.0.0 [September 24, 2025]
2+
3+
- All our API clients are now 100% end-to-end tested against our real server.
4+
15
### 2.1.0 [March 22, 2025]
26

37
- Added support for Template Versioning parameters:

0 commit comments

Comments
 (0)