chalkcompute 2.1.8__tar.gz → 2.2.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.
Files changed (155) hide show
  1. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/PKG-INFO +1 -1
  2. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/__init__.py +1 -0
  3. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/__init__.pyi +2 -0
  4. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_container.py +694 -2
  5. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/buf/validate/validate_pb2.py +27 -62
  6. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/buf/validate/validate_pb2.pyi +42 -11
  7. chalkcompute-2.2.0/chalkcompute/_gen/buf/validate/validate_pb2_grpc.pyi +32 -0
  8. chalkcompute-2.2.0/chalkcompute/_gen/chalk/argo/v1/workflow_pb2.py +75 -0
  9. chalkcompute-2.2.0/chalkcompute/_gen/chalk/argo/v1/workflow_pb2.pyi +322 -0
  10. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/arrow/v1/arrow_pb2.py +7 -2
  11. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/arrow/v1/arrow_pb2.pyi +45 -14
  12. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/auth/v1/agent_pb2.py +13 -4
  13. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/auth/v1/agent_pb2.pyi +66 -17
  14. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/auth/v1/audit_pb2.py +4 -1
  15. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/auth/v1/audit_pb2.pyi +5 -1
  16. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/auth/v1/displayagent_pb2.py +16 -5
  17. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/auth/v1/displayagent_pb2.pyi +47 -13
  18. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/auth/v1/featurepermission_pb2.py +9 -4
  19. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/auth/v1/featurepermission_pb2.pyi +11 -2
  20. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/auth/v1/permissions_pb2.py +84 -33
  21. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/common/v1/chalk_error_pb2.py +7 -2
  22. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/common/v1/chalk_error_pb2.pyi +6 -1
  23. chalkcompute-2.2.0/chalkcompute/_gen/chalk/common/v1/log_pb2.py +41 -0
  24. chalkcompute-2.2.0/chalkcompute/_gen/chalk/common/v1/log_pb2.pyi +43 -0
  25. chalkcompute-2.2.0/chalkcompute/_gen/chalk/common/v1/log_pb2_grpc.py +4 -0
  26. chalkcompute-2.2.0/chalkcompute/_gen/chalk/container/v1/service_pb2.py +262 -0
  27. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/container/v1/service_pb2.pyi +478 -38
  28. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/container/v1/service_pb2_grpc.py +141 -2
  29. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/container/v1/service_pb2_grpc.pyi +45 -1
  30. chalkcompute-2.2.0/chalkcompute/_gen/chalk/externalfunctioncatalog/v1/service_pb2.py +177 -0
  31. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/externalfunctioncatalog/v1/service_pb2.pyi +136 -36
  32. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/externalfunctioncatalog/v1/service_pb2_grpc.py +50 -1
  33. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/externalfunctioncatalog/v1/service_pb2_grpc.pyi +20 -0
  34. chalkcompute-2.2.0/chalkcompute/_gen/chalk/flags/v1/flags_pb2.py +39 -0
  35. chalkcompute-2.2.0/chalkcompute/_gen/chalk/flags/v1/flags_pb2.pyi +18 -0
  36. chalkcompute-2.2.0/chalkcompute/_gen/chalk/flags/v1/flags_pb2_grpc.py +4 -0
  37. chalkcompute-2.2.0/chalkcompute/_gen/chalk/flags/v1/flags_pb2_grpc.pyi +4 -0
  38. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/runtime/v1/remote_python_call_pb2.py +53 -22
  39. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/runtime/v1/remote_python_call_pb2.pyi +71 -11
  40. chalkcompute-2.2.0/chalkcompute/_gen/chalk/runtime/v1/remote_python_call_pb2_grpc.py +413 -0
  41. chalkcompute-2.2.0/chalkcompute/_gen/chalk/runtime/v1/remote_python_call_pb2_grpc.pyi +150 -0
  42. chalkcompute-2.2.0/chalkcompute/_gen/chalk/sandbox/v1/service_pb2.py +243 -0
  43. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/sandbox/v1/service_pb2.pyi +307 -23
  44. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/sandbox/v1/service_pb2_grpc.py +249 -3
  45. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/sandbox/v1/service_pb2_grpc.pyi +106 -2
  46. chalkcompute-2.2.0/chalkcompute/_gen/chalk/scalinggroup/v1/service_pb2.py +141 -0
  47. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/scalinggroup/v1/service_pb2.pyi +71 -20
  48. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/scalinggroup/v1/service_pb2_grpc.py +3 -1
  49. chalkcompute-2.2.0/chalkcompute/_gen/chalk/utils/v1/__init__.py +0 -0
  50. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/utils/v1/encoding_pb2.py +7 -2
  51. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/utils/v1/encoding_pb2.pyi +3 -1
  52. chalkcompute-2.2.0/chalkcompute/_gen/chalk/utils/v1/encoding_pb2_grpc.py +4 -0
  53. chalkcompute-2.2.0/chalkcompute/_gen/chalk/utils/v1/encoding_pb2_grpc.pyi +4 -0
  54. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/utils/v1/field_change_pb2.py +7 -2
  55. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/utils/v1/field_change_pb2.pyi +4 -1
  56. chalkcompute-2.2.0/chalkcompute/_gen/chalk/utils/v1/field_change_pb2_grpc.py +4 -0
  57. chalkcompute-2.2.0/chalkcompute/_gen/chalk/utils/v1/field_change_pb2_grpc.pyi +4 -0
  58. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/utils/v1/sensitive_pb2.py +7 -2
  59. chalkcompute-2.2.0/chalkcompute/_gen/chalk/utils/v1/sensitive_pb2_grpc.py +4 -0
  60. chalkcompute-2.2.0/chalkcompute/_gen/chalk/utils/v1/sensitive_pb2_grpc.pyi +4 -0
  61. chalkcompute-2.2.0/chalkcompute/_gen/chalk/volume/__init__.py +0 -0
  62. chalkcompute-2.2.0/chalkcompute/_gen/chalk/volume/v1/__init__.py +0 -0
  63. chalkcompute-2.2.0/chalkcompute/_gen/chalk/volume/v1/volume_pb2.py +143 -0
  64. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/volume/v1/volume_pb2.pyi +36 -11
  65. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/volume/v1/volume_pb2_grpc.py +6 -2
  66. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/volume/v1/volume_pb2_grpc.pyi +3 -1
  67. chalkcompute-2.2.0/chalkcompute/_gen/chalk/volume/v2/__init__.py +0 -0
  68. chalkcompute-2.2.0/chalkcompute/_gen/chalk/volume/v2/volume_pb2.py +226 -0
  69. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/volume/v2/volume_pb2.pyi +114 -28
  70. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/volume/v2/volume_pb2_grpc.py +6 -2
  71. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/volume/v2/volume_pb2_grpc.pyi +3 -1
  72. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/pyproject.toml +1 -1
  73. chalkcompute-2.1.8/chalkcompute/_gen/chalk/container/v1/service_pb2.py +0 -152
  74. chalkcompute-2.1.8/chalkcompute/_gen/chalk/externalfunctioncatalog/v1/service_pb2.py +0 -137
  75. chalkcompute-2.1.8/chalkcompute/_gen/chalk/sandbox/v1/service_pb2.py +0 -146
  76. chalkcompute-2.1.8/chalkcompute/_gen/chalk/scalinggroup/v1/service_pb2.py +0 -105
  77. chalkcompute-2.1.8/chalkcompute/_gen/chalk/volume/v1/volume_pb2.py +0 -111
  78. chalkcompute-2.1.8/chalkcompute/_gen/chalk/volume/v2/volume_pb2.py +0 -188
  79. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/README.md +0 -0
  80. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_arrow_schema.py +0 -0
  81. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_auth_config.py +0 -0
  82. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_cls.py +0 -0
  83. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_concurrency.py +0 -0
  84. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_connect.py +0 -0
  85. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_function.py +0 -0
  86. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/__init__.py +0 -0
  87. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/buf/__init__.py +0 -0
  88. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/buf/validate/__init__.py +0 -0
  89. /chalkcompute-2.1.8/chalkcompute/_gen/chalk/arrow/v1/arrow_pb2_grpc.py → /chalkcompute-2.2.0/chalkcompute/_gen/buf/validate/validate_pb2_grpc.py +0 -0
  90. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/__init__.py +0 -0
  91. {chalkcompute-2.1.8/chalkcompute/_gen/chalk/arrow → chalkcompute-2.2.0/chalkcompute/_gen/chalk/argo}/__init__.py +0 -0
  92. {chalkcompute-2.1.8/chalkcompute/_gen/chalk/arrow → chalkcompute-2.2.0/chalkcompute/_gen/chalk/argo}/v1/__init__.py +0 -0
  93. /chalkcompute-2.1.8/chalkcompute/_gen/chalk/auth/v1/agent_pb2_grpc.py → /chalkcompute-2.2.0/chalkcompute/_gen/chalk/argo/v1/workflow_pb2_grpc.py +0 -0
  94. /chalkcompute-2.1.8/chalkcompute/_gen/chalk/arrow/v1/arrow_pb2_grpc.pyi → /chalkcompute-2.2.0/chalkcompute/_gen/chalk/argo/v1/workflow_pb2_grpc.pyi +0 -0
  95. {chalkcompute-2.1.8/chalkcompute/_gen/chalk/auth → chalkcompute-2.2.0/chalkcompute/_gen/chalk/arrow}/__init__.py +0 -0
  96. {chalkcompute-2.1.8/chalkcompute/_gen/chalk/auth → chalkcompute-2.2.0/chalkcompute/_gen/chalk/arrow}/v1/__init__.py +0 -0
  97. /chalkcompute-2.1.8/chalkcompute/_gen/chalk/auth/v1/audit_pb2_grpc.py → /chalkcompute-2.2.0/chalkcompute/_gen/chalk/arrow/v1/arrow_pb2_grpc.py +0 -0
  98. /chalkcompute-2.1.8/chalkcompute/_gen/chalk/auth/v1/agent_pb2_grpc.pyi → /chalkcompute-2.2.0/chalkcompute/_gen/chalk/arrow/v1/arrow_pb2_grpc.pyi +0 -0
  99. {chalkcompute-2.1.8/chalkcompute/_gen/chalk/common → chalkcompute-2.2.0/chalkcompute/_gen/chalk/auth}/__init__.py +0 -0
  100. {chalkcompute-2.1.8/chalkcompute/_gen/chalk/common → chalkcompute-2.2.0/chalkcompute/_gen/chalk/auth}/v1/__init__.py +0 -0
  101. /chalkcompute-2.1.8/chalkcompute/_gen/chalk/auth/v1/displayagent_pb2_grpc.py → /chalkcompute-2.2.0/chalkcompute/_gen/chalk/auth/v1/agent_pb2_grpc.py +0 -0
  102. /chalkcompute-2.1.8/chalkcompute/_gen/chalk/auth/v1/audit_pb2_grpc.pyi → /chalkcompute-2.2.0/chalkcompute/_gen/chalk/auth/v1/agent_pb2_grpc.pyi +0 -0
  103. /chalkcompute-2.1.8/chalkcompute/_gen/chalk/auth/v1/featurepermission_pb2_grpc.py → /chalkcompute-2.2.0/chalkcompute/_gen/chalk/auth/v1/audit_pb2_grpc.py +0 -0
  104. /chalkcompute-2.1.8/chalkcompute/_gen/chalk/auth/v1/displayagent_pb2_grpc.pyi → /chalkcompute-2.2.0/chalkcompute/_gen/chalk/auth/v1/audit_pb2_grpc.pyi +0 -0
  105. /chalkcompute-2.1.8/chalkcompute/_gen/chalk/auth/v1/permissions_pb2_grpc.py → /chalkcompute-2.2.0/chalkcompute/_gen/chalk/auth/v1/displayagent_pb2_grpc.py +0 -0
  106. /chalkcompute-2.1.8/chalkcompute/_gen/chalk/auth/v1/featurepermission_pb2_grpc.pyi → /chalkcompute-2.2.0/chalkcompute/_gen/chalk/auth/v1/displayagent_pb2_grpc.pyi +0 -0
  107. /chalkcompute-2.1.8/chalkcompute/_gen/chalk/utils/v1/encoding_pb2_grpc.py → /chalkcompute-2.2.0/chalkcompute/_gen/chalk/auth/v1/featurepermission_pb2_grpc.py +0 -0
  108. /chalkcompute-2.1.8/chalkcompute/_gen/chalk/auth/v1/permissions_pb2_grpc.pyi → /chalkcompute-2.2.0/chalkcompute/_gen/chalk/auth/v1/featurepermission_pb2_grpc.pyi +0 -0
  109. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/auth/v1/permissions_pb2.pyi +0 -0
  110. /chalkcompute-2.1.8/chalkcompute/_gen/chalk/utils/v1/field_change_pb2_grpc.py → /chalkcompute-2.2.0/chalkcompute/_gen/chalk/auth/v1/permissions_pb2_grpc.py +0 -0
  111. /chalkcompute-2.1.8/chalkcompute/_gen/chalk/utils/v1/encoding_pb2_grpc.pyi → /chalkcompute-2.2.0/chalkcompute/_gen/chalk/auth/v1/permissions_pb2_grpc.pyi +0 -0
  112. {chalkcompute-2.1.8/chalkcompute/_gen/chalk/container → chalkcompute-2.2.0/chalkcompute/_gen/chalk/common}/__init__.py +0 -0
  113. {chalkcompute-2.1.8/chalkcompute/_gen/chalk/container → chalkcompute-2.2.0/chalkcompute/_gen/chalk/common}/v1/__init__.py +0 -0
  114. /chalkcompute-2.1.8/chalkcompute/_gen/chalk/utils/v1/sensitive_pb2_grpc.py → /chalkcompute-2.2.0/chalkcompute/_gen/chalk/common/v1/chalk_error_pb2_grpc.py +0 -0
  115. /chalkcompute-2.1.8/chalkcompute/_gen/chalk/utils/v1/field_change_pb2_grpc.pyi → /chalkcompute-2.2.0/chalkcompute/_gen/chalk/common/v1/chalk_error_pb2_grpc.pyi +0 -0
  116. /chalkcompute-2.1.8/chalkcompute/_gen/chalk/utils/v1/sensitive_pb2_grpc.pyi → /chalkcompute-2.2.0/chalkcompute/_gen/chalk/common/v1/log_pb2_grpc.pyi +0 -0
  117. {chalkcompute-2.1.8/chalkcompute/_gen/chalk/externalfunctioncatalog → chalkcompute-2.2.0/chalkcompute/_gen/chalk/container}/__init__.py +0 -0
  118. {chalkcompute-2.1.8/chalkcompute/_gen/chalk/externalfunctioncatalog → chalkcompute-2.2.0/chalkcompute/_gen/chalk/container}/v1/__init__.py +0 -0
  119. {chalkcompute-2.1.8/chalkcompute/_gen/chalk/runtime → chalkcompute-2.2.0/chalkcompute/_gen/chalk/externalfunctioncatalog}/__init__.py +0 -0
  120. {chalkcompute-2.1.8/chalkcompute/_gen/chalk/runtime → chalkcompute-2.2.0/chalkcompute/_gen/chalk/externalfunctioncatalog}/v1/__init__.py +0 -0
  121. {chalkcompute-2.1.8/chalkcompute/_gen/chalk/sandbox → chalkcompute-2.2.0/chalkcompute/_gen/chalk/flags}/__init__.py +0 -0
  122. {chalkcompute-2.1.8/chalkcompute/_gen/chalk/sandbox → chalkcompute-2.2.0/chalkcompute/_gen/chalk/flags}/v1/__init__.py +0 -0
  123. {chalkcompute-2.1.8/chalkcompute/_gen/chalk/scalinggroup → chalkcompute-2.2.0/chalkcompute/_gen/chalk/runtime}/__init__.py +0 -0
  124. {chalkcompute-2.1.8/chalkcompute/_gen/chalk/scalinggroup → chalkcompute-2.2.0/chalkcompute/_gen/chalk/runtime}/v1/__init__.py +0 -0
  125. {chalkcompute-2.1.8/chalkcompute/_gen/chalk/utils → chalkcompute-2.2.0/chalkcompute/_gen/chalk/sandbox}/__init__.py +0 -0
  126. {chalkcompute-2.1.8/chalkcompute/_gen/chalk/utils → chalkcompute-2.2.0/chalkcompute/_gen/chalk/sandbox}/v1/__init__.py +0 -0
  127. {chalkcompute-2.1.8/chalkcompute/_gen/chalk/volume → chalkcompute-2.2.0/chalkcompute/_gen/chalk/scalinggroup}/__init__.py +0 -0
  128. {chalkcompute-2.1.8/chalkcompute/_gen/chalk/volume → chalkcompute-2.2.0/chalkcompute/_gen/chalk/scalinggroup}/v1/__init__.py +0 -0
  129. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/scalinggroup/v1/service_pb2_grpc.pyi +0 -0
  130. {chalkcompute-2.1.8/chalkcompute/_gen/chalk/volume/v2 → chalkcompute-2.2.0/chalkcompute/_gen/chalk/utils}/__init__.py +0 -0
  131. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_gen/chalk/utils/v1/sensitive_pb2.pyi +0 -0
  132. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_ignore.py +0 -0
  133. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_image.py +0 -0
  134. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_local_dev.py +0 -0
  135. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_logging.py +0 -0
  136. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_model.py +0 -0
  137. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_naming.py +0 -0
  138. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_native.pyi +0 -0
  139. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_progress.py +0 -0
  140. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_proto_pool.py +0 -0
  141. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_quota.py +0 -0
  142. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_rate_limit.py +0 -0
  143. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_remote_call_client.py +0 -0
  144. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_remote_function_tracing.py +0 -0
  145. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_retry.py +0 -0
  146. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_sandbox.py +0 -0
  147. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_scaling_group.py +0 -0
  148. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_secret.py +0 -0
  149. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_tracing.py +0 -0
  150. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_volume.py +0 -0
  151. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/_vvolume.py +0 -0
  152. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/chalkcompute/py.typed +0 -0
  153. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/rust/chalkcompute_native/Cargo.lock +0 -0
  154. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/rust/chalkcompute_native/Cargo.toml +0 -0
  155. {chalkcompute-2.1.8 → chalkcompute-2.2.0}/rust/chalkcompute_native/src/lib.rs +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: chalkcompute
