@virtru/dsp-sdk 0.3.1 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.rush/temp/chunked-rush-logs/dsp-sdk._phase_build.chunks.jsonl +9 -20
- package/.rush/temp/chunked-rush-logs/dsp-sdk._phase_test.chunks.jsonl +29 -46
- package/.rush/temp/package-deps__phase_build.json +31 -17
- package/.rush/temp/shrinkwrap-deps.json +925 -131
- package/CHANGELOG.json +28 -0
- package/CHANGELOG.md +15 -1
- package/README.md +10 -0
- package/config/jest.config.json +6 -0
- package/config/rig.json +8 -0
- package/dist/src/gen/config/v1/tagging_pb.d.ts +88 -4
- package/dist/src/gen/config/v1/tagging_pb.js +60 -5
- package/dist/src/gen/policyimportexport/v1/policy_import_export_pb.d.ts +6 -0
- package/dist/src/gen/policyimportexport/v1/policy_import_export_pb.js +2 -1
- package/dist/src/gen/virtru/common/common_pb.d.ts +10 -10
- package/dist/src/gen/virtru/common/common_pb.js +29 -13
- package/dist/src/gen/virtru/policy/certificates/v1/certificates_pb.d.ts +14 -14
- package/dist/src/gen/virtru/policy/certificates/v1/certificates_pb.js +40 -16
- package/dist/src/gen/virtru/policy/objects_pb.d.ts +5 -5
- package/dist/src/gen/virtru/policy/objects_pb.js +26 -12
- package/dist/src/lib/client.js +1 -1
- package/dist/src/lib/utils.js +9 -6
- package/dist/tests/dsp.test.js +1 -4
- package/lib-commonjs/src/gen/buf/validate/validate_pb.js +487 -0
- package/lib-commonjs/src/gen/config/v1/config_pb.js +142 -0
- package/lib-commonjs/src/gen/config/v1/kas_config_pb.js +72 -0
- package/lib-commonjs/src/gen/config/v1/meta_pb.js +36 -0
- package/lib-commonjs/src/gen/config/v1/outlook_config_pb.js +67 -0
- package/lib-commonjs/src/gen/config/v1/secureviewer_config_pb.js +67 -0
- package/lib-commonjs/src/gen/config/v1/tagging_pb.js +246 -0
- package/lib-commonjs/src/gen/google/api/annotations_pb.js +33 -0
- package/lib-commonjs/src/gen/google/api/http_pb.js +44 -0
- package/lib-commonjs/src/gen/policyimportexport/v1/policy_import_export_pb.js +93 -0
- package/lib-commonjs/src/gen/shared/v1/shared_pb.js +95 -0
- package/lib-commonjs/src/gen/tagging/pdp/v2/tagging_pb.js +277 -0
- package/lib-commonjs/src/gen/version/v1/version_pb.js +40 -0
- package/lib-commonjs/src/gen/virtru/common/common_pb.js +76 -0
- package/lib-commonjs/src/gen/virtru/policy/certificates/v1/certificates_pb.js +77 -0
- package/lib-commonjs/src/gen/virtru/policy/objects_pb.js +143 -0
- package/lib-commonjs/src/index.js +48 -0
- package/lib-commonjs/src/lib/client.js +66 -0
- package/lib-commonjs/src/lib/consts.js +10 -0
- package/lib-commonjs/src/lib/dsp.js +49 -0
- package/lib-commonjs/src/lib/utils.js +402 -0
- package/lib-commonjs/tests/dsp-client.test.js +75 -0
- package/lib-commonjs/tests/dsp.test.js +94 -0
- package/lib-commonjs/tests/mocks/create-export-artifacts.js +17 -0
- package/lib-commonjs/tests/mocks/tagging-pdp-tag.js +15 -0
- package/lib-commonjs/tests/mocks/well-known-configuration.js +16 -0
- package/lib-commonjs/tests/setup-msw.js +33 -0
- package/package.json +12 -6
- package/src/gen/config/formatters/testdata/v1/test_pb.ts +1 -0
- package/src/gen/config/v1/config_connect.ts +111 -0
- package/src/gen/config/v1/tagging_pb.ts +106 -5
- package/src/gen/helloworld/v1/helloworld_connect.ts +49 -0
- package/src/gen/helloworld/v1/helloworld_pb.ts +6 -0
- package/src/gen/kas/nanotdf/v1/nanotdf_rewrap_connect.ts +39 -0
- package/src/gen/kas/nanotdf/v1/nanotdf_rewrap_pb.ts +207 -0
- package/src/gen/policyimportexport/v1/policy_import_export_connect.ts +56 -0
- package/src/gen/policyimportexport/v1/policy_import_export_pb.ts +10 -2
- package/src/gen/shared/v1/shared_connect.ts +61 -0
- package/src/gen/shared/v2/shared_connect.ts +39 -0
- package/src/gen/tagging/pdp/v2/externalprocessors/processor_connect.ts +156 -0
- package/src/gen/tagging/pdp/v2/tagging_connect.ts +73 -0
- package/src/gen/version/v1/version_connect.ts +31 -0
- package/src/gen/virtru/common/common_pb.ts +55 -33
- package/src/gen/virtru/policy/certificates/v1/certificates_pb.ts +188 -143
- package/src/gen/virtru/policy/objects_pb.ts +34 -16
- package/src/gen/web-admin/v1/config_connect.ts +52 -0
- package/src/lib/client.ts +5 -1
- package/src/lib/utils.test.ts +76 -40
- package/src/lib/utils.ts +54 -29
- package/temp/build/lint/_eslint-5eVG3S6w.json +30 -0
- package/temp/test/jest/haste-map-b055a9550e6d9f9b43d8ad29b1607278-49d19aee56a0732eca9c014a51272338-8710993d07b75a801b0956e67ffc46fa +0 -0
- package/tests/dsp.test.ts +2 -6
- package/update-protos.sh +63 -0
- package/vitest.config.ts +1 -0
|
@@ -1,21 +1,10 @@
|
|
|
1
1
|
{"kind":"O","text":"Invoking: heft build --clean --production\n"}
|
|
2
|
-
{"kind":"O","text":"
|
|
3
|
-
{"kind":"O","text":"\n"}
|
|
4
|
-
{"kind":"O","text":"
|
|
5
|
-
{"kind":"O","text":"
|
|
6
|
-
{"kind":"O","text":"
|
|
7
|
-
{"kind":"O","text":"
|
|
8
|
-
{"kind":"O","text":"
|
|
9
|
-
{"kind":"O","text":" ----
|
|
10
|
-
{"kind":"O","text":"
|
|
11
|
-
{"kind":"O","text":"[typescript] The TypeScript compiler version 5.8.2 is newer than the latest version that was tested with Heft (5.0); it may not work correctly.\n"}
|
|
12
|
-
{"kind":"O","text":"[typescript] Using TypeScript version 5.8.2\n"}
|
|
13
|
-
{"kind":"O","text":" ---- Compile finished (4253ms) ---- \n"}
|
|
14
|
-
{"kind":"O","text":" ---- Bundle started ---- \n"}
|
|
15
|
-
{"kind":"O","text":" ---- Bundle finished (1ms) ---- \n"}
|
|
16
|
-
{"kind":"O","text":" ---- Post-build started ---- \n"}
|
|
17
|
-
{"kind":"O","text":" ---- Post-build finished (0ms) ---- \n"}
|
|
18
|
-
{"kind":"O","text":"-------------------- Finished (4.594s) --------------------\n"}
|
|
19
|
-
{"kind":"O","text":"Project: @virtru/dsp-sdk@0.3.0\n"}
|
|
20
|
-
{"kind":"O","text":"Heft version: 0.50.7\n"}
|
|
21
|
-
{"kind":"O","text":"Node version: v22.20.0\n"}
|
|
2
|
+
{"kind":"O","text":" ---- build started ---- \n"}
|
|
3
|
+
{"kind":"O","text":"[build:set-browserslist-ignore-old-data-env-var] Setting environment variable BROWSERSLIST_IGNORE_OLD_DATA=1\n"}
|
|
4
|
+
{"kind":"O","text":"[build:sass] Starting...\n"}
|
|
5
|
+
{"kind":"O","text":"[build:sass] No SCSS files to process.\n"}
|
|
6
|
+
{"kind":"O","text":"[build:typescript] Using TypeScript version 5.8.2\n"}
|
|
7
|
+
{"kind":"O","text":"[build:webpack] No Webpack configuration found\n"}
|
|
8
|
+
{"kind":"O","text":"[build:lint] Using ESLint version 9.39.3\n"}
|
|
9
|
+
{"kind":"O","text":" ---- build finished (9.629s) ---- \n"}
|
|
10
|
+
{"kind":"O","text":"-------------------- Finished (9.637s) --------------------\n"}
|
|
@@ -1,58 +1,41 @@
|
|
|
1
|
-
{"kind":"O","text":"Invoking: npm run test && heft test --
|
|
1
|
+
{"kind":"O","text":"Invoking: npm run test && heft test --production\n"}
|
|
2
2
|
{"kind":"O","text":"\n"}
|
|
3
|
-
{"kind":"O","text":"> @virtru/dsp-sdk@0.3.
|
|
4
|
-
{"kind":"O","text":">
|
|
3
|
+
{"kind":"O","text":"> @virtru/dsp-sdk@0.3.2 test\n"}
|
|
4
|
+
{"kind":"O","text":"> vitest --run\n"}
|
|
5
5
|
{"kind":"O","text":"\n"}
|
|
6
6
|
{"kind":"E","text":"\u001b[33mThe CJS build of Vite's Node API is deprecated. See https://vite.dev/guide/troubleshooting.html#vite-cjs-node-api-deprecated for more details.\u001b[39m\n"}
|
|
7
7
|
{"kind":"O","text":"\n"}
|
|
8
8
|
{"kind":"O","text":"\u001b[1m\u001b[46m RUN \u001b[49m\u001b[22m \u001b[36mv3.1.4 \u001b[39m\u001b[90m/home/runner/_work/js-lib-monorepo/js-lib-monorepo/libraries/dsp-sdk\u001b[39m\n"}
|
|
9
9
|
{"kind":"O","text":"\n"}
|
|
10
|
-
{"kind":"
|
|
11
|
-
{"kind":"E","text":"\u001b[22m\u001b[39mError retrieving namespace certificates: Error: Certificate service error\n"}
|
|
12
|
-
{"kind":"E","text":" at \u001b[90m/home/runner/_work/js-lib-monorepo/js-lib-monorepo/libraries/dsp-sdk/\u001b[39msrc/lib/utils.test.ts:304:7\n"}
|
|
13
|
-
{"kind":"E","text":" at file:///home/runner/_work/js-lib-monorepo/js-lib-monorepo/common/temp/node_modules/\u001b[4m.pnpm\u001b[24m/@vitest+runner@3.1.4/node_modules/\u001b[4m@vitest/runner\u001b[24m/dist/index.js:103:11\n"}
|
|
14
|
-
{"kind":"E","text":" at file:///home/runner/_work/js-lib-monorepo/js-lib-monorepo/common/temp/node_modules/\u001b[4m.pnpm\u001b[24m/@vitest+runner@3.1.4/node_modules/\u001b[4m@vitest/runner\u001b[24m/dist/index.js:596:26\n"}
|
|
15
|
-
{"kind":"E","text":" at file:///home/runner/_work/js-lib-monorepo/js-lib-monorepo/common/temp/node_modules/\u001b[4m.pnpm\u001b[24m/@vitest+runner@3.1.4/node_modules/\u001b[4m@vitest/runner\u001b[24m/dist/index.js:879:20\n"}
|
|
16
|
-
{"kind":"E","text":" at new Promise (<anonymous>)\n"}
|
|
17
|
-
{"kind":"E","text":" at runWithTimeout (file:///home/runner/_work/js-lib-monorepo/js-lib-monorepo/common/temp/node_modules/\u001b[4m.pnpm\u001b[24m/@vitest+runner@3.1.4/node_modules/\u001b[4m@vitest/runner\u001b[24m/dist/index.js:852:10)\n"}
|
|
18
|
-
{"kind":"E","text":" at runTest (file:///home/runner/_work/js-lib-monorepo/js-lib-monorepo/common/temp/node_modules/\u001b[4m.pnpm\u001b[24m/@vitest+runner@3.1.4/node_modules/\u001b[4m@vitest/runner\u001b[24m/dist/index.js:1360:12)\n"}
|
|
19
|
-
{"kind":"E","text":"\u001b[90m at processTicksAndRejections (node:internal/process/task_queues:105:5)\u001b[39m\n"}
|
|
20
|
-
{"kind":"E","text":" at runSuite (file:///home/runner/_work/js-lib-monorepo/js-lib-monorepo/common/temp/node_modules/\u001b[4m.pnpm\u001b[24m/@vitest+runner@3.1.4/node_modules/\u001b[4m@vitest/runner\u001b[24m/dist/index.js:1507:8)\n"}
|
|
21
|
-
{"kind":"E","text":" at runSuite (file:///home/runner/_work/js-lib-monorepo/js-lib-monorepo/common/temp/node_modules/\u001b[4m.pnpm\u001b[24m/@vitest+runner@3.1.4/node_modules/\u001b[4m@vitest/runner\u001b[24m/dist/index.js:1507:8)\n"}
|
|
22
|
-
{"kind":"E","text":"\n"}
|
|
23
|
-
{"kind":"E","text":"\u001b[90mstderr\u001b[2m | src/lib/utils.test.ts\u001b[2m > \u001b[22m\u001b[2mgetTrustedCertificates\u001b[2m > \u001b[22m\u001b[2mhandles errors from namespace listing\n"}
|
|
24
|
-
{"kind":"E","text":"\u001b[22m\u001b[39mError retrieving namespace certificates: Error: Namespace listing error\n"}
|
|
25
|
-
{"kind":"E","text":" at \u001b[90m/home/runner/_work/js-lib-monorepo/js-lib-monorepo/libraries/dsp-sdk/\u001b[39msrc/lib/utils.test.ts:312:7\n"}
|
|
26
|
-
{"kind":"E","text":" at file:///home/runner/_work/js-lib-monorepo/js-lib-monorepo/common/temp/node_modules/\u001b[4m.pnpm\u001b[24m/@vitest+runner@3.1.4/node_modules/\u001b[4m@vitest/runner\u001b[24m/dist/index.js:103:11\n"}
|
|
27
|
-
{"kind":"E","text":" at file:///home/runner/_work/js-lib-monorepo/js-lib-monorepo/common/temp/node_modules/\u001b[4m.pnpm\u001b[24m/@vitest+runner@3.1.4/node_modules/\u001b[4m@vitest/runner\u001b[24m/dist/index.js:596:26\n"}
|
|
28
|
-
{"kind":"E","text":" at file:///home/runner/_work/js-lib-monorepo/js-lib-monorepo/common/temp/node_modules/\u001b[4m.pnpm\u001b[24m/@vitest+runner@3.1.4/node_modules/\u001b[4m@vitest/runner\u001b[24m/dist/index.js:879:20\n"}
|
|
29
|
-
{"kind":"E","text":" at new Promise (<anonymous>)\n"}
|
|
30
|
-
{"kind":"E","text":" at runWithTimeout (file:///home/runner/_work/js-lib-monorepo/js-lib-monorepo/common/temp/node_modules/\u001b[4m.pnpm\u001b[24m/@vitest+runner@3.1.4/node_modules/\u001b[4m@vitest/runner\u001b[24m/dist/index.js:852:10)\n"}
|
|
31
|
-
{"kind":"E","text":" at runTest (file:///home/runner/_work/js-lib-monorepo/js-lib-monorepo/common/temp/node_modules/\u001b[4m.pnpm\u001b[24m/@vitest+runner@3.1.4/node_modules/\u001b[4m@vitest/runner\u001b[24m/dist/index.js:1360:12)\n"}
|
|
32
|
-
{"kind":"E","text":"\u001b[90m at processTicksAndRejections (node:internal/process/task_queues:105:5)\u001b[39m\n"}
|
|
33
|
-
{"kind":"E","text":" at runSuite (file:///home/runner/_work/js-lib-monorepo/js-lib-monorepo/common/temp/node_modules/\u001b[4m.pnpm\u001b[24m/@vitest+runner@3.1.4/node_modules/\u001b[4m@vitest/runner\u001b[24m/dist/index.js:1507:8)\n"}
|
|
34
|
-
{"kind":"E","text":" at runSuite (file:///home/runner/_work/js-lib-monorepo/js-lib-monorepo/common/temp/node_modules/\u001b[4m.pnpm\u001b[24m/@vitest+runner@3.1.4/node_modules/\u001b[4m@vitest/runner\u001b[24m/dist/index.js:1507:8)\n"}
|
|
35
|
-
{"kind":"E","text":"\n"}
|
|
36
|
-
{"kind":"O","text":" \u001b[32m✓\u001b[39m src/lib/utils.test.ts \u001b[2m(\u001b[22m\u001b[2m16 tests\u001b[22m\u001b[2m)\u001b[22m\u001b[32m 127\u001b[2mms\u001b[22m\u001b[39m\n"}
|
|
37
|
-
{"kind":"E","text":"\u001b[90mstderr\u001b[2m | tests/dsp.test.ts\u001b[2m > \u001b[22m\u001b[2mshould throw an error if platformUrl is not provided\n"}
|
|
38
|
-
{"kind":"E","text":"\u001b[22m\u001b[39mWarning: 'platformUrl' is required for security to ensure the SDK uses the platform-configured Key Access Server list\n"}
|
|
39
|
-
{"kind":"E","text":"\n"}
|
|
10
|
+
{"kind":"O","text":" \u001b[32m✓\u001b[39m src/lib/utils.test.ts \u001b[2m(\u001b[22m\u001b[2m16 tests\u001b[22m\u001b[2m)\u001b[22m\u001b[32m 79\u001b[2mms\u001b[22m\u001b[39m\n"}
|
|
40
11
|
{"kind":"E","text":"\u001b[90mstderr\u001b[2m | tests/dsp.test.ts\u001b[2m > \u001b[22m\u001b[2mshould throw an error if platformUrl is not provided\n"}
|
|
41
12
|
{"kind":"E","text":"\u001b[22m\u001b[39mWarning: 'platformUrl' is required for security to ensure the SDK uses the platform-configured Key Access Server list\n"}
|
|
42
13
|
{"kind":"E","text":"\n"}
|
|
43
|
-
{"kind":"O","text":" \u001b[32m✓\u001b[39m tests/dsp.test.ts \u001b[2m(\u001b[22m\u001b[
|
|
44
|
-
{"kind":"O","text":" \u001b[32m✓\u001b[39m tests/dsp
|
|
14
|
+
{"kind":"O","text":" \u001b[32m✓\u001b[39m tests/dsp-client.test.ts \u001b[2m(\u001b[22m\u001b[2m5 tests\u001b[22m\u001b[2m)\u001b[22m\u001b[32m 47\u001b[2mms\u001b[22m\u001b[39m\n"}
|
|
15
|
+
{"kind":"O","text":" \u001b[32m✓\u001b[39m tests/dsp.test.ts \u001b[2m(\u001b[22m\u001b[2m8 tests\u001b[22m\u001b[2m)\u001b[22m\u001b[32m 69\u001b[2mms\u001b[22m\u001b[39m\n"}
|
|
45
16
|
{"kind":"O","text":"\n"}
|
|
46
17
|
{"kind":"O","text":"\u001b[2m Test Files \u001b[22m \u001b[1m\u001b[32m3 passed\u001b[39m\u001b[22m\u001b[90m (3)\u001b[39m\n"}
|
|
47
|
-
{"kind":"O","text":"\u001b[2m Tests \u001b[22m \u001b[1m\u001b[
|
|
48
|
-
{"kind":"O","text":"\u001b[2m Start at \u001b[22m
|
|
49
|
-
{"kind":"O","text":"\u001b[2m Duration \u001b[22m
|
|
50
|
-
{"kind":"O","text":"\n"}
|
|
51
|
-
{"kind":"O","text":"Using local Heft from /home/runner/_work/js-lib-monorepo/js-lib-monorepo/libraries/dsp-sdk/node_modules/@rushstack/heft\n"}
|
|
18
|
+
{"kind":"O","text":"\u001b[2m Tests \u001b[22m \u001b[1m\u001b[32m29 passed\u001b[39m\u001b[22m\u001b[90m (29)\u001b[39m\n"}
|
|
19
|
+
{"kind":"O","text":"\u001b[2m Start at \u001b[22m 15:06:59\n"}
|
|
20
|
+
{"kind":"O","text":"\u001b[2m Duration \u001b[22m 6.42s\u001b[2m (transform 833ms, setup 0ms, collect 5.32s, tests 195ms, environment 7.86s, prepare 1.40s)\u001b[22m\n"}
|
|
52
21
|
{"kind":"O","text":"\n"}
|
|
53
|
-
{"kind":"O","text":"
|
|
54
|
-
{"kind":"O","text":"
|
|
55
|
-
{"kind":"O","text":"
|
|
56
|
-
{"kind":"O","text":"
|
|
57
|
-
{"kind":"O","text":"
|
|
58
|
-
{"kind":"O","text":"
|
|
22
|
+
{"kind":"O","text":" ---- build started ---- \n"}
|
|
23
|
+
{"kind":"O","text":"[build:set-browserslist-ignore-old-data-env-var] Setting environment variable BROWSERSLIST_IGNORE_OLD_DATA=1\n"}
|
|
24
|
+
{"kind":"O","text":"[build:sass] Starting...\n"}
|
|
25
|
+
{"kind":"O","text":"[build:sass] No SCSS files to process.\n"}
|
|
26
|
+
{"kind":"O","text":"[build:typescript] Using TypeScript version 5.8.2\n"}
|
|
27
|
+
{"kind":"O","text":"[build:webpack] No Webpack configuration found\n"}
|
|
28
|
+
{"kind":"O","text":"[build:lint] Using ESLint version 9.39.3\n"}
|
|
29
|
+
{"kind":"O","text":" ---- build finished (11.802s) ---- \n"}
|
|
30
|
+
{"kind":"O","text":" ---- test started ---- \n"}
|
|
31
|
+
{"kind":"O","text":"[test:jest] Using Jest version 29.5.0\n"}
|
|
32
|
+
{"kind":"O","text":"No tests found, exiting with code 0\n"}
|
|
33
|
+
{"kind":"O","text":"[test:jest] \n"}
|
|
34
|
+
{"kind":"O","text":"[test:jest] Run start. 0 test suites\n"}
|
|
35
|
+
{"kind":"O","text":"[test:jest] \n"}
|
|
36
|
+
{"kind":"O","text":"[test:jest] Tests finished:\n"}
|
|
37
|
+
{"kind":"O","text":"[test:jest] Successes: 0\n"}
|
|
38
|
+
{"kind":"O","text":"[test:jest] Failures: 0\n"}
|
|
39
|
+
{"kind":"O","text":"[test:jest] Total: 0\n"}
|
|
40
|
+
{"kind":"O","text":" ---- test finished (0.539s) ---- \n"}
|
|
41
|
+
{"kind":"O","text":"-------------------- Finished (12.352s) --------------------\n"}
|
|
@@ -2,53 +2,67 @@
|
|
|
2
2
|
"files": {
|
|
3
3
|
"libraries/dsp-sdk/.gitignore": "63ff9c3c57396245247098596ed79b36fd1d76a6",
|
|
4
4
|
"libraries/dsp-sdk/.prettierrc": "544138be45652abc7bc3873341deacd3f4f90c61",
|
|
5
|
-
"libraries/dsp-sdk/.rush/temp/shrinkwrap-deps.json": "
|
|
6
|
-
"libraries/dsp-sdk/CHANGELOG.json": "
|
|
7
|
-
"libraries/dsp-sdk/CHANGELOG.md": "
|
|
5
|
+
"libraries/dsp-sdk/.rush/temp/shrinkwrap-deps.json": "a4eeeeba68ec205fd317124c3fdfa357ead27627",
|
|
6
|
+
"libraries/dsp-sdk/CHANGELOG.json": "ca29e50259bbff282acade49bc6359bd6766b586",
|
|
7
|
+
"libraries/dsp-sdk/CHANGELOG.md": "d8a07fe176431564953180de7ce9b50aa6e4ccca",
|
|
8
8
|
"libraries/dsp-sdk/LICENSE": "5e54fddf2616afa01260ae06b6b1f09e07d71077",
|
|
9
|
-
"libraries/dsp-sdk/README.md": "
|
|
9
|
+
"libraries/dsp-sdk/README.md": "3ef29762152a5f57734f01b06a03775a7f17e633",
|
|
10
10
|
"libraries/dsp-sdk/buf.gen.yaml": "0b5a95cb8a60b7e8f29cb816359fe7ce6cfc5a7e",
|
|
11
11
|
"libraries/dsp-sdk/buf.yaml": "c135bda377d5b6c143504328b57e85ed816dfa13",
|
|
12
|
+
"libraries/dsp-sdk/config/jest.config.json": "c2d3e44f320a6703b01ad6ac1fc562a9400e31a7",
|
|
13
|
+
"libraries/dsp-sdk/config/rig.json": "a75d77481094429136022458a72d3a98973e2c42",
|
|
12
14
|
"libraries/dsp-sdk/eslint.config.mjs": "a0b9402f6b9a945b8610d66a0b564c7b59238aba",
|
|
13
|
-
"libraries/dsp-sdk/package.json": "
|
|
15
|
+
"libraries/dsp-sdk/package.json": "2bed875861c06f79257b4d420754cb47b3130483",
|
|
14
16
|
"libraries/dsp-sdk/src/gen/buf/validate/validate_pb.ts": "f944ab8ae554fdc9cc773fdd55fd90557407f8c6",
|
|
15
|
-
"libraries/dsp-sdk/src/gen/config/formatters/testdata/v1/test_pb.ts": "
|
|
17
|
+
"libraries/dsp-sdk/src/gen/config/formatters/testdata/v1/test_pb.ts": "6875e00a5ea2500550890b52aa82b98ccba04692",
|
|
18
|
+
"libraries/dsp-sdk/src/gen/config/v1/config_connect.ts": "c9a01a4aa689225187c3dcdd2fb7d530d2ebdfe8",
|
|
16
19
|
"libraries/dsp-sdk/src/gen/config/v1/config_pb.ts": "1857dfab96f7258da75adaaaca84c277357fd0fe",
|
|
17
20
|
"libraries/dsp-sdk/src/gen/config/v1/kas_config_pb.ts": "0f5d9dfcef501767e3102329cfb2c01198382363",
|
|
18
21
|
"libraries/dsp-sdk/src/gen/config/v1/meta_pb.ts": "e895cd00db68fb3e164c0f9d1d22aa91ce9a04fb",
|
|
19
22
|
"libraries/dsp-sdk/src/gen/config/v1/outlook_config_pb.ts": "a8aad41c48ef6308970bb3a926b9af9ab72e4738",
|
|
20
23
|
"libraries/dsp-sdk/src/gen/config/v1/secureviewer_config_pb.ts": "336f2f630d9867dfb11764f452d3cf7d4d54490c",
|
|
21
|
-
"libraries/dsp-sdk/src/gen/config/v1/tagging_pb.ts": "
|
|
24
|
+
"libraries/dsp-sdk/src/gen/config/v1/tagging_pb.ts": "a2ede7bd585311db0443a617979725332c2f600f",
|
|
22
25
|
"libraries/dsp-sdk/src/gen/google/api/annotations_pb.ts": "055c67af9722191301430f4b0cd89864e842ccef",
|
|
23
26
|
"libraries/dsp-sdk/src/gen/google/api/http_pb.ts": "5d02eb9453fa2a4b3acbfabde8bdb0e5c99af73d",
|
|
24
|
-
"libraries/dsp-sdk/src/gen/helloworld/v1/
|
|
25
|
-
"libraries/dsp-sdk/src/gen/
|
|
27
|
+
"libraries/dsp-sdk/src/gen/helloworld/v1/helloworld_connect.ts": "584bf66153bb7d1057deb01a4181864a5b8aa6fa",
|
|
28
|
+
"libraries/dsp-sdk/src/gen/helloworld/v1/helloworld_pb.ts": "21a4157de1a6dd068267cabfc24460836b6acbd7",
|
|
29
|
+
"libraries/dsp-sdk/src/gen/kas/nanotdf/v1/nanotdf_rewrap_connect.ts": "e1523e8a4dfc5a8b31a6a89b33d717acc8580e0a",
|
|
30
|
+
"libraries/dsp-sdk/src/gen/kas/nanotdf/v1/nanotdf_rewrap_pb.ts": "c51f1ef293046d45764a9b4608a15cbb911182aa",
|
|
31
|
+
"libraries/dsp-sdk/src/gen/policyimportexport/v1/policy_import_export_connect.ts": "e074bf2f8e0d4e1589b6aec9b7f2e294c0948ef3",
|
|
32
|
+
"libraries/dsp-sdk/src/gen/policyimportexport/v1/policy_import_export_pb.ts": "e19238fc130cb80db3ec2601bf0552c0e5ac8a8d",
|
|
33
|
+
"libraries/dsp-sdk/src/gen/shared/v1/shared_connect.ts": "c50d9cf0b8fd44bba4b923482f32720029b5ce5d",
|
|
26
34
|
"libraries/dsp-sdk/src/gen/shared/v1/shared_pb.ts": "d839e04c4e8a246b54366897c4536a9c27e1d3c1",
|
|
35
|
+
"libraries/dsp-sdk/src/gen/shared/v2/shared_connect.ts": "84cd7177f7842d2f4b75d8a97b4d14453507dbbd",
|
|
27
36
|
"libraries/dsp-sdk/src/gen/shared/v2/shared_pb.ts": "0a3fc851ec6c333883849797374db166bce11d7a",
|
|
37
|
+
"libraries/dsp-sdk/src/gen/tagging/pdp/v2/externalprocessors/processor_connect.ts": "f38594100daaaaec72957577c6194b5c22d72ecc",
|
|
28
38
|
"libraries/dsp-sdk/src/gen/tagging/pdp/v2/externalprocessors/processor_pb.ts": "b860748174906cd7306b465ab08871bf30535c9a",
|
|
29
39
|
"libraries/dsp-sdk/src/gen/tagging/pdp/v2/stanag/stanag_pb.ts": "0e27454e14de6012a69de4c38a4198f0f4c23aeb",
|
|
40
|
+
"libraries/dsp-sdk/src/gen/tagging/pdp/v2/tagging_connect.ts": "32123a68ef05038afe90247f91dd6d0dc0cff58f",
|
|
30
41
|
"libraries/dsp-sdk/src/gen/tagging/pdp/v2/tagging_pb.ts": "0775584ab0bf384e15e82898b44ad55dfcd76894",
|
|
42
|
+
"libraries/dsp-sdk/src/gen/version/v1/version_connect.ts": "15b41570b808fdae8f9039b4a867f5d6db88aeff",
|
|
31
43
|
"libraries/dsp-sdk/src/gen/version/v1/version_pb.ts": "1d566636fe3011499fdbf21269537a677e3c3227",
|
|
32
|
-
"libraries/dsp-sdk/src/gen/virtru/common/common_pb.ts": "
|
|
44
|
+
"libraries/dsp-sdk/src/gen/virtru/common/common_pb.ts": "2506135ce26ff8ec0cdd686f462eceb1d15a532f",
|
|
33
45
|
"libraries/dsp-sdk/src/gen/virtru/policy/certificates/v1/certificates_connect.ts": "2196caefe9d9b0b5e26c7e0093ca772b72bd32a1",
|
|
34
|
-
"libraries/dsp-sdk/src/gen/virtru/policy/certificates/v1/certificates_pb.ts": "
|
|
35
|
-
"libraries/dsp-sdk/src/gen/virtru/policy/objects_pb.ts": "
|
|
46
|
+
"libraries/dsp-sdk/src/gen/virtru/policy/certificates/v1/certificates_pb.ts": "8cdeefc56af32d69284562e46d96a9c92297db74",
|
|
47
|
+
"libraries/dsp-sdk/src/gen/virtru/policy/objects_pb.ts": "862f30ea9f2f934a23d6939e2118cf99cd812b20",
|
|
48
|
+
"libraries/dsp-sdk/src/gen/web-admin/v1/config_connect.ts": "9737d1908c0d08d3b1739384ed3d8e9cd83bad1a",
|
|
36
49
|
"libraries/dsp-sdk/src/gen/web-admin/v1/config_pb.ts": "e64eaeec8e5055326a1952f7629f72d3847f2210",
|
|
37
50
|
"libraries/dsp-sdk/src/index.ts": "ca37f10c88c77b5f79333fc118e90e443b8ddb69",
|
|
38
|
-
"libraries/dsp-sdk/src/lib/client.ts": "
|
|
51
|
+
"libraries/dsp-sdk/src/lib/client.ts": "803640d403d79a3870572732dfafbb4c8ae0e691",
|
|
39
52
|
"libraries/dsp-sdk/src/lib/consts.ts": "44df09d2e1158023b7a962692c0b3fd32b15f4d1",
|
|
40
53
|
"libraries/dsp-sdk/src/lib/dsp.ts": "f11b0270e65edd03a1f3e28f8a7dea24dd55f2bc",
|
|
41
|
-
"libraries/dsp-sdk/src/lib/utils.test.ts": "
|
|
42
|
-
"libraries/dsp-sdk/src/lib/utils.ts": "
|
|
54
|
+
"libraries/dsp-sdk/src/lib/utils.test.ts": "fa9c0e5758081bf322e01439e53c9903c5df1035",
|
|
55
|
+
"libraries/dsp-sdk/src/lib/utils.ts": "5c015999a4419b33333d90b427ce8c5ed0090a42",
|
|
43
56
|
"libraries/dsp-sdk/src/vite-env.d.ts": "d07ebe61a244ee4fffdb3ba2e5674440e3340024",
|
|
44
57
|
"libraries/dsp-sdk/tests/dsp-client.test.ts": "772530fc1036ad904693f022b43f78c30365afca",
|
|
45
|
-
"libraries/dsp-sdk/tests/dsp.test.ts": "
|
|
58
|
+
"libraries/dsp-sdk/tests/dsp.test.ts": "864d6174e80eba22d2d102ec1b3bea2a9d6caf9c",
|
|
46
59
|
"libraries/dsp-sdk/tests/mocks/create-export-artifacts.ts": "4da51496fd76a2af6757f253c8197655c07805f4",
|
|
47
60
|
"libraries/dsp-sdk/tests/mocks/tagging-pdp-tag.ts": "472fb8edb0e603e541d4073e0f29d36a1f190453",
|
|
48
61
|
"libraries/dsp-sdk/tests/mocks/well-known-configuration.ts": "079db974991ed33cee5e0189f123956e2fab7168",
|
|
49
62
|
"libraries/dsp-sdk/tests/setup-msw.ts": "63f071cd77ee3f0ba56fc25fbc928ca3e4920ddf",
|
|
50
63
|
"libraries/dsp-sdk/tsconfig.json": "0aa1510e86d91b5c0cb278421d346dac0d9f1a67",
|
|
51
|
-
"libraries/dsp-sdk/
|
|
64
|
+
"libraries/dsp-sdk/update-protos.sh": "5e5f1f25463ffacd1b558ef2b4cb99d87e086d39",
|
|
65
|
+
"libraries/dsp-sdk/vitest.config.ts": "c73b5f508059bd3ea9bdb0b00a5cd10f84ec34dd"
|
|
52
66
|
},
|
|
53
67
|
"arguments": "heft build --clean --production"
|
|
54
68
|
}
|