airbyte-internal-ops 0.10.1__py3-none-any.whl → 0.10.2__py3-none-any.whl

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: airbyte-internal-ops
3
- Version: 0.10.1
3
+ Version: 0.10.2
4
4
  Summary: MCP and API interfaces that let the agents do the admin work
5
5
  Author-email: Aaron Steers <aj@airbyte.io>
6
6
  Keywords: admin,airbyte,api,mcp
@@ -269,7 +269,7 @@ airbyte_ops_mcp/mcp/_guidance.py,sha256=n0dLggQXNi2PKZ0eFDqQx5YIjhQpMnI3xcjouub9
269
269
  airbyte_ops_mcp/mcp/cloud_connector_versions.py,sha256=dRKrgsRGadQieTSvBrc5HYI6TTDzVAT6-4tiOHNcDHU,36244
270
270
  airbyte_ops_mcp/mcp/connector_analysis.py,sha256=OC4KrOSkMkKPkOisWnSv96BDDE5TQYHq-Jxa2vtjJpo,298
271
271
  airbyte_ops_mcp/mcp/connector_qa.py,sha256=aImpqdnqBPDrz10BS0owsV4kuIU2XdalzgbaGZsbOL0,258
272
- airbyte_ops_mcp/mcp/connector_rollout.py,sha256=iwmpHxHxLaGjEhiVn9rCwgOvJwcb3r0pxqPySdQ6oRI,32620
272
+ airbyte_ops_mcp/mcp/connector_rollout.py,sha256=HxHAXZm3bIf_DjNJ04954twTyQHw-X9BEYJJFE6xCPg,32635
273
273
  airbyte_ops_mcp/mcp/gcp_logs.py,sha256=QCDQHmsxQHJ26BB0sxkBgKXr7Ja9wVFkdpY6423H-xo,2677
274
274
  airbyte_ops_mcp/mcp/github_actions.py,sha256=G0NmjNVWpVtLXdQnhX7qJwPFkfEX5gBXf55xt0FpJJ0,11752
275
275
  airbyte_ops_mcp/mcp/github_repo_ops.py,sha256=YHeuN7Xc_L3xkJ-F3l1t1TIPW2j2CjecBDbb0DUvZO8,5306
@@ -310,7 +310,7 @@ airbyte_ops_mcp/regression_tests/regression/comparators.py,sha256=MJkLZEKHivgrG0
310
310
  airbyte_ops_mcp/regression_tests/validation/__init__.py,sha256=MBEwGOoNuqT4_oCahtoK62OKWIjUCfWa7vZTxNj_0Ek,1532
311
311
  airbyte_ops_mcp/regression_tests/validation/catalog_validators.py,sha256=jqqVAMOk0mtdPgwu4d0hA0ZEjtsNh5gapvGydRv3_qk,12553
312
312
  airbyte_ops_mcp/regression_tests/validation/record_validators.py,sha256=RjauAhKWNwxMBTu0eNS2hMFNQVs5CLbQU51kp6FOVDk,7432
313
- airbyte_internal_ops-0.10.1.dist-info/METADATA,sha256=hMQqdim33aS-eGKDWemN6Kh_A3tFIo8TtShS7P8jaPk,6002
314
- airbyte_internal_ops-0.10.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
315
- airbyte_internal_ops-0.10.1.dist-info/entry_points.txt,sha256=WxP0l7bRFss4Cr5uQqVj9mTEKwnRKouNuphXQF0lotA,171
316
- airbyte_internal_ops-0.10.1.dist-info/RECORD,,
313
+ airbyte_internal_ops-0.10.2.dist-info/METADATA,sha256=R_eF8wt1HmZ88Ct0dLSqGnEV-N1y9BI2oUscodQO5wg,6002
314
+ airbyte_internal_ops-0.10.2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
315
+ airbyte_internal_ops-0.10.2.dist-info/entry_points.txt,sha256=WxP0l7bRFss4Cr5uQqVj9mTEKwnRKouNuphXQF0lotA,171
316
+ airbyte_internal_ops-0.10.2.dist-info/RECORD,,
@@ -843,25 +843,25 @@ def query_prod_rollout_monitoring_stats(
843
843
  )
844
844
 
845
845
  data = response.get("data", {})
846
- actor_selection_info_data = data.get("actorSelectionInfo", {})
846
+ actor_selection_info_data = data.get("actor_selection_info", {})
847
847
  syncs_data = data.get("syncs", {})
848
848
 
849
849
  actor_selection_info = RolloutActorSelectionInfo(
850
- num_actors=actor_selection_info_data.get("numActors", 0),
850
+ num_actors=actor_selection_info_data.get("num_actors", 0),
851
851
  num_pinned_to_connector_rollout=actor_selection_info_data.get(
852
- "numPinnedToConnectorRollout", 0
852
+ "num_pinned_to_connector_rollout", 0
853
853
  ),
854
854
  num_actors_eligible_or_already_pinned=actor_selection_info_data.get(
855
- "numActorsEligibleOrAlreadyPinned", 0
855
+ "num_actors_eligible_or_already_pinned", 0
856
856
  ),
857
857
  )
858
858
 
859
859
  actor_sync_stats = [
860
860
  RolloutActorSyncStats(
861
861
  actor_id=actor_id,
862
- num_connections=sync_info.get("numConnections", 0),
863
- num_succeeded=sync_info.get("numSucceeded", 0),
864
- num_failed=sync_info.get("numFailed", 0),
862
+ num_connections=sync_info.get("num_connections", 0),
863
+ num_succeeded=sync_info.get("num_succeeded", 0),
864
+ num_failed=sync_info.get("num_failed", 0),
865
865
  )
866
866
  for actor_id, sync_info in syncs_data.items()
867
867
  ]