contextbase-base-client 0.5.0__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.
Files changed (79) hide show
  1. base_client/.fern/metadata.json +13 -0
  2. base_client/CONTRIBUTING.md +125 -0
  3. base_client/README.md +176 -0
  4. base_client/__init__.py +159 -0
  5. base_client/_default_clients.py +30 -0
  6. base_client/bases/__init__.py +34 -0
  7. base_client/bases/client.py +256 -0
  8. base_client/bases/raw_client.py +365 -0
  9. base_client/bases/types/__init__.py +34 -0
  10. base_client/bases/types/list_bases_response.py +20 -0
  11. base_client/binding_plan/__init__.py +4 -0
  12. base_client/binding_plan/client.py +108 -0
  13. base_client/binding_plan/raw_client.py +128 -0
  14. base_client/bindings/__init__.py +34 -0
  15. base_client/bindings/client.py +242 -0
  16. base_client/bindings/raw_client.py +326 -0
  17. base_client/bindings/types/__init__.py +34 -0
  18. base_client/bindings/types/list_bindings_response.py +20 -0
  19. base_client/client.py +252 -0
  20. base_client/core/__init__.py +127 -0
  21. base_client/core/api_error.py +23 -0
  22. base_client/core/client_wrapper.py +102 -0
  23. base_client/core/datetime_utils.py +70 -0
  24. base_client/core/file.py +67 -0
  25. base_client/core/force_multipart.py +18 -0
  26. base_client/core/http_client.py +839 -0
  27. base_client/core/http_response.py +59 -0
  28. base_client/core/http_sse/__init__.py +42 -0
  29. base_client/core/http_sse/_api.py +170 -0
  30. base_client/core/http_sse/_decoders.py +61 -0
  31. base_client/core/http_sse/_exceptions.py +7 -0
  32. base_client/core/http_sse/_models.py +17 -0
  33. base_client/core/jsonable_encoder.py +120 -0
  34. base_client/core/logging.py +107 -0
  35. base_client/core/parse_error.py +36 -0
  36. base_client/core/pydantic_utilities.py +508 -0
  37. base_client/core/query_encoder.py +58 -0
  38. base_client/core/remove_none_from_dict.py +11 -0
  39. base_client/core/request_options.py +35 -0
  40. base_client/core/serialization.py +347 -0
  41. base_client/dsn/__init__.py +4 -0
  42. base_client/dsn/client.py +104 -0
  43. base_client/dsn/raw_client.py +128 -0
  44. base_client/errors/__init__.py +38 -0
  45. base_client/errors/bad_request_error.py +11 -0
  46. base_client/errors/forbidden_error.py +11 -0
  47. base_client/reference.md +591 -0
  48. base_client/sync_state/__init__.py +34 -0
  49. base_client/sync_state/client.py +206 -0
  50. base_client/sync_state/raw_client.py +280 -0
  51. base_client/sync_state/types/__init__.py +34 -0
  52. base_client/sync_state/types/sync_state_input_bindings_value.py +23 -0
  53. base_client/tests/conftest.py +21 -0
  54. base_client/tests/test_aiohttp_autodetect.py +113 -0
  55. base_client/types/__init__.py +126 -0
  56. base_client/types/api_key_auth.py +19 -0
  57. base_client/types/authenticated_account_ref.py +20 -0
  58. base_client/types/base.py +23 -0
  59. base_client/types/binding.py +29 -0
  60. base_client/types/binding_auth.py +72 -0
  61. base_client/types/binding_auth_input.py +77 -0
  62. base_client/types/binding_auth_input_api_key.py +19 -0
  63. base_client/types/binding_auth_input_authenticated_account.py +20 -0
  64. base_client/types/binding_auth_input_client_credentials.py +20 -0
  65. base_client/types/binding_auth_input_none.py +17 -0
  66. base_client/types/binding_auth_none.py +17 -0
  67. base_client/types/binding_models.py +23 -0
  68. base_client/types/binding_state.py +24 -0
  69. base_client/types/binding_state_response.py +21 -0
  70. base_client/types/client_credentials_auth.py +20 -0
  71. base_client/types/dagster_all_plan_binding.py +27 -0
  72. base_client/types/dagster_all_plan_binding_mode.py +5 -0
  73. base_client/types/dagster_binding_plan_all.py +23 -0
  74. base_client/types/dsn_response.py +19 -0
  75. base_client/types/error.py +19 -0
  76. base_client/types/run_status.py +10 -0
  77. contextbase_base_client-0.5.0.dist-info/METADATA +10 -0
  78. contextbase_base_client-0.5.0.dist-info/RECORD +79 -0
  79. contextbase_base_client-0.5.0.dist-info/WHEEL +4 -0
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.3
2
+ Name: contextbase-base-client
3
+ Version: 0.5.0
4
+ Summary: Generated Python SDK for the base-platform API (Fern)
5
+ Author: Alizain Feerasta
6
+ Author-email: Alizain Feerasta <alizain.feerasta@gmail.com>
7
+ Requires-Dist: httpx>=0.28.1
8
+ Requires-Dist: pydantic>=2.12.0
9
+ Requires-Dist: typing-extensions>=4.0.0
10
+ Requires-Python: >=3.12, <3.13
@@ -0,0 +1,79 @@
1
+ base_client/.fern/metadata.json,sha256=UY9RnYRfFcV-6Wr4TV_Ljg4tTugKlYGCC8BXLpCt9yM,357
2
+ base_client/CONTRIBUTING.md,sha256=sjPgGJmyk3hgyTpnsC2FAeZXBBl9EfqPx-lnNih226g,3264
3
+ base_client/README.md,sha256=3YI6Rbq0-g81XXfqiub9MiSBUj-wxFIBZApNDf0ybaE,5447
4
+ base_client/__init__.py,sha256=GtxEJ_HFWiV78fnZlVtqqiJfajMfPz1CYMToGanYzYc,4978
5
+ base_client/_default_clients.py,sha256=yijw5k640dqe4HIG57uQWFLZa45HHbDYzgdYZBZ1FZ8,1007
6
+ base_client/bases/__init__.py,sha256=UXrpCxipqiZzWRHH1vdwH8lQb4FBPz1S0_flHxXzRsg,1071
7
+ base_client/bases/client.py,sha256=GZq2XZ4qOEcedSZn9Oy4xztBAHKOIDSVZr3TQd6Q0Bg,6725
8
+ base_client/bases/raw_client.py,sha256=jX44OkShyEYM4Gs3J4wc_4qHvVM0w1RyRVy2ce1vvk8,13536
9
+ base_client/bases/types/__init__.py,sha256=elLAXK8XFiuJKTRUhzMDuUsAyaag7FK_3uxXcrHuo54,1099
10
+ base_client/bases/types/list_bases_response.py,sha256=HyqWPraZjlZeQTBb83HZdySTqHzijlUCbv2SF3rbNV0,571
11
+ base_client/binding_plan/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
12
+ base_client/binding_plan/client.py,sha256=J1VLYCKDDKP1pckFbQDZ2ylGfpLNoyDO4sbGzAZ5CxA,3094
13
+ base_client/binding_plan/raw_client.py,sha256=7z-s7sW7phfa5Zz5L9NeAeGAeuXcUaTq5-8LILIHa00,5072
14
+ base_client/bindings/__init__.py,sha256=pUtUByQq-17xWuebv284fszbUUEp4Wzif8y1aFkLf8Q,1080
15
+ base_client/bindings/client.py,sha256=BtKFkVTnBozzlb9phkHK-NNFKtjvCzX_Og0s9KivkkA,6522
16
+ base_client/bindings/raw_client.py,sha256=akArxcjKUqD7c13F82r-87hKLM1km-kiCoeDk7gZem8,12227
17
+ base_client/bindings/types/__init__.py,sha256=eW2lUN2UHWtkH865lFeBo8ye-NnNYFvLW_YY8yW9-yg,1114
18
+ base_client/bindings/types/list_bindings_response.py,sha256=OCTX41oB2C1j2NvZLB1QAbVYd8469Sov8u1TRISu8WI,586
19
+ base_client/client.py,sha256=C_buvZ6RV37YwjZS7YvqeTDTWVyQTey6dY2GyH01kAo,10162
20
+ base_client/core/__init__.py,sha256=103ZnffsdqGZ7Y9uxirEu3sEhBGZxFdRy2HBjH15R2Y,4369
21
+ base_client/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
22
+ base_client/core/client_wrapper.py,sha256=3byh_-VPgA8j6VJkIbvuSMem4j5yoaoM6uta1fSP2Oo,3509
23
+ base_client/core/datetime_utils.py,sha256=ubW9ID5Is8Mz-4y_VXUpaExmvmknYFP3nSI1fCo6e6s,2498
24
+ base_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
25
+ base_client/core/force_multipart.py,sha256=cH981xLy0kZVKiZZkFoeUjgJ2Zuq7KXB2aRAnmHzRDc,477
26
+ base_client/core/http_client.py,sha256=GGFHg_FVsnaYdKnULuEUXrE9YgD3nOkVV23ZATghnzM,31555
27
+ base_client/core/http_response.py,sha256=-628gqtkXE8wozoeiJvgh6_HAFwPk7GPtERgO4Kaaq0,1437
28
+ base_client/core/http_sse/__init__.py,sha256=vE7RxBmzIfV9SmFDw4YCuDN9DaPuJb3FAnoFDo7bqww,1350
29
+ base_client/core/http_sse/_api.py,sha256=CMTWL4_6drvCoiD9rMfmv-Uprz5s5a896pifj0BDxZQ,5941
30
+ base_client/core/http_sse/_decoders.py,sha256=tY3L5TZ0y-pgz0Lu1q8ro5Ljz43q4lYyuec73u9WfNw,1733
31
+ base_client/core/http_sse/_exceptions.py,sha256=o8Tp-e8Lvmtn_5MVSYbkW9rVrpwFg5pnKbOcHfrHH14,127
32
+ base_client/core/http_sse/_models.py,sha256=kKvCCm8e6gCilulJpiHv4f2OPVxo9CydLboEqMhplPI,397
33
+ base_client/core/jsonable_encoder.py,sha256=TyA2STyLG19741sWjOltlDowfuNytu-dEfti9v4idfo,4329
34
+ base_client/core/logging.py,sha256=_rzxS8Bps4VNxKgz-tk39Czs4oFFXB818bNS7-1ZQl4,3244
35
+ base_client/core/parse_error.py,sha256=VqCFdcXqqqomql18zSkpYvj5Kx4yZciNXy4zg9ZIXno,1111
36
+ base_client/core/pydantic_utilities.py,sha256=6m7DLSv1rxBMiqq5pskxQEE0Vd4DHpLwPGbtTNcz0vM,20048
37
+ base_client/core/query_encoder.py,sha256=ekulqNd0j8TgD7ox-Qbz7liqX8-KP9blvT9DsRCenYM,2144
38
+ base_client/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
39
+ base_client/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
40
+ base_client/core/serialization.py,sha256=KbN6cX6jd0RlHgGOgcmpV04WnUqcVyJ7wZiodYkIkTE,12962
41
+ base_client/dsn/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
42
+ base_client/dsn/client.py,sha256=x4ZGmATf6nywwlIgP1t2Tw60tpWg_HshrOug9kdxqPI,2784
43
+ base_client/dsn/raw_client.py,sha256=pYpVe_ApCd8FTiv7p-fi37luGaJSctY7wLxAqbPQnTM,4850
44
+ base_client/errors/__init__.py,sha256=Kb4HezWO_OoJ7iehJWMDl3LXbigf4VyaFgBHrXgpwiw,1204
45
+ base_client/errors/bad_request_error.py,sha256=_nkSDHMpzm0RadIc19BDq-yM9uJMQGWNrdsT2_6B6Iw,348
46
+ base_client/errors/forbidden_error.py,sha256=eDJG4NiZy5uBKpftwKuKJLcmV3zbKs55WFPH1FHI7Pk,347
47
+ base_client/reference.md,sha256=GSVOXLr4prA4a8CbBdHEsd7g7b9KdR1mFJhxyyutHGg,6649
48
+ base_client/sync_state/__init__.py,sha256=hG16r4bUWALobhBrX3WXEcPEd_3G9waswIAZ4MklF1o,1101
49
+ base_client/sync_state/client.py,sha256=yPet9_XBhJRZYgYwPfzfmRNYZmMyHstzq_IThRVVFWM,5649
50
+ base_client/sync_state/raw_client.py,sha256=Oeww8mnaY5Gx7EXykVvZEpQWPVrnF_CSdUHPxEIUXP8,10654
51
+ base_client/sync_state/types/__init__.py,sha256=knFJtq-SqEF9XWR_Q45DGNuedniTicegZAQRSXQJfPU,1153
52
+ base_client/sync_state/types/sync_state_input_bindings_value.py,sha256=eqLAdZLMCrtCUx__KRHbcL8Ekfe7MxmFg9eVz_6c99k,740
53
+ base_client/tests/conftest.py,sha256=73GGSeSxAOz9E0BWhtndpgbL5Jg9ThtI_s6N9fNuVmM,637
54
+ base_client/tests/test_aiohttp_autodetect.py,sha256=Igeqqd2dGcvZVbqTXlS1cr9liIVOJUSIv_56yELMzvs,5263
55
+ base_client/types/__init__.py,sha256=y88IgSZVDBzt09fcg2ur-Wi8Qs7d6Z97zZb_DLKq_Mo,4715
56
+ base_client/types/api_key_auth.py,sha256=PfbKbA4FgabmHoCjnkfmWlbu2HFEswxBvZab10AiKCk,520
57
+ base_client/types/authenticated_account_ref.py,sha256=r35lO3NiF6__qy-QtxYwSb8v18uS5Hb46pAZN2V_cxM,557
58
+ base_client/types/base.py,sha256=nJZgbvbKhKnTF14_yU-78pvgbmcdWTU8sWdfds5zVCk,606
59
+ base_client/types/binding.py,sha256=e8TgIez8AuXwBzZ8u6_pLeV1JG6P7IZHjbLTTBCSYPc,804
60
+ base_client/types/binding_auth.py,sha256=hPAbUrJVQqHNLSMO3h0GmuFInTxdOh5Gyc5K1MNK5Zc,2167
61
+ base_client/types/binding_auth_input.py,sha256=TJHo0Zo78V6QkNHykLFiG2DHZ76Ja4e5vmDYUwNl6dU,2258
62
+ base_client/types/binding_auth_input_api_key.py,sha256=j2gyeAwo3aDGB7RE4mGmaC8VKywwb8MqOSBMs8-Vi-s,539
63
+ base_client/types/binding_auth_input_authenticated_account.py,sha256=81oPVSRZIkYZ-XYCDBCS5nsYkHOlzGfqF7E1S9eXzC4,570
64
+ base_client/types/binding_auth_input_client_credentials.py,sha256=JtVah2nGlAusNVHLp5ibISet4rAdECkI569b895uF1k,568
65
+ base_client/types/binding_auth_input_none.py,sha256=xyI0kfssoahUmWKUBuq48rS4R_QjsM3ZUfZ_Uz4ss50,512
66
+ base_client/types/binding_auth_none.py,sha256=533_9tTHHqtjVa2JdhSNg35fh4fwHZq8F4yrqLBJgBE,507
67
+ base_client/types/binding_models.py,sha256=zJdshw7QSpP7fLlhzAINivJWA1PC93nGBKsz9aKOgpI,813
68
+ base_client/types/binding_state.py,sha256=f-bknJ7RngDcyFyKAs-HOukdCwYM13csgQZ21eyoGE8,735
69
+ base_client/types/binding_state_response.py,sha256=KU1vYoAYxkFGAHdgzRS23HHGiCsuHcxYcknm4G1nB7o,617
70
+ base_client/types/client_credentials_auth.py,sha256=OSp2bOA1y3eja54yB-PZ-a9KFSV8fp8u4cY0no8XwQQ,556
71
+ base_client/types/dagster_all_plan_binding.py,sha256=DUpFpFMCradpob6mjnHDkI1yzbLvCwtFTmrgrs4v1iw,851
72
+ base_client/types/dagster_all_plan_binding_mode.py,sha256=Ver-6ed-4sI6yMbnZkXI8TVqTaL_ppaaV15jcZnTxnI,160
73
+ base_client/types/dagster_binding_plan_all.py,sha256=X4ZCqKQ8B4sVU3TJmF79AYHl3FA9-kXXu4zPeUlGKyU,694
74
+ base_client/types/dsn_response.py,sha256=AtshJDFlWMv4JZwAC1Y_FmCd75UraA5XSfC3lv3tAbE,517
75
+ base_client/types/error.py,sha256=A6FxcvRh6jE61R8dwiK6AvXVWdJx1Ws38fqM4wzRuV8,513
76
+ base_client/types/run_status.py,sha256=uPj44tUNFhpbGIsUKwcgAuEFDS3wGun6QFUjx67pRe8,264
77
+ contextbase_base_client-0.5.0.dist-info/WHEEL,sha256=i9aSRDivn5iP9LaR1BLQX2GNAuriQWPsFwbbWygTX2k,81
78
+ contextbase_base_client-0.5.0.dist-info/METADATA,sha256=azjWZTfGCe9-ebL9csZI52u7sUVrvz4tXLMW3BAQDQM,347
79
+ contextbase_base_client-0.5.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: uv 0.11.15
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any