@playdrop/playdrop-cli 0.3.1-build.1 → 0.3.5-build.1
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/README.md +60 -22
- package/config/client-meta.json +5 -5
- package/dist/apps/build.js +90 -114
- package/dist/apps/upload.js +35 -11
- package/dist/apps/validate.js +61 -0
- package/dist/assets/model-artifacts.d.ts +8 -0
- package/dist/assets/model-artifacts.js +375 -0
- package/dist/assets/model-worker.d.ts +22 -0
- package/dist/assets/model-worker.js +123 -0
- package/dist/catalogue.d.ts +10 -4
- package/dist/catalogue.js +272 -45
- package/dist/commandContext.d.ts +1 -0
- package/dist/commandContext.js +45 -15
- package/dist/commands/browse.d.ts +16 -0
- package/dist/commands/browse.js +370 -0
- package/dist/commands/build.js +12 -4
- package/dist/commands/capture.js +24 -24
- package/dist/commands/captureRemote.d.ts +11 -0
- package/dist/commands/captureRemote.js +90 -0
- package/dist/commands/comments.d.ts +14 -0
- package/dist/commands/comments.js +189 -0
- package/dist/commands/create.js +112 -72
- package/dist/commands/creations.d.ts +49 -0
- package/dist/commands/creations.js +657 -0
- package/dist/commands/credits.d.ts +10 -0
- package/dist/commands/credits.js +91 -0
- package/dist/commands/detail.d.ts +2 -2
- package/dist/commands/detail.js +148 -290
- package/dist/commands/dev.js +26 -24
- package/dist/commands/devServer.js +88 -9
- package/dist/commands/devShared.js +2 -2
- package/dist/commands/documentation.d.ts +4 -1
- package/dist/commands/documentation.js +79 -104
- package/dist/commands/feedback.d.ts +12 -9
- package/dist/commands/feedback.js +125 -257
- package/dist/commands/format.js +6 -13
- package/dist/commands/generation.d.ts +11 -0
- package/dist/commands/generation.js +329 -43
- package/dist/commands/gettingStarted.d.ts +1 -0
- package/dist/commands/gettingStarted.js +26 -0
- package/dist/commands/init.js +26 -24
- package/dist/commands/login.js +9 -8
- package/dist/commands/logout.js +2 -1
- package/dist/commands/notifications.d.ts +14 -0
- package/dist/commands/notifications.js +179 -0
- package/dist/commands/search.d.ts +13 -0
- package/dist/commands/search.js +198 -0
- package/dist/commands/upload.js +83 -35
- package/dist/commands/validate.js +15 -1
- package/dist/commands/versionsBrowse.d.ts +7 -0
- package/dist/commands/versionsBrowse.js +209 -0
- package/dist/commands/whoami.js +9 -8
- package/dist/errors.d.ts +9 -0
- package/dist/errors.js +52 -0
- package/dist/externalAssetPackValidation.d.ts +2 -0
- package/dist/externalAssetPackValidation.js +115 -0
- package/dist/http.js +1 -1
- package/dist/index.js +570 -629
- package/dist/messages.js +11 -11
- package/dist/output.d.ts +5 -0
- package/dist/output.js +45 -0
- package/dist/playwright.js +10 -2
- package/dist/refs.d.ts +18 -0
- package/dist/refs.js +105 -0
- package/node_modules/@playdrop/ai-client/dist/index.d.ts +43 -16
- package/node_modules/@playdrop/ai-client/dist/index.d.ts.map +1 -1
- package/node_modules/@playdrop/ai-client/package.json +1 -0
- package/node_modules/@playdrop/api-client/dist/client.d.ts +77 -43
- package/node_modules/@playdrop/api-client/dist/client.d.ts.map +1 -1
- package/node_modules/@playdrop/api-client/dist/client.js +379 -1574
- package/node_modules/@playdrop/api-client/dist/core/errors.d.ts +9 -0
- package/node_modules/@playdrop/api-client/dist/core/errors.d.ts.map +1 -0
- package/node_modules/@playdrop/api-client/dist/core/errors.js +46 -0
- package/node_modules/@playdrop/api-client/dist/core/request.d.ts +27 -0
- package/node_modules/@playdrop/api-client/dist/core/request.d.ts.map +1 -0
- package/node_modules/@playdrop/api-client/dist/core/request.js +122 -0
- package/node_modules/@playdrop/api-client/dist/domains/admin.d.ts +75 -0
- package/node_modules/@playdrop/api-client/dist/domains/admin.d.ts.map +1 -0
- package/node_modules/@playdrop/api-client/dist/domains/admin.js +282 -0
- package/node_modules/@playdrop/api-client/dist/domains/ai.d.ts +22 -0
- package/node_modules/@playdrop/api-client/dist/domains/ai.d.ts.map +1 -0
- package/node_modules/@playdrop/api-client/dist/domains/ai.js +15 -0
- package/node_modules/@playdrop/api-client/dist/domains/apps.d.ts +60 -0
- package/node_modules/@playdrop/api-client/dist/domains/apps.d.ts.map +1 -0
- package/node_modules/@playdrop/api-client/dist/domains/apps.js +301 -0
- package/node_modules/@playdrop/api-client/dist/domains/asset-packs.d.ts +59 -0
- package/node_modules/@playdrop/api-client/dist/domains/asset-packs.d.ts.map +1 -0
- package/node_modules/@playdrop/api-client/dist/domains/asset-packs.js +297 -0
- package/node_modules/@playdrop/api-client/dist/domains/assets.d.ts +62 -0
- package/node_modules/@playdrop/api-client/dist/domains/assets.d.ts.map +1 -0
- package/node_modules/@playdrop/api-client/dist/domains/assets.js +297 -0
- package/node_modules/@playdrop/api-client/dist/domains/auth.d.ts +28 -0
- package/node_modules/@playdrop/api-client/dist/domains/auth.d.ts.map +1 -0
- package/node_modules/@playdrop/api-client/dist/domains/auth.js +78 -0
- package/node_modules/@playdrop/api-client/dist/domains/comments.d.ts +29 -0
- package/node_modules/@playdrop/api-client/dist/domains/comments.d.ts.map +1 -0
- package/node_modules/@playdrop/api-client/dist/domains/comments.js +65 -0
- package/node_modules/@playdrop/api-client/dist/domains/me.d.ts +24 -0
- package/node_modules/@playdrop/api-client/dist/domains/me.d.ts.map +1 -0
- package/node_modules/@playdrop/api-client/dist/domains/me.js +35 -0
- package/node_modules/@playdrop/api-client/dist/domains/payments.d.ts +37 -0
- package/node_modules/@playdrop/api-client/dist/domains/payments.d.ts.map +1 -0
- package/node_modules/@playdrop/api-client/dist/domains/payments.js +148 -0
- package/node_modules/@playdrop/api-client/dist/domains/search.d.ts +27 -0
- package/node_modules/@playdrop/api-client/dist/domains/search.d.ts.map +1 -0
- package/node_modules/@playdrop/api-client/dist/domains/search.js +65 -0
- package/node_modules/@playdrop/api-client/dist/index.d.ts +59 -60
- package/node_modules/@playdrop/api-client/dist/index.d.ts.map +1 -1
- package/node_modules/@playdrop/api-client/dist/index.js +142 -53
- package/node_modules/@playdrop/api-client/package.json +3 -2
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/entity-cleaner.d.ts +3 -3
- package/node_modules/@playdrop/boxel-core/dist/src/entity-cleaner.js.map +1 -0
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/entity-utils.d.ts +8 -8
- package/node_modules/@playdrop/boxel-core/dist/src/entity-utils.js.map +1 -0
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/r15/common.d.ts +2 -2
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/r15/common.js.map +1 -1
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/r15/textured-builder.d.ts +2 -2
- package/node_modules/@playdrop/boxel-core/dist/src/humanoid/r15/textured-builder.js.map +1 -0
- package/node_modules/@playdrop/boxel-core/dist/src/humanoid/r15/types.d.ts +6 -0
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/r15/voxel-builder.d.ts +2 -2
- package/node_modules/@playdrop/boxel-core/dist/src/humanoid/r15/voxel-builder.js.map +1 -0
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/r6/builder.d.ts +3 -3
- package/node_modules/@playdrop/boxel-core/dist/src/humanoid/r6/builder.js.map +1 -0
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/templates/index.d.ts +4 -4
- package/node_modules/@playdrop/boxel-core/dist/src/humanoid/templates/index.js.map +1 -0
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/palette_tools.d.ts +4 -4
- package/node_modules/@playdrop/boxel-core/dist/src/palette_tools.js.map +1 -0
- package/node_modules/@playdrop/boxel-core/dist/src/serialization.d.ts +4 -0
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/serialization.js +10 -10
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/serialization.js.map +1 -1
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/textures.d.ts +5 -5
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/textures.js.map +1 -1
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/transforms/textured-boxes/infer-face.d.ts +2 -2
- package/node_modules/@playdrop/boxel-core/dist/src/transforms/textured-boxes/infer-face.js.map +1 -0
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/transforms/textured-boxes/layer-mode.d.ts +2 -2
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/transforms/textured-boxes/layer-mode.js +1 -1
- package/node_modules/@playdrop/boxel-core/dist/src/transforms/textured-boxes/layer-mode.js.map +1 -0
- package/node_modules/@playdrop/boxel-core/dist/src/transforms/textured-boxes/merge-overlay.d.ts +2 -0
- package/node_modules/@playdrop/boxel-core/dist/src/transforms/textured-boxes/merge-overlay.js.map +1 -0
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/transforms/textured-boxes/slice.d.ts +2 -2
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/transforms/textured-boxes/slice.js +1 -1
- package/node_modules/@playdrop/boxel-core/dist/src/transforms/textured-boxes/slice.js.map +1 -0
- package/node_modules/@playdrop/boxel-core/dist/src/transforms/upscale.d.ts +3 -0
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/transforms/upscale.js +1 -1
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/transforms/upscale.js.map +1 -1
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/transforms/voxels/slice.d.ts +2 -2
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/transforms/voxels/slice.js.map +1 -1
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/types.d.ts +3 -3
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/validation.d.ts +10 -10
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/validation.js +36 -36
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/validation.js.map +1 -1
- package/node_modules/@playdrop/boxel-core/dist/test/entity-utils.test.js.map +1 -0
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/index.test.js +2 -2
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/index.test.js.map +1 -1
- package/node_modules/@playdrop/boxel-core/dist/test/layer-mode.test.js.map +1 -0
- package/node_modules/@playdrop/boxel-core/dist/test/palette-tools.test.js.map +1 -0
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/serialization.test.js +6 -6
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/serialization.test.js.map +1 -1
- package/node_modules/@playdrop/boxel-core/dist/test/textures.test.js.map +1 -0
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/types.test.js +1 -1
- package/node_modules/@playdrop/boxel-core/dist/test/types.test.js.map +1 -0
- package/node_modules/@playdrop/boxel-core/dist/test/upscale.test.js.map +1 -0
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/validation.test.js +11 -11
- package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/validation.test.js.map +1 -1
- package/node_modules/@playdrop/{entity-core → boxel-core}/package.json +3 -3
- package/node_modules/@playdrop/boxel-three/dist/src/animations.d.ts +4 -0
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/animations.js +1 -1
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/builders.d.ts +1 -1
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/builders.js +3 -3
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/context.d.ts +3 -3
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/exporters/glb.d.ts +9 -9
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/exporters/glb.js +4 -4
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/exporters/image.d.ts +4 -4
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/exporters/image.js +5 -5
- package/node_modules/@playdrop/boxel-three/dist/src/index.d.ts +17 -0
- package/node_modules/@playdrop/boxel-three/dist/src/index.js +15 -0
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/instantiate.d.ts +4 -4
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/instantiate.js +4 -4
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/nodes.d.ts +1 -1
- package/node_modules/@playdrop/boxel-three/dist/src/overlays.d.ts +7 -0
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/overlays.js +1 -1
- package/node_modules/@playdrop/boxel-three/dist/src/scene.d.ts +3 -0
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/scene.js +6 -6
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/skinned-mesh.d.ts +2 -2
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/textures.d.ts +1 -1
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/textures.js +2 -2
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/types.d.ts +15 -15
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/voxels/faces.d.ts +1 -1
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/voxels/mesher.d.ts +1 -1
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/voxels/mesher.js +1 -1
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/test/export-image.playwright.test.js +4 -4
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/test/fixtures/render-worker.d.ts +3 -3
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/test/fixtures/render-worker.js +10 -10
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/test/glb-skinned.test.js +6 -6
- package/node_modules/@playdrop/boxel-three/dist/test/index.test.js +8 -0
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/test/instantiate.test.js +3 -3
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/test/overlays.test.js +3 -3
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/test/scene-filter.test.js +5 -5
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/test/scene-smoke.test.js +3 -3
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/test/skinned-mesh.test.js +3 -3
- package/node_modules/@playdrop/{entity-three → boxel-three}/dist/test/textured-overlay.test.js +3 -3
- package/node_modules/@playdrop/{entity-three → boxel-three}/package.json +5 -4
- package/node_modules/@playdrop/config/client-meta.json +5 -5
- package/node_modules/@playdrop/config/dist/src/constants.d.ts +5 -0
- package/node_modules/@playdrop/config/dist/src/constants.d.ts.map +1 -1
- package/node_modules/@playdrop/config/dist/src/constants.js +5 -1
- package/node_modules/@playdrop/config/dist/tsconfig.tsbuildinfo +1 -1
- package/node_modules/@playdrop/config/package.json +1 -1
- package/node_modules/@playdrop/types/dist/api.d.ts +326 -62
- package/node_modules/@playdrop/types/dist/api.d.ts.map +1 -1
- package/node_modules/@playdrop/types/dist/api.js +56 -0
- package/node_modules/@playdrop/types/dist/app.d.ts +0 -14
- package/node_modules/@playdrop/types/dist/app.d.ts.map +1 -1
- package/node_modules/@playdrop/types/dist/app.js +0 -10
- package/node_modules/@playdrop/types/dist/asset-pack.d.ts +12 -1
- package/node_modules/@playdrop/types/dist/asset-pack.d.ts.map +1 -1
- package/node_modules/@playdrop/types/dist/asset.d.ts +85 -4
- package/node_modules/@playdrop/types/dist/asset.d.ts.map +1 -1
- package/node_modules/@playdrop/types/dist/asset.js +43 -37
- package/node_modules/@playdrop/types/dist/entity.d.ts +2 -2
- package/node_modules/@playdrop/types/dist/entity.d.ts.map +1 -1
- package/node_modules/@playdrop/types/dist/entity.js +2 -2
- package/node_modules/@playdrop/types/dist/realtime.d.ts +27 -26
- package/node_modules/@playdrop/types/dist/realtime.d.ts.map +1 -1
- package/node_modules/@playdrop/types/dist/version.d.ts +5 -0
- package/node_modules/@playdrop/types/dist/version.d.ts.map +1 -1
- package/package.json +11 -9
- package/bin/playdrop-cli +0 -2
- package/dist/commands/asset-packs.d.ts +0 -27
- package/dist/commands/asset-packs.js +0 -508
- package/dist/commands/assets.d.ts +0 -35
- package/dist/commands/assets.js +0 -668
- package/dist/commands/list.d.ts +0 -7
- package/dist/commands/list.js +0 -347
- package/dist/commands/migrateCatalogueV2.d.ts +0 -1
- package/dist/commands/migrateCatalogueV2.js +0 -142
- package/dist/commands/versions.d.ts +0 -17
- package/dist/commands/versions.js +0 -384
- package/node_modules/@playdrop/entity-core/dist/src/entity-cleaner.js.map +0 -1
- package/node_modules/@playdrop/entity-core/dist/src/entity-utils.js.map +0 -1
- package/node_modules/@playdrop/entity-core/dist/src/humanoid/r15/textured-builder.js.map +0 -1
- package/node_modules/@playdrop/entity-core/dist/src/humanoid/r15/types.d.ts +0 -6
- package/node_modules/@playdrop/entity-core/dist/src/humanoid/r15/voxel-builder.js.map +0 -1
- package/node_modules/@playdrop/entity-core/dist/src/humanoid/r6/builder.js.map +0 -1
- package/node_modules/@playdrop/entity-core/dist/src/humanoid/templates/index.js.map +0 -1
- package/node_modules/@playdrop/entity-core/dist/src/palette_tools.js.map +0 -1
- package/node_modules/@playdrop/entity-core/dist/src/serialization.d.ts +0 -4
- package/node_modules/@playdrop/entity-core/dist/src/transforms/textured-boxes/infer-face.js.map +0 -1
- package/node_modules/@playdrop/entity-core/dist/src/transforms/textured-boxes/layer-mode.js.map +0 -1
- package/node_modules/@playdrop/entity-core/dist/src/transforms/textured-boxes/merge-overlay.d.ts +0 -2
- package/node_modules/@playdrop/entity-core/dist/src/transforms/textured-boxes/merge-overlay.js.map +0 -1
- package/node_modules/@playdrop/entity-core/dist/src/transforms/textured-boxes/slice.js.map +0 -1
- package/node_modules/@playdrop/entity-core/dist/src/transforms/upscale.d.ts +0 -3
- package/node_modules/@playdrop/entity-core/dist/test/entity-utils.test.js.map +0 -1
- package/node_modules/@playdrop/entity-core/dist/test/layer-mode.test.js.map +0 -1
- package/node_modules/@playdrop/entity-core/dist/test/palette-tools.test.js.map +0 -1
- package/node_modules/@playdrop/entity-core/dist/test/textures.test.js.map +0 -1
- package/node_modules/@playdrop/entity-core/dist/test/types.test.js.map +0 -1
- package/node_modules/@playdrop/entity-core/dist/test/upscale.test.js.map +0 -1
- package/node_modules/@playdrop/entity-three/dist/src/animations.d.ts +0 -4
- package/node_modules/@playdrop/entity-three/dist/src/index.d.ts +0 -17
- package/node_modules/@playdrop/entity-three/dist/src/index.js +0 -15
- package/node_modules/@playdrop/entity-three/dist/src/overlays.d.ts +0 -7
- package/node_modules/@playdrop/entity-three/dist/src/scene.d.ts +0 -3
- package/node_modules/@playdrop/entity-three/dist/test/index.test.js +0 -8
- package/node_modules/@playdrop/types/dist/profile-asset-semantics.d.ts +0 -22
- package/node_modules/@playdrop/types/dist/profile-asset-semantics.d.ts.map +0 -1
- package/node_modules/@playdrop/types/dist/profile-asset-semantics.js +0 -105
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/entity-cleaner.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/entity-utils.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/format-utils.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/format-utils.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/format-utils.js.map +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/geometry.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/geometry.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/geometry.js.map +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/index.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/index.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/index.js.map +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/r15/common.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/r15/index.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/r15/index.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/r15/index.js.map +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/r15/textured-builder.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/r15/types.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/r15/types.js.map +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/r15/voxel-builder.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/r6/builder.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/r6/index.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/r6/index.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/r6/index.js.map +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/r6/scanner.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/r6/scanner.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/r6/scanner.js.map +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/r6/textures/artifacts.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/r6/textures/artifacts.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/r6/textures/artifacts.js.map +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/r6/textures/face-map.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/r6/textures/face-map.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/r6/textures/face-map.js.map +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/templates/humanoid_r15.json +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/templates/humanoid_r6.json +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/humanoid/templates/index.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/index.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/index.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/index.js.map +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/materials.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/materials.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/materials.js.map +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/palette_tools.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/textures.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/transforms/textured-boxes/infer-face.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/transforms/textured-boxes/merge-overlay.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/transforms/voxels/slice.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/transforms/voxels/textured-to-voxel.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/transforms/voxels/textured-to-voxel.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/transforms/voxels/textured-to-voxel.js.map +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/types.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/types.js.map +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/voxels/greedy-mesher.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/voxels/greedy-mesher.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/voxels/greedy-mesher.js.map +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/voxels.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/voxels.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/src/voxels.js.map +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/entity-utils.test.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/entity-utils.test.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/greedy-mesher.test.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/greedy-mesher.test.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/greedy-mesher.test.js.map +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/humanoid/humanoid-builders.test.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/humanoid/humanoid-builders.test.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/humanoid/humanoid-builders.test.js.map +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/index.test.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/layer-mode.test.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/layer-mode.test.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/materials.test.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/materials.test.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/materials.test.js.map +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/palette-tools.test.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/palette-tools.test.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/serialization.test.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/textures.test.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/textures.test.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/types.test.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/upscale.test.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/upscale.test.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/validation.test.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/voxels.test.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/voxels.test.js +0 -0
- /package/node_modules/@playdrop/{entity-core → boxel-core}/dist/test/voxels.test.js.map +0 -0
- /package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/context.js +0 -0
- /package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/nodes.js +0 -0
- /package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/primitives.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/primitives.js +0 -0
- /package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/skinned-mesh.js +0 -0
- /package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/texture-atlas.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/texture-atlas.js +0 -0
- /package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/types.js +0 -0
- /package/node_modules/@playdrop/{entity-three → boxel-three}/dist/src/voxels/faces.js +0 -0
- /package/node_modules/@playdrop/{entity-three → boxel-three}/dist/test/export-image.playwright.test.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-three → boxel-three}/dist/test/glb-skinned.test.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-three → boxel-three}/dist/test/index.test.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-three → boxel-three}/dist/test/instantiate.test.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-three → boxel-three}/dist/test/overlays.test.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-three → boxel-three}/dist/test/scene-filter.test.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-three → boxel-three}/dist/test/scene-smoke.test.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-three → boxel-three}/dist/test/skinned-mesh.test.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-three → boxel-three}/dist/test/textured-overlay.test.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-three → boxel-three}/dist/test/voxels.test.d.ts +0 -0
- /package/node_modules/@playdrop/{entity-three → boxel-three}/dist/test/voxels.test.js +0 -0
|
@@ -3,321 +3,189 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.
|
|
6
|
+
exports.sendFeedback = sendFeedback;
|
|
7
|
+
exports.browseFeedback = browseFeedback;
|
|
8
|
+
exports.deleteFeedbackEntry = deleteFeedbackEntry;
|
|
9
9
|
const node_fs_1 = require("node:fs");
|
|
10
10
|
const node_path_1 = __importDefault(require("node:path"));
|
|
11
|
-
const types_1 = require("@playdrop/types");
|
|
12
11
|
const commandContext_1 = require("../commandContext");
|
|
12
|
+
const errors_1 = require("../errors");
|
|
13
13
|
const messages_1 = require("../messages");
|
|
14
|
-
const
|
|
14
|
+
const output_1 = require("../output");
|
|
15
15
|
const clientInfo_1 = require("../clientInfo");
|
|
16
16
|
const MAX_FEEDBACK_TITLE_LENGTH = 70;
|
|
17
17
|
const MAX_FEEDBACK_COMMENT_LENGTH = 10000;
|
|
18
18
|
const MAX_FEEDBACK_SOURCE_LENGTH = 40;
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
return false;
|
|
23
|
-
}
|
|
24
|
-
const candidate = error;
|
|
25
|
-
if (candidate instanceof TypeError) {
|
|
26
|
-
return true;
|
|
19
|
+
function parsePositiveInteger(raw, label, command, options = {}) {
|
|
20
|
+
if (raw === undefined) {
|
|
21
|
+
return null;
|
|
27
22
|
}
|
|
28
|
-
const
|
|
29
|
-
|
|
30
|
-
}
|
|
31
|
-
function parsePositiveInteger(value, context, command) {
|
|
32
|
-
const parsed = Number.parseInt(value, 10);
|
|
33
|
-
if (!Number.isInteger(parsed) || parsed <= 0) {
|
|
34
|
-
(0, messages_1.printErrorWithHelp)(`${context} must be a positive integer.`, [], { command });
|
|
23
|
+
const parsed = typeof raw === 'number' ? raw : Number.parseInt(String(raw), 10);
|
|
24
|
+
if (!Number.isInteger(parsed) || parsed < 0 || (!options.zeroAllowed && parsed === 0)) {
|
|
25
|
+
(0, messages_1.printErrorWithHelp)(`${label} must be ${options.zeroAllowed ? 'zero or a positive integer' : 'a positive integer'}.`, [], { command });
|
|
35
26
|
process.exitCode = 1;
|
|
36
27
|
return null;
|
|
37
28
|
}
|
|
38
29
|
return parsed;
|
|
39
30
|
}
|
|
40
|
-
async function loadCommentFromFile(filePath
|
|
31
|
+
async function loadCommentFromFile(filePath) {
|
|
41
32
|
const absolute = node_path_1.default.resolve(filePath);
|
|
42
33
|
try {
|
|
43
34
|
const contents = await node_fs_1.promises.readFile(absolute, 'utf8');
|
|
44
35
|
const trimmed = contents.trim();
|
|
45
|
-
|
|
46
|
-
(0, messages_1.printErrorWithHelp)(`File "${filePath}" is empty.`, ['Add feedback text to the file or remove the --file flag.'], { command });
|
|
47
|
-
process.exitCode = 1;
|
|
48
|
-
return null;
|
|
49
|
-
}
|
|
50
|
-
return trimmed;
|
|
51
|
-
}
|
|
52
|
-
catch (error) {
|
|
53
|
-
const code = error?.code;
|
|
54
|
-
if (code === 'ENOENT') {
|
|
55
|
-
(0, messages_1.printErrorWithHelp)(`File "${filePath}" was not found.`, ['Provide a valid path or remove the --file flag.'], { command });
|
|
56
|
-
process.exitCode = 1;
|
|
57
|
-
return null;
|
|
58
|
-
}
|
|
59
|
-
throw error;
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
function printSubmitValidationError(message) {
|
|
63
|
-
(0, messages_1.printErrorWithHelp)(message, [
|
|
64
|
-
'Provide --title and either --comment or --file.',
|
|
65
|
-
'Example: playdrop-cli feedback --title "Bug report" --comment "Details here."',
|
|
66
|
-
], { command: 'feedback' });
|
|
67
|
-
process.exitCode = 1;
|
|
68
|
-
}
|
|
69
|
-
function parseOutputFormat(raw) {
|
|
70
|
-
if (!raw || raw.trim().length === 0) {
|
|
71
|
-
return 'text';
|
|
36
|
+
return trimmed.length > 0 ? trimmed : null;
|
|
72
37
|
}
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
return normalized;
|
|
38
|
+
catch {
|
|
39
|
+
return null;
|
|
76
40
|
}
|
|
77
|
-
return null;
|
|
78
41
|
}
|
|
79
|
-
async function
|
|
42
|
+
async function sendFeedback(options = {}) {
|
|
80
43
|
const title = typeof options.title === 'string' ? options.title.trim() : '';
|
|
81
44
|
if (!title) {
|
|
82
|
-
|
|
45
|
+
(0, messages_1.printErrorWithHelp)('Feedback title is required.', ['Use --title <title>.'], { command: 'feedback send' });
|
|
46
|
+
process.exitCode = 1;
|
|
83
47
|
return;
|
|
84
48
|
}
|
|
85
49
|
if (title.length > MAX_FEEDBACK_TITLE_LENGTH) {
|
|
86
|
-
|
|
50
|
+
(0, messages_1.printErrorWithHelp)(`Feedback title must be ${MAX_FEEDBACK_TITLE_LENGTH} characters or fewer.`, [], { command: 'feedback send' });
|
|
51
|
+
process.exitCode = 1;
|
|
87
52
|
return;
|
|
88
53
|
}
|
|
89
54
|
const commentParts = [];
|
|
90
|
-
if (typeof options.comment === 'string') {
|
|
91
|
-
|
|
92
|
-
if (trimmed) {
|
|
93
|
-
commentParts.push(trimmed);
|
|
94
|
-
}
|
|
55
|
+
if (typeof options.comment === 'string' && options.comment.trim().length > 0) {
|
|
56
|
+
commentParts.push(options.comment.trim());
|
|
95
57
|
}
|
|
96
|
-
if (typeof options.file === 'string' && options.file.trim()) {
|
|
97
|
-
const
|
|
98
|
-
if (!
|
|
58
|
+
if (typeof options.file === 'string' && options.file.trim().length > 0) {
|
|
59
|
+
const fileComment = await loadCommentFromFile(options.file.trim());
|
|
60
|
+
if (!fileComment) {
|
|
61
|
+
(0, messages_1.printErrorWithHelp)(`Could not read feedback text from "${options.file}".`, ['Provide a readable file or use --comment <text>.'], { command: 'feedback send' });
|
|
62
|
+
process.exitCode = 1;
|
|
99
63
|
return;
|
|
100
64
|
}
|
|
101
|
-
commentParts.push(
|
|
65
|
+
commentParts.push(fileComment);
|
|
102
66
|
}
|
|
103
|
-
const
|
|
104
|
-
if (!
|
|
105
|
-
|
|
67
|
+
const comment = commentParts.join('\n\n').trim();
|
|
68
|
+
if (!comment) {
|
|
69
|
+
(0, messages_1.printErrorWithHelp)('Feedback text is required.', ['Use --comment <text> or --file <path>.'], { command: 'feedback send' });
|
|
70
|
+
process.exitCode = 1;
|
|
106
71
|
return;
|
|
107
72
|
}
|
|
108
|
-
if (
|
|
109
|
-
|
|
73
|
+
if (comment.length > MAX_FEEDBACK_COMMENT_LENGTH) {
|
|
74
|
+
(0, messages_1.printErrorWithHelp)(`Feedback text must be ${MAX_FEEDBACK_COMMENT_LENGTH} characters or fewer.`, [], { command: 'feedback send' });
|
|
75
|
+
process.exitCode = 1;
|
|
110
76
|
return;
|
|
111
77
|
}
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
source,
|
|
127
|
-
version,
|
|
128
|
-
build: buildLabel,
|
|
129
|
-
});
|
|
130
|
-
console.log('Feedback recorded, thank you!');
|
|
78
|
+
await (0, commandContext_1.withEnvironment)('feedback send', 'Sending feedback', async ({ client }) => {
|
|
79
|
+
try {
|
|
80
|
+
const runtime = (0, clientInfo_1.getRuntimeInfo)();
|
|
81
|
+
const source = runtime.client.trim().slice(0, MAX_FEEDBACK_SOURCE_LENGTH) || 'cli';
|
|
82
|
+
const response = await client.submitFeedback({
|
|
83
|
+
title,
|
|
84
|
+
comment,
|
|
85
|
+
source,
|
|
86
|
+
version: (0, clientInfo_1.getCliVersion)(),
|
|
87
|
+
build: String((0, clientInfo_1.getCliBuild)()),
|
|
88
|
+
});
|
|
89
|
+
if (options.json) {
|
|
90
|
+
(0, output_1.printJson)({ success: true, response });
|
|
91
|
+
return;
|
|
131
92
|
}
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
'Double check the provided fields and try again.',
|
|
143
|
-
], { command: 'feedback' });
|
|
144
|
-
process.exitCode = 1;
|
|
145
|
-
return;
|
|
146
|
-
}
|
|
147
|
-
if (isNetworkError(error)) {
|
|
148
|
-
(0, messages_1.printNetworkIssue)('Could not reach the Playdrop API to submit feedback.', 'feedback');
|
|
149
|
-
process.exitCode = 1;
|
|
150
|
-
return;
|
|
151
|
-
}
|
|
93
|
+
(0, output_1.printSuccess)('Feedback sent.', ['Next: run "playdrop feedback browse" if you need to review feedback as an admin.']);
|
|
94
|
+
}
|
|
95
|
+
catch (error) {
|
|
96
|
+
const handled = (0, errors_1.handleCommandFailure)(error, 'feedback send', 'Feedback send', {
|
|
97
|
+
apiMessage: (apiError) => ({
|
|
98
|
+
problem: `Feedback send failed with status ${apiError.status}.`,
|
|
99
|
+
suggestions: ['Check the provided fields and retry.', 'Run "playdrop auth login" if your session may be stale.'],
|
|
100
|
+
}),
|
|
101
|
+
});
|
|
102
|
+
if (!handled) {
|
|
152
103
|
throw error;
|
|
153
104
|
}
|
|
154
|
-
});
|
|
155
|
-
}
|
|
156
|
-
catch (error) {
|
|
157
|
-
if (error instanceof http_1.CLIUnsupportedClientError) {
|
|
158
|
-
return;
|
|
159
105
|
}
|
|
160
|
-
|
|
161
|
-
}
|
|
106
|
+
});
|
|
162
107
|
}
|
|
163
|
-
async function
|
|
164
|
-
|
|
165
|
-
if (
|
|
166
|
-
|
|
167
|
-
if (limit === null) {
|
|
168
|
-
return;
|
|
169
|
-
}
|
|
170
|
-
if (limit > 100) {
|
|
171
|
-
(0, messages_1.printErrorWithHelp)('--limit must not exceed 100.', [], { command: 'feedback list' });
|
|
172
|
-
process.exitCode = 1;
|
|
173
|
-
return;
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
let offset = null;
|
|
177
|
-
if (typeof options.offset === 'string') {
|
|
178
|
-
const parsed = Number.parseInt(options.offset, 10);
|
|
179
|
-
if (!Number.isInteger(parsed) || parsed < 0) {
|
|
180
|
-
(0, messages_1.printErrorWithHelp)('--offset must be zero or a positive integer.', [], { command: 'feedback list' });
|
|
181
|
-
process.exitCode = 1;
|
|
182
|
-
return;
|
|
183
|
-
}
|
|
184
|
-
offset = parsed;
|
|
108
|
+
async function browseFeedback(options = {}) {
|
|
109
|
+
const limit = options.limit !== undefined ? parsePositiveInteger(options.limit, '--limit', 'feedback browse') : null;
|
|
110
|
+
if (options.limit !== undefined && limit === null) {
|
|
111
|
+
return;
|
|
185
112
|
}
|
|
186
|
-
const
|
|
187
|
-
|
|
188
|
-
: undefined;
|
|
189
|
-
if (source && source.length > MAX_FEEDBACK_SOURCE_LENGTH) {
|
|
190
|
-
(0, messages_1.printErrorWithHelp)(`Source filter must be ${MAX_FEEDBACK_SOURCE_LENGTH} characters or fewer.`, [], { command: 'feedback list' });
|
|
191
|
-
process.exitCode = 1;
|
|
113
|
+
const offset = options.offset !== undefined ? parsePositiveInteger(options.offset, '--offset', 'feedback browse', { zeroAllowed: true }) : null;
|
|
114
|
+
if (options.offset !== undefined && offset === null) {
|
|
192
115
|
return;
|
|
193
116
|
}
|
|
194
|
-
|
|
195
|
-
if (
|
|
196
|
-
|
|
197
|
-
if (parsed === null) {
|
|
198
|
-
return;
|
|
199
|
-
}
|
|
200
|
-
userId = parsed;
|
|
117
|
+
const userId = options.userId !== undefined ? parsePositiveInteger(options.userId, '--user-id', 'feedback browse') : null;
|
|
118
|
+
if (options.userId !== undefined && userId === null) {
|
|
119
|
+
return;
|
|
201
120
|
}
|
|
202
|
-
const
|
|
203
|
-
if (
|
|
204
|
-
(0, messages_1.printErrorWithHelp)(`
|
|
205
|
-
'Use "--format text" (default) or "--format json".',
|
|
206
|
-
], { command: 'feedback list' });
|
|
121
|
+
const source = typeof options.source === 'string' && options.source.trim().length > 0 ? options.source.trim() : undefined;
|
|
122
|
+
if (source && source.length > MAX_FEEDBACK_SOURCE_LENGTH) {
|
|
123
|
+
(0, messages_1.printErrorWithHelp)(`Source filter must be ${MAX_FEEDBACK_SOURCE_LENGTH} characters or fewer.`, [], { command: 'feedback browse' });
|
|
207
124
|
process.exitCode = 1;
|
|
208
125
|
return;
|
|
209
126
|
}
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
return;
|
|
227
|
-
}
|
|
228
|
-
for (const entry of entries) {
|
|
229
|
-
console.log(`#${entry.id} ${entry.createdAt} ${entry.username}`);
|
|
230
|
-
console.log(` Title: ${entry.title}`);
|
|
231
|
-
console.log(` Comment: ${entry.comment}`);
|
|
232
|
-
}
|
|
233
|
-
const meta = response.pagination;
|
|
234
|
-
if (meta?.hasMore) {
|
|
235
|
-
console.log(`More results available. Next offset: ${meta.offset + entries.length}`);
|
|
236
|
-
}
|
|
127
|
+
await (0, commandContext_1.withEnvironment)('feedback browse', 'Browsing feedback', async ({ client }) => {
|
|
128
|
+
try {
|
|
129
|
+
const response = await client.listFeedback({
|
|
130
|
+
limit: limit ?? undefined,
|
|
131
|
+
offset: offset ?? undefined,
|
|
132
|
+
source,
|
|
133
|
+
userId: userId ?? undefined,
|
|
134
|
+
});
|
|
135
|
+
const items = response.feedback ?? [];
|
|
136
|
+
if (options.json) {
|
|
137
|
+
(0, output_1.printJson)({ items, pagination: response.pagination });
|
|
138
|
+
return;
|
|
139
|
+
}
|
|
140
|
+
if (items.length === 0) {
|
|
141
|
+
console.log('No feedback entries found.');
|
|
142
|
+
return;
|
|
237
143
|
}
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
(0, messages_1.printNetworkIssue)('Could not reach the Playdrop API to list feedback.', 'feedback list');
|
|
255
|
-
process.exitCode = 1;
|
|
256
|
-
return;
|
|
257
|
-
}
|
|
144
|
+
console.log('Feedback:\n');
|
|
145
|
+
for (const item of items) {
|
|
146
|
+
console.log(`#${item.id} | ${item.username} | ${(0, output_1.formatTimestamp)(item.createdAt)}`);
|
|
147
|
+
console.log(` ${item.title}`);
|
|
148
|
+
console.log(` ${item.comment}`);
|
|
149
|
+
}
|
|
150
|
+
console.log('\nNext: run "playdrop feedback delete <id>" if you need to remove one entry.');
|
|
151
|
+
}
|
|
152
|
+
catch (error) {
|
|
153
|
+
const handled = (0, errors_1.handleCommandFailure)(error, 'feedback browse', 'Feedback browse', {
|
|
154
|
+
apiMessage: (apiError) => ({
|
|
155
|
+
problem: `Feedback browse failed with status ${apiError.status}.`,
|
|
156
|
+
suggestions: ['Ensure you are logged in with an account that can review feedback.'],
|
|
157
|
+
}),
|
|
158
|
+
});
|
|
159
|
+
if (!handled) {
|
|
258
160
|
throw error;
|
|
259
161
|
}
|
|
260
|
-
});
|
|
261
|
-
}
|
|
262
|
-
catch (error) {
|
|
263
|
-
if (error instanceof http_1.CLIUnsupportedClientError) {
|
|
264
|
-
return;
|
|
265
162
|
}
|
|
266
|
-
|
|
267
|
-
}
|
|
163
|
+
});
|
|
268
164
|
}
|
|
269
|
-
async function
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
process.exitCode = 1;
|
|
165
|
+
async function deleteFeedbackEntry(rawId, options = {}) {
|
|
166
|
+
const id = parsePositiveInteger(rawId, 'Feedback id', 'feedback delete');
|
|
167
|
+
if (id === null) {
|
|
273
168
|
return;
|
|
274
169
|
}
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
try {
|
|
282
|
-
const response = await client.deleteFeedback(numericId);
|
|
283
|
-
if (response?.success) {
|
|
284
|
-
console.log(`Feedback #${numericId} deleted.`);
|
|
285
|
-
}
|
|
286
|
-
else {
|
|
287
|
-
console.log(`Feedback #${numericId} deleted.`);
|
|
288
|
-
}
|
|
170
|
+
await (0, commandContext_1.withEnvironment)('feedback delete', 'Deleting feedback', async ({ client }) => {
|
|
171
|
+
try {
|
|
172
|
+
const response = await client.deleteFeedback(id);
|
|
173
|
+
if (options.json) {
|
|
174
|
+
(0, output_1.printJson)({ success: Boolean(response.success), id });
|
|
175
|
+
return;
|
|
289
176
|
}
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
(0, messages_1.printErrorWithHelp)(`Feedback #${numericId} was not found.`, [], { command: 'feedback delete' });
|
|
301
|
-
}
|
|
302
|
-
else {
|
|
303
|
-
(0, messages_1.printErrorWithHelp)(`Deleting feedback failed with status ${error.status}.`, [], { command: 'feedback delete' });
|
|
304
|
-
}
|
|
305
|
-
process.exitCode = 1;
|
|
306
|
-
return;
|
|
307
|
-
}
|
|
308
|
-
if (isNetworkError(error)) {
|
|
309
|
-
(0, messages_1.printNetworkIssue)('Could not reach the Playdrop API to delete feedback.', 'feedback delete');
|
|
310
|
-
process.exitCode = 1;
|
|
311
|
-
return;
|
|
312
|
-
}
|
|
177
|
+
(0, output_1.printSuccess)(`Feedback #${id} deleted.`, ['Next: run "playdrop feedback browse" to review the remaining entries.']);
|
|
178
|
+
}
|
|
179
|
+
catch (error) {
|
|
180
|
+
const handled = (0, errors_1.handleCommandFailure)(error, 'feedback delete', 'Feedback delete', {
|
|
181
|
+
apiMessage: (apiError) => ({
|
|
182
|
+
problem: `Feedback delete failed with status ${apiError.status}.`,
|
|
183
|
+
suggestions: ['Check the id and your permissions, then retry.'],
|
|
184
|
+
}),
|
|
185
|
+
});
|
|
186
|
+
if (!handled) {
|
|
313
187
|
throw error;
|
|
314
188
|
}
|
|
315
|
-
});
|
|
316
|
-
}
|
|
317
|
-
catch (error) {
|
|
318
|
-
if (error instanceof http_1.CLIUnsupportedClientError) {
|
|
319
|
-
return;
|
|
320
189
|
}
|
|
321
|
-
|
|
322
|
-
}
|
|
190
|
+
});
|
|
323
191
|
}
|
package/dist/commands/format.js
CHANGED
|
@@ -8,7 +8,7 @@ const validate_1 = require("../apps/validate");
|
|
|
8
8
|
async function format(pathOrName) {
|
|
9
9
|
const selection = (0, taskSelection_1.selectTasks)(pathOrName);
|
|
10
10
|
if (selection.errors.length > 0) {
|
|
11
|
-
(0, taskSelection_1.reportTaskErrors)(selection.errors, 'format');
|
|
11
|
+
(0, taskSelection_1.reportTaskErrors)(selection.errors, 'project format');
|
|
12
12
|
process.exitCode = 1;
|
|
13
13
|
return;
|
|
14
14
|
}
|
|
@@ -23,28 +23,21 @@ async function format(pathOrName) {
|
|
|
23
23
|
try {
|
|
24
24
|
if (task.kind === 'app') {
|
|
25
25
|
const ran = await (0, validate_1.runFormatScript)(task);
|
|
26
|
+
if (!ran) {
|
|
27
|
+
throw new Error(`project format requires a package.json "format" script for app "${task.name}".`);
|
|
28
|
+
}
|
|
26
29
|
const entry = {
|
|
27
30
|
action: 'format',
|
|
28
|
-
status:
|
|
31
|
+
status: 'success',
|
|
29
32
|
entityType: 'app',
|
|
30
33
|
entityId: task.name,
|
|
31
34
|
catalogue: task.cataloguePath,
|
|
32
|
-
detail: ran ? undefined : 'package.json missing "format" script',
|
|
33
35
|
};
|
|
34
36
|
results.push(entry);
|
|
35
37
|
console.log((0, uploadLog_1.formatTaskLogLine)(entry));
|
|
36
38
|
}
|
|
37
39
|
else {
|
|
38
|
-
|
|
39
|
-
action: 'format',
|
|
40
|
-
status: 'skipped',
|
|
41
|
-
entityType: task.kind,
|
|
42
|
-
entityId: task.name,
|
|
43
|
-
catalogue: task.cataloguePath,
|
|
44
|
-
detail: `no format step for ${task.kind}`,
|
|
45
|
-
};
|
|
46
|
-
results.push(entry);
|
|
47
|
-
console.log((0, uploadLog_1.formatTaskLogLine)(entry));
|
|
40
|
+
throw new Error(`project format does not support ${task.kind} "${task.name}".`);
|
|
48
41
|
}
|
|
49
42
|
}
|
|
50
43
|
catch (error) {
|
|
@@ -21,6 +21,7 @@ type AiGenerateOptions = {
|
|
|
21
21
|
texture?: boolean;
|
|
22
22
|
timeoutSeconds?: string | number;
|
|
23
23
|
pollIntervalMs?: string | number;
|
|
24
|
+
json?: boolean;
|
|
24
25
|
};
|
|
25
26
|
type AiListOptions = {
|
|
26
27
|
type?: string;
|
|
@@ -29,5 +30,15 @@ type AiListOptions = {
|
|
|
29
30
|
format?: string;
|
|
30
31
|
};
|
|
31
32
|
export declare function generate(typeInput: string, promptInput: string, options?: AiGenerateOptions): Promise<void>;
|
|
33
|
+
type AiJobBrowseOptions = {
|
|
34
|
+
type?: string;
|
|
35
|
+
limit?: string | number;
|
|
36
|
+
offset?: string | number;
|
|
37
|
+
json?: boolean;
|
|
38
|
+
};
|
|
39
|
+
export declare function browseGenerationJobs(options?: AiJobBrowseOptions): Promise<void>;
|
|
40
|
+
export declare function showGenerationJob(id: string | undefined, options?: {
|
|
41
|
+
json?: boolean;
|
|
42
|
+
}): Promise<void>;
|
|
32
43
|
export declare function generations(options?: AiListOptions): Promise<void>;
|
|
33
44
|
export {};
|