File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1- { "engineHash" : " 41bba7c " , "specHash" : " 9ccadb1" , "version" : " 0.1.0" }
1+ { "engineHash" : " d914301 " , "specHash" : " 9ccadb1" , "version" : " 0.1.0" }
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ See the endpoint docs at
4747<!-- sample get_docgen_jobs_v2025.0 -->
4848
4949``` python
50- client.docgen.get_docgen_jobs_v2025_r0(limit = 500 )
50+ client.docgen.get_docgen_jobs_v2025_r0(limit = 10000 )
5151```
5252
5353### Arguments
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ def testDocgenBatchAndJobs():
7373 assert docgen_batch_jobs .entries [0 ].template_file .id == uploaded_file .id
7474 assert docgen_batch_jobs .entries [0 ].batch .id == docgen_batch .id
7575 docgen_jobs : DocGenJobsFullV2025R0 = client .docgen .get_docgen_jobs_v2025_r0 (
76- limit = 500
76+ limit = 10000
7777 )
7878 assert len (docgen_jobs .entries ) >= 1
7979 assert not docgen_jobs .entries [0 ].batch .id == ''
@@ -90,7 +90,7 @@ def testDocgenBatchAndJobs():
9090 )
9191 assert not docgen_jobs .entries [0 ].template_file_version .id == ''
9292 assert to_string (docgen_jobs .entries [0 ].type ) == 'docgen_job'
93- index_of_item : int = 0
93+ index_of_item : int = len ( docgen_jobs . entries ) - 1
9494 docgen_job_item_from_list : DocGenJobFullV2025R0 = docgen_jobs .entries [index_of_item ]
9595 docgen_job : DocGenJobV2025R0 = client .docgen .get_docgen_job_by_id_v2025_r0 (
9696 docgen_job_item_from_list .id
You can’t perform that action at this time.
0 commit comments