@blamejs/blamejs-shop 0.5.12 → 0.5.14
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/CHANGELOG.md +4 -0
- package/lib/asset-manifest.json +1 -1
- package/lib/sales-tax-filings.js +143 -0
- package/lib/vendor/MANIFEST.json +632 -416
- package/lib/vendor/blamejs/.clusterfuzzlite/Dockerfile +21 -10
- package/lib/vendor/blamejs/.clusterfuzzlite/build.sh +30 -9
- package/lib/vendor/blamejs/.github/dependabot.yml +8 -0
- package/lib/vendor/blamejs/.github/workflows/actions-lint.yml +3 -3
- package/lib/vendor/blamejs/.github/workflows/cflite_batch.yml +7 -2
- package/lib/vendor/blamejs/.github/workflows/cflite_pr.yml +7 -2
- package/lib/vendor/blamejs/.github/workflows/ci.yml +21 -21
- package/lib/vendor/blamejs/.github/workflows/codeql.yml +3 -3
- package/lib/vendor/blamejs/.github/workflows/npm-publish.yml +4 -4
- package/lib/vendor/blamejs/.github/workflows/release-container.yml +7 -7
- package/lib/vendor/blamejs/.github/workflows/scorecard.yml +3 -3
- package/lib/vendor/blamejs/.github/workflows/sha-to-tag-verify.yml +1 -1
- package/lib/vendor/blamejs/.gitignore +2 -0
- package/lib/vendor/blamejs/CHANGELOG.md +122 -0
- package/lib/vendor/blamejs/NOTICE +26 -1
- package/lib/vendor/blamejs/SECURITY.md +1 -1
- package/lib/vendor/blamejs/api-snapshot.json +207 -5
- package/lib/vendor/blamejs/docker/keycloak/realm-blamejs-test.json +29 -0
- package/lib/vendor/blamejs/examples/wiki/DEPLOY.md +1 -0
- package/lib/vendor/blamejs/examples/wiki/lib/build-app.js +31 -0
- package/lib/vendor/blamejs/examples/wiki/lib/source-comment-block-validator.js +109 -0
- package/lib/vendor/blamejs/examples/wiki/nginx.conf +106 -0
- package/lib/vendor/blamejs/examples/wiki/package-lock.json +1 -1
- package/lib/vendor/blamejs/examples/wiki/test/e2e.js +92 -0
- package/lib/vendor/blamejs/fuzz/asn1-der.fuzz.js +28 -0
- package/lib/vendor/blamejs/fuzz/cms-codec.fuzz.js +17 -0
- package/lib/vendor/blamejs/fuzz/link-header.fuzz.js +18 -0
- package/lib/vendor/blamejs/index.js +6 -0
- package/lib/vendor/blamejs/lib/a2a.js +4 -4
- package/lib/vendor/blamejs/lib/agent-idempotency.js +18 -2
- package/lib/vendor/blamejs/lib/agent-saga.js +36 -8
- package/lib/vendor/blamejs/lib/agent-snapshot.js +63 -6
- package/lib/vendor/blamejs/lib/app-shutdown.js +23 -20
- package/lib/vendor/blamejs/lib/archive-read.js +8 -0
- package/lib/vendor/blamejs/lib/archive-tar.js +12 -2
- package/lib/vendor/blamejs/lib/arg-parser.js +49 -5
- package/lib/vendor/blamejs/lib/asn1-der.js +12 -0
- package/lib/vendor/blamejs/lib/audit-sign.js +47 -1
- package/lib/vendor/blamejs/lib/audit.js +71 -8
- package/lib/vendor/blamejs/lib/auth/ciba.js +14 -2
- package/lib/vendor/blamejs/lib/auth/fido-mds3.js +58 -47
- package/lib/vendor/blamejs/lib/auth/jwt.js +34 -0
- package/lib/vendor/blamejs/lib/auth/oauth.js +90 -13
- package/lib/vendor/blamejs/lib/auth/oid4vci.js +20 -17
- package/lib/vendor/blamejs/lib/auth/openid-federation.js +214 -23
- package/lib/vendor/blamejs/lib/auth/saml.js +38 -20
- package/lib/vendor/blamejs/lib/auth/sd-jwt-vc.js +10 -4
- package/lib/vendor/blamejs/lib/backup/bundle.js +13 -3
- package/lib/vendor/blamejs/lib/backup/index.js +16 -5
- package/lib/vendor/blamejs/lib/backup/manifest.js +18 -5
- package/lib/vendor/blamejs/lib/base32.js +21 -0
- package/lib/vendor/blamejs/lib/break-glass.js +19 -10
- package/lib/vendor/blamejs/lib/bundler.js +5 -1
- package/lib/vendor/blamejs/lib/cache-status.js +3 -7
- package/lib/vendor/blamejs/lib/calendar.js +21 -1
- package/lib/vendor/blamejs/lib/cbor.js +12 -1
- package/lib/vendor/blamejs/lib/cert.js +29 -11
- package/lib/vendor/blamejs/lib/cli.js +94 -24
- package/lib/vendor/blamejs/lib/cloud-events.js +2 -2
- package/lib/vendor/blamejs/lib/cluster-provider-db.js +13 -3
- package/lib/vendor/blamejs/lib/codepoint-class.js +85 -0
- package/lib/vendor/blamejs/lib/compliance-ai-act-prohibited.js +8 -4
- package/lib/vendor/blamejs/lib/compliance-ai-act-transparency.js +19 -4
- package/lib/vendor/blamejs/lib/compliance-ai-act.js +6 -8
- package/lib/vendor/blamejs/lib/content-credentials.js +1 -1
- package/lib/vendor/blamejs/lib/content-digest.js +2 -1
- package/lib/vendor/blamejs/lib/cookies.js +13 -3
- package/lib/vendor/blamejs/lib/cose.js +31 -16
- package/lib/vendor/blamejs/lib/crypto-field.js +32 -0
- package/lib/vendor/blamejs/lib/crypto-oprf.js +11 -2
- package/lib/vendor/blamejs/lib/crypto-xwing.js +22 -4
- package/lib/vendor/blamejs/lib/crypto.js +314 -19
- package/lib/vendor/blamejs/lib/csp.js +11 -3
- package/lib/vendor/blamejs/lib/daemon.js +270 -24
- package/lib/vendor/blamejs/lib/dark-patterns.js +5 -2
- package/lib/vendor/blamejs/lib/db-declare-view.js +2 -2
- package/lib/vendor/blamejs/lib/db-query.js +34 -7
- package/lib/vendor/blamejs/lib/db.js +18 -6
- package/lib/vendor/blamejs/lib/dbsc.js +17 -0
- package/lib/vendor/blamejs/lib/dev.js +21 -2
- package/lib/vendor/blamejs/lib/dsr.js +157 -102
- package/lib/vendor/blamejs/lib/external-db.js +41 -2
- package/lib/vendor/blamejs/lib/file-upload.js +25 -7
- package/lib/vendor/blamejs/lib/flag-providers.js +27 -15
- package/lib/vendor/blamejs/lib/forms.js +113 -27
- package/lib/vendor/blamejs/lib/gate-contract.js +23 -10
- package/lib/vendor/blamejs/lib/gdpr-ropa.js +8 -1
- package/lib/vendor/blamejs/lib/guard-agent-registry.js +1 -1
- package/lib/vendor/blamejs/lib/guard-archive.js +2 -2
- package/lib/vendor/blamejs/lib/guard-cidr.js +27 -1
- package/lib/vendor/blamejs/lib/guard-graphql.js +30 -11
- package/lib/vendor/blamejs/lib/guard-html.js +26 -53
- package/lib/vendor/blamejs/lib/guard-image.js +24 -5
- package/lib/vendor/blamejs/lib/guard-imap-command.js +10 -2
- package/lib/vendor/blamejs/lib/guard-jmap.js +19 -3
- package/lib/vendor/blamejs/lib/guard-jwt.js +18 -2
- package/lib/vendor/blamejs/lib/guard-list-unsubscribe.js +2 -2
- package/lib/vendor/blamejs/lib/guard-managesieve-command.js +10 -2
- package/lib/vendor/blamejs/lib/guard-markdown.js +11 -24
- package/lib/vendor/blamejs/lib/guard-pdf.js +18 -2
- package/lib/vendor/blamejs/lib/guard-pop3-command.js +10 -2
- package/lib/vendor/blamejs/lib/guard-regex.js +8 -5
- package/lib/vendor/blamejs/lib/guard-svg.js +31 -32
- package/lib/vendor/blamejs/lib/guard-time.js +1 -1
- package/lib/vendor/blamejs/lib/guard-uuid.js +2 -2
- package/lib/vendor/blamejs/lib/html-balance.js +3 -3
- package/lib/vendor/blamejs/lib/http-client-cache.js +82 -4
- package/lib/vendor/blamejs/lib/http-client-cookie-jar.js +16 -1
- package/lib/vendor/blamejs/lib/http-client.js +39 -7
- package/lib/vendor/blamejs/lib/http-message-signature.js +35 -1
- package/lib/vendor/blamejs/lib/i18n-messageformat.js +31 -6
- package/lib/vendor/blamejs/lib/i18n.js +35 -21
- package/lib/vendor/blamejs/lib/incident-report.js +8 -1
- package/lib/vendor/blamejs/lib/ip-utils.js +11 -1
- package/lib/vendor/blamejs/lib/json-path.js +23 -1
- package/lib/vendor/blamejs/lib/jwk.js +20 -3
- package/lib/vendor/blamejs/lib/link-header.js +2 -1
- package/lib/vendor/blamejs/lib/log-stream-otlp-grpc.js +5 -1
- package/lib/vendor/blamejs/lib/log-stream-otlp.js +5 -1
- package/lib/vendor/blamejs/lib/log-stream.js +8 -3
- package/lib/vendor/blamejs/lib/mail-auth.js +123 -22
- package/lib/vendor/blamejs/lib/mail-bimi.js +1 -1
- package/lib/vendor/blamejs/lib/mail-bounce.js +8 -0
- package/lib/vendor/blamejs/lib/mail-crypto-pgp.js +46 -10
- package/lib/vendor/blamejs/lib/mail-dav.js +22 -3
- package/lib/vendor/blamejs/lib/mail-dkim.js +96 -30
- package/lib/vendor/blamejs/lib/mail-helo.js +6 -1
- package/lib/vendor/blamejs/lib/mail-scan.js +23 -16
- package/lib/vendor/blamejs/lib/mail-send-deliver.js +34 -8
- package/lib/vendor/blamejs/lib/mail-server-imap.js +3 -4
- package/lib/vendor/blamejs/lib/mail-server-managesieve.js +7 -11
- package/lib/vendor/blamejs/lib/mail-server-mx.js +93 -7
- package/lib/vendor/blamejs/lib/mail-server-registry.js +8 -2
- package/lib/vendor/blamejs/lib/mail.js +15 -5
- package/lib/vendor/blamejs/lib/metrics.js +268 -63
- package/lib/vendor/blamejs/lib/middleware/age-gate.js +7 -1
- package/lib/vendor/blamejs/lib/middleware/asyncapi-serve.js +1 -1
- package/lib/vendor/blamejs/lib/middleware/body-parser.js +19 -4
- package/lib/vendor/blamejs/lib/middleware/bot-guard.js +5 -9
- package/lib/vendor/blamejs/lib/middleware/csp-report.js +40 -8
- package/lib/vendor/blamejs/lib/middleware/csrf-protect.js +24 -10
- package/lib/vendor/blamejs/lib/middleware/dpop.js +10 -5
- package/lib/vendor/blamejs/lib/middleware/index.js +6 -1
- package/lib/vendor/blamejs/lib/middleware/nel.js +1 -1
- package/lib/vendor/blamejs/lib/middleware/openapi-serve.js +1 -1
- package/lib/vendor/blamejs/lib/middleware/rate-limit.js +12 -1
- package/lib/vendor/blamejs/lib/middleware/require-bound-key.js +1 -1
- package/lib/vendor/blamejs/lib/middleware/scim-server.js +1 -1
- package/lib/vendor/blamejs/lib/middleware/tus-upload.js +6 -2
- package/lib/vendor/blamejs/lib/mtls-ca.js +18 -2
- package/lib/vendor/blamejs/lib/network-dns-resolver.js +11 -1
- package/lib/vendor/blamejs/lib/network-dns.js +21 -2
- package/lib/vendor/blamejs/lib/network-tls.js +69 -7
- package/lib/vendor/blamejs/lib/nonce-store.js +9 -1
- package/lib/vendor/blamejs/lib/object-store/gcs.js +7 -0
- package/lib/vendor/blamejs/lib/object-store/sigv4.js +31 -0
- package/lib/vendor/blamejs/lib/observability-otlp-exporter.js +1 -1
- package/lib/vendor/blamejs/lib/outbox.js +1 -1
- package/lib/vendor/blamejs/lib/parsers/safe-ini.js +9 -1
- package/lib/vendor/blamejs/lib/parsers/safe-toml.js +10 -1
- package/lib/vendor/blamejs/lib/permissions.js +6 -3
- package/lib/vendor/blamejs/lib/pid-probe.js +55 -0
- package/lib/vendor/blamejs/lib/pqc-agent.js +8 -1
- package/lib/vendor/blamejs/lib/pqc-software.js +3 -3
- package/lib/vendor/blamejs/lib/pubsub.js +20 -9
- package/lib/vendor/blamejs/lib/queue-local.js +8 -1
- package/lib/vendor/blamejs/lib/queue-redis.js +5 -0
- package/lib/vendor/blamejs/lib/redact.js +54 -0
- package/lib/vendor/blamejs/lib/restore-bundle.js +10 -2
- package/lib/vendor/blamejs/lib/restore.js +19 -0
- package/lib/vendor/blamejs/lib/retention.js +12 -4
- package/lib/vendor/blamejs/lib/router.js +60 -6
- package/lib/vendor/blamejs/lib/safe-buffer.js +69 -0
- package/lib/vendor/blamejs/lib/safe-decompress.js +8 -2
- package/lib/vendor/blamejs/lib/safe-dns.js +25 -20
- package/lib/vendor/blamejs/lib/safe-ical.js +7 -3
- package/lib/vendor/blamejs/lib/safe-mime.js +12 -1
- package/lib/vendor/blamejs/lib/safe-object.js +80 -0
- package/lib/vendor/blamejs/lib/safe-path.js +52 -4
- package/lib/vendor/blamejs/lib/safe-redirect.js +10 -2
- package/lib/vendor/blamejs/lib/safe-schema.js +4 -1
- package/lib/vendor/blamejs/lib/safe-sieve.js +33 -1
- package/lib/vendor/blamejs/lib/safe-sql.js +88 -0
- package/lib/vendor/blamejs/lib/safe-vcard.js +7 -3
- package/lib/vendor/blamejs/lib/scheduler.js +8 -1
- package/lib/vendor/blamejs/lib/security-assert.js +6 -6
- package/lib/vendor/blamejs/lib/self-update-standalone-verifier.js +74 -27
- package/lib/vendor/blamejs/lib/self-update.js +517 -87
- package/lib/vendor/blamejs/lib/server-timing.js +2 -4
- package/lib/vendor/blamejs/lib/session.js +34 -12
- package/lib/vendor/blamejs/lib/sql.js +15 -1
- package/lib/vendor/blamejs/lib/ssrf-guard.js +52 -0
- package/lib/vendor/blamejs/lib/static.js +55 -13
- package/lib/vendor/blamejs/lib/storage.js +8 -2
- package/lib/vendor/blamejs/lib/subject.js +6 -1
- package/lib/vendor/blamejs/lib/tenant-quota.js +52 -13
- package/lib/vendor/blamejs/lib/tls-exporter.js +3 -3
- package/lib/vendor/blamejs/lib/tsa.js +34 -13
- package/lib/vendor/blamejs/lib/uri-template.js +8 -1
- package/lib/vendor/blamejs/lib/vault/index.js +13 -0
- package/lib/vendor/blamejs/lib/vc.js +44 -5
- package/lib/vendor/blamejs/lib/vendor/MANIFEST.json +26 -26
- package/lib/vendor/blamejs/lib/vendor/noble-ciphers.cjs +792 -1
- package/lib/vendor/blamejs/lib/vendor/noble-curves.cjs +3443 -1
- package/lib/vendor/blamejs/lib/vendor/noble-post-quantum.cjs +2737 -1
- package/lib/vendor/blamejs/lib/vendor/pki.cjs +39550 -13
- package/lib/vendor/blamejs/lib/vendor/public-suffix-list.dat +55 -53
- package/lib/vendor/blamejs/lib/vendor/public-suffix-list.data.js +5551 -5554
- package/lib/vendor/blamejs/lib/vendor/simplewebauthn-server.cjs +22459 -32
- package/lib/vendor/blamejs/lib/watcher.js +89 -17
- package/lib/vendor/blamejs/lib/webhook-dispatcher.js +25 -3
- package/lib/vendor/blamejs/lib/webhook.js +12 -2
- package/lib/vendor/blamejs/lib/ws-client.js +32 -1
- package/lib/vendor/blamejs/lib/xml-c14n.js +29 -1
- package/lib/vendor/blamejs/oss-fuzz/projects/blamejs/Dockerfile +1 -1
- package/lib/vendor/blamejs/package-lock.json +2 -2
- package/lib/vendor/blamejs/package.json +1 -1
- package/lib/vendor/blamejs/release-notes/v0.16.x.json +1462 -0
- package/lib/vendor/blamejs/release-notes/v0.17.0.json +31 -0
- package/lib/vendor/blamejs/release-notes/v0.17.1.json +31 -0
- package/lib/vendor/blamejs/release-notes/v0.17.10.json +30 -0
- package/lib/vendor/blamejs/release-notes/v0.17.11.json +22 -0
- package/lib/vendor/blamejs/release-notes/v0.17.12.json +18 -0
- package/lib/vendor/blamejs/release-notes/v0.17.13.json +77 -0
- package/lib/vendor/blamejs/release-notes/v0.17.14.json +40 -0
- package/lib/vendor/blamejs/release-notes/v0.17.15.json +18 -0
- package/lib/vendor/blamejs/release-notes/v0.17.16.json +27 -0
- package/lib/vendor/blamejs/release-notes/v0.17.17.json +31 -0
- package/lib/vendor/blamejs/release-notes/v0.17.18.json +18 -0
- package/lib/vendor/blamejs/release-notes/v0.17.19.json +18 -0
- package/lib/vendor/blamejs/release-notes/v0.17.2.json +26 -0
- package/lib/vendor/blamejs/release-notes/v0.17.20.json +43 -0
- package/lib/vendor/blamejs/release-notes/v0.17.21.json +26 -0
- package/lib/vendor/blamejs/release-notes/v0.17.22.json +18 -0
- package/lib/vendor/blamejs/release-notes/v0.17.3.json +43 -0
- package/lib/vendor/blamejs/release-notes/v0.17.4.json +35 -0
- package/lib/vendor/blamejs/release-notes/v0.17.5.json +26 -0
- package/lib/vendor/blamejs/release-notes/v0.17.6.json +26 -0
- package/lib/vendor/blamejs/release-notes/v0.17.7.json +35 -0
- package/lib/vendor/blamejs/release-notes/v0.17.8.json +22 -0
- package/lib/vendor/blamejs/release-notes/v0.17.9.json +26 -0
- package/lib/vendor/blamejs/scripts/validate-source-comment-blocks.js +4 -0
- package/lib/vendor/blamejs/scripts/vendor-update.sh +293 -9
- package/lib/vendor/blamejs/socket.yml +94 -0
- package/lib/vendor/blamejs/test/00-primitives.js +605 -0
- package/lib/vendor/blamejs/test/helpers/drivers.js +12 -9
- package/lib/vendor/blamejs/test/integration/audit-stack-mysql.test.js +90 -1
- package/lib/vendor/blamejs/test/integration/audit-stack-postgres.test.js +122 -1
- package/lib/vendor/blamejs/test/integration/data-layer-mysql.test.js +30 -0
- package/lib/vendor/blamejs/test/integration/data-layer-pg.test.js +29 -0
- package/lib/vendor/blamejs/test/integration/dsr-cluster-mysql.test.js +479 -0
- package/lib/vendor/blamejs/test/integration/dsr-cluster-pg.test.js +487 -0
- package/lib/vendor/blamejs/test/integration/federation-auth.test.js +313 -5
- package/lib/vendor/blamejs/test/integration/mail-dkim.test.js +80 -0
- package/lib/vendor/blamejs/test/integration/openid-federation-chain.test.js +275 -0
- package/lib/vendor/blamejs/test/integration/webhook-dispatcher-pg.test.js +96 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/a2a-tasks.test.js +401 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/acme.test.js +1649 -2
- package/lib/vendor/blamejs/test/layer-0-primitives/age-gate.test.js +33 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/agent-idempotency.test.js +0 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/agent-saga.test.js +60 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/agent-snapshot.test.js +524 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/api-encrypt.test.js +891 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/app-shutdown.test.js +128 -1
- package/lib/vendor/blamejs/test/layer-0-primitives/archive-adapters.test.js +271 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/archive-read.test.js +628 -1
- package/lib/vendor/blamejs/test/layer-0-primitives/archive-tar-read.test.js +0 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/archive-wrap.test.js +227 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/arg-parser.test.js +15 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/asn1-der.test.js +73 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/atomic-file.test.js +114 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/audit-sign-anchor.test.js +141 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/audit-tools.test.js +624 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/audit.test.js +769 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/auth-jwt-defenses.test.js +436 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/auth-oauth.test.js +1697 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/auth-oid4vp.test.js +495 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/auth-password.test.js +500 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/auth-saml.test.js +1809 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/auth-status-list.test.js +243 -1
- package/lib/vendor/blamejs/test/layer-0-primitives/backup-index.test.js +2226 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/backup-manifest-signature.test.js +183 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/base32.test.js +105 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/break-glass.test.js +693 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/cache.test.js +603 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/calendar.test.js +557 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/case-insensitive-security-token-guard.test.js +214 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/cbor.test.js +25 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/cert.test.js +843 -6
- package/lib/vendor/blamejs/test/layer-0-primitives/ciba-authreqid-binding.test.js +77 -2
- package/lib/vendor/blamejs/test/layer-0-primitives/ciba.test.js +866 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/clear-site-data.test.js +18 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/cli-erase.test.js +19 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/cli.test.js +2790 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/cluster-lease-renewal-ttl.test.js +114 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/cluster.test.js +1032 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/cms-codec.test.js +575 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/codebase-patterns.test.js +739 -1
- package/lib/vendor/blamejs/test/layer-0-primitives/codepoint-class.test.js +8 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/compliance-ai-act.test.js +194 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/compliance-lifecycle-proto-key.test.js +104 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/compliance-sanctions.test.js +254 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/content-credentials.test.js +613 -3
- package/lib/vendor/blamejs/test/layer-0-primitives/cookies.test.js +140 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/cose.test.js +407 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/crypto-adversarial.test.js +352 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/crypto-field-derived-hash.test.js +32 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/crypto-field.test.js +575 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/crypto-hash-files-parallel.test.js +10 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/crypto-hash-stream.test.js +24 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/crypto-oprf.test.js +17 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/crypto-spki-pin.test.js +183 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/crypto-xwing.test.js +48 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/crypto.test.js +345 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/csp-report.test.js +58 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/csv.test.js +48 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/daemon.test.js +459 -1
- package/lib/vendor/blamejs/test/layer-0-primitives/dark-patterns.test.js +19 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/db-query.test.js +1019 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/db-raw-residency-gate.test.js +77 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/db.test.js +1621 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/ddl-change-control.test.js +462 -3
- package/lib/vendor/blamejs/test/layer-0-primitives/dnssec.test.js +323 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/dpop-middleware-verify.test.js +562 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/dsr.test.js +901 -1
- package/lib/vendor/blamejs/test/layer-0-primitives/dual-control.test.js +249 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/external-db-migrate.test.js +561 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/external-db.test.js +1214 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/fal.test.js +21 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/fedcm-dbsc.test.js +46 -20
- package/lib/vendor/blamejs/test/layer-0-primitives/federation-vc-suite.test.js +147 -3
- package/lib/vendor/blamejs/test/layer-0-primitives/fido-mds3.test.js +907 -38
- package/lib/vendor/blamejs/test/layer-0-primitives/file-upload-content-safety-skip-audit.test.js +29 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/file-upload.test.js +1135 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/flag.test.js +30 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/forms.test.js +747 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/gate-contract.test.js +1855 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/gdpr-ropa.test.js +30 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/guard-archive.test.js +86 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/guard-auth.test.js +117 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/guard-cidr.test.js +151 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/guard-domain.test.js +422 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/guard-filename.test.js +424 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/{guard-gate-disposition-coverage.test.js → guard-gate-disposition.test.js} +1 -1
- package/lib/vendor/blamejs/test/layer-0-primitives/guard-graphql.test.js +340 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/guard-html.test.js +29 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/guard-idempotency-key.test.js +28 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/guard-image.test.js +519 -45
- package/lib/vendor/blamejs/test/layer-0-primitives/guard-imap-command.test.js +0 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/guard-jmap.test.js +51 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/guard-jsonpath.test.js +66 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/guard-jwt.test.js +436 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/guard-managesieve-command.test.js +25 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/guard-markdown.test.js +16 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/guard-mime.test.js +86 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/guard-oauth.test.js +140 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/guard-pdf.test.js +80 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/guard-pop3-command.test.js +27 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/guard-regex.test.js +99 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/guard-shell.test.js +76 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/{guard-sql-coverage.test.js → guard-sql.test.js} +3 -3
- package/lib/vendor/blamejs/test/layer-0-primitives/guard-svg.test.js +524 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/guard-template.test.js +71 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/guard-time.test.js +92 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/guard-uuid.test.js +86 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/html-balance.test.js +38 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/http-client-cache-authorization.test.js +347 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/http-client-cache.test.js +908 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/http-client.test.js +2874 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/http-message-signature.test.js +643 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/i18n-messageformat.test.js +38 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/i18n.test.js +1153 -1
- package/lib/vendor/blamejs/test/layer-0-primitives/idempotency-key.test.js +494 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/ip-utils.test.js +30 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/jsdoc-example-execution.test.js +177 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/json-path.test.js +103 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/json-schema.test.js +214 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/jwk.test.js +41 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/jwt-external.test.js +276 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/keychain.test.js +0 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/log-stream.test.js +241 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/log.test.js +106 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/mail-agent.test.js +441 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/mail-auth.test.js +2136 -4
- package/lib/vendor/blamejs/test/layer-0-primitives/mail-bimi.test.js +759 -12
- package/lib/vendor/blamejs/test/layer-0-primitives/mail-bounce.test.js +811 -1
- package/lib/vendor/blamejs/test/layer-0-primitives/mail-crypto-pgp-experimental.test.js +401 -3
- package/lib/vendor/blamejs/test/layer-0-primitives/mail-crypto-pgp.test.js +751 -8
- package/lib/vendor/blamejs/test/layer-0-primitives/mail-crypto-smime.test.js +864 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/mail-crypto.test.js +110 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/mail-dav.test.js +830 -1
- package/lib/vendor/blamejs/test/layer-0-primitives/mail-deploy.test.js +635 -86
- package/lib/vendor/blamejs/test/layer-0-primitives/mail-dkim.test.js +818 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/mail-helo.test.js +27 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/mail-scan.test.js +199 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/mail-send-deliver.test.js +686 -2
- package/lib/vendor/blamejs/test/layer-0-primitives/mail-server-imap.test.js +778 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/mail-server-jmap.test.js +1438 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/mail-server-managesieve.test.js +449 -6
- package/lib/vendor/blamejs/test/layer-0-primitives/mail-server-mx.test.js +773 -2
- package/lib/vendor/blamejs/test/layer-0-primitives/mail-server-pop3.test.js +623 -3
- package/lib/vendor/blamejs/test/layer-0-primitives/mail-server-rate-limit.test.js +55 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/mail-server-registry.test.js +13 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/mail-server-submission.test.js +877 -1
- package/lib/vendor/blamejs/test/layer-0-primitives/mail-sieve.test.js +326 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/mail-store-fts.test.js +55 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/mail-store.test.js +242 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/mail.test.js +1596 -2
- package/lib/vendor/blamejs/test/layer-0-primitives/mcp.test.js +440 -4
- package/lib/vendor/blamejs/test/layer-0-primitives/metrics-snapshot.test.js +89 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/metrics.test.js +1230 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/middleware-assetlinks.test.js +113 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/middleware-body-parser.test.js +1169 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/middleware-bot-disclose.test.js +123 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/middleware-cookies.test.js +108 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/middleware-gpc.test.js +121 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/middleware-headers.test.js +163 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/middleware-host-allowlist.test.js +154 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/middleware-require-content-type.test.js +127 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/{middleware-tus-upload-coverage.test.js → middleware-tus-upload.test.js} +45 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/middleware-web-app-manifest.test.js +132 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/mtls-ca-crl-fingerprint-only.test.js +92 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/network-dns-resolver.test.js +65 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/network-dns.test.js +1727 -1
- package/lib/vendor/blamejs/test/layer-0-primitives/network-nts.test.js +699 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/network-smtp-policy.test.js +1181 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/network-tls.test.js +1876 -3
- package/lib/vendor/blamejs/test/layer-0-primitives/network.test.js +32 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/nonce-store-enforce-replay-nonboolean.test.js +81 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/ntp-check.test.js +122 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/observability-tracing.test.js +378 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/observability.test.js +77 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/oid4vci.test.js +1016 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/openid-federation.test.js +946 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/outbox.test.js +818 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/own-property-membership-guards.test.js +109 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/parsers-safe-toml.test.js +543 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/{parsers-safe-yaml-coverage.test.js → parsers-safe-yaml.test.js} +2 -2
- package/lib/vendor/blamejs/test/layer-0-primitives/parsers-standalone.test.js +73 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/passkey.test.js +649 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/permissions.test.js +524 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/pqc-agent-curve.test.js +22 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/pubsub.test.js +295 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/queue-flow-repeat.test.js +36 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/queue.test.js +83 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/rate-limit-xff-spoofing.test.js +34 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/redact.test.js +1031 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/request-helpers.test.js +94 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/require-bound-key.test.js +401 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/restore-empty-manifest-wipe.test.js +154 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/retention.test.js +600 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/router-host-path-injection.test.js +231 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/router-tls0rtt.test.js +21 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/router.test.js +1277 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/safe-async.test.js +133 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/safe-buffer-linear-scans.test.js +14 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/safe-buffer.test.js +80 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/safe-decompress.test.js +28 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/safe-dns.test.js +245 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/safe-ical.test.js +32 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/safe-ini.test.js +376 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/safe-json.test.js +175 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/safe-mime.test.js +518 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/safe-object.test.js +62 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/safe-path.test.js +30 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/safe-schema.test.js +104 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/safe-sql.test.js +142 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/safe-url.test.js +112 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/safe-vcard.test.js +26 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/scheduler.test.js +157 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/scim-server.test.js +396 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/sd-jwt-vc.test.js +930 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/security-assert.test.js +755 -82
- package/lib/vendor/blamejs/test/layer-0-primitives/self-update.test.js +1053 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/session-device-binding.test.js +200 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/session-strict-binding-missing-failclosed.test.js +110 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/sigv4-bucket-ops.test.js +636 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/sql-offset-without-limit.test.js +94 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/sql.test.js +1190 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/ssrf-guard.test.js +21 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/static.test.js +850 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/storage-presigned-url.test.js +146 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/storage.test.js +621 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/subject.test.js +47 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/template.test.js +582 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/tenant-quota.test.js +587 -25
- package/lib/vendor/blamejs/test/layer-0-primitives/time.test.js +11 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/tsa.test.js +524 -63
- package/lib/vendor/blamejs/test/layer-0-primitives/uri-template.test.js +27 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/vault-rotate.test.js +866 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/vault.test.js +74 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/vc.test.js +215 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/watcher.test.js +550 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/webhook-dispatcher.test.js +388 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/webhook.test.js +262 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/websocket.test.js +1294 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/ws-client.test.js +629 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/xml-c14n-attr-normalization.test.js +164 -0
- package/lib/vendor/blamejs/test/smoke.js +2 -0
- package/package.json +1 -1
- package/lib/vendor/blamejs/release-notes/v0.16.0.json +0 -44
- package/lib/vendor/blamejs/release-notes/v0.16.1.json +0 -36
- package/lib/vendor/blamejs/release-notes/v0.16.2.json +0 -71
- package/lib/vendor/blamejs/release-notes/v0.16.3.json +0 -71
- package/lib/vendor/blamejs/test/layer-0-primitives/acme-coverage.test.js +0 -441
- package/lib/vendor/blamejs/test/layer-0-primitives/auth-oauth-coverage.test.js +0 -482
- package/lib/vendor/blamejs/test/layer-0-primitives/auth-saml-coverage.test.js +0 -671
- package/lib/vendor/blamejs/test/layer-0-primitives/backup-index-coverage.test.js +0 -690
- package/lib/vendor/blamejs/test/layer-0-primitives/cli-coverage.test.js +0 -238
- package/lib/vendor/blamejs/test/layer-0-primitives/content-credentials-coverage.test.js +0 -319
- package/lib/vendor/blamejs/test/layer-0-primitives/keychain-coverage.test.js +0 -0
- package/lib/vendor/blamejs/test/layer-0-primitives/mail-auth-coverage.test.js +0 -437
- package/lib/vendor/blamejs/test/layer-0-primitives/mcp-coverage.test.js +0 -443
- package/lib/vendor/blamejs/test/layer-0-primitives/metrics-coverage.test.js +0 -395
- package/lib/vendor/blamejs/test/layer-0-primitives/network-smtp-policy-coverage.test.js +0 -565
- package/lib/vendor/blamejs/test/layer-0-primitives/router-coverage.test.js +0 -592
- package/lib/vendor/blamejs/test/layer-0-primitives/sql-coverage.test.js +0 -422
- package/lib/vendor/blamejs/test/layer-0-primitives/test-coverage.test.js +0 -573
package/lib/vendor/MANIFEST.json
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
"_about": "blamejs.shop vendors a single framework — blamejs — which itself bundles every server-side crypto/identity dependency. The transitive packages blamejs ships are surfaced in its own MANIFEST.json at lib/vendor/blamejs/lib/vendor/MANIFEST.json — Trivy / Grype rely on that nested data for CVE attribution.",
|
|
4
4
|
"packages": {
|
|
5
5
|
"blamejs": {
|
|
6
|
-
"version": "0.
|
|
7
|
-
"tag": "v0.
|
|
6
|
+
"version": "0.17.22",
|
|
7
|
+
"tag": "v0.17.22",
|
|
8
8
|
"license": "Apache-2.0",
|
|
9
9
|
"author": "blamejs contributors",
|
|
10
10
|
"source": "https://github.com/blamejs/blamejs",
|
|
@@ -109,6 +109,7 @@
|
|
|
109
109
|
"examples/wiki/lib/source-doc-parser.js": "lib/vendor/blamejs/examples/wiki/lib/source-doc-parser.js",
|
|
110
110
|
"examples/wiki/lib/symbol-index.js": "lib/vendor/blamejs/examples/wiki/lib/symbol-index.js",
|
|
111
111
|
"examples/wiki/migrations/0001-pages-schema.js": "lib/vendor/blamejs/examples/wiki/migrations/0001-pages-schema.js",
|
|
112
|
+
"examples/wiki/nginx.conf": "lib/vendor/blamejs/examples/wiki/nginx.conf",
|
|
112
113
|
"examples/wiki/package-lock.json": "lib/vendor/blamejs/examples/wiki/package-lock.json",
|
|
113
114
|
"examples/wiki/package.json": "lib/vendor/blamejs/examples/wiki/package.json",
|
|
114
115
|
"examples/wiki/public/img/blamejs-logo.png": "lib/vendor/blamejs/examples/wiki/public/img/blamejs-logo.png",
|
|
@@ -153,6 +154,8 @@
|
|
|
153
154
|
"examples/wiki/wiki.config.js": "lib/vendor/blamejs/examples/wiki/wiki.config.js",
|
|
154
155
|
"fuzz/README.md": "lib/vendor/blamejs/fuzz/README.md",
|
|
155
156
|
"fuzz/_expected.js": "lib/vendor/blamejs/fuzz/_expected.js",
|
|
157
|
+
"fuzz/asn1-der.fuzz.js": "lib/vendor/blamejs/fuzz/asn1-der.fuzz.js",
|
|
158
|
+
"fuzz/cms-codec.fuzz.js": "lib/vendor/blamejs/fuzz/cms-codec.fuzz.js",
|
|
156
159
|
"fuzz/guard-agent-registry.fuzz.js": "lib/vendor/blamejs/fuzz/guard-agent-registry.fuzz.js",
|
|
157
160
|
"fuzz/guard-csv.fuzz.js": "lib/vendor/blamejs/fuzz/guard-csv.fuzz.js",
|
|
158
161
|
"fuzz/guard-csv_seed_corpus/01-basic.csv": "lib/vendor/blamejs/fuzz/guard-csv_seed_corpus/01-basic.csv",
|
|
@@ -212,6 +215,7 @@
|
|
|
212
215
|
"fuzz/guard-yaml_seed_corpus/02-anchor.yaml": "lib/vendor/blamejs/fuzz/guard-yaml_seed_corpus/02-anchor.yaml",
|
|
213
216
|
"fuzz/guard-yaml_seed_corpus/03-norway.yaml": "lib/vendor/blamejs/fuzz/guard-yaml_seed_corpus/03-norway.yaml",
|
|
214
217
|
"fuzz/guard-yaml_seed_corpus/04-multidoc.yaml": "lib/vendor/blamejs/fuzz/guard-yaml_seed_corpus/04-multidoc.yaml",
|
|
218
|
+
"fuzz/link-header.fuzz.js": "lib/vendor/blamejs/fuzz/link-header.fuzz.js",
|
|
215
219
|
"fuzz/package-lock.json": "lib/vendor/blamejs/fuzz/package-lock.json",
|
|
216
220
|
"fuzz/package.json": "lib/vendor/blamejs/fuzz/package.json",
|
|
217
221
|
"fuzz/parsers__safe-ini.fuzz.js": "lib/vendor/blamejs/fuzz/parsers__safe-ini.fuzz.js",
|
|
@@ -698,6 +702,7 @@
|
|
|
698
702
|
"lib/parsers/safe-yaml.js": "lib/vendor/blamejs/lib/parsers/safe-yaml.js",
|
|
699
703
|
"lib/permissions.js": "lib/vendor/blamejs/lib/permissions.js",
|
|
700
704
|
"lib/pick.js": "lib/vendor/blamejs/lib/pick.js",
|
|
705
|
+
"lib/pid-probe.js": "lib/vendor/blamejs/lib/pid-probe.js",
|
|
701
706
|
"lib/pipl-cn.js": "lib/vendor/blamejs/lib/pipl-cn.js",
|
|
702
707
|
"lib/pqc-agent.js": "lib/vendor/blamejs/lib/pqc-agent.js",
|
|
703
708
|
"lib/pqc-gate.js": "lib/vendor/blamejs/lib/pqc-gate.js",
|
|
@@ -740,6 +745,7 @@
|
|
|
740
745
|
"lib/safe-jsonpath.js": "lib/vendor/blamejs/lib/safe-jsonpath.js",
|
|
741
746
|
"lib/safe-mime.js": "lib/vendor/blamejs/lib/safe-mime.js",
|
|
742
747
|
"lib/safe-mount-info.js": "lib/vendor/blamejs/lib/safe-mount-info.js",
|
|
748
|
+
"lib/safe-object.js": "lib/vendor/blamejs/lib/safe-object.js",
|
|
743
749
|
"lib/safe-path.js": "lib/vendor/blamejs/lib/safe-path.js",
|
|
744
750
|
"lib/safe-redirect.js": "lib/vendor/blamejs/lib/safe-redirect.js",
|
|
745
751
|
"lib/safe-schema.js": "lib/vendor/blamejs/lib/safe-schema.js",
|
|
@@ -835,10 +841,30 @@
|
|
|
835
841
|
"release-notes/v0.13.x.json": "lib/vendor/blamejs/release-notes/v0.13.x.json",
|
|
836
842
|
"release-notes/v0.14.x.json": "lib/vendor/blamejs/release-notes/v0.14.x.json",
|
|
837
843
|
"release-notes/v0.15.x.json": "lib/vendor/blamejs/release-notes/v0.15.x.json",
|
|
838
|
-
"release-notes/v0.16.
|
|
839
|
-
"release-notes/v0.
|
|
840
|
-
"release-notes/v0.
|
|
841
|
-
"release-notes/v0.
|
|
844
|
+
"release-notes/v0.16.x.json": "lib/vendor/blamejs/release-notes/v0.16.x.json",
|
|
845
|
+
"release-notes/v0.17.0.json": "lib/vendor/blamejs/release-notes/v0.17.0.json",
|
|
846
|
+
"release-notes/v0.17.1.json": "lib/vendor/blamejs/release-notes/v0.17.1.json",
|
|
847
|
+
"release-notes/v0.17.10.json": "lib/vendor/blamejs/release-notes/v0.17.10.json",
|
|
848
|
+
"release-notes/v0.17.11.json": "lib/vendor/blamejs/release-notes/v0.17.11.json",
|
|
849
|
+
"release-notes/v0.17.12.json": "lib/vendor/blamejs/release-notes/v0.17.12.json",
|
|
850
|
+
"release-notes/v0.17.13.json": "lib/vendor/blamejs/release-notes/v0.17.13.json",
|
|
851
|
+
"release-notes/v0.17.14.json": "lib/vendor/blamejs/release-notes/v0.17.14.json",
|
|
852
|
+
"release-notes/v0.17.15.json": "lib/vendor/blamejs/release-notes/v0.17.15.json",
|
|
853
|
+
"release-notes/v0.17.16.json": "lib/vendor/blamejs/release-notes/v0.17.16.json",
|
|
854
|
+
"release-notes/v0.17.17.json": "lib/vendor/blamejs/release-notes/v0.17.17.json",
|
|
855
|
+
"release-notes/v0.17.18.json": "lib/vendor/blamejs/release-notes/v0.17.18.json",
|
|
856
|
+
"release-notes/v0.17.19.json": "lib/vendor/blamejs/release-notes/v0.17.19.json",
|
|
857
|
+
"release-notes/v0.17.2.json": "lib/vendor/blamejs/release-notes/v0.17.2.json",
|
|
858
|
+
"release-notes/v0.17.20.json": "lib/vendor/blamejs/release-notes/v0.17.20.json",
|
|
859
|
+
"release-notes/v0.17.21.json": "lib/vendor/blamejs/release-notes/v0.17.21.json",
|
|
860
|
+
"release-notes/v0.17.22.json": "lib/vendor/blamejs/release-notes/v0.17.22.json",
|
|
861
|
+
"release-notes/v0.17.3.json": "lib/vendor/blamejs/release-notes/v0.17.3.json",
|
|
862
|
+
"release-notes/v0.17.4.json": "lib/vendor/blamejs/release-notes/v0.17.4.json",
|
|
863
|
+
"release-notes/v0.17.5.json": "lib/vendor/blamejs/release-notes/v0.17.5.json",
|
|
864
|
+
"release-notes/v0.17.6.json": "lib/vendor/blamejs/release-notes/v0.17.6.json",
|
|
865
|
+
"release-notes/v0.17.7.json": "lib/vendor/blamejs/release-notes/v0.17.7.json",
|
|
866
|
+
"release-notes/v0.17.8.json": "lib/vendor/blamejs/release-notes/v0.17.8.json",
|
|
867
|
+
"release-notes/v0.17.9.json": "lib/vendor/blamejs/release-notes/v0.17.9.json",
|
|
842
868
|
"release-notes/v0.2.x.json": "lib/vendor/blamejs/release-notes/v0.2.x.json",
|
|
843
869
|
"release-notes/v0.3.x.json": "lib/vendor/blamejs/release-notes/v0.3.x.json",
|
|
844
870
|
"release-notes/v0.4.x.json": "lib/vendor/blamejs/release-notes/v0.4.x.json",
|
|
@@ -874,6 +900,7 @@
|
|
|
874
900
|
"scripts/vendor-data-gen.js": "lib/vendor/blamejs/scripts/vendor-data-gen.js",
|
|
875
901
|
"scripts/vendor-data-keygen.js": "lib/vendor/blamejs/scripts/vendor-data-keygen.js",
|
|
876
902
|
"scripts/vendor-update.sh": "lib/vendor/blamejs/scripts/vendor-update.sh",
|
|
903
|
+
"socket.yml": "lib/vendor/blamejs/socket.yml",
|
|
877
904
|
"test/00-primitives.js": "lib/vendor/blamejs/test/00-primitives.js",
|
|
878
905
|
"test/10-state.js": "lib/vendor/blamejs/test/10-state.js",
|
|
879
906
|
"test/20-db.js": "lib/vendor/blamejs/test/20-db.js",
|
|
@@ -916,6 +943,8 @@
|
|
|
916
943
|
"test/integration/db-layer-mysql.test.js": "lib/vendor/blamejs/test/integration/db-layer-mysql.test.js",
|
|
917
944
|
"test/integration/db-layer-postgres.test.js": "lib/vendor/blamejs/test/integration/db-layer-postgres.test.js",
|
|
918
945
|
"test/integration/distributed-scheduler-fencing-pg.test.js": "lib/vendor/blamejs/test/integration/distributed-scheduler-fencing-pg.test.js",
|
|
946
|
+
"test/integration/dsr-cluster-mysql.test.js": "lib/vendor/blamejs/test/integration/dsr-cluster-mysql.test.js",
|
|
947
|
+
"test/integration/dsr-cluster-pg.test.js": "lib/vendor/blamejs/test/integration/dsr-cluster-pg.test.js",
|
|
919
948
|
"test/integration/external-db-postgres.test.js": "lib/vendor/blamejs/test/integration/external-db-postgres.test.js",
|
|
920
949
|
"test/integration/federation-auth.test.js": "lib/vendor/blamejs/test/integration/federation-auth.test.js",
|
|
921
950
|
"test/integration/framework-schema-mysql.test.js": "lib/vendor/blamejs/test/integration/framework-schema-mysql.test.js",
|
|
@@ -933,6 +962,7 @@
|
|
|
933
962
|
"test/integration/object-store-gcs.test.js": "lib/vendor/blamejs/test/integration/object-store-gcs.test.js",
|
|
934
963
|
"test/integration/object-store-sigv4.test.js": "lib/vendor/blamejs/test/integration/object-store-sigv4.test.js",
|
|
935
964
|
"test/integration/object-store-worm-lock.test.js": "lib/vendor/blamejs/test/integration/object-store-worm-lock.test.js",
|
|
965
|
+
"test/integration/openid-federation-chain.test.js": "lib/vendor/blamejs/test/integration/openid-federation-chain.test.js",
|
|
936
966
|
"test/integration/pqc-pkcs8-forward-compat.test.js": "lib/vendor/blamejs/test/integration/pqc-pkcs8-forward-compat.test.js",
|
|
937
967
|
"test/integration/pubsub.test.js": "lib/vendor/blamejs/test/integration/pubsub.test.js",
|
|
938
968
|
"test/integration/queue-cluster-mysql.test.js": "lib/vendor/blamejs/test/integration/queue-cluster-mysql.test.js",
|
|
@@ -950,7 +980,6 @@
|
|
|
950
980
|
"test/layer-0-primitives/a2a-tasks.test.js": "lib/vendor/blamejs/test/layer-0-primitives/a2a-tasks.test.js",
|
|
951
981
|
"test/layer-0-primitives/a2a.test.js": "lib/vendor/blamejs/test/layer-0-primitives/a2a.test.js",
|
|
952
982
|
"test/layer-0-primitives/access-lock.test.js": "lib/vendor/blamejs/test/layer-0-primitives/access-lock.test.js",
|
|
953
|
-
"test/layer-0-primitives/acme-coverage.test.js": "lib/vendor/blamejs/test/layer-0-primitives/acme-coverage.test.js",
|
|
954
983
|
"test/layer-0-primitives/acme-failclosed.test.js": "lib/vendor/blamejs/test/layer-0-primitives/acme-failclosed.test.js",
|
|
955
984
|
"test/layer-0-primitives/acme.test.js": "lib/vendor/blamejs/test/layer-0-primitives/acme.test.js",
|
|
956
985
|
"test/layer-0-primitives/age-gate.test.js": "lib/vendor/blamejs/test/layer-0-primitives/age-gate.test.js",
|
|
@@ -980,10 +1009,12 @@
|
|
|
980
1009
|
"test/layer-0-primitives/api-encrypt-rejection-envelope.test.js": "lib/vendor/blamejs/test/layer-0-primitives/api-encrypt-rejection-envelope.test.js",
|
|
981
1010
|
"test/layer-0-primitives/api-encrypt.test.js": "lib/vendor/blamejs/test/layer-0-primitives/api-encrypt.test.js",
|
|
982
1011
|
"test/layer-0-primitives/app-shutdown.test.js": "lib/vendor/blamejs/test/layer-0-primitives/app-shutdown.test.js",
|
|
1012
|
+
"test/layer-0-primitives/archive-adapters.test.js": "lib/vendor/blamejs/test/layer-0-primitives/archive-adapters.test.js",
|
|
983
1013
|
"test/layer-0-primitives/archive-gz.test.js": "lib/vendor/blamejs/test/layer-0-primitives/archive-gz.test.js",
|
|
984
1014
|
"test/layer-0-primitives/archive-read.test.js": "lib/vendor/blamejs/test/layer-0-primitives/archive-read.test.js",
|
|
985
1015
|
"test/layer-0-primitives/archive-sniff-envelope.test.js": "lib/vendor/blamejs/test/layer-0-primitives/archive-sniff-envelope.test.js",
|
|
986
1016
|
"test/layer-0-primitives/archive-tar-hardening.test.js": "lib/vendor/blamejs/test/layer-0-primitives/archive-tar-hardening.test.js",
|
|
1017
|
+
"test/layer-0-primitives/archive-tar-read.test.js": "lib/vendor/blamejs/test/layer-0-primitives/archive-tar-read.test.js",
|
|
987
1018
|
"test/layer-0-primitives/archive-tar.test.js": "lib/vendor/blamejs/test/layer-0-primitives/archive-tar.test.js",
|
|
988
1019
|
"test/layer-0-primitives/archive-wrap-passphrase.test.js": "lib/vendor/blamejs/test/layer-0-primitives/archive-wrap-passphrase.test.js",
|
|
989
1020
|
"test/layer-0-primitives/archive-wrap.test.js": "lib/vendor/blamejs/test/layer-0-primitives/archive-wrap.test.js",
|
|
@@ -1001,6 +1032,7 @@
|
|
|
1001
1032
|
"test/layer-0-primitives/atomic-file-rename-retry.test.js": "lib/vendor/blamejs/test/layer-0-primitives/atomic-file-rename-retry.test.js",
|
|
1002
1033
|
"test/layer-0-primitives/atomic-file-write-excl.test.js": "lib/vendor/blamejs/test/layer-0-primitives/atomic-file-write-excl.test.js",
|
|
1003
1034
|
"test/layer-0-primitives/atomic-file-write-stream.test.js": "lib/vendor/blamejs/test/layer-0-primitives/atomic-file-write-stream.test.js",
|
|
1035
|
+
"test/layer-0-primitives/atomic-file.test.js": "lib/vendor/blamejs/test/layer-0-primitives/atomic-file.test.js",
|
|
1004
1036
|
"test/layer-0-primitives/attach-user-bearer-scheme.test.js": "lib/vendor/blamejs/test/layer-0-primitives/attach-user-bearer-scheme.test.js",
|
|
1005
1037
|
"test/layer-0-primitives/audit-chain-corrupted-anchor.test.js": "lib/vendor/blamejs/test/layer-0-primitives/audit-chain-corrupted-anchor.test.js",
|
|
1006
1038
|
"test/layer-0-primitives/audit-chain-incremental-verify.test.js": "lib/vendor/blamejs/test/layer-0-primitives/audit-chain-incremental-verify.test.js",
|
|
@@ -1017,26 +1049,30 @@
|
|
|
1017
1049
|
"test/layer-0-primitives/audit-signing-key-rotation.test.js": "lib/vendor/blamejs/test/layer-0-primitives/audit-signing-key-rotation.test.js",
|
|
1018
1050
|
"test/layer-0-primitives/audit-tools-dual-control.test.js": "lib/vendor/blamejs/test/layer-0-primitives/audit-tools-dual-control.test.js",
|
|
1019
1051
|
"test/layer-0-primitives/audit-tools-return-bytes.test.js": "lib/vendor/blamejs/test/layer-0-primitives/audit-tools-return-bytes.test.js",
|
|
1052
|
+
"test/layer-0-primitives/audit-tools.test.js": "lib/vendor/blamejs/test/layer-0-primitives/audit-tools.test.js",
|
|
1020
1053
|
"test/layer-0-primitives/audit-use-store.test.js": "lib/vendor/blamejs/test/layer-0-primitives/audit-use-store.test.js",
|
|
1021
1054
|
"test/layer-0-primitives/audit-verifybundle-tamper.test.js": "lib/vendor/blamejs/test/layer-0-primitives/audit-verifybundle-tamper.test.js",
|
|
1055
|
+
"test/layer-0-primitives/audit.test.js": "lib/vendor/blamejs/test/layer-0-primitives/audit.test.js",
|
|
1022
1056
|
"test/layer-0-primitives/auth-bot-challenge-verifier.test.js": "lib/vendor/blamejs/test/layer-0-primitives/auth-bot-challenge-verifier.test.js",
|
|
1023
1057
|
"test/layer-0-primitives/auth-bot-challenge.test.js": "lib/vendor/blamejs/test/layer-0-primitives/auth-bot-challenge.test.js",
|
|
1024
1058
|
"test/layer-0-primitives/auth-jar.test.js": "lib/vendor/blamejs/test/layer-0-primitives/auth-jar.test.js",
|
|
1025
1059
|
"test/layer-0-primitives/auth-jwt-defenses.test.js": "lib/vendor/blamejs/test/layer-0-primitives/auth-jwt-defenses.test.js",
|
|
1026
1060
|
"test/layer-0-primitives/auth-lockout.test.js": "lib/vendor/blamejs/test/layer-0-primitives/auth-lockout.test.js",
|
|
1027
|
-
"test/layer-0-primitives/auth-oauth-coverage.test.js": "lib/vendor/blamejs/test/layer-0-primitives/auth-oauth-coverage.test.js",
|
|
1028
1061
|
"test/layer-0-primitives/auth-oauth-failclosed.test.js": "lib/vendor/blamejs/test/layer-0-primitives/auth-oauth-failclosed.test.js",
|
|
1062
|
+
"test/layer-0-primitives/auth-oauth.test.js": "lib/vendor/blamejs/test/layer-0-primitives/auth-oauth.test.js",
|
|
1063
|
+
"test/layer-0-primitives/auth-oid4vp.test.js": "lib/vendor/blamejs/test/layer-0-primitives/auth-oid4vp.test.js",
|
|
1029
1064
|
"test/layer-0-primitives/auth-password-audit.test.js": "lib/vendor/blamejs/test/layer-0-primitives/auth-password-audit.test.js",
|
|
1030
|
-
"test/layer-0-primitives/auth-
|
|
1065
|
+
"test/layer-0-primitives/auth-password.test.js": "lib/vendor/blamejs/test/layer-0-primitives/auth-password.test.js",
|
|
1031
1066
|
"test/layer-0-primitives/auth-saml-failclosed.test.js": "lib/vendor/blamejs/test/layer-0-primitives/auth-saml-failclosed.test.js",
|
|
1067
|
+
"test/layer-0-primitives/auth-saml.test.js": "lib/vendor/blamejs/test/layer-0-primitives/auth-saml.test.js",
|
|
1032
1068
|
"test/layer-0-primitives/auth-status-list.test.js": "lib/vendor/blamejs/test/layer-0-primitives/auth-status-list.test.js",
|
|
1033
1069
|
"test/layer-0-primitives/azure-blob-bucket-ops.test.js": "lib/vendor/blamejs/test/layer-0-primitives/azure-blob-bucket-ops.test.js",
|
|
1034
1070
|
"test/layer-0-primitives/azure-blob-key-encoding.test.js": "lib/vendor/blamejs/test/layer-0-primitives/azure-blob-key-encoding.test.js",
|
|
1035
1071
|
"test/layer-0-primitives/backup-bundle-info.test.js": "lib/vendor/blamejs/test/layer-0-primitives/backup-bundle-info.test.js",
|
|
1036
1072
|
"test/layer-0-primitives/backup-clone-bundle.test.js": "lib/vendor/blamejs/test/layer-0-primitives/backup-clone-bundle.test.js",
|
|
1037
1073
|
"test/layer-0-primitives/backup-find-bundles.test.js": "lib/vendor/blamejs/test/layer-0-primitives/backup-find-bundles.test.js",
|
|
1038
|
-
"test/layer-0-primitives/backup-index-coverage.test.js": "lib/vendor/blamejs/test/layer-0-primitives/backup-index-coverage.test.js",
|
|
1039
1074
|
"test/layer-0-primitives/backup-index-failclosed.test.js": "lib/vendor/blamejs/test/layer-0-primitives/backup-index-failclosed.test.js",
|
|
1075
|
+
"test/layer-0-primitives/backup-index.test.js": "lib/vendor/blamejs/test/layer-0-primitives/backup-index.test.js",
|
|
1040
1076
|
"test/layer-0-primitives/backup-key-rotation.test.js": "lib/vendor/blamejs/test/layer-0-primitives/backup-key-rotation.test.js",
|
|
1041
1077
|
"test/layer-0-primitives/backup-manifest-signature.test.js": "lib/vendor/blamejs/test/layer-0-primitives/backup-manifest-signature.test.js",
|
|
1042
1078
|
"test/layer-0-primitives/backup-object-store-adapter.test.js": "lib/vendor/blamejs/test/layer-0-primitives/backup-object-store-adapter.test.js",
|
|
@@ -1064,17 +1100,18 @@
|
|
|
1064
1100
|
"test/layer-0-primitives/calendar.test.js": "lib/vendor/blamejs/test/layer-0-primitives/calendar.test.js",
|
|
1065
1101
|
"test/layer-0-primitives/canonical-json-jcs.test.js": "lib/vendor/blamejs/test/layer-0-primitives/canonical-json-jcs.test.js",
|
|
1066
1102
|
"test/layer-0-primitives/canonical-json.test.js": "lib/vendor/blamejs/test/layer-0-primitives/canonical-json.test.js",
|
|
1103
|
+
"test/layer-0-primitives/case-insensitive-security-token-guard.test.js": "lib/vendor/blamejs/test/layer-0-primitives/case-insensitive-security-token-guard.test.js",
|
|
1067
1104
|
"test/layer-0-primitives/cbor.test.js": "lib/vendor/blamejs/test/layer-0-primitives/cbor.test.js",
|
|
1068
1105
|
"test/layer-0-primitives/cdn-cache-control.test.js": "lib/vendor/blamejs/test/layer-0-primitives/cdn-cache-control.test.js",
|
|
1069
1106
|
"test/layer-0-primitives/cert.test.js": "lib/vendor/blamejs/test/layer-0-primitives/cert.test.js",
|
|
1070
1107
|
"test/layer-0-primitives/chain-writer-multichain.test.js": "lib/vendor/blamejs/test/layer-0-primitives/chain-writer-multichain.test.js",
|
|
1071
1108
|
"test/layer-0-primitives/ciba-authreqid-binding.test.js": "lib/vendor/blamejs/test/layer-0-primitives/ciba-authreqid-binding.test.js",
|
|
1109
|
+
"test/layer-0-primitives/ciba.test.js": "lib/vendor/blamejs/test/layer-0-primitives/ciba.test.js",
|
|
1072
1110
|
"test/layer-0-primitives/clear-site-data.test.js": "lib/vendor/blamejs/test/layer-0-primitives/clear-site-data.test.js",
|
|
1073
1111
|
"test/layer-0-primitives/cli-api-key.test.js": "lib/vendor/blamejs/test/layer-0-primitives/cli-api-key.test.js",
|
|
1074
1112
|
"test/layer-0-primitives/cli-audit-verify-chain.test.js": "lib/vendor/blamejs/test/layer-0-primitives/cli-audit-verify-chain.test.js",
|
|
1075
1113
|
"test/layer-0-primitives/cli-backup.test.js": "lib/vendor/blamejs/test/layer-0-primitives/cli-backup.test.js",
|
|
1076
1114
|
"test/layer-0-primitives/cli-config-drift.test.js": "lib/vendor/blamejs/test/layer-0-primitives/cli-config-drift.test.js",
|
|
1077
|
-
"test/layer-0-primitives/cli-coverage.test.js": "lib/vendor/blamejs/test/layer-0-primitives/cli-coverage.test.js",
|
|
1078
1115
|
"test/layer-0-primitives/cli-erase.test.js": "lib/vendor/blamejs/test/layer-0-primitives/cli-erase.test.js",
|
|
1079
1116
|
"test/layer-0-primitives/cli-file-type.test.js": "lib/vendor/blamejs/test/layer-0-primitives/cli-file-type.test.js",
|
|
1080
1117
|
"test/layer-0-primitives/cli-helpers.test.js": "lib/vendor/blamejs/test/layer-0-primitives/cli-helpers.test.js",
|
|
@@ -1084,10 +1121,13 @@
|
|
|
1084
1121
|
"test/layer-0-primitives/cli-retention.test.js": "lib/vendor/blamejs/test/layer-0-primitives/cli-retention.test.js",
|
|
1085
1122
|
"test/layer-0-primitives/cli-security.test.js": "lib/vendor/blamejs/test/layer-0-primitives/cli-security.test.js",
|
|
1086
1123
|
"test/layer-0-primitives/cli-vault.test.js": "lib/vendor/blamejs/test/layer-0-primitives/cli-vault.test.js",
|
|
1124
|
+
"test/layer-0-primitives/cli.test.js": "lib/vendor/blamejs/test/layer-0-primitives/cli.test.js",
|
|
1087
1125
|
"test/layer-0-primitives/client-hints.test.js": "lib/vendor/blamejs/test/layer-0-primitives/client-hints.test.js",
|
|
1088
1126
|
"test/layer-0-primitives/cloud-events.test.js": "lib/vendor/blamejs/test/layer-0-primitives/cloud-events.test.js",
|
|
1127
|
+
"test/layer-0-primitives/cluster-lease-renewal-ttl.test.js": "lib/vendor/blamejs/test/layer-0-primitives/cluster-lease-renewal-ttl.test.js",
|
|
1089
1128
|
"test/layer-0-primitives/cluster-storage.test.js": "lib/vendor/blamejs/test/layer-0-primitives/cluster-storage.test.js",
|
|
1090
1129
|
"test/layer-0-primitives/cluster-vault-rotation.test.js": "lib/vendor/blamejs/test/layer-0-primitives/cluster-vault-rotation.test.js",
|
|
1130
|
+
"test/layer-0-primitives/cluster.test.js": "lib/vendor/blamejs/test/layer-0-primitives/cluster.test.js",
|
|
1091
1131
|
"test/layer-0-primitives/cms-codec.test.js": "lib/vendor/blamejs/test/layer-0-primitives/cms-codec.test.js",
|
|
1092
1132
|
"test/layer-0-primitives/codebase-patterns.test.js": "lib/vendor/blamejs/test/layer-0-primitives/codebase-patterns.test.js",
|
|
1093
1133
|
"test/layer-0-primitives/codepoint-class.test.js": "lib/vendor/blamejs/test/layer-0-primitives/codepoint-class.test.js",
|
|
@@ -1095,20 +1135,22 @@
|
|
|
1095
1135
|
"test/layer-0-primitives/compliance-cascade.test.js": "lib/vendor/blamejs/test/layer-0-primitives/compliance-cascade.test.js",
|
|
1096
1136
|
"test/layer-0-primitives/compliance-eaa.test.js": "lib/vendor/blamejs/test/layer-0-primitives/compliance-eaa.test.js",
|
|
1097
1137
|
"test/layer-0-primitives/compliance-eu-ai-act-posture.test.js": "lib/vendor/blamejs/test/layer-0-primitives/compliance-eu-ai-act-posture.test.js",
|
|
1138
|
+
"test/layer-0-primitives/compliance-lifecycle-proto-key.test.js": "lib/vendor/blamejs/test/layer-0-primitives/compliance-lifecycle-proto-key.test.js",
|
|
1098
1139
|
"test/layer-0-primitives/compliance-sanctions.test.js": "lib/vendor/blamejs/test/layer-0-primitives/compliance-sanctions.test.js",
|
|
1099
1140
|
"test/layer-0-primitives/compliance.test.js": "lib/vendor/blamejs/test/layer-0-primitives/compliance.test.js",
|
|
1100
1141
|
"test/layer-0-primitives/compression-range.test.js": "lib/vendor/blamejs/test/layer-0-primitives/compression-range.test.js",
|
|
1101
1142
|
"test/layer-0-primitives/config-drift.test.js": "lib/vendor/blamejs/test/layer-0-primitives/config-drift.test.js",
|
|
1102
1143
|
"test/layer-0-primitives/config.test.js": "lib/vendor/blamejs/test/layer-0-primitives/config.test.js",
|
|
1103
1144
|
"test/layer-0-primitives/consent-purposes.test.js": "lib/vendor/blamejs/test/layer-0-primitives/consent-purposes.test.js",
|
|
1104
|
-
"test/layer-0-primitives/content-credentials-coverage.test.js": "lib/vendor/blamejs/test/layer-0-primitives/content-credentials-coverage.test.js",
|
|
1105
1145
|
"test/layer-0-primitives/content-credentials.test.js": "lib/vendor/blamejs/test/layer-0-primitives/content-credentials.test.js",
|
|
1106
1146
|
"test/layer-0-primitives/content-digest.test.js": "lib/vendor/blamejs/test/layer-0-primitives/content-digest.test.js",
|
|
1147
|
+
"test/layer-0-primitives/cookies.test.js": "lib/vendor/blamejs/test/layer-0-primitives/cookies.test.js",
|
|
1107
1148
|
"test/layer-0-primitives/cors.test.js": "lib/vendor/blamejs/test/layer-0-primitives/cors.test.js",
|
|
1108
1149
|
"test/layer-0-primitives/cose.test.js": "lib/vendor/blamejs/test/layer-0-primitives/cose.test.js",
|
|
1109
1150
|
"test/layer-0-primitives/cra-report.test.js": "lib/vendor/blamejs/test/layer-0-primitives/cra-report.test.js",
|
|
1110
1151
|
"test/layer-0-primitives/crdt.test.js": "lib/vendor/blamejs/test/layer-0-primitives/crdt.test.js",
|
|
1111
1152
|
"test/layer-0-primitives/credential-hash.test.js": "lib/vendor/blamejs/test/layer-0-primitives/credential-hash.test.js",
|
|
1153
|
+
"test/layer-0-primitives/crypto-adversarial.test.js": "lib/vendor/blamejs/test/layer-0-primitives/crypto-adversarial.test.js",
|
|
1112
1154
|
"test/layer-0-primitives/crypto-base64url.test.js": "lib/vendor/blamejs/test/layer-0-primitives/crypto-base64url.test.js",
|
|
1113
1155
|
"test/layer-0-primitives/crypto-envelope.test.js": "lib/vendor/blamejs/test/layer-0-primitives/crypto-envelope.test.js",
|
|
1114
1156
|
"test/layer-0-primitives/crypto-field-aad-downgrade.test.js": "lib/vendor/blamejs/test/layer-0-primitives/crypto-field-aad-downgrade.test.js",
|
|
@@ -1117,6 +1159,7 @@
|
|
|
1117
1159
|
"test/layer-0-primitives/crypto-field-per-row-key.test.js": "lib/vendor/blamejs/test/layer-0-primitives/crypto-field-per-row-key.test.js",
|
|
1118
1160
|
"test/layer-0-primitives/crypto-field-unseal-rate-cap.test.js": "lib/vendor/blamejs/test/layer-0-primitives/crypto-field-unseal-rate-cap.test.js",
|
|
1119
1161
|
"test/layer-0-primitives/crypto-field-upgrade-dialect.test.js": "lib/vendor/blamejs/test/layer-0-primitives/crypto-field-upgrade-dialect.test.js",
|
|
1162
|
+
"test/layer-0-primitives/crypto-field.test.js": "lib/vendor/blamejs/test/layer-0-primitives/crypto-field.test.js",
|
|
1120
1163
|
"test/layer-0-primitives/crypto-hash-files-parallel.test.js": "lib/vendor/blamejs/test/layer-0-primitives/crypto-hash-files-parallel.test.js",
|
|
1121
1164
|
"test/layer-0-primitives/crypto-hash-stream.test.js": "lib/vendor/blamejs/test/layer-0-primitives/crypto-hash-stream.test.js",
|
|
1122
1165
|
"test/layer-0-primitives/crypto-hpke-pq.test.js": "lib/vendor/blamejs/test/layer-0-primitives/crypto-hpke-pq.test.js",
|
|
@@ -1127,7 +1170,9 @@
|
|
|
1127
1170
|
"test/layer-0-primitives/crypto-oprf.test.js": "lib/vendor/blamejs/test/layer-0-primitives/crypto-oprf.test.js",
|
|
1128
1171
|
"test/layer-0-primitives/crypto-random-int.test.js": "lib/vendor/blamejs/test/layer-0-primitives/crypto-random-int.test.js",
|
|
1129
1172
|
"test/layer-0-primitives/crypto-self-test.test.js": "lib/vendor/blamejs/test/layer-0-primitives/crypto-self-test.test.js",
|
|
1173
|
+
"test/layer-0-primitives/crypto-spki-pin.test.js": "lib/vendor/blamejs/test/layer-0-primitives/crypto-spki-pin.test.js",
|
|
1130
1174
|
"test/layer-0-primitives/crypto-xwing.test.js": "lib/vendor/blamejs/test/layer-0-primitives/crypto-xwing.test.js",
|
|
1175
|
+
"test/layer-0-primitives/crypto.test.js": "lib/vendor/blamejs/test/layer-0-primitives/crypto.test.js",
|
|
1131
1176
|
"test/layer-0-primitives/csp-builder.test.js": "lib/vendor/blamejs/test/layer-0-primitives/csp-builder.test.js",
|
|
1132
1177
|
"test/layer-0-primitives/csp-nonce.test.js": "lib/vendor/blamejs/test/layer-0-primitives/csp-nonce.test.js",
|
|
1133
1178
|
"test/layer-0-primitives/csp-report.test.js": "lib/vendor/blamejs/test/layer-0-primitives/csp-report.test.js",
|
|
@@ -1148,6 +1193,7 @@
|
|
|
1148
1193
|
"test/layer-0-primitives/db-query-cross-schema.test.js": "lib/vendor/blamejs/test/layer-0-primitives/db-query-cross-schema.test.js",
|
|
1149
1194
|
"test/layer-0-primitives/db-query-extensions.test.js": "lib/vendor/blamejs/test/layer-0-primitives/db-query-extensions.test.js",
|
|
1150
1195
|
"test/layer-0-primitives/db-query-sealed-field-in.test.js": "lib/vendor/blamejs/test/layer-0-primitives/db-query-sealed-field-in.test.js",
|
|
1196
|
+
"test/layer-0-primitives/db-query.test.js": "lib/vendor/blamejs/test/layer-0-primitives/db-query.test.js",
|
|
1151
1197
|
"test/layer-0-primitives/db-raw-residency-gate.test.js": "lib/vendor/blamejs/test/layer-0-primitives/db-raw-residency-gate.test.js",
|
|
1152
1198
|
"test/layer-0-primitives/db-role-for.test.js": "lib/vendor/blamejs/test/layer-0-primitives/db-role-for.test.js",
|
|
1153
1199
|
"test/layer-0-primitives/db-schema-drift.test.js": "lib/vendor/blamejs/test/layer-0-primitives/db-schema-drift.test.js",
|
|
@@ -1156,6 +1202,7 @@
|
|
|
1156
1202
|
"test/layer-0-primitives/db-stream-and-payload-shape.test.js": "lib/vendor/blamejs/test/layer-0-primitives/db-stream-and-payload-shape.test.js",
|
|
1157
1203
|
"test/layer-0-primitives/db-vacuum.test.js": "lib/vendor/blamejs/test/layer-0-primitives/db-vacuum.test.js",
|
|
1158
1204
|
"test/layer-0-primitives/db-worm.test.js": "lib/vendor/blamejs/test/layer-0-primitives/db-worm.test.js",
|
|
1205
|
+
"test/layer-0-primitives/db.test.js": "lib/vendor/blamejs/test/layer-0-primitives/db.test.js",
|
|
1159
1206
|
"test/layer-0-primitives/ddl-change-control.test.js": "lib/vendor/blamejs/test/layer-0-primitives/ddl-change-control.test.js",
|
|
1160
1207
|
"test/layer-0-primitives/declare-row-policy.test.js": "lib/vendor/blamejs/test/layer-0-primitives/declare-row-policy.test.js",
|
|
1161
1208
|
"test/layer-0-primitives/declare-view.test.js": "lib/vendor/blamejs/test/layer-0-primitives/declare-view.test.js",
|
|
@@ -1170,6 +1217,7 @@
|
|
|
1170
1217
|
"test/layer-0-primitives/dpop-alg-kty.test.js": "lib/vendor/blamejs/test/layer-0-primitives/dpop-alg-kty.test.js",
|
|
1171
1218
|
"test/layer-0-primitives/dpop-htu-peergating.test.js": "lib/vendor/blamejs/test/layer-0-primitives/dpop-htu-peergating.test.js",
|
|
1172
1219
|
"test/layer-0-primitives/dpop-middleware-replaystore-required.test.js": "lib/vendor/blamejs/test/layer-0-primitives/dpop-middleware-replaystore-required.test.js",
|
|
1220
|
+
"test/layer-0-primitives/dpop-middleware-verify.test.js": "lib/vendor/blamejs/test/layer-0-primitives/dpop-middleware-verify.test.js",
|
|
1173
1221
|
"test/layer-0-primitives/dr-runbook.test.js": "lib/vendor/blamejs/test/layer-0-primitives/dr-runbook.test.js",
|
|
1174
1222
|
"test/layer-0-primitives/dsa.test.js": "lib/vendor/blamejs/test/layer-0-primitives/dsa.test.js",
|
|
1175
1223
|
"test/layer-0-primitives/dsr-state-rules.test.js": "lib/vendor/blamejs/test/layer-0-primitives/dsr-state-rules.test.js",
|
|
@@ -1184,6 +1232,7 @@
|
|
|
1184
1232
|
"test/layer-0-primitives/external-db-migrate.test.js": "lib/vendor/blamejs/test/layer-0-primitives/external-db-migrate.test.js",
|
|
1185
1233
|
"test/layer-0-primitives/external-db-non-atomic-backend.test.js": "lib/vendor/blamejs/test/layer-0-primitives/external-db-non-atomic-backend.test.js",
|
|
1186
1234
|
"test/layer-0-primitives/external-db-routing.test.js": "lib/vendor/blamejs/test/layer-0-primitives/external-db-routing.test.js",
|
|
1235
|
+
"test/layer-0-primitives/external-db.test.js": "lib/vendor/blamejs/test/layer-0-primitives/external-db.test.js",
|
|
1187
1236
|
"test/layer-0-primitives/fal.test.js": "lib/vendor/blamejs/test/layer-0-primitives/fal.test.js",
|
|
1188
1237
|
"test/layer-0-primitives/fapi2.test.js": "lib/vendor/blamejs/test/layer-0-primitives/fapi2.test.js",
|
|
1189
1238
|
"test/layer-0-primitives/fda-21cfr11.test.js": "lib/vendor/blamejs/test/layer-0-primitives/fda-21cfr11.test.js",
|
|
@@ -1196,24 +1245,31 @@
|
|
|
1196
1245
|
"test/layer-0-primitives/file-type.test.js": "lib/vendor/blamejs/test/layer-0-primitives/file-type.test.js",
|
|
1197
1246
|
"test/layer-0-primitives/file-upload-content-safety-skip-audit.test.js": "lib/vendor/blamejs/test/layer-0-primitives/file-upload-content-safety-skip-audit.test.js",
|
|
1198
1247
|
"test/layer-0-primitives/file-upload-ownership.test.js": "lib/vendor/blamejs/test/layer-0-primitives/file-upload-ownership.test.js",
|
|
1248
|
+
"test/layer-0-primitives/file-upload.test.js": "lib/vendor/blamejs/test/layer-0-primitives/file-upload.test.js",
|
|
1199
1249
|
"test/layer-0-primitives/flag.test.js": "lib/vendor/blamejs/test/layer-0-primitives/flag.test.js",
|
|
1200
1250
|
"test/layer-0-primitives/forensic-snapshot.test.js": "lib/vendor/blamejs/test/layer-0-primitives/forensic-snapshot.test.js",
|
|
1251
|
+
"test/layer-0-primitives/forms.test.js": "lib/vendor/blamejs/test/layer-0-primitives/forms.test.js",
|
|
1201
1252
|
"test/layer-0-primitives/fsm.test.js": "lib/vendor/blamejs/test/layer-0-primitives/fsm.test.js",
|
|
1202
1253
|
"test/layer-0-primitives/gate-contract-content-gate.test.js": "lib/vendor/blamejs/test/layer-0-primitives/gate-contract-content-gate.test.js",
|
|
1254
|
+
"test/layer-0-primitives/gate-contract.test.js": "lib/vendor/blamejs/test/layer-0-primitives/gate-contract.test.js",
|
|
1203
1255
|
"test/layer-0-primitives/gcs-bucket-ops.test.js": "lib/vendor/blamejs/test/layer-0-primitives/gcs-bucket-ops.test.js",
|
|
1204
1256
|
"test/layer-0-primitives/gdpr-ropa.test.js": "lib/vendor/blamejs/test/layer-0-primitives/gdpr-ropa.test.js",
|
|
1205
1257
|
"test/layer-0-primitives/graphql-federation.test.js": "lib/vendor/blamejs/test/layer-0-primitives/graphql-federation.test.js",
|
|
1206
1258
|
"test/layer-0-primitives/guard-agent-registry.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-agent-registry.test.js",
|
|
1207
1259
|
"test/layer-0-primitives/guard-all.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-all.test.js",
|
|
1208
1260
|
"test/layer-0-primitives/guard-archive.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-archive.test.js",
|
|
1261
|
+
"test/layer-0-primitives/guard-auth.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-auth.test.js",
|
|
1262
|
+
"test/layer-0-primitives/guard-cidr.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-cidr.test.js",
|
|
1209
1263
|
"test/layer-0-primitives/guard-csv.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-csv.test.js",
|
|
1264
|
+
"test/layer-0-primitives/guard-domain.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-domain.test.js",
|
|
1210
1265
|
"test/layer-0-primitives/guard-dsn.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-dsn.test.js",
|
|
1211
1266
|
"test/layer-0-primitives/guard-email.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-email.test.js",
|
|
1212
1267
|
"test/layer-0-primitives/guard-envelope.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-envelope.test.js",
|
|
1213
1268
|
"test/layer-0-primitives/guard-event-bus-payload.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-event-bus-payload.test.js",
|
|
1214
1269
|
"test/layer-0-primitives/guard-event-bus-topic.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-event-bus-topic.test.js",
|
|
1215
1270
|
"test/layer-0-primitives/guard-filename.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-filename.test.js",
|
|
1216
|
-
"test/layer-0-primitives/guard-gate-disposition
|
|
1271
|
+
"test/layer-0-primitives/guard-gate-disposition.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-gate-disposition.test.js",
|
|
1272
|
+
"test/layer-0-primitives/guard-graphql.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-graphql.test.js",
|
|
1217
1273
|
"test/layer-0-primitives/guard-html-wcag.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-html-wcag.test.js",
|
|
1218
1274
|
"test/layer-0-primitives/guard-html.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-html.test.js",
|
|
1219
1275
|
"test/layer-0-primitives/guard-idempotency-key.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-idempotency-key.test.js",
|
|
@@ -1221,6 +1277,8 @@
|
|
|
1221
1277
|
"test/layer-0-primitives/guard-imap-command.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-imap-command.test.js",
|
|
1222
1278
|
"test/layer-0-primitives/guard-jmap.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-jmap.test.js",
|
|
1223
1279
|
"test/layer-0-primitives/guard-json.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-json.test.js",
|
|
1280
|
+
"test/layer-0-primitives/guard-jsonpath.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-jsonpath.test.js",
|
|
1281
|
+
"test/layer-0-primitives/guard-jwt.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-jwt.test.js",
|
|
1224
1282
|
"test/layer-0-primitives/guard-list-id.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-list-id.test.js",
|
|
1225
1283
|
"test/layer-0-primitives/guard-list-unsubscribe.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-list-unsubscribe.test.js",
|
|
1226
1284
|
"test/layer-0-primitives/guard-mail-compose.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-mail-compose.test.js",
|
|
@@ -1231,27 +1289,36 @@
|
|
|
1231
1289
|
"test/layer-0-primitives/guard-managesieve-command.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-managesieve-command.test.js",
|
|
1232
1290
|
"test/layer-0-primitives/guard-markdown.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-markdown.test.js",
|
|
1233
1291
|
"test/layer-0-primitives/guard-message-id.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-message-id.test.js",
|
|
1292
|
+
"test/layer-0-primitives/guard-mime.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-mime.test.js",
|
|
1234
1293
|
"test/layer-0-primitives/guard-oauth-replay-failopen.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-oauth-replay-failopen.test.js",
|
|
1294
|
+
"test/layer-0-primitives/guard-oauth.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-oauth.test.js",
|
|
1235
1295
|
"test/layer-0-primitives/guard-pdf.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-pdf.test.js",
|
|
1236
1296
|
"test/layer-0-primitives/guard-pop3-command.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-pop3-command.test.js",
|
|
1237
1297
|
"test/layer-0-primitives/guard-posture-chain.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-posture-chain.test.js",
|
|
1298
|
+
"test/layer-0-primitives/guard-regex.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-regex.test.js",
|
|
1238
1299
|
"test/layer-0-primitives/guard-saga-config.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-saga-config.test.js",
|
|
1300
|
+
"test/layer-0-primitives/guard-shell.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-shell.test.js",
|
|
1239
1301
|
"test/layer-0-primitives/guard-smtp-command.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-smtp-command.test.js",
|
|
1240
1302
|
"test/layer-0-primitives/guard-snapshot-envelope.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-snapshot-envelope.test.js",
|
|
1241
|
-
"test/layer-0-primitives/guard-sql
|
|
1303
|
+
"test/layer-0-primitives/guard-sql.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-sql.test.js",
|
|
1242
1304
|
"test/layer-0-primitives/guard-stream-args.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-stream-args.test.js",
|
|
1243
1305
|
"test/layer-0-primitives/guard-svg.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-svg.test.js",
|
|
1306
|
+
"test/layer-0-primitives/guard-template.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-template.test.js",
|
|
1244
1307
|
"test/layer-0-primitives/guard-tenant-id.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-tenant-id.test.js",
|
|
1245
1308
|
"test/layer-0-primitives/guard-text.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-text.test.js",
|
|
1309
|
+
"test/layer-0-primitives/guard-time.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-time.test.js",
|
|
1246
1310
|
"test/layer-0-primitives/guard-trace-context.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-trace-context.test.js",
|
|
1311
|
+
"test/layer-0-primitives/guard-uuid.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-uuid.test.js",
|
|
1247
1312
|
"test/layer-0-primitives/guard-xml.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-xml.test.js",
|
|
1248
1313
|
"test/layer-0-primitives/guard-yaml.test.js": "lib/vendor/blamejs/test/layer-0-primitives/guard-yaml.test.js",
|
|
1249
1314
|
"test/layer-0-primitives/hal.test.js": "lib/vendor/blamejs/test/layer-0-primitives/hal.test.js",
|
|
1250
1315
|
"test/layer-0-primitives/honeytoken.test.js": "lib/vendor/blamejs/test/layer-0-primitives/honeytoken.test.js",
|
|
1251
1316
|
"test/layer-0-primitives/html-balance.test.js": "lib/vendor/blamejs/test/layer-0-primitives/html-balance.test.js",
|
|
1317
|
+
"test/layer-0-primitives/http-client-cache-authorization.test.js": "lib/vendor/blamejs/test/layer-0-primitives/http-client-cache-authorization.test.js",
|
|
1252
1318
|
"test/layer-0-primitives/http-client-cache.test.js": "lib/vendor/blamejs/test/layer-0-primitives/http-client-cache.test.js",
|
|
1253
1319
|
"test/layer-0-primitives/http-client-stream.test.js": "lib/vendor/blamejs/test/layer-0-primitives/http-client-stream.test.js",
|
|
1254
1320
|
"test/layer-0-primitives/http-client-throttle-transform.test.js": "lib/vendor/blamejs/test/layer-0-primitives/http-client-throttle-transform.test.js",
|
|
1321
|
+
"test/layer-0-primitives/http-client.test.js": "lib/vendor/blamejs/test/layer-0-primitives/http-client.test.js",
|
|
1255
1322
|
"test/layer-0-primitives/http-message-signature.test.js": "lib/vendor/blamejs/test/layer-0-primitives/http-message-signature.test.js",
|
|
1256
1323
|
"test/layer-0-primitives/i18n-messageformat.test.js": "lib/vendor/blamejs/test/layer-0-primitives/i18n-messageformat.test.js",
|
|
1257
1324
|
"test/layer-0-primitives/i18n.test.js": "lib/vendor/blamejs/test/layer-0-primitives/i18n.test.js",
|
|
@@ -1263,6 +1330,7 @@
|
|
|
1263
1330
|
"test/layer-0-primitives/incident-report.test.js": "lib/vendor/blamejs/test/layer-0-primitives/incident-report.test.js",
|
|
1264
1331
|
"test/layer-0-primitives/ip-utils.test.js": "lib/vendor/blamejs/test/layer-0-primitives/ip-utils.test.js",
|
|
1265
1332
|
"test/layer-0-primitives/jose-jwe-experimental.test.js": "lib/vendor/blamejs/test/layer-0-primitives/jose-jwe-experimental.test.js",
|
|
1333
|
+
"test/layer-0-primitives/jsdoc-example-execution.test.js": "lib/vendor/blamejs/test/layer-0-primitives/jsdoc-example-execution.test.js",
|
|
1266
1334
|
"test/layer-0-primitives/json-api.test.js": "lib/vendor/blamejs/test/layer-0-primitives/json-api.test.js",
|
|
1267
1335
|
"test/layer-0-primitives/json-merge-patch.test.js": "lib/vendor/blamejs/test/layer-0-primitives/json-merge-patch.test.js",
|
|
1268
1336
|
"test/layer-0-primitives/json-patch.test.js": "lib/vendor/blamejs/test/layer-0-primitives/json-patch.test.js",
|
|
@@ -1272,7 +1340,6 @@
|
|
|
1272
1340
|
"test/layer-0-primitives/jtd.test.js": "lib/vendor/blamejs/test/layer-0-primitives/jtd.test.js",
|
|
1273
1341
|
"test/layer-0-primitives/jwk.test.js": "lib/vendor/blamejs/test/layer-0-primitives/jwk.test.js",
|
|
1274
1342
|
"test/layer-0-primitives/jwt-external.test.js": "lib/vendor/blamejs/test/layer-0-primitives/jwt-external.test.js",
|
|
1275
|
-
"test/layer-0-primitives/keychain-coverage.test.js": "lib/vendor/blamejs/test/layer-0-primitives/keychain-coverage.test.js",
|
|
1276
1343
|
"test/layer-0-primitives/keychain-failclosed.test.js": "lib/vendor/blamejs/test/layer-0-primitives/keychain-failclosed.test.js",
|
|
1277
1344
|
"test/layer-0-primitives/keychain.test.js": "lib/vendor/blamejs/test/layer-0-primitives/keychain.test.js",
|
|
1278
1345
|
"test/layer-0-primitives/legal-hold.test.js": "lib/vendor/blamejs/test/layer-0-primitives/legal-hold.test.js",
|
|
@@ -1281,10 +1348,11 @@
|
|
|
1281
1348
|
"test/layer-0-primitives/log-stream-cloudwatch.test.js": "lib/vendor/blamejs/test/layer-0-primitives/log-stream-cloudwatch.test.js",
|
|
1282
1349
|
"test/layer-0-primitives/log-stream-otlp-grpc.test.js": "lib/vendor/blamejs/test/layer-0-primitives/log-stream-otlp-grpc.test.js",
|
|
1283
1350
|
"test/layer-0-primitives/log-stream-otlp.test.js": "lib/vendor/blamejs/test/layer-0-primitives/log-stream-otlp.test.js",
|
|
1351
|
+
"test/layer-0-primitives/log-stream.test.js": "lib/vendor/blamejs/test/layer-0-primitives/log-stream.test.js",
|
|
1352
|
+
"test/layer-0-primitives/log.test.js": "lib/vendor/blamejs/test/layer-0-primitives/log.test.js",
|
|
1284
1353
|
"test/layer-0-primitives/lro.test.js": "lib/vendor/blamejs/test/layer-0-primitives/lro.test.js",
|
|
1285
1354
|
"test/layer-0-primitives/mail-agent.test.js": "lib/vendor/blamejs/test/layer-0-primitives/mail-agent.test.js",
|
|
1286
1355
|
"test/layer-0-primitives/mail-arf.test.js": "lib/vendor/blamejs/test/layer-0-primitives/mail-arf.test.js",
|
|
1287
|
-
"test/layer-0-primitives/mail-auth-coverage.test.js": "lib/vendor/blamejs/test/layer-0-primitives/mail-auth-coverage.test.js",
|
|
1288
1356
|
"test/layer-0-primitives/mail-auth-dmarc-policy-failclosed.test.js": "lib/vendor/blamejs/test/layer-0-primitives/mail-auth-dmarc-policy-failclosed.test.js",
|
|
1289
1357
|
"test/layer-0-primitives/mail-auth-failclosed.test.js": "lib/vendor/blamejs/test/layer-0-primitives/mail-auth-failclosed.test.js",
|
|
1290
1358
|
"test/layer-0-primitives/mail-auth.test.js": "lib/vendor/blamejs/test/layer-0-primitives/mail-auth.test.js",
|
|
@@ -1296,6 +1364,7 @@
|
|
|
1296
1364
|
"test/layer-0-primitives/mail-crypto-pgp.test.js": "lib/vendor/blamejs/test/layer-0-primitives/mail-crypto-pgp.test.js",
|
|
1297
1365
|
"test/layer-0-primitives/mail-crypto-smime-bad-validity.test.js": "lib/vendor/blamejs/test/layer-0-primitives/mail-crypto-smime-bad-validity.test.js",
|
|
1298
1366
|
"test/layer-0-primitives/mail-crypto-smime.test.js": "lib/vendor/blamejs/test/layer-0-primitives/mail-crypto-smime.test.js",
|
|
1367
|
+
"test/layer-0-primitives/mail-crypto.test.js": "lib/vendor/blamejs/test/layer-0-primitives/mail-crypto.test.js",
|
|
1299
1368
|
"test/layer-0-primitives/mail-dav.test.js": "lib/vendor/blamejs/test/layer-0-primitives/mail-dav.test.js",
|
|
1300
1369
|
"test/layer-0-primitives/mail-deploy-tlsrpt.test.js": "lib/vendor/blamejs/test/layer-0-primitives/mail-deploy-tlsrpt.test.js",
|
|
1301
1370
|
"test/layer-0-primitives/mail-deploy.test.js": "lib/vendor/blamejs/test/layer-0-primitives/mail-deploy.test.js",
|
|
@@ -1328,17 +1397,26 @@
|
|
|
1328
1397
|
"test/layer-0-primitives/mail-store.test.js": "lib/vendor/blamejs/test/layer-0-primitives/mail-store.test.js",
|
|
1329
1398
|
"test/layer-0-primitives/mail-unsubscribe.test.js": "lib/vendor/blamejs/test/layer-0-primitives/mail-unsubscribe.test.js",
|
|
1330
1399
|
"test/layer-0-primitives/mail.test.js": "lib/vendor/blamejs/test/layer-0-primitives/mail.test.js",
|
|
1331
|
-
"test/layer-0-primitives/mcp-coverage.test.js": "lib/vendor/blamejs/test/layer-0-primitives/mcp-coverage.test.js",
|
|
1332
1400
|
"test/layer-0-primitives/mcp-tool-registry.test.js": "lib/vendor/blamejs/test/layer-0-primitives/mcp-tool-registry.test.js",
|
|
1333
1401
|
"test/layer-0-primitives/mcp.test.js": "lib/vendor/blamejs/test/layer-0-primitives/mcp.test.js",
|
|
1334
1402
|
"test/layer-0-primitives/mdoc.test.js": "lib/vendor/blamejs/test/layer-0-primitives/mdoc.test.js",
|
|
1335
|
-
"test/layer-0-primitives/metrics-coverage.test.js": "lib/vendor/blamejs/test/layer-0-primitives/metrics-coverage.test.js",
|
|
1336
1403
|
"test/layer-0-primitives/metrics-shadow-registry.test.js": "lib/vendor/blamejs/test/layer-0-primitives/metrics-shadow-registry.test.js",
|
|
1337
1404
|
"test/layer-0-primitives/metrics-snapshot.test.js": "lib/vendor/blamejs/test/layer-0-primitives/metrics-snapshot.test.js",
|
|
1405
|
+
"test/layer-0-primitives/metrics.test.js": "lib/vendor/blamejs/test/layer-0-primitives/metrics.test.js",
|
|
1406
|
+
"test/layer-0-primitives/middleware-assetlinks.test.js": "lib/vendor/blamejs/test/layer-0-primitives/middleware-assetlinks.test.js",
|
|
1407
|
+
"test/layer-0-primitives/middleware-body-parser.test.js": "lib/vendor/blamejs/test/layer-0-primitives/middleware-body-parser.test.js",
|
|
1408
|
+
"test/layer-0-primitives/middleware-bot-disclose.test.js": "lib/vendor/blamejs/test/layer-0-primitives/middleware-bot-disclose.test.js",
|
|
1338
1409
|
"test/layer-0-primitives/middleware-compose-pipeline.test.js": "lib/vendor/blamejs/test/layer-0-primitives/middleware-compose-pipeline.test.js",
|
|
1339
|
-
"test/layer-0-primitives/middleware-
|
|
1410
|
+
"test/layer-0-primitives/middleware-cookies.test.js": "lib/vendor/blamejs/test/layer-0-primitives/middleware-cookies.test.js",
|
|
1411
|
+
"test/layer-0-primitives/middleware-gpc.test.js": "lib/vendor/blamejs/test/layer-0-primitives/middleware-gpc.test.js",
|
|
1412
|
+
"test/layer-0-primitives/middleware-headers.test.js": "lib/vendor/blamejs/test/layer-0-primitives/middleware-headers.test.js",
|
|
1413
|
+
"test/layer-0-primitives/middleware-host-allowlist.test.js": "lib/vendor/blamejs/test/layer-0-primitives/middleware-host-allowlist.test.js",
|
|
1414
|
+
"test/layer-0-primitives/middleware-require-content-type.test.js": "lib/vendor/blamejs/test/layer-0-primitives/middleware-require-content-type.test.js",
|
|
1415
|
+
"test/layer-0-primitives/middleware-tus-upload.test.js": "lib/vendor/blamejs/test/layer-0-primitives/middleware-tus-upload.test.js",
|
|
1416
|
+
"test/layer-0-primitives/middleware-web-app-manifest.test.js": "lib/vendor/blamejs/test/layer-0-primitives/middleware-web-app-manifest.test.js",
|
|
1340
1417
|
"test/layer-0-primitives/mime-parse.test.js": "lib/vendor/blamejs/test/layer-0-primitives/mime-parse.test.js",
|
|
1341
1418
|
"test/layer-0-primitives/money.test.js": "lib/vendor/blamejs/test/layer-0-primitives/money.test.js",
|
|
1419
|
+
"test/layer-0-primitives/mtls-ca-crl-fingerprint-only.test.js": "lib/vendor/blamejs/test/layer-0-primitives/mtls-ca-crl-fingerprint-only.test.js",
|
|
1342
1420
|
"test/layer-0-primitives/mtls-ca-paths.test.js": "lib/vendor/blamejs/test/layer-0-primitives/mtls-ca-paths.test.js",
|
|
1343
1421
|
"test/layer-0-primitives/mtls-ca-revocation.test.js": "lib/vendor/blamejs/test/layer-0-primitives/mtls-ca-revocation.test.js",
|
|
1344
1422
|
"test/layer-0-primitives/nel.test.js": "lib/vendor/blamejs/test/layer-0-primitives/nel.test.js",
|
|
@@ -1350,7 +1428,8 @@
|
|
|
1350
1428
|
"test/layer-0-primitives/network-dns.test.js": "lib/vendor/blamejs/test/layer-0-primitives/network-dns.test.js",
|
|
1351
1429
|
"test/layer-0-primitives/network-heartbeat-passive.test.js": "lib/vendor/blamejs/test/layer-0-primitives/network-heartbeat-passive.test.js",
|
|
1352
1430
|
"test/layer-0-primitives/network-nts-handshake-byte-cap.test.js": "lib/vendor/blamejs/test/layer-0-primitives/network-nts-handshake-byte-cap.test.js",
|
|
1353
|
-
"test/layer-0-primitives/network-
|
|
1431
|
+
"test/layer-0-primitives/network-nts.test.js": "lib/vendor/blamejs/test/layer-0-primitives/network-nts.test.js",
|
|
1432
|
+
"test/layer-0-primitives/network-smtp-policy.test.js": "lib/vendor/blamejs/test/layer-0-primitives/network-smtp-policy.test.js",
|
|
1354
1433
|
"test/layer-0-primitives/network-tls-build-options.test.js": "lib/vendor/blamejs/test/layer-0-primitives/network-tls-build-options.test.js",
|
|
1355
1434
|
"test/layer-0-primitives/network-tls-ct-inclusion.test.js": "lib/vendor/blamejs/test/layer-0-primitives/network-tls-ct-inclusion.test.js",
|
|
1356
1435
|
"test/layer-0-primitives/network-tls.test.js": "lib/vendor/blamejs/test/layer-0-primitives/network-tls.test.js",
|
|
@@ -1359,22 +1438,29 @@
|
|
|
1359
1438
|
"test/layer-0-primitives/nis2-report.test.js": "lib/vendor/blamejs/test/layer-0-primitives/nis2-report.test.js",
|
|
1360
1439
|
"test/layer-0-primitives/nist-crosswalk.test.js": "lib/vendor/blamejs/test/layer-0-primitives/nist-crosswalk.test.js",
|
|
1361
1440
|
"test/layer-0-primitives/no-cache.test.js": "lib/vendor/blamejs/test/layer-0-primitives/no-cache.test.js",
|
|
1441
|
+
"test/layer-0-primitives/nonce-store-enforce-replay-nonboolean.test.js": "lib/vendor/blamejs/test/layer-0-primitives/nonce-store-enforce-replay-nonboolean.test.js",
|
|
1362
1442
|
"test/layer-0-primitives/nonce-store-release.test.js": "lib/vendor/blamejs/test/layer-0-primitives/nonce-store-release.test.js",
|
|
1363
1443
|
"test/layer-0-primitives/notify.test.js": "lib/vendor/blamejs/test/layer-0-primitives/notify.test.js",
|
|
1444
|
+
"test/layer-0-primitives/ntp-check.test.js": "lib/vendor/blamejs/test/layer-0-primitives/ntp-check.test.js",
|
|
1364
1445
|
"test/layer-0-primitives/numeric-bounds.test.js": "lib/vendor/blamejs/test/layer-0-primitives/numeric-bounds.test.js",
|
|
1365
1446
|
"test/layer-0-primitives/oauth-callback.test.js": "lib/vendor/blamejs/test/layer-0-primitives/oauth-callback.test.js",
|
|
1366
1447
|
"test/layer-0-primitives/object-store-range-header.test.js": "lib/vendor/blamejs/test/layer-0-primitives/object-store-range-header.test.js",
|
|
1367
1448
|
"test/layer-0-primitives/object-store-versioned-delete.test.js": "lib/vendor/blamejs/test/layer-0-primitives/object-store-versioned-delete.test.js",
|
|
1368
1449
|
"test/layer-0-primitives/observability-tracing.test.js": "lib/vendor/blamejs/test/layer-0-primitives/observability-tracing.test.js",
|
|
1369
1450
|
"test/layer-0-primitives/observability.test.js": "lib/vendor/blamejs/test/layer-0-primitives/observability.test.js",
|
|
1451
|
+
"test/layer-0-primitives/oid4vci.test.js": "lib/vendor/blamejs/test/layer-0-primitives/oid4vci.test.js",
|
|
1370
1452
|
"test/layer-0-primitives/openapi.test.js": "lib/vendor/blamejs/test/layer-0-primitives/openapi.test.js",
|
|
1453
|
+
"test/layer-0-primitives/openid-federation.test.js": "lib/vendor/blamejs/test/layer-0-primitives/openid-federation.test.js",
|
|
1371
1454
|
"test/layer-0-primitives/otel-export.test.js": "lib/vendor/blamejs/test/layer-0-primitives/otel-export.test.js",
|
|
1372
1455
|
"test/layer-0-primitives/otlp-attr-redaction.test.js": "lib/vendor/blamejs/test/layer-0-primitives/otlp-attr-redaction.test.js",
|
|
1373
1456
|
"test/layer-0-primitives/outbox-inflight-reaper.test.js": "lib/vendor/blamejs/test/layer-0-primitives/outbox-inflight-reaper.test.js",
|
|
1457
|
+
"test/layer-0-primitives/outbox.test.js": "lib/vendor/blamejs/test/layer-0-primitives/outbox.test.js",
|
|
1374
1458
|
"test/layer-0-primitives/output-header-hardening.test.js": "lib/vendor/blamejs/test/layer-0-primitives/output-header-hardening.test.js",
|
|
1459
|
+
"test/layer-0-primitives/own-property-membership-guards.test.js": "lib/vendor/blamejs/test/layer-0-primitives/own-property-membership-guards.test.js",
|
|
1375
1460
|
"test/layer-0-primitives/pagination.test.js": "lib/vendor/blamejs/test/layer-0-primitives/pagination.test.js",
|
|
1376
1461
|
"test/layer-0-primitives/parser-verify-hardening.test.js": "lib/vendor/blamejs/test/layer-0-primitives/parser-verify-hardening.test.js",
|
|
1377
|
-
"test/layer-0-primitives/parsers-safe-
|
|
1462
|
+
"test/layer-0-primitives/parsers-safe-toml.test.js": "lib/vendor/blamejs/test/layer-0-primitives/parsers-safe-toml.test.js",
|
|
1463
|
+
"test/layer-0-primitives/parsers-safe-yaml.test.js": "lib/vendor/blamejs/test/layer-0-primitives/parsers-safe-yaml.test.js",
|
|
1378
1464
|
"test/layer-0-primitives/parsers-standalone.test.js": "lib/vendor/blamejs/test/layer-0-primitives/parsers-standalone.test.js",
|
|
1379
1465
|
"test/layer-0-primitives/passkey-real-vectors.test.js": "lib/vendor/blamejs/test/layer-0-primitives/passkey-real-vectors.test.js",
|
|
1380
1466
|
"test/layer-0-primitives/passkey.test.js": "lib/vendor/blamejs/test/layer-0-primitives/passkey.test.js",
|
|
@@ -1398,48 +1484,62 @@
|
|
|
1398
1484
|
"test/layer-0-primitives/queue-flow-repeat.test.js": "lib/vendor/blamejs/test/layer-0-primitives/queue-flow-repeat.test.js",
|
|
1399
1485
|
"test/layer-0-primitives/queue-priority-rate-progress.test.js": "lib/vendor/blamejs/test/layer-0-primitives/queue-priority-rate-progress.test.js",
|
|
1400
1486
|
"test/layer-0-primitives/queue-sqs.test.js": "lib/vendor/blamejs/test/layer-0-primitives/queue-sqs.test.js",
|
|
1487
|
+
"test/layer-0-primitives/queue.test.js": "lib/vendor/blamejs/test/layer-0-primitives/queue.test.js",
|
|
1401
1488
|
"test/layer-0-primitives/rate-limit-cluster.test.js": "lib/vendor/blamejs/test/layer-0-primitives/rate-limit-cluster.test.js",
|
|
1402
1489
|
"test/layer-0-primitives/rate-limit-memory-getorinsert.test.js": "lib/vendor/blamejs/test/layer-0-primitives/rate-limit-memory-getorinsert.test.js",
|
|
1403
1490
|
"test/layer-0-primitives/rate-limit-registry.test.js": "lib/vendor/blamejs/test/layer-0-primitives/rate-limit-registry.test.js",
|
|
1404
1491
|
"test/layer-0-primitives/rate-limit-xff-spoofing.test.js": "lib/vendor/blamejs/test/layer-0-primitives/rate-limit-xff-spoofing.test.js",
|
|
1405
1492
|
"test/layer-0-primitives/redact-dlp.test.js": "lib/vendor/blamejs/test/layer-0-primitives/redact-dlp.test.js",
|
|
1493
|
+
"test/layer-0-primitives/redact.test.js": "lib/vendor/blamejs/test/layer-0-primitives/redact.test.js",
|
|
1406
1494
|
"test/layer-0-primitives/redis-client.test.js": "lib/vendor/blamejs/test/layer-0-primitives/redis-client.test.js",
|
|
1407
1495
|
"test/layer-0-primitives/request-helpers.test.js": "lib/vendor/blamejs/test/layer-0-primitives/request-helpers.test.js",
|
|
1408
1496
|
"test/layer-0-primitives/request-id-async-context.test.js": "lib/vendor/blamejs/test/layer-0-primitives/request-id-async-context.test.js",
|
|
1409
1497
|
"test/layer-0-primitives/request-log.test.js": "lib/vendor/blamejs/test/layer-0-primitives/request-log.test.js",
|
|
1410
1498
|
"test/layer-0-primitives/require-auth-cache-control.test.js": "lib/vendor/blamejs/test/layer-0-primitives/require-auth-cache-control.test.js",
|
|
1499
|
+
"test/layer-0-primitives/require-bound-key.test.js": "lib/vendor/blamejs/test/layer-0-primitives/require-bound-key.test.js",
|
|
1411
1500
|
"test/layer-0-primitives/require-mtls.test.js": "lib/vendor/blamejs/test/layer-0-primitives/require-mtls.test.js",
|
|
1412
1501
|
"test/layer-0-primitives/resource-access-lock.test.js": "lib/vendor/blamejs/test/layer-0-primitives/resource-access-lock.test.js",
|
|
1413
1502
|
"test/layer-0-primitives/restore-blob-remap.test.js": "lib/vendor/blamejs/test/layer-0-primitives/restore-blob-remap.test.js",
|
|
1503
|
+
"test/layer-0-primitives/restore-empty-manifest-wipe.test.js": "lib/vendor/blamejs/test/layer-0-primitives/restore-empty-manifest-wipe.test.js",
|
|
1414
1504
|
"test/layer-0-primitives/retention-dryrun-no-vacuum.test.js": "lib/vendor/blamejs/test/layer-0-primitives/retention-dryrun-no-vacuum.test.js",
|
|
1415
1505
|
"test/layer-0-primitives/retention-floor.test.js": "lib/vendor/blamejs/test/layer-0-primitives/retention-floor.test.js",
|
|
1416
1506
|
"test/layer-0-primitives/retention-sweep-termination.test.js": "lib/vendor/blamejs/test/layer-0-primitives/retention-sweep-termination.test.js",
|
|
1507
|
+
"test/layer-0-primitives/retention.test.js": "lib/vendor/blamejs/test/layer-0-primitives/retention.test.js",
|
|
1417
1508
|
"test/layer-0-primitives/retry.test.js": "lib/vendor/blamejs/test/layer-0-primitives/retry.test.js",
|
|
1418
1509
|
"test/layer-0-primitives/router-body-validation.test.js": "lib/vendor/blamejs/test/layer-0-primitives/router-body-validation.test.js",
|
|
1419
|
-
"test/layer-0-primitives/router-coverage.test.js": "lib/vendor/blamejs/test/layer-0-primitives/router-coverage.test.js",
|
|
1420
1510
|
"test/layer-0-primitives/router-cross-origin-redirect.test.js": "lib/vendor/blamejs/test/layer-0-primitives/router-cross-origin-redirect.test.js",
|
|
1421
1511
|
"test/layer-0-primitives/router-failclosed.test.js": "lib/vendor/blamejs/test/layer-0-primitives/router-failclosed.test.js",
|
|
1512
|
+
"test/layer-0-primitives/router-host-path-injection.test.js": "lib/vendor/blamejs/test/layer-0-primitives/router-host-path-injection.test.js",
|
|
1422
1513
|
"test/layer-0-primitives/router-tls0rtt.test.js": "lib/vendor/blamejs/test/layer-0-primitives/router-tls0rtt.test.js",
|
|
1423
1514
|
"test/layer-0-primitives/router-use-path-scope.test.js": "lib/vendor/blamejs/test/layer-0-primitives/router-use-path-scope.test.js",
|
|
1515
|
+
"test/layer-0-primitives/router.test.js": "lib/vendor/blamejs/test/layer-0-primitives/router.test.js",
|
|
1424
1516
|
"test/layer-0-primitives/safe-archive-auto-unwrap.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-archive-auto-unwrap.test.js",
|
|
1425
1517
|
"test/layer-0-primitives/safe-archive-inspect-unwrap.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-archive-inspect-unwrap.test.js",
|
|
1426
1518
|
"test/layer-0-primitives/safe-async-loops.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-async-loops.test.js",
|
|
1427
1519
|
"test/layer-0-primitives/safe-async-parallel.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-async-parallel.test.js",
|
|
1520
|
+
"test/layer-0-primitives/safe-async.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-async.test.js",
|
|
1428
1521
|
"test/layer-0-primitives/safe-buffer-linear-scans.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-buffer-linear-scans.test.js",
|
|
1522
|
+
"test/layer-0-primitives/safe-buffer.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-buffer.test.js",
|
|
1429
1523
|
"test/layer-0-primitives/safe-decompress.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-decompress.test.js",
|
|
1430
1524
|
"test/layer-0-primitives/safe-dns.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-dns.test.js",
|
|
1431
1525
|
"test/layer-0-primitives/safe-ical.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-ical.test.js",
|
|
1432
1526
|
"test/layer-0-primitives/safe-icap.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-icap.test.js",
|
|
1527
|
+
"test/layer-0-primitives/safe-ini.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-ini.test.js",
|
|
1433
1528
|
"test/layer-0-primitives/safe-json-stringify-for-script.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-json-stringify-for-script.test.js",
|
|
1529
|
+
"test/layer-0-primitives/safe-json.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-json.test.js",
|
|
1434
1530
|
"test/layer-0-primitives/safe-jsonpath.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-jsonpath.test.js",
|
|
1435
1531
|
"test/layer-0-primitives/safe-mime.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-mime.test.js",
|
|
1436
1532
|
"test/layer-0-primitives/safe-mount-info.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-mount-info.test.js",
|
|
1533
|
+
"test/layer-0-primitives/safe-object.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-object.test.js",
|
|
1437
1534
|
"test/layer-0-primitives/safe-path.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-path.test.js",
|
|
1438
1535
|
"test/layer-0-primitives/safe-redirect.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-redirect.test.js",
|
|
1536
|
+
"test/layer-0-primitives/safe-schema.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-schema.test.js",
|
|
1439
1537
|
"test/layer-0-primitives/safe-sieve.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-sieve.test.js",
|
|
1440
1538
|
"test/layer-0-primitives/safe-smtp.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-smtp.test.js",
|
|
1539
|
+
"test/layer-0-primitives/safe-sql.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-sql.test.js",
|
|
1441
1540
|
"test/layer-0-primitives/safe-url-canonicalize.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-url-canonicalize.test.js",
|
|
1442
1541
|
"test/layer-0-primitives/safe-url-idn-homograph.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-url-idn-homograph.test.js",
|
|
1542
|
+
"test/layer-0-primitives/safe-url.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-url.test.js",
|
|
1443
1543
|
"test/layer-0-primitives/safe-vcard.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-vcard.test.js",
|
|
1444
1544
|
"test/layer-0-primitives/safe-xml.test.js": "lib/vendor/blamejs/test/layer-0-primitives/safe-xml.test.js",
|
|
1445
1545
|
"test/layer-0-primitives/saml-mdq-wrapping.test.js": "lib/vendor/blamejs/test/layer-0-primitives/saml-mdq-wrapping.test.js",
|
|
@@ -1449,6 +1549,7 @@
|
|
|
1449
1549
|
"test/layer-0-primitives/sandbox.test.js": "lib/vendor/blamejs/test/layer-0-primitives/sandbox.test.js",
|
|
1450
1550
|
"test/layer-0-primitives/scheduler-exactly-once.test.js": "lib/vendor/blamejs/test/layer-0-primitives/scheduler-exactly-once.test.js",
|
|
1451
1551
|
"test/layer-0-primitives/scheduler-watchdog-stale-settle.test.js": "lib/vendor/blamejs/test/layer-0-primitives/scheduler-watchdog-stale-settle.test.js",
|
|
1552
|
+
"test/layer-0-primitives/scheduler.test.js": "lib/vendor/blamejs/test/layer-0-primitives/scheduler.test.js",
|
|
1452
1553
|
"test/layer-0-primitives/scim-server.test.js": "lib/vendor/blamejs/test/layer-0-primitives/scim-server.test.js",
|
|
1453
1554
|
"test/layer-0-primitives/scitt.test.js": "lib/vendor/blamejs/test/layer-0-primitives/scitt.test.js",
|
|
1454
1555
|
"test/layer-0-primitives/sd-jwt-vc-ecdsa-p1363.test.js": "lib/vendor/blamejs/test/layer-0-primitives/sd-jwt-vc-ecdsa-p1363.test.js",
|
|
@@ -1469,6 +1570,7 @@
|
|
|
1469
1570
|
"test/layer-0-primitives/session-device-binding-ipv6-canonical-and-no-store.test.js": "lib/vendor/blamejs/test/layer-0-primitives/session-device-binding-ipv6-canonical-and-no-store.test.js",
|
|
1470
1571
|
"test/layer-0-primitives/session-device-binding.test.js": "lib/vendor/blamejs/test/layer-0-primitives/session-device-binding.test.js",
|
|
1471
1572
|
"test/layer-0-primitives/session-extensions.test.js": "lib/vendor/blamejs/test/layer-0-primitives/session-extensions.test.js",
|
|
1573
|
+
"test/layer-0-primitives/session-strict-binding-missing-failclosed.test.js": "lib/vendor/blamejs/test/layer-0-primitives/session-strict-binding-missing-failclosed.test.js",
|
|
1472
1574
|
"test/layer-0-primitives/session-valid-from.test.js": "lib/vendor/blamejs/test/layer-0-primitives/session-valid-from.test.js",
|
|
1473
1575
|
"test/layer-0-primitives/shape-match.test.js": "lib/vendor/blamejs/test/layer-0-primitives/shape-match.test.js",
|
|
1474
1576
|
"test/layer-0-primitives/sigv4-bucket-ops.test.js": "lib/vendor/blamejs/test/layer-0-primitives/sigv4-bucket-ops.test.js",
|
|
@@ -1477,7 +1579,7 @@
|
|
|
1477
1579
|
"test/layer-0-primitives/smtp-policy.test.js": "lib/vendor/blamejs/test/layer-0-primitives/smtp-policy.test.js",
|
|
1478
1580
|
"test/layer-0-primitives/source-comment-blocks.test.js": "lib/vendor/blamejs/test/layer-0-primitives/source-comment-blocks.test.js",
|
|
1479
1581
|
"test/layer-0-primitives/speculation-rules.test.js": "lib/vendor/blamejs/test/layer-0-primitives/speculation-rules.test.js",
|
|
1480
|
-
"test/layer-0-primitives/sql-
|
|
1582
|
+
"test/layer-0-primitives/sql-offset-without-limit.test.js": "lib/vendor/blamejs/test/layer-0-primitives/sql-offset-without-limit.test.js",
|
|
1481
1583
|
"test/layer-0-primitives/sql.test.js": "lib/vendor/blamejs/test/layer-0-primitives/sql.test.js",
|
|
1482
1584
|
"test/layer-0-primitives/sse-backpressure.test.js": "lib/vendor/blamejs/test/layer-0-primitives/sse-backpressure.test.js",
|
|
1483
1585
|
"test/layer-0-primitives/sse.test.js": "lib/vendor/blamejs/test/layer-0-primitives/sse.test.js",
|
|
@@ -1487,13 +1589,15 @@
|
|
|
1487
1589
|
"test/layer-0-primitives/step-up.test.js": "lib/vendor/blamejs/test/layer-0-primitives/step-up.test.js",
|
|
1488
1590
|
"test/layer-0-primitives/storage-chunk-scratch.test.js": "lib/vendor/blamejs/test/layer-0-primitives/storage-chunk-scratch.test.js",
|
|
1489
1591
|
"test/layer-0-primitives/storage-presigned-url.test.js": "lib/vendor/blamejs/test/layer-0-primitives/storage-presigned-url.test.js",
|
|
1592
|
+
"test/layer-0-primitives/storage.test.js": "lib/vendor/blamejs/test/layer-0-primitives/storage.test.js",
|
|
1490
1593
|
"test/layer-0-primitives/stream-throttle.test.js": "lib/vendor/blamejs/test/layer-0-primitives/stream-throttle.test.js",
|
|
1491
1594
|
"test/layer-0-primitives/structured-fields-codec.test.js": "lib/vendor/blamejs/test/layer-0-primitives/structured-fields-codec.test.js",
|
|
1492
1595
|
"test/layer-0-primitives/structured-fields.test.js": "lib/vendor/blamejs/test/layer-0-primitives/structured-fields.test.js",
|
|
1596
|
+
"test/layer-0-primitives/subject.test.js": "lib/vendor/blamejs/test/layer-0-primitives/subject.test.js",
|
|
1493
1597
|
"test/layer-0-primitives/tcpa-10dlc.test.js": "lib/vendor/blamejs/test/layer-0-primitives/tcpa-10dlc.test.js",
|
|
1494
1598
|
"test/layer-0-primitives/template-escape-html.test.js": "lib/vendor/blamejs/test/layer-0-primitives/template-escape-html.test.js",
|
|
1599
|
+
"test/layer-0-primitives/template.test.js": "lib/vendor/blamejs/test/layer-0-primitives/template.test.js",
|
|
1495
1600
|
"test/layer-0-primitives/tenant-quota.test.js": "lib/vendor/blamejs/test/layer-0-primitives/tenant-quota.test.js",
|
|
1496
|
-
"test/layer-0-primitives/test-coverage.test.js": "lib/vendor/blamejs/test/layer-0-primitives/test-coverage.test.js",
|
|
1497
1601
|
"test/layer-0-primitives/test-harness.test.js": "lib/vendor/blamejs/test/layer-0-primitives/test-harness.test.js",
|
|
1498
1602
|
"test/layer-0-primitives/testing-request.test.js": "lib/vendor/blamejs/test/layer-0-primitives/testing-request.test.js",
|
|
1499
1603
|
"test/layer-0-primitives/testing.test.js": "lib/vendor/blamejs/test/layer-0-primitives/testing.test.js",
|
|
@@ -1513,7 +1617,9 @@
|
|
|
1513
1617
|
"test/layer-0-primitives/vault-aad.test.js": "lib/vendor/blamejs/test/layer-0-primitives/vault-aad.test.js",
|
|
1514
1618
|
"test/layer-0-primitives/vault-default-store.test.js": "lib/vendor/blamejs/test/layer-0-primitives/vault-default-store.test.js",
|
|
1515
1619
|
"test/layer-0-primitives/vault-rotate-aad.test.js": "lib/vendor/blamejs/test/layer-0-primitives/vault-rotate-aad.test.js",
|
|
1620
|
+
"test/layer-0-primitives/vault-rotate.test.js": "lib/vendor/blamejs/test/layer-0-primitives/vault-rotate.test.js",
|
|
1516
1621
|
"test/layer-0-primitives/vault-seal-pem-file.test.js": "lib/vendor/blamejs/test/layer-0-primitives/vault-seal-pem-file.test.js",
|
|
1622
|
+
"test/layer-0-primitives/vault.test.js": "lib/vendor/blamejs/test/layer-0-primitives/vault.test.js",
|
|
1517
1623
|
"test/layer-0-primitives/vc.test.js": "lib/vendor/blamejs/test/layer-0-primitives/vc.test.js",
|
|
1518
1624
|
"test/layer-0-primitives/vendor-currency-classify.test.js": "lib/vendor/blamejs/test/layer-0-primitives/vendor-currency-classify.test.js",
|
|
1519
1625
|
"test/layer-0-primitives/vendor-data.test.js": "lib/vendor/blamejs/test/layer-0-primitives/vendor-data.test.js",
|
|
@@ -1526,11 +1632,13 @@
|
|
|
1526
1632
|
"test/layer-0-primitives/webhook.test.js": "lib/vendor/blamejs/test/layer-0-primitives/webhook.test.js",
|
|
1527
1633
|
"test/layer-0-primitives/websocket-channels.test.js": "lib/vendor/blamejs/test/layer-0-primitives/websocket-channels.test.js",
|
|
1528
1634
|
"test/layer-0-primitives/websocket-extension-header.test.js": "lib/vendor/blamejs/test/layer-0-primitives/websocket-extension-header.test.js",
|
|
1635
|
+
"test/layer-0-primitives/websocket.test.js": "lib/vendor/blamejs/test/layer-0-primitives/websocket.test.js",
|
|
1529
1636
|
"test/layer-0-primitives/worker-pool-recycle-race.test.js": "lib/vendor/blamejs/test/layer-0-primitives/worker-pool-recycle-race.test.js",
|
|
1530
1637
|
"test/layer-0-primitives/worker-pool.test.js": "lib/vendor/blamejs/test/layer-0-primitives/worker-pool.test.js",
|
|
1531
1638
|
"test/layer-0-primitives/worm.test.js": "lib/vendor/blamejs/test/layer-0-primitives/worm.test.js",
|
|
1532
1639
|
"test/layer-0-primitives/ws-client.test.js": "lib/vendor/blamejs/test/layer-0-primitives/ws-client.test.js",
|
|
1533
1640
|
"test/layer-0-primitives/x509-chain-ca-enforcement.test.js": "lib/vendor/blamejs/test/layer-0-primitives/x509-chain-ca-enforcement.test.js",
|
|
1641
|
+
"test/layer-0-primitives/xml-c14n-attr-normalization.test.js": "lib/vendor/blamejs/test/layer-0-primitives/xml-c14n-attr-normalization.test.js",
|
|
1534
1642
|
"test/layer-1-state/api-key.test.js": "lib/vendor/blamejs/test/layer-1-state/api-key.test.js",
|
|
1535
1643
|
"test/layer-5-integration/bundler-output.test.js": "lib/vendor/blamejs/test/layer-5-integration/bundler-output.test.js",
|
|
1536
1644
|
"test/layer-5-integration/external-db-residency.test.js": "lib/vendor/blamejs/test/layer-5-integration/external-db-residency.test.js",
|
|
@@ -1539,10 +1647,10 @@
|
|
|
1539
1647
|
"test/smoke.js": "lib/vendor/blamejs/test/smoke.js"
|
|
1540
1648
|
},
|
|
1541
1649
|
"bundler": "shallow git clone of release tag from github.com/blamejs/blamejs",
|
|
1542
|
-
"bundledAt": "2026-07-
|
|
1650
|
+
"bundledAt": "2026-07-25",
|
|
1543
1651
|
"hashes": {
|
|
1544
|
-
".clusterfuzzlite/Dockerfile": "sha256:
|
|
1545
|
-
".clusterfuzzlite/build.sh": "sha256:
|
|
1652
|
+
".clusterfuzzlite/Dockerfile": "sha256:10f54c84bbb627cb3e95c9d64e340a7321be52a2f8647ee24c95d0ac73fe3f4a",
|
|
1653
|
+
".clusterfuzzlite/build.sh": "sha256:06e380561bb23470180a540a7b8d33ac8b07c0bf9232f209f60d42f980f7727d",
|
|
1546
1654
|
".clusterfuzzlite/project.yaml": "sha256:8eafa9380e6f975b0b56350f37e5096db283d44c1ea448b25fde1958586e06e0",
|
|
1547
1655
|
".dockerignore": "sha256:37cd6917661eb77d1a056640ca92c50b0330aafe79b7b7eb648e464de38b9e01",
|
|
1548
1656
|
".gitattributes": "sha256:e9cf080d6c7fbc9759f2ef583bbe91a26ae63cd6c7f7693d557997e4c231f006",
|
|
@@ -1553,35 +1661,35 @@
|
|
|
1553
1661
|
".github/ISSUE_TEMPLATE/feature_request.md": "sha256:97d28b8dbbdd40018ca3ff3c43a1beaab1fe3ed906de0e9e3653b27c7e615266",
|
|
1554
1662
|
".github/PULL_REQUEST_TEMPLATE.md": "sha256:943ded5b67dccff1cda27ee5c4cf1377e5185ec9130b01fa6085789042955640",
|
|
1555
1663
|
".github/codeql/codeql-config.yml": "sha256:f1c7fb934ebfefcc1096ba2a4b79b1451e4a0435ac7bd5e31a375649a34c1980",
|
|
1556
|
-
".github/dependabot.yml": "sha256:
|
|
1557
|
-
".github/workflows/actions-lint.yml": "sha256:
|
|
1558
|
-
".github/workflows/cflite_batch.yml": "sha256:
|
|
1559
|
-
".github/workflows/cflite_pr.yml": "sha256:
|
|
1560
|
-
".github/workflows/ci.yml": "sha256:
|
|
1561
|
-
".github/workflows/codeql.yml": "sha256:
|
|
1562
|
-
".github/workflows/npm-publish.yml": "sha256:
|
|
1563
|
-
".github/workflows/release-container.yml": "sha256:
|
|
1564
|
-
".github/workflows/scorecard.yml": "sha256:
|
|
1565
|
-
".github/workflows/sha-to-tag-verify.yml": "sha256:
|
|
1664
|
+
".github/dependabot.yml": "sha256:c48784b43d837948de81607d60c887d43a331a587bf650cff7b38b017754eb39",
|
|
1665
|
+
".github/workflows/actions-lint.yml": "sha256:7039260316872b4e9d831f8a45f29447bc511ceffafbcaa09948603b9480d414",
|
|
1666
|
+
".github/workflows/cflite_batch.yml": "sha256:91202887bd93d7db58fcc8b5edd15f1d0b506e504905d71e458663ad5e2aa013",
|
|
1667
|
+
".github/workflows/cflite_pr.yml": "sha256:8c0a27ec94e4c4a3aeb42ce7a84d6eecd044176e0d04232a5abf82dc0fc64bbc",
|
|
1668
|
+
".github/workflows/ci.yml": "sha256:de5d91c40b06a2099de106750602be7e364166ecefe9238661a7bcc997a2b81b",
|
|
1669
|
+
".github/workflows/codeql.yml": "sha256:dff16038ff9cb2f4968833909255554a536a530e88db1c6889d5b780b9f2366c",
|
|
1670
|
+
".github/workflows/npm-publish.yml": "sha256:c5b321f323b6e1ee9d377c8675de517ca41f3f9fee04cfbc3eea83606eb30475",
|
|
1671
|
+
".github/workflows/release-container.yml": "sha256:7d58c58c98ca8fdf2053c55ec88d1a53653b69de453d1a1cb1f063779190d614",
|
|
1672
|
+
".github/workflows/scorecard.yml": "sha256:277d8ea169207d0ccab6c811014ded42b269195b313ac3d0e29055577283e44e",
|
|
1673
|
+
".github/workflows/sha-to-tag-verify.yml": "sha256:c87fa1879b8e88e1170d089eb267f572a26bf1544c38e8be7d3715f1d58fad09",
|
|
1566
1674
|
".github/zizmor.yml": "sha256:fe08e66c5763dfb4edf1ea33e715f04e514b1baceb3a242241d8a60793db51d2",
|
|
1567
|
-
".gitignore": "sha256:
|
|
1675
|
+
".gitignore": "sha256:338974739a9c87912cd66a4c700a43605f197e0e3adcac3416edc0b4032866c3",
|
|
1568
1676
|
".gitleaks.toml": "sha256:e97869021bc744236bd882a2af070eebbbc95d211336c60bf179f6521d6ed96b",
|
|
1569
1677
|
".hadolint.yaml": "sha256:46a4fbc587c8e5998430788339cc3f2be8d1014a0466a0781eb2e51e31c6dd32",
|
|
1570
1678
|
".npmrc": "sha256:66f104e7d07c496d2d0409988225e8c0e4ceb8d247dbcac3be75b2128d20ce66",
|
|
1571
1679
|
".pinact.yaml": "sha256:0213ffda55961dc49b64c0a5dfa3c0567419633b1499d57eaf7c8d842d7da6c7",
|
|
1572
1680
|
"ARCHITECTURE.md": "sha256:9b1c8d2b1b7a41838eb348b0a008e4b4369718fd72bfe2974b37155f7536d35b",
|
|
1573
|
-
"CHANGELOG.md": "sha256:
|
|
1681
|
+
"CHANGELOG.md": "sha256:60bf57301952e91c67eaf57693c385079f5c79eb2df46770dbd6c1733837d4bb",
|
|
1574
1682
|
"CODE_OF_CONDUCT.md": "sha256:148a281960fff7c2fe6554dab66da572c72245ddeb00b0d14811558397bff386",
|
|
1575
1683
|
"CONTRIBUTING.md": "sha256:3e4575c3cd57e72317773a80faabcabb611133ace5ee523db4b8d631e80bdaa8",
|
|
1576
1684
|
"GOVERNANCE.md": "sha256:906df6afb1f552b27b9acb50f7f96c47b917a2f1021cd4e987dbf4ee0e0a821b",
|
|
1577
1685
|
"LICENSE": "sha256:d1b40781c0774cb3b2936beb466709994d164b0f7466000be5279b5ed522af65",
|
|
1578
1686
|
"LTS-CALENDAR.md": "sha256:8ed8c0051c3d4e14637a24555751b07758fbac2678688d9e1aca2ce312bcf585",
|
|
1579
1687
|
"MIGRATING.md": "sha256:3dcc952a3d4a77d53ff60fb67cb5eb5c3a3db2449d7c71f9c4dc7f868097153c",
|
|
1580
|
-
"NOTICE": "sha256:
|
|
1688
|
+
"NOTICE": "sha256:59e6c77a3ab142d118bfed70b3b69c84b56941b020849485fa5784ab906c9f39",
|
|
1581
1689
|
"README.md": "sha256:e1c6d401d81c959a0f264d73b3640a26465921f0ceb1103be6936816d99d21b4",
|
|
1582
1690
|
"ROADMAP.md": "sha256:d66be1de21603794608395c57ecc17381b673452ea74159bd805c85684821ecd",
|
|
1583
|
-
"SECURITY.md": "sha256:
|
|
1584
|
-
"api-snapshot.json": "sha256:
|
|
1691
|
+
"SECURITY.md": "sha256:f7f853de9d344624cdaddfc1b5b1782eee3626dd855b32318340ec9a2aa4c6bd",
|
|
1692
|
+
"api-snapshot.json": "sha256:457c80169beedec39d22a5af7cbfc3fe0547eb8abded70ff995fffac2a52ac0f",
|
|
1585
1693
|
"assets/BlameJS_Logo.png": "sha256:3c65699753c771b48ef9ac7f45bb40815ec19a23afcdd0cd30ef4601bbbe293e",
|
|
1586
1694
|
"assets/BlameJS_Logo.svg": "sha256:dda44f3fb1343d5de9db6b1fcdb75fc649c57e7a99a8e8239fcf852e3841e1a8",
|
|
1587
1695
|
"bench/README.md": "sha256:74202f2507fd840bfc1ac6c681975d9273cf36cca6e0f72655f138337304033c",
|
|
@@ -1598,7 +1706,7 @@
|
|
|
1598
1706
|
"docker/coredns/Corefile": "sha256:a2ab1d905b73cdb4dc77e3e6911a610024b3635d36cca310956828fef4e08a5d",
|
|
1599
1707
|
"docker/haproxy/haproxy.cfg": "sha256:e56253eb1bbec541b968acde9c6e3b89e7d40bb56d7884de3dae812490f126ae",
|
|
1600
1708
|
"docker/init/generate-certs.sh": "sha256:d652b942bbd3edb7316e9abe5970b5bf595b22e64df4f9cfc4d6663cc353988c",
|
|
1601
|
-
"docker/keycloak/realm-blamejs-test.json": "sha256:
|
|
1709
|
+
"docker/keycloak/realm-blamejs-test.json": "sha256:cc78a08e27c76bd6b79aab0096040b6027a9f6ca5bdb19a988ccd21c3599af89",
|
|
1602
1710
|
"docker/mitmproxy/config.yaml": "sha256:8f48e9bdcde2b97402feffd6e2267f80db12ee8320ba3fd4ee230a03c5691a5f",
|
|
1603
1711
|
"docker/mongo/init-tls.sh": "sha256:68603e330440b0cbbad7efefc61f7e2fec404dfe393c90d9d8d2b6699edfe285",
|
|
1604
1712
|
"docker/mysql/my.cnf": "sha256:8abc96c7d114468967068b9e6eb6839f6585eb58cdc65afac8bf6941bca94191",
|
|
@@ -1618,7 +1726,7 @@
|
|
|
1618
1726
|
"docs/cis-sqlite-equivalent.md": "sha256:a6ae52d6936b52604b584d290b4fe40011987c475d8ce7eb29168122b5232d14",
|
|
1619
1727
|
"eslint.config.mjs": "sha256:532a857418bf2cf0b709e0227414b2ec6f73de450d2a6e27904924fd43d08a2d",
|
|
1620
1728
|
"examples/wiki/Caddyfile": "sha256:6428e568e2c30c5cc014822725df6998b5eb102c92e0bf7f556ab39532c96690",
|
|
1621
|
-
"examples/wiki/DEPLOY.md": "sha256:
|
|
1729
|
+
"examples/wiki/DEPLOY.md": "sha256:6acba1e9ba488616f0e9ed7dcccd5331387c50d50d8f4da76da5cac96097b4c2",
|
|
1622
1730
|
"examples/wiki/Dockerfile": "sha256:a5512792ec02e4b8df0c32a2d4dd9d54c3468a81178266648821a5a43a6b1ca2",
|
|
1623
1731
|
"examples/wiki/README.md": "sha256:74319ff6cbdb16c7d0eb2aa3ef1b33f9692f778f36a3688b0ee88d6154ea3ae5",
|
|
1624
1732
|
"examples/wiki/cli-snapshot.json": "sha256:9fc00825db2a12172d8a91a687c0e8b96a276191db36f1d437bf7e5cb45b8954",
|
|
@@ -1626,7 +1734,7 @@
|
|
|
1626
1734
|
"examples/wiki/docker-compose.yml": "sha256:c27bddfc07f3293c5e78ad11c31624dd85d225cef08b47b89147f2d5c2d37522",
|
|
1627
1735
|
"examples/wiki/env-snapshot.json": "sha256:e538ed640078ba8779972238c3f8802e2a826fa1c0b720112cf879b643a2c09f",
|
|
1628
1736
|
"examples/wiki/lib/auto-site-entries.js": "sha256:9af6e506e43224a8ec175f790ec7f62237b2344bdd20b38ebb6688db245e3eff",
|
|
1629
|
-
"examples/wiki/lib/build-app.js": "sha256:
|
|
1737
|
+
"examples/wiki/lib/build-app.js": "sha256:5e91e3e2e8966982f0b542618ca016d59ae5106a50f4027c09dfac05f4e4b548",
|
|
1630
1738
|
"examples/wiki/lib/harvest-cli.js": "sha256:374d0cfbe93aff9990fc2aa1b0ee85398954b69fac9e9528c5a9463dabb20806",
|
|
1631
1739
|
"examples/wiki/lib/harvest-env-vars.js": "sha256:b5360d802257bc44200d99d27b8ef5cc0b411c9ae47fc6ddbb2e67b5d18ea29a",
|
|
1632
1740
|
"examples/wiki/lib/harvest-errors.js": "sha256:0810fc6b360888aa5072e7e63a6cc3b4b500588ac3ab7d863d52ffea2f0fab6e",
|
|
@@ -1636,11 +1744,12 @@
|
|
|
1636
1744
|
"examples/wiki/lib/opts-resolver.js": "sha256:a7919521092ae5c54b66d30c4d778819fdeaead5edc8baad803157442c0930fc",
|
|
1637
1745
|
"examples/wiki/lib/page-generator.js": "sha256:84553c5e501eedb821c36dfa4b24c725cfa187f483964c65111ee660795f2ca2",
|
|
1638
1746
|
"examples/wiki/lib/section.js": "sha256:ea354e6a7a6f8683eff423e6f6786226b2639c5ec370f57e4855f7691a958e53",
|
|
1639
|
-
"examples/wiki/lib/source-comment-block-validator.js": "sha256:
|
|
1747
|
+
"examples/wiki/lib/source-comment-block-validator.js": "sha256:b151221785b2b747d724fa9234e33d36d9ecab91c04dec2b765b423f636616c7",
|
|
1640
1748
|
"examples/wiki/lib/source-doc-parser.js": "sha256:e39a1701dbe6940987b11e9318e535039e8a5d1dbc67ba7b7e6bac4ef87ef638",
|
|
1641
1749
|
"examples/wiki/lib/symbol-index.js": "sha256:abd133b4aa8e582cf72b7c92fafe7f342b2d06d1a9f3d1082eb0c4df8a743b0e",
|
|
1642
1750
|
"examples/wiki/migrations/0001-pages-schema.js": "sha256:b4459ee6d1d4f1130dbf0c7a22b39ffa0f972a7ca3a0ef19215abe4bf35e46a5",
|
|
1643
|
-
"examples/wiki/
|
|
1751
|
+
"examples/wiki/nginx.conf": "sha256:27763c094e7a753a37e52f9227bfe8b2b9f36bdd382bc7e1d1e0892b1f5781e1",
|
|
1752
|
+
"examples/wiki/package-lock.json": "sha256:28985f7e254ebd55e018eff82722705a29050d7432d9825f3a88f13dc985455b",
|
|
1644
1753
|
"examples/wiki/package.json": "sha256:8efb9ee3012107f9631ce23e7846ff2b10cadf643ec449e7940de496728aaedb",
|
|
1645
1754
|
"examples/wiki/public/img/blamejs-logo.png": "sha256:3c65699753c771b48ef9ac7f45bb40815ec19a23afcdd0cd30ef4601bbbe293e",
|
|
1646
1755
|
"examples/wiki/public/img/blamejs-logo.svg": "sha256:dda44f3fb1343d5de9db6b1fcdb75fc649c57e7a99a8e8239fcf852e3841e1a8",
|
|
@@ -1664,7 +1773,7 @@
|
|
|
1664
1773
|
"examples/wiki/src/wiki.js": "sha256:608c5c2c813e534aa21ae1c407536975a98a171710505c38c6f14ed41786f81d",
|
|
1665
1774
|
"examples/wiki/test/AUDIT.md": "sha256:28868e102852aa5c0981421035066a1da6676ec5ed8d0f4b88571614dc3301ab",
|
|
1666
1775
|
"examples/wiki/test/codebase-patterns.test.js": "sha256:f58906929709be8eabc56cd3e40f0741fa25bdecca0bdc906b4c2cc820a7a21a",
|
|
1667
|
-
"examples/wiki/test/e2e.js": "sha256:
|
|
1776
|
+
"examples/wiki/test/e2e.js": "sha256:4d4f83f89de76b70e4ad2891709df07afe11770df991668145ffd178ed9e9db4",
|
|
1668
1777
|
"examples/wiki/test/find-missing-pages.js": "sha256:8c5fe5c0f725d81d67def0aee23b602e6f8a70ec5d46dee539a3c5ab28d49a07",
|
|
1669
1778
|
"examples/wiki/test/integration.js": "sha256:34d4d1cea874a8175cd5cbca488c3c8f0daf4f1fd2a708a6fdfa7e296b1b18e7",
|
|
1670
1779
|
"examples/wiki/test/validate-cli-snapshot.js": "sha256:47fc613bf994de0fd38c1425d6c0bde858400ab7ad8f4b3b391f9802ba73624b",
|
|
@@ -1684,6 +1793,8 @@
|
|
|
1684
1793
|
"examples/wiki/wiki.config.js": "sha256:ee6d35d7befa054e06826efca47dcdf786cad1a19d86e523a2dc6d63200b7f1d",
|
|
1685
1794
|
"fuzz/README.md": "sha256:2edbbc875f6f9e3c4b347b680d4b52c194b4046cec783c9ef6d474012eb5201a",
|
|
1686
1795
|
"fuzz/_expected.js": "sha256:1bde39c501432521c1cc4799bd96c9aa61cf08244b1ae0bec5d4e3f61436c7dd",
|
|
1796
|
+
"fuzz/asn1-der.fuzz.js": "sha256:972d73bc57af3a86df17f018aae75dc5180543a54108b5b81f18f473180907a7",
|
|
1797
|
+
"fuzz/cms-codec.fuzz.js": "sha256:6f99b6e1040b22c200415ad4c1b5bac5bbcaf54f2729363a2756497249b50236",
|
|
1687
1798
|
"fuzz/guard-agent-registry.fuzz.js": "sha256:7832d910746e286612362a2beb037d2fbaf4e7a81dccb045756fa87a937e9ee4",
|
|
1688
1799
|
"fuzz/guard-csv.fuzz.js": "sha256:83fc8fb6310649f03fa6f1882a42696e5feb76dc530e72d4c63e5260424bba61",
|
|
1689
1800
|
"fuzz/guard-csv_seed_corpus/01-basic.csv": "sha256:a5bd807e56e1e4981edd4e2ac52bf7cf55ef0c127b2b8ccf5c5100faee2dd2bd",
|
|
@@ -1743,6 +1854,7 @@
|
|
|
1743
1854
|
"fuzz/guard-yaml_seed_corpus/02-anchor.yaml": "sha256:6cdb1ffbaabc80a3d96ca3e7b57217efbf879f58e68c287cfd577447fcbbe59f",
|
|
1744
1855
|
"fuzz/guard-yaml_seed_corpus/03-norway.yaml": "sha256:53a075b9f3dda7d6bd560564f4084e49953e131aa9a275c62d3f582069d920d7",
|
|
1745
1856
|
"fuzz/guard-yaml_seed_corpus/04-multidoc.yaml": "sha256:60d0f08bc5e1899597c8c49308921e1977cfb335fc191d7b55e4c9f074c1d66d",
|
|
1857
|
+
"fuzz/link-header.fuzz.js": "sha256:7c7c45efb320e1451e49a653eec2d9f85ccb8963d7811e5dc5492e12358e5256",
|
|
1746
1858
|
"fuzz/package-lock.json": "sha256:00353c57a22aab8be92d44192f5524a550e4452add0afa06e1de13f9357020b0",
|
|
1747
1859
|
"fuzz/package.json": "sha256:11de8058f1bf323575f32250007264ed6b036b45db9a01a646938876b05ae183",
|
|
1748
1860
|
"fuzz/parsers__safe-ini.fuzz.js": "sha256:ed92e0b4ce81f27c704433dc13fee9aa82627ab3991ff2043b867814c82e2ddb",
|
|
@@ -1781,20 +1893,20 @@
|
|
|
1781
1893
|
"fuzz/safe-url_seed_corpus/05-ipv6.txt": "sha256:b210575d6e9f91b70d1616c89a38bf81e66e4356dcf204a3d40f1932961d01cc",
|
|
1782
1894
|
"fuzz/safe-url_seed_corpus/06-idn.txt": "sha256:9f163641afe7046491b09f95684e30aac38b3cbf243afb115c556ae4fc0339f0",
|
|
1783
1895
|
"fuzz/safe-vcard.fuzz.js": "sha256:ddd5f76aea5c34cca575a8e501c0e42f3148507cab943424a27a2724d644562c",
|
|
1784
|
-
"index.js": "sha256:
|
|
1896
|
+
"index.js": "sha256:0d92617c874cf04712f7f9af8752f361a056603bc16328f7001bf71722c8696d",
|
|
1785
1897
|
"keys/release-pqc-pub.json": "sha256:38fb7f580ccc06c5682c5c3f12b43441d4fdd3e79cf57afb8b3dab3a73af290d",
|
|
1786
1898
|
"lib/_test/crypto-fixtures.js": "sha256:a2e49bf91465126a97f11d632d4f7e8e4166a064c79b584dd0718b323f9ea880",
|
|
1787
1899
|
"lib/a2a-tasks.js": "sha256:58adf4b87bfe16acb8108537e4337d366888b9b7f754347c78c23fdfd1ff89c6",
|
|
1788
|
-
"lib/a2a.js": "sha256:
|
|
1900
|
+
"lib/a2a.js": "sha256:b54bb229ad3ef3bab4ade52b73dd2a06c9ae41c477f035ff18c6e760f75d5509",
|
|
1789
1901
|
"lib/acme.js": "sha256:4a6d055432ea13e7ba6747427193ffd6f5b71784208da4cc95245cf7bffc092b",
|
|
1790
1902
|
"lib/agent-audit.js": "sha256:3a165a895b8c8e2c9d9e5128ade478f92bc672c49f53b859e6713fbc8d00d14e",
|
|
1791
1903
|
"lib/agent-envelope-mac.js": "sha256:66f18e034596ff25e37f78cb68da0e02b06396e406ff55b7083fe4f70a02a4a4",
|
|
1792
1904
|
"lib/agent-event-bus.js": "sha256:97a79a279ded2a0744636cf7622e8c877ad62053a064a604453c8bb9c197e21c",
|
|
1793
|
-
"lib/agent-idempotency.js": "sha256:
|
|
1905
|
+
"lib/agent-idempotency.js": "sha256:149b6bfbcdf134f3edcd6876f50a836e25383796e10bc08d9d25ff62296ec27a",
|
|
1794
1906
|
"lib/agent-orchestrator.js": "sha256:b6bd8f1f374ad6192416393e4c9ab3673f4edd981aa897f1f44c522a1e32120a",
|
|
1795
1907
|
"lib/agent-posture-chain.js": "sha256:6fd00b3e426af750b6e2a3a7ae65dad0238ea3abc786859f57b4935d906b257d",
|
|
1796
|
-
"lib/agent-saga.js": "sha256:
|
|
1797
|
-
"lib/agent-snapshot.js": "sha256:
|
|
1908
|
+
"lib/agent-saga.js": "sha256:5ffb869ff1e56f8bea8d6fbba876dbd8581eb031ec622c4525b6acee3c6cac1b",
|
|
1909
|
+
"lib/agent-snapshot.js": "sha256:6d345953fc977001052d8ba8277989af19c202e3cd871050607fca1be6de10e2",
|
|
1798
1910
|
"lib/agent-stream.js": "sha256:043e6daecc0d114f2a5f4ec12d90a55a12ed6f034db62f744a1840ac1c0b239f",
|
|
1799
1911
|
"lib/agent-tenant.js": "sha256:81d71f903bb20864da554617e06d7e2c504adf0fd3574c191036fd62f7db1616",
|
|
1800
1912
|
"lib/agent-trace.js": "sha256:a4180f0a5bc415e2acb6efa308ab8a73d6d86823cd3e4933b01196fcdb0ae751",
|
|
@@ -1813,19 +1925,19 @@
|
|
|
1813
1925
|
"lib/ai-quota.js": "sha256:bbc91fdeed35ab964f432350cf52fbd076c6e8270b4eb503fd376af94de74963",
|
|
1814
1926
|
"lib/api-key.js": "sha256:f9e456294f39d20602da933c4465dbe1074f5bd4c608be9d6b45074a6cd9ae97",
|
|
1815
1927
|
"lib/api-snapshot.js": "sha256:4762e424487ad30e65bbc3fc9ac3d86e8cd5b1246624d408a01b2f422b03bdf6",
|
|
1816
|
-
"lib/app-shutdown.js": "sha256:
|
|
1928
|
+
"lib/app-shutdown.js": "sha256:14458c4d39d270d3618fdd3da555275a5eba454d390c3b70b7c974e80d780967",
|
|
1817
1929
|
"lib/app.js": "sha256:8a1f7777fb842d2feb920724fa2dea294f2190379713d2101b7dc8dfa6deb255",
|
|
1818
1930
|
"lib/archive-adapters.js": "sha256:25a03aedcef179d73d9e018a554e15b4aba1848968e7edc1d2dc22ff29b5522c",
|
|
1819
1931
|
"lib/archive-entry-policy.js": "sha256:087e1196f1ccd89761f9e2a2cfb032bae825620cc7e1cdaeff64b930ec52deed",
|
|
1820
1932
|
"lib/archive-gz.js": "sha256:345deda73a6a1888fb0e7f1fa99804655c50a53b9dc8f02ce990a87b94433bb2",
|
|
1821
|
-
"lib/archive-read.js": "sha256:
|
|
1933
|
+
"lib/archive-read.js": "sha256:bd40a749aab2baee466243ca8c8fafb6388dad3972fb4d9e1b4b121f9e53ef1a",
|
|
1822
1934
|
"lib/archive-tar-read.js": "sha256:06ee6b53f3c38d21f37715e3a2e75d1d040ad7c5a62b5389c17300aaa12ecf60",
|
|
1823
|
-
"lib/archive-tar.js": "sha256:
|
|
1935
|
+
"lib/archive-tar.js": "sha256:cbcfae54bacf904549c4ff8357b21de60b5fbdbac259c87a35334c0c47e1afd5",
|
|
1824
1936
|
"lib/archive-wrap.js": "sha256:27764b5c7ffceba26f7274d391d61343dfc136d0c7e93d057d0f94d9d8f9410e",
|
|
1825
1937
|
"lib/archive.js": "sha256:796e3463579bc6b2f4c1341f640a00f5dea5a2dc4fe77ec75215154d006e4ebd",
|
|
1826
|
-
"lib/arg-parser.js": "sha256:
|
|
1938
|
+
"lib/arg-parser.js": "sha256:6ddcde2fcb0949f0faa859d52fba2ce7f70c579caa380c44d7ef01d355fb33de",
|
|
1827
1939
|
"lib/argon2-builtin.js": "sha256:10db237b2bf92b2a3080bbed4e1a56674cc16653c0f95dbcdb2cd4317959e634",
|
|
1828
|
-
"lib/asn1-der.js": "sha256:
|
|
1940
|
+
"lib/asn1-der.js": "sha256:8a928858dc51da579407a0c7832bee64faf239e762fdeace4a7c38eb4fff2a8d",
|
|
1829
1941
|
"lib/asyncapi-bindings.js": "sha256:c731f72a6bbda280d37656dc17b9fcf8a1d8775aa38220b1b47eeed5de32c0e9",
|
|
1830
1942
|
"lib/asyncapi-traits.js": "sha256:5efc374dfebf716cc403a4a51af5c68130b2ba227f1c2ac79dcc74d6913bc16b",
|
|
1831
1943
|
"lib/asyncapi.js": "sha256:5be8253821550a6236fe7f0382d2db422a047e4ef87d9ecf8dc145149529ce4f",
|
|
@@ -1833,9 +1945,9 @@
|
|
|
1833
1945
|
"lib/audit-chain.js": "sha256:1982abb2fa50a5fb99eaac144db907c696ca1332dae08068f49055e5b9a688f3",
|
|
1834
1946
|
"lib/audit-daily-review.js": "sha256:ae9c90652c87ac11122409d9358d2b302fd76ec09091d4a887c16b6758dc585b",
|
|
1835
1947
|
"lib/audit-emit.js": "sha256:40aa17c9e78fedb2314774888e613ef1457c8c09d73b915b4af83989f31ff369",
|
|
1836
|
-
"lib/audit-sign.js": "sha256:
|
|
1948
|
+
"lib/audit-sign.js": "sha256:e13f921b9ed82bcdd0461904548e0351053bbedc4b54e2d6108139b73df8bb93",
|
|
1837
1949
|
"lib/audit-tools.js": "sha256:9d7ea2a9164b851f1c9bb5dea6727e5a6a1f4689a392d31b6815213f24228886",
|
|
1838
|
-
"lib/audit.js": "sha256:
|
|
1950
|
+
"lib/audit.js": "sha256:c4c361432920dfce4f49953ad67929f0b50a405cacfede7b956733e38b8f3534",
|
|
1839
1951
|
"lib/auth-bot-challenge.js": "sha256:bfc9d3f2d0e943098d0e0f88fd30f081bc8185845b67679a0a5363a8b42916f2",
|
|
1840
1952
|
"lib/auth-header.js": "sha256:84988a0f6f908b6fe786461000b0c977e35882fbceb574a4534a8053b3b8aebe",
|
|
1841
1953
|
"lib/auth/aal.js": "sha256:c7cb5a38bdb243dd66fd21d36d37d656fe60a54fc37be7b5fdbc24a039c738c2",
|
|
@@ -1844,64 +1956,64 @@
|
|
|
1844
1956
|
"lib/auth/ato-kill-switch.js": "sha256:c24ac9d38fd6de074fd245deca7a9bfe4236424f6f991605154cca37f5c7c105",
|
|
1845
1957
|
"lib/auth/auth-time-tracker.js": "sha256:165ad4248ed302037d1ccdf9fa99d6854e1dc02d36c90cf0e440dc63e5963431",
|
|
1846
1958
|
"lib/auth/bot-challenge.js": "sha256:c0ed26579bfde555b5ea0733ce408f39fcb89d3162bdff636a1e75cdffb1472f",
|
|
1847
|
-
"lib/auth/ciba.js": "sha256:
|
|
1959
|
+
"lib/auth/ciba.js": "sha256:e32b87cde8c7f1b28509d7750258b3c38c0b1ea277671e97b377312dff022726",
|
|
1848
1960
|
"lib/auth/dpop.js": "sha256:db58935d7c1485a9d0df05893d00b843f487d1b083ba0ab78300d559a1254e95",
|
|
1849
1961
|
"lib/auth/elevation-grant.js": "sha256:069cfd315969cabede92dc2f36958386a3d0b2fa058649ec837048bc0fa81c90",
|
|
1850
1962
|
"lib/auth/fal.js": "sha256:5ac1601e7628a8e8adb9d6c55e41f55ac2685cf390b62c576d780d22320c0399",
|
|
1851
|
-
"lib/auth/fido-mds3.js": "sha256:
|
|
1963
|
+
"lib/auth/fido-mds3.js": "sha256:962f61a888aeef61e493014d759327369623675b3ca19c3352ef14251671f134",
|
|
1852
1964
|
"lib/auth/jar.js": "sha256:d224e510a00b39d050b683b93f1953bd75420ba203050f09a39acaa1707ccd07",
|
|
1853
1965
|
"lib/auth/jwt-external.js": "sha256:1e5bd4fde2a02a5650f716528bad51fe05217a8db0fd639fd7508d212f27fd00",
|
|
1854
|
-
"lib/auth/jwt.js": "sha256:
|
|
1966
|
+
"lib/auth/jwt.js": "sha256:1634e7e86970b863c542e82d958ac6dfb5d0ae43dea17cb08e586b6c7c4fbbc8",
|
|
1855
1967
|
"lib/auth/lockout.js": "sha256:9629c66f764534444dd812a2cd47b1db2a83fb899e17689e5862a29594acd7e3",
|
|
1856
|
-
"lib/auth/oauth.js": "sha256:
|
|
1857
|
-
"lib/auth/oid4vci.js": "sha256:
|
|
1968
|
+
"lib/auth/oauth.js": "sha256:25d82b81183646dc2ed0e706536d0cc99d401bb412e7cf2d0a0a08184a566df3",
|
|
1969
|
+
"lib/auth/oid4vci.js": "sha256:724e4fdd2688873a0482f8d4537a0651798ec6eb15cecd9047b3bd37c5cd8433",
|
|
1858
1970
|
"lib/auth/oid4vp.js": "sha256:494d539d8ba9642d38d1629ee782d5730bf78dc5579712e215fe0326e2b84591",
|
|
1859
|
-
"lib/auth/openid-federation.js": "sha256:
|
|
1971
|
+
"lib/auth/openid-federation.js": "sha256:cb2427257a7e2ca96f673f7b4880f13d6dd76b93aad8b1ae61799cc6e35877f2",
|
|
1860
1972
|
"lib/auth/passkey.js": "sha256:e941ba39fd3cab528983a0dd6db136c01969be39b3a95d70de859b09f250f202",
|
|
1861
1973
|
"lib/auth/password.js": "sha256:f4afd45e5ceb727077ead9602d4b74beb7b01d5d1a6de53cc01e113d849133b5",
|
|
1862
|
-
"lib/auth/saml.js": "sha256:
|
|
1974
|
+
"lib/auth/saml.js": "sha256:82c96f7b7f817de4268fffc006664feb7053672632ada4b92e8837c8da3ab905",
|
|
1863
1975
|
"lib/auth/sd-jwt-vc-disclosure.js": "sha256:a6726f8c64a541218949801e0b22eb1d6395837b594230aa4d998348185d9685",
|
|
1864
1976
|
"lib/auth/sd-jwt-vc-holder.js": "sha256:c53afc6dad9632fa91b7ad9e7817c98e75986960b1d9450405ed3178a4de1000",
|
|
1865
1977
|
"lib/auth/sd-jwt-vc-issuer.js": "sha256:ea15ecca97ede34641a8f2193990b365142d5cb48ba6ababc4de0463bd0b2dc6",
|
|
1866
|
-
"lib/auth/sd-jwt-vc.js": "sha256:
|
|
1978
|
+
"lib/auth/sd-jwt-vc.js": "sha256:30bc7033e46db00970e80a9b2c36e501ca3afb677e347330eddffa864400a1b2",
|
|
1867
1979
|
"lib/auth/status-list.js": "sha256:5f4c5042225204371ad9792b21d3395f3737d8821178006fce90d2406b2ce4fd",
|
|
1868
1980
|
"lib/auth/step-up-policy.js": "sha256:961e07832924ceb2b798beedea28b91e616508a1a1c773ae6a21e120caee8359",
|
|
1869
1981
|
"lib/auth/step-up.js": "sha256:aedc62ca413dfa49ace8d1dd66dc411eb3574af8161794edbcd1a2c47383f1bd",
|
|
1870
|
-
"lib/backup/bundle.js": "sha256:
|
|
1982
|
+
"lib/backup/bundle.js": "sha256:485492d4ff2d8683b02d0f0ab987377fefc3555559a581939efc7a131e401c3b",
|
|
1871
1983
|
"lib/backup/crypto.js": "sha256:1dcd9561d191f9c0a9e861a06f193941ecddcb9e2993cd34cdae50e29c7dec84",
|
|
1872
|
-
"lib/backup/index.js": "sha256:
|
|
1873
|
-
"lib/backup/manifest.js": "sha256:
|
|
1874
|
-
"lib/base32.js": "sha256:
|
|
1984
|
+
"lib/backup/index.js": "sha256:8be0d0d814053ccca00fda36b17753de4bb2a69b9b47c9eb41b1517c669d3bf9",
|
|
1985
|
+
"lib/backup/manifest.js": "sha256:15af5f864d3b4e9c5c83738a5ec4ad2db0503ef6a1c303fb274d67ce1ae2b83f",
|
|
1986
|
+
"lib/base32.js": "sha256:8aa866cc20e63fae7e7d249faafd151185fbe178a1a7a7cc22c80ae91585bced",
|
|
1875
1987
|
"lib/boot-gates.js": "sha256:11203d332927092c3353c06739050cd0e8aa9f9da23fa23a8429f611f893abd8",
|
|
1876
1988
|
"lib/bounded-map.js": "sha256:7437cdfdf5cf75a7df2f8c25d705eccf0b8c9d33ff75b0de63c6c6b5b8a38580",
|
|
1877
1989
|
"lib/breach-deadline.js": "sha256:b356de910e11ee9cd9fa43796dcd5a43d5613700b65b03911d0e097c078c3dad",
|
|
1878
|
-
"lib/break-glass.js": "sha256:
|
|
1990
|
+
"lib/break-glass.js": "sha256:84dff322e737fb89ba642066f062fed3b5222732ad7b4d33d7fb80d1f0e6016c",
|
|
1879
1991
|
"lib/budr.js": "sha256:d1ae06727c6a7c3a3f02bb9163b48ad1fe0e6b839bd4f86413469472d307c19f",
|
|
1880
|
-
"lib/bundler.js": "sha256:
|
|
1992
|
+
"lib/bundler.js": "sha256:d12191e1eaa72276e866663faab1f2ea4c54f46dd7c0a77f6b2b3e79b4737d38",
|
|
1881
1993
|
"lib/cache-redis.js": "sha256:1bd269dfaf1e4b0dc385466c9f933eef8e847caace8196789269927a45c3646c",
|
|
1882
|
-
"lib/cache-status.js": "sha256:
|
|
1994
|
+
"lib/cache-status.js": "sha256:979fb1408e87ccf77599adf93ed37cce2be9a34d6bbe4364bb701acff38d39fb",
|
|
1883
1995
|
"lib/cache.js": "sha256:a20ec7fe43445e9227322b72b7d634f2ef3ce3ed1a96a6d1382390c9f0aebc5f",
|
|
1884
|
-
"lib/calendar.js": "sha256:
|
|
1996
|
+
"lib/calendar.js": "sha256:7defdfc9f04ddd8a13b723da6f142d8c4ffdb5fcd1551519a1bd1cb81dd469f8",
|
|
1885
1997
|
"lib/canonical-json.js": "sha256:619a0292971dddc29d2e6660e0a2b3a0033776c6956929bdcb79e65da926fb56",
|
|
1886
|
-
"lib/cbor.js": "sha256:
|
|
1998
|
+
"lib/cbor.js": "sha256:298a268f9a6da491d5e943b1d728f57f854c21aa5e64b78f16435ea6861770dd",
|
|
1887
1999
|
"lib/cdn-cache-control.js": "sha256:e54a93e1e17666387923e380a26064b24398c35e95677e152926731958c09b39",
|
|
1888
|
-
"lib/cert.js": "sha256:
|
|
2000
|
+
"lib/cert.js": "sha256:9e8d77eb1c77c3e030a75958e983fbcf3702fec4fd1839a22d6a88d2fec93fbd",
|
|
1889
2001
|
"lib/chain-writer.js": "sha256:76fbbec135a0a47ad0fc5b4dccc8b9f9d4df630b11c8f0af21b71e6a3c3b561d",
|
|
1890
2002
|
"lib/circuit-breaker.js": "sha256:ebc5a66060878a110335e18183d3e31865687dd12106e2f7b49cf212d16836ae",
|
|
1891
2003
|
"lib/cli-helpers.js": "sha256:daca3ac61b22b5ca5222bce68d099fdea9d89e2eaebecf90413373d2b7ac3200",
|
|
1892
|
-
"lib/cli.js": "sha256:
|
|
2004
|
+
"lib/cli.js": "sha256:c63ba52b764ab5759f40362cba3b0e5020616ec389a5c987f91e29641bd3869c",
|
|
1893
2005
|
"lib/client-hints.js": "sha256:8b788e4b49f2b8fdfcbdcaa14fb150f72de9586558accde61ac2da0611587f03",
|
|
1894
|
-
"lib/cloud-events.js": "sha256:
|
|
1895
|
-
"lib/cluster-provider-db.js": "sha256:
|
|
2006
|
+
"lib/cloud-events.js": "sha256:7d510a985c19e5b1cda2dfb65cf2770e70bf37bcfb8763661c58dc736cc39622",
|
|
2007
|
+
"lib/cluster-provider-db.js": "sha256:e94622e8364eeaaa504be451ece01380b9192c53aed80ceb3ed59941a76c2931",
|
|
1896
2008
|
"lib/cluster-storage.js": "sha256:045bb6874517ac5d002fefe0c06815181c98a6e1105df949bae5e48032d0928f",
|
|
1897
2009
|
"lib/cluster.js": "sha256:0326a22cd5bb4a45fe7b85087077e7747503e63cd8d7f3977f734bc4d64c3200",
|
|
1898
2010
|
"lib/cms-codec.js": "sha256:00bf18e065aa5b024349b87337672a90376f42434579139bc771c3b6f54c64b3",
|
|
1899
|
-
"lib/codepoint-class.js": "sha256:
|
|
2011
|
+
"lib/codepoint-class.js": "sha256:4f0be195b5a9597ce6641084ca729411919fe9e0d09f9aed9844ebc45c2ca04d",
|
|
1900
2012
|
"lib/compliance-ai-act-logging.js": "sha256:39fdfa9f3ebb57475e309016a7a8eccd3b3c6d74278682fbaa485728949a8807",
|
|
1901
|
-
"lib/compliance-ai-act-prohibited.js": "sha256:
|
|
2013
|
+
"lib/compliance-ai-act-prohibited.js": "sha256:c3dc8f909adeaf88ab3125931fe229a1bdcd300c102b2000179a72db89b91bd1",
|
|
1902
2014
|
"lib/compliance-ai-act-risk.js": "sha256:7f892f3d6c5346ed9c412215975a405c7d45a998550b27ab13788ce9f1a42fe6",
|
|
1903
|
-
"lib/compliance-ai-act-transparency.js": "sha256:
|
|
1904
|
-
"lib/compliance-ai-act.js": "sha256:
|
|
2015
|
+
"lib/compliance-ai-act-transparency.js": "sha256:901a43b7c9a93b2ab1c077a8c4d7babf886fd92be64079dcfdca9eb9113646dd",
|
|
2016
|
+
"lib/compliance-ai-act.js": "sha256:5578545c892ff5ed0781fdb63060590388037983b51185f17e52d549a071f98a",
|
|
1905
2017
|
"lib/compliance-eaa.js": "sha256:6c3e1d8b30643aa3b416e27dc6075ba25f880391a016d043521ca84dd1779c42",
|
|
1906
2018
|
"lib/compliance-sanctions-aliases.js": "sha256:59c4670311c04f0609104dfdf27a9d6f518b9258d041063e347cae43fcdbe975",
|
|
1907
2019
|
"lib/compliance-sanctions-fetcher.js": "sha256:559d146adac6aadfd833b52b355316dc783df7ddd779da5dd2f7e83b5f496212",
|
|
@@ -1912,74 +2024,74 @@
|
|
|
1912
2024
|
"lib/config.js": "sha256:7f28de45331b39de8bb3b9281ef0641c4b3fdf928088a22fdb51ecac2a1c21d7",
|
|
1913
2025
|
"lib/consent.js": "sha256:0eb93f281d05ac35895cd1e0b8bf7c0cf121bf6c72901f844b52028c6bd3a14c",
|
|
1914
2026
|
"lib/constants.js": "sha256:31897caa2604b53c5365e9e054373b29c753c226beefd3a47e515a9f441c105c",
|
|
1915
|
-
"lib/content-credentials.js": "sha256:
|
|
1916
|
-
"lib/content-digest.js": "sha256:
|
|
1917
|
-
"lib/cookies.js": "sha256:
|
|
1918
|
-
"lib/cose.js": "sha256:
|
|
2027
|
+
"lib/content-credentials.js": "sha256:35123fdfaed6fcb7861c02abacc4fccd2e67f9e3b915f54136a1621ec42d3635",
|
|
2028
|
+
"lib/content-digest.js": "sha256:e2407699832bab8776e3cf6aac583f260ef2461073f4a873ef38c9615ec1a89b",
|
|
2029
|
+
"lib/cookies.js": "sha256:36d4eaea103bdd9616e9c5c4ad65167a6edf0abcfab1e64f206efef0d6f3facb",
|
|
2030
|
+
"lib/cose.js": "sha256:1b4c10c4212d81ea5020de65a462323a3eb4371bec82b72319be7dbcb6958ea6",
|
|
1919
2031
|
"lib/cra-report.js": "sha256:3a8c733af8d4bb61c984700a8c5fdea175c898b653e1505b7c232724a4d928fd",
|
|
1920
2032
|
"lib/crdt.js": "sha256:261c83f253a93802a31b6e88503df1f8feb485fea9b7883195b032113cbba09a",
|
|
1921
2033
|
"lib/credential-hash.js": "sha256:783dd66c9a34981a83a62d440b4f215b80600f80c47bd260cb9bbe6dbc07256a",
|
|
1922
|
-
"lib/crypto-field.js": "sha256:
|
|
2034
|
+
"lib/crypto-field.js": "sha256:80b2c1b29837ca76310468af64086ea830a009f8d3cd6095b80b5a003c1b6b27",
|
|
1923
2035
|
"lib/crypto-hpke-pq.js": "sha256:be7f8919bdb86ddefdda2d4dff00bbb1d3f8e08841524e9bd7a4e449493378f9",
|
|
1924
2036
|
"lib/crypto-hpke.js": "sha256:5abb17e00309603019d22a6b4c919c0ec25e4462a77526339852fc34dadca0e2",
|
|
1925
|
-
"lib/crypto-oprf.js": "sha256:
|
|
1926
|
-
"lib/crypto-xwing.js": "sha256:
|
|
1927
|
-
"lib/crypto.js": "sha256:
|
|
1928
|
-
"lib/csp.js": "sha256:
|
|
2037
|
+
"lib/crypto-oprf.js": "sha256:f682ee8c986b6367c0dac39d7c705ed0f023dbeba3baed2ad04f6a2db7ed5b6c",
|
|
2038
|
+
"lib/crypto-xwing.js": "sha256:97ea0a09d7da28aa31a379c8f4c7aeace9a77a3d1637c8ac1e8ded1e62b20036",
|
|
2039
|
+
"lib/crypto.js": "sha256:4c4dff604d2d84241ec4ba1a1540b7d301d88aeccdaccc16f70dc79e98b8f035",
|
|
2040
|
+
"lib/csp.js": "sha256:c11878144b3331e92952f30140f8a410bc7066b9a1e9b52d41b55c1b02f64655",
|
|
1929
2041
|
"lib/csv.js": "sha256:8030cb17ec959d6a00fa80237743618fa540bd0b9046099921de4c868e625811",
|
|
1930
2042
|
"lib/cwt.js": "sha256:b54ed0267ea2c5d770bfeb5485cf2340ea378eb761fa1fe3a19be3a7e2dd57a9",
|
|
1931
|
-
"lib/daemon.js": "sha256:
|
|
1932
|
-
"lib/dark-patterns.js": "sha256:
|
|
2043
|
+
"lib/daemon.js": "sha256:55e3d0dd7d83fd8bf083f9a0b7f0e51915117a1fefc1092e586aa2a7adbae3f4",
|
|
2044
|
+
"lib/dark-patterns.js": "sha256:0ce940119857745a7ae561c1c31bc8506270f71427e708ffdc8e8f5a99f7be80",
|
|
1933
2045
|
"lib/data-act.js": "sha256:6372f4fc0ca752ac5bb301d0673ae1831d9c2cc84053679029b7a7d55908d8e8",
|
|
1934
2046
|
"lib/db-collection.js": "sha256:91cfd2ac1daf1481de825f6580205aaf48d037e80f14314fc0bb3766872971fd",
|
|
1935
2047
|
"lib/db-declare-row-policy.js": "sha256:1136544c56ddd250f0b3a0b60ab88e24a28e25c5691c7dfd4d5afa598c3aa64d",
|
|
1936
|
-
"lib/db-declare-view.js": "sha256:
|
|
2048
|
+
"lib/db-declare-view.js": "sha256:4df39e1b55e6b85a92d34dd51d25ce645214499caa1fb77355e9339fc9a15645",
|
|
1937
2049
|
"lib/db-file-lifecycle.js": "sha256:95a7d14a5cc05d3af3d640b4db9a6f44cf577f3b3a1857a2cc2a4e61c907a5c8",
|
|
1938
|
-
"lib/db-query.js": "sha256:
|
|
2050
|
+
"lib/db-query.js": "sha256:17608e5d7da7d833e8392b8aecdb3291f33a38879653f6b50754ad66d458d18c",
|
|
1939
2051
|
"lib/db-role-context.js": "sha256:aa609f04285b21476fbf4d72c532bc1268c678dd09ae560637956cf72ad93fb4",
|
|
1940
2052
|
"lib/db-schema.js": "sha256:756561317bfea3c947bb2b4929f9ef2f3e2ec4d33fde03f5e4a3071c16f8b5cb",
|
|
1941
|
-
"lib/db.js": "sha256:
|
|
1942
|
-
"lib/dbsc.js": "sha256:
|
|
2053
|
+
"lib/db.js": "sha256:09d685ec9e568441032a26d06e9e1534ac9ed05e1b6b20d8e8cb09368a1f4e9c",
|
|
2054
|
+
"lib/dbsc.js": "sha256:45db0112c7e4945af98905baeb4ed116dbc7ac4c5cdd6538607d7561216e67a3",
|
|
1943
2055
|
"lib/ddl-change-control.js": "sha256:4c7290b6e8be311c21cfb05e87fa6e02d10279e9857e272f9d9e883be6ac5e25",
|
|
1944
2056
|
"lib/deprecate.js": "sha256:3ba663739a9d5cf85c2a3675682b5454d353df54040ec21f6c6780a3c3ef1617",
|
|
1945
|
-
"lib/dev.js": "sha256:
|
|
2057
|
+
"lib/dev.js": "sha256:4e5be5a678eedab8a66d4a62c95ab873bbf563970a4b5f6c05ffb70623fd7fa4",
|
|
1946
2058
|
"lib/did.js": "sha256:9b47922a86468dacf8271ac5f2e90c66f7d903b928eecdb45bbef4a6efec68af",
|
|
1947
2059
|
"lib/dora.js": "sha256:8da435a25ed66e19a8a5809b546ece4f4bd7e877690f04724ca69f9123350ba8",
|
|
1948
2060
|
"lib/dr-runbook.js": "sha256:7781a26e48b81b424c2fc88f96d3e365074c4dc9e9efb793d4ea737f7a23b0c7",
|
|
1949
2061
|
"lib/dsa.js": "sha256:75af6bc9bdd02384fb6f1b64b9c6ddfd8c28e61bf553671dd7a54ad970810495",
|
|
1950
|
-
"lib/dsr.js": "sha256:
|
|
2062
|
+
"lib/dsr.js": "sha256:693eb1e64c5ec05938848efbef306618d9cb4f616d914fe68244efd73af82905",
|
|
1951
2063
|
"lib/dual-control.js": "sha256:e71dad86ca2a767128c9c5e5ac531dd8abd24b97316d98b19caa186ee772955c",
|
|
1952
2064
|
"lib/early-hints.js": "sha256:8a1d524ed3e91c2c128ccc401ba8f1a5a348a45d09a52ba44a95bba87deb44d0",
|
|
1953
2065
|
"lib/eat.js": "sha256:8b9a00f001444a0aada4bf74db6ba5604effc670be283e411d2059d1614a9404",
|
|
1954
2066
|
"lib/error-page.js": "sha256:9c4d5ea9f2682287e3d2aa0e4e258d89457232cdeab5971655d17f73c2be9a65",
|
|
1955
2067
|
"lib/events.js": "sha256:55c050f0f9ef7982bc76e09823924d5294c067e46d10a2806487deca0e252b22",
|
|
1956
2068
|
"lib/external-db-migrate.js": "sha256:ed72386c1bfa3d90a9352a1068ad4865164f5170244a56786184beed21555b4c",
|
|
1957
|
-
"lib/external-db.js": "sha256:
|
|
2069
|
+
"lib/external-db.js": "sha256:adef8ddcf25d9dac6621ce4cd6d0523e0b951e34048c805ec8bb89b9f0eb596b",
|
|
1958
2070
|
"lib/fapi2.js": "sha256:7b89552974a39464c96cbab9909b2d174080804b85a679417e4cff2ac47c052b",
|
|
1959
2071
|
"lib/fda-21cfr11.js": "sha256:58fc5f7e342b7e2ca65f2179cd66a19727545b8def91d23e00d40289f4d2c660",
|
|
1960
2072
|
"lib/fdx.js": "sha256:8639ba1aaccf9ce5e5dfc2d3b218b3cc0417bfd02fa84a2582a52a4cd53676d1",
|
|
1961
2073
|
"lib/fedcm.js": "sha256:c77a5aadd4e8af089c0ab5a88a1526ba67c056e75fc3c8ac8b94363b3796c4fa",
|
|
1962
2074
|
"lib/file-type.js": "sha256:96d814ba3d5e67aef824e87f7b65613ecbafed81ce295943a7230e8dad611fbd",
|
|
1963
|
-
"lib/file-upload.js": "sha256:
|
|
2075
|
+
"lib/file-upload.js": "sha256:d90c25f445019380f3183f61438ce20a3454c8cc62e7a9bb41f70a2c72e08730",
|
|
1964
2076
|
"lib/flag-cache.js": "sha256:f6cbc587ab5f81f98f25a66852f6c891d12dce83008cf361f749dc8b721000b2",
|
|
1965
2077
|
"lib/flag-evaluation-context.js": "sha256:60da5f28b005e13bed7cbb272a8118afadcb71bf59bf45ce534a06aa923ed997",
|
|
1966
|
-
"lib/flag-providers.js": "sha256:
|
|
2078
|
+
"lib/flag-providers.js": "sha256:9f4046d86f21de262f7724952064ba01b8efba22245179334dd94e5f38332db1",
|
|
1967
2079
|
"lib/flag-targeting.js": "sha256:5403178fc621d85e9255db4d974442aff5d3a6fd433f4bf0eae0b4d7519fa030",
|
|
1968
2080
|
"lib/flag.js": "sha256:2e6081f51d220a4fc7dc2af8c1e1ba5a9002ca80858c5a543cb5df6ecdc3c4fe",
|
|
1969
|
-
"lib/forms.js": "sha256:
|
|
2081
|
+
"lib/forms.js": "sha256:15203c805ce636ebc5fc2b5c5bb8bc3716422180a592a5db5e88312818c5ee86",
|
|
1970
2082
|
"lib/framework-error.js": "sha256:d2313a2f0c64a09206c484ed82b1105681c97be18fb984f4e1296dea30ff7421",
|
|
1971
2083
|
"lib/framework-files.js": "sha256:c395ffb51e05a0fde19780dd779ddd6efc3f9e1794d0f30703165b768b06559f",
|
|
1972
2084
|
"lib/framework-schema.js": "sha256:5e715e758d2e6cf92386188619f71853c6e189964261867324feb31fb51ab9de",
|
|
1973
2085
|
"lib/framework-sha1-hibp.js": "sha256:7a338a48e700146a54c31b9d41f83b91bd6282dd3f4b2d685ccbaa362dddd54c",
|
|
1974
2086
|
"lib/fsm.js": "sha256:c8cf6a637843dfddae9f382624c16627be9f5e9f09502b2926bb2b46859bbdc2",
|
|
1975
|
-
"lib/gate-contract.js": "sha256:
|
|
1976
|
-
"lib/gdpr-ropa.js": "sha256:
|
|
2087
|
+
"lib/gate-contract.js": "sha256:35da740d649e18db4f9b2840e217e53b136eef34d31a2d66c449a5624f849ed9",
|
|
2088
|
+
"lib/gdpr-ropa.js": "sha256:b98f7a2a2a83ede2efdba26bb5ba0ba4956b336924f5c3e0a403f86a0567e1f3",
|
|
1977
2089
|
"lib/graphql-federation.js": "sha256:32ebba44e88acbd7600079edeb9b9623b3b0b8fafe030e1c7ae1020a3c7e3473",
|
|
1978
|
-
"lib/guard-agent-registry.js": "sha256:
|
|
2090
|
+
"lib/guard-agent-registry.js": "sha256:dcc6ccdea554186ed2701dbdfd951b58f4f5db22807532683891da6d8013e37e",
|
|
1979
2091
|
"lib/guard-all.js": "sha256:6739db8e1f751ff107bb6d8627c16093f324368aef6364f9d29237b0072c221c",
|
|
1980
|
-
"lib/guard-archive.js": "sha256:
|
|
2092
|
+
"lib/guard-archive.js": "sha256:6886ecf75183691f1ce04d77246481fb7ca3cf10518041b1f107eb725c8aa1db",
|
|
1981
2093
|
"lib/guard-auth.js": "sha256:b046a06068a35b8453e6c9eb5dd38efff7f481ae797f766211ad204eb412e76f",
|
|
1982
|
-
"lib/guard-cidr.js": "sha256:
|
|
2094
|
+
"lib/guard-cidr.js": "sha256:2419c6f1fb59d0679f0b9e1cd5eed1e07372915891fafde9701aea2c3cc1fefa",
|
|
1983
2095
|
"lib/guard-csv.js": "sha256:f47b16700f4aacd78674760a33b1628a609ba45136dc1fb813231d117ef37116",
|
|
1984
2096
|
"lib/guard-domain.js": "sha256:01be0d7dab37d199b4dd83aea1854a2db28d2c77b205a79bd17f10c972db51b1",
|
|
1985
2097
|
"lib/guard-dsn.js": "sha256:a491229adbc7c78c92bae142ca5e462cc5881e85721d7ccb3b41d683aede08e7",
|
|
@@ -1988,121 +2100,121 @@
|
|
|
1988
2100
|
"lib/guard-event-bus-payload.js": "sha256:e79e72562c28b3edb532f383a9e084c232246206a7e5d983dab11183908aad2d",
|
|
1989
2101
|
"lib/guard-event-bus-topic.js": "sha256:132d1e85d1a36a9eabde7aacb90800a94c4e606e652e961e26bcd1f92e92f066",
|
|
1990
2102
|
"lib/guard-filename.js": "sha256:654ae3cc36f533f00c9e42758f9359ab74a29a423431cbbda62c339ca66aecd1",
|
|
1991
|
-
"lib/guard-graphql.js": "sha256:
|
|
2103
|
+
"lib/guard-graphql.js": "sha256:3fdb2b2764560830dd4b02246d2efc865a86c2a3a7d2e240b9638445f056c009",
|
|
1992
2104
|
"lib/guard-html-wcag-aria.js": "sha256:eaac60ac22bfccce70379f6d0d9f4c4ef63d531122bd4731cc6f40bca5879f94",
|
|
1993
2105
|
"lib/guard-html-wcag-forms.js": "sha256:b4954693eddf56bd2397d45ccdb3f62cec89ed3eda7555960beaee75fefda028",
|
|
1994
2106
|
"lib/guard-html-wcag-tables.js": "sha256:9ecaa52f4ec9b6d6bbcd9556eb1e57d6bb22230226f4aff43a0164163d739fd6",
|
|
1995
2107
|
"lib/guard-html-wcag-tagwalk.js": "sha256:6e9d08003e57cbf4e0bc0c418527f7a0f71298cd467b5575d1a976a371f7c54f",
|
|
1996
2108
|
"lib/guard-html-wcag.js": "sha256:e08fb763f22394132410320484e46e548b93f8850889887469d4ef2182757b9e",
|
|
1997
|
-
"lib/guard-html.js": "sha256:
|
|
2109
|
+
"lib/guard-html.js": "sha256:bc84b53e7d362463aa4951f68a29f2d681f2c465a26b57746a0cbf3f4d91822e",
|
|
1998
2110
|
"lib/guard-idempotency-key.js": "sha256:02a90ef56d50b06321b8d1611f39da98908cc08f3bc155220e8cdf711794eac4",
|
|
1999
|
-
"lib/guard-image.js": "sha256:
|
|
2000
|
-
"lib/guard-imap-command.js": "sha256:
|
|
2001
|
-
"lib/guard-jmap.js": "sha256:
|
|
2111
|
+
"lib/guard-image.js": "sha256:48789c99403be9ece9ed6bdc75e755bd28520b191fe732bfed8f18b64dbb5aa0",
|
|
2112
|
+
"lib/guard-imap-command.js": "sha256:21b30f0f5ed0edf8751c6a2c46d2c830bb1e8e96699abaa859a430b711f04330",
|
|
2113
|
+
"lib/guard-jmap.js": "sha256:3174868b454214da5cca0e3fc45009c49a17efdfd916814ad4f5b82a8ee244a9",
|
|
2002
2114
|
"lib/guard-json.js": "sha256:80b99a9d4e4e64113e773fe86074e80ab4c5823bb84e31b9e831ec30a1c00aeb",
|
|
2003
2115
|
"lib/guard-jsonpath.js": "sha256:0e58b8d748cdd5b1c307368cf38d6a5926d41062d172fd99a2a8b530a277e45f",
|
|
2004
|
-
"lib/guard-jwt.js": "sha256:
|
|
2116
|
+
"lib/guard-jwt.js": "sha256:58aa65ff2005590322118bafbdb7b80475a5d3cd23fcc95e8e7605da6f2a4ff8",
|
|
2005
2117
|
"lib/guard-list-id.js": "sha256:64c93a876657275f80af91a9165851fc7e542b330dd137f99bdc55b91ca3de65",
|
|
2006
|
-
"lib/guard-list-unsubscribe.js": "sha256:
|
|
2118
|
+
"lib/guard-list-unsubscribe.js": "sha256:b0a0a68a7168e90d69f61a685c277f4e2d7ccee59b78209bd83d445406e19a67",
|
|
2007
2119
|
"lib/guard-mail-compose.js": "sha256:f434b865b5f278989d87aef9db6fdc01b8a1f4588ca0d91199df18ddaf516173",
|
|
2008
2120
|
"lib/guard-mail-move.js": "sha256:d38022d580648709a0f2a8f3cde741ffe24d059db0e0c878df81d7b9ac37c19c",
|
|
2009
2121
|
"lib/guard-mail-query.js": "sha256:db1a0b29b5a2d5d56b00a4d8a4158eecab4056626d9aa05639e8b1d5ad8326e0",
|
|
2010
2122
|
"lib/guard-mail-reply.js": "sha256:5b79623d08da33901e802661578125a64bbb0711ea951b178c7b4594d83295d6",
|
|
2011
2123
|
"lib/guard-mail-sieve.js": "sha256:147f3fabf609a0bbae49def9d839b31dd5e8ba04d88d7699d6b5ad6fe458576a",
|
|
2012
|
-
"lib/guard-managesieve-command.js": "sha256:
|
|
2013
|
-
"lib/guard-markdown.js": "sha256:
|
|
2124
|
+
"lib/guard-managesieve-command.js": "sha256:e679c1be6d1557630e05e630e3daff0b4c3ca049fac1b30c3bffb55a90a93e2c",
|
|
2125
|
+
"lib/guard-markdown.js": "sha256:45663cdba05c766bb649422acb91ff9ea9422d23e1df951fbf15e2877d46875b",
|
|
2014
2126
|
"lib/guard-message-id.js": "sha256:795c289ff24e92557a4248fefb703ea10c1ac7b7dadd30fee04670f1fdbcf91c",
|
|
2015
2127
|
"lib/guard-mime.js": "sha256:e8d44386866d801b2a02c73dede72b84dd4c66b278c7dd5fab2a9cf04fd05b0b",
|
|
2016
2128
|
"lib/guard-oauth.js": "sha256:0588bbf698ce45d59fefba0ab185324a4074922ca3c28c678f612c2810adc575",
|
|
2017
|
-
"lib/guard-pdf.js": "sha256:
|
|
2018
|
-
"lib/guard-pop3-command.js": "sha256:
|
|
2129
|
+
"lib/guard-pdf.js": "sha256:90228a20a5a6ba3a11f83699373618ac79034fa0892aa066dee584454eb294f8",
|
|
2130
|
+
"lib/guard-pop3-command.js": "sha256:129f20a650714cc5f9d5eecf990b4f6cf07a2c7dce1ce1d32e9ca06ee035d9b8",
|
|
2019
2131
|
"lib/guard-posture-chain.js": "sha256:e90b3679003af8fac5ecf760030b88e72482cb0e9931a9aab7683fc29f4db830",
|
|
2020
|
-
"lib/guard-regex.js": "sha256:
|
|
2132
|
+
"lib/guard-regex.js": "sha256:e2cc2672f6c72159f237c2d540dc180650cbffff644c06c4f323bad849fb6d1a",
|
|
2021
2133
|
"lib/guard-saga-config.js": "sha256:71fafd9174fa9783fd78361cb0b241c4140d3e9de07d7cba7812c7979c6ad9cc",
|
|
2022
2134
|
"lib/guard-shell.js": "sha256:bc866a05afba17004ce5ce7497d884d0a59fbec3aa8b81c76840eeddd2c3b9a3",
|
|
2023
2135
|
"lib/guard-smtp-command.js": "sha256:a761c4f5d5d8f5083339e095dca2ede035330b760735bcf76693b9e6484ab4ae",
|
|
2024
2136
|
"lib/guard-snapshot-envelope.js": "sha256:13eab8a92ef38c9d0a58adf30844a0a41030e9d0b67e447480a2d21c6db052ff",
|
|
2025
2137
|
"lib/guard-sql.js": "sha256:fef254470a15a7b9be78300c8fa86d5dd26ae88f654f5230f5f3051597f6f108",
|
|
2026
2138
|
"lib/guard-stream-args.js": "sha256:3d20d6a57639c38fb406b40540d4bd738387ec2f1eca3e63c3a586a75527e61a",
|
|
2027
|
-
"lib/guard-svg.js": "sha256:
|
|
2139
|
+
"lib/guard-svg.js": "sha256:5c256d45a319e18775298d81288e8e322916916fbe07f51cbaa84e06afd25c64",
|
|
2028
2140
|
"lib/guard-template.js": "sha256:861a566fd25a7abaf541c0e7875f8dc30ae5b34832ee81ee37f1ee26ae96b58b",
|
|
2029
2141
|
"lib/guard-tenant-id.js": "sha256:eb7e3ed275383473a991ee1d7af956bd581eae1f981945ff41393e8c0b1e750c",
|
|
2030
2142
|
"lib/guard-text.js": "sha256:099a138a71b0566ac315af58f640f6837eb7833934e214db786798f9bedc0044",
|
|
2031
|
-
"lib/guard-time.js": "sha256:
|
|
2143
|
+
"lib/guard-time.js": "sha256:11ec96130763f9e048467ab99c5fef0f1b2ed8629a18069f5d1c4a36b1d600ff",
|
|
2032
2144
|
"lib/guard-trace-context.js": "sha256:f0ba23a964654358ea7c0a9aaf415fafbf07e04e14640d01c6137295f887aec3",
|
|
2033
|
-
"lib/guard-uuid.js": "sha256:
|
|
2145
|
+
"lib/guard-uuid.js": "sha256:c69d04deeb9415f7181731d2c405eeddd26279056c990d5f5232bd17da2f5e63",
|
|
2034
2146
|
"lib/guard-xml.js": "sha256:e0817dfbfc15b3559b0b2dfe3f7ca82099d7447f061583eea7314181f1ba1ac0",
|
|
2035
2147
|
"lib/guard-yaml.js": "sha256:7f3b7c06def1a89c62cccaba15b43558eae89ab5a030e6a25cafb2cd7af123af",
|
|
2036
2148
|
"lib/hal.js": "sha256:7fd38f9fb514273d86b8c4f9405c790cb6b83d4adc9632941b351f594a4b8af7",
|
|
2037
2149
|
"lib/handlers.js": "sha256:4aec455e321528b5aa8678073f566840277c8ebf6ef3a815efd7b025b6fb4727",
|
|
2038
2150
|
"lib/honeytoken.js": "sha256:6c1ef78bc9495b44c8d39d3a705bafdea7ef1e3cf4fc876cf9e4a13b2bf0a36c",
|
|
2039
|
-
"lib/html-balance.js": "sha256:
|
|
2040
|
-
"lib/http-client-cache.js": "sha256:
|
|
2041
|
-
"lib/http-client-cookie-jar.js": "sha256:
|
|
2042
|
-
"lib/http-client.js": "sha256:
|
|
2043
|
-
"lib/http-message-signature.js": "sha256:
|
|
2151
|
+
"lib/html-balance.js": "sha256:f52e7df240588957039760229036730c49ac54de7c4b2635d173e313989c6868",
|
|
2152
|
+
"lib/http-client-cache.js": "sha256:3fa2911730b9c1514fa6af8175f428b84e9553a7a98946217c7390757ea304ce",
|
|
2153
|
+
"lib/http-client-cookie-jar.js": "sha256:1dcb5c513b688bac8a1f06f2ea2791cfe685f9639b6cdb5e23e0583793d1e197",
|
|
2154
|
+
"lib/http-client.js": "sha256:cd7563aa43b120748f15d9a088476974f13c737f9307c075e4081cbf45a99853",
|
|
2155
|
+
"lib/http-message-signature.js": "sha256:5b7155a3ff491a73ec7b5e924783cd193185c95ce3ad0534dbe5c0b520270d2c",
|
|
2044
2156
|
"lib/http2-teardown.js": "sha256:bae8149b9cdb7373cc88c9917d97f61c080df750ea6acc4e89075d83297d670c",
|
|
2045
|
-
"lib/i18n-messageformat.js": "sha256:
|
|
2046
|
-
"lib/i18n.js": "sha256:
|
|
2157
|
+
"lib/i18n-messageformat.js": "sha256:bd8a2999840ab784517a82db712faad09bb5befbd838e6d26a17f66a866fe784",
|
|
2158
|
+
"lib/i18n.js": "sha256:b722e864f0fe7f942a6cf01b5a49660ab9693679230ade00a452b82b9f4edbce",
|
|
2047
2159
|
"lib/iab-mspa.js": "sha256:be8d0f0fbc4ebc15cb0c2d5c7f7fb7f74f3ece95dfbfe472dc0c6019ebdd0bfd",
|
|
2048
2160
|
"lib/iab-tcf.js": "sha256:11190db6a9dc0bf7d504413d72af6548e1f14ddd01e65f3109aa6519e4240f28",
|
|
2049
2161
|
"lib/importmap-integrity.js": "sha256:f7d3d81380fc9c5fe7e85ed1c60bb3edff77a5bf7131a6f97c5e18b020a661c4",
|
|
2050
2162
|
"lib/inbox.js": "sha256:2d408647480c038c3955ebfc72d5ea4defa9b87e905fa9123168b4bb96ef370f",
|
|
2051
|
-
"lib/incident-report.js": "sha256:
|
|
2052
|
-
"lib/ip-utils.js": "sha256:
|
|
2163
|
+
"lib/incident-report.js": "sha256:2a700746012bac683cc47e3adf24497deeeef47ae3910ae6ef818ddbc9032ffe",
|
|
2164
|
+
"lib/ip-utils.js": "sha256:a5f2e7ce03459c8c87661bcb1c1ad8e2cce56fd41208ad2669afc943c03c1311",
|
|
2053
2165
|
"lib/jobs.js": "sha256:8e7b2dcfccec1121868a5b9c1820e35b29260d323a6a343adc55c76077a0de51",
|
|
2054
2166
|
"lib/jose-jwe-experimental.js": "sha256:ad85904cd06e130d53b312b7231fdd56ae8e0de8fb89b45a82f4c6bb5338ca40",
|
|
2055
2167
|
"lib/json-merge-patch.js": "sha256:3ec6b0cdb8a20e077cf0e308141b43e7767607c801d78d8dbc4ede363158e745",
|
|
2056
2168
|
"lib/json-patch.js": "sha256:8ce0649423bf843d69d51ed558287afe22432298a415f4b06c9e885338258f13",
|
|
2057
|
-
"lib/json-path.js": "sha256:
|
|
2169
|
+
"lib/json-path.js": "sha256:06141edec9a8d8e7498db85560ff32b67153aef8c1039d277e7775d060a49745",
|
|
2058
2170
|
"lib/json-pointer.js": "sha256:24327b5caaaf38fb1c1c6ea90cc53179b251f427653ca7d360b9764601f8c71b",
|
|
2059
2171
|
"lib/json-schema.js": "sha256:76bc75abe2912865fee858f6cbd46d3ade507f5cbfebc0ba2908e188506ed4ee",
|
|
2060
2172
|
"lib/jsonapi.js": "sha256:18aedea51215725f2997df6315ba93ff07cebd409a93569dce38e24ab16b7439",
|
|
2061
2173
|
"lib/jtd.js": "sha256:25d5b7488304f3f50af5a071c3eb34714cbfb285749d5ce698937da29d6f8afc",
|
|
2062
|
-
"lib/jwk.js": "sha256:
|
|
2174
|
+
"lib/jwk.js": "sha256:f336f21f6255671b2eb50943ee9d37464663e4a8673bb839ff8b69d9faa46889",
|
|
2063
2175
|
"lib/keychain.js": "sha256:310d4089a47b5daede19d41e97fbb6b4a38b42399184768a3f4427f4722ef72d",
|
|
2064
2176
|
"lib/lazy-require.js": "sha256:02eb330f148cadc452b178cd6248bfefd9254661c5b3f71fbb33bdfb03641b11",
|
|
2065
2177
|
"lib/legal-hold.js": "sha256:7210c25ff4f80bc84acf42e9400aa7a990e38539d836999ede197465b3f8d01d",
|
|
2066
|
-
"lib/link-header.js": "sha256:
|
|
2178
|
+
"lib/link-header.js": "sha256:1d71a4ca2f2b76f426039d11036358a99f76b3af20aeb2e53cd8ed3a18711c9c",
|
|
2067
2179
|
"lib/local-db-thin.js": "sha256:f8942ff2b875ab7c283e6880830c9de17a11903fd627202be3444f6cec59342b",
|
|
2068
2180
|
"lib/log-stream-cloudwatch.js": "sha256:9a81d53c42e220b772abd6f7f5d4e42781931afeb202f24ab1ea69af8cabfabd",
|
|
2069
2181
|
"lib/log-stream-local.js": "sha256:ccd6661033a8181333452c4eea403598bf4f0c493c56072e6ccd1dcd30157359",
|
|
2070
|
-
"lib/log-stream-otlp-grpc.js": "sha256:
|
|
2071
|
-
"lib/log-stream-otlp.js": "sha256:
|
|
2182
|
+
"lib/log-stream-otlp-grpc.js": "sha256:a049c03c7361474bfb82d95f5c0e37b685aca7a5671375d05011c51adadb31db",
|
|
2183
|
+
"lib/log-stream-otlp.js": "sha256:2c6cb21540736ba7af38685ebe4a4a50bbee7f939872c22448612a6aa71d7c89",
|
|
2072
2184
|
"lib/log-stream-syslog.js": "sha256:11c60f2a2a04e81841e25b8d647376aeeb39ecfca13a84a57dd9b72f45df3984",
|
|
2073
2185
|
"lib/log-stream-webhook.js": "sha256:b57774823dea9b28a8e6ca1d809cb301a0ed7e6dfb76b24cd2d2e6c4da8a128c",
|
|
2074
|
-
"lib/log-stream.js": "sha256:
|
|
2186
|
+
"lib/log-stream.js": "sha256:91c88e576e420a3610d01f25a9a2f42672ee4b561fb1c1709426ff6c669aec41",
|
|
2075
2187
|
"lib/log.js": "sha256:d87565c5e016c1f4392471fed54429ec0b9d51c7b753329d8be8e182e25ebb7f",
|
|
2076
2188
|
"lib/lro.js": "sha256:38e46c233647cdb94e88243c56b80b4197f21dffa1fdd563272cfae2cc81660f",
|
|
2077
2189
|
"lib/mail-agent.js": "sha256:14f70a5e09730746cf711bf1cefa98158e8d5c5e477fc65fbad5893efdea8fe4",
|
|
2078
2190
|
"lib/mail-arc-reuse-token.js": "sha256:273ae31050b7409973af341473459f1b07d89e8a3ac78d35cb6bedb6256d552d",
|
|
2079
2191
|
"lib/mail-arc-sign.js": "sha256:a66a9b823fbf83bd0dd9e2d7a6c14bde0172014bae6f236cdc496055b4bb7ad3",
|
|
2080
2192
|
"lib/mail-arf.js": "sha256:38f9cabd9f3f5246b747f0650cf60d9c1fd46ffa3c97b1d3aba41f247d9a2d9a",
|
|
2081
|
-
"lib/mail-auth.js": "sha256:
|
|
2082
|
-
"lib/mail-bimi.js": "sha256:
|
|
2083
|
-
"lib/mail-bounce.js": "sha256:
|
|
2084
|
-
"lib/mail-crypto-pgp.js": "sha256:
|
|
2193
|
+
"lib/mail-auth.js": "sha256:e436b512dbe9a3bf03c811c85ee7587fd20cc38836665ea1a960fa210bfe3437",
|
|
2194
|
+
"lib/mail-bimi.js": "sha256:8f4602be951b5827c454aea00a948d98dfad27022efdb7002ede7dda82ceeb3a",
|
|
2195
|
+
"lib/mail-bounce.js": "sha256:7f31767f64fa45b9e3d654fbe1a3f59ff2dcd04c40c231c4f340814cc4b63d60",
|
|
2196
|
+
"lib/mail-crypto-pgp.js": "sha256:b4bd1492835d9b19b277b7cd1ccf73cc00e0d06b8b1d8802ec7ceebb0544237b",
|
|
2085
2197
|
"lib/mail-crypto-smime.js": "sha256:7567b399324fe428152a0c7c7e6e144ac30bbfd18e8ce14c9ea381c0d840423f",
|
|
2086
2198
|
"lib/mail-crypto.js": "sha256:487afab75c367aed189d629a2640f359508a006392045b2b081ecf41608d59df",
|
|
2087
|
-
"lib/mail-dav.js": "sha256:
|
|
2199
|
+
"lib/mail-dav.js": "sha256:a17c2606542cf369fdcf00db2364befe8f200f0ffb5e492f6a3d70dca2b27de4",
|
|
2088
2200
|
"lib/mail-deploy.js": "sha256:fef3eb89ba9687e9f10b41fb785fdec5cabdccdeccce8f910d7e523e1df2779a",
|
|
2089
|
-
"lib/mail-dkim.js": "sha256:
|
|
2201
|
+
"lib/mail-dkim.js": "sha256:84487eec79d174ba6934ed47baf124d7e909eeddc2abcb532f10f48587582d0e",
|
|
2090
2202
|
"lib/mail-greylist.js": "sha256:0be9fb2c667fe936b9685a23175a04f3f9cdda0a7a99144b499fa7d2e787191b",
|
|
2091
|
-
"lib/mail-helo.js": "sha256:
|
|
2203
|
+
"lib/mail-helo.js": "sha256:b7943cc30ba3a00c327fb59569ac18c1aca5eaf7b1aac6e495b74b67c3c2cc93",
|
|
2092
2204
|
"lib/mail-journal.js": "sha256:e1358270922b475c53e8ce2f986cb06ffc7a9c141c906c332cb6563ed0c6fdec",
|
|
2093
2205
|
"lib/mail-mdn.js": "sha256:b98908991f37844a09b01766092623daf1e16476317c489bb911606ec00ea3e0",
|
|
2094
2206
|
"lib/mail-rbl.js": "sha256:74af11bd75877e2f4806cf12910bc41d91896d2a4171c8f9f721df72dc6a349e",
|
|
2095
2207
|
"lib/mail-require-tls.js": "sha256:1a7e2f13dda1d5f9bd2c3c43912eb985055d3172ec698b98f044676085a651ed",
|
|
2096
|
-
"lib/mail-scan.js": "sha256:
|
|
2097
|
-
"lib/mail-send-deliver.js": "sha256:
|
|
2098
|
-
"lib/mail-server-imap.js": "sha256:
|
|
2208
|
+
"lib/mail-scan.js": "sha256:cd2a138d3bc00eabadf1cbe431d73f718e124db533b46d277cf7e77caeb71166",
|
|
2209
|
+
"lib/mail-send-deliver.js": "sha256:168af1ec51b60144cc03bd58290bbeec2d86be3a2498c51a542bd48b07ff795e",
|
|
2210
|
+
"lib/mail-server-imap.js": "sha256:b56ca79b8c8a6d142e1d164015e3758ce4e34b22f09f5d844c7e83fbeecdbcfc",
|
|
2099
2211
|
"lib/mail-server-jmap.js": "sha256:45925028c480bdb405e6a7c6e9bfcc0b38ab50b2321085228d41d75357af828b",
|
|
2100
|
-
"lib/mail-server-managesieve.js": "sha256:
|
|
2101
|
-
"lib/mail-server-mx.js": "sha256:
|
|
2212
|
+
"lib/mail-server-managesieve.js": "sha256:f19bff501034ab4d108645609a8b0d56236d450d8527bac7a0bb1243334554f7",
|
|
2213
|
+
"lib/mail-server-mx.js": "sha256:293b17975befa697468f678b16bcb4ec020dca101d04f7bf4a6650cc583eb12b",
|
|
2102
2214
|
"lib/mail-server-net.js": "sha256:6d00ffa3aee46b2bbff6ecf0e82754ad06b05ebe6388b2e10576e70a4522c343",
|
|
2103
2215
|
"lib/mail-server-pop3.js": "sha256:990c998ff7920f755b0da12bb3f10e7f11216c983f3a4d364ce9bacd8ac32514",
|
|
2104
2216
|
"lib/mail-server-rate-limit.js": "sha256:8de232742a09426f9f3e9a8768d2a20944b9b7ceb36fd3e9bf31470324976994",
|
|
2105
|
-
"lib/mail-server-registry.js": "sha256:
|
|
2217
|
+
"lib/mail-server-registry.js": "sha256:a1b87f7463e8a76c51cbfea0ffa2d9e00aaac55cf613eec1c2cf7b822681069f",
|
|
2106
2218
|
"lib/mail-server-submission.js": "sha256:aaad8d63f510e21cc4fcc2f4e9291e9c1d3677360eca65a069b3add6d5ce3e2b",
|
|
2107
2219
|
"lib/mail-server-tls.js": "sha256:021ed3c4b4d4c02c1ce15a6b9e902751663ceacb8ec661115888b0361ad7ba0f",
|
|
2108
2220
|
"lib/mail-sieve.js": "sha256:994ecdf36d901daf7b20d632c855fdb9f8d741d8a355c4d134b1810056cc4d78",
|
|
@@ -2111,35 +2223,35 @@
|
|
|
2111
2223
|
"lib/mail-store-fts.js": "sha256:7dd8c2fe2b808f7bdeabcd32fbef8991e032a3ed15fd6525e84d1b56215d3aa2",
|
|
2112
2224
|
"lib/mail-store.js": "sha256:f51846e6c4a3d2c11d78d38ca982fea16c3af98a1740405bb54509173a12190e",
|
|
2113
2225
|
"lib/mail-unsubscribe.js": "sha256:556730f8c5f2106476eb951be570a17f96316e122a50ab334dab0927186efc15",
|
|
2114
|
-
"lib/mail.js": "sha256:
|
|
2226
|
+
"lib/mail.js": "sha256:ad0d64dd51b4c078b8c19fbfdfa0e01614b682e02ee28891e8eb94a7857a20ef",
|
|
2115
2227
|
"lib/markup-escape.js": "sha256:7cb287780b9bb8a5ab37b1f8c36427df432331def15e2ef4d63c4b29809357ee",
|
|
2116
2228
|
"lib/markup-tokenizer.js": "sha256:b02048184fb1a55e410cdf15049935b3f1ab4895c595b0bd2a6589bcdab9f87e",
|
|
2117
2229
|
"lib/mcp-tool-registry.js": "sha256:57722b488a0977704997acbb61d2fad13155040007516f996b6b574c64d482ee",
|
|
2118
2230
|
"lib/mcp.js": "sha256:d0d40b1ee3cc4d66d249f6ad15ba5e1bdb0db66c689a940206c25a1d51a2c694",
|
|
2119
2231
|
"lib/mdoc.js": "sha256:536d6ad327e15f11f3279781f93a779bffeddfec06222b0e601728f905561d21",
|
|
2120
|
-
"lib/metrics.js": "sha256:
|
|
2121
|
-
"lib/middleware/age-gate.js": "sha256:
|
|
2232
|
+
"lib/metrics.js": "sha256:7ddb9ff0160a820dbda218caa2ac7018205ba0bfcd86d02ea9bf93cc6c9275b1",
|
|
2233
|
+
"lib/middleware/age-gate.js": "sha256:9dc1a0cd4a52960e0d5c13c9e15d64203f6611176b6db62411715078a32570d1",
|
|
2122
2234
|
"lib/middleware/ai-act-disclosure.js": "sha256:e6f5bb9aab37bcec5ecef2ec5b3688ed0eb069eb61279d297e1ddd8460bc4568",
|
|
2123
2235
|
"lib/middleware/api-encrypt.js": "sha256:48c59f52ffc9b05e38c58e193e2df743b62c3f80ac61336bf2c4abade18437a7",
|
|
2124
2236
|
"lib/middleware/assetlinks.js": "sha256:19290a2d789b625b57accab9a5122222f22928aaffb7726c44259d9b8368ee25",
|
|
2125
|
-
"lib/middleware/asyncapi-serve.js": "sha256:
|
|
2237
|
+
"lib/middleware/asyncapi-serve.js": "sha256:689a6237f4ecb211daa54242f9709319837d3f6b8c661e7e3131618b13bf4c1f",
|
|
2126
2238
|
"lib/middleware/attach-user.js": "sha256:8411a290d9ef9ea1dc58b3679c5b8ece09841f516a4b023e26bbaf524f48b83e",
|
|
2127
2239
|
"lib/middleware/bearer-auth.js": "sha256:d6a3f2244697d7359a2041298edf72de5811745ebd45a0dbf41a71a82cdbebe3",
|
|
2128
|
-
"lib/middleware/body-parser.js": "sha256:
|
|
2240
|
+
"lib/middleware/body-parser.js": "sha256:656baacfe7ad572cde0e7296940f1a18dad4a907d037e70d929c53197aab11a1",
|
|
2129
2241
|
"lib/middleware/bot-disclose.js": "sha256:f00709e4c8bab8b7afa85043e9da2853d4d2ef5ca8aa112a18b3cb6e4800e73e",
|
|
2130
|
-
"lib/middleware/bot-guard.js": "sha256:
|
|
2242
|
+
"lib/middleware/bot-guard.js": "sha256:9374c074c1e8652a80646b0cc883db786c2b72d6011f43ee1697552e0443bcb2",
|
|
2131
2243
|
"lib/middleware/clear-site-data.js": "sha256:e853a3ec594036e6663f8a83462e82aed6cbac0b0cc134e4370e99c8eb0bc887",
|
|
2132
2244
|
"lib/middleware/compose-pipeline.js": "sha256:1da8285f2ea756897989ce9455b16ab0106ceeb6ca240609bcc4aca912518c8f",
|
|
2133
2245
|
"lib/middleware/compression.js": "sha256:162b0cbec8c8c50624ec9702055cb9aefd05dd6c474cd2e57824cbe7e6af73e8",
|
|
2134
2246
|
"lib/middleware/cookies.js": "sha256:0936c83e14e3a925dd6feade8b29efa13f511ee91d5ec692c3227181eca5442a",
|
|
2135
2247
|
"lib/middleware/cors.js": "sha256:4416e5380ffb62aa120a41f1bfaa0ba6c7c7ae05a867ef15dde363940e8c64f0",
|
|
2136
2248
|
"lib/middleware/csp-nonce.js": "sha256:174cb56cae0ec5840505a4768add7cfbc6c3623bb55b546d09e07c4926ee1fd4",
|
|
2137
|
-
"lib/middleware/csp-report.js": "sha256:
|
|
2138
|
-
"lib/middleware/csrf-protect.js": "sha256:
|
|
2249
|
+
"lib/middleware/csp-report.js": "sha256:9597b8926bbd733f1550c46ac2fe3d7082d67e2737015e3905e1c78fcd1cd83d",
|
|
2250
|
+
"lib/middleware/csrf-protect.js": "sha256:9c228d849bbe1ef5203b64c8c4a6c5773e43813ff791e77981cc77d8ae84a88c",
|
|
2139
2251
|
"lib/middleware/daily-byte-quota.js": "sha256:0a34f92792044652c05e2c0d01307ee0fcdf79eb0833997b71b45064e37c80da",
|
|
2140
2252
|
"lib/middleware/db-role-for.js": "sha256:8fd584dcc3869926b7ff68722a9e403164c9f9ac643e03f003c9119c178d2a7d",
|
|
2141
2253
|
"lib/middleware/deny-response.js": "sha256:e825294ab6d8dfc1992191a9e92c52e2073126235324569b22a772f0ae80d033",
|
|
2142
|
-
"lib/middleware/dpop.js": "sha256:
|
|
2254
|
+
"lib/middleware/dpop.js": "sha256:e8a34a99360280a28311d4142b0520e39067c2ce828a95d0cbd477dbc1cb1dd5",
|
|
2143
2255
|
"lib/middleware/error-handler.js": "sha256:488a834e34e69a03625fbb60b04a0d3400a88a5aea72318b2093690bac8e2e9b",
|
|
2144
2256
|
"lib/middleware/fetch-metadata.js": "sha256:c85a2ada2a5f4a9251a13a3ef9539270b985e0fdec6970b81dd40a7a45e2f4bc",
|
|
2145
2257
|
"lib/middleware/flag-context.js": "sha256:05b7d8453a18b3679d8d519d65f3cbe4076e2d08cdfb5970bd516688a327d981",
|
|
@@ -2148,23 +2260,23 @@
|
|
|
2148
2260
|
"lib/middleware/health.js": "sha256:806f517561d29f5edb3e38506c96487b341a2365d0eb89636b5e846b0f9cbf23",
|
|
2149
2261
|
"lib/middleware/host-allowlist.js": "sha256:613f728e182dc14ee5f8f446685a1c7c80d5d445f401598b2d133a7f49cc53df",
|
|
2150
2262
|
"lib/middleware/idempotency-key.js": "sha256:88c4f5b53cae0864a7d92ffa8a6328b86fbf32540f91219e3fddc989773ee86c",
|
|
2151
|
-
"lib/middleware/index.js": "sha256:
|
|
2152
|
-
"lib/middleware/nel.js": "sha256:
|
|
2263
|
+
"lib/middleware/index.js": "sha256:05e9b56f5af2f09a6cfd4a10d3eb9fab004b795936db182c5febd3ac377a6d65",
|
|
2264
|
+
"lib/middleware/nel.js": "sha256:66d9140ad57dc8822f132f136c0d32a84fbcea7c5a80eb671b03f66790643004",
|
|
2153
2265
|
"lib/middleware/network-allowlist.js": "sha256:1b8cc887991929f77ce417e7f718cbce38cefcfaa9b19668de37c970f5993dcf",
|
|
2154
2266
|
"lib/middleware/no-cache.js": "sha256:d0d413a30dc6ae383ee6ea2b8d7f1f6eb97dda1fdb3313eeb04690b1e48d9932",
|
|
2155
|
-
"lib/middleware/openapi-serve.js": "sha256:
|
|
2267
|
+
"lib/middleware/openapi-serve.js": "sha256:dda6a2e15a10300a8c063e98dab636c7f3e7954d185d144215f480e4ef33209d",
|
|
2156
2268
|
"lib/middleware/protected-resource-metadata.js": "sha256:8eed60c411765ab927748d711837bc5cfe8718d2be5ab0c33970024bfdbc6763",
|
|
2157
|
-
"lib/middleware/rate-limit.js": "sha256:
|
|
2269
|
+
"lib/middleware/rate-limit.js": "sha256:fd3e1bdc74b746ab3e2d7fecbc4898d87010f93557b67fe3954f7fed259f93bb",
|
|
2158
2270
|
"lib/middleware/request-id.js": "sha256:c36ec938d303fbf0fb67499af621b602d7ead1f2c20574e6d2b733cfb87bb65e",
|
|
2159
2271
|
"lib/middleware/request-log.js": "sha256:595adfa21431e9c5c59d6b4efe4999807d1bf27c9555c1f69f331075ffbc029d",
|
|
2160
2272
|
"lib/middleware/require-aal.js": "sha256:6d13720b5c95d31f57876afa22b4c6e4a8da5baca46337cfd8c819fffac608a3",
|
|
2161
2273
|
"lib/middleware/require-auth.js": "sha256:109a291057b22ac29f64408a0b925dbf642629f245ce11156d1ce1863e9c420e",
|
|
2162
|
-
"lib/middleware/require-bound-key.js": "sha256:
|
|
2274
|
+
"lib/middleware/require-bound-key.js": "sha256:568b30a5a170119859d9e96b0e308abe0a0b83e99ea03d048f20cdfec96ebbc6",
|
|
2163
2275
|
"lib/middleware/require-content-type.js": "sha256:9ca345e71c0ff9132cd51e24b0f26840a467bb36c74a54e4ae3f11526591697a",
|
|
2164
2276
|
"lib/middleware/require-methods.js": "sha256:41f90c05efe23bd5b282e6482cedf7fec9ff276f9de3c3f751d1fe76efd601c2",
|
|
2165
2277
|
"lib/middleware/require-mtls.js": "sha256:d306f4cff49a32209118f0d946884344f5358e3797740c65efcd3c9143970b6d",
|
|
2166
2278
|
"lib/middleware/require-step-up.js": "sha256:d43f7f8eb8768c003047b5b12cb94a0200c655d1e158c7fc22e3501e88ea9ba0",
|
|
2167
|
-
"lib/middleware/scim-server.js": "sha256:
|
|
2279
|
+
"lib/middleware/scim-server.js": "sha256:9448614488ff516d24332b7152ae5405923d18850a920a34ed157940bff273b7",
|
|
2168
2280
|
"lib/middleware/security-headers.js": "sha256:e6fec2f4dc69a275aa5bdd1ff96e26a1b7d6050a8b7193f49e0b31c637d8d5aa",
|
|
2169
2281
|
"lib/middleware/security-txt.js": "sha256:e3af05ab9d08bd8668c2388aaf6f9e12090f47fa7a8b707dec26df5df5326609",
|
|
2170
2282
|
"lib/middleware/span-http-server.js": "sha256:86e9902325a885932f6c4e19f0cd29d4764e6d58d04e4773522daa4ce24e102a",
|
|
@@ -2172,30 +2284,30 @@
|
|
|
2172
2284
|
"lib/middleware/sse.js": "sha256:5bf672e6a9f2988719b820ed8d67bda34b9b7a4d54d170620614ed24bc688bfc",
|
|
2173
2285
|
"lib/middleware/trace-log-correlation.js": "sha256:abf2339adddc2a2b3f61b26e9c1cb6ebffae5fc02ca51bf9ee002df99dfe622f",
|
|
2174
2286
|
"lib/middleware/trace-propagate.js": "sha256:ddfebd2947bca77be6023fd4833bd80f8d03bef7ca2d63c7fc27f447108cd451",
|
|
2175
|
-
"lib/middleware/tus-upload.js": "sha256:
|
|
2287
|
+
"lib/middleware/tus-upload.js": "sha256:5616e72c1b96ba877d7239bbf7e23d7b2491608b160f3b3a0e072d6247869780",
|
|
2176
2288
|
"lib/middleware/web-app-manifest.js": "sha256:d2e50696b4c49d4a089a79b7514fb89fe4c765b9e7edfd9bc7e0e3bf31ca1d23",
|
|
2177
2289
|
"lib/migration-files.js": "sha256:6381dd46fdcb5796ac094ec9353ce6c4996d56f826f70bc4939349b934a7cef1",
|
|
2178
2290
|
"lib/migrations.js": "sha256:229a067f388db89d74d7f1c6b2a5b4c48840966bf90d918fc786f489995e4b83",
|
|
2179
2291
|
"lib/mime-parse.js": "sha256:e00d859b046fab7a0ce31472e9fe7f6c7f00e341e8a005600d51f96bddcbca77",
|
|
2180
2292
|
"lib/module-loader.js": "sha256:37b07ea8bc1f9639bf66009c587c00cddf88acb7f76ea0645fb88ba800455886",
|
|
2181
2293
|
"lib/money.js": "sha256:915ca5cf896d6021a31c02ef29dad71ac280e25cc3df7153cbdc12d8efcd50bb",
|
|
2182
|
-
"lib/mtls-ca.js": "sha256:
|
|
2294
|
+
"lib/mtls-ca.js": "sha256:993a6005b0fcfa302b1a6b3e9040e53f7948606c2aae8502faab5c9122320113",
|
|
2183
2295
|
"lib/mtls-engine-default.js": "sha256:adc0b5573f8d7d81f273d52ddeb1cd457e873db136fd51aadc2869a9cf44049f",
|
|
2184
2296
|
"lib/network-byte-quota.js": "sha256:23eb678d6b82262542037081cc4e09a6297b877ff0a3b48398fdf6ea6410313e",
|
|
2185
2297
|
"lib/network-dane.js": "sha256:509c482df43d69db0eaeb7f6f400e772216ee0bc46409503b71bb702fe126759",
|
|
2186
|
-
"lib/network-dns-resolver.js": "sha256:
|
|
2187
|
-
"lib/network-dns.js": "sha256:
|
|
2298
|
+
"lib/network-dns-resolver.js": "sha256:cbbfcb0f3a7f315f5c6f2a56dc608f21faf72d2519a33db9d339bac0458ea9ba",
|
|
2299
|
+
"lib/network-dns.js": "sha256:63e9d4f958818a602b8f110f4faad38b3585a4244c8d00d1ffb2b237eb7a74f4",
|
|
2188
2300
|
"lib/network-dnssec.js": "sha256:c1f4f2660b45c1146576c95c12947ad1140e0bffb3a769530f4d74f4f4e03529",
|
|
2189
2301
|
"lib/network-heartbeat.js": "sha256:dd0188e4ed748d1ee6a0cd1de0ca2e1ff159cf0a08e1dcec91c3af06ebf3986e",
|
|
2190
2302
|
"lib/network-nts.js": "sha256:799dd4bfc07b01924e049898838fc2f7cd31a7565c8f1ae42f7797936c2e347e",
|
|
2191
2303
|
"lib/network-proxy.js": "sha256:fe46ee3c6a279ec8663a1b79b52607653e31ea477b3537fde26890728c66364a",
|
|
2192
2304
|
"lib/network-smtp-policy.js": "sha256:7cce55eefbbe924a0a95e432294bf81dc44ca5438f726926749e172bdadbac6c",
|
|
2193
|
-
"lib/network-tls.js": "sha256:
|
|
2305
|
+
"lib/network-tls.js": "sha256:03b7ba0bfd7b0d81f72936af55251413832d718dee57a9af1d74dc8e837715c5",
|
|
2194
2306
|
"lib/network-tsig.js": "sha256:9159a3f149ef5752a774aa2064c4cfcdabe14469abb6e835b2fcfa0719496e76",
|
|
2195
2307
|
"lib/network.js": "sha256:f09aaa81d4c7ae1c9357802b70a5137dc8cad2f397029ccde8ef4311a82e37a9",
|
|
2196
2308
|
"lib/nis2-report.js": "sha256:243406095013d1203274501415acc6cbeadc32e6f9ba10afcc2788e392fdd938",
|
|
2197
2309
|
"lib/nist-crosswalk.js": "sha256:7aec08412055e615e9ee03b00529d6c27d9d735c9b7a3bf6a7e14125c038d816",
|
|
2198
|
-
"lib/nonce-store.js": "sha256:
|
|
2310
|
+
"lib/nonce-store.js": "sha256:df5daeed24bbe5d1a0b8a5fc054da72509b3de155116f1d8a9ff8f27236c2281",
|
|
2199
2311
|
"lib/notify.js": "sha256:7a2435ce04cdc078d3c39aeb8de7ef62f6bde4d4c448773f71300f6431a29834",
|
|
2200
2312
|
"lib/ntp-check.js": "sha256:d97a4a01fe9f32536e09079bf739884475e52242edf9f8ec3596c172cc86a6bf",
|
|
2201
2313
|
"lib/numeric-bounds.js": "sha256:8dd9f044c16cb99dc6f2f8ff56a84e62a1ab07881ae36f6a36e9b50c6dd73267",
|
|
@@ -2203,14 +2315,14 @@
|
|
|
2203
2315
|
"lib/object-store/azure-blob-bucket-ops.js": "sha256:e47bb5f612e368b318a3b98cce8cde1112aecae7bb5b265f2af85029954f4f0c",
|
|
2204
2316
|
"lib/object-store/azure-blob.js": "sha256:a34a1df3ea754cae5bb0185b6423629c1d07cf38c827ad4ca555b23240365daa",
|
|
2205
2317
|
"lib/object-store/gcs-bucket-ops.js": "sha256:0a1fda600c32d2ff854451a4aee9dc8fd820e8985b9d38248678eda5734377f2",
|
|
2206
|
-
"lib/object-store/gcs.js": "sha256:
|
|
2318
|
+
"lib/object-store/gcs.js": "sha256:4033c4ac5dfeb6e8947c62392513d089c8eaeab66d3884333e2ac639036e828a",
|
|
2207
2319
|
"lib/object-store/http-put.js": "sha256:d6102f823d397b7190f7b27d24a570312e4fdb4d2a576febcaeeb231a1fadfda",
|
|
2208
2320
|
"lib/object-store/http-request.js": "sha256:15ef851860ab8804afe6ded3b074621549330fc4f6f469db84a612b0be764b63",
|
|
2209
2321
|
"lib/object-store/index.js": "sha256:1807489d692cfbf4b5744d4d992a420f80d77335aedb952f0f9b841985a3f840",
|
|
2210
2322
|
"lib/object-store/local.js": "sha256:7646234ca93194be63b699ae33179124bef0ea936edcc312992570df33c10adc",
|
|
2211
2323
|
"lib/object-store/sigv4-bucket-ops.js": "sha256:75d79bce839093117a0632b6945f250719a2a8890abc05306ad7f94852772f82",
|
|
2212
|
-
"lib/object-store/sigv4.js": "sha256:
|
|
2213
|
-
"lib/observability-otlp-exporter.js": "sha256:
|
|
2324
|
+
"lib/object-store/sigv4.js": "sha256:b3fa0ea4cd5e766d42e913f868ba94392eca0045cb6154b23421d809056ec264",
|
|
2325
|
+
"lib/observability-otlp-exporter.js": "sha256:81b63c99df4e1cdddf07aa7d40f23ed61c32f083745e7e26abb7aa222d98f740",
|
|
2214
2326
|
"lib/observability-tracer.js": "sha256:7d5b3c2593709fc5ca0ed11030d684f3cb537e04650e6c40fc828e7f454a40d1",
|
|
2215
2327
|
"lib/observability.js": "sha256:aae46bad9ef464bf0a0ba5446e5a1b16dba2466b52da85bb7066be62ce522d4e",
|
|
2216
2328
|
"lib/openapi-paths-builder.js": "sha256:81baca0afe6b95f0859ea0ec44e12c97f86977722bd439b7141e64c37ea72fa3",
|
|
@@ -2219,20 +2331,21 @@
|
|
|
2219
2331
|
"lib/openapi-yaml.js": "sha256:7c4de08f3e2b65d40b191d836b8f56e5689ebd55076aa96818a3c3e87af839af",
|
|
2220
2332
|
"lib/openapi.js": "sha256:94adeee9628f8a32364bf02fe38f240a0686e3c54a31800279b1f0a5c80389c8",
|
|
2221
2333
|
"lib/otel-export.js": "sha256:37a7fe5cceb5bd21a8ce49473a08ada1e9ea3b441affcf100829afe435d87cda",
|
|
2222
|
-
"lib/outbox.js": "sha256:
|
|
2334
|
+
"lib/outbox.js": "sha256:2145d0785f3a2bf0c9740bc449addbd869ee1829794cebed28afdf4c2a2ca751",
|
|
2223
2335
|
"lib/pagination.js": "sha256:8f65b9bcecdda02395b38e2e04348b5740933230e1a9cb1940a2d23c62adee1f",
|
|
2224
2336
|
"lib/parsers/index.js": "sha256:c5db81093338c3029c7c9d508ff13df2ee44833113f643d1eee10da00d797cae",
|
|
2225
2337
|
"lib/parsers/safe-env.js": "sha256:60a2298cf60de196320c49e629eaa5893ac36cd01eb39b273a8e36791276368e",
|
|
2226
|
-
"lib/parsers/safe-ini.js": "sha256:
|
|
2227
|
-
"lib/parsers/safe-toml.js": "sha256:
|
|
2338
|
+
"lib/parsers/safe-ini.js": "sha256:0493d594d7bb57e0cbd8075634ca0b777554f1c10f98c2dcae653fdbab5f17a6",
|
|
2339
|
+
"lib/parsers/safe-toml.js": "sha256:3a0a74371b385eeb4bfaabceb48f39b02724b8013fb8bc8c65299ffd294dc655",
|
|
2228
2340
|
"lib/parsers/safe-xml.js": "sha256:82a3bb0c0e08d7437c478d74a50b7ba949a2e090c8e4600f5f18c69de681a48a",
|
|
2229
2341
|
"lib/parsers/safe-yaml.js": "sha256:bb91ee487c4599333d7d87ed2aa670bea939ed776108eed5f8e92093e2d36353",
|
|
2230
|
-
"lib/permissions.js": "sha256:
|
|
2342
|
+
"lib/permissions.js": "sha256:6fbab1fc1845844ce3001fd3f0d2efc2d7de371ac23b4e6679f0c5672a0df0fd",
|
|
2231
2343
|
"lib/pick.js": "sha256:7e4f5aca12ed39311afbb71885332884cb7fbaeb02dd9a2d6ecf9cb53dba1b57",
|
|
2344
|
+
"lib/pid-probe.js": "sha256:8e5978eb7d64d6d9f94c6cd9372076584aa539db2321d1c9cf5ba17ee5e427a5",
|
|
2232
2345
|
"lib/pipl-cn.js": "sha256:4855a8653ef6c91fc2dec0a1c997ac7ba4d38ec737add5f77a5733ee2d56b1b2",
|
|
2233
|
-
"lib/pqc-agent.js": "sha256:
|
|
2346
|
+
"lib/pqc-agent.js": "sha256:d77559c127c283ffba4172276dafe061ca46551e353f0d9e989514b5e7c90e2a",
|
|
2234
2347
|
"lib/pqc-gate.js": "sha256:677947b571501cad9ef43d6d5286f65a3e3a83d30bd9352a69c3d4b12f71c867",
|
|
2235
|
-
"lib/pqc-software.js": "sha256:
|
|
2348
|
+
"lib/pqc-software.js": "sha256:1fb14bd213bd97ee1f98dd6db3062e93c47b398c49cf75be3aa6aba1874f98ec",
|
|
2236
2349
|
"lib/privacy-pass.js": "sha256:0b7ecb334ef8d0f476c0100ea257aa71b9f8be936230099e58bab8ffc27dd362",
|
|
2237
2350
|
"lib/privacy.js": "sha256:7b5d6baa1caefe346a65e88b9c457cc06923672f4d3a602d891625f0faa50c5b",
|
|
2238
2351
|
"lib/problem-details.js": "sha256:10e090584fcd3b8b00f3e9571e2e523ef25140e57fce85bfbcbe35d64fdc8064",
|
|
@@ -2243,121 +2356,122 @@
|
|
|
2243
2356
|
"lib/public-suffix.js": "sha256:c79b8634bf19395e89846d7a55b56a098c7a63b9158671f99e73257ba0b603e7",
|
|
2244
2357
|
"lib/pubsub-cluster.js": "sha256:41dd3194b9c88c13c21c25a749fb383d180fd5472b148fd519c63db0ebe14934",
|
|
2245
2358
|
"lib/pubsub-redis.js": "sha256:2d5bd14a25ea59ccb9572afca8db39670a238b6265b00d821aee91033038b0b5",
|
|
2246
|
-
"lib/pubsub.js": "sha256:
|
|
2247
|
-
"lib/queue-local.js": "sha256:
|
|
2248
|
-
"lib/queue-redis.js": "sha256:
|
|
2359
|
+
"lib/pubsub.js": "sha256:51dd8ef2d12e22b78e9a3ba24ac605d72f2f2dbaf6efe0969b6cb91803c81c0d",
|
|
2360
|
+
"lib/queue-local.js": "sha256:814d2743c32894224e65d6b562e9e0b82e5f00c43513984039d115ae26f63840",
|
|
2361
|
+
"lib/queue-redis.js": "sha256:6f3cc551d9c74aff6b8e13bb58b11e34e2a6753e0a8f7f2b4c4ba82d8c0a7ba8",
|
|
2249
2362
|
"lib/queue-sqs.js": "sha256:cafd35320d1f75487259e1e8842a604bb9a0ad0e0fffeb504d9f9c35fadafaed",
|
|
2250
2363
|
"lib/queue.js": "sha256:fa216aa99437dd0e308e012aee20e933a3d8d7d7cf98e0529310a393bc265095",
|
|
2251
|
-
"lib/redact.js": "sha256:
|
|
2364
|
+
"lib/redact.js": "sha256:3eb24d1a8faa8ea017b42a519912f80a5d9af7b0d7f611c8b31ded53648b8fc2",
|
|
2252
2365
|
"lib/redis-client.js": "sha256:7d70a5256782eebd98117006415881b2960ffb3290f092d83c07b358de86eda6",
|
|
2253
2366
|
"lib/render.js": "sha256:bfda34774a291c7e9f52187fa070c6057e5c2415d88b6c39386b55141fd45a0a",
|
|
2254
2367
|
"lib/request-helpers.js": "sha256:cd16ddb02a45bc281a8e8563b202e062dc8f5dbeafec0039e08450e95354d334",
|
|
2255
2368
|
"lib/resource-access-lock.js": "sha256:b3c8ea8bd991d4747a55237f1b66b0eb1dfbc341501539c868d0446106cb7443",
|
|
2256
|
-
"lib/restore-bundle.js": "sha256:
|
|
2369
|
+
"lib/restore-bundle.js": "sha256:2a9ce0dc45543ffb6f1e4260a2942290ccaf3bf19c929575226420679bb0c7bb",
|
|
2257
2370
|
"lib/restore-rollback.js": "sha256:fedafe4e29b80533b0dc3aeebd40afdc754262e64152e43965f993dd43500c9f",
|
|
2258
|
-
"lib/restore.js": "sha256:
|
|
2259
|
-
"lib/retention.js": "sha256:
|
|
2371
|
+
"lib/restore.js": "sha256:8a84fdf308f8081b489a1835180342a84a4440cf3ee77e4537e8e96f27a690c7",
|
|
2372
|
+
"lib/retention.js": "sha256:7d7c8983668616484a15700df39a402c26da2bfc3be5e1f03853dbdef70a8010",
|
|
2260
2373
|
"lib/retry.js": "sha256:9c6bbf2f2dad51e319229ad4b81a3c83200babd0abc9de52d0d7786208f7f455",
|
|
2261
2374
|
"lib/rfc3339.js": "sha256:03c0c690a15297b866e45b471485e1775293299a8e751ccb7bd1644ca8217084",
|
|
2262
|
-
"lib/router.js": "sha256:
|
|
2375
|
+
"lib/router.js": "sha256:133b6bc76e3b30f0c43a2b7dfa93b8313eccc7e25e4654897b75194c4fabeaff",
|
|
2263
2376
|
"lib/safe-archive.js": "sha256:43a81f432e1cf9f294cbcf60636514cf2a5f3c67ec8e36aa8f8521c4cc657d39",
|
|
2264
2377
|
"lib/safe-async.js": "sha256:4095c238c1fb0ca788946c757aea2371d832648865ef1810bd2f3a95dbe30bf4",
|
|
2265
|
-
"lib/safe-buffer.js": "sha256:
|
|
2266
|
-
"lib/safe-decompress.js": "sha256:
|
|
2267
|
-
"lib/safe-dns.js": "sha256:
|
|
2268
|
-
"lib/safe-ical.js": "sha256:
|
|
2378
|
+
"lib/safe-buffer.js": "sha256:8baf9b3be9e1d5c66e207d1053cf6c0262c487b7fab04298377f1d1d70421d00",
|
|
2379
|
+
"lib/safe-decompress.js": "sha256:ad99ab726c919b045c4b4b62abed1410ed5f6ec7b802386e0d0499852673574a",
|
|
2380
|
+
"lib/safe-dns.js": "sha256:08147878b2e9e4ac4d6a71aa8bcdbbcaf6fc1710e88b9e7a8523f3025e94e72c",
|
|
2381
|
+
"lib/safe-ical.js": "sha256:40d9a044b900ae74387707420cc4575ff260d3d2be6031afd50d72b6ff392a54",
|
|
2269
2382
|
"lib/safe-icap.js": "sha256:db1046c7e9f2d7c6e9debd5415d5799f0283b30ba8ba6d822c3af4783328577f",
|
|
2270
2383
|
"lib/safe-json.js": "sha256:33f8d08c3d5ea0b2ce91646b3bc5d007167357006337f59a22e1068597a40630",
|
|
2271
2384
|
"lib/safe-jsonpath.js": "sha256:b13701afc8eddf20153f1e1ccdf32950e3c3299692d20cbd2dbd247bfe739e4c",
|
|
2272
|
-
"lib/safe-mime.js": "sha256:
|
|
2385
|
+
"lib/safe-mime.js": "sha256:e4475759334e0b93036284e39ae16792942b08629884029cede36f7ab70ca826",
|
|
2273
2386
|
"lib/safe-mount-info.js": "sha256:8de39f76facc5a5f3c31e9b744f6bd5cef678589579a10f88f1ff2ab995fb704",
|
|
2274
|
-
"lib/safe-
|
|
2275
|
-
"lib/safe-
|
|
2276
|
-
"lib/safe-
|
|
2277
|
-
"lib/safe-
|
|
2387
|
+
"lib/safe-object.js": "sha256:de2c1834887284027978edfc55ffd736ab80e399202d82d2dfa361ec3a1ff5ac",
|
|
2388
|
+
"lib/safe-path.js": "sha256:fd8552eb3bde448785108ae3035e98296b55e41ab2c94354775d1cd5232703fb",
|
|
2389
|
+
"lib/safe-redirect.js": "sha256:0c25c7755df3683844df39695f92d179bd046a8735f5854805c8341007a69707",
|
|
2390
|
+
"lib/safe-schema.js": "sha256:28e9c9862376a87b6dcdb3b9141335558381fd6327240ceb4d81edd518b7dc10",
|
|
2391
|
+
"lib/safe-sieve.js": "sha256:8a1fd08e4891c3cc3124eebb6fd71fc75db53e3158a7e80f3e5ac34212ca76c1",
|
|
2278
2392
|
"lib/safe-smtp.js": "sha256:cd0d7916456b7572479d8eaf2eb24b21034f86239b451d01c50c698156411cb6",
|
|
2279
|
-
"lib/safe-sql.js": "sha256:
|
|
2393
|
+
"lib/safe-sql.js": "sha256:3c10ad2068a7f1a0f3d6ca7438b3bde9807d3b88a695f032406ebf73c28cae46",
|
|
2280
2394
|
"lib/safe-url.js": "sha256:84661cde20c9cc0c08f0095b35605d32bf8a36497879a4de8e247a1b47eb671e",
|
|
2281
|
-
"lib/safe-vcard.js": "sha256:
|
|
2395
|
+
"lib/safe-vcard.js": "sha256:7229b49402edcddf4dee90e245540909a32f686713c05458ca05adfa20d6d5a7",
|
|
2282
2396
|
"lib/sandbox-worker.js": "sha256:3e4be3eadfafcf71cb06208b6ab796a0ef50dc620980e162beab11416c5782a8",
|
|
2283
2397
|
"lib/sandbox.js": "sha256:7302fb7c517c9ef4b12646bd2f6a1116755e6ae6b76f8fab324fefcc98ebdf47",
|
|
2284
|
-
"lib/scheduler.js": "sha256:
|
|
2398
|
+
"lib/scheduler.js": "sha256:61e5f2cedc8a0462e17defd819b2d69d9e3c46a26488d88d5f1e8390aa8444de",
|
|
2285
2399
|
"lib/scitt.js": "sha256:4678a19efa3d6b2cbf3976289652d7519e3e7d08fb1b6f2daa40895805b2d6ed",
|
|
2286
2400
|
"lib/sd-notify.js": "sha256:3598c1792c300f1840c149e31861b424976174b86a6c2135cba53188b082341b",
|
|
2287
2401
|
"lib/sec-cyber.js": "sha256:8a36a5e93fdd3035d183b2b66997b1cffc2b67cac49da94f5a4c34a974958b9f",
|
|
2288
|
-
"lib/security-assert.js": "sha256:
|
|
2402
|
+
"lib/security-assert.js": "sha256:a4e96dcd477fd39ae4abb4c6a0327cf4dc5a65d87135477501a742294aaef296",
|
|
2289
2403
|
"lib/seeders.js": "sha256:22bb681d267ab3d9da5af5e5ab0e3bce25587ac377c8841373ff5aecdd1bc7a1",
|
|
2290
|
-
"lib/self-update-standalone-verifier.js": "sha256:
|
|
2291
|
-
"lib/self-update.js": "sha256:
|
|
2292
|
-
"lib/server-timing.js": "sha256:
|
|
2404
|
+
"lib/self-update-standalone-verifier.js": "sha256:e7e302175822abdddbe0f799e958a8f4f21ebde9e3e607f3d1524df589442d14",
|
|
2405
|
+
"lib/self-update.js": "sha256:a4f05db498046df15c520e74226380b66a8ce6d0ece8589b5fb70806ed92d54b",
|
|
2406
|
+
"lib/server-timing.js": "sha256:556034593eab2842cb6bd1990c8939c43e1ef55151c532118196003d0580617c",
|
|
2293
2407
|
"lib/session-device-binding.js": "sha256:8df2e56ad886dff05e8d534b19f1ea74a0b07b1f505c78d7ff259166bae90e9f",
|
|
2294
2408
|
"lib/session-stores.js": "sha256:33306898c178c072972d09c751b65caf292769ea8e2a4c0e4c3a1f7085a1b951",
|
|
2295
|
-
"lib/session.js": "sha256:
|
|
2409
|
+
"lib/session.js": "sha256:74be4f7be0d3cc8021ef6ca991f20286336c069b715a965eee5409a3662ec081",
|
|
2296
2410
|
"lib/slug.js": "sha256:5ce2d3c85bec0cfbe82301039813938072de63b2ee170ba74207d1ac714aeec6",
|
|
2297
|
-
"lib/sql.js": "sha256:
|
|
2411
|
+
"lib/sql.js": "sha256:65cc66d7f7079a338b6cc572d92b0cfe4c3d038996eaa9e1abfac8b13459385b",
|
|
2298
2412
|
"lib/sse.js": "sha256:e13f452aa1b099ef798a207f83612bf7739cd7745931f7e7e225748ae68bb6c1",
|
|
2299
|
-
"lib/ssrf-guard.js": "sha256:
|
|
2413
|
+
"lib/ssrf-guard.js": "sha256:66c0a43fce68eb6d0ba07f2a06db9df48586ea31e6eef8c12afb9dabf05614e0",
|
|
2300
2414
|
"lib/standard-webhooks.js": "sha256:0b9e0a6f54a9d815b37b15c8f1b240469a94fa09ea1a520fdd921974404bfa6f",
|
|
2301
|
-
"lib/static.js": "sha256:
|
|
2302
|
-
"lib/storage.js": "sha256:
|
|
2415
|
+
"lib/static.js": "sha256:fca8de49e2951d3c6e130fc803cceef4c0a9bcea4e40504c10c9152d6141c5a0",
|
|
2416
|
+
"lib/storage.js": "sha256:67febdb6625de637fd2ac6571724eccc99414799960f0bfcf055b1c19f090f4f",
|
|
2303
2417
|
"lib/stream-throttle.js": "sha256:de778051b591471ee24b43160af830385faae361047ff04bd5435202973915c4",
|
|
2304
2418
|
"lib/structured-fields.js": "sha256:07167215350ab4296da595ea3e35337b6c10e8916c3375bfb4e909821d44b3e3",
|
|
2305
|
-
"lib/subject.js": "sha256:
|
|
2419
|
+
"lib/subject.js": "sha256:54b6e283edbd07373d9bfbb78d34f66e539d23077ded5e1dae4191dda4326e86",
|
|
2306
2420
|
"lib/tcpa-10dlc.js": "sha256:45c5b7340a6ce470826d397fa7da5c169aab837b6e7bd016121c07539fced600",
|
|
2307
2421
|
"lib/template.js": "sha256:f610303c2d0a49fe7ac6ff4891ac5a3541ffd110954b80b711c62a9ea3ae8f78",
|
|
2308
|
-
"lib/tenant-quota.js": "sha256:
|
|
2422
|
+
"lib/tenant-quota.js": "sha256:452e4c9bb330e63d433bbe02bb99a2e769fdb5c04888d206421823a7433c7ab2",
|
|
2309
2423
|
"lib/test-harness.js": "sha256:1d2151fad21b293662aa8966cf013f51d2aa0467d9f0fe98140dcaa6a122e4fd",
|
|
2310
2424
|
"lib/testing.js": "sha256:75136d4b3030f73cf59ef04ca3d2f224f670180830a5d14b6dd6bd6d57f0ddef",
|
|
2311
2425
|
"lib/time.js": "sha256:42b9597a96d490e5ff41fa995b55f56a3e1f229f4a5c23268aa19530c13c3646",
|
|
2312
|
-
"lib/tls-exporter.js": "sha256:
|
|
2426
|
+
"lib/tls-exporter.js": "sha256:7e4cef98c63b2b86e8cc6e34b7c163bc02f90273d00c17a152477728b0e2dd74",
|
|
2313
2427
|
"lib/totp.js": "sha256:5c1c724eaa42c446068a791b83fe689f68994370a3f4c4460dd619dfab65158f",
|
|
2314
2428
|
"lib/tracing.js": "sha256:d58f1be964e1cca43d04b5b09b8c5299e6fec16198a64e947d0daeda65f954a8",
|
|
2315
|
-
"lib/tsa.js": "sha256:
|
|
2316
|
-
"lib/uri-template.js": "sha256:
|
|
2429
|
+
"lib/tsa.js": "sha256:62855fd4cde0f7d458054c1f35103ccf52bccd12d979f16d29de112cc6d2a022",
|
|
2430
|
+
"lib/uri-template.js": "sha256:81bb62cd0acbac30949dfeb2a1fd95f1eebfab9bd7f1888aabc07605d1da35c7",
|
|
2317
2431
|
"lib/uuid.js": "sha256:1ac95e80af19c4efb301990a10e4ef35b02ac538198a07ae5bf563ab5a6eb910",
|
|
2318
2432
|
"lib/validate-opts.js": "sha256:572ae55c1c18accfe6069315636bffb8ccf993326096125f6dc2e2ba87f0dc76",
|
|
2319
2433
|
"lib/vault-aad.js": "sha256:863f6149ec916da98fa2f871633155fea82efd007c0b040ba6584bf10497bccf",
|
|
2320
|
-
"lib/vault/index.js": "sha256:
|
|
2434
|
+
"lib/vault/index.js": "sha256:25e7fc49359dabeea736e45216e67df9fbe2905190b4748abc8c39f11ecc803c",
|
|
2321
2435
|
"lib/vault/passphrase-ops.js": "sha256:5ba250ae938fe694c540589b01c704837c8d425a0eca8157ac070754e684ee74",
|
|
2322
2436
|
"lib/vault/passphrase-source.js": "sha256:d3f6eccd08bbb341820c8077a41b1f2cf081142f4845f8b93b140ffcf75c800c",
|
|
2323
2437
|
"lib/vault/rotate.js": "sha256:6d4380bf997ed4f3f536f53824101cc698770d8073e420b57a9e3830719d2a64",
|
|
2324
2438
|
"lib/vault/seal-pem-file.js": "sha256:9665b7e016ee88a0f377a8f334a2d7051f15ac8ee2a76bed2ec4de3cf31b84db",
|
|
2325
2439
|
"lib/vault/wrap.js": "sha256:cc3b3c18c8146e2accaf5e75f87a73ce236ebce78cd5fa0cf1e152d086d9d45e",
|
|
2326
|
-
"lib/vc.js": "sha256:
|
|
2440
|
+
"lib/vc.js": "sha256:fdbb5044c9cfbc8cf728b5fad0fa93ab2ec4c14f4ad8eb33b9c71553e50c5dc4",
|
|
2327
2441
|
"lib/vendor-data.js": "sha256:a4e4b9d51b36765c5d528cbb87578a7e720d2b2327bef68f64a3455b4ecc0364",
|
|
2328
2442
|
"lib/vendor/.vendor-data-pubkey": "sha256:73a935b8c72f55d821c22ddb8188453bab324f80d229d033a0a1549819a1f096",
|
|
2329
|
-
"lib/vendor/MANIFEST.json": "sha256:
|
|
2443
|
+
"lib/vendor/MANIFEST.json": "sha256:ec40bb5b575f1a2d9e4fa532ee15ea2eb797c01ec7ba8b4aa7a343dd0fa4f28b",
|
|
2330
2444
|
"lib/vendor/bimi-trust-anchors.data.js": "sha256:aa7a4d33b65a68422a2a2c1670177689f66fdcaa08bd2514d78798b827bd1608",
|
|
2331
2445
|
"lib/vendor/bimi-trust-anchors.pem": "sha256:81ff9f5ab3c9774132c845684e783be95cf73146f8b670d964105f0a3765b4b4",
|
|
2332
2446
|
"lib/vendor/common-passwords-top-10000.data.js": "sha256:87b223beca89f33d2c2c32a2cfda0bc187e58061de40e7127bb5ffc4258c6e2a",
|
|
2333
2447
|
"lib/vendor/common-passwords-top-10000.txt": "sha256:3c04e3cec775a7d0e21e544d33810dd434cccdb02e98903ba12e506dd9cd01bd",
|
|
2334
|
-
"lib/vendor/noble-ciphers.cjs": "sha256:
|
|
2335
|
-
"lib/vendor/noble-curves.cjs": "sha256:
|
|
2336
|
-
"lib/vendor/noble-post-quantum.cjs": "sha256:
|
|
2337
|
-
"lib/vendor/pki.cjs": "sha256:
|
|
2338
|
-
"lib/vendor/public-suffix-list.dat": "sha256:
|
|
2339
|
-
"lib/vendor/public-suffix-list.data.js": "sha256:
|
|
2340
|
-
"lib/vendor/simplewebauthn-server.cjs": "sha256:
|
|
2448
|
+
"lib/vendor/noble-ciphers.cjs": "sha256:2b30a26f728c5349f4c4b47834f862a4f77393b1224fc12b22abe3ce2cfab78f",
|
|
2449
|
+
"lib/vendor/noble-curves.cjs": "sha256:2880c288b1285ef51d356d057bee6f0c8a00de36638cf47b47617e8c1faf10d5",
|
|
2450
|
+
"lib/vendor/noble-post-quantum.cjs": "sha256:f9c94094b3c10fe73dac5343289da582454ea6053494fab2bf66099d9103d6c3",
|
|
2451
|
+
"lib/vendor/pki.cjs": "sha256:2307ef65e070757ffb13442b377e45efb9fa1a10432d9b39618387720ab990ed",
|
|
2452
|
+
"lib/vendor/public-suffix-list.dat": "sha256:1fc04fd8ebd4b77c78c38c76d832673c27b56ca154fda6339be61f38b9918701",
|
|
2453
|
+
"lib/vendor/public-suffix-list.data.js": "sha256:1d17ee3059030d1de7208d699ffdd1595c97cd3009d1f41bbfde2ba1a3315372",
|
|
2454
|
+
"lib/vendor/simplewebauthn-server.cjs": "sha256:e83195dc9f189385da9c856ef38843f4466f93ea8f3d7fc2efcb1e1b18da6f20",
|
|
2341
2455
|
"lib/vendor/vendor-data-pubkey.js": "sha256:a12afa34cd7472e2eaebad2fcd44714102d3edd0601e45769404124a513926d0",
|
|
2342
2456
|
"lib/vex.js": "sha256:1ebb091835a3e0e172d5a33e09cc4a522d5b6d3a60a20baf012e3e31a8272a44",
|
|
2343
|
-
"lib/watcher.js": "sha256:
|
|
2457
|
+
"lib/watcher.js": "sha256:bc3f6c7126ff6d46c5ba7eeb2ed38c6132d2dfd55a85762683d162544a80859b",
|
|
2344
2458
|
"lib/web-push-vapid.js": "sha256:7258ed4ef79c83165c8e8a1a81f3992569b8a8f469d0521e7f17d1005cbbe89b",
|
|
2345
|
-
"lib/webhook-dispatcher.js": "sha256:
|
|
2346
|
-
"lib/webhook.js": "sha256:
|
|
2459
|
+
"lib/webhook-dispatcher.js": "sha256:6a4747e55860d6f94ee9417781f3042498ecd1734b3eef60190c279d061b95f9",
|
|
2460
|
+
"lib/webhook.js": "sha256:1577e644f9e4eab9fb88337e96c286fedf7338d611a2900bc32e26f340a56123",
|
|
2347
2461
|
"lib/websocket-channels.js": "sha256:a2a0b4cfc9859453cf1bf8372d451944d05e8147991104cccfd30679b554ec45",
|
|
2348
2462
|
"lib/websocket.js": "sha256:981d6b57102176ec8a1f748affd9153df498282475f2f41e47738f565bc753de",
|
|
2349
2463
|
"lib/wiki-concepts.js": "sha256:ab28bbd155d143fb6a9038ce3adf00f439bc4f1657d3d3d3cc1d14ef8e80d0f0",
|
|
2350
2464
|
"lib/worker-pool.js": "sha256:ec4cb2c65a9d01e3dc6b90345bde457ba52321f294c2413be5f425f3e5d47e20",
|
|
2351
2465
|
"lib/worm.js": "sha256:32484f770d546e74681de34fb2735e7485671666cf5f4ac74ae8d10a0c09185d",
|
|
2352
|
-
"lib/ws-client.js": "sha256:
|
|
2466
|
+
"lib/ws-client.js": "sha256:40c650d8a2f1e6f369ad463dcc75a63de3fe2c3f83090ce59f7acdb30df4ab62",
|
|
2353
2467
|
"lib/x509-chain.js": "sha256:dbdc1cc8d123dca7925597a04b08057b4d3345e8acd7e4bc40827d152c881faf",
|
|
2354
|
-
"lib/xml-c14n.js": "sha256:
|
|
2355
|
-
"oss-fuzz/projects/blamejs/Dockerfile": "sha256:
|
|
2468
|
+
"lib/xml-c14n.js": "sha256:5fbfe2214fe860b6cde8ccf7986d79c1043332ade25439a166cb1262e5370be2",
|
|
2469
|
+
"oss-fuzz/projects/blamejs/Dockerfile": "sha256:e7635f899c9eec70c34698f899a75dda43fdea9fc8e1b485d90fb55f9d4ca907",
|
|
2356
2470
|
"oss-fuzz/projects/blamejs/README.md": "sha256:ae13b7bb79ed8d69b1b3276e5562807a0349fb6e6b7d11cf1f683aad1eafdb4b",
|
|
2357
2471
|
"oss-fuzz/projects/blamejs/build.sh": "sha256:0ced1cf21782c97be7f8d74faf5e27a308b60b2f858836fb5ca3b8c4e939a8f7",
|
|
2358
2472
|
"oss-fuzz/projects/blamejs/project.yaml": "sha256:59f2cb83aa622325a175b77416fe155be15b70a9c798bd1a78bba05763b1b03d",
|
|
2359
|
-
"package-lock.json": "sha256:
|
|
2360
|
-
"package.json": "sha256:
|
|
2473
|
+
"package-lock.json": "sha256:742d9fc59f4a2eae85d13e50b5be8488851c4a0674076f0969651598eb719123",
|
|
2474
|
+
"package.json": "sha256:d707634abb912e0088520d1556fa26fee046459a5a5e7f63bac49333e30c2c6e",
|
|
2361
2475
|
"release-notes/v0.0.x.json": "sha256:7a49819f30068ee119000cad7010194882bb8bfaa12acbdab4dfc066efb7982f",
|
|
2362
2476
|
"release-notes/v0.1.x.json": "sha256:6742a8c17f947c5cb76f69dead7eea86b942d80621d914b774ba5488e09937e5",
|
|
2363
2477
|
"release-notes/v0.10.x.json": "sha256:fe498045daf88337bd3d987e5964aa42c99a50e1685b6f09e51f698b8687726f",
|
|
@@ -2366,10 +2480,30 @@
|
|
|
2366
2480
|
"release-notes/v0.13.x.json": "sha256:6f8f7dfe1cb3a5ce7375ac6a29a2cea776b3c3a81f467ed2ac88d0b0f0fecf18",
|
|
2367
2481
|
"release-notes/v0.14.x.json": "sha256:743ab7b81e3c92fa0f374ac7a9f305d727347ddaed108fd5942ed83061b9d829",
|
|
2368
2482
|
"release-notes/v0.15.x.json": "sha256:20a34de926d79fe350c79524669501d00d5b6b645dc71257e532cfa35a85ead9",
|
|
2369
|
-
"release-notes/v0.16.
|
|
2370
|
-
"release-notes/v0.
|
|
2371
|
-
"release-notes/v0.
|
|
2372
|
-
"release-notes/v0.
|
|
2483
|
+
"release-notes/v0.16.x.json": "sha256:f5b843e25016ffdec2cb70e8e89de34a46adf8ce42624fd6856a1a398085f328",
|
|
2484
|
+
"release-notes/v0.17.0.json": "sha256:9cd419dfeb2ed85894e3ff78e9824e005deab0d563b41fc40c7b64893c567daa",
|
|
2485
|
+
"release-notes/v0.17.1.json": "sha256:787c566aa7999a916723ca43d90a257bbef373647298a79308ea4a4d451b17dc",
|
|
2486
|
+
"release-notes/v0.17.10.json": "sha256:a0ce77180c41fc45f663a6bd8dd00ede35dd583de6b4906e855041359265b94f",
|
|
2487
|
+
"release-notes/v0.17.11.json": "sha256:7b27f83843eb88bfd031decd3cc705f4edce5bda369fc2b719bc24022e947268",
|
|
2488
|
+
"release-notes/v0.17.12.json": "sha256:9d486fad7a46d6c33419cc39eb63d95520423c883d83cbe33d6715064299b5ec",
|
|
2489
|
+
"release-notes/v0.17.13.json": "sha256:a4ccce629e8ae60dec43bd740b40dc96a40ba92162e18e2422763599d6c4732f",
|
|
2490
|
+
"release-notes/v0.17.14.json": "sha256:7f0df43d2a52cda5a8a2485edb5c1cbf79f2c5c7df1ba5fcbf25bef3ba126a00",
|
|
2491
|
+
"release-notes/v0.17.15.json": "sha256:97f4590acf002a62468978592ee443d6852dc1c4c41ce618ad9fd5bc78ab4607",
|
|
2492
|
+
"release-notes/v0.17.16.json": "sha256:9909f040114b8531ed54dd11fcd7a1d7a8175c8582d2caf0c1ab9636f5b09acb",
|
|
2493
|
+
"release-notes/v0.17.17.json": "sha256:756d0cd3263fc091090b112490e4f51d0d7b4d3763a91d26e778b8b696aba20f",
|
|
2494
|
+
"release-notes/v0.17.18.json": "sha256:64b3720a826ad17e0430d324b89b4e1b03a716e78ab0f87362fb48c7a45e69e9",
|
|
2495
|
+
"release-notes/v0.17.19.json": "sha256:0af49fd6f6fb6198480ba4b6c7bcd29b8655a64bc9228b2143680c8cfc211a30",
|
|
2496
|
+
"release-notes/v0.17.2.json": "sha256:839f9c76260275fc9125c8f9c4ab38a3cf3698d6856e3f967d6a23bee953ea4c",
|
|
2497
|
+
"release-notes/v0.17.20.json": "sha256:2ae86917f932b03c28832b8413c3bbb293c9346ac7894f3b9f6dcb436e856b5e",
|
|
2498
|
+
"release-notes/v0.17.21.json": "sha256:3da6385d9053b4cea942a4c03abf2ee13e614c3b087740d76b63c84e0900f2b5",
|
|
2499
|
+
"release-notes/v0.17.22.json": "sha256:03f056494887538e235ea38450b2079541f31c3faf8b14d4c4e238d9c301cb6c",
|
|
2500
|
+
"release-notes/v0.17.3.json": "sha256:cb3b271bda3df3890973bd96dfbe7738453abf21db0e7561a9861720107f4ee5",
|
|
2501
|
+
"release-notes/v0.17.4.json": "sha256:f4a303fd0523e2ea4cb159a6aeda08dd87afc7c8057bf86929bc0ae2e31eea23",
|
|
2502
|
+
"release-notes/v0.17.5.json": "sha256:41f07079be6ad83810a8c57d369e9251867fa7c14eed7b5e5e7e9272f5a0454c",
|
|
2503
|
+
"release-notes/v0.17.6.json": "sha256:3eb504ee561e45b85bed382580baaf15cd81b0c95c210b3f5592a1b40dfc772f",
|
|
2504
|
+
"release-notes/v0.17.7.json": "sha256:85a12aecfafe6205d2fe6fc18b031704c16cd96def3b1a10f639b5291b2c2911",
|
|
2505
|
+
"release-notes/v0.17.8.json": "sha256:d001c75aed557265a32fcc48a30c37e665806c8e3f9dbca0b3b85b18711b21f8",
|
|
2506
|
+
"release-notes/v0.17.9.json": "sha256:45d4c53523dcebfa58054beceb09f425f00434885c0f32fc627bfdf039f66df9",
|
|
2373
2507
|
"release-notes/v0.2.x.json": "sha256:985e27ff5de04cfc7869a3986dd0b9f0fcdfcddfb67d3fae3f4ae70856722d7e",
|
|
2374
2508
|
"release-notes/v0.3.x.json": "sha256:e2db5eae66977b272bb185cad668386afb8fd33998a17c22eb6e411c0f8ca588",
|
|
2375
2509
|
"release-notes/v0.4.x.json": "sha256:c3d19cb9c50a976432fc0bb612c87741d8728ae37562b501e6f1eccd01dd574d",
|
|
@@ -2401,11 +2535,12 @@
|
|
|
2401
2535
|
"scripts/sign-release-artifact.js": "sha256:07c952b393a409e889731f4d366886ceb42f837a5b3e95fac6499b227f25f040",
|
|
2402
2536
|
"scripts/test-integration.js": "sha256:fb4a9abf9ee83edb4bae4d7bb1c36fc2a11ddde11e49420f75a111c27b2f652e",
|
|
2403
2537
|
"scripts/test-wiki-integration.js": "sha256:f05218f8488994355b2ed2174be771a51cd8164fb1a3bfc0ebb9d77787141b9a",
|
|
2404
|
-
"scripts/validate-source-comment-blocks.js": "sha256:
|
|
2538
|
+
"scripts/validate-source-comment-blocks.js": "sha256:ac41d94fbc7900d6b0207c3241e692bd308655ba16692722b7f05e43a97b6438",
|
|
2405
2539
|
"scripts/vendor-data-gen.js": "sha256:d6950a7d55951d485b82e13b8afdfbe7cc6d26f846e908611af05ba3ac72d937",
|
|
2406
2540
|
"scripts/vendor-data-keygen.js": "sha256:b12c1104594db600fa81890e85a081069278c31700b5750ce9d2f82335b19d4f",
|
|
2407
|
-
"scripts/vendor-update.sh": "sha256:
|
|
2408
|
-
"
|
|
2541
|
+
"scripts/vendor-update.sh": "sha256:c490983e0b803be666fde4c8907a67bf9adb56eb4a417766177863a237bed603",
|
|
2542
|
+
"socket.yml": "sha256:e99858fe81d53ec4b04dfef88e2716fa7cfe5c84d93c03b0025e9a7d6036fb3a",
|
|
2543
|
+
"test/00-primitives.js": "sha256:89562d3dd0ef0495141dd81d39fad26f2b1a9d50fda1cc9d2e981f20d2ea43cf",
|
|
2409
2544
|
"test/10-state.js": "sha256:12c1b9251815bc9b00e16c6717c4435c804b908bcb84a9a47b8348e1f3a0c9fb",
|
|
2410
2545
|
"test/20-db.js": "sha256:3c0b86465b7b52d589912e5ecaf1abff6d50e780d01de567b514c8342823dd09",
|
|
2411
2546
|
"test/30-chain.js": "sha256:8ffd053dca928f0bcc84b82375233a0cb6ef57460b97b3b42ab5ce1415c3c00f",
|
|
@@ -2422,7 +2557,7 @@
|
|
|
2422
2557
|
"test/helpers/check.js": "sha256:180afa561d355c18f01c4854312193a942aa4ae349c7f7674e0717849637b9be",
|
|
2423
2558
|
"test/helpers/cluster.js": "sha256:5ddad49f44fbe5518e5aa78d3df74e73ad2ead2157c522243a7aebd37f209d2c",
|
|
2424
2559
|
"test/helpers/db.js": "sha256:447e4919cd44b2450ef7fd833af9272414983b115a4e9ddfe572f83f39f42eab",
|
|
2425
|
-
"test/helpers/drivers.js": "sha256:
|
|
2560
|
+
"test/helpers/drivers.js": "sha256:e47c712c764494aecea6a7d4015ec8d3689e3712d2a1418859ba0e092564be56",
|
|
2426
2561
|
"test/helpers/fs-watch.js": "sha256:d735f1bb9c6634bfde14654ec366a64521b353bf5ad5694658ae3c696985cc58",
|
|
2427
2562
|
"test/helpers/http.js": "sha256:b5076a4936ce3eca8b885cd02e518f501f55ce8bff8e1db77fb93f04649c1211",
|
|
2428
2563
|
"test/helpers/index.js": "sha256:784281e8d9488aa616053e37f6b052a5a25327c887896e99595d525b7f558b3e",
|
|
@@ -2433,28 +2568,30 @@
|
|
|
2433
2568
|
"test/helpers/wait.js": "sha256:fba11d036422611b2d8dcbde2b23a27dd58746d10982c3f7d05a325da70b1863",
|
|
2434
2569
|
"test/integration/audit-actor-binding-pg.test.js": "sha256:3ead1ea9852b1afb0bdea39242650c975207a2383e8865b115d616693c31fa3f",
|
|
2435
2570
|
"test/integration/audit-chain-external-db.test.js": "sha256:f7c4d3270c5c62349fba09b92564d77c0a51d7c363fe52b6b800dfa6aa638ca3",
|
|
2436
|
-
"test/integration/audit-stack-mysql.test.js": "sha256:
|
|
2437
|
-
"test/integration/audit-stack-postgres.test.js": "sha256:
|
|
2571
|
+
"test/integration/audit-stack-mysql.test.js": "sha256:4a4551b8c670302afdd291c8f18a4d3995db74939803b8204100ee5c9be70aca",
|
|
2572
|
+
"test/integration/audit-stack-postgres.test.js": "sha256:d378a3312a15e9080d21716a3b607ef509691fd87eed60e6cfae700a1e625b9f",
|
|
2438
2573
|
"test/integration/backup-restore-objectstore.test.js": "sha256:877af94fa1a58183a2a637fd6284a1ed90b284abda4663f6f993fce28c1177b5",
|
|
2439
2574
|
"test/integration/cache.test.js": "sha256:9249ff8b660272fc3ee55d31abc528293e4b22f2827346b7f47a534b5d0a822f",
|
|
2440
2575
|
"test/integration/cluster-provider-mysql.test.js": "sha256:fcc292633ebf1244e88587db5832476b5c7eed87f38828c5bf6a85faceb50be6",
|
|
2441
2576
|
"test/integration/data-layer-cluster-mysql.test.js": "sha256:cb4a4faf0c761dc864cffb074a7cbb9455744356085d19a8dbadbc00bf88e0d7",
|
|
2442
2577
|
"test/integration/data-layer-cluster-pg.test.js": "sha256:2529fce726321d703c0bcfa44efb100acfb89ee7e5b44d147b087fd5b1d867ca",
|
|
2443
2578
|
"test/integration/data-layer-mysql-privacy.test.js": "sha256:8e1599b89ca395f80f24fd1ae2201c9506d36f2dc4ef25d3599a1ab3ac15011a",
|
|
2444
|
-
"test/integration/data-layer-mysql.test.js": "sha256:
|
|
2445
|
-
"test/integration/data-layer-pg.test.js": "sha256:
|
|
2579
|
+
"test/integration/data-layer-mysql.test.js": "sha256:34080aef526c46678da1541849651b8844f52721d10c3847fc7427b4d336e2c7",
|
|
2580
|
+
"test/integration/data-layer-pg.test.js": "sha256:2d6d7dfdf33ffcee178963f2f1bc72aad83988284f44576422fb1a9ee91efa00",
|
|
2446
2581
|
"test/integration/data-layer-postgres.test.js": "sha256:ceaecd15a0c3acb15fe348daff7fea8cfbee17f763826963c8f4906e5a38f28a",
|
|
2447
2582
|
"test/integration/db-layer-mysql.test.js": "sha256:a88347c166911afe38a0983db7859e9ad4753f9b6c6be18424af16cc5a4bd517",
|
|
2448
2583
|
"test/integration/db-layer-postgres.test.js": "sha256:c91fb31fefa45a9aa2d204f9828f3c98c7794a9db661e2019b64c1141a6c895d",
|
|
2449
2584
|
"test/integration/distributed-scheduler-fencing-pg.test.js": "sha256:95a2419ab4516152f818717008c8e37428b1e6036d7e5d0efaa5a669d493a650",
|
|
2585
|
+
"test/integration/dsr-cluster-mysql.test.js": "sha256:bbc52ca222b0bcdfc272d11fe4d86e828b1ea39703cbb7aa9d70dcae32705f28",
|
|
2586
|
+
"test/integration/dsr-cluster-pg.test.js": "sha256:7ba5ba6d51f6383653d62a371c1b43c1d57de54f918af1d0dfe41c1ddc9a49dc",
|
|
2450
2587
|
"test/integration/external-db-postgres.test.js": "sha256:4af7a18923b672cf4758acd74a44b5380edbcf66aed975874fa738ad9cc3913f",
|
|
2451
|
-
"test/integration/federation-auth.test.js": "sha256:
|
|
2588
|
+
"test/integration/federation-auth.test.js": "sha256:cd74a8af75683578616ef7bb3f2fd54e2da794cc561ad281cefd0c5209219ab7",
|
|
2452
2589
|
"test/integration/framework-schema-mysql.test.js": "sha256:dd296e1c3e317d108995fc9b5df7aebd5ab61cce326919a0deda8ec26d4a61d7",
|
|
2453
2590
|
"test/integration/http-client.test.js": "sha256:3b59daac52042c0541f50ff35ca5ee46956437b3f18b2c5dc28ee53187acca87",
|
|
2454
2591
|
"test/integration/log-stream-cloudwatch.test.js": "sha256:80649620967228cea96344488596b00ea46dc78024f9b9fc079afd18a08fa89c",
|
|
2455
2592
|
"test/integration/log-stream.test.js": "sha256:cbb70b2a07b6b5b91af89e6aee7d5770028527daf6653b15ce89ca23c07bea07",
|
|
2456
2593
|
"test/integration/mail-crypto-smime.test.js": "sha256:ec2debe9194a55f6da2febf779b55eeab61af261c96f200f7e61f7d877b7389a",
|
|
2457
|
-
"test/integration/mail-dkim.test.js": "sha256:
|
|
2594
|
+
"test/integration/mail-dkim.test.js": "sha256:175c4cce83c5838ac4c78ca69dfbd9a1e88b2404dd50be802034413e446bf3ce",
|
|
2458
2595
|
"test/integration/mail-smtp.test.js": "sha256:33ed65722bdabc18d1c0e1b35dd03f63256a350896e6485d6e1f024f8487a71a",
|
|
2459
2596
|
"test/integration/mtls-ca.test.js": "sha256:465f728b24165741a856844fc1a9a0ace52e4e88ca56c332dec1049d12f8942f",
|
|
2460
2597
|
"test/integration/network-dns.test.js": "sha256:8d299f514383d82907b229b4b32504b7a7b685b82ed129489ed7d495306d3f47",
|
|
@@ -2464,6 +2601,7 @@
|
|
|
2464
2601
|
"test/integration/object-store-gcs.test.js": "sha256:d3ff7a6bf39f66efdbdfcfa0f8e667b92688f498861e3b2ae7a5be8744611258",
|
|
2465
2602
|
"test/integration/object-store-sigv4.test.js": "sha256:5f112b85152a45de3ce9ba01f202c21ff8d7d7cbf9bea7ff6feac3d1f9d95c7d",
|
|
2466
2603
|
"test/integration/object-store-worm-lock.test.js": "sha256:0938e9392e76ec0614f796aa43570505dc53dfb5e4cf060ecc43efe94994fd3b",
|
|
2604
|
+
"test/integration/openid-federation-chain.test.js": "sha256:0e87d3a2695420807fb008d121f294c29c950faa2a95f0083b18a3707c05160e",
|
|
2467
2605
|
"test/integration/pqc-pkcs8-forward-compat.test.js": "sha256:99e26ab90314a2c9c9049b44e805eb800609ec85c6a028bebd51b909188a239c",
|
|
2468
2606
|
"test/integration/pubsub.test.js": "sha256:554d2a014882a16c2170c8da027f9a2114b909fa3020ec3f837c81068047dfe6",
|
|
2469
2607
|
"test/integration/queue-cluster-mysql.test.js": "sha256:4edb3de0166d277cca273c209e1d2ecbbe3129a1b78456bc5354cbeb613c461f",
|
|
@@ -2475,22 +2613,21 @@
|
|
|
2475
2613
|
"test/integration/sql-fts5-catalog-sqlite.test.js": "sha256:85cb8c036b31ec65fe2303db2a0a5115362ec9ef699bfb10ce9805aa1e4f7a9f",
|
|
2476
2614
|
"test/integration/ssrf-guard.test.js": "sha256:f963c47b447b881f7d0908fca7c55a5d5f1dd6e897378c88f35c14f1323cb143",
|
|
2477
2615
|
"test/integration/tls-classical-downgrade-audit.test.js": "sha256:f6af22bf5edc125fb28e279d9d094b68a6088d00881a58e01cb6d5874cf4a5f6",
|
|
2478
|
-
"test/integration/webhook-dispatcher-pg.test.js": "sha256:
|
|
2616
|
+
"test/integration/webhook-dispatcher-pg.test.js": "sha256:9e6a3f56c6a5dd488f9011efbf7a532baf7e0af734850536404a61a06f4d9fea",
|
|
2479
2617
|
"test/integration/websocket-permessage-deflate.test.js": "sha256:5a119cd76c3bf1cf9d2dde64c485fdee0fe827f69a8a2ea09e5db6bec59cfb9f",
|
|
2480
2618
|
"test/integration/ws-client-roundtrip.test.js": "sha256:be57acc124e3d79bac0ab4614ef860e27b8e13915412df61239781112bf120cb",
|
|
2481
|
-
"test/layer-0-primitives/a2a-tasks.test.js": "sha256:
|
|
2619
|
+
"test/layer-0-primitives/a2a-tasks.test.js": "sha256:ce70cdc8cd82106dd4e54b4a039fe9a3a710491150ae830656cf84d61b3c7330",
|
|
2482
2620
|
"test/layer-0-primitives/a2a.test.js": "sha256:af674735179b180f098b8c9114ad724ec2edd38dfe1f88cb6a385d79e1e7d38c",
|
|
2483
2621
|
"test/layer-0-primitives/access-lock.test.js": "sha256:ffac9cc69afa45598ac81626e6caa9dc5f278048b86bb5fe6c43d6d6ff51b3d4",
|
|
2484
|
-
"test/layer-0-primitives/acme-coverage.test.js": "sha256:91e59a147e6cdd3e41655a47294a2a822cfe880d3eafc43f7a222912c3aca034",
|
|
2485
2622
|
"test/layer-0-primitives/acme-failclosed.test.js": "sha256:4c4ee3393e3ed793485a6353418c097e12b9558f4614280b746b4dda8c659ef3",
|
|
2486
|
-
"test/layer-0-primitives/acme.test.js": "sha256:
|
|
2487
|
-
"test/layer-0-primitives/age-gate.test.js": "sha256:
|
|
2623
|
+
"test/layer-0-primitives/acme.test.js": "sha256:e1e18cc965e0db7538454f80231b87279c967fd28a284aecc9ba56fb83f1764a",
|
|
2624
|
+
"test/layer-0-primitives/age-gate.test.js": "sha256:cc2f2c87779b9aece614106e1be997bbe3ac69298de61917ce8a9888b68ebc2b",
|
|
2488
2625
|
"test/layer-0-primitives/agent-event-bus.test.js": "sha256:8aa7f71c8f798afa28647bdb5fde2ad97f8171d284c4e7b7a68accbc7dbea1dc",
|
|
2489
|
-
"test/layer-0-primitives/agent-idempotency.test.js": "sha256:
|
|
2626
|
+
"test/layer-0-primitives/agent-idempotency.test.js": "sha256:e7715d2400c3c9ce91a11ae208cd92b4a358b627201570a88a7d1ce690eac423",
|
|
2490
2627
|
"test/layer-0-primitives/agent-orchestrator.test.js": "sha256:b465b4e82ff3c5fbd99d6f83559f6430f9663d0a45833b3cea11a08cc43dd2b8",
|
|
2491
2628
|
"test/layer-0-primitives/agent-posture-chain.test.js": "sha256:9fb7dac01afc22beb9c44e1a72ef4fd940c82812d1298bf937c0ebd8e74daf82",
|
|
2492
|
-
"test/layer-0-primitives/agent-saga.test.js": "sha256:
|
|
2493
|
-
"test/layer-0-primitives/agent-snapshot.test.js": "sha256:
|
|
2629
|
+
"test/layer-0-primitives/agent-saga.test.js": "sha256:bfd3d4349008488c2040392fc738e9dc0aa241018203dac442644d5c7a45ed2a",
|
|
2630
|
+
"test/layer-0-primitives/agent-snapshot.test.js": "sha256:85c75e8d7b4d49e934f923c16c87792856b21f3a18512a06cd19d0b7dfcd7227",
|
|
2494
2631
|
"test/layer-0-primitives/agent-stream.test.js": "sha256:d7970ebb65790522a299341eb81cc0ebf2a7a9eb700d50983b052f32fabf7c01",
|
|
2495
2632
|
"test/layer-0-primitives/agent-tenant.test.js": "sha256:8e49f2cc4ed185b42ec74e707d72eb2305e9c93fa7892ca1889b4acb65c7b2fe",
|
|
2496
2633
|
"test/layer-0-primitives/agent-trace.test.js": "sha256:c8f41efa35426424fcc058474093984adf002637a7cc80241574fbff2883c475",
|
|
@@ -2509,19 +2646,21 @@
|
|
|
2509
2646
|
"test/layer-0-primitives/ai-prompt.test.js": "sha256:a785ecd08465b8af8fd3e6a9356149bf4cf5bbf79e5140b07273dd2b4cbc8f7f",
|
|
2510
2647
|
"test/layer-0-primitives/ai-quota.test.js": "sha256:fc9ea7a153009c5ac203739b88da31c32d47be49a36080f8e48f6c3f896dc93f",
|
|
2511
2648
|
"test/layer-0-primitives/api-encrypt-rejection-envelope.test.js": "sha256:e89106bb08e52e28f330091375a6099931abb494d59e4ac9d1f73601bf1d9ed8",
|
|
2512
|
-
"test/layer-0-primitives/api-encrypt.test.js": "sha256:
|
|
2513
|
-
"test/layer-0-primitives/app-shutdown.test.js": "sha256:
|
|
2649
|
+
"test/layer-0-primitives/api-encrypt.test.js": "sha256:587dc20170b7a0e2014ffefca29bcca9d53b81c732ce97f42bf909e2618b19e7",
|
|
2650
|
+
"test/layer-0-primitives/app-shutdown.test.js": "sha256:b4a2286c5c0d437d5e82e55dba16a2396ac238a99987de27758ad52fe4ec263e",
|
|
2651
|
+
"test/layer-0-primitives/archive-adapters.test.js": "sha256:ad8422abbb0fcd4f46b7b04df6ec22aa2ea54a47cd0eb32670faad2d22ef477c",
|
|
2514
2652
|
"test/layer-0-primitives/archive-gz.test.js": "sha256:99d3586fb276ba147f806d486e40dcc8d86f7742fac683a9f84529986a95dcd4",
|
|
2515
|
-
"test/layer-0-primitives/archive-read.test.js": "sha256:
|
|
2653
|
+
"test/layer-0-primitives/archive-read.test.js": "sha256:527d26bb15e7b21ca2cdcd466cfff8d956daec1cf6d45dd6777992027ed08646",
|
|
2516
2654
|
"test/layer-0-primitives/archive-sniff-envelope.test.js": "sha256:4a5d25e381ed1396ae43c411cdaaeb90b08df51d516f299bf049b79e655609a5",
|
|
2517
2655
|
"test/layer-0-primitives/archive-tar-hardening.test.js": "sha256:b10b960f95298fe580de1459592030d32f06aef522f037d6bba5df7c5d2ebb57",
|
|
2656
|
+
"test/layer-0-primitives/archive-tar-read.test.js": "sha256:d173c128bee22c2377e0330a845bd432324922aaabfa1d17bea128c1b99dfe7d",
|
|
2518
2657
|
"test/layer-0-primitives/archive-tar.test.js": "sha256:5c51a3b38f20bd40650e47ecb6d0839e067c235c2c3545fde6e799034125da8a",
|
|
2519
2658
|
"test/layer-0-primitives/archive-wrap-passphrase.test.js": "sha256:c84d4050b4b2a12c6edc61a55c3c9197af9f7380575fdb504f741e27e3e9d9e1",
|
|
2520
|
-
"test/layer-0-primitives/archive-wrap.test.js": "sha256:
|
|
2659
|
+
"test/layer-0-primitives/archive-wrap.test.js": "sha256:17a48ba922a58fddc581e938661909024c0496a09c873a36570af36d6272c80d",
|
|
2521
2660
|
"test/layer-0-primitives/archive-zip-stream.test.js": "sha256:f39020a5cccd85f9696cd6cddb7a808211fae088f9ddb5218d7fdf19c7eb4dce",
|
|
2522
2661
|
"test/layer-0-primitives/archive.test.js": "sha256:d7eae82309e7ac8af94c45ada171bda92e2b95c3397d4ffc0ca6e326b36d21d6",
|
|
2523
|
-
"test/layer-0-primitives/arg-parser.test.js": "sha256:
|
|
2524
|
-
"test/layer-0-primitives/asn1-der.test.js": "sha256:
|
|
2662
|
+
"test/layer-0-primitives/arg-parser.test.js": "sha256:bdf62afdded0acf8b37ad223ab13a122b307e434fb4b8b2991075eced79ef814",
|
|
2663
|
+
"test/layer-0-primitives/asn1-der.test.js": "sha256:848114dc53ce2c965cc5e1163f9e04bc2fd634a684cab0c7a084c1569026d28e",
|
|
2525
2664
|
"test/layer-0-primitives/asyncapi.test.js": "sha256:893af0f1c876f42b1d6d2c93ed8ad5d04b26866737e67a4e7cb2c32ee5b89da5",
|
|
2526
2665
|
"test/layer-0-primitives/atomic-file-conflict-path.test.js": "sha256:da753f646f2fe06e40a5a850a0ab4fb67fe75ca1e85819434d3e972176210190",
|
|
2527
2666
|
"test/layer-0-primitives/atomic-file-exclusive-temp.test.js": "sha256:d272b0b80b4fdd7dda49f85edbd1c0a8db223cf97c60d8578c33ac4b3131be34",
|
|
@@ -2532,6 +2671,7 @@
|
|
|
2532
2671
|
"test/layer-0-primitives/atomic-file-rename-retry.test.js": "sha256:aaa094a4f8e5e93b2a7b31050de2ac58ea2c8434285f0eacdce69502de833c91",
|
|
2533
2672
|
"test/layer-0-primitives/atomic-file-write-excl.test.js": "sha256:6eddde6a80050bc7564965770f499ba442609168b935bc22495b87de93beae99",
|
|
2534
2673
|
"test/layer-0-primitives/atomic-file-write-stream.test.js": "sha256:041be6d5327d2070198323a87240824a8cb4daf830de7e308915bae542ef6fb7",
|
|
2674
|
+
"test/layer-0-primitives/atomic-file.test.js": "sha256:bbef81e557842db4a51960ccbc858d951d9afda3083febd565a4c080e78ebd03",
|
|
2535
2675
|
"test/layer-0-primitives/attach-user-bearer-scheme.test.js": "sha256:445f6db2a4224ed7e7e8f3671231f5e32ff945178740688e1af403115748c386",
|
|
2536
2676
|
"test/layer-0-primitives/audit-chain-corrupted-anchor.test.js": "sha256:7c5f022ecd50a13ec8d4c7320369127911750356f6e87acb199b650924f4a276",
|
|
2537
2677
|
"test/layer-0-primitives/audit-chain-incremental-verify.test.js": "sha256:5fafbb71368ec3ed51caa5e596e87eb6840928e67bfc9c7fb6947ba491302c8e",
|
|
@@ -2543,33 +2683,37 @@
|
|
|
2543
2683
|
"test/layer-0-primitives/audit-query-self-log.test.js": "sha256:1588771eee94f020aa9c602f5fe8e065a1318a32acea449d0ce6557d415d5c5d",
|
|
2544
2684
|
"test/layer-0-primitives/audit-safeemit-redacts-secrets.test.js": "sha256:7d95520de6eb969b1e0c7d66a200c4ae55b7a7412ce60e523a56273f4cdbdf1a",
|
|
2545
2685
|
"test/layer-0-primitives/audit-segregation.test.js": "sha256:ab46a0b4c8cb3fa9496e1a5abd88a1db8ca1cb4782a4e3ff54c905c1ac5d2333",
|
|
2546
|
-
"test/layer-0-primitives/audit-sign-anchor.test.js": "sha256:
|
|
2686
|
+
"test/layer-0-primitives/audit-sign-anchor.test.js": "sha256:a972cfd24364628ba603eda505b40832718ddb611774a245daf38381bc4c75d9",
|
|
2547
2687
|
"test/layer-0-primitives/audit-sign-ml-dsa-65.test.js": "sha256:85ab5ae6637304ab7b0c5893b86005fcd7b1f8c98d76548a39e6c97464fed9e9",
|
|
2548
2688
|
"test/layer-0-primitives/audit-signing-key-rotation.test.js": "sha256:47bca36f5b8c1cbec89fd937a88550543f565d0ecd34d5a0b72630d4fcfc79cf",
|
|
2549
2689
|
"test/layer-0-primitives/audit-tools-dual-control.test.js": "sha256:3400879b89f75d00e1ff24fbcc627b621411a4d3767ce086ae98fa7790e784ca",
|
|
2550
2690
|
"test/layer-0-primitives/audit-tools-return-bytes.test.js": "sha256:3ee5d89912b31f451323249d8d5ceaf633789c7c66b577c0b853273a39091dc9",
|
|
2691
|
+
"test/layer-0-primitives/audit-tools.test.js": "sha256:588e52c0cd6acd3ae759ca4302c3c28fef59045dbfe8e71974efb21e89c15ac2",
|
|
2551
2692
|
"test/layer-0-primitives/audit-use-store.test.js": "sha256:dae0bd0379bc4a7c9a8a63b2d4177883eb50dc5b2e52dd456e07bbe2a46473fe",
|
|
2552
2693
|
"test/layer-0-primitives/audit-verifybundle-tamper.test.js": "sha256:23df07caf7ce7d5d8e9b3e54974f156894943f981a94733b5184737ee9715c63",
|
|
2694
|
+
"test/layer-0-primitives/audit.test.js": "sha256:b98d50a2d9087a8847c41978050db3531d994709cfb3db363300311675bc39ff",
|
|
2553
2695
|
"test/layer-0-primitives/auth-bot-challenge-verifier.test.js": "sha256:820f52a9563bc1e8d76f9ab2af3baf2167ff42eaa5f8ff3ff33afe2ebb7b038f",
|
|
2554
2696
|
"test/layer-0-primitives/auth-bot-challenge.test.js": "sha256:770dedcb9a9438b862f4cc25478fc7a37a393ed33f7fb2e05d19099a6b009583",
|
|
2555
2697
|
"test/layer-0-primitives/auth-jar.test.js": "sha256:208b4d89c2161ae3f5da64f981105a966e9959405303ac2dbdcf0747d6a8127f",
|
|
2556
|
-
"test/layer-0-primitives/auth-jwt-defenses.test.js": "sha256:
|
|
2698
|
+
"test/layer-0-primitives/auth-jwt-defenses.test.js": "sha256:d3dee1ea1d3918eba92fad6420f3b8d898de6b8f0920e96b6e3b008f96ee2e88",
|
|
2557
2699
|
"test/layer-0-primitives/auth-lockout.test.js": "sha256:6cd48a9acd07bd480c3fa6ba0460c3174f39f2a49d228a6be5e711e6144ed594",
|
|
2558
|
-
"test/layer-0-primitives/auth-oauth-coverage.test.js": "sha256:6fdb51cedd9e4013161a14500516f60bb287286ebc53ddea85e0ccf7f04b923c",
|
|
2559
2700
|
"test/layer-0-primitives/auth-oauth-failclosed.test.js": "sha256:5026020b174d94f349b4247da8e2727c1cc7a88855f9892424a80f11b72720b3",
|
|
2701
|
+
"test/layer-0-primitives/auth-oauth.test.js": "sha256:1fd3a5c47c7df86baacb30a6bb143c667c1a700600e773dbb25b57d4280fd95b",
|
|
2702
|
+
"test/layer-0-primitives/auth-oid4vp.test.js": "sha256:d0cc3f434a883ca808f9034700e7ca219e5563690cf7626bd7c628447d2de9e0",
|
|
2560
2703
|
"test/layer-0-primitives/auth-password-audit.test.js": "sha256:110964f5393e386477b96f2ccf7495857a707c9e16a453701d9227cdf7267517",
|
|
2561
|
-
"test/layer-0-primitives/auth-
|
|
2704
|
+
"test/layer-0-primitives/auth-password.test.js": "sha256:c3ea4f3befd233a603d673c584811652662f35cb488aecea419fa23e2955b788",
|
|
2562
2705
|
"test/layer-0-primitives/auth-saml-failclosed.test.js": "sha256:1a7f4fef0889fd87cbf487785b2e15ed1c23e966d68eaa17610e16baff051001",
|
|
2563
|
-
"test/layer-0-primitives/auth-
|
|
2706
|
+
"test/layer-0-primitives/auth-saml.test.js": "sha256:c0d7d3412daa2f0a785c625e5a918562a31f56146800916c3681b84e5d4d2701",
|
|
2707
|
+
"test/layer-0-primitives/auth-status-list.test.js": "sha256:23fd7bb334b60238fc8161532ccb5845e9db8fb1392f5f648fba405a616eff30",
|
|
2564
2708
|
"test/layer-0-primitives/azure-blob-bucket-ops.test.js": "sha256:efa82ac41aa606b2c7ae8590de4401006bfce2bcaa039c9fd159c27d0bbae424",
|
|
2565
2709
|
"test/layer-0-primitives/azure-blob-key-encoding.test.js": "sha256:6c7a41073aad6a5b61519b57779a032f2a37fef1330c4ad482263e2ce3be5481",
|
|
2566
2710
|
"test/layer-0-primitives/backup-bundle-info.test.js": "sha256:81b9f9c3ad7f8ec0dca638ab443ea40909cd0e81537186b553c8c3ad9f96bc16",
|
|
2567
2711
|
"test/layer-0-primitives/backup-clone-bundle.test.js": "sha256:1410e49e1f2616dda95ad3a28caf7c184c391ee456f94cc6c465f063ef07a1b4",
|
|
2568
2712
|
"test/layer-0-primitives/backup-find-bundles.test.js": "sha256:e69c5317380f6e98e6f2a4f831ef3964b3fa9d54bc8849a3b7633663412b374d",
|
|
2569
|
-
"test/layer-0-primitives/backup-index-coverage.test.js": "sha256:1061a7377d1e13ab8f00d352102864369f48e81b87dd30b385b0c72761ae5c58",
|
|
2570
2713
|
"test/layer-0-primitives/backup-index-failclosed.test.js": "sha256:eab471aed0b5f724dd6a60c480a7f0be1917e729da63ad8a0cf48e86f08c6702",
|
|
2714
|
+
"test/layer-0-primitives/backup-index.test.js": "sha256:0db514a4b5d788fe6eb2cd3a3b72054bafb225aa8066e3c5f07c663a4a51bdef",
|
|
2571
2715
|
"test/layer-0-primitives/backup-key-rotation.test.js": "sha256:7c22018ceeb5b25afcfe5d26ca5a782ba7f3f49de9c031388330336e24433f8e",
|
|
2572
|
-
"test/layer-0-primitives/backup-manifest-signature.test.js": "sha256:
|
|
2716
|
+
"test/layer-0-primitives/backup-manifest-signature.test.js": "sha256:2ab3eef63d974e32ff16612865867ec1827db69042b9c186e5df868995835bab",
|
|
2573
2717
|
"test/layer-0-primitives/backup-object-store-adapter.test.js": "sha256:a93b1f010a4b881deedff90fad3616c388d29c2fce0813b5aebf6d4350d9a4be",
|
|
2574
2718
|
"test/layer-0-primitives/backup-residency-posture.test.js": "sha256:c35a15a471f79c97a812fec3eb7cebe4a2799362321e96e7fa6e867472f03dae",
|
|
2575
2719
|
"test/layer-0-primitives/backup-rewrap-all.test.js": "sha256:5ef54a9d82e791ded6f195634c9082f6501ef2cc6c6ee835c256b0073a8dc8a2",
|
|
@@ -2578,7 +2722,7 @@
|
|
|
2578
2722
|
"test/layer-0-primitives/backup-verify-all-bundles.test.js": "sha256:d48fe398a5485c0a9b7b9bd260524a622c16b2264a05ad39bd04f65091b5b4d7",
|
|
2579
2723
|
"test/layer-0-primitives/backup-verify-bundle.test.js": "sha256:b1814b339857a19563d882b48e569171745435c5836a33ecbd6ec8df01596e6a",
|
|
2580
2724
|
"test/layer-0-primitives/backup-worker.test.js": "sha256:035f7f8352229aed8ab1c64b951bd6fa5c00cf835e3d32ac47c8b6d3ca32c5d1",
|
|
2581
|
-
"test/layer-0-primitives/base32.test.js": "sha256:
|
|
2725
|
+
"test/layer-0-primitives/base32.test.js": "sha256:7ac48c2bbe6c59bd987bc7c51cb8ee591df454d35c7ca314da34607a393586b2",
|
|
2582
2726
|
"test/layer-0-primitives/bearer-auth.test.js": "sha256:385cb8e0391e61af914ca4ae59e8750ad079cf574a235928a0c01eb0b3f57c56",
|
|
2583
2727
|
"test/layer-0-primitives/body-parser-chunked-malformed.test.js": "sha256:84cad003aca52bc3774f63cc5331b6f46e6ed9a1c1e9ecc4491764ead6005ac6",
|
|
2584
2728
|
"test/layer-0-primitives/body-parser-error-redaction.test.js": "sha256:48d8bae44f594a1ccf18e3685d75f8e32c508096e008574930d4f642d5a9ee30",
|
|
@@ -2587,26 +2731,27 @@
|
|
|
2587
2731
|
"test/layer-0-primitives/bot-guard.test.js": "sha256:dd887e8041d04307bf266073e1b60d2f4a4e8d05f5a5445445207df30c2cf84c",
|
|
2588
2732
|
"test/layer-0-primitives/bounded-map.test.js": "sha256:aa74960225e75077d3f8c7b3c05aef6758a6727f479a496f9356ad8c4600dbb4",
|
|
2589
2733
|
"test/layer-0-primitives/breach-deadline.test.js": "sha256:7c747a6d4337fc873f5889695e87dc73f67d5a8dbea0b494f16db6574c4b0198",
|
|
2590
|
-
"test/layer-0-primitives/break-glass.test.js": "sha256:
|
|
2734
|
+
"test/layer-0-primitives/break-glass.test.js": "sha256:69e7978787f52e214b67c4af2b68daeca723c17ede9615c91e750f04ec49e286",
|
|
2591
2735
|
"test/layer-0-primitives/budr.test.js": "sha256:6ceaa0c919097745f6e8fde5dcd3b8ae674d8fce000b8405a53a3230b0ae65f3",
|
|
2592
2736
|
"test/layer-0-primitives/bundler-engine.test.js": "sha256:72e9b0c80270500a3f179f4494312464d80300508587de52206fa69b63df7241",
|
|
2593
2737
|
"test/layer-0-primitives/cache-status.test.js": "sha256:e026188e642f3d10bc80f5fd065f99094d39d3c18471e9c2a70b602315fa1d6e",
|
|
2594
|
-
"test/layer-0-primitives/cache.test.js": "sha256:
|
|
2595
|
-
"test/layer-0-primitives/calendar.test.js": "sha256:
|
|
2738
|
+
"test/layer-0-primitives/cache.test.js": "sha256:7bc391da791e1dd089640ccb17c90819588e559107d9bf157f376b4cb706c5e8",
|
|
2739
|
+
"test/layer-0-primitives/calendar.test.js": "sha256:373555fef898765f09e358b3409901c785e48b68063e7dc773609232fdacf0a4",
|
|
2596
2740
|
"test/layer-0-primitives/canonical-json-jcs.test.js": "sha256:75acafb5ac76227de674ee8f08bf0658a2bc293ae669bdec4dcec2f48a273a2b",
|
|
2597
2741
|
"test/layer-0-primitives/canonical-json.test.js": "sha256:50e2f3b3133f752374617c8e94568bd167adfdd22f4955cd0cee467f0347319c",
|
|
2598
|
-
"test/layer-0-primitives/
|
|
2742
|
+
"test/layer-0-primitives/case-insensitive-security-token-guard.test.js": "sha256:8503109a4b471487ca7b257b2b9aa5b86790b8ab7706d4a2fce2be5c2d42089e",
|
|
2743
|
+
"test/layer-0-primitives/cbor.test.js": "sha256:7ef682b9d5d26d373bf81da546cdb184e6bdeb1738679163e98b2bf35da93c46",
|
|
2599
2744
|
"test/layer-0-primitives/cdn-cache-control.test.js": "sha256:645a02cfb66f11d63b02f411854a060beae33e883564868766aed73be1184feb",
|
|
2600
|
-
"test/layer-0-primitives/cert.test.js": "sha256:
|
|
2745
|
+
"test/layer-0-primitives/cert.test.js": "sha256:4c29a9ada95678c6cd3f5f0ce5fc7daf76f736dda4f467bff36aa99e9e8f4f2d",
|
|
2601
2746
|
"test/layer-0-primitives/chain-writer-multichain.test.js": "sha256:2e45c9e9c3000dd0df621b322387f2443c1691bcfc37d507c9765847747a7e35",
|
|
2602
|
-
"test/layer-0-primitives/ciba-authreqid-binding.test.js": "sha256:
|
|
2603
|
-
"test/layer-0-primitives/
|
|
2747
|
+
"test/layer-0-primitives/ciba-authreqid-binding.test.js": "sha256:81b651630f7dd05f286ecdf081c7c26589518901cc8510c626ee28934496eb7c",
|
|
2748
|
+
"test/layer-0-primitives/ciba.test.js": "sha256:53a49e50fdc2907dbb114f8e36a6cd66fff8b4890e0b6ac604e37a39f1957a73",
|
|
2749
|
+
"test/layer-0-primitives/clear-site-data.test.js": "sha256:116fd9e75fc140133b18f3f3c42f1f36c7064f1d342baf4dbcd940eb167b81b5",
|
|
2604
2750
|
"test/layer-0-primitives/cli-api-key.test.js": "sha256:68e10e2ca9144da0097cde5e89b1c6e81e2efce52592a5d88893b60aab8820d4",
|
|
2605
2751
|
"test/layer-0-primitives/cli-audit-verify-chain.test.js": "sha256:591bc853546b5206a4d545639e06370dafe3f41e713851d2a781dff24f0f8253",
|
|
2606
2752
|
"test/layer-0-primitives/cli-backup.test.js": "sha256:0d0119528756315de6ca86b36cca33f282b606c6e1f92d023a8a25fc210c413b",
|
|
2607
2753
|
"test/layer-0-primitives/cli-config-drift.test.js": "sha256:9e82b795bbab1b3958d8f07ea2d7adf2bb362cf66617b9252c788d8926265762",
|
|
2608
|
-
"test/layer-0-primitives/cli-
|
|
2609
|
-
"test/layer-0-primitives/cli-erase.test.js": "sha256:50bec7579a075f79ad85d6dcb25baee63b4298440a86eaa14bb892d94650894c",
|
|
2754
|
+
"test/layer-0-primitives/cli-erase.test.js": "sha256:e6ec282d10d56f87d8c68dd11ec52c73b390809f100e37ee3bff5cdc91eacbce",
|
|
2610
2755
|
"test/layer-0-primitives/cli-file-type.test.js": "sha256:b0a6383d53463e65082ad17fd14618b8f8a26e765ad8747a53643d6830933d4c",
|
|
2611
2756
|
"test/layer-0-primitives/cli-helpers.test.js": "sha256:128afc3c3b6491fe462e080b41342a93b830704f61a47cb0897ebf33a81c1705",
|
|
2612
2757
|
"test/layer-0-primitives/cli-mtls.test.js": "sha256:728cb2858236468b5f77c315f104f88760dd8264bcfb1aa00f736d9cff222330",
|
|
@@ -2615,61 +2760,69 @@
|
|
|
2615
2760
|
"test/layer-0-primitives/cli-retention.test.js": "sha256:6e554e9d462a888352f18777d4e7ebec106c4ee0e524597f4f2d5de400a70d5c",
|
|
2616
2761
|
"test/layer-0-primitives/cli-security.test.js": "sha256:c82ebbd1e1c7e6fff6bb6421b393d926c8be09f1a9a1e3c29c97cbebff3a7dfd",
|
|
2617
2762
|
"test/layer-0-primitives/cli-vault.test.js": "sha256:29e50aa3366ec65badc68f8db853db4fa65fa4cacd783f68f27e737d8ff6e32b",
|
|
2763
|
+
"test/layer-0-primitives/cli.test.js": "sha256:01305696a4bd368141a7f5967d288d29da226189abb02d8bfeccced884c62700",
|
|
2618
2764
|
"test/layer-0-primitives/client-hints.test.js": "sha256:9f0e66b55466e85cac93c2c597d94a9fedb854a35c551afd71e3d681210ac45d",
|
|
2619
2765
|
"test/layer-0-primitives/cloud-events.test.js": "sha256:09cae4b8df960c8bf3073db3b37012ab4e661e7ca290373fcff54c77212375c9",
|
|
2766
|
+
"test/layer-0-primitives/cluster-lease-renewal-ttl.test.js": "sha256:a2a112bffed4fccaac37d78f7b2473e6761a0ac67b8a6e066f1efa00c541e182",
|
|
2620
2767
|
"test/layer-0-primitives/cluster-storage.test.js": "sha256:8ebf536ab8243605bf08d57b2023f30e66f09b81b1122ef4478695b88df92bfd",
|
|
2621
2768
|
"test/layer-0-primitives/cluster-vault-rotation.test.js": "sha256:3c0520bd06f6339ca2d26a38456ac939284af2c0833fc88befe24cf6883f3d3b",
|
|
2622
|
-
"test/layer-0-primitives/
|
|
2623
|
-
"test/layer-0-primitives/
|
|
2624
|
-
"test/layer-0-primitives/
|
|
2625
|
-
"test/layer-0-primitives/
|
|
2769
|
+
"test/layer-0-primitives/cluster.test.js": "sha256:4954c6da9f8748f42e63f94dfe1ed1eb617d9f247dbb128102af23021ca909ae",
|
|
2770
|
+
"test/layer-0-primitives/cms-codec.test.js": "sha256:a7c833dee10889475259212e60f1ec380e9ca75f66f7a0bb7d1765321d0feee0",
|
|
2771
|
+
"test/layer-0-primitives/codebase-patterns.test.js": "sha256:274bbe1ca211deae6712ed8989013f9f51baf98910e5e5ac4ebe9fff2d44b8f4",
|
|
2772
|
+
"test/layer-0-primitives/codepoint-class.test.js": "sha256:421823822f59c3615dfb71c21cf96a54a379ad4d29f79f463e1f75abe11359c3",
|
|
2773
|
+
"test/layer-0-primitives/compliance-ai-act.test.js": "sha256:6a11710c6d3e6d6b68dd9e08c816d6119daee002f57ef3bdaeb710609883079c",
|
|
2626
2774
|
"test/layer-0-primitives/compliance-cascade.test.js": "sha256:b6ea3b5fa06d5637072b2e930436620a7d3e519b2f1222222f742e01a343d107",
|
|
2627
2775
|
"test/layer-0-primitives/compliance-eaa.test.js": "sha256:5e8532a20d428382b19288ba3fec06d4af96f7ff1b237b8486ab5944bd453ab6",
|
|
2628
2776
|
"test/layer-0-primitives/compliance-eu-ai-act-posture.test.js": "sha256:026132d6360efadafa0730cc84cd608fbfa87a73a0656c7bbcfaa5374628d6e8",
|
|
2629
|
-
"test/layer-0-primitives/compliance-
|
|
2777
|
+
"test/layer-0-primitives/compliance-lifecycle-proto-key.test.js": "sha256:d82812a3b5c401dfaca717442cb036f2a8e4c738935f987f7d30fd6404791e29",
|
|
2778
|
+
"test/layer-0-primitives/compliance-sanctions.test.js": "sha256:be99e54446dbe4ba754f81961a085acf3be547e38b19b8259dfb8dfcf0a1b502",
|
|
2630
2779
|
"test/layer-0-primitives/compliance.test.js": "sha256:ade5869d4a4f64ee32e0d31f5cd9f89232bf6b483baab55d406d92614173f82a",
|
|
2631
2780
|
"test/layer-0-primitives/compression-range.test.js": "sha256:ff46978cfaab5f1dd4535b0d0ee4aa7809fee72c56a33db786f6545209b2b597",
|
|
2632
2781
|
"test/layer-0-primitives/config-drift.test.js": "sha256:75371225fef23f472e26444e672c7822668e0400407e05652bc73f3a368b97aa",
|
|
2633
2782
|
"test/layer-0-primitives/config.test.js": "sha256:6adc4278b64f960ea2649779d7048c90ff54dbd849832c088700fbdca150ef94",
|
|
2634
2783
|
"test/layer-0-primitives/consent-purposes.test.js": "sha256:a1669c7fb9c999ced399a4d93dccf5195008c422f28a669c25a9832f2114ce2d",
|
|
2635
|
-
"test/layer-0-primitives/content-credentials
|
|
2636
|
-
"test/layer-0-primitives/content-credentials.test.js": "sha256:10014ff2e44cd5185d6c3401cb797db4813c4aa794cd01f07a221953cd4f029f",
|
|
2784
|
+
"test/layer-0-primitives/content-credentials.test.js": "sha256:0eddd4ddcecbda0830cbb7d2fa4c49559c1b957005534aa0f75b6e014a7c395a",
|
|
2637
2785
|
"test/layer-0-primitives/content-digest.test.js": "sha256:7b28731f3806576e04669a62919be1d79df3881b1b80b6eaf7cf101a2aa56c91",
|
|
2786
|
+
"test/layer-0-primitives/cookies.test.js": "sha256:b5f38329ee1b20b6bcf310b886052efe21051cafea6d021419a01fa7b01c9996",
|
|
2638
2787
|
"test/layer-0-primitives/cors.test.js": "sha256:74b0feee302861b3a6385cf43dfb286b008a10c37794e7074f34236124d924f2",
|
|
2639
|
-
"test/layer-0-primitives/cose.test.js": "sha256:
|
|
2788
|
+
"test/layer-0-primitives/cose.test.js": "sha256:5e191c326159c0468906c2944393182b7bea06e616da17f7ebe56210497d3fca",
|
|
2640
2789
|
"test/layer-0-primitives/cra-report.test.js": "sha256:02af3ff77b3e872a58c7df6f96b475a11579d504e89b5985338f70b504f15048",
|
|
2641
2790
|
"test/layer-0-primitives/crdt.test.js": "sha256:021ddb2f607dce24b8b80b52047f819a1b0952d49d117b37597faced8227005f",
|
|
2642
2791
|
"test/layer-0-primitives/credential-hash.test.js": "sha256:f13458e6c40e91ef1cbdea1db67f14c43b2caaea99de088e9ae809ca218810d8",
|
|
2792
|
+
"test/layer-0-primitives/crypto-adversarial.test.js": "sha256:a654abe5a3a7af5af3e347af1c194d8e8f8bda1e31066c3e3353bf7069e18843",
|
|
2643
2793
|
"test/layer-0-primitives/crypto-base64url.test.js": "sha256:e82c46b43f4875ea3a39d3403d32b294c52ecba987844b301996995637ec077e",
|
|
2644
2794
|
"test/layer-0-primitives/crypto-envelope.test.js": "sha256:9103e6c3c646be274e78b0e14ccbd685b89a3d2a60eab0a5cc1b44ffb9e4cb3f",
|
|
2645
2795
|
"test/layer-0-primitives/crypto-field-aad-downgrade.test.js": "sha256:7c3a98217f7af54a9cdfdb76d6b86ad0db55833a8d92cfdeca6a52d0634ddd25",
|
|
2646
|
-
"test/layer-0-primitives/crypto-field-derived-hash.test.js": "sha256:
|
|
2796
|
+
"test/layer-0-primitives/crypto-field-derived-hash.test.js": "sha256:869b5bca344d775019b86f4352ae9e7d2d8ebacb5bdec06c07dc62a8746c4b98",
|
|
2647
2797
|
"test/layer-0-primitives/crypto-field-dual-read-migrate.test.js": "sha256:96eb0616ead3bb6a874e9206b80fd0a98c8b2f698cea58ba77fdb34ec6c904da",
|
|
2648
2798
|
"test/layer-0-primitives/crypto-field-per-row-key.test.js": "sha256:e667d430994f527ed3f36063fb7d4ac8bae4006cfd86f0f951a8348aec6a4c4a",
|
|
2649
2799
|
"test/layer-0-primitives/crypto-field-unseal-rate-cap.test.js": "sha256:50fbe54a2de66527782f48a372ac6104f3c1f4c8b8791d6cc049c723e7254d23",
|
|
2650
2800
|
"test/layer-0-primitives/crypto-field-upgrade-dialect.test.js": "sha256:2803436a0cc195dc957c8f6b9f12f7278b9fe78a3bf9329d9f56d2e7bb7a0b69",
|
|
2651
|
-
"test/layer-0-primitives/crypto-
|
|
2652
|
-
"test/layer-0-primitives/crypto-hash-
|
|
2801
|
+
"test/layer-0-primitives/crypto-field.test.js": "sha256:07ec69c2638425a322697f2069753542463c8d5ab6d78aeef3a06dec6c04cb1d",
|
|
2802
|
+
"test/layer-0-primitives/crypto-hash-files-parallel.test.js": "sha256:37a59175cab24626962fe684ce588cb42b1789e7aceba1ec5c41d7dd8ba04962",
|
|
2803
|
+
"test/layer-0-primitives/crypto-hash-stream.test.js": "sha256:67a6673ab71c2a789fa232318501da0640f30e857dfde385b45076b6c73e0323",
|
|
2653
2804
|
"test/layer-0-primitives/crypto-hpke-pq.test.js": "sha256:f4ffce8405b44c431de47750b38c03188e6c53deb0d4c3293d86ebd3d9678ece",
|
|
2654
2805
|
"test/layer-0-primitives/crypto-hpke.test.js": "sha256:fca9c0460376d1fb8746b3f2495bd486474db2ed3728e631c977c365274f948a",
|
|
2655
2806
|
"test/layer-0-primitives/crypto-interop-oracles.test.js": "sha256:441f52e5d745b64707bc046d3f648a9a5aef7281a204ab87b87ba07d55c65c34",
|
|
2656
2807
|
"test/layer-0-primitives/crypto-mlkem768-x25519.test.js": "sha256:b41196e80c3a5526e6166abc0d5b24891601f00309605e64b7e813485b5a1a05",
|
|
2657
2808
|
"test/layer-0-primitives/crypto-namespace-hash.test.js": "sha256:660db6ef9a526616017d2af205f863b1283340d69ae7956081ce5915f959c1df",
|
|
2658
|
-
"test/layer-0-primitives/crypto-oprf.test.js": "sha256:
|
|
2809
|
+
"test/layer-0-primitives/crypto-oprf.test.js": "sha256:3fc009fdfc27136d7f931c6867c1a0e90436bb783c66065e7c20eaa27d674125",
|
|
2659
2810
|
"test/layer-0-primitives/crypto-random-int.test.js": "sha256:688abdc8c621549472014b27c7a8e6b9b932cba18381e3871dcf906e95e71208",
|
|
2660
2811
|
"test/layer-0-primitives/crypto-self-test.test.js": "sha256:8d663a44950f8f420cdd056da39e4141b3c0e0712665a2fe95b07cf4de431473",
|
|
2661
|
-
"test/layer-0-primitives/crypto-
|
|
2812
|
+
"test/layer-0-primitives/crypto-spki-pin.test.js": "sha256:aa7f55ac26479d79d7f0a71a403ec3647e41a03e6d4cb22b74b9cbf54a924ca2",
|
|
2813
|
+
"test/layer-0-primitives/crypto-xwing.test.js": "sha256:d67b95702c01e30c50a3150cac0f65cfa668d4c51aa3bb06b3dc6a96a05255d0",
|
|
2814
|
+
"test/layer-0-primitives/crypto.test.js": "sha256:b4af4e35dd2f9275186da50a2f7d62332873dbd0a9b1428d35f8e206b7c5e4d2",
|
|
2662
2815
|
"test/layer-0-primitives/csp-builder.test.js": "sha256:e69d069c04ee2e1cc87e0d11b0a26699632554a8fbd5fead851410fb5718cbeb",
|
|
2663
2816
|
"test/layer-0-primitives/csp-nonce.test.js": "sha256:098c9b10d02285c715f4ebf6f851fddaf497e49654e8ac3cbf8464e87094ed7a",
|
|
2664
|
-
"test/layer-0-primitives/csp-report.test.js": "sha256:
|
|
2817
|
+
"test/layer-0-primitives/csp-report.test.js": "sha256:b6da21d40372b73c6a8571d2686497e9ce338df87e8694dc04c8b2912fb49d8c",
|
|
2665
2818
|
"test/layer-0-primitives/csrf-protect.test.js": "sha256:4b7d07492a1f1a218aa8106a387401cd3d6f3b43d3c6833ee4db5386bc2bc712",
|
|
2666
|
-
"test/layer-0-primitives/csv.test.js": "sha256:
|
|
2819
|
+
"test/layer-0-primitives/csv.test.js": "sha256:cf66f7ae53a0f0b61ce4c6326bbac85757f28144264767be6dc7911dc191ca86",
|
|
2667
2820
|
"test/layer-0-primitives/cwt.test.js": "sha256:2e992ab7445db02581275ae5fd8b38de210e21f38a1594f27942f1bb1f9495e4",
|
|
2668
2821
|
"test/layer-0-primitives/cycle2-bugfixes.test.js": "sha256:d23919a13e58a84d61a1a3d2eb95ec6f9d24ab94e3f2221e7002e07438d48341",
|
|
2669
|
-
"test/layer-0-primitives/daemon.test.js": "sha256:
|
|
2822
|
+
"test/layer-0-primitives/daemon.test.js": "sha256:8f3860ba1db94cdc107d1567d2f08edbd57a27781e9442ca41e44f005681f088",
|
|
2670
2823
|
"test/layer-0-primitives/daily-byte-quota.test.js": "sha256:f8ac102047451f6dd04050096674b739f012117b1845215bf4f1b47df25be72f",
|
|
2671
2824
|
"test/layer-0-primitives/dane.test.js": "sha256:0fff14dfa609fa04a30f6a5a644288bcfafb3292044797cdc89674e5dc9485e2",
|
|
2672
|
-
"test/layer-0-primitives/dark-patterns.test.js": "sha256:
|
|
2825
|
+
"test/layer-0-primitives/dark-patterns.test.js": "sha256:2951f0118cb2a440c8f3f933c31241ef8b0e1e8cf5b33e65d38f30607da51116",
|
|
2673
2826
|
"test/layer-0-primitives/data-act.test.js": "sha256:c80372e580add13565fd9b045510c08c2667cc83a4fffc89d6dbf5506b27de82",
|
|
2674
2827
|
"test/layer-0-primitives/db-collection-extensions.test.js": "sha256:86e9bb2d4e26349e0e6475af9007d3ca0d762d32f8101eb79aa5375bfa24f9a2",
|
|
2675
2828
|
"test/layer-0-primitives/db-collection.test.js": "sha256:f59c5b5471a7d5c29f23081df184618d3523e64985c0b3f8f4cbe7485b380c68",
|
|
@@ -2679,7 +2832,8 @@
|
|
|
2679
2832
|
"test/layer-0-primitives/db-query-cross-schema.test.js": "sha256:a287119007fc19af65836310c9650fbe77358ed3b03c8e978f7c6b709f42ad96",
|
|
2680
2833
|
"test/layer-0-primitives/db-query-extensions.test.js": "sha256:eeba4149eddec6e1968cc153431004a28b15fdd8987ef2b28ebc7d0cf7d1e438",
|
|
2681
2834
|
"test/layer-0-primitives/db-query-sealed-field-in.test.js": "sha256:48857798dfe1fc28fb75829062e1de3686d06bc6102ec7f27affeea8ced697de",
|
|
2682
|
-
"test/layer-0-primitives/db-
|
|
2835
|
+
"test/layer-0-primitives/db-query.test.js": "sha256:571db63c37a9380f39ab03af3a6320975f63089fae8094dadb46bbeb3dd7a79a",
|
|
2836
|
+
"test/layer-0-primitives/db-raw-residency-gate.test.js": "sha256:ff86e042957d74457726afb501f3a82ef60593431706def26560f43dd04ea21c",
|
|
2683
2837
|
"test/layer-0-primitives/db-role-for.test.js": "sha256:1da80815dd27aae4829c45289e3bf2c5b6c10d9a0fb867a704c24a58d32a3a0c",
|
|
2684
2838
|
"test/layer-0-primitives/db-schema-drift.test.js": "sha256:760ae2b1bb27d0649d6c2771a8b27d6900f11c2d7f71dcde583b5916252d097a",
|
|
2685
2839
|
"test/layer-0-primitives/db-schema-reconcile-emittable.test.js": "sha256:0928a48ef676a52e188a5111ebc80736293647bfb807a41981b563dcab2ab4e2",
|
|
@@ -2687,7 +2841,8 @@
|
|
|
2687
2841
|
"test/layer-0-primitives/db-stream-and-payload-shape.test.js": "sha256:c849a768a64dc5e62e2fdc9cf5c9edb16a505c6e965e5deca271923be28e371f",
|
|
2688
2842
|
"test/layer-0-primitives/db-vacuum.test.js": "sha256:85604a2aa54a22e79c7d4a74216f44069ec662b9ddb2dd271b987c8f05528ce6",
|
|
2689
2843
|
"test/layer-0-primitives/db-worm.test.js": "sha256:7c790567869e680973364aeece757a04547f7662b5eb1baaab321702dd1b4403",
|
|
2690
|
-
"test/layer-0-primitives/
|
|
2844
|
+
"test/layer-0-primitives/db.test.js": "sha256:bc84760b89e4b7ed28ae376fc0456738082c39b8172d6dd92a8df39b37f85ed9",
|
|
2845
|
+
"test/layer-0-primitives/ddl-change-control.test.js": "sha256:64ce80319ed8d4f0d4f3be1bb87008616f2d2d0f3997c78dd8695784e6a37e4c",
|
|
2691
2846
|
"test/layer-0-primitives/declare-row-policy.test.js": "sha256:8d3ed9f9d2fd7b55c450b7f930df95b59c5707d0c63e4ea71534fd2262fe2684",
|
|
2692
2847
|
"test/layer-0-primitives/declare-view.test.js": "sha256:79d554c8f097bd756c9dad9f2a41b1d8cd59dbdcaa37314195eb4dc6bd5c285c",
|
|
2693
2848
|
"test/layer-0-primitives/defineguard-default-gate-posture-caps.test.js": "sha256:0368716960ed5b70b9820fa03c4736d112c4d4d0d5c16097e8751ad7d34710e3",
|
|
@@ -2696,62 +2851,73 @@
|
|
|
2696
2851
|
"test/layer-0-primitives/did.test.js": "sha256:2fd91185ee32cbdcf7689d6f38397527d0b03b7ae1aa365f42e55da68b0d9e03",
|
|
2697
2852
|
"test/layer-0-primitives/dns-dnssec-algorithm.test.js": "sha256:db7bed3bc801a3baa76507a35ad4efaaa0a1032336056ae4feabb2d5b22843f3",
|
|
2698
2853
|
"test/layer-0-primitives/dns-null-mx.test.js": "sha256:5eb19bb07981a981d1a48a56c875da10c0ae6d480a80739eb02530c316c4c1f2",
|
|
2699
|
-
"test/layer-0-primitives/dnssec.test.js": "sha256:
|
|
2854
|
+
"test/layer-0-primitives/dnssec.test.js": "sha256:a184b7a0b2ca794a25cc3927c6803199fea993c1d0a03f93a3ccd442827ea0c8",
|
|
2700
2855
|
"test/layer-0-primitives/dora.test.js": "sha256:46835ff0703b277caf47e7ca0bea3ee1bb8ebfe16991e1e882b4bbd58abbf089",
|
|
2701
2856
|
"test/layer-0-primitives/dpop-alg-kty.test.js": "sha256:f47cd2303af18b89adfb3585aac8eafd641b73fc97e839e7d88f18c897b41b09",
|
|
2702
2857
|
"test/layer-0-primitives/dpop-htu-peergating.test.js": "sha256:9942f2f75c3b4b71343bb31b2649e905f300cb61b3f6772fdb7c825c5f490b47",
|
|
2703
2858
|
"test/layer-0-primitives/dpop-middleware-replaystore-required.test.js": "sha256:cb97a4f8080e216eeeb2ed14184856b25c37311574d438c49d43ca0630254af2",
|
|
2859
|
+
"test/layer-0-primitives/dpop-middleware-verify.test.js": "sha256:0048d8b554458a237561e850a60ae067cb904b64417918e7d3c3f8cc66d2a3a0",
|
|
2704
2860
|
"test/layer-0-primitives/dr-runbook.test.js": "sha256:de6e2a2de40cb15a60b98ca1bd4b01fa268dd1aeb080a2e93a3ea0629abaf79a",
|
|
2705
2861
|
"test/layer-0-primitives/dsa.test.js": "sha256:569e091a04a280af0d2487f0cf560920447d7db608220a1bdd4ff4b59c221a3e",
|
|
2706
2862
|
"test/layer-0-primitives/dsr-state-rules.test.js": "sha256:b8bb990e379aa29f7b3c4cd24b743fca6a20292ae702cc3ae9cb7531a362ca4e",
|
|
2707
|
-
"test/layer-0-primitives/dsr.test.js": "sha256:
|
|
2708
|
-
"test/layer-0-primitives/dual-control.test.js": "sha256:
|
|
2863
|
+
"test/layer-0-primitives/dsr.test.js": "sha256:75345d78fa3c60e9b218c1b6d32963bec69df328af40767765dfcb50e2ced67c",
|
|
2864
|
+
"test/layer-0-primitives/dual-control.test.js": "sha256:780cae287564736e30a68a7a3cc838bc4a4b6638f6cf73d85d0a1c06fef4ac11",
|
|
2709
2865
|
"test/layer-0-primitives/early-hints.test.js": "sha256:d9543e43eb93e36a023395cc0666119bf5219a269067d38ea58ff66b3ae7e486",
|
|
2710
2866
|
"test/layer-0-primitives/eat.test.js": "sha256:dfcc98477ece89982eee12718baf14ec86256871762b1c2a047f490e2d0c2fdc",
|
|
2711
2867
|
"test/layer-0-primitives/erase-posture-vacuum.test.js": "sha256:d7e900e97e68301e8bd794b78aeb676eacb672fd76922ebe271a2740b7990d8c",
|
|
2712
2868
|
"test/layer-0-primitives/events.test.js": "sha256:4d07d8142a261fda93859aff0234d5cd94ea5e35ca60703f6ae3fa525e7dbb5d",
|
|
2713
2869
|
"test/layer-0-primitives/exploit-replay.test.js": "sha256:5221115e2b4fc37ab07252917d4c0670e7c1584ee8ce9bc27bd900d43ec6ef66",
|
|
2714
2870
|
"test/layer-0-primitives/external-db-hardening.test.js": "sha256:156e7e7222f72503eaefc36f5e2db2a22759c52993f51ef3e3ef455ca2d1d020",
|
|
2715
|
-
"test/layer-0-primitives/external-db-migrate.test.js": "sha256:
|
|
2871
|
+
"test/layer-0-primitives/external-db-migrate.test.js": "sha256:d0752b52e2a15bfab8fb887e716a44724b48d29133de77583c1ff10cfe47479b",
|
|
2716
2872
|
"test/layer-0-primitives/external-db-non-atomic-backend.test.js": "sha256:8350a000c181b300272fa1897961304c1cd92a75d195eb3eaba271344765b65c",
|
|
2717
2873
|
"test/layer-0-primitives/external-db-routing.test.js": "sha256:87528a400e875f0f9d4d2835a4069cb9398113e2a53959190b7ce6efa3f7340c",
|
|
2718
|
-
"test/layer-0-primitives/
|
|
2874
|
+
"test/layer-0-primitives/external-db.test.js": "sha256:1e30d2113ab86349d74a1917b74853dc085c8e8daaf6d01a6071a9cfeb4f393d",
|
|
2875
|
+
"test/layer-0-primitives/fal.test.js": "sha256:d8ec2f84a7c623ef7d3cd3938c2e771da7d95e50ff5c4a5e5e9a77d47b6d284e",
|
|
2719
2876
|
"test/layer-0-primitives/fapi2.test.js": "sha256:0c748876507da4897e87e93d0c5dbde102b426f3d04d26685f48d0c7aeabd451",
|
|
2720
2877
|
"test/layer-0-primitives/fda-21cfr11.test.js": "sha256:821c430096564e0dfa7df8f0245ed440d870ac79fbe1ea0893fd9a2bd264fcc5",
|
|
2721
2878
|
"test/layer-0-primitives/fdx.test.js": "sha256:7d3c0dcd42ad8d511b542e8459e7d2192d9b165a0484289b9fbb5dcbcad5a086",
|
|
2722
|
-
"test/layer-0-primitives/fedcm-dbsc.test.js": "sha256:
|
|
2723
|
-
"test/layer-0-primitives/federation-vc-suite.test.js": "sha256:
|
|
2879
|
+
"test/layer-0-primitives/fedcm-dbsc.test.js": "sha256:8545dc9b334056041fe90ef51849472426462dae1d280fd428c372d85cede2d1",
|
|
2880
|
+
"test/layer-0-primitives/federation-vc-suite.test.js": "sha256:e62855bc1e154c584ab036f587bdc294bc9937325c88494cd3c312ec80a37f02",
|
|
2724
2881
|
"test/layer-0-primitives/fetch-metadata.test.js": "sha256:5457334720802b2d38c89c99b0157f236bd5665ebc5be135f1191a9f808aa8fc",
|
|
2725
2882
|
"test/layer-0-primitives/fido-mds3-cert-bad-validity.test.js": "sha256:a8ff35d0a23fc14006f616ee24c9290073c66af7de46d2f52c5e1249da42c3c0",
|
|
2726
|
-
"test/layer-0-primitives/fido-mds3.test.js": "sha256:
|
|
2883
|
+
"test/layer-0-primitives/fido-mds3.test.js": "sha256:4a3ab678facdaaa1f6d0c82524796388551aa1c93b4aa40e48a876dd4b752791",
|
|
2727
2884
|
"test/layer-0-primitives/file-type.test.js": "sha256:747d8697646f2f1a651c912b3574f26ebd7b74282c5811f3cc8dc3009058e286",
|
|
2728
|
-
"test/layer-0-primitives/file-upload-content-safety-skip-audit.test.js": "sha256:
|
|
2885
|
+
"test/layer-0-primitives/file-upload-content-safety-skip-audit.test.js": "sha256:e292a41eb1be8e9121219f088a0bd25207b7946c8eb51404e81009b9729f59c1",
|
|
2729
2886
|
"test/layer-0-primitives/file-upload-ownership.test.js": "sha256:117ce0446c6283272003f0099069f7da1247d4da3bb41e589da2851fa04ecf55",
|
|
2730
|
-
"test/layer-0-primitives/
|
|
2887
|
+
"test/layer-0-primitives/file-upload.test.js": "sha256:15429cc0abb8a88f3d127bc913078fc73e057f000b71afa1c542e4c51c85f990",
|
|
2888
|
+
"test/layer-0-primitives/flag.test.js": "sha256:fccba5d66262607845dadbf2f991db276ee565ca93a77dbf252ebe6d4cb5baf4",
|
|
2731
2889
|
"test/layer-0-primitives/forensic-snapshot.test.js": "sha256:99b81dafe2853539a22b81a53bb6b04e5c4f225fb1ac02424bd33145a100d62b",
|
|
2890
|
+
"test/layer-0-primitives/forms.test.js": "sha256:99bf5c3a3851e8dc828d8dc68544e5e0431de41023338458aa2cb16293a039f2",
|
|
2732
2891
|
"test/layer-0-primitives/fsm.test.js": "sha256:d77cb7f48ffda9eff48d90873172680e80407228c8736ac4e52872c032196822",
|
|
2733
2892
|
"test/layer-0-primitives/gate-contract-content-gate.test.js": "sha256:7e96f0631f1dc4abff0eca06e2c5d0fc00189514005d0f35a47d0029974713dd",
|
|
2893
|
+
"test/layer-0-primitives/gate-contract.test.js": "sha256:cc2c9aaed973172544bd76f8d8c8733d228cc60378bdd1a855c61e29f9a40037",
|
|
2734
2894
|
"test/layer-0-primitives/gcs-bucket-ops.test.js": "sha256:c413c44c91d5230fdfa4851d451c8f5fff9c42edef7baca23f008de796dbc5c3",
|
|
2735
|
-
"test/layer-0-primitives/gdpr-ropa.test.js": "sha256:
|
|
2895
|
+
"test/layer-0-primitives/gdpr-ropa.test.js": "sha256:2551368345b72da61c1378283bbb6af1802ccfd377b664bf453a0a4fe7e162d5",
|
|
2736
2896
|
"test/layer-0-primitives/graphql-federation.test.js": "sha256:2ffe2aa64912eb96dadbf2f4521d70ce67ec0f9cc3f21992a0ea23bee9d22b4f",
|
|
2737
2897
|
"test/layer-0-primitives/guard-agent-registry.test.js": "sha256:6a331f864cc34b551ae684db577352229e287bf7b44d7449832a0e9c00654e70",
|
|
2738
2898
|
"test/layer-0-primitives/guard-all.test.js": "sha256:d9cb5201b28fa5577817753f5ecdc9f3edad115626f29f3af9d463bca76abe53",
|
|
2739
|
-
"test/layer-0-primitives/guard-archive.test.js": "sha256:
|
|
2899
|
+
"test/layer-0-primitives/guard-archive.test.js": "sha256:3726fd4f603c80fc0c2cf5aef2940e1675451a4a8afe3d22fe419469d50eca97",
|
|
2900
|
+
"test/layer-0-primitives/guard-auth.test.js": "sha256:32daaaf4ac76376f99c67c715297c168a5a9ca63cd852ed1563a34c2ba8d0011",
|
|
2901
|
+
"test/layer-0-primitives/guard-cidr.test.js": "sha256:d2fba5b5db4ecfdd81c7e4c07a03df7c86db4552ff191ecfbd0c6c1c7cfa4909",
|
|
2740
2902
|
"test/layer-0-primitives/guard-csv.test.js": "sha256:8575f66e79aafb5e661fe7b893e3195b21584676d5cac16c81525a35c97e495a",
|
|
2903
|
+
"test/layer-0-primitives/guard-domain.test.js": "sha256:6298864171bd6bcaf2d318d2f43b9c75a9e80723f24a2ceb7f515e51b92d6752",
|
|
2741
2904
|
"test/layer-0-primitives/guard-dsn.test.js": "sha256:48f9bc1e9cd2bd4c8a660eb9723f8d8c90f5e4781e9b7354835b19fd932f969c",
|
|
2742
2905
|
"test/layer-0-primitives/guard-email.test.js": "sha256:b72960d89be2f180d7524e3f111f7fe853d60e8080cc6e4320e88e8a13124542",
|
|
2743
2906
|
"test/layer-0-primitives/guard-envelope.test.js": "sha256:ed9da1d7f92377f05686a114fcf6e3b2e738e0b1b1d27bb21078b2b5e1b6e1d1",
|
|
2744
2907
|
"test/layer-0-primitives/guard-event-bus-payload.test.js": "sha256:5ef15052675a6cec11162cc721a4cec87d0af7121a01f665f9bcc4867fbf25f7",
|
|
2745
2908
|
"test/layer-0-primitives/guard-event-bus-topic.test.js": "sha256:59f5243d1b326ced5e4e1eda74efee5fefb9e9ceb3e5ec9f7d8bfa996ae089aa",
|
|
2746
|
-
"test/layer-0-primitives/guard-filename.test.js": "sha256:
|
|
2747
|
-
"test/layer-0-primitives/guard-gate-disposition
|
|
2909
|
+
"test/layer-0-primitives/guard-filename.test.js": "sha256:63aa9ae8691420a6145ee140b6ef82bae5bdd11cfca5df928aabe2e7637135cd",
|
|
2910
|
+
"test/layer-0-primitives/guard-gate-disposition.test.js": "sha256:16612e3bac1cd1c715fe3b2634f18ff0dd9a41271ad3f1d3cff7fd820d18deff",
|
|
2911
|
+
"test/layer-0-primitives/guard-graphql.test.js": "sha256:6c45148af493ac0ce98236c331c9c90b21df10db331f658a6eaaf9b55baf7487",
|
|
2748
2912
|
"test/layer-0-primitives/guard-html-wcag.test.js": "sha256:5c706128fc5df6c1721195dab1d118a521e59a33bae7c3fffc5a779f0ec85bbc",
|
|
2749
|
-
"test/layer-0-primitives/guard-html.test.js": "sha256:
|
|
2750
|
-
"test/layer-0-primitives/guard-idempotency-key.test.js": "sha256:
|
|
2751
|
-
"test/layer-0-primitives/guard-image.test.js": "sha256:
|
|
2752
|
-
"test/layer-0-primitives/guard-imap-command.test.js": "sha256:
|
|
2753
|
-
"test/layer-0-primitives/guard-jmap.test.js": "sha256:
|
|
2913
|
+
"test/layer-0-primitives/guard-html.test.js": "sha256:9ff51a4b98ce628c0cec8dd9f00b18c6f0aecd3f23c3a031738dc11050438c52",
|
|
2914
|
+
"test/layer-0-primitives/guard-idempotency-key.test.js": "sha256:aacf7fc077cdf17936d54658975e836cb25220d99a2068db4a5a3d92c63535f9",
|
|
2915
|
+
"test/layer-0-primitives/guard-image.test.js": "sha256:055915d535c30ed9a0995027939e6ee2721e225e7efe00f0e3a5e7d0a1a9426b",
|
|
2916
|
+
"test/layer-0-primitives/guard-imap-command.test.js": "sha256:16604f704211d2cbece675c6d46888bf27ace2bffcd34f1f97928f82a5cd6656",
|
|
2917
|
+
"test/layer-0-primitives/guard-jmap.test.js": "sha256:455afe8a844bf8acb61236a76a04cb83cf574cacb5ef3184d195c441f54f744c",
|
|
2754
2918
|
"test/layer-0-primitives/guard-json.test.js": "sha256:baa6414b4673d750799900177df8e0e6d963aa79eaeaca92dfd77b8158dc85f6",
|
|
2919
|
+
"test/layer-0-primitives/guard-jsonpath.test.js": "sha256:7d05832ea60b12f37f49d25cad794bbe4a9de3dbabb08650551aeea7cde534aa",
|
|
2920
|
+
"test/layer-0-primitives/guard-jwt.test.js": "sha256:e0f0540d35f8fe0f11ef1986fb409e43d0c9fb3553fce05224afc83aec35bea0",
|
|
2755
2921
|
"test/layer-0-primitives/guard-list-id.test.js": "sha256:03b4d77a1734b18bd1f96ac2abe6e825cb42dc493322070b649913379f8f7522",
|
|
2756
2922
|
"test/layer-0-primitives/guard-list-unsubscribe.test.js": "sha256:1b209beae4c28a88f2d4f02588a0cda173c38dcdf35f66af5fb1f24e0655e6f2",
|
|
2757
2923
|
"test/layer-0-primitives/guard-mail-compose.test.js": "sha256:ebe4e47d38e80a579737fa9b40145cbe05dd8455f8c66a8e8bb07454a0644953",
|
|
@@ -2759,117 +2925,137 @@
|
|
|
2759
2925
|
"test/layer-0-primitives/guard-mail-query.test.js": "sha256:1651c553a431173b47bee9801ee68dcb2d120015d6f5fc4442d0ee31f85b1998",
|
|
2760
2926
|
"test/layer-0-primitives/guard-mail-reply.test.js": "sha256:5192a39b96f2c043645edb51fc2a8061ddd9ffc3cbb817c9858b8757e1bb4837",
|
|
2761
2927
|
"test/layer-0-primitives/guard-mail-sieve.test.js": "sha256:a9368689171ec10e60a53e7af56f8ff26ed8b3bf7f8ff86daeede12865d616ab",
|
|
2762
|
-
"test/layer-0-primitives/guard-managesieve-command.test.js": "sha256:
|
|
2763
|
-
"test/layer-0-primitives/guard-markdown.test.js": "sha256:
|
|
2928
|
+
"test/layer-0-primitives/guard-managesieve-command.test.js": "sha256:2509805990139ff2dc4b1b64efbb156a24a5c01921749d58dcc8bc95d9ef164f",
|
|
2929
|
+
"test/layer-0-primitives/guard-markdown.test.js": "sha256:496f9fe22a6f655a887f60d30d7d73e92e05e12b8b0c4c0f7803e2d6686e8651",
|
|
2764
2930
|
"test/layer-0-primitives/guard-message-id.test.js": "sha256:b2c354635591be6efd0b8d4b96a77413d3f92a467f5e70aad078faec1df87896",
|
|
2931
|
+
"test/layer-0-primitives/guard-mime.test.js": "sha256:24e7dc0d526e0e3a28cdd63add7b6127a93eb3ebe84dd6cba23442a92988add0",
|
|
2765
2932
|
"test/layer-0-primitives/guard-oauth-replay-failopen.test.js": "sha256:caff9600831f07b537c98844507ec904f599ccce2186d21d6e86ebfd4ac70fc8",
|
|
2766
|
-
"test/layer-0-primitives/guard-
|
|
2767
|
-
"test/layer-0-primitives/guard-
|
|
2933
|
+
"test/layer-0-primitives/guard-oauth.test.js": "sha256:e9b4276368391f7da0a37a73b3acaba1d32df57521467d223bbeac0b0debc075",
|
|
2934
|
+
"test/layer-0-primitives/guard-pdf.test.js": "sha256:d6abbdf2cab3375241b92d997a345ce02c05c9b350815a56ca153da1823e7c45",
|
|
2935
|
+
"test/layer-0-primitives/guard-pop3-command.test.js": "sha256:2895e1b3f3b3b05595ee8415155542e8426427345f862a81c0b4ea712d094cd5",
|
|
2768
2936
|
"test/layer-0-primitives/guard-posture-chain.test.js": "sha256:199cb1017af86ffbb45bf711fdf42e35a7f768d2607730711c72add80308c708",
|
|
2937
|
+
"test/layer-0-primitives/guard-regex.test.js": "sha256:0d242d2e1c6a429b32cc67a23aefaeb4941190ebbec27fc73e4064c516bdcc45",
|
|
2769
2938
|
"test/layer-0-primitives/guard-saga-config.test.js": "sha256:f35eb034a7b53cb7f3219998d546834cfc2b0c7b6af71a5f6d127e59152f8648",
|
|
2939
|
+
"test/layer-0-primitives/guard-shell.test.js": "sha256:9188e70a335d0ba43c75191d24587993fb232ce9384521d7d9a9b06b72547ae1",
|
|
2770
2940
|
"test/layer-0-primitives/guard-smtp-command.test.js": "sha256:a31c1f379ff873253e165359ad251a6574b8aff532b6c177e0af1c52caca7702",
|
|
2771
2941
|
"test/layer-0-primitives/guard-snapshot-envelope.test.js": "sha256:7fb6a0c76febd6576ca47c0712eb8f2db4305e7000fbee1450f98450a58caae9",
|
|
2772
|
-
"test/layer-0-primitives/guard-sql
|
|
2942
|
+
"test/layer-0-primitives/guard-sql.test.js": "sha256:dc81a30f400a5d852c3c988322732518eb191bae40d2fb11f725482a7bce2358",
|
|
2773
2943
|
"test/layer-0-primitives/guard-stream-args.test.js": "sha256:7c7401b88eccfbd50964d41c826a1f75be3ac3bdb4caa1ac929add180ca01976",
|
|
2774
|
-
"test/layer-0-primitives/guard-svg.test.js": "sha256:
|
|
2944
|
+
"test/layer-0-primitives/guard-svg.test.js": "sha256:abcaebda518ca956f08a58e18da7d840a7fbadc57aad01a1c0c3efb2174106dd",
|
|
2945
|
+
"test/layer-0-primitives/guard-template.test.js": "sha256:f2b9acc930bdf81b302fefd45cf44f594d66cdb38f9fbe323434cbec3d7e5d20",
|
|
2775
2946
|
"test/layer-0-primitives/guard-tenant-id.test.js": "sha256:4083f32ea58e4b350fd6b40e7ada751e4b213ae4a03b85500505863fb72d800a",
|
|
2776
2947
|
"test/layer-0-primitives/guard-text.test.js": "sha256:208f1fa1f4b0f9bcb5ab887ca217536aab41d8bac19f085c1375d21f0b496eab",
|
|
2948
|
+
"test/layer-0-primitives/guard-time.test.js": "sha256:adfd8e3f07b00b7d28aaec5b356a7813368ebda56206b003509c13a5ae52d7e6",
|
|
2777
2949
|
"test/layer-0-primitives/guard-trace-context.test.js": "sha256:fdb9cefb9fa2e650a691ef0d01e470a5c6ebcbb8e47763a61735daf348a5b8f3",
|
|
2950
|
+
"test/layer-0-primitives/guard-uuid.test.js": "sha256:a4678e1005464ffc66a2336b39e488608890aa375322d61e17207de2f71d766d",
|
|
2778
2951
|
"test/layer-0-primitives/guard-xml.test.js": "sha256:252753f67cd724bd4891727f65fd2d6cc4843f44ca7c6a1038aaa3542c3da2f0",
|
|
2779
2952
|
"test/layer-0-primitives/guard-yaml.test.js": "sha256:7f105070f2f97b04d3be5b6f46e0e9b35cdddc4a5a29d89d4f1f6a07c58fe229",
|
|
2780
2953
|
"test/layer-0-primitives/hal.test.js": "sha256:291cfd0bdf92e06c4c2ae1df77ae80bd7b1827bde4dc6735dbfd3d5ecf96e961",
|
|
2781
2954
|
"test/layer-0-primitives/honeytoken.test.js": "sha256:2b018f135bd74b4bf0aab9b44991207e223c0a2d6bb410aebbb20203f9ac3907",
|
|
2782
|
-
"test/layer-0-primitives/html-balance.test.js": "sha256:
|
|
2783
|
-
"test/layer-0-primitives/http-client-cache.test.js": "sha256:
|
|
2955
|
+
"test/layer-0-primitives/html-balance.test.js": "sha256:43a00383c595691b3afe35ff308bb9bf30164febf8c9e84717555b9f21e07fd0",
|
|
2956
|
+
"test/layer-0-primitives/http-client-cache-authorization.test.js": "sha256:9321af82864736db70a3c7c0af92b80ec170e7ac91aeace933ec0468ce8ac2d7",
|
|
2957
|
+
"test/layer-0-primitives/http-client-cache.test.js": "sha256:dbcae12355d18f4a1ebbdea61e4208e0273ab3d8281e18659625c04909c36494",
|
|
2784
2958
|
"test/layer-0-primitives/http-client-stream.test.js": "sha256:c02ad6105fbd596b827ae2b836aae557464239cccc9857fd10d03706a35d2a18",
|
|
2785
2959
|
"test/layer-0-primitives/http-client-throttle-transform.test.js": "sha256:88da06ce40ae3fb6ce90a97a3e8de9f8547abd6ce06919be823a6860b27ad13a",
|
|
2786
|
-
"test/layer-0-primitives/http-
|
|
2787
|
-
"test/layer-0-primitives/
|
|
2788
|
-
"test/layer-0-primitives/i18n.test.js": "sha256:
|
|
2960
|
+
"test/layer-0-primitives/http-client.test.js": "sha256:7740b1d6773690a666157d5c55e5466d595ba83edebda1bf18b8bc8aaada5b92",
|
|
2961
|
+
"test/layer-0-primitives/http-message-signature.test.js": "sha256:bbd5332290befd06220cb7fa144d56207ebed5b41ed21d827b3f562ac11ff434",
|
|
2962
|
+
"test/layer-0-primitives/i18n-messageformat.test.js": "sha256:50ffeb54a0836642b5d2420976f576e7db1bf893eefc0c2e2853ccdcb61f9d9d",
|
|
2963
|
+
"test/layer-0-primitives/i18n.test.js": "sha256:7439a17c0a0c06f40f145a65c16fdd17966694ab3cb3053ae8d23afe98c711a9",
|
|
2789
2964
|
"test/layer-0-primitives/iab-mspa.test.js": "sha256:fdf833b415e1ac69744b47b8511dedb76269362df84389a2683c6c0347663e82",
|
|
2790
2965
|
"test/layer-0-primitives/iab-tcf.test.js": "sha256:f9d4809df20e6f819ef79f9038322bc414b6fb949af9e8de9700fcf0fdb1d289",
|
|
2791
|
-
"test/layer-0-primitives/idempotency-key.test.js": "sha256:
|
|
2966
|
+
"test/layer-0-primitives/idempotency-key.test.js": "sha256:2ab367faead9ca859cd534ca1813b9c61ff5e930179338ab036167afb5fd20bd",
|
|
2792
2967
|
"test/layer-0-primitives/importmap-integrity.test.js": "sha256:7ff11289c2dcc6331598bfdd0330a5623e3beec1d2b2d267896457255b8fccd1",
|
|
2793
2968
|
"test/layer-0-primitives/inbox.test.js": "sha256:579c11a512cee729f5321bfc3dac4071c2344d0775a11d709fa79a667bef6547",
|
|
2794
2969
|
"test/layer-0-primitives/incident-report.test.js": "sha256:d2544c7734327aedfe41ce480dcd31648251a5b5c79e369091ab98c6260572a1",
|
|
2795
|
-
"test/layer-0-primitives/ip-utils.test.js": "sha256:
|
|
2970
|
+
"test/layer-0-primitives/ip-utils.test.js": "sha256:a57436e5741b70d324565be4c7ecb54bdcfe333eb0bc3169cd0a369b6c85a7ab",
|
|
2796
2971
|
"test/layer-0-primitives/jose-jwe-experimental.test.js": "sha256:935fbf64e68bc9a87c8ba24f792b4aac6a9f4b639c197b1ad6d7bfe524387431",
|
|
2972
|
+
"test/layer-0-primitives/jsdoc-example-execution.test.js": "sha256:fd33beb5c80b54ca3c6e8a166bc4b63425a81da2860d898545dafd47b52644e6",
|
|
2797
2973
|
"test/layer-0-primitives/json-api.test.js": "sha256:c724ee89603f23f6e5a12a1e0fb2387dd2a4dc9748e2549cf4f1e2cf00e42281",
|
|
2798
2974
|
"test/layer-0-primitives/json-merge-patch.test.js": "sha256:42d240a9edbf4eda204cee8418a3751fc14f1b9dd126bdc2a266d14531547c02",
|
|
2799
2975
|
"test/layer-0-primitives/json-patch.test.js": "sha256:2fd12f4d49c7b1f7d95c1d115d8a029b16ee2582143f06eb1464fdcad3c59be8",
|
|
2800
|
-
"test/layer-0-primitives/json-path.test.js": "sha256:
|
|
2976
|
+
"test/layer-0-primitives/json-path.test.js": "sha256:8b30d58a9ce607ce484cf73c52557150bd8556e7a56498a254388b596e71881a",
|
|
2801
2977
|
"test/layer-0-primitives/json-round-trip-helper.test.js": "sha256:adb134741333a150944810e79b268afdae2c03900832a6046f749072a3735e35",
|
|
2802
|
-
"test/layer-0-primitives/json-schema.test.js": "sha256:
|
|
2978
|
+
"test/layer-0-primitives/json-schema.test.js": "sha256:bb5f61aa365fe5c51117112b1f52ca9518d37d670406c4647e1a227a46d78dea",
|
|
2803
2979
|
"test/layer-0-primitives/jtd.test.js": "sha256:96c1cf50c291c7e83e0187e762b26c24fe25cc8e720a5e1556a827591f5d77e3",
|
|
2804
|
-
"test/layer-0-primitives/jwk.test.js": "sha256:
|
|
2805
|
-
"test/layer-0-primitives/jwt-external.test.js": "sha256:
|
|
2806
|
-
"test/layer-0-primitives/keychain-coverage.test.js": "sha256:51fc8b47c7960fe973bc519dd5b37381edb4c1d7c3710a29a48c7534546691fe",
|
|
2980
|
+
"test/layer-0-primitives/jwk.test.js": "sha256:e8c92c158db7afd841f75f2bd21853e956143b0c9ab3da02aabf3e5acf78f5f5",
|
|
2981
|
+
"test/layer-0-primitives/jwt-external.test.js": "sha256:481ad42e506c62445b1c434b81aeaff95f04494e3bef1a1d877d5601ab7638ed",
|
|
2807
2982
|
"test/layer-0-primitives/keychain-failclosed.test.js": "sha256:62acebdcb4811354e8e2ba7a7bb9d98496e4017c781060938c7a763533ce286c",
|
|
2808
|
-
"test/layer-0-primitives/keychain.test.js": "sha256:
|
|
2983
|
+
"test/layer-0-primitives/keychain.test.js": "sha256:723d2e67cebf9134798d19e7ff05772edaa55147be959af6f9a05324e5f6ef97",
|
|
2809
2984
|
"test/layer-0-primitives/legal-hold.test.js": "sha256:865d725bed402cbc1642c1e0b3090c122631fd0639d131a75f11d284f4bf96ff",
|
|
2810
2985
|
"test/layer-0-primitives/link-header.test.js": "sha256:223ac3d6d988a658918bfbe72d60b528ffcc25ea3e46ee7f6f2e69da9532d0ab",
|
|
2811
2986
|
"test/layer-0-primitives/local-db-thin.test.js": "sha256:72ddce9410b329ea949897bea51f47f09a730223c515ab765d086c3f69bfd58f",
|
|
2812
2987
|
"test/layer-0-primitives/log-stream-cloudwatch.test.js": "sha256:fc6c498a61541d2af72876f852058d9df7d9c80b5eb92d9d67a92583986d3757",
|
|
2813
2988
|
"test/layer-0-primitives/log-stream-otlp-grpc.test.js": "sha256:63d69a38438ba1325cd324f06adaeb9208efede483c1ec4e6d973b97b76773fc",
|
|
2814
2989
|
"test/layer-0-primitives/log-stream-otlp.test.js": "sha256:1f412f8d103be72cb2bfac760166ac275c5dbe15c36b7b98bf565e179aebe655",
|
|
2990
|
+
"test/layer-0-primitives/log-stream.test.js": "sha256:f575572ab125ec4d4263aff5100a02fc96d523ee01b1e72a17a0672ecdd793d5",
|
|
2991
|
+
"test/layer-0-primitives/log.test.js": "sha256:3d8a5349560a9507ffca6a01198a7c5d0dd9eaea7b19df9843807e355c96c719",
|
|
2815
2992
|
"test/layer-0-primitives/lro.test.js": "sha256:7b5c1d5faae28638affac5f1e19bc8169cb2633b3cc5275fa1f654ed55ea21b8",
|
|
2816
|
-
"test/layer-0-primitives/mail-agent.test.js": "sha256:
|
|
2993
|
+
"test/layer-0-primitives/mail-agent.test.js": "sha256:f253a3a043ccb0b389cb86d62ca45489e956440fcfcd98c931547ea391eddafe",
|
|
2817
2994
|
"test/layer-0-primitives/mail-arf.test.js": "sha256:3b8d9c0d10386398e38e9f6015926492ccb03b5117eb61126cae1a2357546fd0",
|
|
2818
|
-
"test/layer-0-primitives/mail-auth-coverage.test.js": "sha256:e4ec486f81bd44e026ac793c46886f9a00a68f669d9ad8cf7708217727f2180a",
|
|
2819
2995
|
"test/layer-0-primitives/mail-auth-dmarc-policy-failclosed.test.js": "sha256:8b2e66406ce204b3e19ada28588a1d40f8a6eb9a7a7571d8ed12ef2a564ae8ba",
|
|
2820
2996
|
"test/layer-0-primitives/mail-auth-failclosed.test.js": "sha256:9d1b1d0b8db1ab7d1182da164d4c47f48a3343be0825820b2b372ad9e1fbd491",
|
|
2821
|
-
"test/layer-0-primitives/mail-auth.test.js": "sha256:
|
|
2997
|
+
"test/layer-0-primitives/mail-auth.test.js": "sha256:7fd65994206ff23929421863f907de6fd113df7cca57105d328eca5fe442228c",
|
|
2822
2998
|
"test/layer-0-primitives/mail-bimi-cert-validity-unparseable.test.js": "sha256:9cbaa4ac94a0ffd4216400cd862472cde244d935c62ce363854c1b3fa8d21f68",
|
|
2823
|
-
"test/layer-0-primitives/mail-bimi.test.js": "sha256:
|
|
2824
|
-
"test/layer-0-primitives/mail-bounce.test.js": "sha256:
|
|
2999
|
+
"test/layer-0-primitives/mail-bimi.test.js": "sha256:8fea9178f20db6f92e41294d2cd4191c1e4defdf02503890dd24102ea32833cc",
|
|
3000
|
+
"test/layer-0-primitives/mail-bounce.test.js": "sha256:086c590eb9f70919e3c4b56576e796367f469202ff4025c02ee2d6bd0c613ca4",
|
|
2825
3001
|
"test/layer-0-primitives/mail-canspam.test.js": "sha256:7a2778ca996420b541b95854e889f630bee4f6b7a6d7ff3d54aac57d02d84443",
|
|
2826
|
-
"test/layer-0-primitives/mail-crypto-pgp-experimental.test.js": "sha256:
|
|
2827
|
-
"test/layer-0-primitives/mail-crypto-pgp.test.js": "sha256:
|
|
3002
|
+
"test/layer-0-primitives/mail-crypto-pgp-experimental.test.js": "sha256:fc37ef8e1be1af61185736237a280699f5db1c78adb522f152cd59d9b8b61588",
|
|
3003
|
+
"test/layer-0-primitives/mail-crypto-pgp.test.js": "sha256:e21d4fa53221d5deda94a34c644d22d491ef6d063e4a1c0b58c620b20275673a",
|
|
2828
3004
|
"test/layer-0-primitives/mail-crypto-smime-bad-validity.test.js": "sha256:5830992fc8c5fafe7f0f97366911fce43fa0917414bddecf60bb43f3e8ff7565",
|
|
2829
|
-
"test/layer-0-primitives/mail-crypto-smime.test.js": "sha256:
|
|
2830
|
-
"test/layer-0-primitives/mail-
|
|
3005
|
+
"test/layer-0-primitives/mail-crypto-smime.test.js": "sha256:96debf92dac8678d08ba28da7bdb6f04907d80e011434a4fa886f599bc7dac56",
|
|
3006
|
+
"test/layer-0-primitives/mail-crypto.test.js": "sha256:a22e6666f8c2495571b47001ad2e83cc97362490bcf179b7a7a70d011f78de15",
|
|
3007
|
+
"test/layer-0-primitives/mail-dav.test.js": "sha256:ea05b1af63be687e5cdd5edbe358c8e4ba39bf21e9db127d74aa9825983498b1",
|
|
2831
3008
|
"test/layer-0-primitives/mail-deploy-tlsrpt.test.js": "sha256:68239d9c1f4ff948e90a265923b9ae1527c9cddd2abbd0a5dce9274ea1163b20",
|
|
2832
|
-
"test/layer-0-primitives/mail-deploy.test.js": "sha256:
|
|
3009
|
+
"test/layer-0-primitives/mail-deploy.test.js": "sha256:5454175177456d091c8c6520127563fdab3a22b252438044a829cf4dd470258d",
|
|
2833
3010
|
"test/layer-0-primitives/mail-dkim-numericdate-failclosed.test.js": "sha256:48d59043eea8ea936af533888ee1053acdc22e39908860bf8f3c23d2dc008999",
|
|
2834
|
-
"test/layer-0-primitives/mail-dkim.test.js": "sha256:
|
|
3011
|
+
"test/layer-0-primitives/mail-dkim.test.js": "sha256:a7db3d152b3d137c403d96ed85e9a4959335d8110c7719337fe057997e7b0fbd",
|
|
2835
3012
|
"test/layer-0-primitives/mail-feedback-id.test.js": "sha256:80da5f3fbef89c812c5dbe556ff0aa675292548469f7e8aa64cdc7c278e9f16c",
|
|
2836
3013
|
"test/layer-0-primitives/mail-greylist.test.js": "sha256:0948a28b6b85a3b8cf89bd7274653e930ef9bb15c6c88cf2c0f3a9d09cfd3eaf",
|
|
2837
3014
|
"test/layer-0-primitives/mail-header-injection.test.js": "sha256:2ab09b66c3633f1f0a9a8db961c8cdfb09ad73259fad105e09415407b6e994f7",
|
|
2838
|
-
"test/layer-0-primitives/mail-helo.test.js": "sha256:
|
|
3015
|
+
"test/layer-0-primitives/mail-helo.test.js": "sha256:2ea150c61dbc22b6552e844ecbfdf65c5a1cb01e5ca97d640707e4afe78cd53e",
|
|
2839
3016
|
"test/layer-0-primitives/mail-journal.test.js": "sha256:e05b2f055f4aa6d7daca7a0afe2b03db643ba4cead1cf9ae4a35095549f75ff6",
|
|
2840
3017
|
"test/layer-0-primitives/mail-mdn.test.js": "sha256:70d825f1d0d59a609953018be0d9a6e93c784ff1ede8b562f21abe54c4d67d16",
|
|
2841
3018
|
"test/layer-0-primitives/mail-proxy-framing-bounds.test.js": "sha256:704ecbd4572fea1264314b03aa5522a8f752966aed2336201fa98df0845faaf7",
|
|
2842
3019
|
"test/layer-0-primitives/mail-rbl.test.js": "sha256:afb3636a34f87b826b8a064e68e1f6c7c1bb52df068ca4248b55f1db8ea984eb",
|
|
2843
3020
|
"test/layer-0-primitives/mail-require-tls.test.js": "sha256:10b7fb8b564ca2f0c03104c0cd2392fc6706dbf9d007b8e322afcd36333dd9d1",
|
|
2844
|
-
"test/layer-0-primitives/mail-scan.test.js": "sha256:
|
|
2845
|
-
"test/layer-0-primitives/mail-send-deliver.test.js": "sha256:
|
|
2846
|
-
"test/layer-0-primitives/mail-server-imap.test.js": "sha256:
|
|
2847
|
-
"test/layer-0-primitives/mail-server-jmap.test.js": "sha256:
|
|
2848
|
-
"test/layer-0-primitives/mail-server-managesieve.test.js": "sha256:
|
|
2849
|
-
"test/layer-0-primitives/mail-server-mx.test.js": "sha256:
|
|
2850
|
-
"test/layer-0-primitives/mail-server-pop3.test.js": "sha256:
|
|
2851
|
-
"test/layer-0-primitives/mail-server-rate-limit.test.js": "sha256:
|
|
2852
|
-
"test/layer-0-primitives/mail-server-registry.test.js": "sha256:
|
|
2853
|
-
"test/layer-0-primitives/mail-server-submission.test.js": "sha256:
|
|
3021
|
+
"test/layer-0-primitives/mail-scan.test.js": "sha256:f981bf7d5dd63c6115d9d101f19ff8997a2cd0929b9b034bf67937aeadbd57a9",
|
|
3022
|
+
"test/layer-0-primitives/mail-send-deliver.test.js": "sha256:357366a80db94031f5ec61f87f2f830f9a628883acbd86911ae670a60515ee33",
|
|
3023
|
+
"test/layer-0-primitives/mail-server-imap.test.js": "sha256:60ae2c422bad3a46242043e8af5fc02f42b220a6557d67340cf0213a9bc65094",
|
|
3024
|
+
"test/layer-0-primitives/mail-server-jmap.test.js": "sha256:949c3dee1455e04cfea243cd5b1ed0cfa778062f98d562ba33a27903a621df86",
|
|
3025
|
+
"test/layer-0-primitives/mail-server-managesieve.test.js": "sha256:a10756270c3e153dc4f9f52833e9430e0556029dc3e2bb1053101894f5eb7c7a",
|
|
3026
|
+
"test/layer-0-primitives/mail-server-mx.test.js": "sha256:0d93e5d027e9f5bdbeb9f90c756919ea081cc7bfa74761f500700591958bea4a",
|
|
3027
|
+
"test/layer-0-primitives/mail-server-pop3.test.js": "sha256:4c41d10f7f593be9b655510ba4837791063488e07f4504878749079b2bc838d6",
|
|
3028
|
+
"test/layer-0-primitives/mail-server-rate-limit.test.js": "sha256:546b6f05d6a7a090df9863178ac1a3703c22031b13346e5293e5cef142a0a283",
|
|
3029
|
+
"test/layer-0-primitives/mail-server-registry.test.js": "sha256:90063cfb0edf68c2d39ac38b1f2b3a21a71c51c146329f86cbe827c88f6bcdf6",
|
|
3030
|
+
"test/layer-0-primitives/mail-server-submission.test.js": "sha256:abc67faf4cf992fd4a1973fbfd9eb557a5b5bd283b76d5c369102f5c779d2427",
|
|
2854
3031
|
"test/layer-0-primitives/mail-server-tls.test.js": "sha256:cffba78c163ece363d00e8bf4595a29ee7a13093c2df094d4f4cff1d801d1e52",
|
|
2855
|
-
"test/layer-0-primitives/mail-sieve.test.js": "sha256:
|
|
3032
|
+
"test/layer-0-primitives/mail-sieve.test.js": "sha256:eb063b4e5ebf8da89c010903e30abb5ffeec8e8045497cfdd5d1921387bb8c0d",
|
|
2856
3033
|
"test/layer-0-primitives/mail-spam-score.test.js": "sha256:3fe639d210f0fd5c9322a7358f83ee2ca99ea5906c2af197db88e9e8ec9f7fd4",
|
|
2857
3034
|
"test/layer-0-primitives/mail-srs.test.js": "sha256:9df98064dc6676e8ad7e29c407558315dc2393c219390eabf95fdeeaccea878c",
|
|
2858
|
-
"test/layer-0-primitives/mail-store-fts.test.js": "sha256:
|
|
2859
|
-
"test/layer-0-primitives/mail-store.test.js": "sha256:
|
|
3035
|
+
"test/layer-0-primitives/mail-store-fts.test.js": "sha256:9786d82cf9a1503a7b587c58a2a4329a5ec8e8dd46f8c4da948935cfcb5bc59f",
|
|
3036
|
+
"test/layer-0-primitives/mail-store.test.js": "sha256:747ea311a6c863b59d190a147266e096907df0ef50768e069227a37f292a15fb",
|
|
2860
3037
|
"test/layer-0-primitives/mail-unsubscribe.test.js": "sha256:b745189403f7574e4845c2366a05fcdb9a3fcaf21c6930e2fe53ac94f1d1dec8",
|
|
2861
|
-
"test/layer-0-primitives/mail.test.js": "sha256:
|
|
2862
|
-
"test/layer-0-primitives/mcp-coverage.test.js": "sha256:b27f9f19be15c0f5308d1fe88534bd979d4b84439f1a6ecb117bc085cae4626b",
|
|
3038
|
+
"test/layer-0-primitives/mail.test.js": "sha256:2bcc03a7912eb0227cb4c9572b6c773d002b4011d31505dee80f6d4f9d71bbfe",
|
|
2863
3039
|
"test/layer-0-primitives/mcp-tool-registry.test.js": "sha256:57bc395acf4e7bac1bd4385ba6bf3d749ecee20dacd20b97ae1a6ca7b439a201",
|
|
2864
|
-
"test/layer-0-primitives/mcp.test.js": "sha256:
|
|
3040
|
+
"test/layer-0-primitives/mcp.test.js": "sha256:6477c03bf54a6a1cd43ca3b97977cdc50296c688f6eedd2dc474ba40dc0c9e06",
|
|
2865
3041
|
"test/layer-0-primitives/mdoc.test.js": "sha256:d89818a74820c8729d9c9b6024311468fcc72c3333474a5658f57fa79f514e07",
|
|
2866
|
-
"test/layer-0-primitives/metrics-coverage.test.js": "sha256:1ee32f903567bc9451d7f0257b3fb830a438283e0714c5ee38af37ec5cdeffef",
|
|
2867
3042
|
"test/layer-0-primitives/metrics-shadow-registry.test.js": "sha256:60e3a71c5ec83f83901a9484db09079d1d8e32768538fb953fd3732ce1c15076",
|
|
2868
|
-
"test/layer-0-primitives/metrics-snapshot.test.js": "sha256:
|
|
3043
|
+
"test/layer-0-primitives/metrics-snapshot.test.js": "sha256:4969504f0bf5a0f63c267c2f6c55358329f5c1662249924775ddaa43588e85f3",
|
|
3044
|
+
"test/layer-0-primitives/metrics.test.js": "sha256:fcf3cc3ae1c4476462f913bb4aee055620c852549834b087660c8d84337e623f",
|
|
3045
|
+
"test/layer-0-primitives/middleware-assetlinks.test.js": "sha256:2b79c117d10c757a277f6241bc6654a9e39d6a4072e3cd013129abf26ddadb37",
|
|
3046
|
+
"test/layer-0-primitives/middleware-body-parser.test.js": "sha256:a294f44c425d9b0d7f95fdc548b6efb94b79c4e33937a2dcb6745d3be8bba124",
|
|
3047
|
+
"test/layer-0-primitives/middleware-bot-disclose.test.js": "sha256:9976cbbea4a1ba363c8e275315fc1efd4044979b33edf55ac4f7a890ebcffcd3",
|
|
2869
3048
|
"test/layer-0-primitives/middleware-compose-pipeline.test.js": "sha256:012ccb0976f5fddbc6ef370a7c2dabed7c24a9619e0cfb0ea1532551b40fc0c0",
|
|
2870
|
-
"test/layer-0-primitives/middleware-
|
|
3049
|
+
"test/layer-0-primitives/middleware-cookies.test.js": "sha256:c1ad5fa1e498f8fb07849735dd941803e9b6e536f74884197a60d7a3210ce515",
|
|
3050
|
+
"test/layer-0-primitives/middleware-gpc.test.js": "sha256:8c394350fbe4c1e65795e61be54e8bd5ec288c06bfcf0a290fbdd6d2af10ab8d",
|
|
3051
|
+
"test/layer-0-primitives/middleware-headers.test.js": "sha256:00cc6edfd2beba99686526d35bafdba5e91a05da611eab7f4cbe03cf18ebc854",
|
|
3052
|
+
"test/layer-0-primitives/middleware-host-allowlist.test.js": "sha256:f604a548ec1ea2d74e3f4f06e9890d974429ef4283e455486dd93b8e44831352",
|
|
3053
|
+
"test/layer-0-primitives/middleware-require-content-type.test.js": "sha256:ffe3a7b44b7efc0e8adfe72c69a6c7f8ca8aae792e11ff242573515524d3b9b3",
|
|
3054
|
+
"test/layer-0-primitives/middleware-tus-upload.test.js": "sha256:9e8c25b2bb4ea43c7b65c41db45ac31ca497308117d1fd696f85cc2e275278d1",
|
|
3055
|
+
"test/layer-0-primitives/middleware-web-app-manifest.test.js": "sha256:9d7fcb66538df0075c69742c10fee450ca419d0a4bbc8031e91dd5c710409f3c",
|
|
2871
3056
|
"test/layer-0-primitives/mime-parse.test.js": "sha256:d6d843a250c6dccac9c125668de5cb3885bf043a0c24eb176ab871d9cadbe878",
|
|
2872
3057
|
"test/layer-0-primitives/money.test.js": "sha256:76fb9d1071d72cdf7f26bbd0a69dc5329a5a35f436d52b0a041c30afef602831",
|
|
3058
|
+
"test/layer-0-primitives/mtls-ca-crl-fingerprint-only.test.js": "sha256:e49a6c1ca6e5c1f649b17356bb97b82353f3c53be20ff6b3c5a1e9eda07f8ea7",
|
|
2873
3059
|
"test/layer-0-primitives/mtls-ca-paths.test.js": "sha256:e770ce593b1f7c271be6aea5c4245fbda32ba22b66466c9cff9c35b0886262e9",
|
|
2874
3060
|
"test/layer-0-primitives/mtls-ca-revocation.test.js": "sha256:89927e0edbffcc9e53684c78b756f4203b0b4aaac474aa70620c0e7268088c07",
|
|
2875
3061
|
"test/layer-0-primitives/nel.test.js": "sha256:3241710f7230711d44102f77eac42c581bf7933622d15c2dca9573f0f57eb264",
|
|
@@ -2877,41 +3063,49 @@
|
|
|
2877
3063
|
"test/layer-0-primitives/network-byte-quota.test.js": "sha256:b2ecf0ef1ae882abb4ddc70d5fd3b0f4bcb820e092936efddea9afe541c2754d",
|
|
2878
3064
|
"test/layer-0-primitives/network-dns-lookup-timeout-default.test.js": "sha256:8ed6dfa13679ab32fa21613ee8599740bff25b6f6af80cbbc57753b1f0813e24",
|
|
2879
3065
|
"test/layer-0-primitives/network-dns-resolver-timeout.test.js": "sha256:45bbb3d4e382da05c2c3ba3bce3ad6d457de9be49f8bc57f6b93519a3f501e1b",
|
|
2880
|
-
"test/layer-0-primitives/network-dns-resolver.test.js": "sha256:
|
|
2881
|
-
"test/layer-0-primitives/network-dns.test.js": "sha256:
|
|
3066
|
+
"test/layer-0-primitives/network-dns-resolver.test.js": "sha256:e45f235366d56cfb89b8c0e541dbb7e239af81e1383388e022f9416df67aae9a",
|
|
3067
|
+
"test/layer-0-primitives/network-dns.test.js": "sha256:3b12ec9daab19cabb50d6eeeaf3043b82231c19cef1e73a5fdfdd0101f5b1559",
|
|
2882
3068
|
"test/layer-0-primitives/network-heartbeat-passive.test.js": "sha256:c105c8cf4b6263ec7259bfecac136212c5255b8b0daba33c2d8eff43f060d863",
|
|
2883
3069
|
"test/layer-0-primitives/network-nts-handshake-byte-cap.test.js": "sha256:de831f3909d40864d97c0422c367f458c559b676910b8693b4a2d92e186bb928",
|
|
2884
|
-
"test/layer-0-primitives/network-
|
|
3070
|
+
"test/layer-0-primitives/network-nts.test.js": "sha256:412de1fde33c84e5d05ca16c70138cef7e360e1d5378944c36ee4a30703e6554",
|
|
3071
|
+
"test/layer-0-primitives/network-smtp-policy.test.js": "sha256:6eeb99124ac49612b144ab0891b7ff388956fce01c749e464ce879a06dcf301d",
|
|
2885
3072
|
"test/layer-0-primitives/network-tls-build-options.test.js": "sha256:deb9d9b8eb89dc5cc86027e2ee70df5aaed796e7ad9faacdd0468e61e7ea587d",
|
|
2886
3073
|
"test/layer-0-primitives/network-tls-ct-inclusion.test.js": "sha256:f97c344ae11ca779781adbd5a397e3bba6ad193cfd427b2da344728a804a746d",
|
|
2887
|
-
"test/layer-0-primitives/network-tls.test.js": "sha256:
|
|
3074
|
+
"test/layer-0-primitives/network-tls.test.js": "sha256:765c05333097e45990cde3fc69e27285151be3e5d886d00a0c3f6721d8369081",
|
|
2888
3075
|
"test/layer-0-primitives/network-tsig.test.js": "sha256:9e4b051cdd85f48d03644613bafd880dd995470fdbe00a14358c7b01722bc953",
|
|
2889
|
-
"test/layer-0-primitives/network.test.js": "sha256:
|
|
3076
|
+
"test/layer-0-primitives/network.test.js": "sha256:673430592eed30e4c9d3dfe9a3bcaa6c5bf10334e220004e675969f5976944dc",
|
|
2890
3077
|
"test/layer-0-primitives/nis2-report.test.js": "sha256:27a451351b77a473760dbc20d51134336131014dcef0ac6a4b0fbc0e3c736217",
|
|
2891
3078
|
"test/layer-0-primitives/nist-crosswalk.test.js": "sha256:27deb2e6ceb66fa89c0aac1c363cea693945dd0385bd874790b260c5d0ff856f",
|
|
2892
3079
|
"test/layer-0-primitives/no-cache.test.js": "sha256:263f5e741122f8784f26a986fb912dbb62e1727129a6fa64ecc9e71da47bd6fe",
|
|
3080
|
+
"test/layer-0-primitives/nonce-store-enforce-replay-nonboolean.test.js": "sha256:7c0036deaf470901430570052b206122578bf8a86893d3276affb07a407aa7ff",
|
|
2893
3081
|
"test/layer-0-primitives/nonce-store-release.test.js": "sha256:2a4d455ee66bf6d26c9e371f34dd097e7fc1df34bddd2bb8febb18606858efc5",
|
|
2894
3082
|
"test/layer-0-primitives/notify.test.js": "sha256:5f74daba922ea528d4db30dadeb984a4c19ad7e64e1eaa5ed16e2b2431f24ba5",
|
|
3083
|
+
"test/layer-0-primitives/ntp-check.test.js": "sha256:b73160781da1788b0bbb01a1b3e609972628e27ba0b6b662b114de60f8b105e8",
|
|
2895
3084
|
"test/layer-0-primitives/numeric-bounds.test.js": "sha256:ae4c99a735f3e38a13c835b16b603eb719b8651bf6172f37ff8bc052bfa28ec2",
|
|
2896
3085
|
"test/layer-0-primitives/oauth-callback.test.js": "sha256:a5b4f9a8dbed8d160b951ae69436ee984cd67e79700126011a1b6c8fa9db08ea",
|
|
2897
3086
|
"test/layer-0-primitives/object-store-range-header.test.js": "sha256:b2074328a08397f78b7ee5d1ba9aa952d7fa0ae287abfdc97034de1680a380b3",
|
|
2898
3087
|
"test/layer-0-primitives/object-store-versioned-delete.test.js": "sha256:b15d24b07a6bb628737c18f4a241869b1fe311fa6ce35a0a80b9d11255253436",
|
|
2899
|
-
"test/layer-0-primitives/observability-tracing.test.js": "sha256:
|
|
2900
|
-
"test/layer-0-primitives/observability.test.js": "sha256:
|
|
3088
|
+
"test/layer-0-primitives/observability-tracing.test.js": "sha256:41d7c9cdb1885cd98543ac12881a338940ac17fae8812afc231ea9631664d908",
|
|
3089
|
+
"test/layer-0-primitives/observability.test.js": "sha256:fa9cc2588e7ade44cde09e20d4c3f1ea4434f5e90a345ba1f9a1059130e3a0ab",
|
|
3090
|
+
"test/layer-0-primitives/oid4vci.test.js": "sha256:7253149b74ade85f84c52aeb13b5576a685297cfcf4ddb11260231b2e4784930",
|
|
2901
3091
|
"test/layer-0-primitives/openapi.test.js": "sha256:f15cbb6ed0003a92faebc5c97df6469668f7af30f463b2d27a1bc16e2144a4da",
|
|
3092
|
+
"test/layer-0-primitives/openid-federation.test.js": "sha256:d9fc9eb2fb80b983d5fe18f5fe9d37d61fe33d24e445af26b983422c3891744c",
|
|
2902
3093
|
"test/layer-0-primitives/otel-export.test.js": "sha256:a95e039eb72fda437d2c53b7011741355f1fc4ab5a7c3aa061d0638a3989333f",
|
|
2903
3094
|
"test/layer-0-primitives/otlp-attr-redaction.test.js": "sha256:9fbb516d889a6faadf61be1934e706ced71f0bf3e813cf1fc9732bd3cd6ef7a4",
|
|
2904
3095
|
"test/layer-0-primitives/outbox-inflight-reaper.test.js": "sha256:369d85d061c280c86c1087749b38ad98d889a1c9b975f7441c6f5ee9851024da",
|
|
3096
|
+
"test/layer-0-primitives/outbox.test.js": "sha256:5f5402e40d4fe2292188b11c5adb139944f2dd1f4ea46f2159d23b38db3b4559",
|
|
2905
3097
|
"test/layer-0-primitives/output-header-hardening.test.js": "sha256:3c31c56bb1ac63783c40832cf35d0748c801ad7a74e385fc8d46f63ad2907206",
|
|
3098
|
+
"test/layer-0-primitives/own-property-membership-guards.test.js": "sha256:f786f10105aa870db1edb1876d59f6f70d0186bdefd51153645dad25af66e05d",
|
|
2906
3099
|
"test/layer-0-primitives/pagination.test.js": "sha256:19364aa49ce2808b5ab20cc16d59ffe6dc41a2d05ff868cdd83b076f0adb7793",
|
|
2907
3100
|
"test/layer-0-primitives/parser-verify-hardening.test.js": "sha256:cba2f34efc631efe95c5cc10ffb8af75d4fbd7f8586520149cf6f05b96bede19",
|
|
2908
|
-
"test/layer-0-primitives/parsers-safe-
|
|
2909
|
-
"test/layer-0-primitives/parsers-
|
|
3101
|
+
"test/layer-0-primitives/parsers-safe-toml.test.js": "sha256:3ae1f3681821cc08eb3f9a9b55dac4a99aea36357189f6363354cd2c0771aa8a",
|
|
3102
|
+
"test/layer-0-primitives/parsers-safe-yaml.test.js": "sha256:ff711c84e2b8f435fb40abb27908ff3c063b95f867966096b18774a54b1e1755",
|
|
3103
|
+
"test/layer-0-primitives/parsers-standalone.test.js": "sha256:dc7444385f20d274427b1a78ed9c77163534eb7d523401374bcce6114135bbf5",
|
|
2910
3104
|
"test/layer-0-primitives/passkey-real-vectors.test.js": "sha256:5ac058d841807fe15a9d44f823e6cfbcf028efbedd14c3cc7e902eb5e31aaa92",
|
|
2911
|
-
"test/layer-0-primitives/passkey.test.js": "sha256:
|
|
2912
|
-
"test/layer-0-primitives/permissions.test.js": "sha256:
|
|
3105
|
+
"test/layer-0-primitives/passkey.test.js": "sha256:a37de9e7436d6ed27f977a26da0567bfc4ea392f6d283d4065f74992bd0968dc",
|
|
3106
|
+
"test/layer-0-primitives/permissions.test.js": "sha256:37dbce32d1ec86f2cfc843d3b3dd498c5e526629a558c6bd55d002a2c434dd54",
|
|
2913
3107
|
"test/layer-0-primitives/pipl-cn.test.js": "sha256:756330e4d934a46114e2e18c677c15d4ac9d0f91b845e85b181e782ad89bbdaf",
|
|
2914
|
-
"test/layer-0-primitives/pqc-agent-curve.test.js": "sha256:
|
|
3108
|
+
"test/layer-0-primitives/pqc-agent-curve.test.js": "sha256:722f24f6b574d20467b69e4b386dd056fd67b0bc7fa73f740250c208d9bd9118",
|
|
2915
3109
|
"test/layer-0-primitives/pqc-software.test.js": "sha256:767cb337f0124e431ce34bab5464408a7372f961e379857df652e8118078518a",
|
|
2916
3110
|
"test/layer-0-primitives/privacy-pass.test.js": "sha256:7c9cf24629c4c5973144ce5cb91ff91162338e1a3013b092f3a6a8d9749e4e09",
|
|
2917
3111
|
"test/layer-0-primitives/privacy-vendor-review.test.js": "sha256:06a3d6179eac0b8ba20e91709b29c39d6625799872c1e221373a6e2f4aeff171",
|
|
@@ -2923,55 +3117,69 @@
|
|
|
2923
3117
|
"test/layer-0-primitives/protobuf-encoder.test.js": "sha256:bea7acc0c6d1a3755ab98251a4332faa1e381c9c4028f348afe3425ba240a5eb",
|
|
2924
3118
|
"test/layer-0-primitives/protocol-dispatcher.test.js": "sha256:3d83e19222b784357849776b457d770a7825f2558e68a3bc41919ca4abf5e8c2",
|
|
2925
3119
|
"test/layer-0-primitives/public-suffix.test.js": "sha256:126ce803bd5e3de9bea06bbedd99656b3abf574e37b42bba10b555ac59d190bc",
|
|
2926
|
-
"test/layer-0-primitives/pubsub.test.js": "sha256:
|
|
3120
|
+
"test/layer-0-primitives/pubsub.test.js": "sha256:30996a50b014e3d80d46887082a3c4ef851ab08a72a1369f599f2245c8efdf13",
|
|
2927
3121
|
"test/layer-0-primitives/queue-byo-db.test.js": "sha256:bb9fe175f9dcf57a3fe7880b2fb336d856b444e62b107de6081649ff1a6ad0fb",
|
|
2928
3122
|
"test/layer-0-primitives/queue-dlq-extend-lease.test.js": "sha256:e60059776d56180bf73c1468faba8abff69f655da0975085ffca8806fb968790",
|
|
2929
|
-
"test/layer-0-primitives/queue-flow-repeat.test.js": "sha256:
|
|
3123
|
+
"test/layer-0-primitives/queue-flow-repeat.test.js": "sha256:ff6f15da1c80c0c1dcf22379f98f5065478bc263b05db079fd77bef578da886f",
|
|
2930
3124
|
"test/layer-0-primitives/queue-priority-rate-progress.test.js": "sha256:3aa3a74022410f9f5695a3dca851d9ef85c46ff25e775b09ca1003759346999b",
|
|
2931
3125
|
"test/layer-0-primitives/queue-sqs.test.js": "sha256:924103312f9a88351e7c30b1833a44bd94642057386f94e4e4edaa9758b9bef4",
|
|
3126
|
+
"test/layer-0-primitives/queue.test.js": "sha256:62a97663e11fc0619b77a65e3dc271f3c0f9e0ca31eced9fd82fa7466180e2a4",
|
|
2932
3127
|
"test/layer-0-primitives/rate-limit-cluster.test.js": "sha256:f8570d311a7652bc2c7118b397a102a9e18624f1d9e4cc9db4edfec36d13c1df",
|
|
2933
3128
|
"test/layer-0-primitives/rate-limit-memory-getorinsert.test.js": "sha256:8ad939bfdeecd1a8ed86f3354a86067979d773891430c7dd1d094985fc1e1f70",
|
|
2934
3129
|
"test/layer-0-primitives/rate-limit-registry.test.js": "sha256:a88efd526f6689a0a248ea496c97c72a3b18c351887b9d110d8162b4d7c8ea75",
|
|
2935
|
-
"test/layer-0-primitives/rate-limit-xff-spoofing.test.js": "sha256:
|
|
3130
|
+
"test/layer-0-primitives/rate-limit-xff-spoofing.test.js": "sha256:73c9f8f2699fc1ddd8175eaba1c9c270c53d0efe16f8bf4cd9301797de8acbf4",
|
|
2936
3131
|
"test/layer-0-primitives/redact-dlp.test.js": "sha256:f9ea6dfce638eb3a5311d127f3eaf2d532b1095f029cb05851d654bada5a3139",
|
|
3132
|
+
"test/layer-0-primitives/redact.test.js": "sha256:dfe7e4be6323ef4e6751afa0a419c07825349ff6d47e6265387af2ad5094e86f",
|
|
2937
3133
|
"test/layer-0-primitives/redis-client.test.js": "sha256:3493555a9444631c46528977831f65d359a7965093aabf6e1a02dcb9a8160e26",
|
|
2938
|
-
"test/layer-0-primitives/request-helpers.test.js": "sha256:
|
|
3134
|
+
"test/layer-0-primitives/request-helpers.test.js": "sha256:27b9350fee26274419c6667c517db2d7072dfbe8375eb835bfb1216910ab191e",
|
|
2939
3135
|
"test/layer-0-primitives/request-id-async-context.test.js": "sha256:0b0c86c1112afd588c003c15b136a6928679cba5151a0aa1db27ea8256757ccd",
|
|
2940
3136
|
"test/layer-0-primitives/request-log.test.js": "sha256:255c914ca600e170bb7e10571b12d59a04a85bb36302750289127bb957f25772",
|
|
2941
3137
|
"test/layer-0-primitives/require-auth-cache-control.test.js": "sha256:1b9b5aac0ad2bf1293d2cd02b109187e0564999cc812d2d7d0109da9e316ea00",
|
|
3138
|
+
"test/layer-0-primitives/require-bound-key.test.js": "sha256:4f76c3ba3aeab285c815f9eb3a7b177f6ca9ff578aafff99599ad70cdcc5d57f",
|
|
2942
3139
|
"test/layer-0-primitives/require-mtls.test.js": "sha256:6504404fc1e6c2db66de16a7a2e9c4858693928e0eaada2af75e31c633b74a3c",
|
|
2943
3140
|
"test/layer-0-primitives/resource-access-lock.test.js": "sha256:e3efe5f57c699d9e4d9deaaaf275f4b958b765051959035ef98aa9ebb660dc4d",
|
|
2944
3141
|
"test/layer-0-primitives/restore-blob-remap.test.js": "sha256:e8aa03ccfb9bc3d532cfd2ca5af3fc747f411bc9876b1e00fbbb94066854219b",
|
|
3142
|
+
"test/layer-0-primitives/restore-empty-manifest-wipe.test.js": "sha256:c372e0ba5d039ad48d0758eac3f247c365f6686d5e98be9d6de9179afd316e8d",
|
|
2945
3143
|
"test/layer-0-primitives/retention-dryrun-no-vacuum.test.js": "sha256:3c6419a672568d653cb0e9db4f7fe5aadeee8be54fce7e1695da1f23559deb2c",
|
|
2946
3144
|
"test/layer-0-primitives/retention-floor.test.js": "sha256:e4117d4022cdf3b1ffd17d65f83ab220763ef57753993113d8ee5068b7c5ebca",
|
|
2947
3145
|
"test/layer-0-primitives/retention-sweep-termination.test.js": "sha256:c67cd649ddb1f7b6220926c88812e500aaf11069de209ab187f7be96f43b3be6",
|
|
3146
|
+
"test/layer-0-primitives/retention.test.js": "sha256:5c605ffc90576d13536974b2a76483735ef51e2fea17a46b15ef113e2647c2d4",
|
|
2948
3147
|
"test/layer-0-primitives/retry.test.js": "sha256:2608da136ecc783324702982be9ebc00159e89e996d5186a1e184beb15ce5657",
|
|
2949
3148
|
"test/layer-0-primitives/router-body-validation.test.js": "sha256:e98b3da1e4098cb15096235521ac54d2675c62585173abee05e7f0d4ab68f113",
|
|
2950
|
-
"test/layer-0-primitives/router-coverage.test.js": "sha256:e29c5cbfa7f569f0ed1bedaa8a41b4fa54721cf6bac02a038474b2ac4662dc26",
|
|
2951
3149
|
"test/layer-0-primitives/router-cross-origin-redirect.test.js": "sha256:dc2c931d3d3311693d120d16aa68c8a2afd33bf4e977abe6b5f6c247c2f3ee8f",
|
|
2952
3150
|
"test/layer-0-primitives/router-failclosed.test.js": "sha256:134eaa4ae69d0c968f38a9781acc92714e849c6bed7f7d0c39d7df42f74f48b3",
|
|
2953
|
-
"test/layer-0-primitives/router-
|
|
3151
|
+
"test/layer-0-primitives/router-host-path-injection.test.js": "sha256:775bfc14ce39fad5eaf04735b124399a8ad347b47c395701c2f36221d4424bb4",
|
|
3152
|
+
"test/layer-0-primitives/router-tls0rtt.test.js": "sha256:441e3e2cf495e05c5a7f04a1dab9cb8f019b5360d382be986174866f7c3a9d35",
|
|
2954
3153
|
"test/layer-0-primitives/router-use-path-scope.test.js": "sha256:b12512618ca1fb69516bd4b954d19f994bc33e02cc0c880ed3cb9d33eb855b49",
|
|
3154
|
+
"test/layer-0-primitives/router.test.js": "sha256:55e702aecc7dcd94db2fdd4d14a6625ff35f0a7ec825137b7824b3c83ea32002",
|
|
2955
3155
|
"test/layer-0-primitives/safe-archive-auto-unwrap.test.js": "sha256:5eb5f53d0ebab0e19e3ef2fd98cf34d46e14e101b5ccaf5b50cd1e956ac31feb",
|
|
2956
3156
|
"test/layer-0-primitives/safe-archive-inspect-unwrap.test.js": "sha256:a65f0de7d563b30c1de955d304dbdf292db0f13e7ef0ec303f0f842ad32d1507",
|
|
2957
3157
|
"test/layer-0-primitives/safe-async-loops.test.js": "sha256:8ecd2ecfe668fe96fa2230289d8b2974d22328371d4d709920190ade35a0f107",
|
|
2958
3158
|
"test/layer-0-primitives/safe-async-parallel.test.js": "sha256:6e9d0d86a090f20ebf72717c63e2777d58e90aa09ff9df9e42e6e8c13fe89114",
|
|
2959
|
-
"test/layer-0-primitives/safe-
|
|
2960
|
-
"test/layer-0-primitives/safe-
|
|
2961
|
-
"test/layer-0-primitives/safe-
|
|
2962
|
-
"test/layer-0-primitives/safe-
|
|
3159
|
+
"test/layer-0-primitives/safe-async.test.js": "sha256:c395fc08cfe8354068a77007bff983d393e9ec094384f2e363fa72a043e9cb7f",
|
|
3160
|
+
"test/layer-0-primitives/safe-buffer-linear-scans.test.js": "sha256:54aaf2e9eb19ec329b74c6495ff0600e46e39a8ee28721318492b4128fc1a6c1",
|
|
3161
|
+
"test/layer-0-primitives/safe-buffer.test.js": "sha256:7c0ddcdd17b3740b6281bb0e5fbbe958f47598b211bd5728955f8f9aaf0a324b",
|
|
3162
|
+
"test/layer-0-primitives/safe-decompress.test.js": "sha256:bd26d1873a34470a72b14db0e1003b4768838fb8c754775e7f2d96080225e4e4",
|
|
3163
|
+
"test/layer-0-primitives/safe-dns.test.js": "sha256:a0d53ab08b60c99ae2574f300c720f8da6b70d829930c8659b88c7a02555703f",
|
|
3164
|
+
"test/layer-0-primitives/safe-ical.test.js": "sha256:cebad2ecf5c3d51cc6faeef4ab686c791505b4c4bced75723e8452f5771b99ce",
|
|
2963
3165
|
"test/layer-0-primitives/safe-icap.test.js": "sha256:83a8323f3be4a9e695738b4cf19fcd72defefd8a8d17d3be5b27a84d967a8ef6",
|
|
3166
|
+
"test/layer-0-primitives/safe-ini.test.js": "sha256:0546720962ed9520fec849e9420c173e1a67afa89101fb722af57e9fff7a4401",
|
|
2964
3167
|
"test/layer-0-primitives/safe-json-stringify-for-script.test.js": "sha256:5134bd8bc2d9a1b34e2f009a29348fcf6f12ec75a954c2f6e6425c85c1101693",
|
|
3168
|
+
"test/layer-0-primitives/safe-json.test.js": "sha256:6667af2f13266dcdba6b0a7e8487aca114eda4f847c22bd935ad0f489437d5c6",
|
|
2965
3169
|
"test/layer-0-primitives/safe-jsonpath.test.js": "sha256:5aaabae72f5566808ee1e915fc47f2d2c74857a7872f70bb9603ce716ccad622",
|
|
2966
|
-
"test/layer-0-primitives/safe-mime.test.js": "sha256:
|
|
3170
|
+
"test/layer-0-primitives/safe-mime.test.js": "sha256:1ef4d1268d98156ef6cb235273eb80f2a64f8e728853333683b7baf922000187",
|
|
2967
3171
|
"test/layer-0-primitives/safe-mount-info.test.js": "sha256:1b24ce56ba3e8c514722d5a8cd3e3f2d9fb59949bcf9d085d9daf6a1a99af46f",
|
|
2968
|
-
"test/layer-0-primitives/safe-
|
|
3172
|
+
"test/layer-0-primitives/safe-object.test.js": "sha256:9f298c62e9795892b99e736222ebc153903d224131db4a2d6cd6449fe48fc820",
|
|
3173
|
+
"test/layer-0-primitives/safe-path.test.js": "sha256:a973bd6d69196d804384509f4790d333b29d8da124c31103c8eb91160f437aa6",
|
|
2969
3174
|
"test/layer-0-primitives/safe-redirect.test.js": "sha256:465d7c055a9c65a66d2394736819dec40f0e625a52ac52f26fa2ce79596e9103",
|
|
3175
|
+
"test/layer-0-primitives/safe-schema.test.js": "sha256:5c889e6dc0e5285520190953466708b9c7ae0df5badf5f235f454ce8ee8150c9",
|
|
2970
3176
|
"test/layer-0-primitives/safe-sieve.test.js": "sha256:a1f6ae79fac36c269f3422728a255eebdfaec34c3eb76e2ea76b9945f53c46db",
|
|
2971
3177
|
"test/layer-0-primitives/safe-smtp.test.js": "sha256:ed849304599ba4239e61f0255907cefd6235afc2e75d4180f2feced668a76432",
|
|
3178
|
+
"test/layer-0-primitives/safe-sql.test.js": "sha256:6406b85302d3f28a92512cb3715f85642758085ba341b346b05ebf698a55ef17",
|
|
2972
3179
|
"test/layer-0-primitives/safe-url-canonicalize.test.js": "sha256:38a1dcdfa9da34d8001eb173341ea55e3e1c3c56f3e3153518e19fa8d3a12e22",
|
|
2973
3180
|
"test/layer-0-primitives/safe-url-idn-homograph.test.js": "sha256:b31952d7e3f6f9929a9d924a1cf95d3f45e95feb74f13ab1077440d31987ebfa",
|
|
2974
|
-
"test/layer-0-primitives/safe-
|
|
3181
|
+
"test/layer-0-primitives/safe-url.test.js": "sha256:a831c1b4a0fe153860d5d535a3c7aa6c33a7963e9eb285ac321251a5e3292e2b",
|
|
3182
|
+
"test/layer-0-primitives/safe-vcard.test.js": "sha256:f57639cc6ccad6322dd73cea4c6aaf8060c0f9c55c10cb75efef7e38a60c8a89",
|
|
2975
3183
|
"test/layer-0-primitives/safe-xml.test.js": "sha256:4c93b25edf9608adff87489563ec6016ce59cc27d01bb23f2117d3a42bb51d83",
|
|
2976
3184
|
"test/layer-0-primitives/saml-mdq-wrapping.test.js": "sha256:b163b58ce72ec0c381ecc5b3ddc58c45af7da150668ef5587f061b2df3f642e0",
|
|
2977
3185
|
"test/layer-0-primitives/saml-slo.test.js": "sha256:72bd32f5487a4bbb8ce9f9b09b27880ae8c3e0d424eb4db5f9b30124674616c1",
|
|
@@ -2980,55 +3188,59 @@
|
|
|
2980
3188
|
"test/layer-0-primitives/sandbox.test.js": "sha256:3cf59f9ea009a83a7edd597cfa8cc00e516d730daeb5a5b8204c0c63a49cd983",
|
|
2981
3189
|
"test/layer-0-primitives/scheduler-exactly-once.test.js": "sha256:c49b497ea8388f2dedbb40f480941e09ca3198b468385b9dd2bc56b6af299c43",
|
|
2982
3190
|
"test/layer-0-primitives/scheduler-watchdog-stale-settle.test.js": "sha256:135fbecb69fd5a1aa0500674001afdc748282fef100f26db65eca61854b381cb",
|
|
2983
|
-
"test/layer-0-primitives/
|
|
3191
|
+
"test/layer-0-primitives/scheduler.test.js": "sha256:9d893df88b73b93a3e78a42c75fd8f9275626feb2618e8537e1902a87231d424",
|
|
3192
|
+
"test/layer-0-primitives/scim-server.test.js": "sha256:56bc5c5f04976341c63ea7728af0569aa73a148202b2e5a7faff9940878e9e9c",
|
|
2984
3193
|
"test/layer-0-primitives/scitt.test.js": "sha256:48f6e39191e4d2fb2003f64a4c85cd3deba4ec8b31c62c8f2e8f59adeda61662",
|
|
2985
3194
|
"test/layer-0-primitives/sd-jwt-vc-ecdsa-p1363.test.js": "sha256:74cf2878ae1eab7cb8337e0e33d34f141fd20673ceb9bff3a7154497ce138c2a",
|
|
2986
|
-
"test/layer-0-primitives/sd-jwt-vc.test.js": "sha256:
|
|
3195
|
+
"test/layer-0-primitives/sd-jwt-vc.test.js": "sha256:076717e9619324caf4e85e1ffbcf45d2e0f72292a2b6f9d2502e4e7e4b92abaf",
|
|
2987
3196
|
"test/layer-0-primitives/sd-notify.test.js": "sha256:f83a915af6bb2a174d520be30db728adca48dac573fbe968b191c70f1740e508",
|
|
2988
3197
|
"test/layer-0-primitives/sec-cyber.test.js": "sha256:3df5d1661c6ddb257b851ba675b4fa590ac342266904c7e1accdc8d6a1da80c5",
|
|
2989
|
-
"test/layer-0-primitives/security-assert.test.js": "sha256:
|
|
3198
|
+
"test/layer-0-primitives/security-assert.test.js": "sha256:b2d9753708ccb8f93859bd3eb2f9dd2c8a15478e79465a6af5ff359f9261f7fb",
|
|
2990
3199
|
"test/layer-0-primitives/security-headers.test.js": "sha256:00429d0bfd741aa066b4baa8b4621706c63025f5270264fc55189a386ce5b3d4",
|
|
2991
3200
|
"test/layer-0-primitives/security-txt.test.js": "sha256:d88ecd5a81ba19a443a563754ff96d3a9cd8b23514de00b024dedad2e54421dd",
|
|
2992
3201
|
"test/layer-0-primitives/seeders.test.js": "sha256:c7b51fdc1d64f1fbab61720712d7a570731d827e371c7e59ae5829d4483a8108",
|
|
2993
3202
|
"test/layer-0-primitives/self-update-poll-asset-digest.test.js": "sha256:7d3352c0e74ddb7a55fb11a48fbbc097a4becf3e8bbc7103db42942de0697ab2",
|
|
2994
3203
|
"test/layer-0-primitives/self-update-standalone-verifier-ecdsa-encoding.test.js": "sha256:53724e1964dd40c94015cc9c83490171faa066892ac0c8452c10abe1bf5e2fba",
|
|
2995
3204
|
"test/layer-0-primitives/self-update-standalone-verifier.test.js": "sha256:2d3b7e759342e0e29afceeaf63b0fe84769776d2844ea210b21c5c691957cf3e",
|
|
2996
|
-
"test/layer-0-primitives/self-update.test.js": "sha256:
|
|
3205
|
+
"test/layer-0-primitives/self-update.test.js": "sha256:e991f612318334d706d4b29610b588036761da2e09d5c2849acad78108cb2a9c",
|
|
2997
3206
|
"test/layer-0-primitives/server-timing.test.js": "sha256:0ad3ed200dd8598bc6d076bfb8ccd9019edac894b72bb3418d62ea6e0975466e",
|
|
2998
3207
|
"test/layer-0-primitives/session-binding-unreadable-failclosed.test.js": "sha256:36797d68a9449fd4f9ba73b3787028aa4c29105ecbfc61f0f98a8d8f659833c4",
|
|
2999
3208
|
"test/layer-0-primitives/session-destroy-all-store-backed.test.js": "sha256:2bacb7729781c4bf727a832cf131ea31e339af2ea7452f19eba959f7b82ad76f",
|
|
3000
3209
|
"test/layer-0-primitives/session-device-binding-ipv6-canonical-and-no-store.test.js": "sha256:ebd090775455803d3d7ec227b0e603afb430cba51b6e7530f640f7cee97a1f40",
|
|
3001
|
-
"test/layer-0-primitives/session-device-binding.test.js": "sha256:
|
|
3210
|
+
"test/layer-0-primitives/session-device-binding.test.js": "sha256:f45f107a906b684530e45c394220ed48fc09b25bbb6c178196aa51080d88a473",
|
|
3002
3211
|
"test/layer-0-primitives/session-extensions.test.js": "sha256:e3d9b7d09ffbb45e1f41fb952fe64ec7ba25545bf0e19643da4bd1f4a4122479",
|
|
3212
|
+
"test/layer-0-primitives/session-strict-binding-missing-failclosed.test.js": "sha256:4bdc34b81e08c07d5007083edafa6f40f52a05b38b185222765a13a66e3f0dbb",
|
|
3003
3213
|
"test/layer-0-primitives/session-valid-from.test.js": "sha256:e2588f9f3b3f643f1bc0d54182740c533f9e3d783bc30b71728ba00c6705a209",
|
|
3004
3214
|
"test/layer-0-primitives/shape-match.test.js": "sha256:dced175c6081bf41d89da69c916a60b7b3dd9739753527aa1cae4bf9ed2079a0",
|
|
3005
|
-
"test/layer-0-primitives/sigv4-bucket-ops.test.js": "sha256:
|
|
3215
|
+
"test/layer-0-primitives/sigv4-bucket-ops.test.js": "sha256:6598cf90b439ba37531d539a696e3dc48364731ddbfef910c909ac3e08b804a8",
|
|
3006
3216
|
"test/layer-0-primitives/sigv4-multipart-sse.test.js": "sha256:21c454d33046367f70b763ff3c886d9bb136b77360d3a650d950f26b7004cd75",
|
|
3007
3217
|
"test/layer-0-primitives/slug.test.js": "sha256:e9b4ecd67a816244940c8da7741db4e13e0f7d0108df9fdb0744258fb0722329",
|
|
3008
3218
|
"test/layer-0-primitives/smtp-policy.test.js": "sha256:18c9e01e80d02449aeabf4d25a4b623c6cdc7eb84c4a7879111ddded3ccc9443",
|
|
3009
3219
|
"test/layer-0-primitives/source-comment-blocks.test.js": "sha256:d2c6db0fb91d4315b598d7ec353fcb2e797fcc14c7f91a894facfa17c5749a9d",
|
|
3010
3220
|
"test/layer-0-primitives/speculation-rules.test.js": "sha256:1810c0010ec7a48c6b2aabf60d96c5a620fbefcef00e9ec8f024a2081efdf568",
|
|
3011
|
-
"test/layer-0-primitives/sql-
|
|
3012
|
-
"test/layer-0-primitives/sql.test.js": "sha256:
|
|
3221
|
+
"test/layer-0-primitives/sql-offset-without-limit.test.js": "sha256:8c2ac6b0c6e4b3a0bfe943d34458d4cb6988fa5ab0d5206e4ccd7c71651728cf",
|
|
3222
|
+
"test/layer-0-primitives/sql.test.js": "sha256:d279bced4709ef4101e484afdadbd8e379e9dbeb81e6f4f45142e196b1ea8877",
|
|
3013
3223
|
"test/layer-0-primitives/sse-backpressure.test.js": "sha256:4d41731598cbfbdf7213f22945aeb671c35d264e14f7b3c2703ab00ad0ac4dfe",
|
|
3014
3224
|
"test/layer-0-primitives/sse.test.js": "sha256:e472133ac0e3de819cd3fc154490c288466f3751317043e412b9fb41e0f096a3",
|
|
3015
|
-
"test/layer-0-primitives/ssrf-guard.test.js": "sha256:
|
|
3225
|
+
"test/layer-0-primitives/ssrf-guard.test.js": "sha256:e7eec8adae39caf009a3fe971de6592e0971ce1cce5743c57ab9c0b1dd5515da",
|
|
3016
3226
|
"test/layer-0-primitives/standard-webhooks.test.js": "sha256:16317799d54cdceea3d92ba3f997c8ba06c6ab4ca7cb79452703b2caa266080f",
|
|
3017
|
-
"test/layer-0-primitives/static.test.js": "sha256:
|
|
3227
|
+
"test/layer-0-primitives/static.test.js": "sha256:0e1c6c211e1abeade176c989d961c37772a5421154b990d48a36ccda4564533a",
|
|
3018
3228
|
"test/layer-0-primitives/step-up.test.js": "sha256:0c557675e665855b2046976c367ea43d9ed8d26b8334f996146f8de7adcc249b",
|
|
3019
3229
|
"test/layer-0-primitives/storage-chunk-scratch.test.js": "sha256:dfee544b3c62e484849eec08883b4d6e67d4d99949432d389218493acc069250",
|
|
3020
|
-
"test/layer-0-primitives/storage-presigned-url.test.js": "sha256:
|
|
3230
|
+
"test/layer-0-primitives/storage-presigned-url.test.js": "sha256:29c0b629c59e278c9888eb641f2fd61524cd39cd42a59d566da40b933773773a",
|
|
3231
|
+
"test/layer-0-primitives/storage.test.js": "sha256:4f64ffb1286cf63f23f51b007462988af7bb9557b60a381360933450b422302c",
|
|
3021
3232
|
"test/layer-0-primitives/stream-throttle.test.js": "sha256:88540c11d74a76f1e7f9914927f43fb5e4e772f0cda8255cb1f18a5316e31232",
|
|
3022
3233
|
"test/layer-0-primitives/structured-fields-codec.test.js": "sha256:8068031e2adf5d01c8c13aa6f7a9fcf73f83d494c22191e9ae0f8c0b60bd8a8b",
|
|
3023
3234
|
"test/layer-0-primitives/structured-fields.test.js": "sha256:117f7709d91bb601f6a0450a649715758fb3dfdde8f1d5b14f1b4d523d9fc077",
|
|
3235
|
+
"test/layer-0-primitives/subject.test.js": "sha256:b185b44346499a9569ad7705e04e1daa18e494e6bf56cace6236e14decb6a563",
|
|
3024
3236
|
"test/layer-0-primitives/tcpa-10dlc.test.js": "sha256:cd5b713bb95d6e6942b75a6e1b598beb77fd13db00f3309df9e9b7fc0f6aef34",
|
|
3025
3237
|
"test/layer-0-primitives/template-escape-html.test.js": "sha256:839d4c8b5e7eb2ba2e7ef28ec7915c606f0c6b3ba884c7bbae7cd1bd0c0a43e7",
|
|
3026
|
-
"test/layer-0-primitives/
|
|
3027
|
-
"test/layer-0-primitives/
|
|
3238
|
+
"test/layer-0-primitives/template.test.js": "sha256:c172ca51a2c33dd6578570a14ad0c5a88fa950caf835d86e3b1976ebbb38f079",
|
|
3239
|
+
"test/layer-0-primitives/tenant-quota.test.js": "sha256:40c3682192916c7fe11bf454e27fc33ee95b8143fa11adcd378b4af42a5d7cac",
|
|
3028
3240
|
"test/layer-0-primitives/test-harness.test.js": "sha256:be5444b56beea8d1823890cab399812005e4d94fa9712954758cc27227a46d88",
|
|
3029
3241
|
"test/layer-0-primitives/testing-request.test.js": "sha256:860f7c46675833a11630218c1d3a7861a1b0b1107ce031e490e2d447f4783b58",
|
|
3030
3242
|
"test/layer-0-primitives/testing.test.js": "sha256:7c061dfcf2b607d9e239980dcbbe8dd97c264b03eec3b419e04aa2428e9c2707",
|
|
3031
|
-
"test/layer-0-primitives/time.test.js": "sha256:
|
|
3243
|
+
"test/layer-0-primitives/time.test.js": "sha256:b81899ed505eef0f44e99ae947710b1825c75043deee0f5c23efb27092d525aa",
|
|
3032
3244
|
"test/layer-0-primitives/tls-exporter.test.js": "sha256:a7914d7a66a1d510fbd25dfbac0e6a7d75a67f46db3ab5146bcba495e8c95d41",
|
|
3033
3245
|
"test/layer-0-primitives/tls-ocsp-ct.test.js": "sha256:187b6e4c6bad3f7e1f687bf3a9142a1dcce7255b1edb2395c088b0cf507807fb",
|
|
3034
3246
|
"test/layer-0-primitives/tls-ocsp-freshness.test.js": "sha256:e0f75f83b739949caadba4f488165ea61bb9a9b9c68c20dedf00342b0176c2a8",
|
|
@@ -3036,38 +3248,42 @@
|
|
|
3036
3248
|
"test/layer-0-primitives/tls-pinset-drift.test.js": "sha256:00e19699e252524c265ffeadf6aa8082872bc1c7de59d891983bdccb61396961",
|
|
3037
3249
|
"test/layer-0-primitives/tls-preferred-groups.test.js": "sha256:f018b1ef8fec576fc4df04918016bbaba199909054593ca7b48328cbe666338c",
|
|
3038
3250
|
"test/layer-0-primitives/tracing.test.js": "sha256:a9066b6b468cfaa2afeaabce2da8ecbc67f61ea8de56cde33020b02da30082f4",
|
|
3039
|
-
"test/layer-0-primitives/tsa.test.js": "sha256:
|
|
3040
|
-
"test/layer-0-primitives/uri-template.test.js": "sha256:
|
|
3251
|
+
"test/layer-0-primitives/tsa.test.js": "sha256:b5b3e063030a09d10648d3be6da5e8746ef4296869734f071971f4baa02879d7",
|
|
3252
|
+
"test/layer-0-primitives/uri-template.test.js": "sha256:d493112dce938a9f909c54a1269a01227fe23cdee2f977d73f12b8ce45209142",
|
|
3041
3253
|
"test/layer-0-primitives/uuid.test.js": "sha256:cc1b63923b5d3177846b58bb22150c66e0f98b4d0eda07926877346bb9187cee",
|
|
3042
3254
|
"test/layer-0-primitives/validate-opts-port.test.js": "sha256:a0d41abaa4cbcdeda9d92b6b521f23a62fccf80c9399a701df411076a8595786",
|
|
3043
3255
|
"test/layer-0-primitives/validate-opts-shape.test.js": "sha256:413a1bffcfac698cf8a213e73da43a6052a6109d74fd515791dd2bc4a6bb7d8b",
|
|
3044
3256
|
"test/layer-0-primitives/vault-aad.test.js": "sha256:97bfd6b981230aced0d6e196b4c7a2d3f4b553c4c7af2db0ae4d40e010db53aa",
|
|
3045
3257
|
"test/layer-0-primitives/vault-default-store.test.js": "sha256:81425523aae4df3862e69771a8ffe09da8e091cdd764dc881a2a2b4c437a5319",
|
|
3046
3258
|
"test/layer-0-primitives/vault-rotate-aad.test.js": "sha256:9b128539ca0e6a243a37a5a549cdb13635825a5f61ac1b8d200c64d4f317b9c7",
|
|
3259
|
+
"test/layer-0-primitives/vault-rotate.test.js": "sha256:38767001fd47fdb54a70719fa52dd95e62e71674144bd2950b2e16eb0c9118b6",
|
|
3047
3260
|
"test/layer-0-primitives/vault-seal-pem-file.test.js": "sha256:4012fa13903a106fe2cfa375e579afbc8f5701dca1ac6f8fea7bfdfe3115f631",
|
|
3048
|
-
"test/layer-0-primitives/
|
|
3261
|
+
"test/layer-0-primitives/vault.test.js": "sha256:5f7a7702fc107848b8dd10d52db52181295b487e01bdbade2ea0c42edc95d811",
|
|
3262
|
+
"test/layer-0-primitives/vc.test.js": "sha256:4b900013c914b747511f6578ecac5c67d0cd38d9a8da8a940de563308d1199c6",
|
|
3049
3263
|
"test/layer-0-primitives/vendor-currency-classify.test.js": "sha256:0626edf59b811351f6ddaaab011d4852b62a894b9f1a291c9c80f97f2ea34ae9",
|
|
3050
3264
|
"test/layer-0-primitives/vendor-data.test.js": "sha256:0c940aed3a9124ad3ddc4b758229934ee173f10a6edec9bd8d897a9394187960",
|
|
3051
3265
|
"test/layer-0-primitives/vendor-manifest.test.js": "sha256:22d9289e1ee6f1e4c99f9fb35d91f83a360f7a0242d3cdc6da02a0f3526b75e1",
|
|
3052
3266
|
"test/layer-0-primitives/vex.test.js": "sha256:9a401b0a94a6532584283195168a1c1434acc0a31d516684ba3f80810114ef14",
|
|
3053
|
-
"test/layer-0-primitives/watcher.test.js": "sha256:
|
|
3267
|
+
"test/layer-0-primitives/watcher.test.js": "sha256:38e3da69dda37f0d04f1911bd461513c5bba8ef75c48a8d40d02e0aa3f9c184b",
|
|
3054
3268
|
"test/layer-0-primitives/web-push-vapid.test.js": "sha256:bd23797fbafeecd8b5d412d2553d460ac9430be9b35928ae169a018da303af7b",
|
|
3055
|
-
"test/layer-0-primitives/webhook-dispatcher.test.js": "sha256:
|
|
3269
|
+
"test/layer-0-primitives/webhook-dispatcher.test.js": "sha256:cba0940d21374237f206769f46eb6a5ec5ef30d44bc12ffd0c56af01366fdea7",
|
|
3056
3270
|
"test/layer-0-primitives/webhook-verify-nonce-atomic.test.js": "sha256:425694ebb92299eda0fa3ced637af18eb73e377009941ca3c8ad6593c32c3643",
|
|
3057
|
-
"test/layer-0-primitives/webhook.test.js": "sha256:
|
|
3271
|
+
"test/layer-0-primitives/webhook.test.js": "sha256:2a60c490a34f0fbb6c89847d1e752b83a39ee07caa7c20791ad9c557c7675847",
|
|
3058
3272
|
"test/layer-0-primitives/websocket-channels.test.js": "sha256:21f36adb69940c0cdcc35b0dff3d69f3f099230cd237e82d6bb951cabebd96a9",
|
|
3059
3273
|
"test/layer-0-primitives/websocket-extension-header.test.js": "sha256:09bc4606ebba3ebe15bd369ad8a4ad3bc363d36ae9585bfd91fb23f10aa9de55",
|
|
3274
|
+
"test/layer-0-primitives/websocket.test.js": "sha256:34e548a45e801ff4b9041840d6164853fb70ab7de02860b6b64a3f56260104e9",
|
|
3060
3275
|
"test/layer-0-primitives/worker-pool-recycle-race.test.js": "sha256:fc4d69db6fb554eb2d9d39ae6f383d825db4de35a1a4f5e0d949babba2b93d7d",
|
|
3061
3276
|
"test/layer-0-primitives/worker-pool.test.js": "sha256:9c229e2e5cfe840c73cfef0448a23015c852fea9d1528f37dd0c64559e3a9bb1",
|
|
3062
3277
|
"test/layer-0-primitives/worm.test.js": "sha256:a227cc7b955f23fed8a059874733ccc09ca4bac7e18155568e4ec006f87ab3cf",
|
|
3063
|
-
"test/layer-0-primitives/ws-client.test.js": "sha256:
|
|
3278
|
+
"test/layer-0-primitives/ws-client.test.js": "sha256:ffc44014f0489c3e9aa425d2a1665a51c7d305960a668934808d4d5d291ed705",
|
|
3064
3279
|
"test/layer-0-primitives/x509-chain-ca-enforcement.test.js": "sha256:d26747d662198d7ef464ca5cd7b862c70231220e3291e27eeb142eb2cd1b9698",
|
|
3280
|
+
"test/layer-0-primitives/xml-c14n-attr-normalization.test.js": "sha256:e4193622dbb59fcea915bf18b487e9a55cec37ab96c337f2f449ecfa4d005610",
|
|
3065
3281
|
"test/layer-1-state/api-key.test.js": "sha256:6427afb26f2164efe2d21b64eb5da0f5b82d74a7ef964aa7f4132eba14f3daa9",
|
|
3066
3282
|
"test/layer-5-integration/bundler-output.test.js": "sha256:4c5dd7726e23cb7a6d8549eb71b0228fcb7cda4a1000c9047136fb9ce4b4651f",
|
|
3067
3283
|
"test/layer-5-integration/external-db-residency.test.js": "sha256:5f6550de1b075ca7f08276197a7862e16b3638166387955f7446c88b3111531c",
|
|
3068
3284
|
"test/layer-5-integration/guard-host-integration.test.js": "sha256:7459e9c4600a4dd67e571dccfed1ce900076fd725dc4f4c0850b00abff38f79e",
|
|
3069
3285
|
"test/layer-5-integration/security-chaos.test.js": "sha256:affcafc281265cfca4767ee129edcc564319470e64cef33262a77f7695cb3c1b",
|
|
3070
|
-
"test/smoke.js": "sha256:
|
|
3286
|
+
"test/smoke.js": "sha256:1afacba4f63f23450f8ef86905f8e90e88a844540796d359cc376e8c60a77e3d"
|
|
3071
3287
|
}
|
|
3072
3288
|
}
|
|
3073
3289
|
}
|