@aventurevc/api-schemas 0.7.272
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/LICENSE +201 -0
- package/README.md +5 -0
- package/dist/address/address.d.ts +95 -0
- package/dist/address/address.js +83 -0
- package/dist/address/association-role.d.ts +49 -0
- package/dist/address/association-role.js +45 -0
- package/dist/address/association.d.ts +58 -0
- package/dist/address/association.js +58 -0
- package/dist/address/city.d.ts +48 -0
- package/dist/address/city.js +49 -0
- package/dist/address/country.d.ts +52 -0
- package/dist/address/country.js +55 -0
- package/dist/address/state.d.ts +49 -0
- package/dist/address/state.js +51 -0
- package/dist/agent/help-question.d.ts +23 -0
- package/dist/agent/help-question.js +21 -0
- package/dist/agent/help.d.ts +34 -0
- package/dist/agent/help.js +24 -0
- package/dist/agent/instruction-detail.d.ts +27 -0
- package/dist/agent/instruction-detail.js +20 -0
- package/dist/agent/instruction-kind.d.ts +18 -0
- package/dist/agent/instruction-kind.js +14 -0
- package/dist/agent/instruction-manifest.d.ts +37 -0
- package/dist/agent/instruction-manifest.js +21 -0
- package/dist/agent/instruction-pointer.d.ts +19 -0
- package/dist/agent/instruction-pointer.js +19 -0
- package/dist/agent/instruction.d.ts +25 -0
- package/dist/agent/instruction.js +23 -0
- package/dist/auth/permission-grant.d.ts +18 -0
- package/dist/auth/permission-grant.js +16 -0
- package/dist/blog/post-type.d.ts +26 -0
- package/dist/blog/post-type.js +26 -0
- package/dist/blog/post.d.ts +50 -0
- package/dist/blog/post.js +48 -0
- package/dist/chart/bucket.d.ts +22 -0
- package/dist/chart/bucket.js +23 -0
- package/dist/classification/catalog-bucket.d.ts +64 -0
- package/dist/classification/catalog-bucket.js +34 -0
- package/dist/classification/catalog-category.d.ts +63 -0
- package/dist/classification/catalog-category.js +32 -0
- package/dist/classification/catalog.d.ts +137 -0
- package/dist/classification/catalog.js +23 -0
- package/dist/classification/classification.d.ts +41 -0
- package/dist/classification/classification.js +40 -0
- package/dist/classification/inactive-tag-details.d.ts +23 -0
- package/dist/classification/inactive-tag-details.js +22 -0
- package/dist/cli/authorization-client-platform.d.ts +20 -0
- package/dist/cli/authorization-client-platform.js +15 -0
- package/dist/cli/authorization-delivery.d.ts +21 -0
- package/dist/cli/authorization-delivery.js +25 -0
- package/dist/cli/authorization-encryption-algorithm.d.ts +17 -0
- package/dist/cli/authorization-encryption-algorithm.js +15 -0
- package/dist/cli/authorization-mutation.d.ts +27 -0
- package/dist/cli/authorization-mutation.js +29 -0
- package/dist/cli/authorization-poll.d.ts +51 -0
- package/dist/cli/authorization-poll.js +25 -0
- package/dist/cli/authorization-start.d.ts +22 -0
- package/dist/cli/authorization-start.js +26 -0
- package/dist/cli/authorization-status.d.ts +25 -0
- package/dist/cli/authorization-status.js +25 -0
- package/dist/cli/authorization-terminal-reason.d.ts +28 -0
- package/dist/cli/authorization-terminal-reason.js +28 -0
- package/dist/cli/authorization.d.ts +58 -0
- package/dist/cli/authorization.js +45 -0
- package/dist/client/pagination/page-param.d.ts +43 -0
- package/dist/client/pagination/page-param.js +42 -0
- package/dist/completion/gate-coverage.d.ts +18 -0
- package/dist/completion/gate-coverage.js +14 -0
- package/dist/confidence/confidence.d.ts +27 -0
- package/dist/confidence/confidence.js +23 -0
- package/dist/content/compliance.d.ts +33 -0
- package/dist/content/compliance.js +37 -0
- package/dist/content/content.d.ts +49 -0
- package/dist/content/content.js +51 -0
- package/dist/content/embedding-match.d.ts +62 -0
- package/dist/content/embedding-match.js +62 -0
- package/dist/content/filter.d.ts +35 -0
- package/dist/content/filter.js +27 -0
- package/dist/content/relation.d.ts +22 -0
- package/dist/content/relation.js +19 -0
- package/dist/content/search-interpretation.d.ts +48 -0
- package/dist/content/search-interpretation.js +30 -0
- package/dist/content/search-result.d.ts +94 -0
- package/dist/content/search-result.js +22 -0
- package/dist/content/sort-field.d.ts +25 -0
- package/dist/content/sort-field.js +25 -0
- package/dist/content/source-type.d.ts +50 -0
- package/dist/content/source-type.js +50 -0
- package/dist/content/type.d.ts +28 -0
- package/dist/content/type.js +28 -0
- package/dist/datasource/agent-identity.d.ts +18 -0
- package/dist/datasource/agent-identity.js +21 -0
- package/dist/datasource/data-source-type.d.ts +26 -0
- package/dist/datasource/data-source-type.js +26 -0
- package/dist/datasource/field-provenance.d.ts +110 -0
- package/dist/datasource/field-provenance.js +35 -0
- package/dist/datasource/provenance-actor-type.d.ts +18 -0
- package/dist/datasource/provenance-actor-type.js +15 -0
- package/dist/datasource/provenance-actor.d.ts +27 -0
- package/dist/datasource/provenance-actor.js +22 -0
- package/dist/datasource/provenance-field-change.d.ts +23 -0
- package/dist/datasource/provenance-field-change.js +21 -0
- package/dist/datasource/provenance-operation.d.ts +18 -0
- package/dist/datasource/provenance-operation.js +14 -0
- package/dist/datasource/provenance-source.d.ts +38 -0
- package/dist/datasource/provenance-source.js +33 -0
- package/dist/datasource/provenance-status.d.ts +21 -0
- package/dist/datasource/provenance-status.js +21 -0
- package/dist/datasource/source-metadata.d.ts +47 -0
- package/dist/datasource/source-metadata.js +47 -0
- package/dist/datasource/tracked-provenance-table.d.ts +34 -0
- package/dist/datasource/tracked-provenance-table.js +34 -0
- package/dist/decimal/range.d.ts +33 -0
- package/dist/decimal/range.js +33 -0
- package/dist/domain/conflict-details.d.ts +119 -0
- package/dist/domain/conflict-details.js +24 -0
- package/dist/duplicate/create-review.d.ts +47 -0
- package/dist/duplicate/create-review.js +25 -0
- package/dist/employee/count.d.ts +39 -0
- package/dist/employee/count.js +20 -0
- package/dist/entity/accelerator-participation.d.ts +91 -0
- package/dist/entity/accelerator-participation.js +47 -0
- package/dist/entity/acquisition-evidence.d.ts +22 -0
- package/dist/entity/acquisition-evidence.js +20 -0
- package/dist/entity/acquisition-role.d.ts +17 -0
- package/dist/entity/acquisition-role.js +13 -0
- package/dist/entity/acquisition-stage.d.ts +18 -0
- package/dist/entity/acquisition-stage.js +18 -0
- package/dist/entity/acquisition.d.ts +162 -0
- package/dist/entity/acquisition.js +43 -0
- package/dist/entity/alias-type.d.ts +52 -0
- package/dist/entity/alias-type.js +49 -0
- package/dist/entity/batch-param.d.ts +22 -0
- package/dist/entity/batch-param.js +24 -0
- package/dist/entity/classification-inactive-tag-override.d.ts +16 -0
- package/dist/entity/classification-inactive-tag-override.js +16 -0
- package/dist/entity/classification-suggestion.d.ts +98 -0
- package/dist/entity/classification-suggestion.js +28 -0
- package/dist/entity/classification.d.ts +423 -0
- package/dist/entity/classification.js +53 -0
- package/dist/entity/comparison-signals.d.ts +66 -0
- package/dist/entity/comparison-signals.js +36 -0
- package/dist/entity/detail-batch-param.d.ts +18 -0
- package/dist/entity/detail-batch-param.js +21 -0
- package/dist/entity/detail-batch.d.ts +22 -0
- package/dist/entity/detail-batch.js +24 -0
- package/dist/entity/detail-coverage-slot.d.ts +32 -0
- package/dist/entity/detail-coverage-slot.js +37 -0
- package/dist/entity/detail-similar-param.d.ts +22 -0
- package/dist/entity/detail-similar-param.js +33 -0
- package/dist/entity/detail.d.ts +1814 -0
- package/dist/entity/detail.js +52 -0
- package/dist/entity/enrichment.d.ts +574 -0
- package/dist/entity/enrichment.js +43 -0
- package/dist/entity/entity.d.ts +107 -0
- package/dist/entity/entity.js +100 -0
- package/dist/entity/filter-choice.d.ts +25 -0
- package/dist/entity/filter-choice.js +24 -0
- package/dist/entity/filter-control-type.d.ts +20 -0
- package/dist/entity/filter-control-type.js +20 -0
- package/dist/entity/filter-count-meta.d.ts +17 -0
- package/dist/entity/filter-count-meta.js +15 -0
- package/dist/entity/filter-count-result.d.ts +27 -0
- package/dist/entity/filter-count-result.js +17 -0
- package/dist/entity/filter-count.d.ts +20 -0
- package/dist/entity/filter-count.js +22 -0
- package/dist/entity/filter-entry.d.ts +77 -0
- package/dist/entity/filter-entry.js +41 -0
- package/dist/entity/filter-headquarters-country.d.ts +27 -0
- package/dist/entity/filter-headquarters-country.js +22 -0
- package/dist/entity/filter-headquarters-option-set.d.ts +29 -0
- package/dist/entity/filter-headquarters-option-set.js +19 -0
- package/dist/entity/filter-headquarters-state-city.d.ts +21 -0
- package/dist/entity/filter-headquarters-state-city.js +21 -0
- package/dist/entity/filter-logo-option.d.ts +26 -0
- package/dist/entity/filter-logo-option.js +23 -0
- package/dist/entity/filter-meta.d.ts +33 -0
- package/dist/entity/filter-meta.js +19 -0
- package/dist/entity/filter-option-mode.d.ts +17 -0
- package/dist/entity/filter-option-mode.js +14 -0
- package/dist/entity/filter-option-set-meta.d.ts +37 -0
- package/dist/entity/filter-option-set-meta.js +38 -0
- package/dist/entity/filter-option-set.d.ts +187 -0
- package/dist/entity/filter-option-set.js +23 -0
- package/dist/entity/filter-refined-filters.d.ts +100 -0
- package/dist/entity/filter-refined-filters.js +20 -0
- package/dist/entity/filter-scope.d.ts +19 -0
- package/dist/entity/filter-scope.js +21 -0
- package/dist/entity/filter-search-result.d.ts +20 -0
- package/dist/entity/filter-search-result.js +20 -0
- package/dist/entity/filter-search.d.ts +223 -0
- package/dist/entity/filter-search.js +23 -0
- package/dist/entity/filter-ui-meta.d.ts +31 -0
- package/dist/entity/filter-ui-meta.js +18 -0
- package/dist/entity/filter.d.ts +220 -0
- package/dist/entity/filter.js +112 -0
- package/dist/entity/funding-detail.d.ts +79 -0
- package/dist/entity/funding-detail.js +43 -0
- package/dist/entity/fundraise-filter-criteria.d.ts +95 -0
- package/dist/entity/fundraise-filter-criteria.js +35 -0
- package/dist/entity/fundraise-investor-activity.d.ts +34 -0
- package/dist/entity/fundraise-investor-activity.js +33 -0
- package/dist/entity/fundraise-investor-join.d.ts +40 -0
- package/dist/entity/fundraise-investor-join.js +34 -0
- package/dist/entity/fundraise-transaction-entity.d.ts +134 -0
- package/dist/entity/fundraise-transaction-entity.js +41 -0
- package/dist/entity/fundraise-transaction.d.ts +188 -0
- package/dist/entity/fundraise-transaction.js +60 -0
- package/dist/entity/fundraise.d.ts +46 -0
- package/dist/entity/fundraise.js +40 -0
- package/dist/entity/image.d.ts +63 -0
- package/dist/entity/image.js +62 -0
- package/dist/entity/investor-participation.d.ts +1830 -0
- package/dist/entity/investor-participation.js +22 -0
- package/dist/entity/list-filter.d.ts +223 -0
- package/dist/entity/list-filter.js +114 -0
- package/dist/entity/list-quality-gate.d.ts +25 -0
- package/dist/entity/list-quality-gate.js +22 -0
- package/dist/entity/list-research.d.ts +145 -0
- package/dist/entity/list-research.js +29 -0
- package/dist/entity/list-summary.d.ts +285 -0
- package/dist/entity/list-summary.js +21 -0
- package/dist/entity/list.d.ts +951 -0
- package/dist/entity/list.js +41 -0
- package/dist/entity/logo-type.d.ts +16 -0
- package/dist/entity/logo-type.js +13 -0
- package/dist/entity/lookup-param.d.ts +29 -0
- package/dist/entity/lookup-param.js +51 -0
- package/dist/entity/name-alias-entity-alias-type.d.ts +59 -0
- package/dist/entity/name-alias-entity-alias-type.js +58 -0
- package/dist/entity/name-alias-person-alias-type.d.ts +46 -0
- package/dist/entity/name-alias-person-alias-type.js +43 -0
- package/dist/entity/natural-search.d.ts +229 -0
- package/dist/entity/natural-search.js +20 -0
- package/dist/entity/person-association.d.ts +247 -0
- package/dist/entity/person-association.js +91 -0
- package/dist/entity/person-owner.d.ts +25 -0
- package/dist/entity/person-owner.js +27 -0
- package/dist/entity/relationship-type-option.d.ts +31 -0
- package/dist/entity/relationship-type-option.js +37 -0
- package/dist/entity/relationship.d.ts +135 -0
- package/dist/entity/relationship.js +55 -0
- package/dist/entity/research-detail.d.ts +72 -0
- package/dist/entity/research-detail.js +53 -0
- package/dist/entity/research-fact-value.d.ts +37 -0
- package/dist/entity/research-fact-value.js +27 -0
- package/dist/entity/research-snippet.d.ts +40 -0
- package/dist/entity/research-snippet.js +41 -0
- package/dist/entity/research-value-type.d.ts +42 -0
- package/dist/entity/research-value-type.js +42 -0
- package/dist/entity/research.d.ts +162 -0
- package/dist/entity/research.js +32 -0
- package/dist/entity/resolution.d.ts +1821 -0
- package/dist/entity/resolution.js +25 -0
- package/dist/entity/search-param.d.ts +22 -0
- package/dist/entity/search-param.js +24 -0
- package/dist/entity/similarity-context.d.ts +33 -0
- package/dist/entity/similarity-context.js +35 -0
- package/dist/entity/similarity-origin.d.ts +22 -0
- package/dist/entity/similarity-origin.js +22 -0
- package/dist/entity/similarity-result.d.ts +985 -0
- package/dist/entity/similarity-result.js +19 -0
- package/dist/entity/sitemap-url-type.d.ts +21 -0
- package/dist/entity/sitemap-url-type.js +21 -0
- package/dist/entity/sitemap-url.d.ts +43 -0
- package/dist/entity/sitemap-url.js +40 -0
- package/dist/entity/sitemap.d.ts +57 -0
- package/dist/entity/sitemap.js +63 -0
- package/dist/entity/suggestion-result.d.ts +999 -0
- package/dist/entity/suggestion-result.js +25 -0
- package/dist/entity/suggestion.d.ts +973 -0
- package/dist/entity/suggestion.js +28 -0
- package/dist/entity/tag-count.d.ts +20 -0
- package/dist/entity/tag-count.js +18 -0
- package/dist/entity/tag.d.ts +65 -0
- package/dist/entity/tag.js +68 -0
- package/dist/entity/text-bundle.d.ts +47 -0
- package/dist/entity/text-bundle.js +48 -0
- package/dist/entity/text.d.ts +40 -0
- package/dist/entity/text.js +36 -0
- package/dist/entity/type-alias.d.ts +22 -0
- package/dist/entity/type-alias.js +26 -0
- package/dist/entity/type-count.d.ts +28 -0
- package/dist/entity/type-count.js +19 -0
- package/dist/entity/type-group-membership.d.ts +33 -0
- package/dist/entity/type-group-membership.js +20 -0
- package/dist/entity/type-group.d.ts +18 -0
- package/dist/entity/type-group.js +15 -0
- package/dist/entity/type.d.ts +32 -0
- package/dist/entity/type.js +32 -0
- package/dist/entity/url-crawl-cdn-provider.d.ts +67 -0
- package/dist/entity/url-crawl-cdn-provider.js +67 -0
- package/dist/entity/url-crawl-render-mode.d.ts +50 -0
- package/dist/entity/url-crawl-render-mode.js +46 -0
- package/dist/entity/url-link.d.ts +146 -0
- package/dist/entity/url-link.js +72 -0
- package/dist/entity/url-type.d.ts +103 -0
- package/dist/entity/url-type.js +103 -0
- package/dist/entity/valuation-data-confidence.d.ts +40 -0
- package/dist/entity/valuation-data-confidence.js +36 -0
- package/dist/entity/valuation-derivation.d.ts +18 -0
- package/dist/entity/valuation-derivation.js +18 -0
- package/dist/entity/valuation-source.d.ts +16 -0
- package/dist/entity/valuation-source.js +13 -0
- package/dist/entity/valuation-time-series-point.d.ts +45 -0
- package/dist/entity/valuation-time-series-point.js +43 -0
- package/dist/external/social-post-platform.d.ts +21 -0
- package/dist/external/social-post-platform.js +21 -0
- package/dist/federated/search-provenance.d.ts +39 -0
- package/dist/federated/search-provenance.js +23 -0
- package/dist/federated/search.d.ts +1536 -0
- package/dist/federated/search.js +28 -0
- package/dist/funding/stage.d.ts +73 -0
- package/dist/funding/stage.js +73 -0
- package/dist/fundraise/data-confidence.d.ts +40 -0
- package/dist/fundraise/data-confidence.js +35 -0
- package/dist/fundraise/financial-instrument-type.d.ts +25 -0
- package/dist/fundraise/financial-instrument-type.js +25 -0
- package/dist/fundraise/investment-attribution-type.d.ts +43 -0
- package/dist/fundraise/investment-attribution-type.js +40 -0
- package/dist/fundraise/investment-attribution.d.ts +58 -0
- package/dist/fundraise/investment-attribution.js +64 -0
- package/dist/fundraise/transaction-status.d.ts +22 -0
- package/dist/fundraise/transaction-status.js +22 -0
- package/dist/github/repo.d.ts +36 -0
- package/dist/github/repo.js +46 -0
- package/dist/help/citation.d.ts +26 -0
- package/dist/help/citation.js +24 -0
- package/dist/help/scope.d.ts +17 -0
- package/dist/help/scope.js +13 -0
- package/dist/help/source-type.d.ts +18 -0
- package/dist/help/source-type.js +13 -0
- package/dist/http/json-value.d.ts +13 -0
- package/dist/http/json-value.js +18 -0
- package/dist/http/problem-detail.d.ts +254 -0
- package/dist/http/problem-detail.js +117 -0
- package/dist/int/range.d.ts +35 -0
- package/dist/int/range.js +35 -0
- package/dist/investor/activity-filter.d.ts +59 -0
- package/dist/investor/activity-filter.js +31 -0
- package/dist/letter/counts.d.ts +19 -0
- package/dist/letter/counts.js +18 -0
- package/dist/link/search.d.ts +1543 -0
- package/dist/link/search.js +21 -0
- package/dist/location/directory-entry.d.ts +44 -0
- package/dist/location/directory-entry.js +26 -0
- package/dist/location/identifier.d.ts +31 -0
- package/dist/location/identifier.js +26 -0
- package/dist/location/resolution-outcome.d.ts +16 -0
- package/dist/location/resolution-outcome.js +13 -0
- package/dist/location/scope.d.ts +18 -0
- package/dist/location/scope.js +14 -0
- package/dist/location/sitemap-batch.d.ts +33 -0
- package/dist/location/sitemap-batch.js +33 -0
- package/dist/location/sitemap-boundary-detail.d.ts +31 -0
- package/dist/location/sitemap-boundary-detail.js +22 -0
- package/dist/location/sitemap-boundary.d.ts +24 -0
- package/dist/location/sitemap-boundary.js +22 -0
- package/dist/location/sitemap.d.ts +131 -0
- package/dist/location/sitemap.js +29 -0
- package/dist/location/slug-resolution.d.ts +21 -0
- package/dist/location/slug-resolution.js +20 -0
- package/dist/media/object-type.d.ts +21 -0
- package/dist/media/object-type.js +16 -0
- package/dist/media/screenshot.d.ts +34 -0
- package/dist/media/screenshot.js +31 -0
- package/dist/media/upload.d.ts +35 -0
- package/dist/media/upload.js +30 -0
- package/dist/natural/search-result.d.ts +1203 -0
- package/dist/natural/search-result.js +23 -0
- package/dist/natural/search.d.ts +32 -0
- package/dist/natural/search.js +28 -0
- package/dist/news/candidate-score.d.ts +19 -0
- package/dist/news/candidate-score.js +28 -0
- package/dist/news/detail.d.ts +94 -0
- package/dist/news/detail.js +27 -0
- package/dist/news/feedback-acknowledgement.d.ts +22 -0
- package/dist/news/feedback-acknowledgement.js +20 -0
- package/dist/news/feedback.d.ts +20 -0
- package/dist/news/feedback.js +26 -0
- package/dist/news/filter.d.ts +27 -0
- package/dist/news/filter.js +31 -0
- package/dist/news/lookup-param.d.ts +22 -0
- package/dist/news/lookup-param.js +33 -0
- package/dist/news/news.d.ts +55 -0
- package/dist/news/news.js +61 -0
- package/dist/news/resolved-entity-link.d.ts +39 -0
- package/dist/news/resolved-entity-link.js +34 -0
- package/dist/news/resolved-person-link.d.ts +27 -0
- package/dist/news/resolved-person-link.js +31 -0
- package/dist/news/source-url-conflict.d.ts +20 -0
- package/dist/news/source-url-conflict.js +21 -0
- package/dist/openapi-component-manifest.d.ts +19 -0
- package/dist/openapi-component-manifest.js +864 -0
- package/dist/pageable/object.d.ts +119 -0
- package/dist/pageable/object.js +116 -0
- package/dist/pagination/schemas.d.ts +11887 -0
- package/dist/pagination/schemas.js +901 -0
- package/dist/person/alias-type.d.ts +38 -0
- package/dist/person/alias-type.js +33 -0
- package/dist/person/batch-param.d.ts +27 -0
- package/dist/person/batch-param.js +38 -0
- package/dist/person/detail-batch.d.ts +26 -0
- package/dist/person/detail-batch.js +51 -0
- package/dist/person/detail.d.ts +621 -0
- package/dist/person/detail.js +46 -0
- package/dist/person/enrichment.d.ts +114 -0
- package/dist/person/enrichment.js +35 -0
- package/dist/person/filter.d.ts +106 -0
- package/dist/person/filter.js +49 -0
- package/dist/person/graph-career-context.d.ts +354 -0
- package/dist/person/graph-career-context.js +33 -0
- package/dist/person/graph-co-investor.d.ts +92 -0
- package/dist/person/graph-co-investor.js +27 -0
- package/dist/person/graph-member.d.ts +31 -0
- package/dist/person/graph-member.js +32 -0
- package/dist/person/graph-similar-entity.d.ts +137 -0
- package/dist/person/graph-similar-entity.js +21 -0
- package/dist/person/graph.d.ts +487 -0
- package/dist/person/graph.js +22 -0
- package/dist/person/image.d.ts +46 -0
- package/dist/person/image.js +45 -0
- package/dist/person/invested-company.d.ts +83 -0
- package/dist/person/invested-company.js +32 -0
- package/dist/person/investment.d.ts +143 -0
- package/dist/person/investment.js +45 -0
- package/dist/person/investor-participation.d.ts +722 -0
- package/dist/person/investor-participation.js +22 -0
- package/dist/person/list-array-filter.d.ts +54 -0
- package/dist/person/list-array-filter.js +34 -0
- package/dist/person/lookup-param.d.ts +29 -0
- package/dist/person/lookup-param.js +43 -0
- package/dist/person/natural-search-result.d.ts +273 -0
- package/dist/person/natural-search-result.js +23 -0
- package/dist/person/natural-search.d.ts +114 -0
- package/dist/person/natural-search.js +20 -0
- package/dist/person/person.d.ts +110 -0
- package/dist/person/person.js +76 -0
- package/dist/person/search-interpretation.d.ts +136 -0
- package/dist/person/search-interpretation.js +35 -0
- package/dist/person/similarity-context.d.ts +26 -0
- package/dist/person/similarity-context.js +27 -0
- package/dist/person/similarity-origin.d.ts +16 -0
- package/dist/person/similarity-origin.js +13 -0
- package/dist/person/similarity-result.d.ts +345 -0
- package/dist/person/similarity-result.js +22 -0
- package/dist/personal/api-key.d.ts +32 -0
- package/dist/personal/api-key.js +37 -0
- package/dist/problem/resolution.d.ts +27 -0
- package/dist/problem/resolution.js +33 -0
- package/dist/problem/type.d.ts +68 -0
- package/dist/problem/type.js +68 -0
- package/dist/redirect/current-slug-owner.d.ts +27 -0
- package/dist/redirect/current-slug-owner.js +22 -0
- package/dist/redirect/redirect-slug-path.d.ts +25 -0
- package/dist/redirect/redirect-slug-path.js +20 -0
- package/dist/redirect/slug-resource.d.ts +21 -0
- package/dist/redirect/slug-resource.js +15 -0
- package/dist/refinement/meta.d.ts +21 -0
- package/dist/refinement/meta.js +23 -0
- package/dist/relationship/direction.d.ts +17 -0
- package/dist/relationship/direction.js +13 -0
- package/dist/research/derived-bucket.d.ts +38 -0
- package/dist/research/derived-bucket.js +38 -0
- package/dist/research/derived-range.d.ts +43 -0
- package/dist/research/derived-range.js +41 -0
- package/dist/research/detail-type.d.ts +46 -0
- package/dist/research/detail-type.js +29 -0
- package/dist/research/paragraph-shape.d.ts +23 -0
- package/dist/research/paragraph-shape.js +29 -0
- package/dist/research/snippet-type.d.ts +32 -0
- package/dist/research/snippet-type.js +33 -0
- package/dist/research/value-range.d.ts +14 -0
- package/dist/research/value-range.js +14 -0
- package/dist/research/value-shape-type.d.ts +27 -0
- package/dist/research/value-shape-type.js +27 -0
- package/dist/resolved/handle.d.ts +28 -0
- package/dist/resolved/handle.js +27 -0
- package/dist/round/label.d.ts +44 -0
- package/dist/round/label.js +44 -0
- package/dist/search/duplicate-candidate-score.d.ts +36 -0
- package/dist/search/duplicate-candidate-score.js +38 -0
- package/dist/search/hit.d.ts +21 -0
- package/dist/search/hit.js +19 -0
- package/dist/search/interpretation.d.ts +240 -0
- package/dist/search/interpretation.js +35 -0
- package/dist/search/mode-execution.d.ts +36 -0
- package/dist/search/mode-execution.js +25 -0
- package/dist/search/mode.d.ts +27 -0
- package/dist/search/mode.js +21 -0
- package/dist/search/ordering-entity-filter-sortable.d.ts +30 -0
- package/dist/search/ordering-entity-filter-sortable.js +23 -0
- package/dist/search/ordering-person-sort-field.d.ts +30 -0
- package/dist/search/ordering-person-sort-field.js +23 -0
- package/dist/search/relevance.d.ts +20 -0
- package/dist/search/relevance.js +17 -0
- package/dist/search/search.d.ts +24 -0
- package/dist/search/search.js +29 -0
- package/dist/sec/company.d.ts +40 -0
- package/dist/sec/company.js +56 -0
- package/dist/sitemap/change-frequency.d.ts +21 -0
- package/dist/sitemap/change-frequency.js +21 -0
- package/dist/sitemap/family-entry.d.ts +51 -0
- package/dist/sitemap/family-entry.js +27 -0
- package/dist/sitemap/family.d.ts +31 -0
- package/dist/sitemap/family.js +31 -0
- package/dist/sitemap/index-manifest.d.ts +35 -0
- package/dist/sitemap/index-manifest.js +16 -0
- package/dist/sitemap/index-path-mode.d.ts +16 -0
- package/dist/sitemap/index-path-mode.js +13 -0
- package/dist/sitemap/url-slot.d.ts +40 -0
- package/dist/sitemap/url-slot.js +28 -0
- package/dist/slug/location.d.ts +29 -0
- package/dist/slug/location.js +22 -0
- package/dist/sort/object.d.ts +113 -0
- package/dist/sort/object.js +113 -0
- package/dist/sort/order-content-sort-field.d.ts +31 -0
- package/dist/sort/order-content-sort-field.js +22 -0
- package/dist/sort/order-entity-filter-sortable.d.ts +38 -0
- package/dist/sort/order-entity-filter-sortable.js +38 -0
- package/dist/sort/order-person-sort-field.d.ts +33 -0
- package/dist/sort/order-person-sort-field.js +33 -0
- package/dist/sort/spec-content-sort-field.d.ts +26 -0
- package/dist/sort/spec-content-sort-field.js +20 -0
- package/dist/source/document-list.d.ts +31 -0
- package/dist/source/document-list.js +31 -0
- package/dist/stage/frequency.d.ts +20 -0
- package/dist/stage/frequency.js +18 -0
- package/dist/standardized/classification.d.ts +63 -0
- package/dist/standardized/classification.js +62 -0
- package/dist/strict/url-lookup-conflict.d.ts +23 -0
- package/dist/strict/url-lookup-conflict.js +27 -0
- package/dist/system/global-metrics.d.ts +26 -0
- package/dist/system/global-metrics.js +26 -0
- package/dist/system/status.d.ts +28 -0
- package/dist/system/status.js +19 -0
- package/dist/system/system-build-detail.d.ts +23 -0
- package/dist/system/system-build-detail.js +27 -0
- package/dist/system/system-build.d.ts +31 -0
- package/dist/system/system-build.js +17 -0
- package/dist/text/type-option.d.ts +30 -0
- package/dist/text/type-option.js +28 -0
- package/dist/unique/id-owner-scope.d.ts +16 -0
- package/dist/unique/id-owner-scope.js +13 -0
- package/dist/unique/id-type-alias.d.ts +24 -0
- package/dist/unique/id-type-alias.js +25 -0
- package/dist/unique/id-type.d.ts +35 -0
- package/dist/unique/id-type.js +35 -0
- package/dist/unique/id.d.ts +50 -0
- package/dist/unique/id.js +44 -0
- package/dist/uptime/uptime.d.ts +21 -0
- package/dist/uptime/uptime.js +23 -0
- package/dist/url/duplicate-conflict.d.ts +39 -0
- package/dist/url/duplicate-conflict.js +31 -0
- package/dist/url/duplicate-join.d.ts +22 -0
- package/dist/url/duplicate-join.js +20 -0
- package/dist/url/match-mode.d.ts +25 -0
- package/dist/url/match-mode.js +22 -0
- package/dist/url/slug-redirect.d.ts +25 -0
- package/dist/url/slug-redirect.js +29 -0
- package/dist/url/surface-misclassification-catalog.d.ts +50 -0
- package/dist/url/surface-misclassification-catalog.js +23 -0
- package/dist/url/surface-misclassification-route.d.ts +39 -0
- package/dist/url/surface-misclassification-route.js +44 -0
- package/dist/url/type-alias.d.ts +21 -0
- package/dist/url/type-alias.js +22 -0
- package/dist/valuation/type.d.ts +17 -0
- package/dist/valuation/type.js +13 -0
- package/dist/web/search.d.ts +75 -0
- package/dist/web/search.js +23 -0
- package/package.json +39 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// LLM AGENTS MAY NOT EDIT THIS FILE UNDER ANY CIRCUMSTANCES. DO NOT EDIT - generated from Kotlin data classes via OpenAPI. Edit the backend owner and run: make docs-openapi && make docs-zod
|
|
2
|
+
import { z } from "zod/v4";
|
|
3
|
+
import { FederatedSearchSchema } from "../federated/search.js";
|
|
4
|
+
const LinkSearchSchemaDefinition = z.object({
|
|
5
|
+
/** Search query synthesized from the page content. */
|
|
6
|
+
query: z.string(),
|
|
7
|
+
/** Federated entity, person, and news results for the synthesized query. */
|
|
8
|
+
related: FederatedSearchSchema,
|
|
9
|
+
/** The fetched page URL after validation. */
|
|
10
|
+
url: z.string(),
|
|
11
|
+
});
|
|
12
|
+
/**
|
|
13
|
+
* Search results related to a shared article or page URL: the fetched URL, the search query synthesized from the page content, and the federated entity, person, and news results for that query.
|
|
14
|
+
*
|
|
15
|
+
* @openapiSchema LinkSearch
|
|
16
|
+
* @endpoint GET /v1/search/link
|
|
17
|
+
* @contractShape link.search
|
|
18
|
+
* @contractRole canonical
|
|
19
|
+
*/
|
|
20
|
+
export const LinkSearchSchema = LinkSearchSchemaDefinition;
|
|
21
|
+
//# sourceMappingURL=search.js.map
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { z } from "zod/v4";
|
|
2
|
+
/**
|
|
3
|
+
* Single directory entry (country/state/city) for sitemap
|
|
4
|
+
*
|
|
5
|
+
* @openapiSchema LocationDirectoryEntry
|
|
6
|
+
* @endpoint GET /v1/addresses/locations/{scope}
|
|
7
|
+
* @endpoint POST /v1/addresses/locations/batch
|
|
8
|
+
* @usedBySchema LocationSitemapSchema
|
|
9
|
+
* @usedBySchema PageLocationDirectoryEntrySchema
|
|
10
|
+
* @usedBySchema PageResultLocationDirectoryEntrySchema
|
|
11
|
+
* @contractShape location.directory-entry
|
|
12
|
+
* @contractRole canonical
|
|
13
|
+
*/
|
|
14
|
+
export declare const LocationDirectoryEntrySchema: z.ZodObject<{
|
|
15
|
+
canonicalSlug: z.ZodString;
|
|
16
|
+
entityCount: z.ZodNumber;
|
|
17
|
+
identifier: z.ZodType<{
|
|
18
|
+
cityId?: number | null | undefined;
|
|
19
|
+
cityName?: string | null | undefined;
|
|
20
|
+
countryId?: number | null | undefined;
|
|
21
|
+
countryIso2?: string | null | undefined;
|
|
22
|
+
countryName?: string | null | undefined;
|
|
23
|
+
scope: "city" | "country" | "state";
|
|
24
|
+
stateAbbrev?: string | null | undefined;
|
|
25
|
+
stateId?: number | null | undefined;
|
|
26
|
+
stateName?: string | null | undefined;
|
|
27
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
28
|
+
cityId?: number | null | undefined;
|
|
29
|
+
cityName?: string | null | undefined;
|
|
30
|
+
countryId?: number | null | undefined;
|
|
31
|
+
countryIso2?: string | null | undefined;
|
|
32
|
+
countryName?: string | null | undefined;
|
|
33
|
+
scope: "city" | "country" | "state";
|
|
34
|
+
stateAbbrev?: string | null | undefined;
|
|
35
|
+
stateId?: number | null | undefined;
|
|
36
|
+
stateName?: string | null | undefined;
|
|
37
|
+
}, unknown>>;
|
|
38
|
+
latestUpdatedAt: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
|
|
39
|
+
name: z.ZodString;
|
|
40
|
+
parentLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
41
|
+
slug: z.ZodString;
|
|
42
|
+
}, z.core.$strip>;
|
|
43
|
+
export type LocationDirectoryEntry = z.infer<typeof LocationDirectoryEntrySchema>;
|
|
44
|
+
//# sourceMappingURL=directory-entry.d.ts.map
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
// LLM AGENTS MAY NOT EDIT THIS FILE UNDER ANY CIRCUMSTANCES. DO NOT EDIT - generated from Kotlin data classes via OpenAPI. Edit the backend owner and run: make docs-openapi && make docs-zod
|
|
2
|
+
import { z } from "zod/v4";
|
|
3
|
+
import { LocationIdentifierSchema } from "./identifier.js";
|
|
4
|
+
/**
|
|
5
|
+
* Single directory entry (country/state/city) for sitemap
|
|
6
|
+
*
|
|
7
|
+
* @openapiSchema LocationDirectoryEntry
|
|
8
|
+
* @endpoint GET /v1/addresses/locations/{scope}
|
|
9
|
+
* @endpoint POST /v1/addresses/locations/batch
|
|
10
|
+
* @usedBySchema LocationSitemapSchema
|
|
11
|
+
* @usedBySchema PageLocationDirectoryEntrySchema
|
|
12
|
+
* @usedBySchema PageResultLocationDirectoryEntrySchema
|
|
13
|
+
* @contractShape location.directory-entry
|
|
14
|
+
* @contractRole canonical
|
|
15
|
+
*/
|
|
16
|
+
export const LocationDirectoryEntrySchema = z.object({
|
|
17
|
+
canonicalSlug: z.string(),
|
|
18
|
+
entityCount: z.number().int(),
|
|
19
|
+
identifier: LocationIdentifierSchema,
|
|
20
|
+
/** Per-location entity provenance watermark: MAX over the location's member companies of COALESCE(lastModifiedAt, createdAt), computed by the stored directory rebuild. Absent until that rebuild has run for the row. */
|
|
21
|
+
latestUpdatedAt: z.iso.datetime({ offset: true }).nullish(),
|
|
22
|
+
name: z.string(),
|
|
23
|
+
parentLabel: z.string().nullish(),
|
|
24
|
+
slug: z.string(),
|
|
25
|
+
});
|
|
26
|
+
//# sourceMappingURL=directory-entry.js.map
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { z } from "zod/v4";
|
|
2
|
+
declare const LocationIdentifierSchemaDefinition: z.ZodObject<{
|
|
3
|
+
cityId: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
4
|
+
cityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5
|
+
countryId: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
6
|
+
countryIso2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7
|
+
countryName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8
|
+
scope: z.ZodEnum<{
|
|
9
|
+
city: "city";
|
|
10
|
+
country: "country";
|
|
11
|
+
state: "state";
|
|
12
|
+
}>;
|
|
13
|
+
stateAbbrev: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14
|
+
stateId: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
15
|
+
stateName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16
|
+
}, z.core.$strip>;
|
|
17
|
+
type LocationIdentifierDefinition = z.infer<typeof LocationIdentifierSchemaDefinition>;
|
|
18
|
+
/**
|
|
19
|
+
* Canonical multi-scope location identifier with hierarchical IDs
|
|
20
|
+
*
|
|
21
|
+
* @openapiSchema LocationIdentifier
|
|
22
|
+
* @endpoint GET /v1/addresses/locations/{scope}
|
|
23
|
+
* @endpoint POST /v1/addresses/locations/batch
|
|
24
|
+
* @usedBySchema LocationDirectoryEntrySchema
|
|
25
|
+
* @contractShape location.identifier
|
|
26
|
+
* @contractRole canonical
|
|
27
|
+
*/
|
|
28
|
+
export declare const LocationIdentifierSchema: z.ZodType<LocationIdentifierDefinition>;
|
|
29
|
+
export type LocationIdentifier = z.infer<typeof LocationIdentifierSchema>;
|
|
30
|
+
export {};
|
|
31
|
+
//# sourceMappingURL=identifier.d.ts.map
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
// LLM AGENTS MAY NOT EDIT THIS FILE UNDER ANY CIRCUMSTANCES. DO NOT EDIT - generated from Kotlin data classes via OpenAPI. Edit the backend owner and run: make docs-openapi && make docs-zod
|
|
2
|
+
import { z } from "zod/v4";
|
|
3
|
+
import { LocationScopeSchema } from "./scope.js";
|
|
4
|
+
const LocationIdentifierSchemaDefinition = z.object({
|
|
5
|
+
cityId: z.int().nullish(),
|
|
6
|
+
cityName: z.string().nullish(),
|
|
7
|
+
countryId: z.int().nullish(),
|
|
8
|
+
countryIso2: z.string().nullish(),
|
|
9
|
+
countryName: z.string().nullish(),
|
|
10
|
+
scope: LocationScopeSchema,
|
|
11
|
+
stateAbbrev: z.string().nullish(),
|
|
12
|
+
stateId: z.int().nullish(),
|
|
13
|
+
stateName: z.string().nullish(),
|
|
14
|
+
});
|
|
15
|
+
/**
|
|
16
|
+
* Canonical multi-scope location identifier with hierarchical IDs
|
|
17
|
+
*
|
|
18
|
+
* @openapiSchema LocationIdentifier
|
|
19
|
+
* @endpoint GET /v1/addresses/locations/{scope}
|
|
20
|
+
* @endpoint POST /v1/addresses/locations/batch
|
|
21
|
+
* @usedBySchema LocationDirectoryEntrySchema
|
|
22
|
+
* @contractShape location.identifier
|
|
23
|
+
* @contractRole canonical
|
|
24
|
+
*/
|
|
25
|
+
export const LocationIdentifierSchema = LocationIdentifierSchemaDefinition;
|
|
26
|
+
//# sourceMappingURL=identifier.js.map
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { z } from "zod/v4";
|
|
2
|
+
/**
|
|
3
|
+
* Lifecycle classification for a requested location slug: current resolves to a live published directory entry; unpublished means the canonical token resolves to a real reference-table location that has no publishable companies, served as HTTP 410 Gone so crawlers drop the URL permanently
|
|
4
|
+
*
|
|
5
|
+
* @openapiSchema LocationResolutionOutcome
|
|
6
|
+
* @endpoint POST /v1/addresses/locations/batch
|
|
7
|
+
* @usedBySchema LocationSlugResolutionSchema
|
|
8
|
+
* @contractShape location.resolution-outcome
|
|
9
|
+
* @contractRole canonical
|
|
10
|
+
*/
|
|
11
|
+
export declare const LocationResolutionOutcomeSchema: z.ZodEnum<{
|
|
12
|
+
current: "current";
|
|
13
|
+
unpublished: "unpublished";
|
|
14
|
+
}>;
|
|
15
|
+
export type LocationResolutionOutcome = z.infer<typeof LocationResolutionOutcomeSchema>;
|
|
16
|
+
//# sourceMappingURL=resolution-outcome.d.ts.map
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// LLM AGENTS MAY NOT EDIT THIS FILE UNDER ANY CIRCUMSTANCES. DO NOT EDIT - generated from Kotlin data classes via OpenAPI. Edit the backend owner and run: make docs-openapi && make docs-zod
|
|
2
|
+
import { z } from "zod/v4";
|
|
3
|
+
/**
|
|
4
|
+
* Lifecycle classification for a requested location slug: current resolves to a live published directory entry; unpublished means the canonical token resolves to a real reference-table location that has no publishable companies, served as HTTP 410 Gone so crawlers drop the URL permanently
|
|
5
|
+
*
|
|
6
|
+
* @openapiSchema LocationResolutionOutcome
|
|
7
|
+
* @endpoint POST /v1/addresses/locations/batch
|
|
8
|
+
* @usedBySchema LocationSlugResolutionSchema
|
|
9
|
+
* @contractShape location.resolution-outcome
|
|
10
|
+
* @contractRole canonical
|
|
11
|
+
*/
|
|
12
|
+
export const LocationResolutionOutcomeSchema = z.enum(["current", "unpublished"]);
|
|
13
|
+
//# sourceMappingURL=resolution-outcome.js.map
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { z } from "zod/v4";
|
|
2
|
+
/**
|
|
3
|
+
* Geographic scope tier for location directory
|
|
4
|
+
*
|
|
5
|
+
* @openapiSchema LocationScope
|
|
6
|
+
* @endpoint GET /v1/addresses/locations/{scope}
|
|
7
|
+
* @endpoint POST /v1/addresses/locations/batch
|
|
8
|
+
* @usedBySchema LocationIdentifierSchema
|
|
9
|
+
* @contractShape location.scope
|
|
10
|
+
* @contractRole canonical
|
|
11
|
+
*/
|
|
12
|
+
export declare const LocationScopeSchema: z.ZodEnum<{
|
|
13
|
+
city: "city";
|
|
14
|
+
country: "country";
|
|
15
|
+
state: "state";
|
|
16
|
+
}>;
|
|
17
|
+
export type LocationScope = z.infer<typeof LocationScopeSchema>;
|
|
18
|
+
//# sourceMappingURL=scope.d.ts.map
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// LLM AGENTS MAY NOT EDIT THIS FILE UNDER ANY CIRCUMSTANCES. DO NOT EDIT - generated from Kotlin data classes via OpenAPI. Edit the backend owner and run: make docs-openapi && make docs-zod
|
|
2
|
+
import { z } from "zod/v4";
|
|
3
|
+
/**
|
|
4
|
+
* Geographic scope tier for location directory
|
|
5
|
+
*
|
|
6
|
+
* @openapiSchema LocationScope
|
|
7
|
+
* @endpoint GET /v1/addresses/locations/{scope}
|
|
8
|
+
* @endpoint POST /v1/addresses/locations/batch
|
|
9
|
+
* @usedBySchema LocationIdentifierSchema
|
|
10
|
+
* @contractShape location.scope
|
|
11
|
+
* @contractRole canonical
|
|
12
|
+
*/
|
|
13
|
+
export const LocationScopeSchema = z.enum(["country", "state", "city"]);
|
|
14
|
+
//# sourceMappingURL=scope.js.map
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { z } from "zod/v4";
|
|
2
|
+
declare const LocationSitemapBatchSchemaDefinition: z.ZodObject<{
|
|
3
|
+
cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4
|
+
letter: z.ZodString;
|
|
5
|
+
scope: z.ZodEnum<{
|
|
6
|
+
CITIES: "CITIES";
|
|
7
|
+
CITY: "CITY";
|
|
8
|
+
COUNTRIES: "COUNTRIES";
|
|
9
|
+
COUNTRY: "COUNTRY";
|
|
10
|
+
STATE: "STATE";
|
|
11
|
+
STATES: "STATES";
|
|
12
|
+
cities: "cities";
|
|
13
|
+
city: "city";
|
|
14
|
+
countries: "countries";
|
|
15
|
+
country: "country";
|
|
16
|
+
state: "state";
|
|
17
|
+
states: "states";
|
|
18
|
+
}>;
|
|
19
|
+
slug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20
|
+
}, z.core.$strip>;
|
|
21
|
+
type LocationSitemapBatchDefinition = z.infer<typeof LocationSitemapBatchSchemaDefinition>;
|
|
22
|
+
/**
|
|
23
|
+
* Request body for batch sitemap hydration
|
|
24
|
+
*
|
|
25
|
+
* @openapiSchema LocationSitemapBatch
|
|
26
|
+
* @endpoint POST /v1/addresses/locations/batch
|
|
27
|
+
* @contractShape location.sitemap-batch
|
|
28
|
+
* @contractRole canonical
|
|
29
|
+
*/
|
|
30
|
+
export declare const LocationSitemapBatchSchema: z.ZodType<LocationSitemapBatchDefinition>;
|
|
31
|
+
export type LocationSitemapBatch = z.infer<typeof LocationSitemapBatchSchema>;
|
|
32
|
+
export {};
|
|
33
|
+
//# sourceMappingURL=sitemap-batch.d.ts.map
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
// LLM AGENTS MAY NOT EDIT THIS FILE UNDER ANY CIRCUMSTANCES. DO NOT EDIT - generated from Kotlin data classes via OpenAPI. Edit the backend owner and run: make docs-openapi && make docs-zod
|
|
2
|
+
import { z } from "zod/v4";
|
|
3
|
+
const LocationSitemapBatchSchemaDefinition = z.object({
|
|
4
|
+
/** Opaque continuation from companyNextCursor; keeps deep company traversal keyset-based. */
|
|
5
|
+
cursor: z.string().nullish(),
|
|
6
|
+
letter: z.string(),
|
|
7
|
+
/** Accepted location scope tokens for path and batch inputs */
|
|
8
|
+
scope: z.enum([
|
|
9
|
+
"country",
|
|
10
|
+
"COUNTRY",
|
|
11
|
+
"countries",
|
|
12
|
+
"COUNTRIES",
|
|
13
|
+
"state",
|
|
14
|
+
"STATE",
|
|
15
|
+
"states",
|
|
16
|
+
"STATES",
|
|
17
|
+
"city",
|
|
18
|
+
"CITY",
|
|
19
|
+
"cities",
|
|
20
|
+
"CITIES",
|
|
21
|
+
]),
|
|
22
|
+
slug: z.string().nullish(),
|
|
23
|
+
});
|
|
24
|
+
/**
|
|
25
|
+
* Request body for batch sitemap hydration
|
|
26
|
+
*
|
|
27
|
+
* @openapiSchema LocationSitemapBatch
|
|
28
|
+
* @endpoint POST /v1/addresses/locations/batch
|
|
29
|
+
* @contractShape location.sitemap-batch
|
|
30
|
+
* @contractRole canonical
|
|
31
|
+
*/
|
|
32
|
+
export const LocationSitemapBatchSchema = LocationSitemapBatchSchemaDefinition;
|
|
33
|
+
//# sourceMappingURL=sitemap-batch.js.map
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { z } from "zod/v4";
|
|
2
|
+
declare const LocationSitemapBoundaryDetailSchemaDefinition: z.ZodObject<{
|
|
3
|
+
boundary: z.ZodArray<z.ZodType<{
|
|
4
|
+
latestUpdatedAt: string;
|
|
5
|
+
nextCursor?: string | null | undefined;
|
|
6
|
+
page: number;
|
|
7
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
8
|
+
latestUpdatedAt: string;
|
|
9
|
+
nextCursor?: string | null | undefined;
|
|
10
|
+
page: number;
|
|
11
|
+
}, unknown>>>;
|
|
12
|
+
size: z.ZodInt;
|
|
13
|
+
total: z.ZodInt;
|
|
14
|
+
}, z.core.$strip>;
|
|
15
|
+
type LocationSitemapBoundaryDetailDefinition = z.infer<typeof LocationSitemapBoundaryDetailSchemaDefinition>;
|
|
16
|
+
/**
|
|
17
|
+
* Complete sitemap boundary metadata for a domain O(1) boundary endpoint payload replacing O(N) cursor traversal for sitemap index lastmod generation
|
|
18
|
+
*
|
|
19
|
+
* @openapiSchema LocationSitemapBoundaryDetail
|
|
20
|
+
* @endpoint GET /v1/sitemap/entities/boundaries
|
|
21
|
+
* @endpoint GET /v1/sitemap/entities/urls/boundaries
|
|
22
|
+
* @endpoint GET /v1/sitemap/news/boundaries
|
|
23
|
+
* @endpoint GET /v1/sitemap/people/boundaries
|
|
24
|
+
* @endpoint GET /v1/sitemap/url-slots/boundaries
|
|
25
|
+
* @contractShape location.sitemap-boundary-detail
|
|
26
|
+
* @contractRole canonical
|
|
27
|
+
*/
|
|
28
|
+
export declare const LocationSitemapBoundaryDetailSchema: z.ZodType<LocationSitemapBoundaryDetailDefinition>;
|
|
29
|
+
export type LocationSitemapBoundaryDetail = z.infer<typeof LocationSitemapBoundaryDetailSchema>;
|
|
30
|
+
export {};
|
|
31
|
+
//# sourceMappingURL=sitemap-boundary-detail.d.ts.map
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
// LLM AGENTS MAY NOT EDIT THIS FILE UNDER ANY CIRCUMSTANCES. DO NOT EDIT - generated from Kotlin data classes via OpenAPI. Edit the backend owner and run: make docs-openapi && make docs-zod
|
|
2
|
+
import { z } from "zod/v4";
|
|
3
|
+
import { LocationSitemapBoundarySchema } from "./sitemap-boundary.js";
|
|
4
|
+
const LocationSitemapBoundaryDetailSchemaDefinition = z.object({
|
|
5
|
+
boundary: z.array(LocationSitemapBoundarySchema),
|
|
6
|
+
size: z.int(),
|
|
7
|
+
total: z.int(),
|
|
8
|
+
});
|
|
9
|
+
/**
|
|
10
|
+
* Complete sitemap boundary metadata for a domain O(1) boundary endpoint payload replacing O(N) cursor traversal for sitemap index lastmod generation
|
|
11
|
+
*
|
|
12
|
+
* @openapiSchema LocationSitemapBoundaryDetail
|
|
13
|
+
* @endpoint GET /v1/sitemap/entities/boundaries
|
|
14
|
+
* @endpoint GET /v1/sitemap/entities/urls/boundaries
|
|
15
|
+
* @endpoint GET /v1/sitemap/news/boundaries
|
|
16
|
+
* @endpoint GET /v1/sitemap/people/boundaries
|
|
17
|
+
* @endpoint GET /v1/sitemap/url-slots/boundaries
|
|
18
|
+
* @contractShape location.sitemap-boundary-detail
|
|
19
|
+
* @contractRole canonical
|
|
20
|
+
*/
|
|
21
|
+
export const LocationSitemapBoundaryDetailSchema = LocationSitemapBoundaryDetailSchemaDefinition;
|
|
22
|
+
//# sourceMappingURL=sitemap-boundary-detail.js.map
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { z } from "zod/v4";
|
|
2
|
+
declare const LocationSitemapBoundarySchemaDefinition: z.ZodObject<{
|
|
3
|
+
latestUpdatedAt: z.ZodISODateTime;
|
|
4
|
+
nextCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5
|
+
page: z.ZodInt;
|
|
6
|
+
}, z.core.$strip>;
|
|
7
|
+
type LocationSitemapBoundaryDefinition = z.infer<typeof LocationSitemapBoundarySchemaDefinition>;
|
|
8
|
+
/**
|
|
9
|
+
* Sitemap page boundary with page number and latest timestamp
|
|
10
|
+
*
|
|
11
|
+
* @openapiSchema LocationSitemapBoundary
|
|
12
|
+
* @endpoint GET /v1/sitemap/entities/boundaries
|
|
13
|
+
* @endpoint GET /v1/sitemap/entities/urls/boundaries
|
|
14
|
+
* @endpoint GET /v1/sitemap/news/boundaries
|
|
15
|
+
* @endpoint GET /v1/sitemap/people/boundaries
|
|
16
|
+
* @endpoint GET /v1/sitemap/url-slots/boundaries
|
|
17
|
+
* @usedBySchema LocationSitemapBoundaryDetailSchema
|
|
18
|
+
* @contractShape location.sitemap-boundary
|
|
19
|
+
* @contractRole canonical
|
|
20
|
+
*/
|
|
21
|
+
export declare const LocationSitemapBoundarySchema: z.ZodType<LocationSitemapBoundaryDefinition>;
|
|
22
|
+
export type LocationSitemapBoundary = z.infer<typeof LocationSitemapBoundarySchema>;
|
|
23
|
+
export {};
|
|
24
|
+
//# sourceMappingURL=sitemap-boundary.d.ts.map
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
// LLM AGENTS MAY NOT EDIT THIS FILE UNDER ANY CIRCUMSTANCES. DO NOT EDIT - generated from Kotlin data classes via OpenAPI. Edit the backend owner and run: make docs-openapi && make docs-zod
|
|
2
|
+
import { z } from "zod/v4";
|
|
3
|
+
const LocationSitemapBoundarySchemaDefinition = z.object({
|
|
4
|
+
latestUpdatedAt: z.iso.datetime({ offset: true }),
|
|
5
|
+
nextCursor: z.string().nullish(),
|
|
6
|
+
page: z.int(),
|
|
7
|
+
});
|
|
8
|
+
/**
|
|
9
|
+
* Sitemap page boundary with page number and latest timestamp
|
|
10
|
+
*
|
|
11
|
+
* @openapiSchema LocationSitemapBoundary
|
|
12
|
+
* @endpoint GET /v1/sitemap/entities/boundaries
|
|
13
|
+
* @endpoint GET /v1/sitemap/entities/urls/boundaries
|
|
14
|
+
* @endpoint GET /v1/sitemap/news/boundaries
|
|
15
|
+
* @endpoint GET /v1/sitemap/people/boundaries
|
|
16
|
+
* @endpoint GET /v1/sitemap/url-slots/boundaries
|
|
17
|
+
* @usedBySchema LocationSitemapBoundaryDetailSchema
|
|
18
|
+
* @contractShape location.sitemap-boundary
|
|
19
|
+
* @contractRole canonical
|
|
20
|
+
*/
|
|
21
|
+
export const LocationSitemapBoundarySchema = LocationSitemapBoundarySchemaDefinition;
|
|
22
|
+
//# sourceMappingURL=sitemap-boundary.js.map
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
import { z } from "zod/v4";
|
|
2
|
+
declare const LocationSitemapSchemaDefinition: z.ZodObject<{
|
|
3
|
+
company: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4
|
+
content: z.ZodArray<z.ZodType<{
|
|
5
|
+
family: "blogArticle" | "blogCategory" | "blogTag" | "companyImage" | "companyUrl" | "governmentUrl" | "investorUrl" | "locationCity" | "locationCountry" | "locationState" | "news" | "nonprofitUrl" | "person" | "personImage";
|
|
6
|
+
imagePath?: string | null | undefined;
|
|
7
|
+
lastUpdatedAt: string;
|
|
8
|
+
path: string;
|
|
9
|
+
slotKey: string;
|
|
10
|
+
slug: string;
|
|
11
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
12
|
+
family: "blogArticle" | "blogCategory" | "blogTag" | "companyImage" | "companyUrl" | "governmentUrl" | "investorUrl" | "locationCity" | "locationCountry" | "locationState" | "news" | "nonprofitUrl" | "person" | "personImage";
|
|
13
|
+
imagePath?: string | null | undefined;
|
|
14
|
+
lastUpdatedAt: string;
|
|
15
|
+
path: string;
|
|
16
|
+
slotKey: string;
|
|
17
|
+
slug: string;
|
|
18
|
+
}, unknown>>>;
|
|
19
|
+
number: z.ZodInt;
|
|
20
|
+
size: z.ZodInt;
|
|
21
|
+
totalElements: z.ZodNumber;
|
|
22
|
+
totalPages: z.ZodInt;
|
|
23
|
+
}, z.core.$strip>>>;
|
|
24
|
+
companyNextCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25
|
+
directory: z.ZodType<{
|
|
26
|
+
content: {
|
|
27
|
+
canonicalSlug: string;
|
|
28
|
+
entityCount: number;
|
|
29
|
+
identifier: {
|
|
30
|
+
cityId?: number | null | undefined;
|
|
31
|
+
cityName?: string | null | undefined;
|
|
32
|
+
countryId?: number | null | undefined;
|
|
33
|
+
countryIso2?: string | null | undefined;
|
|
34
|
+
countryName?: string | null | undefined;
|
|
35
|
+
scope: "city" | "country" | "state";
|
|
36
|
+
stateAbbrev?: string | null | undefined;
|
|
37
|
+
stateId?: number | null | undefined;
|
|
38
|
+
stateName?: string | null | undefined;
|
|
39
|
+
};
|
|
40
|
+
latestUpdatedAt?: string | null | undefined;
|
|
41
|
+
name: string;
|
|
42
|
+
parentLabel?: string | null | undefined;
|
|
43
|
+
slug: string;
|
|
44
|
+
}[];
|
|
45
|
+
number: number;
|
|
46
|
+
size: number;
|
|
47
|
+
totalElements: number;
|
|
48
|
+
totalPages: number;
|
|
49
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
50
|
+
content: {
|
|
51
|
+
canonicalSlug: string;
|
|
52
|
+
entityCount: number;
|
|
53
|
+
identifier: {
|
|
54
|
+
cityId?: number | null | undefined;
|
|
55
|
+
cityName?: string | null | undefined;
|
|
56
|
+
countryId?: number | null | undefined;
|
|
57
|
+
countryIso2?: string | null | undefined;
|
|
58
|
+
countryName?: string | null | undefined;
|
|
59
|
+
scope: "city" | "country" | "state";
|
|
60
|
+
stateAbbrev?: string | null | undefined;
|
|
61
|
+
stateId?: number | null | undefined;
|
|
62
|
+
stateName?: string | null | undefined;
|
|
63
|
+
};
|
|
64
|
+
latestUpdatedAt?: string | null | undefined;
|
|
65
|
+
name: string;
|
|
66
|
+
parentLabel?: string | null | undefined;
|
|
67
|
+
slug: string;
|
|
68
|
+
}[];
|
|
69
|
+
number: number;
|
|
70
|
+
size: number;
|
|
71
|
+
totalElements: number;
|
|
72
|
+
totalPages: number;
|
|
73
|
+
}, unknown>>;
|
|
74
|
+
directoryLetterCount: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
75
|
+
location: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
76
|
+
canonicalSlug: z.ZodString;
|
|
77
|
+
entityCount: z.ZodNumber;
|
|
78
|
+
identifier: z.ZodType<{
|
|
79
|
+
cityId?: number | null | undefined;
|
|
80
|
+
cityName?: string | null | undefined;
|
|
81
|
+
countryId?: number | null | undefined;
|
|
82
|
+
countryIso2?: string | null | undefined;
|
|
83
|
+
countryName?: string | null | undefined;
|
|
84
|
+
scope: "city" | "country" | "state";
|
|
85
|
+
stateAbbrev?: string | null | undefined;
|
|
86
|
+
stateId?: number | null | undefined;
|
|
87
|
+
stateName?: string | null | undefined;
|
|
88
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
89
|
+
cityId?: number | null | undefined;
|
|
90
|
+
cityName?: string | null | undefined;
|
|
91
|
+
countryId?: number | null | undefined;
|
|
92
|
+
countryIso2?: string | null | undefined;
|
|
93
|
+
countryName?: string | null | undefined;
|
|
94
|
+
scope: "city" | "country" | "state";
|
|
95
|
+
stateAbbrev?: string | null | undefined;
|
|
96
|
+
stateId?: number | null | undefined;
|
|
97
|
+
stateName?: string | null | undefined;
|
|
98
|
+
}, unknown>>;
|
|
99
|
+
latestUpdatedAt: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
|
|
100
|
+
name: z.ZodString;
|
|
101
|
+
parentLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
102
|
+
slug: z.ZodString;
|
|
103
|
+
}, z.core.$strip>>>;
|
|
104
|
+
locationLetterCount: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodNumber>>>;
|
|
105
|
+
requestedLetter: z.ZodString;
|
|
106
|
+
resolvedDirectoryLetter: z.ZodString;
|
|
107
|
+
resolvedLocationLetter: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
108
|
+
scope: z.ZodString;
|
|
109
|
+
slugResolution: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
110
|
+
canonicalSlug: z.ZodString;
|
|
111
|
+
matched: z.ZodBoolean;
|
|
112
|
+
outcome: z.ZodOptional<z.ZodEnum<{
|
|
113
|
+
current: "current";
|
|
114
|
+
unpublished: "unpublished";
|
|
115
|
+
}>>;
|
|
116
|
+
seoSlug: z.ZodString;
|
|
117
|
+
}, z.core.$strip>>>;
|
|
118
|
+
}, z.core.$strip>;
|
|
119
|
+
type LocationSitemapDefinition = z.infer<typeof LocationSitemapSchemaDefinition>;
|
|
120
|
+
/**
|
|
121
|
+
* Batch sitemap response with directory, exact letter counts, and optional company URL slots
|
|
122
|
+
*
|
|
123
|
+
* @openapiSchema LocationSitemap
|
|
124
|
+
* @endpoint POST /v1/addresses/locations/batch
|
|
125
|
+
* @contractShape location.sitemap
|
|
126
|
+
* @contractRole canonical
|
|
127
|
+
*/
|
|
128
|
+
export declare const LocationSitemapSchema: z.ZodType<LocationSitemapDefinition>;
|
|
129
|
+
export type LocationSitemap = z.infer<typeof LocationSitemapSchema>;
|
|
130
|
+
export {};
|
|
131
|
+
//# sourceMappingURL=sitemap.d.ts.map
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
// LLM AGENTS MAY NOT EDIT THIS FILE UNDER ANY CIRCUMSTANCES. DO NOT EDIT - generated from Kotlin data classes via OpenAPI. Edit the backend owner and run: make docs-openapi && make docs-zod
|
|
2
|
+
import { z } from "zod/v4";
|
|
3
|
+
import { LocationDirectoryEntrySchema } from "./directory-entry.js";
|
|
4
|
+
import { LocationSlugResolutionSchema } from "./slug-resolution.js";
|
|
5
|
+
import { PageResultLocationDirectoryEntrySchema, PageResultSitemapUrlSlotSchema, } from "../pagination/schemas.js";
|
|
6
|
+
const LocationSitemapSchemaDefinition = z.object({
|
|
7
|
+
company: PageResultSitemapUrlSlotSchema.nullish(),
|
|
8
|
+
/** Opaque continuation for the next company URL-slot page. */
|
|
9
|
+
companyNextCursor: z.string().nullish(),
|
|
10
|
+
directory: PageResultLocationDirectoryEntrySchema,
|
|
11
|
+
directoryLetterCount: z.record(z.string(), z.number().int()),
|
|
12
|
+
location: LocationDirectoryEntrySchema.nullish(),
|
|
13
|
+
locationLetterCount: z.record(z.string(), z.number().int()).nullish(),
|
|
14
|
+
requestedLetter: z.string(),
|
|
15
|
+
resolvedDirectoryLetter: z.string(),
|
|
16
|
+
resolvedLocationLetter: z.string().nullish(),
|
|
17
|
+
scope: z.string(),
|
|
18
|
+
slugResolution: LocationSlugResolutionSchema.nullish(),
|
|
19
|
+
});
|
|
20
|
+
/**
|
|
21
|
+
* Batch sitemap response with directory, exact letter counts, and optional company URL slots
|
|
22
|
+
*
|
|
23
|
+
* @openapiSchema LocationSitemap
|
|
24
|
+
* @endpoint POST /v1/addresses/locations/batch
|
|
25
|
+
* @contractShape location.sitemap
|
|
26
|
+
* @contractRole canonical
|
|
27
|
+
*/
|
|
28
|
+
export const LocationSitemapSchema = LocationSitemapSchemaDefinition;
|
|
29
|
+
//# sourceMappingURL=sitemap.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { z } from "zod/v4";
|
|
2
|
+
/**
|
|
3
|
+
* Slug resolution pair for sitemap hydration
|
|
4
|
+
*
|
|
5
|
+
* @openapiSchema LocationSlugResolution
|
|
6
|
+
* @endpoint POST /v1/addresses/locations/batch
|
|
7
|
+
* @usedBySchema LocationSitemapSchema
|
|
8
|
+
* @contractShape location.slug-resolution
|
|
9
|
+
* @contractRole canonical
|
|
10
|
+
*/
|
|
11
|
+
export declare const LocationSlugResolutionSchema: z.ZodObject<{
|
|
12
|
+
canonicalSlug: z.ZodString;
|
|
13
|
+
matched: z.ZodBoolean;
|
|
14
|
+
outcome: z.ZodOptional<z.ZodEnum<{
|
|
15
|
+
current: "current";
|
|
16
|
+
unpublished: "unpublished";
|
|
17
|
+
}>>;
|
|
18
|
+
seoSlug: z.ZodString;
|
|
19
|
+
}, z.core.$strip>;
|
|
20
|
+
export type LocationSlugResolution = z.infer<typeof LocationSlugResolutionSchema>;
|
|
21
|
+
//# sourceMappingURL=slug-resolution.d.ts.map
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// LLM AGENTS MAY NOT EDIT THIS FILE UNDER ANY CIRCUMSTANCES. DO NOT EDIT - generated from Kotlin data classes via OpenAPI. Edit the backend owner and run: make docs-openapi && make docs-zod
|
|
2
|
+
import { z } from "zod/v4";
|
|
3
|
+
import { LocationResolutionOutcomeSchema } from "./resolution-outcome.js";
|
|
4
|
+
/**
|
|
5
|
+
* Slug resolution pair for sitemap hydration
|
|
6
|
+
*
|
|
7
|
+
* @openapiSchema LocationSlugResolution
|
|
8
|
+
* @endpoint POST /v1/addresses/locations/batch
|
|
9
|
+
* @usedBySchema LocationSitemapSchema
|
|
10
|
+
* @contractShape location.slug-resolution
|
|
11
|
+
* @contractRole canonical
|
|
12
|
+
*/
|
|
13
|
+
export const LocationSlugResolutionSchema = z.object({
|
|
14
|
+
canonicalSlug: z.string(),
|
|
15
|
+
matched: z.boolean(),
|
|
16
|
+
/** Lifecycle outcome for the requested slug; absent or current means live, unpublished accompanies an HTTP 410 response. */
|
|
17
|
+
outcome: LocationResolutionOutcomeSchema.optional(),
|
|
18
|
+
seoSlug: z.string(),
|
|
19
|
+
});
|
|
20
|
+
//# sourceMappingURL=slug-resolution.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { z } from "zod/v4";
|
|
2
|
+
/**
|
|
3
|
+
* Target domain for media operations (logos, pictures, thumbnails)
|
|
4
|
+
*
|
|
5
|
+
* @openapiSchema MediaObjectType
|
|
6
|
+
* @endpoint GET /v1/media
|
|
7
|
+
* @endpoint GET /v1/entities/{entityId}/media/logo
|
|
8
|
+
* @endpoint GET /v1/news/{newsId}/media/thumbnail
|
|
9
|
+
* @endpoint GET /v1/people/{personId}/media/photo
|
|
10
|
+
* @usedBySchema MediaUploadSchema
|
|
11
|
+
* @contractShape media.object-type
|
|
12
|
+
* @contractRole canonical
|
|
13
|
+
*/
|
|
14
|
+
export declare const MediaObjectTypeSchema: z.ZodEnum<{
|
|
15
|
+
BLOG: "BLOG";
|
|
16
|
+
ENTITY: "ENTITY";
|
|
17
|
+
NEWS: "NEWS";
|
|
18
|
+
PERSON: "PERSON";
|
|
19
|
+
}>;
|
|
20
|
+
export type MediaObjectType = z.infer<typeof MediaObjectTypeSchema>;
|
|
21
|
+
//# sourceMappingURL=object-type.d.ts.map
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
// LLM AGENTS MAY NOT EDIT THIS FILE UNDER ANY CIRCUMSTANCES. DO NOT EDIT - generated from Kotlin data classes via OpenAPI. Edit the backend owner and run: make docs-openapi && make docs-zod
|
|
2
|
+
import { z } from "zod/v4";
|
|
3
|
+
/**
|
|
4
|
+
* Target domain for media operations (logos, pictures, thumbnails)
|
|
5
|
+
*
|
|
6
|
+
* @openapiSchema MediaObjectType
|
|
7
|
+
* @endpoint GET /v1/media
|
|
8
|
+
* @endpoint GET /v1/entities/{entityId}/media/logo
|
|
9
|
+
* @endpoint GET /v1/news/{newsId}/media/thumbnail
|
|
10
|
+
* @endpoint GET /v1/people/{personId}/media/photo
|
|
11
|
+
* @usedBySchema MediaUploadSchema
|
|
12
|
+
* @contractShape media.object-type
|
|
13
|
+
* @contractRole canonical
|
|
14
|
+
*/
|
|
15
|
+
export const MediaObjectTypeSchema = z.enum(["ENTITY", "PERSON", "NEWS", "BLOG"]);
|
|
16
|
+
//# sourceMappingURL=object-type.js.map
|