|
1 | 1 | # generated by datamodel-codegen: |
2 | 2 | # filename: openapi.json |
3 | | -# timestamp: 2026-01-03T09:11:13+00:00 |
| 3 | +# timestamp: 2026-01-03T11:43:11+00:00 |
4 | 4 |
|
5 | 5 | from __future__ import annotations |
6 | 6 |
|
@@ -155,7 +155,7 @@ class FreeActorPricingInfo(CommonActorPricingInfo): |
155 | 155 |
|
156 | 156 | class DefaultRunOptions(BaseModel): |
157 | 157 | build: Annotated[str, Field(examples=['latest'])] |
158 | | - timeout_secs: Annotated[float, Field(alias='timeoutSecs', examples=[3600])] |
| 158 | + timeout_secs: Annotated[float | None, Field(alias='timeoutSecs', examples=[3600])] = None |
159 | 159 | memory_mbytes: Annotated[float, Field(alias='memoryMbytes', examples=[2048])] |
160 | 160 | restart_on_error: Annotated[bool | None, Field(alias='restartOnError', examples=[False])] = None |
161 | 161 |
|
@@ -916,7 +916,7 @@ class RunShort(BaseModel): |
916 | 916 | started_at: Annotated[str, Field(alias='startedAt', examples=['2019-11-30T07:34:24.202Z'])] |
917 | 917 | finished_at: Annotated[str, Field(alias='finishedAt', examples=['2019-12-12T09:30:12.202Z'])] |
918 | 918 | build_id: Annotated[str, Field(alias='buildId', examples=['HG7ML7M8z78YcAPEB'])] |
919 | | - build_number: Annotated[str, Field(alias='buildNumber', examples=['0.0.2'])] |
| 919 | + build_number: Annotated[str | None, Field(alias='buildNumber', examples=['0.0.2'])] = None |
920 | 920 | meta: RunMeta |
921 | 921 | usage_total_usd: Annotated[float, Field(alias='usageTotalUsd', examples=[0.2])] |
922 | 922 | default_key_value_store_id: Annotated[str, Field(alias='defaultKeyValueStoreId', examples=['sfAjeR4QmeJCQzTfe'])] |
@@ -1034,8 +1034,10 @@ class Run(BaseModel): |
1034 | 1034 | default_key_value_store_id: Annotated[str, Field(alias='defaultKeyValueStoreId', examples=['eJNzqsbPiopwJcgGQ'])] |
1035 | 1035 | default_dataset_id: Annotated[str, Field(alias='defaultDatasetId', examples=['wmKPijuyDnPZAPRMk'])] |
1036 | 1036 | default_request_queue_id: Annotated[str, Field(alias='defaultRequestQueueId', examples=['FL35cSF7jrxr3BY39'])] |
1037 | | - build_number: Annotated[str, Field(alias='buildNumber', examples=['0.0.36'])] |
1038 | | - container_url: Annotated[str, Field(alias='containerUrl', examples=['https://g8kd8kbc5ge8.runs.apify.net'])] |
| 1037 | + build_number: Annotated[str | None, Field(alias='buildNumber', examples=['0.0.36'])] = None |
| 1038 | + container_url: Annotated[ |
| 1039 | + str | None, Field(alias='containerUrl', examples=['https://g8kd8kbc5ge8.runs.apify.net']) |
| 1040 | + ] = None |
1039 | 1041 | is_container_server_ready: Annotated[bool | None, Field(alias='isContainerServerReady', examples=[True])] = None |
1040 | 1042 | git_branch_name: Annotated[str | None, Field(alias='gitBranchName', examples=['master'])] = None |
1041 | 1043 | usage: Usage32 | None = None |
|
0 commit comments