3
- Version: 2.1.8
3
+ Version: 2.2.0
4
4
  Requires-Dist: grpcio>=1.60.0
5
5
  Requires-Dist: protobuf>=4.25.0
6
6
  Requires-Dist: httpx>=0.25.0
@@ -13,6 +13,7 @@ _LAZY_MAP: dict[str, tuple[str, str]] = {
13
13
  "Container": ("chalkcompute._container", "Container"),
14
14
  "ContainerError": ("chalkcompute._container", "ContainerError"),
15
15
  "ContainerInfo": ("chalkcompute._container", "ContainerInfo"),
16
+ "ContainerSession": ("chalkcompute._container", "ContainerSession"),
16
17
  "ContainerSecurityPolicy": ("chalkcompute._container", "ContainerSecurityPolicy"),
17
18
  "ContainerExecResult": ("chalkcompute._container", "ExecResult"),
18
19
  "AllowedRoute": ("chalkcompute._container", "AllowedRoute"),
@@ -15,6 +15,7 @@ from chalkcompute._container import AllowedRoute as AllowedRoute
15
15
  from chalkcompute._container import Container as Container
16
16
  from chalkcompute._container import ContainerError as ContainerError
17
17
  from chalkcompute._container import ContainerInfo as ContainerInfo
18
+ from chalkcompute._container import ContainerSession as ContainerSession
18
19
  from chalkcompute._container import ContainerSecurityPolicy as ContainerSecurityPolicy
19
20
  from chalkcompute._container import ExecResult as ContainerExecResult
20
21
  from chalkcompute._container import ImageBuildError as ImageBuildError
@@ -79,6 +80,7 @@ __all__ = [
79
80
  "Container",
80
81
  "ContainerError",
81
82
  "ContainerInfo",
83
+ "ContainerSession",
82
84
  "ContainerSecurityPolicy",
83
85
  "ContainerExecResult",
84
86
  "AllowedRoute",