hookbridge 1.7.0__tar.gz → 2.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -205,4 +205,4 @@ cython_debug/
205
205
  marimo/_static/
206
206
  marimo/_lsp/
207
207
  __marimo__/
208
- publishing.md
208
+ PUBLISHING.md
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hookbridge
3
- Version: 1.7.0
3
+ Version: 2.0.0
4
4
  Summary: Official HookBridge SDK for Python
5
5
  Project-URL: Homepage, https://hookbridge.io
6
6
  Project-URL: Documentation, https://hookbridge.io/docs/sdks/python
@@ -16,15 +16,25 @@ from hookbridge.errors import (
16
16
  )
17
17
  from hookbridge.types import (
18
18
  AckPullEventsResponse,
19
+ ActorLookupResult,
19
20
  APIKeyInfo,
20
21
  APIKeyMode,
21
22
  AttemptRecord,
22
23
  AttemptsResponse,
23
- CheckoutSession,
24
24
  CreateAPIKeyResponse,
25
25
  CreateEndpointResponse,
26
26
  CreateInboundEndpointResponse,
27
27
  CreatePullEndpointResponse,
28
+ DeleteAllResult,
29
+ DeleteBatchItemResult,
30
+ DeleteBatchResult,
31
+ DeleteEventBatchItemResult,
32
+ DeleteEventBatchResult,
33
+ DeleteEventResult,
34
+ DeleteMessageResult,
35
+ DeleteOutcome,
36
+ DeletePartialError,
37
+ DeletePullEventsAllResult,
28
38
  DeleteResult,
29
39
  DLQMessagesResponse,
30
40
  Endpoint,
@@ -53,8 +63,6 @@ from hookbridge.types import (
53
63
  Metrics,
54
64
  MetricsWindow,
55
65
  PauseState,
56
- PortalSession,
57
- Project,
58
66
  PullEndpoint,
59
67
  PullEndpointCounts,
60
68
  PullEndpointMode,
@@ -68,6 +76,7 @@ from hookbridge.types import (
68
76
  PullLogsResponse,
69
77
  PullTimeSeriesBucket,
70
78
  PullTimeSeriesMetrics,
79
+ PullTimingBreakdown,
71
80
  ReplayableMessageStatus,
72
81
  ReplayAllMessagesResponse,
73
82
  ReplayBatchMessagesResponse,
@@ -86,7 +95,7 @@ from hookbridge.types import (
86
95
  UsageHistoryRow,
87
96
  )
88
97
 
89
- __version__ = "1.7.0"
98
+ __version__ = "2.0.0"
90
99
 
91
100
  __all__ = [
92
101
  "HookBridge",
@@ -95,11 +104,21 @@ __all__ = [
95
104
  "APIKeyMode",
96
105
  "AttemptRecord",
97
106
  "AttemptsResponse",
98
- "CheckoutSession",
99
107
  "CreateAPIKeyResponse",
100
108
  "CreateEndpointResponse",
101
109
  "CreateInboundEndpointResponse",
102
110
  "CreatePullEndpointResponse",
111
+ "ActorLookupResult",
112
+ "DeleteAllResult",
113
+ "DeleteBatchItemResult",
114
+ "DeleteBatchResult",
115
+ "DeleteEventBatchItemResult",
116
+ "DeleteEventBatchResult",
117
+ "DeleteEventResult",
118
+ "DeleteMessageResult",
119
+ "DeleteOutcome",
120
+ "DeletePartialError",
121
+ "DeletePullEventsAllResult",
103
122
  "DeleteResult",
104
123
  "DLQMessagesResponse",
105
124
  "Endpoint",
@@ -128,8 +147,6 @@ __all__ = [
128
147
  "Metrics",
129
148
  "MetricsWindow",
130
149
  "PauseState",
131
- "PortalSession",
132
- "Project",
133
150
  "PullEndpoint",
134
151
  "PullEndpointCounts",
135
152
  "PullEndpointMode",
@@ -143,6 +160,7 @@ __all__ = [
143
160
  "PullLogsResponse",
144
161
  "PullTimeSeriesBucket",
145
162
  "PullTimeSeriesMetrics",
163
+ "PullTimingBreakdown",
146
164
  "ReplayAllMessagesResponse",
147
165
  "ReplayBatchMessagesResponse",
148
166
  "ReplayBatchResult",