weave-python 0.30.8__tar.gz → 0.33.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.
- {weave_python-0.30.8 → weave_python-0.33.0}/.github/workflows/generate.yaml +37 -9
- {weave_python-0.30.8 → weave_python-0.33.0}/.github/workflows/release.yaml +8 -7
- {weave_python-0.30.8 → weave_python-0.33.0}/PKG-INFO +1 -1
- {weave_python-0.30.8 → weave_python-0.33.0}/tools/sqlcgen/sqlcgen.py +1 -1
- weave_python-0.33.0/uv.lock +155 -0
- weave_python-0.33.0/weave/weaveapi/atc/v1/event_pb2.py +70 -0
- weave_python-0.33.0/weave/weaveapi/atc/v1/event_pb2.pyi +446 -0
- weave_python-0.33.0/weave/weaveapi/atc/v1/message_pb2.py +44 -0
- weave_python-0.33.0/weave/weaveapi/atc/v1/message_pb2.pyi +119 -0
- weave_python-0.33.0/weave/weaveapi/atc/v1/process_pb2.py +54 -0
- weave_python-0.33.0/weave/weaveapi/atc/v1/process_pb2.pyi +287 -0
- weave_python-0.33.0/weave/weaveapi/atc/v1/run_pb2.py +54 -0
- weave_python-0.33.0/weave/weaveapi/atc/v1/run_pb2.pyi +228 -0
- weave_python-0.33.0/weave/weaveapi/atc/v1/service_pb2.py +220 -0
- weave_python-0.33.0/weave/weaveapi/atc/v1/service_pb2.pyi +900 -0
- weave_python-0.33.0/weave/weaveapi/atc/v1/service_pb2_grpc.py +650 -0
- weave_python-0.33.0/weave/weaveapi/atc/v1/service_pb2_grpc.pyi +322 -0
- weave_python-0.33.0/weave/weaveapi/project/v1/project_pb2.py +74 -0
- weave_python-0.33.0/weave/weaveapi/project/v1/project_pb2.pyi +416 -0
- weave_python-0.33.0/weave/weaveapi/project/v1/service_pb2.py +160 -0
- weave_python-0.33.0/weave/weaveapi/project/v1/service_pb2.pyi +632 -0
- {weave_python-0.30.8 → weave_python-0.33.0}/weave/weaveapi/project/v1/service_pb2_grpc.py +76 -76
- {weave_python-0.30.8 → weave_python-0.33.0}/weave/weaveapi/project/v1/service_pb2_grpc.pyi +55 -45
- weave_python-0.33.0/weave/weaveapi/provider/v1/provider_pb2.py +70 -0
- weave_python-0.33.0/weave/weaveapi/provider/v1/provider_pb2.pyi +412 -0
- weave_python-0.33.0/weave/weaveapi/provider/v1/service_pb2.py +154 -0
- weave_python-0.33.0/weave/weaveapi/provider/v1/service_pb2.pyi +518 -0
- weave_python-0.33.0/weave/weaveapi/provider/v1/service_pb2_grpc.py +322 -0
- weave_python-0.33.0/weave/weaveapi/provider/v1/service_pb2_grpc.pyi +155 -0
- weave_python-0.33.0/weave/weaveapi/task/v1/service_pb2.py +104 -0
- weave_python-0.33.0/weave/weaveapi/task/v1/service_pb2.pyi +449 -0
- weave_python-0.33.0/weave/weaveapi/task/v1/service_pb2_grpc.py +226 -0
- weave_python-0.33.0/weave/weaveapi/task/v1/service_pb2_grpc.pyi +107 -0
- weave_python-0.33.0/weave/weaveapi/task/v1/task_pb2.py +60 -0
- weave_python-0.33.0/weave/weaveapi/task/v1/task_pb2.pyi +327 -0
- weave_python-0.33.0/weave/weavesql/atcdb/event.py +727 -0
- weave_python-0.33.0/weave/weavesql/atcdb/inspection.py +613 -0
- weave_python-0.33.0/weave/weavesql/atcdb/mailbox.py +210 -0
- weave_python-0.33.0/weave/weavesql/atcdb/models.py +102 -0
- weave_python-0.33.0/weave/weavesql/atcdb/run_template.py +432 -0
- weave_python-0.33.0/weave/weavesql/atcdb/snapshot.py +249 -0
- weave_python-0.33.0/weave/weavesql/atcdb/team.py +464 -0
- weave_python-0.33.0/weave/weavesql/weavedb/models.py +125 -0
- weave_python-0.33.0/weave/weavesql/weavedb/project.py +973 -0
- weave_python-0.33.0/weave/weavesql/weavedb/provider.py +683 -0
- weave_python-0.33.0/weave/weavesql/weavedb/task.py +886 -0
- weave_python-0.30.8/uv.lock +0 -151
- weave_python-0.30.8/weave/weaveapi/auth/v1/service_pb2.py +0 -324
- weave_python-0.30.8/weave/weaveapi/auth/v1/service_pb2.pyi +0 -1560
- weave_python-0.30.8/weave/weaveapi/auth/v1/service_pb2_grpc.py +0 -1091
- weave_python-0.30.8/weave/weaveapi/auth/v1/service_pb2_grpc.pyi +0 -519
- weave_python-0.30.8/weave/weaveapi/auth/v1/session_pb2.py +0 -46
- weave_python-0.30.8/weave/weaveapi/auth/v1/session_pb2.pyi +0 -131
- weave_python-0.30.8/weave/weaveapi/auth/v1/usage_pb2.py +0 -56
- weave_python-0.30.8/weave/weaveapi/auth/v1/usage_pb2.pyi +0 -295
- weave_python-0.30.8/weave/weaveapi/auth/v1/user_pb2.py +0 -94
- weave_python-0.30.8/weave/weaveapi/auth/v1/user_pb2.pyi +0 -677
- weave_python-0.30.8/weave/weaveapi/data/v1/data_pb2.py +0 -60
- weave_python-0.30.8/weave/weaveapi/data/v1/data_pb2.pyi +0 -169
- weave_python-0.30.8/weave/weaveapi/data/v1/service_pb2.py +0 -216
- weave_python-0.30.8/weave/weaveapi/data/v1/service_pb2.pyi +0 -738
- weave_python-0.30.8/weave/weaveapi/data/v1/service_pb2_grpc.py +0 -461
- weave_python-0.30.8/weave/weaveapi/data/v1/service_pb2_grpc.pyi +0 -197
- weave_python-0.30.8/weave/weaveapi/generate/v1/configuration_pb2.py +0 -69
- weave_python-0.30.8/weave/weaveapi/generate/v1/configuration_pb2.pyi +0 -406
- weave_python-0.30.8/weave/weaveapi/generate/v1/configuration_pb2_grpc.py +0 -2
- weave_python-0.30.8/weave/weaveapi/generate/v1/configuration_pb2_grpc.pyi +0 -21
- weave_python-0.30.8/weave/weaveapi/generate/v1/generate_pb2.py +0 -64
- weave_python-0.30.8/weave/weaveapi/generate/v1/generate_pb2.pyi +0 -150
- weave_python-0.30.8/weave/weaveapi/generate/v1/generate_pb2_grpc.py +0 -2
- weave_python-0.30.8/weave/weaveapi/generate/v1/generate_pb2_grpc.pyi +0 -21
- weave_python-0.30.8/weave/weaveapi/generate/v1/service_pb2.py +0 -114
- weave_python-0.30.8/weave/weaveapi/generate/v1/service_pb2.pyi +0 -330
- weave_python-0.30.8/weave/weaveapi/generate/v1/service_pb2_grpc.py +0 -275
- weave_python-0.30.8/weave/weaveapi/generate/v1/service_pb2_grpc.pyi +0 -127
- weave_python-0.30.8/weave/weaveapi/input/v1/input_pb2.py +0 -64
- weave_python-0.30.8/weave/weaveapi/input/v1/input_pb2.pyi +0 -260
- weave_python-0.30.8/weave/weaveapi/input/v1/input_pb2_grpc.py +0 -2
- weave_python-0.30.8/weave/weaveapi/input/v1/input_pb2_grpc.pyi +0 -21
- weave_python-0.30.8/weave/weaveapi/input/v1/service_pb2.py +0 -278
- weave_python-0.30.8/weave/weaveapi/input/v1/service_pb2.pyi +0 -932
- weave_python-0.30.8/weave/weaveapi/input/v1/service_pb2_grpc.py +0 -649
- weave_python-0.30.8/weave/weaveapi/input/v1/service_pb2_grpc.pyi +0 -247
- weave_python-0.30.8/weave/weaveapi/integration/v1/integration_pb2.py +0 -75
- weave_python-0.30.8/weave/weaveapi/integration/v1/integration_pb2.pyi +0 -204
- weave_python-0.30.8/weave/weaveapi/integration/v1/integration_pb2_grpc.py +0 -2
- weave_python-0.30.8/weave/weaveapi/integration/v1/integration_pb2_grpc.pyi +0 -21
- weave_python-0.30.8/weave/weaveapi/integration/v1/service_pb2.py +0 -239
- weave_python-0.30.8/weave/weaveapi/integration/v1/service_pb2.pyi +0 -815
- weave_python-0.30.8/weave/weaveapi/integration/v1/service_pb2_grpc.py +0 -510
- weave_python-0.30.8/weave/weaveapi/integration/v1/service_pb2_grpc.pyi +0 -215
- weave_python-0.30.8/weave/weaveapi/llmx/v1/architecture_pb2.py +0 -74
- weave_python-0.30.8/weave/weaveapi/llmx/v1/architecture_pb2.pyi +0 -1432
- weave_python-0.30.8/weave/weaveapi/llmx/v1/architecture_pb2_grpc.py +0 -2
- weave_python-0.30.8/weave/weaveapi/llmx/v1/architecture_pb2_grpc.pyi +0 -21
- weave_python-0.30.8/weave/weaveapi/llmx/v1/capabilities_pb2.py +0 -120
- weave_python-0.30.8/weave/weaveapi/llmx/v1/capabilities_pb2.pyi +0 -1728
- weave_python-0.30.8/weave/weaveapi/llmx/v1/capabilities_pb2_grpc.py +0 -2
- weave_python-0.30.8/weave/weaveapi/llmx/v1/capabilities_pb2_grpc.pyi +0 -21
- weave_python-0.30.8/weave/weaveapi/llmx/v1/model_pb2.py +0 -90
- weave_python-0.30.8/weave/weaveapi/llmx/v1/model_pb2.pyi +0 -825
- weave_python-0.30.8/weave/weaveapi/llmx/v1/model_pb2_grpc.py +0 -2
- weave_python-0.30.8/weave/weaveapi/llmx/v1/model_pb2_grpc.pyi +0 -21
- weave_python-0.30.8/weave/weaveapi/llmx/v1/pricing_pb2.py +0 -58
- weave_python-0.30.8/weave/weaveapi/llmx/v1/pricing_pb2.pyi +0 -619
- weave_python-0.30.8/weave/weaveapi/llmx/v1/pricing_pb2_grpc.py +0 -2
- weave_python-0.30.8/weave/weaveapi/llmx/v1/pricing_pb2_grpc.pyi +0 -21
- weave_python-0.30.8/weave/weaveapi/llmx/v1/provider_pb2.py +0 -38
- weave_python-0.30.8/weave/weaveapi/llmx/v1/provider_pb2.pyi +0 -128
- weave_python-0.30.8/weave/weaveapi/llmx/v1/service_pb2.py +0 -318
- weave_python-0.30.8/weave/weaveapi/llmx/v1/service_pb2.pyi +0 -2019
- weave_python-0.30.8/weave/weaveapi/llmx/v1/service_pb2_grpc.py +0 -600
- weave_python-0.30.8/weave/weaveapi/llmx/v1/service_pb2_grpc.pyi +0 -223
- weave_python-0.30.8/weave/weaveapi/mcpregistry/v1/server_pb2.py +0 -48
- weave_python-0.30.8/weave/weaveapi/mcpregistry/v1/server_pb2.pyi +0 -185
- weave_python-0.30.8/weave/weaveapi/mcpregistry/v1/server_pb2_grpc.py +0 -2
- weave_python-0.30.8/weave/weaveapi/mcpregistry/v1/server_pb2_grpc.pyi +0 -21
- weave_python-0.30.8/weave/weaveapi/mcpregistry/v1/service_pb2.py +0 -119
- weave_python-0.30.8/weave/weaveapi/mcpregistry/v1/service_pb2.pyi +0 -221
- weave_python-0.30.8/weave/weaveapi/mcpregistry/v1/service_pb2_grpc.py +0 -322
- weave_python-0.30.8/weave/weaveapi/mcpregistry/v1/service_pb2_grpc.pyi +0 -133
- weave_python-0.30.8/weave/weaveapi/payment/v1/invoice_pb2.py +0 -72
- weave_python-0.30.8/weave/weaveapi/payment/v1/invoice_pb2.pyi +0 -410
- weave_python-0.30.8/weave/weaveapi/payment/v1/invoice_pb2_grpc.py +0 -2
- weave_python-0.30.8/weave/weaveapi/payment/v1/invoice_pb2_grpc.pyi +0 -21
- weave_python-0.30.8/weave/weaveapi/payment/v1/service_pb2.py +0 -410
- weave_python-0.30.8/weave/weaveapi/payment/v1/service_pb2.pyi +0 -1631
- weave_python-0.30.8/weave/weaveapi/payment/v1/service_pb2_grpc.py +0 -957
- weave_python-0.30.8/weave/weaveapi/payment/v1/service_pb2_grpc.pyi +0 -482
- weave_python-0.30.8/weave/weaveapi/payment/v1/subscription_pb2.py +0 -135
- weave_python-0.30.8/weave/weaveapi/payment/v1/subscription_pb2.pyi +0 -811
- weave_python-0.30.8/weave/weaveapi/payment/v1/subscription_pb2_grpc.py +0 -2
- weave_python-0.30.8/weave/weaveapi/payment/v1/subscription_pb2_grpc.pyi +0 -21
- weave_python-0.30.8/weave/weaveapi/project/v1/project_pb2.py +0 -46
- weave_python-0.30.8/weave/weaveapi/project/v1/project_pb2.pyi +0 -121
- weave_python-0.30.8/weave/weaveapi/project/v1/service_pb2.py +0 -126
- weave_python-0.30.8/weave/weaveapi/project/v1/service_pb2.pyi +0 -367
- weave_python-0.30.8/weave/weaveapi/report/v1/report_pb2.py +0 -64
- weave_python-0.30.8/weave/weaveapi/report/v1/report_pb2.pyi +0 -276
- weave_python-0.30.8/weave/weaveapi/report/v1/report_pb2_grpc.py +0 -2
- weave_python-0.30.8/weave/weaveapi/report/v1/report_pb2_grpc.pyi +0 -21
- weave_python-0.30.8/weave/weaveapi/report/v1/service_pb2.py +0 -124
- weave_python-0.30.8/weave/weaveapi/report/v1/service_pb2.pyi +0 -408
- weave_python-0.30.8/weave/weaveapi/report/v1/service_pb2_grpc.py +0 -322
- weave_python-0.30.8/weave/weaveapi/report/v1/service_pb2_grpc.pyi +0 -133
- weave_python-0.30.8/weave/weaveapi/requirement/v1/requirement_pb2.py +0 -69
- weave_python-0.30.8/weave/weaveapi/requirement/v1/requirement_pb2.pyi +0 -243
- weave_python-0.30.8/weave/weaveapi/requirement/v1/requirement_pb2_grpc.py +0 -2
- weave_python-0.30.8/weave/weaveapi/requirement/v1/requirement_pb2_grpc.pyi +0 -21
- weave_python-0.30.8/weave/weaveapi/requirement/v1/service_pb2.py +0 -281
- weave_python-0.30.8/weave/weaveapi/requirement/v1/service_pb2.pyi +0 -946
- weave_python-0.30.8/weave/weaveapi/requirement/v1/service_pb2_grpc.py +0 -651
- weave_python-0.30.8/weave/weaveapi/requirement/v1/service_pb2_grpc.pyi +0 -254
- weave_python-0.30.8/weave/weaveapi/run/v1/run_pb2.py +0 -88
- weave_python-0.30.8/weave/weaveapi/run/v1/run_pb2.pyi +0 -457
- weave_python-0.30.8/weave/weaveapi/run/v1/service_pb2.py +0 -132
- weave_python-0.30.8/weave/weaveapi/run/v1/service_pb2.pyi +0 -564
- weave_python-0.30.8/weave/weaveapi/run/v1/service_pb2_grpc.py +0 -367
- weave_python-0.30.8/weave/weaveapi/run/v1/service_pb2_grpc.pyi +0 -145
- weave_python-0.30.8/weave/weaveapi/script/v1/script_pb2.py +0 -74
- weave_python-0.30.8/weave/weaveapi/script/v1/script_pb2.pyi +0 -411
- weave_python-0.30.8/weave/weaveapi/script/v1/script_pb2_grpc.py +0 -2
- weave_python-0.30.8/weave/weaveapi/script/v1/script_pb2_grpc.pyi +0 -21
- weave_python-0.30.8/weave/weaveapi/script/v1/service_pb2.py +0 -346
- weave_python-0.30.8/weave/weaveapi/script/v1/service_pb2.pyi +0 -1283
- weave_python-0.30.8/weave/weaveapi/script/v1/service_pb2_grpc.py +0 -839
- weave_python-0.30.8/weave/weaveapi/script/v1/service_pb2_grpc.pyi +0 -319
- weave_python-0.30.8/weave/weaveapi/storage/v1/auth_pb2.py +0 -38
- weave_python-0.30.8/weave/weaveapi/storage/v1/auth_pb2.pyi +0 -55
- weave_python-0.30.8/weave/weaveapi/storage/v1/auth_pb2_grpc.py +0 -2
- weave_python-0.30.8/weave/weaveapi/storage/v1/auth_pb2_grpc.pyi +0 -21
- weave_python-0.30.8/weave/weaveapi/storage/v1/nosql_database_pb2.py +0 -83
- weave_python-0.30.8/weave/weaveapi/storage/v1/nosql_database_pb2.pyi +0 -509
- weave_python-0.30.8/weave/weaveapi/storage/v1/nosql_database_pb2_grpc.py +0 -2
- weave_python-0.30.8/weave/weaveapi/storage/v1/nosql_database_pb2_grpc.pyi +0 -21
- weave_python-0.30.8/weave/weaveapi/storage/v1/object_store_pb2.py +0 -63
- weave_python-0.30.8/weave/weaveapi/storage/v1/object_store_pb2.pyi +0 -241
- weave_python-0.30.8/weave/weaveapi/storage/v1/object_store_pb2_grpc.py +0 -2
- weave_python-0.30.8/weave/weaveapi/storage/v1/object_store_pb2_grpc.pyi +0 -21
- weave_python-0.30.8/weave/weaveapi/storage/v1/service_pb2.py +0 -128
- weave_python-0.30.8/weave/weaveapi/storage/v1/service_pb2.pyi +0 -603
- weave_python-0.30.8/weave/weaveapi/storage/v1/service_pb2_grpc.py +0 -322
- weave_python-0.30.8/weave/weaveapi/storage/v1/service_pb2_grpc.pyi +0 -164
- weave_python-0.30.8/weave/weaveapi/storage/v1/sql_database_pb2.py +0 -75
- weave_python-0.30.8/weave/weaveapi/storage/v1/sql_database_pb2.pyi +0 -552
- weave_python-0.30.8/weave/weaveapi/storage/v1/sql_database_pb2_grpc.py +0 -2
- weave_python-0.30.8/weave/weaveapi/storage/v1/sql_database_pb2_grpc.pyi +0 -21
- weave_python-0.30.8/weave/weaveapi/storage/v1/storage_pb2.py +0 -56
- weave_python-0.30.8/weave/weaveapi/storage/v1/storage_pb2.pyi +0 -102
- weave_python-0.30.8/weave/weaveapi/storage/v1/storage_pb2_grpc.py +0 -2
- weave_python-0.30.8/weave/weaveapi/storage/v1/storage_pb2_grpc.pyi +0 -21
- weave_python-0.30.8/weave/weaveapi/storage/v1/vcs_pb2.py +0 -62
- weave_python-0.30.8/weave/weaveapi/storage/v1/vcs_pb2.pyi +0 -391
- weave_python-0.30.8/weave/weaveapi/storage/v1/vcs_pb2_grpc.py +0 -2
- weave_python-0.30.8/weave/weaveapi/storage/v1/vcs_pb2_grpc.pyi +0 -21
- weave_python-0.30.8/weave/weaveapi/suite/v1/service_pb2.py +0 -378
- weave_python-0.30.8/weave/weaveapi/suite/v1/service_pb2.pyi +0 -1384
- weave_python-0.30.8/weave/weaveapi/suite/v1/service_pb2_grpc.py +0 -884
- weave_python-0.30.8/weave/weaveapi/suite/v1/service_pb2_grpc.pyi +0 -336
- weave_python-0.30.8/weave/weaveapi/suite/v1/suite_pb2.py +0 -92
- weave_python-0.30.8/weave/weaveapi/suite/v1/suite_pb2.pyi +0 -361
- weave_python-0.30.8/weave/weaveapi/suite/v1/suite_pb2_grpc.py +0 -2
- weave_python-0.30.8/weave/weaveapi/suite/v1/suite_pb2_grpc.pyi +0 -21
- weave_python-0.30.8/weave/weaveapi/synthesize/v1/dataset_pb2.py +0 -46
- weave_python-0.30.8/weave/weaveapi/synthesize/v1/dataset_pb2.pyi +0 -222
- weave_python-0.30.8/weave/weaveapi/synthesize/v1/dataset_pb2_grpc.py +0 -2
- weave_python-0.30.8/weave/weaveapi/synthesize/v1/dataset_pb2_grpc.pyi +0 -21
- weave_python-0.30.8/weave/weaveapi/synthesize/v1/inline_data_pb2.py +0 -45
- weave_python-0.30.8/weave/weaveapi/synthesize/v1/inline_data_pb2.pyi +0 -76
- weave_python-0.30.8/weave/weaveapi/synthesize/v1/inline_data_pb2_grpc.py +0 -2
- weave_python-0.30.8/weave/weaveapi/synthesize/v1/inline_data_pb2_grpc.pyi +0 -21
- weave_python-0.30.8/weave/weaveapi/synthesize/v1/relationship_pb2.py +0 -55
- weave_python-0.30.8/weave/weaveapi/synthesize/v1/relationship_pb2.pyi +0 -134
- weave_python-0.30.8/weave/weaveapi/synthesize/v1/relationship_pb2_grpc.py +0 -2
- weave_python-0.30.8/weave/weaveapi/synthesize/v1/relationship_pb2_grpc.pyi +0 -21
- weave_python-0.30.8/weave/weaveapi/synthesize/v1/service_pb2.py +0 -92
- weave_python-0.30.8/weave/weaveapi/synthesize/v1/service_pb2.pyi +0 -271
- weave_python-0.30.8/weave/weaveapi/synthesize/v1/service_pb2_grpc.py +0 -228
- weave_python-0.30.8/weave/weaveapi/synthesize/v1/service_pb2_grpc.pyi +0 -104
- weave_python-0.30.8/weave/weaveapi/synthesize/v1/training_pb2.py +0 -55
- weave_python-0.30.8/weave/weaveapi/synthesize/v1/training_pb2.pyi +0 -173
- weave_python-0.30.8/weave/weaveapi/synthesize/v1/training_pb2_grpc.py +0 -2
- weave_python-0.30.8/weave/weaveapi/synthesize/v1/training_pb2_grpc.pyi +0 -21
- weave_python-0.30.8/weave/weaveapi/testcase/v1/service_pb2.py +0 -352
- weave_python-0.30.8/weave/weaveapi/testcase/v1/service_pb2.pyi +0 -1220
- weave_python-0.30.8/weave/weaveapi/testcase/v1/service_pb2_grpc.py +0 -839
- weave_python-0.30.8/weave/weaveapi/testcase/v1/service_pb2_grpc.pyi +0 -317
- weave_python-0.30.8/weave/weaveapi/testcase/v1/testcase_pb2.py +0 -80
- weave_python-0.30.8/weave/weaveapi/testcase/v1/testcase_pb2.pyi +0 -329
- weave_python-0.30.8/weave/weaveapi/testcase/v1/testcase_pb2_grpc.py +0 -2
- weave_python-0.30.8/weave/weaveapi/testcase/v1/testcase_pb2_grpc.pyi +0 -21
- weave_python-0.30.8/weave/weaveapi/workflow/v1/service_pb2.py +0 -178
- weave_python-0.30.8/weave/weaveapi/workflow/v1/service_pb2.pyi +0 -534
- weave_python-0.30.8/weave/weaveapi/workflow/v1/service_pb2_grpc.py +0 -463
- weave_python-0.30.8/weave/weaveapi/workflow/v1/service_pb2_grpc.pyi +0 -183
- weave_python-0.30.8/weave/weaveapi/workflow/v1/workflow_pb2.py +0 -56
- weave_python-0.30.8/weave/weaveapi/workflow/v1/workflow_pb2.pyi +0 -236
- weave_python-0.30.8/weave/weaveapi/workflow/v1/workflow_pb2_grpc.py +0 -2
- weave_python-0.30.8/weave/weaveapi/workflow/v1/workflow_pb2_grpc.pyi +0 -21
- weave_python-0.30.8/weave/weaveapi/workflowdata/v1/service_pb2.py +0 -167
- weave_python-0.30.8/weave/weaveapi/workflowdata/v1/service_pb2.pyi +0 -676
- weave_python-0.30.8/weave/weaveapi/workflowdata/v1/service_pb2_grpc.py +0 -469
- weave_python-0.30.8/weave/weaveapi/workflowdata/v1/service_pb2_grpc.pyi +0 -199
- weave_python-0.30.8/weave/weavesql/llmxdb/capabilities.py +0 -487
- weave_python-0.30.8/weave/weavesql/llmxdb/changes.py +0 -299
- weave_python-0.30.8/weave/weavesql/llmxdb/models.py +0 -596
- weave_python-0.30.8/weave/weavesql/llmxdb/providers.py +0 -352
- weave_python-0.30.8/weave/weavesql/llmxdb/scraper_runs.py +0 -287
- weave_python-0.30.8/weave/weavesql/llmxdb/search.py +0 -721
- weave_python-0.30.8/weave/weavesql/weavedb/data_asset.py +0 -752
- weave_python-0.30.8/weave/weavesql/weavedb/dataset.py +0 -155
- weave_python-0.30.8/weave/weavesql/weavedb/input.py +0 -1066
- weave_python-0.30.8/weave/weavesql/weavedb/integration.py +0 -846
- weave_python-0.30.8/weave/weavesql/weavedb/llm_provider_credentials.py +0 -51
- weave_python-0.30.8/weave/weavesql/weavedb/models.py +0 -750
- weave_python-0.30.8/weave/weavesql/weavedb/project.py +0 -408
- weave_python-0.30.8/weave/weavesql/weavedb/relationships.py +0 -72
- weave_python-0.30.8/weave/weavesql/weavedb/report.py +0 -690
- weave_python-0.30.8/weave/weavesql/weavedb/requirement.py +0 -864
- weave_python-0.30.8/weave/weavesql/weavedb/run.py +0 -1019
- weave_python-0.30.8/weave/weavesql/weavedb/schema.py +0 -156
- weave_python-0.30.8/weave/weavesql/weavedb/storage.py +0 -113
- weave_python-0.30.8/weave/weavesql/weavedb/suite.py +0 -1361
- weave_python-0.30.8/weave/weavesql/weavedb/synthesizer.py +0 -107
- weave_python-0.30.8/weave/weavesql/weavedb/test_case.py +0 -1200
- weave_python-0.30.8/weave/weavesql/weavedb/test_script.py +0 -1283
- weave_python-0.30.8/weave/weavesql/weavedb/traceability.py +0 -590
- weave_python-0.30.8/weave/weavesql/weavedb/workflow.py +0 -619
- {weave_python-0.30.8 → weave_python-0.33.0}/.github/runs-on.yml +0 -0
- {weave_python-0.30.8 → weave_python-0.33.0}/.github/workflows/format-lint.yaml +0 -0
- {weave_python-0.30.8 → weave_python-0.33.0}/.gitignore +0 -0
- {weave_python-0.30.8 → weave_python-0.33.0}/.python-version +0 -0
- {weave_python-0.30.8 → weave_python-0.33.0}/LICENSE +0 -0
- {weave_python-0.30.8 → weave_python-0.33.0}/README.md +0 -0
- {weave_python-0.30.8 → weave_python-0.33.0}/Taskfile.yaml +0 -0
- {weave_python-0.30.8 → weave_python-0.33.0}/buf.gen.yaml +0 -0
- {weave_python-0.30.8 → weave_python-0.33.0}/pyproject.toml +0 -0
- {weave_python-0.30.8 → weave_python-0.33.0}/renovate.json +0 -0
- {weave_python-0.30.8 → weave_python-0.33.0}/tools/sqlcgen/README.md +0 -0
- {weave_python-0.30.8 → weave_python-0.33.0}/tools/sqlcgen/test_sqlcgen.py +0 -0
- /weave_python-0.30.8/weave/weaveapi/auth/v1/session_pb2_grpc.py → /weave_python-0.33.0/weave/weaveapi/atc/v1/event_pb2_grpc.py +0 -0
- /weave_python-0.30.8/weave/weaveapi/auth/v1/session_pb2_grpc.pyi → /weave_python-0.33.0/weave/weaveapi/atc/v1/event_pb2_grpc.pyi +0 -0
- /weave_python-0.30.8/weave/weaveapi/auth/v1/usage_pb2_grpc.py → /weave_python-0.33.0/weave/weaveapi/atc/v1/message_pb2_grpc.py +0 -0
- /weave_python-0.30.8/weave/weaveapi/auth/v1/usage_pb2_grpc.pyi → /weave_python-0.33.0/weave/weaveapi/atc/v1/message_pb2_grpc.pyi +0 -0
- /weave_python-0.30.8/weave/weaveapi/auth/v1/user_pb2_grpc.py → /weave_python-0.33.0/weave/weaveapi/atc/v1/process_pb2_grpc.py +0 -0
- /weave_python-0.30.8/weave/weaveapi/auth/v1/user_pb2_grpc.pyi → /weave_python-0.33.0/weave/weaveapi/atc/v1/process_pb2_grpc.pyi +0 -0
- {weave_python-0.30.8/weave/weaveapi/run → weave_python-0.33.0/weave/weaveapi/atc}/v1/run_pb2_grpc.py +0 -0
- {weave_python-0.30.8/weave/weaveapi/run → weave_python-0.33.0/weave/weaveapi/atc}/v1/run_pb2_grpc.pyi +0 -0
- {weave_python-0.30.8 → weave_python-0.33.0}/weave/weaveapi/project/v1/project_pb2_grpc.py +0 -0
- {weave_python-0.30.8 → weave_python-0.33.0}/weave/weaveapi/project/v1/project_pb2_grpc.pyi +0 -0
- {weave_python-0.30.8/weave/weaveapi/llmx → weave_python-0.33.0/weave/weaveapi/provider}/v1/provider_pb2_grpc.py +0 -0
- {weave_python-0.30.8/weave/weaveapi/llmx → weave_python-0.33.0/weave/weaveapi/provider}/v1/provider_pb2_grpc.pyi +0 -0
- /weave_python-0.30.8/weave/weaveapi/data/v1/data_pb2_grpc.py → /weave_python-0.33.0/weave/weaveapi/task/v1/task_pb2_grpc.py +0 -0
- /weave_python-0.30.8/weave/weaveapi/data/v1/data_pb2_grpc.pyi → /weave_python-0.33.0/weave/weaveapi/task/v1/task_pb2_grpc.pyi +0 -0
|
@@ -4,6 +4,7 @@ on:
|
|
|
4
4
|
repository_dispatch:
|
|
5
5
|
types:
|
|
6
6
|
- schema-release
|
|
7
|
+
- schema-branch-update
|
|
7
8
|
|
|
8
9
|
permissions:
|
|
9
10
|
contents: write
|
|
@@ -16,17 +17,34 @@ jobs:
|
|
|
16
17
|
- name: Configure RunsOn features
|
|
17
18
|
uses: runs-on/action@v2
|
|
18
19
|
|
|
19
|
-
- id:
|
|
20
|
-
uses: actions/
|
|
20
|
+
- id: stitch_auth
|
|
21
|
+
uses: weave-labs/ci/.github/actions/stitch-auth@main
|
|
21
22
|
with:
|
|
22
|
-
|
|
23
|
+
client-id: ${{ vars.STITCH_CLIENT_ID }}
|
|
23
24
|
private-key: ${{ secrets.STITCH_PRIVATE_KEY }}
|
|
24
|
-
owner: weave-labs
|
|
25
25
|
|
|
26
26
|
- uses: actions/checkout@v6
|
|
27
27
|
with:
|
|
28
28
|
persist-credentials: 'false'
|
|
29
29
|
|
|
30
|
+
- name: Determine generation mode
|
|
31
|
+
id: mode
|
|
32
|
+
run: |
|
|
33
|
+
if [[ "${{ github.event.action }}" == "schema-branch-update" ]]; then
|
|
34
|
+
echo "is_branch=true" >> "$GITHUB_OUTPUT"
|
|
35
|
+
echo "branch=${{ github.event.client_payload.branch }}" >> "$GITHUB_OUTPUT"
|
|
36
|
+
echo "ref=${{ github.event.client_payload.ref }}" >> "$GITHUB_OUTPUT"
|
|
37
|
+
else
|
|
38
|
+
echo "is_branch=false" >> "$GITHUB_OUTPUT"
|
|
39
|
+
echo "ref=${{ github.event.client_payload.ref }}" >> "$GITHUB_OUTPUT"
|
|
40
|
+
fi
|
|
41
|
+
|
|
42
|
+
- name: Setup feature branch
|
|
43
|
+
if: steps.mode.outputs.is_branch == 'true'
|
|
44
|
+
run: |
|
|
45
|
+
git fetch origin "${{ steps.mode.outputs.branch }}" || true
|
|
46
|
+
git checkout -B "${{ steps.mode.outputs.branch }}"
|
|
47
|
+
|
|
30
48
|
- name: Checkout schema
|
|
31
49
|
uses: actions/checkout@v6
|
|
32
50
|
with:
|
|
@@ -34,12 +52,12 @@ jobs:
|
|
|
34
52
|
persist-credentials: 'false'
|
|
35
53
|
repository: weave-labs/schema
|
|
36
54
|
ref: ${{ github.event.client_payload.ref }}
|
|
37
|
-
token: ${{ steps.
|
|
55
|
+
token: ${{ steps.stitch_auth.outputs.token }}
|
|
38
56
|
|
|
39
57
|
- name: Setup sqlc
|
|
40
|
-
uses: sqlc-dev/setup-sqlc@
|
|
58
|
+
uses: sqlc-dev/setup-sqlc@v5
|
|
41
59
|
with:
|
|
42
|
-
sqlc-version: '1.
|
|
60
|
+
sqlc-version: '1.30.0'
|
|
43
61
|
|
|
44
62
|
- name: Checkout sqlc-gen-python (PR 92)
|
|
45
63
|
uses: actions/checkout@v6
|
|
@@ -135,7 +153,7 @@ jobs:
|
|
|
135
153
|
fi
|
|
136
154
|
|
|
137
155
|
- name: Create Pull Request
|
|
138
|
-
if: steps.check_changes.outputs.has_changes == 'true'
|
|
156
|
+
if: steps.mode.outputs.is_branch == 'false' && steps.check_changes.outputs.has_changes == 'true'
|
|
139
157
|
uses: peter-evans/create-pull-request@v8
|
|
140
158
|
with:
|
|
141
159
|
base: 'main'
|
|
@@ -146,4 +164,14 @@ jobs:
|
|
|
146
164
|
branch: "update-schema-${{ github.event.client_payload.schema_version }}"
|
|
147
165
|
commit-message: "schema(codegen): update generated code from schema ${{ github.event.client_payload.schema_version }}"
|
|
148
166
|
title: "schema(codegen): update generated code from schema ${{ github.event.client_payload.schema_version }}"
|
|
149
|
-
token: ${{ steps.
|
|
167
|
+
token: ${{ steps.stitch_auth.outputs.token }}
|
|
168
|
+
|
|
169
|
+
- name: Push to feature branch
|
|
170
|
+
if: steps.mode.outputs.is_branch == 'true' && steps.check_changes.outputs.has_changes == 'true'
|
|
171
|
+
run: |
|
|
172
|
+
git remote set-url origin "https://x-access-token:${{ steps.stitch_auth.outputs.token }}@github.com/${{ github.repository }}.git"
|
|
173
|
+
git config user.name "weavelabs-stitch[bot]"
|
|
174
|
+
git config user.email "204946046+weavelabs-stitch[bot]@users.noreply.github.com"
|
|
175
|
+
git add -A
|
|
176
|
+
git commit -m "schema(codegen): update generated code from schema branch ${{ steps.mode.outputs.branch }}"
|
|
177
|
+
git push --force origin "${{ steps.mode.outputs.branch }}"
|
|
@@ -15,16 +15,17 @@ permissions:
|
|
|
15
15
|
actions: read
|
|
16
16
|
|
|
17
17
|
jobs:
|
|
18
|
-
|
|
19
|
-
uses: weave-labs/ci/.github/workflows/
|
|
20
|
-
|
|
21
|
-
|
|
18
|
+
release:
|
|
19
|
+
uses: weave-labs/ci/.github/workflows/release.yaml@main
|
|
20
|
+
permissions:
|
|
21
|
+
contents: write
|
|
22
|
+
issues: write
|
|
23
|
+
pull-requests: write
|
|
22
24
|
secrets:
|
|
23
|
-
APP_ID: ${{ secrets.STITCH_ID }}
|
|
24
25
|
APP_PRIVATE_KEY: ${{ secrets.STITCH_PRIVATE_KEY }}
|
|
25
26
|
|
|
26
27
|
package:
|
|
27
|
-
needs:
|
|
28
|
+
needs: release
|
|
28
29
|
uses: weave-labs/ci/.github/workflows/python-build.yaml@main
|
|
29
30
|
|
|
30
31
|
publish:
|
|
@@ -37,7 +38,7 @@ jobs:
|
|
|
37
38
|
- name: Configure RunsOn features
|
|
38
39
|
uses: runs-on/action@v2
|
|
39
40
|
|
|
40
|
-
- uses: actions/download-artifact@
|
|
41
|
+
- uses: actions/download-artifact@v8
|
|
41
42
|
with:
|
|
42
43
|
name: dist
|
|
43
44
|
path: dist/
|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
version = 1
|
|
2
|
+
revision = 3
|
|
3
|
+
requires-python = ">=3.10"
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "greenlet"
|
|
7
|
+
version = "3.4.0"
|
|
8
|
+
source = { registry = "https://pypi.org/simple" }
|
|
9
|
+
sdist = { url = "https://files.pythonhosted.org/packages/86/94/a5935717b307d7c71fe877b52b884c6af707d2d2090db118a03fbd799369/greenlet-3.4.0.tar.gz", hash = "sha256:f50a96b64dafd6169e595a5c56c9146ef80333e67d4476a65a9c55f400fc22ff", size = 195913, upload-time = "2026-04-08T17:08:00.863Z" }
|
|
10
|
+
wheels = [
|
|
11
|
+
{ url = "https://files.pythonhosted.org/packages/0c/bc/e30e1e3d5e8860b0e0ce4d2b16b2681b77fd13542fc0d72f7e3c22d16eff/greenlet-3.4.0-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:d18eae9a7fb0f499efcd146b8c9750a2e1f6e0e93b5a382b3481875354a430e6", size = 284315, upload-time = "2026-04-08T17:02:52.322Z" },
|
|
12
|
+
{ url = "https://files.pythonhosted.org/packages/5b/cc/e023ae1967d2a26737387cac083e99e47f65f58868bd155c4c80c01ec4e0/greenlet-3.4.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:636d2f95c309e35f650e421c23297d5011716be15d966e6328b367c9fc513a82", size = 601916, upload-time = "2026-04-08T16:24:35.533Z" },
|
|
13
|
+
{ url = "https://files.pythonhosted.org/packages/67/32/5be1677954b6d8810b33abe94e3eb88726311c58fa777dc97e390f7caf5a/greenlet-3.4.0-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:234582c20af9742583c3b2ddfbdbb58a756cfff803763ffaae1ac7990a9fac31", size = 616399, upload-time = "2026-04-08T16:30:54.536Z" },
|
|
14
|
+
{ url = "https://files.pythonhosted.org/packages/74/bf/2d58d5ea515704f83e34699128c9072a34bea27d2b6a556e102105fe62a5/greenlet-3.4.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:523677e69cd4711b5a014e37bc1fb3a29947c3e3a5bb6a527e1cc50312e5a398", size = 611978, upload-time = "2026-04-08T15:56:31.335Z" },
|
|
15
|
+
{ url = "https://files.pythonhosted.org/packages/bd/69/6525049b6c179d8a923256304d8387b8bdd4acab1acf0407852463c6d514/greenlet-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b45e45fe47a19051a396abb22e19e7836a59ee6c5a90f3be427343c37908d65b", size = 1571957, upload-time = "2026-04-08T16:26:17.041Z" },
|
|
16
|
+
{ url = "https://files.pythonhosted.org/packages/4e/6c/bbfb798b05fec736a0d24dc23e81b45bcee87f45a83cfb39db031853bddc/greenlet-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5434271357be07f3ad0936c312645853b7e689e679e29310e2de09a9ea6c3adf", size = 1637223, upload-time = "2026-04-08T15:57:27.556Z" },
|
|
17
|
+
{ url = "https://files.pythonhosted.org/packages/b7/7d/981fe0e7c07bd9d5e7eb18decb8590a11e3955878291f7a7de2e9c668eb7/greenlet-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:a19093fbad824ed7c0f355b5ff4214bffda5f1a7f35f29b31fcaa240cc0135ab", size = 237902, upload-time = "2026-04-08T17:03:14.16Z" },
|
|
18
|
+
{ url = "https://files.pythonhosted.org/packages/fb/c6/dba32cab7e3a625b011aa5647486e2d28423a48845a2998c126dd69c85e1/greenlet-3.4.0-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:805bebb4945094acbab757d34d6e1098be6de8966009ab9ca54f06ff492def58", size = 285504, upload-time = "2026-04-08T15:52:14.071Z" },
|
|
19
|
+
{ url = "https://files.pythonhosted.org/packages/54/f4/7cb5c2b1feb9a1f50e038be79980dfa969aa91979e5e3a18fdbcfad2c517/greenlet-3.4.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:439fc2f12b9b512d9dfa681c5afe5f6b3232c708d13e6f02c845e0d9f4c2d8c6", size = 605476, upload-time = "2026-04-08T16:24:37.064Z" },
|
|
20
|
+
{ url = "https://files.pythonhosted.org/packages/d6/af/b66ab0b2f9a4c5a867c136bf66d9599f34f21a1bcca26a2884a29c450bd9/greenlet-3.4.0-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a70ed1cb0295bee1df57b63bf7f46b4e56a5c93709eea769c1fec1bb23a95875", size = 618336, upload-time = "2026-04-08T16:30:56.59Z" },
|
|
21
|
+
{ url = "https://files.pythonhosted.org/packages/e5/5c/8c5633ece6ba611d64bf2770219a98dd439921d6424e4e8cf16b0ac74ea5/greenlet-3.4.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c660bce1940a1acae5f51f0a064f1bc785d07ea16efcb4bc708090afc4d69e83", size = 613515, upload-time = "2026-04-08T15:56:32.478Z" },
|
|
22
|
+
{ url = "https://files.pythonhosted.org/packages/a9/df/950d15bca0d90a0e7395eb777903060504cdb509b7b705631e8fb69ff415/greenlet-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ee407d4d1ca9dc632265aee1c8732c4a2d60adff848057cdebfe5fe94eb2c8a2", size = 1574623, upload-time = "2026-04-08T16:26:18.596Z" },
|
|
23
|
+
{ url = "https://files.pythonhosted.org/packages/1a/e7/0839afab829fcb7333c9ff6d80c040949510055d2d4d63251f0d1c7c804e/greenlet-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:956215d5e355fffa7c021d168728321fd4d31fd730ac609b1653b450f6a4bc71", size = 1639579, upload-time = "2026-04-08T15:57:29.231Z" },
|
|
24
|
+
{ url = "https://files.pythonhosted.org/packages/d9/2b/b4482401e9bcaf9f5c97f67ead38db89c19520ff6d0d6699979c6efcc200/greenlet-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:5cb614ace7c27571270354e9c9f696554d073f8aa9319079dcba466bbdead711", size = 238233, upload-time = "2026-04-08T17:02:54.286Z" },
|
|
25
|
+
{ url = "https://files.pythonhosted.org/packages/0c/4d/d8123a4e0bcd583d5cfc8ddae0bbe29c67aab96711be331a7cc935a35966/greenlet-3.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:04403ac74fe295a361f650818de93be11b5038a78f49ccfb64d3b1be8fbf1267", size = 235045, upload-time = "2026-04-08T17:04:05.072Z" },
|
|
26
|
+
{ url = "https://files.pythonhosted.org/packages/65/8b/3669ad3b3f247a791b2b4aceb3aa5a31f5f6817bf547e4e1ff712338145a/greenlet-3.4.0-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:1a54a921561dd9518d31d2d3db4d7f80e589083063ab4d3e2e950756ef809e1a", size = 286902, upload-time = "2026-04-08T15:52:12.138Z" },
|
|
27
|
+
{ url = "https://files.pythonhosted.org/packages/38/3e/3c0e19b82900873e2d8469b590a6c4b3dfd2b316d0591f1c26b38a4879a5/greenlet-3.4.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:16dec271460a9a2b154e3b1c2fa1050ce6280878430320e85e08c166772e3f97", size = 606099, upload-time = "2026-04-08T16:24:38.408Z" },
|
|
28
|
+
{ url = "https://files.pythonhosted.org/packages/b5/33/99fef65e7754fc76a4ed14794074c38c9ed3394a5bd129d7f61b705f3168/greenlet-3.4.0-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:90036ce224ed6fe75508c1907a77e4540176dcf0744473627785dd519c6f9996", size = 618837, upload-time = "2026-04-08T16:30:58.298Z" },
|
|
29
|
+
{ url = "https://files.pythonhosted.org/packages/36/f7/229f3aed6948faa20e0616a0b8568da22e365ede6a54d7d369058b128afd/greenlet-3.4.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a1c4f6b453006efb8310affb2d132832e9bbb4fc01ce6df6b70d810d38f1f6dc", size = 615062, upload-time = "2026-04-08T15:56:33.766Z" },
|
|
30
|
+
{ url = "https://files.pythonhosted.org/packages/08/97/d988180011aa40135c46cd0d0cf01dd97f7162bae14139b4a3ef54889ba5/greenlet-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:9b2d9a138ffa0e306d0e2b72976d2fb10b97e690d40ab36a472acaab0838e2de", size = 1573511, upload-time = "2026-04-08T16:26:20.058Z" },
|
|
31
|
+
{ url = "https://files.pythonhosted.org/packages/d4/0f/a5a26fe152fb3d12e6a474181f6e9848283504d0afd095f353d85726374b/greenlet-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8424683caf46eb0eb6f626cb95e008e8cc30d0cb675bdfa48200925c79b38a08", size = 1640396, upload-time = "2026-04-08T15:57:30.88Z" },
|
|
32
|
+
{ url = "https://files.pythonhosted.org/packages/42/cf/bb2c32d9a100e36ee9f6e38fad6b1e082b8184010cb06259b49e1266ca01/greenlet-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:a0a53fb071531d003b075c444014ff8f8b1a9898d36bb88abd9ac7b3524648a2", size = 238892, upload-time = "2026-04-08T17:03:10.094Z" },
|
|
33
|
+
{ url = "https://files.pythonhosted.org/packages/b7/47/6c41314bac56e71436ce551c7fbe3cc830ed857e6aa9708dbb9c65142eb6/greenlet-3.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:f38b81880ba28f232f1f675893a39cf7b6db25b31cc0a09bb50787ecf957e85e", size = 235599, upload-time = "2026-04-08T15:52:54.3Z" },
|
|
34
|
+
{ url = "https://files.pythonhosted.org/packages/7a/75/7e9cd1126a1e1f0cd67b0eda02e5221b28488d352684704a78ed505bd719/greenlet-3.4.0-cp313-cp313-macosx_11_0_universal2.whl", hash = "sha256:43748988b097f9c6f09364f260741aa73c80747f63389824435c7a50bfdfd5c1", size = 285856, upload-time = "2026-04-08T15:52:45.82Z" },
|
|
35
|
+
{ url = "https://files.pythonhosted.org/packages/9d/c4/3e2df392e5cb199527c4d9dbcaa75c14edcc394b45040f0189f649631e3c/greenlet-3.4.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5566e4e2cd7a880e8c27618e3eab20f3494452d12fd5129edef7b2f7aa9a36d1", size = 610208, upload-time = "2026-04-08T16:24:39.674Z" },
|
|
36
|
+
{ url = "https://files.pythonhosted.org/packages/da/af/750cdfda1d1bd30a6c28080245be8d0346e669a98fdbae7f4102aa95fff3/greenlet-3.4.0-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:1054c5a3c78e2ab599d452f23f7adafef55062a783a8e241d24f3b633ba6ff82", size = 621269, upload-time = "2026-04-08T16:30:59.767Z" },
|
|
37
|
+
{ url = "https://files.pythonhosted.org/packages/54/78/0cbc693622cd54ebe25207efbb3a0eb07c2639cb8594f6e3aaaa0bb077a8/greenlet-3.4.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f82cb6cddc27dd81c96b1506f4aa7def15070c3b2a67d4e46fd19016aacce6cf", size = 617549, upload-time = "2026-04-08T15:56:34.893Z" },
|
|
38
|
+
{ url = "https://files.pythonhosted.org/packages/ba/c0/8966767de01343c1ff47e8b855dc78e7d1a8ed2b7b9c83576a57e289f81d/greenlet-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:227a46251ecba4ff46ae742bc5ce95c91d5aceb4b02f885487aff269c127a729", size = 1575310, upload-time = "2026-04-08T16:26:21.671Z" },
|
|
39
|
+
{ url = "https://files.pythonhosted.org/packages/b8/38/bcdc71ba05e9a5fda87f63ffc2abcd1f15693b659346df994a48c968003d/greenlet-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5b99e87be7eba788dd5b75ba1cde5639edffdec5f91fe0d734a249535ec3408c", size = 1640435, upload-time = "2026-04-08T15:57:32.572Z" },
|
|
40
|
+
{ url = "https://files.pythonhosted.org/packages/a1/c2/19b664b7173b9e4ef5f77e8cef9f14c20ec7fce7920dc1ccd7afd955d093/greenlet-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:849f8bc17acd6295fcb5de8e46d55cc0e52381c56eaf50a2afd258e97bc65940", size = 238760, upload-time = "2026-04-08T17:04:03.878Z" },
|
|
41
|
+
{ url = "https://files.pythonhosted.org/packages/9b/96/795619651d39c7fbd809a522f881aa6f0ead504cc8201c3a5b789dfaef99/greenlet-3.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:9390ad88b652b1903814eaabd629ca184db15e0eeb6fe8a390bbf8b9106ae15a", size = 235498, upload-time = "2026-04-08T17:05:00.584Z" },
|
|
42
|
+
{ url = "https://files.pythonhosted.org/packages/78/02/bde66806e8f169cf90b14d02c500c44cdbe02c8e224c9c67bafd1b8cadd1/greenlet-3.4.0-cp314-cp314-macosx_11_0_universal2.whl", hash = "sha256:10a07aca6babdd18c16a3f4f8880acfffc2b88dfe431ad6aa5f5740759d7d75e", size = 286291, upload-time = "2026-04-08T17:09:34.307Z" },
|
|
43
|
+
{ url = "https://files.pythonhosted.org/packages/05/1f/39da1c336a87d47c58352fb8a78541ce63d63ae57c5b9dae1fe02801bbc2/greenlet-3.4.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:076e21040b3a917d3ce4ad68fb5c3c6b32f1405616c4a57aa83120979649bd3d", size = 656749, upload-time = "2026-04-08T16:24:41.721Z" },
|
|
44
|
+
{ url = "https://files.pythonhosted.org/packages/d3/6c/90ee29a4ee27af7aa2e2ec408799eeb69ee3fcc5abcecac6ddd07a5cd0f2/greenlet-3.4.0-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:e82689eea4a237e530bb5cb41b180ef81fa2160e1f89422a67be7d90da67f615", size = 669084, upload-time = "2026-04-08T16:31:01.372Z" },
|
|
45
|
+
{ url = "https://files.pythonhosted.org/packages/07/49/d4cad6e5381a50947bb973d2f6cf6592621451b09368b8c20d9b8af49c5b/greenlet-3.4.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4df3b0b2289ec686d3c821a5fee44259c05cfe824dd5e6e12c8e5f5df23085cf", size = 665621, upload-time = "2026-04-08T15:56:35.995Z" },
|
|
46
|
+
{ url = "https://files.pythonhosted.org/packages/37/31/d1edd54f424761b5d47718822f506b435b6aab2f3f93b465441143ea5119/greenlet-3.4.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:8bff29d586ea415688f4cec96a591fcc3bf762d046a796cdadc1fdb6e7f2d5bf", size = 1622259, upload-time = "2026-04-08T16:26:23.201Z" },
|
|
47
|
+
{ url = "https://files.pythonhosted.org/packages/b0/c6/6d3f9cdcb21c4e12a79cb332579f1c6aa1af78eb68059c5a957c7812d95e/greenlet-3.4.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:8a569c2fb840c53c13a2b8967c63621fafbd1a0e015b9c82f408c33d626a2fda", size = 1686916, upload-time = "2026-04-08T15:57:34.282Z" },
|
|
48
|
+
{ url = "https://files.pythonhosted.org/packages/63/45/c1ca4a1ad975de4727e52d3ffe641ae23e1d7a8ffaa8ff7a0477e1827b92/greenlet-3.4.0-cp314-cp314-win_amd64.whl", hash = "sha256:207ba5b97ea8b0b60eb43ffcacf26969dd83726095161d676aac03ff913ee50d", size = 239821, upload-time = "2026-04-08T17:03:48.423Z" },
|
|
49
|
+
{ url = "https://files.pythonhosted.org/packages/71/c4/6f621023364d7e85a4769c014c8982f98053246d142420e0328980933ceb/greenlet-3.4.0-cp314-cp314-win_arm64.whl", hash = "sha256:f8296d4e2b92af34ebde81085a01690f26a51eb9ac09a0fcadb331eb36dbc802", size = 236932, upload-time = "2026-04-08T17:04:33.551Z" },
|
|
50
|
+
{ url = "https://files.pythonhosted.org/packages/d4/8f/18d72b629783f5e8d045a76f5325c1e938e659a9e4da79c7dcd10169a48d/greenlet-3.4.0-cp314-cp314t-macosx_11_0_universal2.whl", hash = "sha256:d70012e51df2dbbccfaf63a40aaf9b40c8bed37c3e3a38751c926301ce538ece", size = 294681, upload-time = "2026-04-08T15:52:35.778Z" },
|
|
51
|
+
{ url = "https://files.pythonhosted.org/packages/9e/ad/5fa86ec46769c4153820d58a04062285b3b9e10ba3d461ee257b68dcbf53/greenlet-3.4.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a58bec0751f43068cd40cff31bb3ca02ad6000b3a51ca81367af4eb5abc480c8", size = 658899, upload-time = "2026-04-08T16:24:43.32Z" },
|
|
52
|
+
{ url = "https://files.pythonhosted.org/packages/43/f0/4e8174ca0e87ae748c409f055a1ba161038c43cc0a5a6f1433a26ac2e5bf/greenlet-3.4.0-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:05fa0803561028f4b2e3b490ee41216a842eaee11aed004cc343a996d9523aa2", size = 665284, upload-time = "2026-04-08T16:31:02.833Z" },
|
|
53
|
+
{ url = "https://files.pythonhosted.org/packages/19/da/991cf7cd33662e2df92a1274b7eb4d61769294d38a1bba8a45f31364845e/greenlet-3.4.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e60d38719cb80b3ab5e85f9f1aed4960acfde09868af6762ccb27b260d68f4ed", size = 661861, upload-time = "2026-04-08T15:56:37.269Z" },
|
|
54
|
+
{ url = "https://files.pythonhosted.org/packages/36/c5/6c2c708e14db3d9caea4b459d8464f58c32047451142fe2cfd90e7458f41/greenlet-3.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:7f50c804733b43eded05ae694691c9aa68bca7d0a867d67d4a3f514742a2d53f", size = 1622182, upload-time = "2026-04-08T16:26:24.777Z" },
|
|
55
|
+
{ url = "https://files.pythonhosted.org/packages/7a/4c/50c5fed19378e11a29fabab1f6be39ea95358f4a0a07e115a51ca93385d8/greenlet-3.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:2d4f0635dc4aa638cda4b2f5a07ae9a2cff9280327b581a3fcb6f317b4fbc38a", size = 1685050, upload-time = "2026-04-08T15:57:36.453Z" },
|
|
56
|
+
{ url = "https://files.pythonhosted.org/packages/db/72/85ae954d734703ab48e622c59d4ce35d77ce840c265814af9c078cacc7aa/greenlet-3.4.0-cp314-cp314t-win_amd64.whl", hash = "sha256:1a4a48f24681300c640f143ba7c404270e1ebbbcf34331d7104a4ff40f8ea705", size = 245554, upload-time = "2026-04-08T17:03:50.044Z" },
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "protobuf"
|
|
61
|
+
version = "7.34.1"
|
|
62
|
+
source = { registry = "https://pypi.org/simple" }
|
|
63
|
+
sdist = { url = "https://files.pythonhosted.org/packages/6b/6b/a0e95cad1ad7cc3f2c6821fcab91671bd5b78bd42afb357bb4765f29bc41/protobuf-7.34.1.tar.gz", hash = "sha256:9ce42245e704cc5027be797c1db1eb93184d44d1cdd71811fb2d9b25ad541280", size = 454708, upload-time = "2026-03-20T17:34:47.036Z" }
|
|
64
|
+
wheels = [
|
|
65
|
+
{ url = "https://files.pythonhosted.org/packages/ec/11/3325d41e6ee15bf1125654301211247b042563bcc898784351252549a8ad/protobuf-7.34.1-cp310-abi3-macosx_10_9_universal2.whl", hash = "sha256:d8b2cc79c4d8f62b293ad9b11ec3aebce9af481fa73e64556969f7345ebf9fc7", size = 429247, upload-time = "2026-03-20T17:34:37.024Z" },
|
|
66
|
+
{ url = "https://files.pythonhosted.org/packages/eb/9d/aa69df2724ff63efa6f72307b483ce0827f4347cc6d6df24b59e26659fef/protobuf-7.34.1-cp310-abi3-manylinux2014_aarch64.whl", hash = "sha256:5185e0e948d07abe94bb76ec9b8416b604cfe5da6f871d67aad30cbf24c3110b", size = 325753, upload-time = "2026-03-20T17:34:38.751Z" },
|
|
67
|
+
{ url = "https://files.pythonhosted.org/packages/92/e8/d174c91fd48e50101943f042b09af9029064810b734e4160bbe282fa1caa/protobuf-7.34.1-cp310-abi3-manylinux2014_s390x.whl", hash = "sha256:403b093a6e28a960372b44e5eb081775c9b056e816a8029c61231743d63f881a", size = 340198, upload-time = "2026-03-20T17:34:39.871Z" },
|
|
68
|
+
{ url = "https://files.pythonhosted.org/packages/53/1b/3b431694a4dc6d37b9f653f0c64b0a0d9ec074ee810710c0c3da21d67ba7/protobuf-7.34.1-cp310-abi3-manylinux2014_x86_64.whl", hash = "sha256:8ff40ce8cd688f7265326b38d5a1bed9bfdf5e6723d49961432f83e21d5713e4", size = 324267, upload-time = "2026-03-20T17:34:41.1Z" },
|
|
69
|
+
{ url = "https://files.pythonhosted.org/packages/85/29/64de04a0ac142fb685fd09999bc3d337943fb386f3a0ec57f92fd8203f97/protobuf-7.34.1-cp310-abi3-win32.whl", hash = "sha256:34b84ce27680df7cca9f231043ada0daa55d0c44a2ddfaa58ec1d0d89d8bf60a", size = 426628, upload-time = "2026-03-20T17:34:42.536Z" },
|
|
70
|
+
{ url = "https://files.pythonhosted.org/packages/4d/87/cb5e585192a22b8bd457df5a2c16a75ea0db9674c3a0a39fc9347d84e075/protobuf-7.34.1-cp310-abi3-win_amd64.whl", hash = "sha256:e97b55646e6ce5cbb0954a8c28cd39a5869b59090dfaa7df4598a7fba869468c", size = 437901, upload-time = "2026-03-20T17:34:44.112Z" },
|
|
71
|
+
{ url = "https://files.pythonhosted.org/packages/88/95/608f665226bca68b736b79e457fded9a2a38c4f4379a4a7614303d9db3bc/protobuf-7.34.1-py3-none-any.whl", hash = "sha256:bb3812cd53aefea2b028ef42bd780f5b96407247f20c6ef7c679807e9d188f11", size = 170715, upload-time = "2026-03-20T17:34:45.384Z" },
|
|
72
|
+
]
|
|
73
|
+
|
|
74
|
+
[[package]]
|
|
75
|
+
name = "sqlalchemy"
|
|
76
|
+
version = "2.0.49"
|
|
77
|
+
source = { registry = "https://pypi.org/simple" }
|
|
78
|
+
dependencies = [
|
|
79
|
+
{ name = "greenlet", marker = "platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64'" },
|
|
80
|
+
{ name = "typing-extensions" },
|
|
81
|
+
]
|
|
82
|
+
sdist = { url = "https://files.pythonhosted.org/packages/09/45/461788f35e0364a8da7bda51a1fe1b09762d0c32f12f63727998d85a873b/sqlalchemy-2.0.49.tar.gz", hash = "sha256:d15950a57a210e36dd4cec1aac22787e2a4d57ba9318233e2ef8b2daf9ff2d5f", size = 9898221, upload-time = "2026-04-03T16:38:11.704Z" }
|
|
83
|
+
wheels = [
|
|
84
|
+
{ url = "https://files.pythonhosted.org/packages/96/76/f908955139842c362aa877848f42f9249642d5b69e06cee9eae5111da1bd/sqlalchemy-2.0.49-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:42e8804962f9e6f4be2cbaedc0c3718f08f60a16910fa3d86da5a1e3b1bfe60f", size = 2159321, upload-time = "2026-04-03T16:50:11.8Z" },
|
|
85
|
+
{ url = "https://files.pythonhosted.org/packages/24/e2/17ba0b7bfbd8de67196889b6d951de269e8a46057d92baca162889beb16d/sqlalchemy-2.0.49-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:cc992c6ed024c8c3c592c5fc9846a03dd68a425674900c70122c77ea16c5fb0b", size = 3238937, upload-time = "2026-04-03T16:54:45.731Z" },
|
|
86
|
+
{ url = "https://files.pythonhosted.org/packages/90/1e/410dd499c039deacff395eec01a9da057125fcd0c97e3badc252c6a2d6a7/sqlalchemy-2.0.49-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6eb188b84269f357669b62cb576b5b918de10fb7c728a005fa0ebb0b758adce1", size = 3237188, upload-time = "2026-04-03T16:56:53.217Z" },
|
|
87
|
+
{ url = "https://files.pythonhosted.org/packages/ab/06/e797a8b98a3993ac4bc785309b9b6d005457fc70238ee6cefa7c8867a92e/sqlalchemy-2.0.49-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:62557958002b69699bdb7f5137c6714ca1133f045f97b3903964f47db97ea339", size = 3190061, upload-time = "2026-04-03T16:54:47.489Z" },
|
|
88
|
+
{ url = "https://files.pythonhosted.org/packages/44/d3/5a9f7ef580af1031184b38235da6ac58c3b571df01c9ec061c44b2b0c5a6/sqlalchemy-2.0.49-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:da9b91bca419dc9b9267ffadde24eae9b1a6bffcd09d0a207e5e3af99a03ce0d", size = 3211477, upload-time = "2026-04-03T16:56:55.056Z" },
|
|
89
|
+
{ url = "https://files.pythonhosted.org/packages/69/ec/7be8c8cb35f038e963a203e4fe5a028989167cc7299927b7cf297c271e37/sqlalchemy-2.0.49-cp310-cp310-win32.whl", hash = "sha256:5e61abbec255be7b122aa461021daa7c3f310f3e743411a67079f9b3cc91ece3", size = 2119965, upload-time = "2026-04-03T17:00:50.009Z" },
|
|
90
|
+
{ url = "https://files.pythonhosted.org/packages/b5/31/0defb93e3a10b0cf7d1271aedd87251a08c3a597ee4f353281769b547b5a/sqlalchemy-2.0.49-cp310-cp310-win_amd64.whl", hash = "sha256:0c98c59075b890df8abfcc6ad632879540f5791c68baebacb4f833713b510e75", size = 2142935, upload-time = "2026-04-03T17:00:51.675Z" },
|
|
91
|
+
{ url = "https://files.pythonhosted.org/packages/60/b5/e3617cc67420f8f403efebd7b043128f94775e57e5b84e7255203390ceae/sqlalchemy-2.0.49-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c5070135e1b7409c4161133aa525419b0062088ed77c92b1da95366ec5cbebbe", size = 2159126, upload-time = "2026-04-03T16:50:13.242Z" },
|
|
92
|
+
{ url = "https://files.pythonhosted.org/packages/20/9b/91ca80403b17cd389622a642699e5f6564096b698e7cdcbcbb6409898bc4/sqlalchemy-2.0.49-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9ac7a3e245fd0310fd31495eb61af772e637bdf7d88ee81e7f10a3f271bff014", size = 3315509, upload-time = "2026-04-03T16:54:49.332Z" },
|
|
93
|
+
{ url = "https://files.pythonhosted.org/packages/b1/61/0722511d98c54de95acb327824cb759e8653789af2b1944ab1cc69d32565/sqlalchemy-2.0.49-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4d4e5a0ceba319942fa6b585cf82539288a61e314ef006c1209f734551ab9536", size = 3315014, upload-time = "2026-04-03T16:56:56.376Z" },
|
|
94
|
+
{ url = "https://files.pythonhosted.org/packages/46/55/d514a653ffeb4cebf4b54c47bec32ee28ad89d39fafba16eeed1d81dccd5/sqlalchemy-2.0.49-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:3ddcb27fb39171de36e207600116ac9dfd4ae46f86c82a9bf3934043e80ebb88", size = 3267388, upload-time = "2026-04-03T16:54:51.272Z" },
|
|
95
|
+
{ url = "https://files.pythonhosted.org/packages/2f/16/0dcc56cb6d3335c1671a2258f5d2cb8267c9a2260e27fde53cbfb1b3540a/sqlalchemy-2.0.49-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:32fe6a41ad97302db2931f05bb91abbcc65b5ce4c675cd44b972428dd2947700", size = 3289602, upload-time = "2026-04-03T16:56:57.63Z" },
|
|
96
|
+
{ url = "https://files.pythonhosted.org/packages/51/6c/f8ab6fb04470a133cd80608db40aa292e6bae5f162c3a3d4ab19544a67af/sqlalchemy-2.0.49-cp311-cp311-win32.whl", hash = "sha256:46d51518d53edfbe0563662c96954dc8fcace9832332b914375f45a99b77cc9a", size = 2119044, upload-time = "2026-04-03T17:00:53.455Z" },
|
|
97
|
+
{ url = "https://files.pythonhosted.org/packages/c4/59/55a6d627d04b6ebb290693681d7683c7da001eddf90b60cfcc41ee907978/sqlalchemy-2.0.49-cp311-cp311-win_amd64.whl", hash = "sha256:951d4a210744813be63019f3df343bf233b7432aadf0db54c75802247330d3af", size = 2143642, upload-time = "2026-04-03T17:00:54.769Z" },
|
|
98
|
+
{ url = "https://files.pythonhosted.org/packages/49/b3/2de412451330756aaaa72d27131db6dde23995efe62c941184e15242a5fa/sqlalchemy-2.0.49-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4bbccb45260e4ff1b7db0be80a9025bb1e6698bdb808b83fff0000f7a90b2c0b", size = 2157681, upload-time = "2026-04-03T16:53:07.132Z" },
|
|
99
|
+
{ url = "https://files.pythonhosted.org/packages/50/84/b2a56e2105bd11ebf9f0b93abddd748e1a78d592819099359aa98134a8bf/sqlalchemy-2.0.49-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:fb37f15714ec2652d574f021d479e78cd4eb9d04396dca36568fdfffb3487982", size = 3338976, upload-time = "2026-04-03T17:07:40Z" },
|
|
100
|
+
{ url = "https://files.pythonhosted.org/packages/2c/fa/65fcae2ed62f84ab72cf89536c7c3217a156e71a2c111b1305ab6f0690e2/sqlalchemy-2.0.49-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:3bb9ec6436a820a4c006aad1ac351f12de2f2dbdaad171692ee457a02429b672", size = 3351937, upload-time = "2026-04-03T17:12:23.374Z" },
|
|
101
|
+
{ url = "https://files.pythonhosted.org/packages/f8/2f/6fd118563572a7fe475925742eb6b3443b2250e346a0cc27d8d408e73773/sqlalchemy-2.0.49-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8d6efc136f44a7e8bc8088507eaabbb8c2b55b3dbb63fe102c690da0ddebe55e", size = 3281646, upload-time = "2026-04-03T17:07:41.949Z" },
|
|
102
|
+
{ url = "https://files.pythonhosted.org/packages/c5/d7/410f4a007c65275b9cf82354adb4bb8ba587b176d0a6ee99caa16fe638f8/sqlalchemy-2.0.49-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e06e617e3d4fd9e51d385dfe45b077a41e9d1b033a7702551e3278ac597dc750", size = 3316695, upload-time = "2026-04-03T17:12:25.642Z" },
|
|
103
|
+
{ url = "https://files.pythonhosted.org/packages/d9/95/81f594aa60ded13273a844539041ccf1e66c5a7bed0a8e27810a3b52d522/sqlalchemy-2.0.49-cp312-cp312-win32.whl", hash = "sha256:83101a6930332b87653886c01d1ee7e294b1fe46a07dd9a2d2b4f91bcc88eec0", size = 2117483, upload-time = "2026-04-03T17:05:40.896Z" },
|
|
104
|
+
{ url = "https://files.pythonhosted.org/packages/47/9e/fd90114059175cac64e4fafa9bf3ac20584384d66de40793ae2e2f26f3bb/sqlalchemy-2.0.49-cp312-cp312-win_amd64.whl", hash = "sha256:618a308215b6cececb6240b9abde545e3acdabac7ae3e1d4e666896bf5ba44b4", size = 2144494, upload-time = "2026-04-03T17:05:42.282Z" },
|
|
105
|
+
{ url = "https://files.pythonhosted.org/packages/ae/81/81755f50eb2478eaf2049728491d4ea4f416c1eb013338682173259efa09/sqlalchemy-2.0.49-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:df2d441bacf97022e81ad047e1597552eb3f83ca8a8f1a1fdd43cd7fe3898120", size = 2154547, upload-time = "2026-04-03T16:53:08.64Z" },
|
|
106
|
+
{ url = "https://files.pythonhosted.org/packages/a2/bc/3494270da80811d08bcfa247404292428c4fe16294932bce5593f215cad9/sqlalchemy-2.0.49-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8e20e511dc15265fb433571391ba313e10dd8ea7e509d51686a51313b4ac01a2", size = 3280782, upload-time = "2026-04-03T17:07:43.508Z" },
|
|
107
|
+
{ url = "https://files.pythonhosted.org/packages/cd/f5/038741f5e747a5f6ea3e72487211579d8cbea5eb9827a9cbd61d0108c4bd/sqlalchemy-2.0.49-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:47604cb2159f8bbd5a1ab48a714557156320f20871ee64d550d8bf2683d980d3", size = 3297156, upload-time = "2026-04-03T17:12:27.697Z" },
|
|
108
|
+
{ url = "https://files.pythonhosted.org/packages/88/50/a6af0ff9dc954b43a65ca9b5367334e45d99684c90a3d3413fc19a02d43c/sqlalchemy-2.0.49-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:22d8798819f86720bc646ab015baff5ea4c971d68121cb36e2ebc2ee43ead2b7", size = 3228832, upload-time = "2026-04-03T17:07:45.38Z" },
|
|
109
|
+
{ url = "https://files.pythonhosted.org/packages/bc/d1/5f6bdad8de0bf546fc74370939621396515e0cdb9067402d6ba1b8afbe9a/sqlalchemy-2.0.49-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9b1c058c171b739e7c330760044803099c7fff11511e3ab3573e5327116a9c33", size = 3267000, upload-time = "2026-04-03T17:12:29.657Z" },
|
|
110
|
+
{ url = "https://files.pythonhosted.org/packages/f7/30/ad62227b4a9819a5e1c6abff77c0f614fa7c9326e5a3bdbee90f7139382b/sqlalchemy-2.0.49-cp313-cp313-win32.whl", hash = "sha256:a143af2ea6672f2af3f44ed8f9cd020e9cc34c56f0e8db12019d5d9ecf41cb3b", size = 2115641, upload-time = "2026-04-03T17:05:43.989Z" },
|
|
111
|
+
{ url = "https://files.pythonhosted.org/packages/17/3a/7215b1b7d6d49dc9a87211be44562077f5f04f9bb5a59552c1c8e2d98173/sqlalchemy-2.0.49-cp313-cp313-win_amd64.whl", hash = "sha256:12b04d1db2663b421fe072d638a138460a51d5a862403295671c4f3987fb9148", size = 2141498, upload-time = "2026-04-03T17:05:45.7Z" },
|
|
112
|
+
{ url = "https://files.pythonhosted.org/packages/28/4b/52a0cb2687a9cd1648252bb257be5a1ba2c2ded20ba695c65756a55a15a4/sqlalchemy-2.0.49-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:24bd94bb301ec672d8f0623eba9226cc90d775d25a0c92b5f8e4965d7f3a1518", size = 3560807, upload-time = "2026-04-03T16:58:31.666Z" },
|
|
113
|
+
{ url = "https://files.pythonhosted.org/packages/8c/d8/fda95459204877eed0458550d6c7c64c98cc50c2d8d618026737de9ed41a/sqlalchemy-2.0.49-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a51d3db74ba489266ef55c7a4534eb0b8db9a326553df481c11e5d7660c8364d", size = 3527481, upload-time = "2026-04-03T17:06:00.155Z" },
|
|
114
|
+
{ url = "https://files.pythonhosted.org/packages/ff/0a/2aac8b78ac6487240cf7afef8f203ca783e8796002dc0cf65c4ee99ff8bb/sqlalchemy-2.0.49-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:55250fe61d6ebfd6934a272ee16ef1244e0f16b7af6cd18ab5b1fc9f08631db0", size = 3468565, upload-time = "2026-04-03T16:58:33.414Z" },
|
|
115
|
+
{ url = "https://files.pythonhosted.org/packages/a5/3d/ce71cfa82c50a373fd2148b3c870be05027155ce791dc9a5dcf439790b8b/sqlalchemy-2.0.49-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:46796877b47034b559a593d7e4b549aba151dae73f9e78212a3478161c12ab08", size = 3477769, upload-time = "2026-04-03T17:06:02.787Z" },
|
|
116
|
+
{ url = "https://files.pythonhosted.org/packages/d5/e8/0a9f5c1f7c6f9ca480319bf57c2d7423f08d31445974167a27d14483c948/sqlalchemy-2.0.49-cp313-cp313t-win32.whl", hash = "sha256:9c4969a86e41454f2858256c39bdfb966a20961e9b58bf8749b65abf447e9a8d", size = 2143319, upload-time = "2026-04-03T17:02:04.328Z" },
|
|
117
|
+
{ url = "https://files.pythonhosted.org/packages/0e/51/fb5240729fbec73006e137c4f7a7918ffd583ab08921e6ff81a999d6517a/sqlalchemy-2.0.49-cp313-cp313t-win_amd64.whl", hash = "sha256:b9870d15ef00e4d0559ae10ee5bc71b654d1f20076dbe8bc7ed19b4c0625ceba", size = 2175104, upload-time = "2026-04-03T17:02:05.989Z" },
|
|
118
|
+
{ url = "https://files.pythonhosted.org/packages/55/33/bf28f618c0a9597d14e0b9ee7d1e0622faff738d44fe986ee287cdf1b8d0/sqlalchemy-2.0.49-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:233088b4b99ebcbc5258c755a097aa52fbf90727a03a5a80781c4b9c54347a2e", size = 2156356, upload-time = "2026-04-03T16:53:09.914Z" },
|
|
119
|
+
{ url = "https://files.pythonhosted.org/packages/d1/a7/5f476227576cb8644650eff68cc35fa837d3802b997465c96b8340ced1e2/sqlalchemy-2.0.49-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:57ca426a48eb2c682dae8204cd89ea8ab7031e2675120a47924fabc7caacbc2a", size = 3276486, upload-time = "2026-04-03T17:07:46.9Z" },
|
|
120
|
+
{ url = "https://files.pythonhosted.org/packages/2e/84/efc7c0bf3a1c5eef81d397f6fddac855becdbb11cb38ff957888603014a7/sqlalchemy-2.0.49-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:685e93e9c8f399b0c96a624799820176312f5ceef958c0f88215af4013d29066", size = 3281479, upload-time = "2026-04-03T17:12:32.226Z" },
|
|
121
|
+
{ url = "https://files.pythonhosted.org/packages/91/68/bb406fa4257099c67bd75f3f2261b129c63204b9155de0d450b37f004698/sqlalchemy-2.0.49-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:9e0400fa22f79acc334d9a6b185dc00a44a8e6578aa7e12d0ddcd8434152b187", size = 3226269, upload-time = "2026-04-03T17:07:48.678Z" },
|
|
122
|
+
{ url = "https://files.pythonhosted.org/packages/67/84/acb56c00cca9f251f437cb49e718e14f7687505749ea9255d7bd8158a6df/sqlalchemy-2.0.49-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:a05977bffe9bffd2229f477fa75eabe3192b1b05f408961d1bebff8d1cd4d401", size = 3248260, upload-time = "2026-04-03T17:12:34.381Z" },
|
|
123
|
+
{ url = "https://files.pythonhosted.org/packages/56/19/6a20ea25606d1efd7bd1862149bb2a22d1451c3f851d23d887969201633f/sqlalchemy-2.0.49-cp314-cp314-win32.whl", hash = "sha256:0f2fa354ba106eafff2c14b0cc51f22801d1e8b2e4149342023bd6f0955de5f5", size = 2118463, upload-time = "2026-04-03T17:05:47.093Z" },
|
|
124
|
+
{ url = "https://files.pythonhosted.org/packages/cf/4f/8297e4ed88e80baa1f5aa3c484a0ee29ef3c69c7582f206c916973b75057/sqlalchemy-2.0.49-cp314-cp314-win_amd64.whl", hash = "sha256:77641d299179c37b89cf2343ca9972c88bb6eef0d5fc504a2f86afd15cd5adf5", size = 2144204, upload-time = "2026-04-03T17:05:48.694Z" },
|
|
125
|
+
{ url = "https://files.pythonhosted.org/packages/1f/33/95e7216df810c706e0cd3655a778604bbd319ed4f43333127d465a46862d/sqlalchemy-2.0.49-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c1dc3368794d522f43914e03312202523cc89692f5389c32bea0233924f8d977", size = 3565474, upload-time = "2026-04-03T16:58:35.128Z" },
|
|
126
|
+
{ url = "https://files.pythonhosted.org/packages/0c/a4/ed7b18d8ccf7f954a83af6bb73866f5bc6f5636f44c7731fbb741f72cc4f/sqlalchemy-2.0.49-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7c821c47ecfe05cc32140dcf8dc6fd5d21971c86dbd56eabfe5ba07a64910c01", size = 3530567, upload-time = "2026-04-03T17:06:04.587Z" },
|
|
127
|
+
{ url = "https://files.pythonhosted.org/packages/73/a3/20faa869c7e21a827c4a2a42b41353a54b0f9f5e96df5087629c306df71e/sqlalchemy-2.0.49-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:9c04bff9a5335eb95c6ecf1c117576a0aa560def274876fd156cfe5510fccc61", size = 3474282, upload-time = "2026-04-03T16:58:37.131Z" },
|
|
128
|
+
{ url = "https://files.pythonhosted.org/packages/b7/50/276b9a007aa0764304ad467eceb70b04822dc32092492ee5f322d559a4dc/sqlalchemy-2.0.49-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:7f605a456948c35260e7b2a39f8952a26f077fd25653c37740ed186b90aaa68a", size = 3480406, upload-time = "2026-04-03T17:06:07.176Z" },
|
|
129
|
+
{ url = "https://files.pythonhosted.org/packages/e5/c3/c80fcdb41905a2df650c2a3e0337198b6848876e63d66fe9188ef9003d24/sqlalchemy-2.0.49-cp314-cp314t-win32.whl", hash = "sha256:6270d717b11c5476b0cbb21eedc8d4dbb7d1a956fd6c15a23e96f197a6193158", size = 2149151, upload-time = "2026-04-03T17:02:07.281Z" },
|
|
130
|
+
{ url = "https://files.pythonhosted.org/packages/05/52/9f1a62feab6ed368aff068524ff414f26a6daebc7361861035ae00b05530/sqlalchemy-2.0.49-cp314-cp314t-win_amd64.whl", hash = "sha256:275424295f4256fd301744b8f335cff367825d270f155d522b30c7bf49903ee7", size = 2184178, upload-time = "2026-04-03T17:02:08.623Z" },
|
|
131
|
+
{ url = "https://files.pythonhosted.org/packages/e5/30/8519fdde58a7bdf155b714359791ad1dc018b47d60269d5d160d311fdc36/sqlalchemy-2.0.49-py3-none-any.whl", hash = "sha256:ec44cfa7ef1a728e88ad41674de50f6db8cfdb3e2af84af86e0041aaf02d43d0", size = 1942158, upload-time = "2026-04-03T16:53:44.135Z" },
|
|
132
|
+
]
|
|
133
|
+
|
|
134
|
+
[[package]]
|
|
135
|
+
name = "typing-extensions"
|
|
136
|
+
version = "4.15.0"
|
|
137
|
+
source = { registry = "https://pypi.org/simple" }
|
|
138
|
+
sdist = { url = "https://files.pythonhosted.org/packages/72/94/1a15dd82efb362ac84269196e94cf00f187f7ed21c242792a923cdb1c61f/typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466", size = 109391, upload-time = "2025-08-25T13:49:26.313Z" }
|
|
139
|
+
wheels = [
|
|
140
|
+
{ url = "https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548", size = 44614, upload-time = "2025-08-25T13:49:24.86Z" },
|
|
141
|
+
]
|
|
142
|
+
|
|
143
|
+
[[package]]
|
|
144
|
+
name = "weave-python"
|
|
145
|
+
source = { editable = "." }
|
|
146
|
+
dependencies = [
|
|
147
|
+
{ name = "protobuf" },
|
|
148
|
+
{ name = "sqlalchemy" },
|
|
149
|
+
]
|
|
150
|
+
|
|
151
|
+
[package.metadata]
|
|
152
|
+
requires-dist = [
|
|
153
|
+
{ name = "protobuf", specifier = ">=6.30.2" },
|
|
154
|
+
{ name = "sqlalchemy", specifier = ">=2.0.40" },
|
|
155
|
+
]
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: weaveapi/atc/v1/event.proto
|
|
5
|
+
# Protobuf Python Version: 7.34.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
|
|
8
|
+
from google.protobuf import descriptor as _descriptor
|
|
9
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
10
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
11
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
12
|
+
from google.protobuf.internal import builder as _builder
|
|
13
|
+
|
|
14
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
15
|
+
_runtime_version.Domain.PUBLIC, 7, 34, 1, "", "weaveapi/atc/v1/event.proto"
|
|
16
|
+
)
|
|
17
|
+
# @@protoc_insertion_point(imports)
|
|
18
|
+
|
|
19
|
+
_sym_db = _symbol_database.Default()
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(
|
|
23
|
+
b'\n\x1bweaveapi/atc/v1/event.proto\x12\x0fweaveapi.atc.v1\x1a\x1fgoogle/protobuf/timestamp.proto"\x93\x02\n\x05\x45vent\x12\x19\n\x08\x65vent_id\x18\x01 \x01(\tR\x07\x65ventId\x12\x15\n\x06run_id\x18\x02 \x01(\tR\x05runId\x12\x1d\n\nevent_type\x18\x03 \x01(\tR\teventType\x12\x1a\n\x08sequence\x18\x04 \x01(\x04R\x08sequence\x12\x12\n\x04\x64\x61ta\x18\x05 \x01(\x0cR\x04\x64\x61ta\x12!\n\x0c\x63\x61usation_id\x18\x06 \x01(\tR\x0b\x63\x61usationId\x12%\n\x0e\x63orrelation_id\x18\x07 \x01(\tR\rcorrelationId\x12?\n\x0boccurred_at\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x02(\x01R\noccurredAt"_\n\x11InspectionSubject\x12:\n\x04kind\x18\x01 \x01(\x0e\x32&.weaveapi.atc.v1.InspectionSubjectKindR\x04kind\x12\x0e\n\x02id\x18\x02 \x01(\tR\x02id"[\n\x0fInspectionActor\x12\x38\n\x04kind\x18\x01 \x01(\x0e\x32$.weaveapi.atc.v1.InspectionActorKindR\x04kind\x12\x0e\n\x02id\x18\x02 \x01(\tR\x02id"\x8f\x06\n\x0fInspectionEvent\x12\x19\n\x08\x65vent_id\x18\x01 \x01(\tR\x07\x65ventId\x12\x1b\n\ttenant_id\x18\x02 \x01(\tR\x08tenantId\x12\x1d\n\nevent_type\x18\x03 \x01(\tR\teventType\x12?\n\x08\x63\x61tegory\x18\x04 \x01(\x0e\x32#.weaveapi.atc.v1.InspectionCategoryR\x08\x63\x61tegory\x12@\n\x07subject\x18\x05 \x01(\x0b\x32".weaveapi.atc.v1.InspectionSubjectB\x02(\x01R\x07subject\x12:\n\x05\x61\x63tor\x18\x06 \x01(\x0b\x32 .weaveapi.atc.v1.InspectionActorB\x02(\x01R\x05\x61\x63tor\x12\x15\n\x06run_id\x18\x07 \x01(\tR\x05runId\x12\x1d\n\nprocess_id\x18\x08 \x01(\tR\tprocessId\x12\x39\n\x06\x61\x63tion\x18\t \x01(\x0e\x32!.weaveapi.atc.v1.InspectionActionR\x06\x61\x63tion\x12<\n\x07outcome\x18\n \x01(\x0e\x32".weaveapi.atc.v1.InspectionOutcomeR\x07outcome\x12\x16\n\x06reason\x18\x0b \x01(\tR\x06reason\x12%\n\x0e\x63orrelation_id\x18\x0c \x01(\tR\rcorrelationId\x12!\n\x0c\x63\x61usation_id\x18\r \x01(\tR\x0b\x63\x61usationId\x12\x12\n\x04\x64\x61ta\x18\x0e \x01(\x0cR\x04\x64\x61ta\x12%\n\x0eschema_version\x18\x0f \x01(\x05R\rschemaVersion\x12\x1a\n\x08sequence\x18\x10 \x01(\x04R\x08sequence\x12?\n\x0boccurred_at\x18\x11 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x02(\x01R\noccurredAt\x12=\n\nexpires_at\x18\x12 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x02(\x01R\texpiresAt*\x9a\x02\n\x12InspectionCategory\x12#\n\x1fINSPECTION_CATEGORY_UNSPECIFIED\x10\x00\x12\x1e\n\x1aINSPECTION_CATEGORY_MEMORY\x10\x01\x12 \n\x1cINSPECTION_CATEGORY_ARTIFACT\x10\x02\x12\x1e\n\x1aINSPECTION_CATEGORY_SECRET\x10\x03\x12\x1e\n\x1aINSPECTION_CATEGORY_POLICY\x10\x04\x12\x1b\n\x17INSPECTION_CATEGORY_API\x10\x05\x12\x1f\n\x1bINSPECTION_CATEGORY_STORAGE\x10\x06\x12\x1f\n\x1bINSPECTION_CATEGORY_PROCESS\x10\x07*\xa3\x02\n\x10InspectionAction\x12!\n\x1dINSPECTION_ACTION_UNSPECIFIED\x10\x00\x12\x1a\n\x16INSPECTION_ACTION_READ\x10\x01\x12\x1b\n\x17INSPECTION_ACTION_WRITE\x10\x02\x12\x1b\n\x17INSPECTION_ACTION_QUERY\x10\x03\x12\x1d\n\x19INSPECTION_ACTION_REQUEST\x10\x04\x12\x1d\n\x19INSPECTION_ACTION_RESPOND\x10\x05\x12\x1c\n\x18INSPECTION_ACTION_STREAM\x10\x06\x12\x1a\n\x16INSPECTION_ACTION_SCAN\x10\x07\x12\x1e\n\x1aINSPECTION_ACTION_EVALUATE\x10\x08*\xd4\x01\n\x11InspectionOutcome\x12"\n\x1eINSPECTION_OUTCOME_UNSPECIFIED\x10\x00\x12\x1e\n\x1aINSPECTION_OUTCOME_ALLOWED\x10\x01\x12\x1d\n\x19INSPECTION_OUTCOME_DENIED\x10\x02\x12\x1c\n\x18INSPECTION_OUTCOME_ERROR\x10\x03\x12\x1e\n\x1aINSPECTION_OUTCOME_SUCCESS\x10\x04\x12\x1e\n\x1aINSPECTION_OUTCOME_PARTIAL\x10\x05*\xe8\x03\n\x15InspectionSubjectKind\x12\'\n#INSPECTION_SUBJECT_KIND_UNSPECIFIED\x10\x00\x12\x1f\n\x1bINSPECTION_SUBJECT_KIND_RUN\x10\x01\x12#\n\x1fINSPECTION_SUBJECT_KIND_PROCESS\x10\x02\x12,\n(INSPECTION_SUBJECT_KIND_MEMORY_NAMESPACE\x10\x03\x12$\n INSPECTION_SUBJECT_KIND_ARTIFACT\x10\x04\x12*\n&INSPECTION_SUBJECT_KIND_ARTIFACT_SPACE\x10\x05\x12"\n\x1eINSPECTION_SUBJECT_KIND_SECRET\x10\x06\x12"\n\x1eINSPECTION_SUBJECT_KIND_POLICY\x10\x07\x12*\n&INSPECTION_SUBJECT_KIND_POLICY_VERSION\x10\x08\x12"\n\x1eINSPECTION_SUBJECT_KIND_TENANT\x10\t\x12$\n INSPECTION_SUBJECT_KIND_TOOL_RUN\x10\n\x12"\n\x1eINSPECTION_SUBJECT_KIND_REVIEW\x10\x0b*\xf3\x01\n\x13InspectionActorKind\x12%\n!INSPECTION_ACTOR_KIND_UNSPECIFIED\x10\x00\x12\x1e\n\x1aINSPECTION_ACTOR_KIND_USER\x10\x01\x12\'\n#INSPECTION_ACTOR_KIND_AGENT_PROCESS\x10\x02\x12 \n\x1cINSPECTION_ACTOR_KIND_SYSTEM\x10\x03\x12$\n INSPECTION_ACTOR_KIND_API_CALLER\x10\x04\x12$\n INSPECTION_ACTOR_KIND_SUPERVISOR\x10\x05\x42\xb3\x01\n\x13\x63om.weaveapi.atc.v1B\nEventProtoP\x01Z2github.com/weave-labs/weave-go/weaveapi/atc/v1;atc\xa2\x02\x03WAX\xaa\x02\x0fWeaveapi.Atc.V1\xca\x02\x0fWeaveapi\\Atc\\V1\xe2\x02\x1bWeaveapi\\Atc\\V1\\GPBMetadata\xea\x02\x11Weaveapi::Atc::V1b\x08\x65\x64itionsp\xe8\x07'
|
|
24
|
+
)
|
|
25
|
+
|
|
26
|
+
_globals = globals()
|
|
27
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
28
|
+
_builder.BuildTopDescriptorsAndMessages(
|
|
29
|
+
DESCRIPTOR, "weaveapi.atc.v1.event_pb2", _globals
|
|
30
|
+
)
|
|
31
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
32
|
+
_globals["DESCRIPTOR"]._loaded_options = None
|
|
33
|
+
_globals[
|
|
34
|
+
"DESCRIPTOR"
|
|
35
|
+
]._serialized_options = b"\n\023com.weaveapi.atc.v1B\nEventProtoP\001Z2github.com/weave-labs/weave-go/weaveapi/atc/v1;atc\242\002\003WAX\252\002\017Weaveapi.Atc.V1\312\002\017Weaveapi\\Atc\\V1\342\002\033Weaveapi\\Atc\\V1\\GPBMetadata\352\002\021Weaveapi::Atc::V1"
|
|
36
|
+
_globals["_EVENT"].fields_by_name["occurred_at"]._loaded_options = None
|
|
37
|
+
_globals["_EVENT"].fields_by_name["occurred_at"]._serialized_options = b"(\001"
|
|
38
|
+
_globals["_INSPECTIONEVENT"].fields_by_name["subject"]._loaded_options = None
|
|
39
|
+
_globals["_INSPECTIONEVENT"].fields_by_name[
|
|
40
|
+
"subject"
|
|
41
|
+
]._serialized_options = b"(\001"
|
|
42
|
+
_globals["_INSPECTIONEVENT"].fields_by_name["actor"]._loaded_options = None
|
|
43
|
+
_globals["_INSPECTIONEVENT"].fields_by_name["actor"]._serialized_options = b"(\001"
|
|
44
|
+
_globals["_INSPECTIONEVENT"].fields_by_name["occurred_at"]._loaded_options = None
|
|
45
|
+
_globals["_INSPECTIONEVENT"].fields_by_name[
|
|
46
|
+
"occurred_at"
|
|
47
|
+
]._serialized_options = b"(\001"
|
|
48
|
+
_globals["_INSPECTIONEVENT"].fields_by_name["expires_at"]._loaded_options = None
|
|
49
|
+
_globals["_INSPECTIONEVENT"].fields_by_name[
|
|
50
|
+
"expires_at"
|
|
51
|
+
]._serialized_options = b"(\001"
|
|
52
|
+
_globals["_INSPECTIONCATEGORY"]._serialized_start = 1336
|
|
53
|
+
_globals["_INSPECTIONCATEGORY"]._serialized_end = 1618
|
|
54
|
+
_globals["_INSPECTIONACTION"]._serialized_start = 1621
|
|
55
|
+
_globals["_INSPECTIONACTION"]._serialized_end = 1912
|
|
56
|
+
_globals["_INSPECTIONOUTCOME"]._serialized_start = 1915
|
|
57
|
+
_globals["_INSPECTIONOUTCOME"]._serialized_end = 2127
|
|
58
|
+
_globals["_INSPECTIONSUBJECTKIND"]._serialized_start = 2130
|
|
59
|
+
_globals["_INSPECTIONSUBJECTKIND"]._serialized_end = 2618
|
|
60
|
+
_globals["_INSPECTIONACTORKIND"]._serialized_start = 2621
|
|
61
|
+
_globals["_INSPECTIONACTORKIND"]._serialized_end = 2864
|
|
62
|
+
_globals["_EVENT"]._serialized_start = 82
|
|
63
|
+
_globals["_EVENT"]._serialized_end = 357
|
|
64
|
+
_globals["_INSPECTIONSUBJECT"]._serialized_start = 359
|
|
65
|
+
_globals["_INSPECTIONSUBJECT"]._serialized_end = 454
|
|
66
|
+
_globals["_INSPECTIONACTOR"]._serialized_start = 456
|
|
67
|
+
_globals["_INSPECTIONACTOR"]._serialized_end = 547
|
|
68
|
+
_globals["_INSPECTIONEVENT"]._serialized_start = 550
|
|
69
|
+
_globals["_INSPECTIONEVENT"]._serialized_end = 1333
|
|
70
|
+
# @@protoc_insertion_point(module_scope)
|