@pellux/goodvibes-sdk 0.25.20 → 0.26.0
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/_internal/contracts/artifacts/operator-contract.json +5000 -149
- package/dist/_internal/contracts/generated/foundation-client-types.d.ts +83 -15
- package/dist/_internal/contracts/generated/foundation-client-types.d.ts.map +1 -1
- package/dist/_internal/contracts/generated/foundation-metadata.d.ts +2 -2
- package/dist/_internal/contracts/generated/foundation-metadata.js +2 -2
- package/dist/_internal/contracts/generated/operator-contract.d.ts.map +1 -1
- package/dist/_internal/contracts/generated/operator-contract.js +5000 -149
- package/dist/_internal/contracts/generated/operator-method-ids.d.ts +1 -1
- package/dist/_internal/contracts/generated/operator-method-ids.d.ts.map +1 -1
- package/dist/_internal/contracts/generated/operator-method-ids.js +18 -0
- package/dist/_internal/daemon/context.d.ts +1 -0
- package/dist/_internal/daemon/context.d.ts.map +1 -1
- package/dist/_internal/daemon/knowledge-route-types.d.ts +1 -0
- package/dist/_internal/daemon/knowledge-route-types.d.ts.map +1 -1
- package/dist/_internal/daemon/knowledge-routes.d.ts +1 -1
- package/dist/_internal/daemon/knowledge-routes.d.ts.map +1 -1
- package/dist/_internal/daemon/knowledge-routes.js +30 -0
- package/dist/_internal/daemon/operator.d.ts +1 -1
- package/dist/_internal/daemon/operator.d.ts.map +1 -1
- package/dist/_internal/daemon/operator.js +2 -0
- package/dist/_internal/platform/cloudflare/hostnames.d.ts +14 -0
- package/dist/_internal/platform/cloudflare/hostnames.d.ts.map +1 -0
- package/dist/_internal/platform/cloudflare/hostnames.js +47 -0
- package/dist/_internal/platform/cloudflare/manager.d.ts.map +1 -1
- package/dist/_internal/platform/cloudflare/manager.js +18 -5
- package/dist/_internal/platform/cloudflare/resources.d.ts +1 -0
- package/dist/_internal/platform/cloudflare/resources.d.ts.map +1 -1
- package/dist/_internal/platform/cloudflare/resources.js +31 -3
- package/dist/_internal/platform/cloudflare/utils.d.ts +5 -0
- package/dist/_internal/platform/cloudflare/utils.d.ts.map +1 -1
- package/dist/_internal/platform/cloudflare/utils.js +33 -0
- package/dist/_internal/platform/control-plane/method-catalog-control-automation.js +7 -7
- package/dist/_internal/platform/control-plane/method-catalog-control-core.d.ts.map +1 -1
- package/dist/_internal/platform/control-plane/method-catalog-control-core.js +4 -9
- package/dist/_internal/platform/control-plane/method-catalog-homegraph.d.ts +3 -0
- package/dist/_internal/platform/control-plane/method-catalog-homegraph.d.ts.map +1 -0
- package/dist/_internal/platform/control-plane/method-catalog-homegraph.js +223 -0
- package/dist/_internal/platform/control-plane/method-catalog-knowledge.d.ts.map +1 -1
- package/dist/_internal/platform/control-plane/method-catalog-knowledge.js +23 -1
- package/dist/_internal/platform/control-plane/operator-contract-schemas-knowledge.d.ts +15 -1
- package/dist/_internal/platform/control-plane/operator-contract-schemas-knowledge.d.ts.map +1 -1
- package/dist/_internal/platform/control-plane/operator-contract-schemas-knowledge.js +118 -0
- package/dist/_internal/platform/daemon/facade-composition.d.ts.map +1 -1
- package/dist/_internal/platform/daemon/facade-composition.js +2 -0
- package/dist/_internal/platform/daemon/facade-types.d.ts +2 -1
- package/dist/_internal/platform/daemon/facade-types.d.ts.map +1 -1
- package/dist/_internal/platform/daemon/http/home-graph-routes.d.ts +18 -0
- package/dist/_internal/platform/daemon/http/home-graph-routes.d.ts.map +1 -0
- package/dist/_internal/platform/daemon/http/home-graph-routes.js +108 -0
- package/dist/_internal/platform/daemon/http/router-route-contexts.d.ts.map +1 -1
- package/dist/_internal/platform/daemon/http/router-route-contexts.js +1 -0
- package/dist/_internal/platform/daemon/http/router.d.ts +4 -1
- package/dist/_internal/platform/daemon/http/router.d.ts.map +1 -1
- package/dist/_internal/platform/daemon/http/router.js +16 -0
- package/dist/_internal/platform/daemon/types.d.ts +2 -1
- package/dist/_internal/platform/daemon/types.d.ts.map +1 -1
- package/dist/_internal/platform/knowledge/browser-history/discover.d.ts +3 -0
- package/dist/_internal/platform/knowledge/browser-history/discover.d.ts.map +1 -0
- package/dist/_internal/platform/knowledge/browser-history/discover.js +88 -0
- package/dist/_internal/platform/knowledge/browser-history/index.d.ts +7 -0
- package/dist/_internal/platform/knowledge/browser-history/index.d.ts.map +1 -0
- package/dist/_internal/platform/knowledge/browser-history/index.js +4 -0
- package/dist/_internal/platform/knowledge/browser-history/ingest.d.ts +12 -0
- package/dist/_internal/platform/knowledge/browser-history/ingest.d.ts.map +1 -0
- package/dist/_internal/platform/knowledge/browser-history/ingest.js +275 -0
- package/dist/_internal/platform/knowledge/browser-history/locked-db.d.ts +7 -0
- package/dist/_internal/platform/knowledge/browser-history/locked-db.d.ts.map +1 -0
- package/dist/_internal/platform/knowledge/browser-history/locked-db.js +38 -0
- package/dist/_internal/platform/knowledge/browser-history/paths.d.ts +15 -0
- package/dist/_internal/platform/knowledge/browser-history/paths.d.ts.map +1 -0
- package/dist/_internal/platform/knowledge/browser-history/paths.js +125 -0
- package/dist/_internal/platform/knowledge/browser-history/readers.d.ts +8 -0
- package/dist/_internal/platform/knowledge/browser-history/readers.d.ts.map +1 -0
- package/dist/_internal/platform/knowledge/browser-history/readers.js +374 -0
- package/dist/_internal/platform/knowledge/browser-history/types.d.ts +50 -0
- package/dist/_internal/platform/knowledge/browser-history/types.d.ts.map +1 -0
- package/dist/_internal/platform/knowledge/browser-history/types.js +1 -0
- package/dist/_internal/platform/knowledge/consolidation.js +2 -0
- package/dist/_internal/platform/knowledge/extractors.d.ts.map +1 -1
- package/dist/_internal/platform/knowledge/extractors.js +31 -0
- package/dist/_internal/platform/knowledge/graphql-schema.d.ts +1 -1
- package/dist/_internal/platform/knowledge/graphql-schema.d.ts.map +1 -1
- package/dist/_internal/platform/knowledge/graphql-schema.js +5 -5
- package/dist/_internal/platform/knowledge/graphql.d.ts.map +1 -1
- package/dist/_internal/platform/knowledge/graphql.js +16 -5
- package/dist/_internal/platform/knowledge/home-graph/helpers.d.ts +46 -0
- package/dist/_internal/platform/knowledge/home-graph/helpers.d.ts.map +1 -0
- package/dist/_internal/platform/knowledge/home-graph/helpers.js +230 -0
- package/dist/_internal/platform/knowledge/home-graph/index.d.ts +4 -0
- package/dist/_internal/platform/knowledge/home-graph/index.d.ts.map +1 -0
- package/dist/_internal/platform/knowledge/home-graph/index.js +2 -0
- package/dist/_internal/platform/knowledge/home-graph/rendering.d.ts +25 -0
- package/dist/_internal/platform/knowledge/home-graph/rendering.d.ts.map +1 -0
- package/dist/_internal/platform/knowledge/home-graph/rendering.js +139 -0
- package/dist/_internal/platform/knowledge/home-graph/service.d.ts +82 -0
- package/dist/_internal/platform/knowledge/home-graph/service.d.ts.map +1 -0
- package/dist/_internal/platform/knowledge/home-graph/service.js +654 -0
- package/dist/_internal/platform/knowledge/home-graph/state.d.ts +24 -0
- package/dist/_internal/platform/knowledge/home-graph/state.d.ts.map +1 -0
- package/dist/_internal/platform/knowledge/home-graph/state.js +96 -0
- package/dist/_internal/platform/knowledge/home-graph/types.d.ts +206 -0
- package/dist/_internal/platform/knowledge/home-graph/types.d.ts.map +1 -0
- package/dist/_internal/platform/knowledge/home-graph/types.js +33 -0
- package/dist/_internal/platform/knowledge/html-readability.d.ts +13 -0
- package/dist/_internal/platform/knowledge/html-readability.d.ts.map +1 -0
- package/dist/_internal/platform/knowledge/html-readability.js +66 -0
- package/dist/_internal/platform/knowledge/index.d.ts +6 -0
- package/dist/_internal/platform/knowledge/index.d.ts.map +1 -1
- package/dist/_internal/platform/knowledge/index.js +3 -0
- package/dist/_internal/platform/knowledge/internal.d.ts.map +1 -1
- package/dist/_internal/platform/knowledge/internal.js +1 -0
- package/dist/_internal/platform/knowledge/knowledge-api.d.ts +2 -0
- package/dist/_internal/platform/knowledge/knowledge-api.d.ts.map +1 -1
- package/dist/_internal/platform/knowledge/knowledge-api.js +1 -0
- package/dist/_internal/platform/knowledge/lint.js +1 -0
- package/dist/_internal/platform/knowledge/scheduling.d.ts.map +1 -1
- package/dist/_internal/platform/knowledge/scheduling.js +1 -0
- package/dist/_internal/platform/knowledge/service.d.ts +4 -0
- package/dist/_internal/platform/knowledge/service.d.ts.map +1 -1
- package/dist/_internal/platform/knowledge/service.js +15 -0
- package/dist/_internal/platform/knowledge/spaces.d.ts +19 -0
- package/dist/_internal/platform/knowledge/spaces.d.ts.map +1 -0
- package/dist/_internal/platform/knowledge/spaces.js +54 -0
- package/dist/_internal/platform/knowledge/types.d.ts +3 -3
- package/dist/_internal/platform/knowledge/types.d.ts.map +1 -1
- package/dist/_internal/platform/runtime/services.d.ts +2 -1
- package/dist/_internal/platform/runtime/services.d.ts.map +1 -1
- package/dist/_internal/platform/runtime/services.js +3 -1
- package/dist/_internal/platform/version.js +1 -1
- package/package.json +4 -1
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.