@pratik7368patil/anchor-core 0.1.33 → 0.1.34
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.
- package/dist/index.js +29 -7
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/db/schema.sql +0 -2
package/package.json
CHANGED
package/src/db/schema.sql
CHANGED
|
@@ -449,8 +449,6 @@ CREATE INDEX IF NOT EXISTS idx_org_repositories_org ON org_repositories(org);
|
|
|
449
449
|
CREATE INDEX IF NOT EXISTS idx_org_repo_state_org ON org_repo_state(org);
|
|
450
450
|
CREATE INDEX IF NOT EXISTS idx_org_edges_source ON org_cross_repo_edges(org, source_repo);
|
|
451
451
|
CREATE INDEX IF NOT EXISTS idx_org_edges_target ON org_cross_repo_edges(org, target_repo);
|
|
452
|
-
CREATE INDEX IF NOT EXISTS idx_org_edges_layer ON org_cross_repo_edges(org, layer, confidence);
|
|
453
|
-
CREATE INDEX IF NOT EXISTS idx_org_edges_repo_pair ON org_cross_repo_edges(org, layer, source_repo, target_repo, relationship);
|
|
454
452
|
CREATE INDEX IF NOT EXISTS idx_org_consumers_provider ON org_api_consumers(org, provider_repo);
|
|
455
453
|
CREATE INDEX IF NOT EXISTS idx_org_consumers_consumer ON org_api_consumers(org, consumer_repo);
|
|
456
454
|
CREATE INDEX IF NOT EXISTS idx_org_consumers_contract ON org_api_consumers(org, contract);
|