|
736 | 736 | } |
737 | 737 | } |
738 | 738 | }, |
| 739 | + "dexpace.sdk.core.http.sse.connection": { |
| 740 | + "AsyncSseConnection": { |
| 741 | + "bases": [], |
| 742 | + "methods": { |
| 743 | + "aclose": "async aclose(self) -> None" |
| 744 | + } |
| 745 | + }, |
| 746 | + "SseConnection": { |
| 747 | + "bases": [], |
| 748 | + "methods": { |
| 749 | + "close": "close(self) -> None" |
| 750 | + } |
| 751 | + } |
| 752 | + }, |
739 | 753 | "dexpace.sdk.core.http.sse.parser": { |
740 | 754 | "AsyncSseStream": { |
741 | 755 | "bases": [], |
742 | 756 | "methods": { |
743 | | - "aclose": "async aclose(self) -> None" |
| 757 | + "aclose": "async aclose(self) -> None", |
| 758 | + "retry": "retry(self) -> int | None" |
744 | 759 | } |
745 | 760 | }, |
746 | 761 | "SseEvent": { |
|
752 | 767 | "methods": { |
753 | 768 | "drain": "drain(self) -> Iterator[SseEvent]", |
754 | 769 | "end": "end(self) -> Iterator[SseEvent]", |
755 | | - "feed": "feed(self, chunk: bytes) -> None" |
| 770 | + "feed": "feed(self, chunk: bytes) -> None", |
| 771 | + "retry": "retry(self) -> int | None" |
756 | 772 | } |
757 | 773 | }, |
758 | 774 | "parse_async_events": "parse_async_events(chunks: AsyncIterable[bytes]) -> AsyncSseStream", |
|
968 | 984 | "by_page": "async by_page(self) -> AsyncIterator[Page[T]]" |
969 | 985 | } |
970 | 986 | }, |
971 | | - "AsyncPipelineLike": { |
972 | | - "bases": [ |
973 | | - "Protocol" |
974 | | - ], |
975 | | - "methods": { |
976 | | - "run": "async run(self, request: Request, dispatch: DispatchContext) -> AsyncResponse" |
977 | | - } |
978 | | - }, |
979 | 987 | "Paginator": { |
980 | 988 | "bases": [], |
981 | 989 | "methods": { |
982 | 990 | "by_page": "by_page(self) -> Iterator[Page[T]]" |
983 | 991 | } |
984 | | - }, |
985 | | - "SyncPipelineLike": { |
986 | | - "bases": [ |
987 | | - "Protocol" |
988 | | - ], |
989 | | - "methods": { |
990 | | - "run": "run(self, request: Request, dispatch: DispatchContext) -> Response" |
991 | | - } |
992 | 992 | } |
993 | 993 | }, |
994 | 994 | "dexpace.sdk.core.pagination.strategy": { |
|
1070 | 1070 | "default_async_pipeline": "default_async_pipeline(client: AsyncHttpClient, *, redirect: AsyncRedirectPolicy | None, idempotency: AsyncIdempotencyPolicy | None, retry: AsyncRetryPolicy | None, set_date: AsyncSetDatePolicy | None, client_identity: AsyncClientIdentityPolicy | None, auth: AsyncPolicy | None) -> AsyncStagedPipelineBuilder", |
1071 | 1071 | "default_pipeline": "default_pipeline(client: HttpClient, *, redirect: RedirectPolicy | None, idempotency: IdempotencyPolicy | None, retry: RetryPolicy | None, set_date: SetDatePolicy | None, client_identity: ClientIdentityPolicy | None, auth: Policy | None, logging: LoggingPolicy | None, tracing: TracingPolicy | None) -> StagedPipelineBuilder" |
1072 | 1072 | }, |
| 1073 | + "dexpace.sdk.core.pipeline.dispatch": { |
| 1074 | + "AsyncPipelineLike": { |
| 1075 | + "bases": [ |
| 1076 | + "Protocol" |
| 1077 | + ], |
| 1078 | + "methods": { |
| 1079 | + "run": "async run(self, request: Request, dispatch: DispatchContext) -> AsyncResponse" |
| 1080 | + } |
| 1081 | + }, |
| 1082 | + "SyncPipelineLike": { |
| 1083 | + "bases": [ |
| 1084 | + "Protocol" |
| 1085 | + ], |
| 1086 | + "methods": { |
| 1087 | + "run": "run(self, request: Request, dispatch: DispatchContext) -> Response" |
| 1088 | + } |
| 1089 | + } |
| 1090 | + }, |
1073 | 1091 | "dexpace.sdk.core.pipeline.pipeline": { |
1074 | 1092 | "Pipeline": { |
1075 | 1093 | "bases": [], |
|
1492 | 1510 | "Status" |
1493 | 1511 | ], |
1494 | 1512 | "dexpace.sdk.core.http.sse": [ |
| 1513 | + "AsyncSseConnection", |
1495 | 1514 | "AsyncSseStream", |
| 1515 | + "SseConnection", |
1496 | 1516 | "SseEvent", |
1497 | 1517 | "SseParser", |
1498 | 1518 | "parse_async_events", |
|
0 commit comments