snowflake-code-unit-registry 0.7.2__tar.gz → 0.7.6__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.
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/Cargo.lock +44 -39
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/Cargo.toml +1 -1
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/PKG-INFO +1 -1
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-core/examples/code-unit.example.json +2 -2
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-core/schemas/code-unit.schema.json +4 -4
- snowflake_code_unit_registry-0.7.6/crates/scai-state-core/src/canonical_name.rs +457 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-core/src/error.rs +32 -2
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-core/src/generated/query_reference.rs +1 -1
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-core/src/lib.rs +1 -0
- snowflake_code_unit_registry-0.7.6/crates/scai-state-core/src/migration/mod.rs +626 -0
- snowflake_code_unit_registry-0.7.6/crates/scai-state-core/src/migration/versions/mod.rs +47 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-core/src/registry/README.md +15 -2
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-core/src/registry/tests.rs +366 -250
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-core/src/registry.rs +304 -123
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-python/tests/test_crud.py +2 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-python/tests/test_serialization.py +3 -2
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/pyproject.toml +1 -1
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/python/snowflake_code_unit_registry/__init__.py +2 -1
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/python/snowflake_code_unit_registry/types.py +17 -9
- snowflake_code_unit_registry-0.7.2/crates/scai-state-core/src/migration/mod.rs +0 -390
- snowflake_code_unit_registry-0.7.2/crates/scai-state-core/src/migration/versions/mod.rs +0 -32
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/README.md +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-error-derive/Cargo.toml +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-error-derive/src/lib.rs +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-error-derive/tests/derive_integration.rs +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-core/Cargo.toml +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-core/build.rs +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-core/schemas/history/README.md +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-core/schemas/query-reference.rs.tmpl +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-core/schemas/query-reference.tmpl +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-core/src/checksum.rs +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-core/src/error_trace.rs +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-core/src/filter.rs +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-core/src/generated/file_path_fields.rs +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-core/src/generated/mod.rs +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-core/src/generated/updated_at_paths.rs +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-core/src/identity.rs +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-core/src/registry/graph.rs +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-core/src/registry/in_memory.rs +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-core/src/registry/loader.rs +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-core/src/registry/paths.rs +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-core/src/registry/query.rs +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-core/src/registry/test_helpers.rs +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-core/src/validation.rs +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-python/Cargo.toml +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-python/README.md +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-python/src/lib.rs +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-python/tests/conftest.py +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-python/tests/test_batch.py +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-python/tests/test_checksum.py +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-python/tests/test_errors.py +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-python/tests/test_migration.py +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-python/tests/test_query.py +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-python/tests/test_refresh.py +0 -0
- {snowflake_code_unit_registry-0.7.2 → snowflake_code_unit_registry-0.7.6}/crates/scai-state-python/tests/test_validation.py +0 -0
|
@@ -112,9 +112,9 @@ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
|
112
112
|
|
|
113
113
|
[[package]]
|
|
114
114
|
name = "bitflags"
|
|
115
|
-
version = "2.11.
|
|
115
|
+
version = "2.11.1"
|
|
116
116
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
117
|
-
checksum = "
|
|
117
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
118
118
|
|
|
119
119
|
[[package]]
|
|
120
120
|
name = "block-buffer"
|
|
@@ -161,9 +161,9 @@ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
|
161
161
|
|
|
162
162
|
[[package]]
|
|
163
163
|
name = "cc"
|
|
164
|
-
version = "1.2.
|
|
164
|
+
version = "1.2.60"
|
|
165
165
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
-
checksum = "
|
|
166
|
+
checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
|
|
167
167
|
dependencies = [
|
|
168
168
|
"find-msvc-tools",
|
|
169
169
|
"jobserver",
|
|
@@ -778,6 +778,12 @@ dependencies = [
|
|
|
778
778
|
"foldhash 0.2.0",
|
|
779
779
|
]
|
|
780
780
|
|
|
781
|
+
[[package]]
|
|
782
|
+
name = "hashbrown"
|
|
783
|
+
version = "0.17.0"
|
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
+
checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
|
|
786
|
+
|
|
781
787
|
[[package]]
|
|
782
788
|
name = "heck"
|
|
783
789
|
version = "0.5.0"
|
|
@@ -855,15 +861,14 @@ dependencies = [
|
|
|
855
861
|
|
|
856
862
|
[[package]]
|
|
857
863
|
name = "hyper-rustls"
|
|
858
|
-
version = "0.27.
|
|
864
|
+
version = "0.27.9"
|
|
859
865
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
860
|
-
checksum = "
|
|
866
|
+
checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
|
|
861
867
|
dependencies = [
|
|
862
868
|
"http",
|
|
863
869
|
"hyper",
|
|
864
870
|
"hyper-util",
|
|
865
871
|
"rustls",
|
|
866
|
-
"rustls-pki-types",
|
|
867
872
|
"tokio",
|
|
868
873
|
"tokio-rustls",
|
|
869
874
|
"tower-service",
|
|
@@ -1069,12 +1074,12 @@ dependencies = [
|
|
|
1069
1074
|
|
|
1070
1075
|
[[package]]
|
|
1071
1076
|
name = "indexmap"
|
|
1072
|
-
version = "2.
|
|
1077
|
+
version = "2.14.0"
|
|
1073
1078
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1074
|
-
checksum = "
|
|
1079
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
1075
1080
|
dependencies = [
|
|
1076
1081
|
"equivalent",
|
|
1077
|
-
"hashbrown 0.
|
|
1082
|
+
"hashbrown 0.17.0",
|
|
1078
1083
|
"serde",
|
|
1079
1084
|
"serde_core",
|
|
1080
1085
|
]
|
|
@@ -1204,9 +1209,9 @@ dependencies = [
|
|
|
1204
1209
|
|
|
1205
1210
|
[[package]]
|
|
1206
1211
|
name = "js-sys"
|
|
1207
|
-
version = "0.3.
|
|
1212
|
+
version = "0.3.95"
|
|
1208
1213
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
-
checksum = "
|
|
1214
|
+
checksum = "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca"
|
|
1210
1215
|
dependencies = [
|
|
1211
1216
|
"cfg-if",
|
|
1212
1217
|
"futures-util",
|
|
@@ -1257,9 +1262,9 @@ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
|
1257
1262
|
|
|
1258
1263
|
[[package]]
|
|
1259
1264
|
name = "libc"
|
|
1260
|
-
version = "0.2.
|
|
1265
|
+
version = "0.2.185"
|
|
1261
1266
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1262
|
-
checksum = "
|
|
1267
|
+
checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f"
|
|
1263
1268
|
|
|
1264
1269
|
[[package]]
|
|
1265
1270
|
name = "libloading"
|
|
@@ -1801,9 +1806,9 @@ dependencies = [
|
|
|
1801
1806
|
|
|
1802
1807
|
[[package]]
|
|
1803
1808
|
name = "rayon"
|
|
1804
|
-
version = "1.
|
|
1809
|
+
version = "1.12.0"
|
|
1805
1810
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1806
|
-
checksum = "
|
|
1811
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
1807
1812
|
dependencies = [
|
|
1808
1813
|
"either",
|
|
1809
1814
|
"rayon-core",
|
|
@@ -2006,9 +2011,9 @@ dependencies = [
|
|
|
2006
2011
|
|
|
2007
2012
|
[[package]]
|
|
2008
2013
|
name = "rustls"
|
|
2009
|
-
version = "0.23.
|
|
2014
|
+
version = "0.23.38"
|
|
2010
2015
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2011
|
-
checksum = "
|
|
2016
|
+
checksum = "69f9466fb2c14ea04357e91413efb882e2a6d4a406e625449bc0a5d360d53a21"
|
|
2012
2017
|
dependencies = [
|
|
2013
2018
|
"aws-lc-rs",
|
|
2014
2019
|
"once_cell",
|
|
@@ -2068,9 +2073,9 @@ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
|
|
|
2068
2073
|
|
|
2069
2074
|
[[package]]
|
|
2070
2075
|
name = "rustls-webpki"
|
|
2071
|
-
version = "0.103.
|
|
2076
|
+
version = "0.103.12"
|
|
2072
2077
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2073
|
-
checksum = "
|
|
2078
|
+
checksum = "8279bb85272c9f10811ae6a6c547ff594d6a7f3c6c6b02ee9726d1d0dcfcdd06"
|
|
2074
2079
|
dependencies = [
|
|
2075
2080
|
"aws-lc-rs",
|
|
2076
2081
|
"ring",
|
|
@@ -2095,7 +2100,7 @@ dependencies = [
|
|
|
2095
2100
|
|
|
2096
2101
|
[[package]]
|
|
2097
2102
|
name = "scai-error-derive"
|
|
2098
|
-
version = "0.7.
|
|
2103
|
+
version = "0.7.6"
|
|
2099
2104
|
dependencies = [
|
|
2100
2105
|
"err_code",
|
|
2101
2106
|
"heck",
|
|
@@ -2109,7 +2114,7 @@ dependencies = [
|
|
|
2109
2114
|
|
|
2110
2115
|
[[package]]
|
|
2111
2116
|
name = "scai-state-core"
|
|
2112
|
-
version = "0.7.
|
|
2117
|
+
version = "0.7.6"
|
|
2113
2118
|
dependencies = [
|
|
2114
2119
|
"chrono",
|
|
2115
2120
|
"err_code",
|
|
@@ -2134,7 +2139,7 @@ dependencies = [
|
|
|
2134
2139
|
|
|
2135
2140
|
[[package]]
|
|
2136
2141
|
name = "scai-state-csharp"
|
|
2137
|
-
version = "0.7.
|
|
2142
|
+
version = "0.7.6"
|
|
2138
2143
|
dependencies = [
|
|
2139
2144
|
"interoptopus",
|
|
2140
2145
|
"interoptopus_backend_csharp",
|
|
@@ -2145,7 +2150,7 @@ dependencies = [
|
|
|
2145
2150
|
|
|
2146
2151
|
[[package]]
|
|
2147
2152
|
name = "scai-state-node"
|
|
2148
|
-
version = "0.7.
|
|
2153
|
+
version = "0.7.6"
|
|
2149
2154
|
dependencies = [
|
|
2150
2155
|
"napi",
|
|
2151
2156
|
"napi-build",
|
|
@@ -2157,7 +2162,7 @@ dependencies = [
|
|
|
2157
2162
|
|
|
2158
2163
|
[[package]]
|
|
2159
2164
|
name = "scai-state-python"
|
|
2160
|
-
version = "0.7.
|
|
2165
|
+
version = "0.7.6"
|
|
2161
2166
|
dependencies = [
|
|
2162
2167
|
"pyo3",
|
|
2163
2168
|
"pythonize",
|
|
@@ -2578,9 +2583,9 @@ dependencies = [
|
|
|
2578
2583
|
|
|
2579
2584
|
[[package]]
|
|
2580
2585
|
name = "tokio"
|
|
2581
|
-
version = "1.
|
|
2586
|
+
version = "1.52.0"
|
|
2582
2587
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2583
|
-
checksum = "
|
|
2588
|
+
checksum = "a91135f59b1cbf38c91e73cf3386fca9bb77915c45ce2771460c9d92f0f3d776"
|
|
2584
2589
|
dependencies = [
|
|
2585
2590
|
"bytes",
|
|
2586
2591
|
"libc",
|
|
@@ -2868,9 +2873,9 @@ dependencies = [
|
|
|
2868
2873
|
|
|
2869
2874
|
[[package]]
|
|
2870
2875
|
name = "wasm-bindgen"
|
|
2871
|
-
version = "0.2.
|
|
2876
|
+
version = "0.2.118"
|
|
2872
2877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2873
|
-
checksum = "
|
|
2878
|
+
checksum = "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89"
|
|
2874
2879
|
dependencies = [
|
|
2875
2880
|
"cfg-if",
|
|
2876
2881
|
"once_cell",
|
|
@@ -2881,9 +2886,9 @@ dependencies = [
|
|
|
2881
2886
|
|
|
2882
2887
|
[[package]]
|
|
2883
2888
|
name = "wasm-bindgen-futures"
|
|
2884
|
-
version = "0.4.
|
|
2889
|
+
version = "0.4.68"
|
|
2885
2890
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2886
|
-
checksum = "
|
|
2891
|
+
checksum = "f371d383f2fb139252e0bfac3b81b265689bf45b6874af544ffa4c975ac1ebf8"
|
|
2887
2892
|
dependencies = [
|
|
2888
2893
|
"js-sys",
|
|
2889
2894
|
"wasm-bindgen",
|
|
@@ -2891,9 +2896,9 @@ dependencies = [
|
|
|
2891
2896
|
|
|
2892
2897
|
[[package]]
|
|
2893
2898
|
name = "wasm-bindgen-macro"
|
|
2894
|
-
version = "0.2.
|
|
2899
|
+
version = "0.2.118"
|
|
2895
2900
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2896
|
-
checksum = "
|
|
2901
|
+
checksum = "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed"
|
|
2897
2902
|
dependencies = [
|
|
2898
2903
|
"quote",
|
|
2899
2904
|
"wasm-bindgen-macro-support",
|
|
@@ -2901,9 +2906,9 @@ dependencies = [
|
|
|
2901
2906
|
|
|
2902
2907
|
[[package]]
|
|
2903
2908
|
name = "wasm-bindgen-macro-support"
|
|
2904
|
-
version = "0.2.
|
|
2909
|
+
version = "0.2.118"
|
|
2905
2910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2906
|
-
checksum = "
|
|
2911
|
+
checksum = "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904"
|
|
2907
2912
|
dependencies = [
|
|
2908
2913
|
"bumpalo",
|
|
2909
2914
|
"proc-macro2",
|
|
@@ -2914,9 +2919,9 @@ dependencies = [
|
|
|
2914
2919
|
|
|
2915
2920
|
[[package]]
|
|
2916
2921
|
name = "wasm-bindgen-shared"
|
|
2917
|
-
version = "0.2.
|
|
2922
|
+
version = "0.2.118"
|
|
2918
2923
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2919
|
-
checksum = "
|
|
2924
|
+
checksum = "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129"
|
|
2920
2925
|
dependencies = [
|
|
2921
2926
|
"unicode-ident",
|
|
2922
2927
|
]
|
|
@@ -2957,9 +2962,9 @@ dependencies = [
|
|
|
2957
2962
|
|
|
2958
2963
|
[[package]]
|
|
2959
2964
|
name = "web-sys"
|
|
2960
|
-
version = "0.3.
|
|
2965
|
+
version = "0.3.95"
|
|
2961
2966
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2962
|
-
checksum = "
|
|
2967
|
+
checksum = "4f2dfbb17949fa2088e5d39408c48368947b86f7834484e87b73de55bc14d97d"
|
|
2963
2968
|
dependencies = [
|
|
2964
2969
|
"js-sys",
|
|
2965
2970
|
"wasm-bindgen",
|
|
@@ -3,7 +3,7 @@ resolver = "2"
|
|
|
3
3
|
members = ["crates/scai-error-derive", "crates/scai-state-core", "crates/scai-state-python"]
|
|
4
4
|
|
|
5
5
|
[workspace.package]
|
|
6
|
-
version = "0.7.
|
|
6
|
+
version = "0.7.6"
|
|
7
7
|
edition = "2021"
|
|
8
8
|
license = "SEE LICENSE IN LICENSE"
|
|
9
9
|
repository = "https://github.com/snowflake-eng/scai-state"
|
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
"schemaVersion": 1,
|
|
3
3
|
"isMissing": false,
|
|
4
4
|
"inScope": true,
|
|
5
|
-
"containsCommit": true,
|
|
6
5
|
"kind": "databaseObject",
|
|
7
6
|
"id": "a3f1b2c4-5d6e-7f89-0a1b-2c3d4e5f6a7b",
|
|
8
7
|
"updatedAt": "2025-01-15T10:30:00Z",
|
|
@@ -53,7 +52,8 @@
|
|
|
53
52
|
"convertedChecksum": "defa8dbc2f2c5915579ade9fdc6aef24"
|
|
54
53
|
},
|
|
55
54
|
"assessment": {
|
|
56
|
-
"status": "completed"
|
|
55
|
+
"status": "completed",
|
|
56
|
+
"containsCommit": true
|
|
57
57
|
},
|
|
58
58
|
"dataQuality": {
|
|
59
59
|
"status": "completed",
|
|
@@ -58,10 +58,6 @@
|
|
|
58
58
|
"description": "true if CodeUnit is in the migration scope",
|
|
59
59
|
"default": true
|
|
60
60
|
},
|
|
61
|
-
"containsCommit": {
|
|
62
|
-
"type": "boolean",
|
|
63
|
-
"description": "True if the stored procedure contains a commit transaction"
|
|
64
|
-
},
|
|
65
61
|
"kind": {
|
|
66
62
|
"type": "string",
|
|
67
63
|
"title": "Kind",
|
|
@@ -208,6 +204,10 @@
|
|
|
208
204
|
"properties": {
|
|
209
205
|
"status": {
|
|
210
206
|
"$ref": "#/definitions/OperationStatus"
|
|
207
|
+
},
|
|
208
|
+
"containsCommit": {
|
|
209
|
+
"type": "boolean",
|
|
210
|
+
"description": "True if the stored procedure contains a commit transaction"
|
|
211
211
|
}
|
|
212
212
|
}
|
|
213
213
|
}
|