acryl-datahub-cloud 0.3.7.7rc6__py3-none-any.whl → 0.3.7.7rc8__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.

Potentially problematic release.


This version of acryl-datahub-cloud might be problematic. Click here for more details.

@@ -365,6 +365,7 @@
365
365
  "Searchable": {
366
366
  "fieldType": "KEYWORD"
367
367
  },
368
+ "deprecated": true,
368
369
  "type": [
369
370
  {
370
371
  "type": "enum",
@@ -383,7 +384,7 @@
383
384
  ],
384
385
  "name": "filterStatus",
385
386
  "default": "DISABLED",
386
- "doc": "The filter status of this structured property - whether it will show up in search filters or not"
387
+ "doc": "The filter status of this structured property - whether it will show up in search filters or not\nDeprecated! Use structuredPropertySettings.showInSearchFilters instead"
387
388
  }
388
389
  ]
389
390
  }
@@ -6,6 +6,7 @@
6
6
  "entityCategory": "core",
7
7
  "entityAspects": [
8
8
  "propertyDefinition",
9
+ "structuredPropertySettings",
9
10
  "institutionalMemory",
10
11
  "status",
11
12
  "share",
@@ -0,0 +1,114 @@
1
+ {
2
+ "type": "record",
3
+ "Aspect": {
4
+ "name": "structuredPropertySettings"
5
+ },
6
+ "name": "StructuredPropertySettings",
7
+ "namespace": "com.linkedin.pegasus2avro.structured",
8
+ "fields": [
9
+ {
10
+ "Searchable": {
11
+ "fieldType": "BOOLEAN"
12
+ },
13
+ "type": "boolean",
14
+ "name": "isHidden",
15
+ "default": false,
16
+ "doc": "Whether or not this asset should be hidden in the main application"
17
+ },
18
+ {
19
+ "Searchable": {
20
+ "fieldType": "BOOLEAN"
21
+ },
22
+ "type": "boolean",
23
+ "name": "showInSearchFilters",
24
+ "default": false,
25
+ "doc": "Whether or not this asset should be displayed as a search filter"
26
+ },
27
+ {
28
+ "Searchable": {
29
+ "fieldType": "BOOLEAN"
30
+ },
31
+ "type": "boolean",
32
+ "name": "showInAssetSummary",
33
+ "default": false,
34
+ "doc": "Whether or not this asset should be displayed in the asset sidebar"
35
+ },
36
+ {
37
+ "Searchable": {
38
+ "fieldType": "BOOLEAN"
39
+ },
40
+ "type": "boolean",
41
+ "name": "showAsAssetBadge",
42
+ "default": false,
43
+ "doc": "Whether or not this asset should be displayed as an asset badge on other\nasset's headers"
44
+ },
45
+ {
46
+ "Searchable": {
47
+ "fieldType": "BOOLEAN"
48
+ },
49
+ "type": "boolean",
50
+ "name": "showInColumnsTable",
51
+ "default": false,
52
+ "doc": "Whether or not this asset should be displayed as a column in the schema field table\nin a Dataset's \"Columns\" tab."
53
+ },
54
+ {
55
+ "Searchable": {
56
+ "/time": {
57
+ "fieldName": "lastModifiedSettings",
58
+ "fieldType": "DATETIME"
59
+ }
60
+ },
61
+ "type": [
62
+ "null",
63
+ {
64
+ "type": "record",
65
+ "name": "AuditStamp",
66
+ "namespace": "com.linkedin.pegasus2avro.common",
67
+ "fields": [
68
+ {
69
+ "type": "long",
70
+ "name": "time",
71
+ "doc": "When did the resource/association/sub-resource move into the specific lifecycle stage represented by this AuditEvent."
72
+ },
73
+ {
74
+ "java": {
75
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
76
+ },
77
+ "type": "string",
78
+ "name": "actor",
79
+ "doc": "The entity (e.g. a member URN) which will be credited for moving the resource/association/sub-resource into the specific lifecycle stage. It is also the one used to authorize the change.",
80
+ "Urn": "Urn"
81
+ },
82
+ {
83
+ "java": {
84
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
85
+ },
86
+ "type": [
87
+ "null",
88
+ "string"
89
+ ],
90
+ "name": "impersonator",
91
+ "default": null,
92
+ "doc": "The entity (e.g. a service URN) which performs the change on behalf of the Actor and must be authorized to act as the Actor.",
93
+ "Urn": "Urn"
94
+ },
95
+ {
96
+ "type": [
97
+ "null",
98
+ "string"
99
+ ],
100
+ "name": "message",
101
+ "default": null,
102
+ "doc": "Additional context around how DataHub was informed of the particular change. For example: was the change created by an automated process, or manually."
103
+ }
104
+ ],
105
+ "doc": "Data captured on a resource/association/sub-resource level giving insight into when that resource/association/sub-resource moved into a particular lifecycle stage, and who acted to move it into that specific lifecycle stage."
106
+ }
107
+ ],
108
+ "name": "lastModified",
109
+ "default": null,
110
+ "doc": "Last Modified Audit stamp"
111
+ }
112
+ ],
113
+ "doc": "Settings specific to a structured property entity"
114
+ }
@@ -1,80 +1,80 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: acryl-datahub-cloud
3
- Version: 0.3.7.7rc6
3
+ Version: 0.3.7.7rc8
4
4
  Requires-Dist: avro-gen3==0.7.16
5
5
  Requires-Dist: acryl-datahub
6
6
  Provides-Extra: datahub-lineage-features
7
- Requires-Dist: duckdb; extra == "datahub-lineage-features"
7
+ Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
8
8
  Requires-Dist: pandas; extra == "datahub-lineage-features"
9
9
  Requires-Dist: pyarrow; extra == "datahub-lineage-features"
10
+ Requires-Dist: duckdb; extra == "datahub-lineage-features"
10
11
  Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
11
- Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
12
12
  Provides-Extra: datahub-reporting-forms
13
- Requires-Dist: duckdb; extra == "datahub-reporting-forms"
14
13
  Requires-Dist: pandas; extra == "datahub-reporting-forms"
15
- Requires-Dist: boto3; extra == "datahub-reporting-forms"
16
14
  Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
15
+ Requires-Dist: duckdb; extra == "datahub-reporting-forms"
16
+ Requires-Dist: boto3; extra == "datahub-reporting-forms"
17
17
  Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
18
18
  Provides-Extra: datahub-reporting-extract-graph
19
- Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
19
+ Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
20
20
  Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
21
- Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
22
21
  Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
22
+ Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
23
+ Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
23
24
  Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
24
- Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
25
25
  Provides-Extra: datahub-reporting-extract-sql
26
- Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
27
26
  Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
28
- Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
29
27
  Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
28
+ Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
29
+ Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
30
30
  Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
31
31
  Provides-Extra: datahub-usage-feature-reporting
32
32
  Requires-Dist: pandas; extra == "datahub-usage-feature-reporting"
33
- Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-feature-reporting"
33
+ Requires-Dist: pyarrow; extra == "datahub-usage-feature-reporting"
34
34
  Requires-Dist: boto3; extra == "datahub-usage-feature-reporting"
35
35
  Requires-Dist: numpy<2; extra == "datahub-usage-feature-reporting"
36
- Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-feature-reporting"
37
- Requires-Dist: polars<=1.16.0; extra == "datahub-usage-feature-reporting"
38
36
  Requires-Dist: pydantic<2; extra == "datahub-usage-feature-reporting"
39
- Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-feature-reporting"
40
- Requires-Dist: duckdb; extra == "datahub-usage-feature-reporting"
41
- Requires-Dist: pyarrow; extra == "datahub-usage-feature-reporting"
37
+ Requires-Dist: polars<=1.16.0; extra == "datahub-usage-feature-reporting"
42
38
  Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-feature-reporting"
39
+ Requires-Dist: duckdb; extra == "datahub-usage-feature-reporting"
40
+ Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-feature-reporting"
41
+ Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-feature-reporting"
42
+ Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-feature-reporting"
43
43
  Provides-Extra: acryl-cs-issues
44
- Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
45
44
  Requires-Dist: zenpy; extra == "acryl-cs-issues"
46
- Requires-Dist: openai; extra == "acryl-cs-issues"
47
45
  Requires-Dist: jinja2; extra == "acryl-cs-issues"
46
+ Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
47
+ Requires-Dist: openai; extra == "acryl-cs-issues"
48
48
  Provides-Extra: all
49
- Requires-Dist: slack-sdk; extra == "all"
50
49
  Requires-Dist: pandas; extra == "all"
51
- Requires-Dist: openai; extra == "all"
52
- Requires-Dist: elasticsearch==7.13.4; extra == "all"
53
- Requires-Dist: jinja2; extra == "all"
50
+ Requires-Dist: pyarrow; extra == "all"
54
51
  Requires-Dist: boto3; extra == "all"
55
52
  Requires-Dist: numpy<2; extra == "all"
56
- Requires-Dist: scipy<=1.14.1; extra == "all"
57
- Requires-Dist: polars<=1.16.0; extra == "all"
58
53
  Requires-Dist: pydantic<2; extra == "all"
59
- Requires-Dist: pyarrow<=18.0.0; extra == "all"
60
- Requires-Dist: duckdb; extra == "all"
54
+ Requires-Dist: polars<=1.16.0; extra == "all"
61
55
  Requires-Dist: zenpy; extra == "all"
62
- Requires-Dist: pyarrow; extra == "all"
56
+ Requires-Dist: slack-sdk; extra == "all"
57
+ Requires-Dist: openai; extra == "all"
63
58
  Requires-Dist: opensearch-py==2.4.2; extra == "all"
59
+ Requires-Dist: jinja2; extra == "all"
60
+ Requires-Dist: duckdb; extra == "all"
61
+ Requires-Dist: scipy<=1.14.1; extra == "all"
62
+ Requires-Dist: elasticsearch==7.13.4; extra == "all"
63
+ Requires-Dist: pyarrow<=18.0.0; extra == "all"
64
64
  Provides-Extra: dev
65
- Requires-Dist: slack-sdk; extra == "dev"
66
65
  Requires-Dist: pandas; extra == "dev"
67
- Requires-Dist: openai; extra == "dev"
68
- Requires-Dist: elasticsearch==7.13.4; extra == "dev"
69
- Requires-Dist: jinja2; extra == "dev"
66
+ Requires-Dist: pyarrow; extra == "dev"
70
67
  Requires-Dist: boto3; extra == "dev"
71
68
  Requires-Dist: numpy<2; extra == "dev"
72
- Requires-Dist: scipy<=1.14.1; extra == "dev"
73
- Requires-Dist: polars<=1.16.0; extra == "dev"
74
69
  Requires-Dist: pydantic<2; extra == "dev"
75
- Requires-Dist: pyarrow<=18.0.0; extra == "dev"
76
- Requires-Dist: duckdb; extra == "dev"
70
+ Requires-Dist: polars<=1.16.0; extra == "dev"
77
71
  Requires-Dist: zenpy; extra == "dev"
78
- Requires-Dist: acryl-datahub[dev]; extra == "dev"
79
- Requires-Dist: pyarrow; extra == "dev"
72
+ Requires-Dist: slack-sdk; extra == "dev"
73
+ Requires-Dist: openai; extra == "dev"
80
74
  Requires-Dist: opensearch-py==2.4.2; extra == "dev"
75
+ Requires-Dist: jinja2; extra == "dev"
76
+ Requires-Dist: duckdb; extra == "dev"
77
+ Requires-Dist: scipy<=1.14.1; extra == "dev"
78
+ Requires-Dist: acryl-datahub[dev]; extra == "dev"
79
+ Requires-Dist: elasticsearch==7.13.4; extra == "dev"
80
+ Requires-Dist: pyarrow<=18.0.0; extra == "dev"
@@ -1,5 +1,5 @@
1
1
  acryl_datahub_cloud/__init__.py,sha256=axrMXkn0RW80YmuZgwUP_YQImcv6L28duZLWnW-gaNM,521
2
- acryl_datahub_cloud/_codegen_config.json,sha256=F69CSKR1dKJUUb0n95zK5uvlt9nvyPFbxC_PWzZQSig,557
2
+ acryl_datahub_cloud/_codegen_config.json,sha256=pgCX4iUkwp9eh47t-ZUT2esMECBcRSrNYENwWTC3hEI,557
3
3
  acryl_datahub_cloud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  acryl_datahub_cloud/acryl_cs_issues/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  acryl_datahub_cloud/acryl_cs_issues/acryl_customer.py,sha256=uFjR2SqGS34y09-S9WqOqNGY8nOq6ptGf4y9781i8Z4,25230
@@ -16,18 +16,19 @@ acryl_datahub_cloud/datahub_reporting/extract_sql.py,sha256=5CakspY_EyDJCjbDH3P3
16
16
  acryl_datahub_cloud/datahub_reporting/forms.py,sha256=rOw3aZZ8XRb4JPrfMte8-Xq34snis6bp0gpx7Hf7uw4,5940
17
17
  acryl_datahub_cloud/datahub_reporting/forms_config.py,sha256=3uzFKriUoWBNXLVMaEtnx74fLuujV59kDQwi1HSxFNI,2102
18
18
  acryl_datahub_cloud/datahub_usage_reporting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
+ acryl_datahub_cloud/datahub_usage_reporting/query_builder.py,sha256=qOVyjPv-LlszFGjBvCZgMi9gcb1fT72uh_p64JRnWBk,5280
19
20
  acryl_datahub_cloud/datahub_usage_reporting/usage_feature_patch_builder.py,sha256=gR9neaHfi0JMQmAKMlgJCEuZIni7cdPFApGOKa5Pn4Y,14406
20
- acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py,sha256=3glHpWFmkDGPUnCUvlWUPsaPiO4SExnJFOut6jYTiW0,65332
21
+ acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py,sha256=oV9z-XF_Euj7lzoHUPeEJz6TVVohnsluc7jc4cqPsro,63014
21
22
  acryl_datahub_cloud/elasticsearch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
23
  acryl_datahub_cloud/elasticsearch/config.py,sha256=6QNBOmoQZu1cJrDIBZyvZgdQt0QLfP82hdQkPtP-4HE,1220
23
24
  acryl_datahub_cloud/elasticsearch/graph_service.py,sha256=K4ykcSMxlrhlDrchhte3vEb1mcw8QkOmdIFSVSX4OVU,2788
24
25
  acryl_datahub_cloud/lineage_features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
26
  acryl_datahub_cloud/lineage_features/source.py,sha256=DS9VgFXtGDRP98dHBE4KVoB2MDFE-4FSS5RlBuYZqRY,5519
26
27
  acryl_datahub_cloud/metadata/__init__.py,sha256=AjhXPjI6cnpdcrBRrE5gOWo15vv2TTl2ctU4UAnUN7A,238
27
- acryl_datahub_cloud/metadata/schema.avsc,sha256=xpxdbHu5ZYS36v1xZo0TPUp6YWrNVsHORfdFoPAu9aI,1070142
28
- acryl_datahub_cloud/metadata/schema_classes.py,sha256=ij01j8rZNyRZEECPw7OZPHoercAdW726Fly3iQxdsaE,1350416
28
+ acryl_datahub_cloud/metadata/schema.avsc,sha256=p-1rR01mcoHSaunjuI0eBNbsrqCEnBhqq_PF2qQB1ww,1074413
29
+ acryl_datahub_cloud/metadata/schema_classes.py,sha256=StVjs4lqb9KTeA99gRIhneAzOvqBDjcLnQEZHE2DHwI,1355405
29
30
  acryl_datahub_cloud/metadata/_urns/__init__.py,sha256=cOF3GHMDgPhmbLKbN02NPpuLGHSu0qNgQyBRv08eqF0,243
30
- acryl_datahub_cloud/metadata/_urns/urn_defs.py,sha256=42Qj-MV_bgobj55sId7kZbMwd2bto8HEZ6mrOxEZmLY,119444
31
+ acryl_datahub_cloud/metadata/_urns/urn_defs.py,sha256=44Y13gEneLA5tL6mt3IJo-9-8AN2URKXM51zmzesti8,119444
31
32
  acryl_datahub_cloud/metadata/com/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
32
33
  acryl_datahub_cloud/metadata/com/linkedin/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
33
34
  acryl_datahub_cloud/metadata/com/linkedin/events/__init__.py,sha256=s_dR0plZF-rOxxIbE8ojekJqwiHzl2WYR-Z3kW6kKS0,298
@@ -106,7 +107,7 @@ acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/secret/__init__.py,sha256
106
107
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/__init__.py,sha256=qA_voeSf0fRLEKPqaRBbxCKr55p663UNGOfxpPZh7XQ,427
107
108
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/global/__init__.py,sha256=dmZ-cnA9YrHcbYwKIQHdRzQ0zcFyXzf9e6Uqa4Qsz8E,1497
108
109
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/step/__init__.py,sha256=HLNNbqBlyhcg09eXWx_AMD_JoOtBPYEi2kv12PE0R9E,329
109
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/structured/__init__.py,sha256=AmTAUkUmtOVxKc-0Oi2mx0Zr1zo_xoM7NJkyp1OXDr0,1025
110
+ acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/structured/__init__.py,sha256=T4RWiXIVKgPxdmrbciYL8w4kQdzvgqwcmnREeY5-aOo,1150
110
111
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/subscription/__init__.py,sha256=JRQ9eerz1qiTd0qe7wc1AUUgeMnnDK31ay39t-qTjiQ,852
111
112
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/tag/__init__.py,sha256=Odb4mzloKJIlpoFHODEIxt_OIgFNrZExcyQtvXxjOFQ,290
112
113
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/telemetry/__init__.py,sha256=N4CJwzAqTrRoCQ2Aoa_e8cUZI_fzn9Zdo2okvO-_nWE,302
@@ -354,8 +355,9 @@ acryl_datahub_cloud/metadata/schemas/SourceCode.avsc,sha256=tUgo2rczO5x1fxw3fYNW
354
355
  acryl_datahub_cloud/metadata/schemas/Status.avsc,sha256=rPZSXSJdwnNywqNx2qll8cdt54aYgI-YUbRr3GK7h78,522
355
356
  acryl_datahub_cloud/metadata/schemas/StorageFeatures.avsc,sha256=F5LFc4P05YrKReB8ZsxJNXSLg2FJaE7vk63NM4GN0dE,1752
356
357
  acryl_datahub_cloud/metadata/schemas/StructuredProperties.avsc,sha256=N0NNDrkqbIgEHrb5uz1ynwZh3mb_ICVK7tDcnBLMfjI,4032
357
- acryl_datahub_cloud/metadata/schemas/StructuredPropertyDefinition.avsc,sha256=xetghmPnH684RcG6n1fpr-7okLbLfRwzRIBumqz9Miw,12197
358
- acryl_datahub_cloud/metadata/schemas/StructuredPropertyKey.avsc,sha256=TOVMmlEwM3uMqmQNofHlmyDFJupF5wbj8aDuYGCpSUQ,613
358
+ acryl_datahub_cloud/metadata/schemas/StructuredPropertyDefinition.avsc,sha256=yLmH1SNHL4c7J6aIA5GBrc1rI3aAyWPlT47yYFnZZYk,12295
359
+ acryl_datahub_cloud/metadata/schemas/StructuredPropertyKey.avsc,sha256=RpAH8fW-64C6yVU8_D1h5vYeg8fNp5t2S6VLpOEcMZM,649
360
+ acryl_datahub_cloud/metadata/schemas/StructuredPropertySettings.avsc,sha256=EDNlXfT1TqogfulCanIc-nuYO9ZxRFOGzD9tl3ZJdB8,3732
359
361
  acryl_datahub_cloud/metadata/schemas/SubTypes.avsc,sha256=bhXbzK020zDyQno97Xp05vmoMeZ82IGu2jz7pWDo3RQ,655
360
362
  acryl_datahub_cloud/metadata/schemas/SubscriptionInfo.avsc,sha256=ZTPsp2moR8t9BEzG4tKLcflAsAlY_Yeve-81k7aZ6bY,13143
361
363
  acryl_datahub_cloud/metadata/schemas/SubscriptionKey.avsc,sha256=ChdTAOA1c6Ojx3HqNPDfQaupwezhp7SLUOmgIaeSD2Q,486
@@ -373,8 +375,8 @@ acryl_datahub_cloud/metadata/schemas/UsageFeatures.avsc,sha256=B7mqUWVwduvWSP9zp
373
375
  acryl_datahub_cloud/metadata/schemas/VersionInfo.avsc,sha256=9gMcZ8tjuhgcZiq2gOAp_EOV9q9jvuOgfph6m6v_X7c,1189
374
376
  acryl_datahub_cloud/metadata/schemas/ViewProperties.avsc,sha256=3HhcbH5493dJUnEUtFMYMVfbYQ52aDedm5L4j77Nym4,1032
375
377
  acryl_datahub_cloud/metadata/schemas/__init__.py,sha256=uvLNC3VyCkWA_v8e9FdA1leFf46NFKDD0AajCfihepI,581
376
- acryl_datahub_cloud-0.3.7.7rc6.dist-info/METADATA,sha256=AbSaxySv9IBleEcVMGGha4Jhbm6EVU57llc8bol_RQM,4067
377
- acryl_datahub_cloud-0.3.7.7rc6.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
378
- acryl_datahub_cloud-0.3.7.7rc6.dist-info/entry_points.txt,sha256=pnIeD0q0iBd34tcq2N2vtgVOlos5oGp-bQ8bTvfNUd8,879
379
- acryl_datahub_cloud-0.3.7.7rc6.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
380
- acryl_datahub_cloud-0.3.7.7rc6.dist-info/RECORD,,
378
+ acryl_datahub_cloud-0.3.7.7rc8.dist-info/METADATA,sha256=NUZa_3GK1abEFCLd8FCdlw8POwRqQntKy9p5Pzgaq0Y,4067
379
+ acryl_datahub_cloud-0.3.7.7rc8.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
380
+ acryl_datahub_cloud-0.3.7.7rc8.dist-info/entry_points.txt,sha256=pnIeD0q0iBd34tcq2N2vtgVOlos5oGp-bQ8bTvfNUd8,879
381
+ acryl_datahub_cloud-0.3.7.7rc8.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
382
+ acryl_datahub_cloud-0.3.7.7rc8.dist-info/RECORD,,