myte 0.0.46 → 0.0.47
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 +82 -46
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -46,14 +46,14 @@ The CLI searches for `.env` in the current folder and then up parent directories
|
|
|
46
46
|
- `npx myte feedback assign --feedback-id <id> --user-id <user_id> --reason "Assign to builder"`
|
|
47
47
|
- `npx myte feedback archive --feedback-id <id> --reason "Superseded"`
|
|
48
48
|
- `npx myte feedback validate --file ./MyteCommandCenter/reviews/feedback/<id>-edit.yml`
|
|
49
|
-
- `npx myte feedback submit --file ./MyteCommandCenter/reviews/feedback/<id>-edit.yml`
|
|
50
|
-
- `npx myte feedback reviews --status open`
|
|
51
|
-
- `npx myte feedback revise --request-id <id> --file ./MyteCommandCenter/reviews/feedback/<id>-edit.yml`
|
|
52
|
-
- `npx myte feedback review --request-id <id> --action approve --reason "Looks correct"`
|
|
53
|
-
- `npx myte feedback review --request-ids "<id1,id2>" --action approve --reason "Batch approval"`
|
|
54
|
-
- `npx myte feedback move --feedback-id <id> --to-state in_progress --reason "Started"`
|
|
55
|
-
- `npx myte feedback move --feedback-ids "<id1,id2>" --to-state in_progress --reason "Batch move"`
|
|
56
|
-
- `npx myte feedback comment --feedback-id <id> --body-file ./updates/feedback-comment.md`
|
|
49
|
+
- `npx myte feedback submit --file ./MyteCommandCenter/reviews/feedback/<id>-edit.yml --confirm-write --approval-artifact ./MyteCommandCenter/reviews/feedback/<id>-edit.yml`
|
|
50
|
+
- `npx myte feedback reviews --status open`
|
|
51
|
+
- `npx myte feedback revise --request-id <id> --file ./MyteCommandCenter/reviews/feedback/<id>-edit.yml --confirm-write --approval-artifact ./MyteCommandCenter/reviews/feedback/<id>-edit.yml`
|
|
52
|
+
- `npx myte feedback review --request-id <id> --action approve --reason "Looks correct"`
|
|
53
|
+
- `npx myte feedback review --request-ids "<id1,id2>" --action approve --reason "Batch approval"`
|
|
54
|
+
- `npx myte feedback move --feedback-id <id> --to-state in_progress --reason "Started"`
|
|
55
|
+
- `npx myte feedback move --feedback-ids "<id1,id2>" --to-state in_progress --reason "Batch move"`
|
|
56
|
+
- `npx myte feedback comment --feedback-id <id> --body-file ./updates/feedback-comment.md --confirm-write --approval-artifact ./updates/feedback-comment.md`
|
|
57
57
|
- `npx myte feedback undo --feedback-id <id> --event-id <event_id> --reason "Undo accidental move"`
|
|
58
58
|
- `npx myte feedback prd-versions --feedback-id <id>`
|
|
59
59
|
- `npx myte feedback prd-diff --feedback-id <id> --version-id <version_id> --compare-to <base_version_id>`
|
|
@@ -61,10 +61,10 @@ The CLI searches for `.env` in the current folder and then up parent directories
|
|
|
61
61
|
- `npx myte suggestions sync`
|
|
62
62
|
- `npx myte mission archive --mission-ids "M001" --reason "Duplicate disposable mission"`
|
|
63
63
|
- `npx myte query "Summarize the current branch changes" --with-diff`
|
|
64
|
-
- `npx myte create-prd ./drafts/auth-prd.md`
|
|
65
|
-
- `npx myte update-team "Backend deploy completed."`
|
|
66
|
-
- `npx myte update-owner --subject "QAQC progress" --body-file ./updates/owner.md`
|
|
67
|
-
- `npx myte update-client --subject "Weekly client update" --body-file ./updates/week-12.md`
|
|
64
|
+
- `npx myte create-prd ./drafts/auth-prd.md --confirm-write --approval-artifact ./drafts/auth-prd.md`
|
|
65
|
+
- `npx myte update-team "Backend deploy completed." --confirm-write --approval-artifact ./updates/team.md`
|
|
66
|
+
- `npx myte update-owner --subject "QAQC progress" --body-file ./updates/owner.md --confirm-write --approval-artifact ./updates/owner.md`
|
|
67
|
+
- `npx myte update-client --subject "Weekly client update" --body-file ./updates/week-12.md --confirm-write --approval-artifact ./updates/week-12.md`
|
|
68
68
|
- `npx mytecody doctor`
|
|
69
69
|
- `npx mytecody doctor --probe-gateway`
|
|
70
70
|
- `npx mytecody update --dry-run`
|
|
@@ -76,7 +76,10 @@ The CLI searches for `.env` in the current folder and then up parent directories
|
|
|
76
76
|
- `bootstrap` writes mission cards and mission suggestion thread state together; agents should run it before looking for mission or suggestion ids.
|
|
77
77
|
- `mission status` is active-state only (`todo`, `in_progress`, `done`). Use `mission archive` for project-key lifecycle archival; restore archived missions from the web archived-board view.
|
|
78
78
|
- `mission status` and `mission archive` refresh local bootstrap + mission-ops state by default after a successful mutation. Use `--no-sync` only when you intentionally want to skip the local refresh.
|
|
79
|
-
- `feedback status|edit|assign|archive` writes local review artifacts under `MyteCommandCenter/reviews/feedback
|
|
79
|
+
- `feedback status|edit|assign|archive|refine` writes local review artifacts under `MyteCommandCenter/reviews/feedback`.
|
|
80
|
+
- `feedback submit|revise|comment` are live writes that require `--confirm-write --approval-artifact <path>`.
|
|
81
|
+
- `feedback review|move|undo|apply` are governed writes with backend permission checks but no approval artifact flags.
|
|
82
|
+
- `feedback-sync|get|history|reviews|prd-versions|prd-diff|validate` are read/sync/validation commands with no approval artifact flags.
|
|
80
83
|
- `feedback review --request-ids` sends one backend batch review request with grouped notifications; do not loop single-review calls for batch decisions.
|
|
81
84
|
- `feedback move|comment|undo|prd-versions|prd-diff|history` calls the project-key Feedback API while authorization, stale snapshot checks, allowed transitions, and history remain enforced by the backend. `feedback move --feedback-ids` sends one batch board move request.
|
|
82
85
|
- `feedback comment` creates text-only feedback-specific comments. Attachments remain web UI only for this project-key endpoint.
|
|
@@ -86,15 +89,42 @@ The CLI searches for `.env` in the current folder and then up parent directories
|
|
|
86
89
|
- If diff-scoped repo configuration is missing or no local project repo can be resolved, `query --with-diff` exits with an error instead of silently dropping diff context.
|
|
87
90
|
- Most markdown files are excluded from diff context by default so code and runtime configuration changes dominate the payload. Key instruction files such as `README.md` and `AGENTS.md` remain eligible.
|
|
88
91
|
|
|
89
|
-
##
|
|
92
|
+
## Approval Artifact Requirements
|
|
90
93
|
|
|
91
|
-
|
|
94
|
+
Only selected project-key writes require a local approval artifact. The CLI adds `write_approval` metadata only when the command is in the required set and the caller supplies `--confirm-write --approval-artifact <path>`.
|
|
92
95
|
|
|
93
|
-
|
|
94
|
-
|
|
96
|
+
| Category | Commands | Artifact |
|
|
97
|
+
| --- | --- | --- |
|
|
98
|
+
| Required | `create-prd`, `update-team`, `update-owner`, `update-client`, `feedback submit`, `feedback revise`, `feedback comment`, `suggestions create`, `suggestions revise` | Yes |
|
|
99
|
+
| Not required | `run-qaqc`, `mission status`, `mission archive`, `suggestions review`, `feedback review`, `feedback move`, `feedback undo`, `feedback apply` | No |
|
|
100
|
+
| Never required | `config`, `query`, `bootstrap`, `sync-qaqc`, `feedback-sync`, `suggestions sync`, `feedback get/history/reviews/prd-versions/prd-diff/validate`, local feedback draft commands | No |
|
|
101
|
+
|
|
102
|
+
For required actions:
|
|
103
|
+
|
|
104
|
+
- First create a local `.md`, `.markdown`, `.yml`, `.yaml`, or `.json` approval artifact that lists the command, every target id, and the proposed change.
|
|
105
|
+
- Show the artifact path and full content or a concise complete summary to the user.
|
|
95
106
|
- After explicit approval, rerun the write with `--confirm-write --approval-artifact <path>`.
|
|
96
|
-
- Batch
|
|
97
|
-
|
|
107
|
+
- Batch artifacts must enumerate every feedback id, suggestion id, request id, or PRD item.
|
|
108
|
+
|
|
109
|
+
In plain language, the artifact is the human-reviewed record of the exact write the agent is about to send. It is not a permission grant and it does not bypass project owner/delegate checks, idempotency, stale-state guards, validation, or audit. It tells the API that a human approved this payload.
|
|
110
|
+
|
|
111
|
+
Minimum artifact contents:
|
|
112
|
+
|
|
113
|
+
- `command`: the exact CLI command to run.
|
|
114
|
+
- `targets`: every affected feedback id, request id, suggestion id, mission id, PRD file/client ref, project, or contact id.
|
|
115
|
+
- `proposed_change`: a complete summary of the status, text, PRD, comment, or mission change.
|
|
116
|
+
- `batch_count`: required when one command sends multiple items.
|
|
117
|
+
- `reason` or `approval_note`: why the write is being sent.
|
|
118
|
+
|
|
119
|
+
Batch guidance:
|
|
120
|
+
|
|
121
|
+
- Mission edit/create batches use `myte suggestions create` or `myte suggestions revise`. The artifact must list each item. For edits include `change_type: update`, the existing `mission_id`, and changed fields. For new missions include `change_type: create`, title, description, and acceptance details. For revisions include each `suggestion_id` and expected revision.
|
|
122
|
+
- PRD batches use one `myte create-prd fileA.md fileB.md ...`; the artifact must list each PRD file/title/client ref and `batch_count` must match the number of PRD items.
|
|
123
|
+
- Feedback submit/revise/comment artifacts are usually the same YAML or markdown file being submitted. If the command uses inline text or stdin, create a separate approval memo with the feedback id or request id and exact content.
|
|
124
|
+
- Team, owner, and client update artifacts should name the audience and include the exact message body or a complete summary. Client updates should include target contact ids when used.
|
|
125
|
+
- `feedback review --request-ids`, `feedback move --feedback-ids`, `mission status --mission-ids`, `mission archive --mission-ids`, and `run-qaqc --mission-ids` are batched governed writes, but they are marked `Not required` and should not receive approval artifact flags.
|
|
126
|
+
|
|
127
|
+
For actions marked `Not required`, call the command directly. The backend still enforces project-key authentication, idempotency, owner/delegate capability rules, stale-state guards, validation, rate limits, and audit history.
|
|
98
128
|
|
|
99
129
|
## Agent Usage Contract
|
|
100
130
|
|
|
@@ -109,14 +139,14 @@ The key resolves the project server-side. Agents should not pass `project_id` ma
|
|
|
109
139
|
Recommended agent flow:
|
|
110
140
|
|
|
111
141
|
1. Run `myte config --json` to confirm the project, API base, configured repos, and local workspace detection.
|
|
112
|
-
2. Run `myte bootstrap --json`, `myte feedback-sync --json`, or `myte sync-qaqc --json` to hydrate local context under `MyteCommandCenter`. Use `myte suggestions sync --json` only for narrow mission-review refreshes after bootstrap.
|
|
142
|
+
2. Run `myte bootstrap --json`, `myte feedback-sync --json`, or `myte sync-qaqc --json` to hydrate local context under `MyteCommandCenter`. `bootstrap` also writes `MyteCommandCenter/AgentsMyteAPI.md`, the local action matrix agents should consult before mutating Myte state. Use `myte suggestions sync --json` only for narrow mission-review refreshes after bootstrap.
|
|
113
143
|
3. Use `myte query "<goal/evidence/ask>" --with-diff` when local code changes matter.
|
|
114
|
-
4. Use `myte create-prd <file.md>` only after the PRD markdown has been reviewed by a human
|
|
115
|
-
5. Use `myte feedback status|edit|assign|archive` to create reviewable local artifacts
|
|
144
|
+
4. Use `myte create-prd <file.md> --confirm-write --approval-artifact <path>` only after the PRD markdown has been reviewed by a human. The file body is the PRD document; `--description` is only the short board/card summary.
|
|
145
|
+
5. Use `myte feedback status|edit|assign|archive|refine` to create reviewable local artifacts. `feedback submit` and `feedback revise` require an approval artifact; `feedback review` does not because the backend owner/delegate review membrane is the approval control.
|
|
116
146
|
6. Use `myte feedback move` only for direct board movement that is intentionally audited, with a clear `--reason`; use `--feedback-ids` for batch moves or batch archive.
|
|
117
|
-
7. Use `myte suggestions create|revise|review` for mission review threads. Valid create `change_type` values are exactly `update` and `create`; revisions keep the existing thread type and must not include `change_type`.
|
|
147
|
+
7. Use `myte suggestions create|revise|review` for mission review threads. `suggestions create` and `suggestions revise` require an approval artifact; `suggestions review` does not because the backend Project Owner/elevated-delegate decision is the approval control. Valid create `change_type` values are exactly `update` and `create`; revisions keep the existing thread type and must not include `change_type`.
|
|
118
148
|
8. Use `myte mission archive` for project-key mission lifecycle archival. Archive requires Project Owner or elevated delegate capability; restore is web-only from the archived missions board.
|
|
119
|
-
9. Use `myte update-team "<content>"
|
|
149
|
+
9. Use `myte update-team "<content>" --confirm-write --approval-artifact <path>` for project/team comments through `/api/project-assistant/project-comment`, and `myte feedback comment --feedback-id <id> --body-file ./comment.md --confirm-write --approval-artifact ./comment.md` for feedback-specific implementation notes.
|
|
120
150
|
|
|
121
151
|
PRD document contract:
|
|
122
152
|
|
|
@@ -152,7 +182,7 @@ Feedback comments nuance:
|
|
|
152
182
|
|
|
153
183
|
- `myte feedback-sync` reads existing feedback comment turns and stores them in `MyteCommandCenter/data/feedback.yml`.
|
|
154
184
|
- The web product supports feedback-specific comment create/fetch through JWT-authenticated `/api/feedbacks/<feedback_id>/comments`.
|
|
155
|
-
- The project-key npm CLI supports `myte feedback comment --feedback-id <id> --body "..."` and `--body-file ./comment.md`.
|
|
185
|
+
- The project-key npm CLI supports `myte feedback comment --feedback-id <id> --body "..." --confirm-write --approval-artifact ./comment.md` and `--body-file ./comment.md --confirm-write --approval-artifact ./comment.md`.
|
|
156
186
|
- Project-key feedback comments are text-only in this slice and cap content at 500,000 characters. Use the web UI when attachments are required.
|
|
157
187
|
|
|
158
188
|
## Commands
|
|
@@ -164,7 +194,10 @@ Feedback comments nuance:
|
|
|
164
194
|
- `mission archive`: archive missions without hard delete
|
|
165
195
|
- `sync-qaqc`: refresh active mission QAQC context locally
|
|
166
196
|
- `feedback-sync`: refresh feedback and PRD context locally
|
|
167
|
-
- `feedback status|edit|assign|archive|
|
|
197
|
+
- `feedback status|edit|assign|archive|refine`: create reviewable local feedback artifacts only
|
|
198
|
+
- `feedback submit|revise|comment`: live Feedback writes requiring `--confirm-write --approval-artifact <path>`
|
|
199
|
+
- `feedback review|move|undo|apply`: governed Feedback writes with no approval artifact flags
|
|
200
|
+
- `feedback-sync|get|history|reviews|prd-versions|prd-diff|validate`: read, sync, or validate Feedback state
|
|
168
201
|
- `suggestions sync|create|revise|review`: work with mission suggestion workflow state
|
|
169
202
|
- `query`: ask the project assistant, optionally with local diff context
|
|
170
203
|
- `ai`: use the Myte AI gateway
|
|
@@ -201,12 +234,12 @@ Feedback comments nuance:
|
|
|
201
234
|
| --- | --- | --- |
|
|
202
235
|
| Sync mission cards and review threads | `myte bootstrap --json` | Refreshes `MyteCommandCenter/data/missions/*.yml`, project structure, and `MyteCommandCenter/data/mission-ops.yml`. |
|
|
203
236
|
| Sync only mission review threads | `myte suggestions sync --json` | Narrow refresh for `mission-ops.yml` after bootstrap or a mutation. |
|
|
204
|
-
| Suggest edit to existing mission | `myte suggestions create` with `change_type: update` and `mission_id` | Creates or appends to an active review thread; live mission is unchanged until approval. |
|
|
205
|
-
| Suggest new mission | `myte suggestions create` with `change_type: create` | Requires `change_set.title` and `change_set.description`; mission card is created only after approval. |
|
|
206
|
-
| Revise a suggestion | `myte suggestions revise` with `suggestion_id` | Adds another revision to the same thread. Do not include `change_type`. |
|
|
207
|
-
| Review a suggestion | `myte suggestions review` with `review_action: approve|request_changes|reject` | Project Owner or elevated mission-review delegate required. |
|
|
208
|
-
| Update mission status | `myte mission status --mission-ids "M001" --status todo|in_progress|done` | Active status update only; refreshes local bootstrap + mission-ops by default. |
|
|
209
|
-
| Archive mission | `myte mission archive --mission-ids "M001" --reason "..."` | Project Owner or elevated delegate required. Keeps the mission record, hides it from normal board/bootstrap state, and refreshes local bootstrap + mission-ops by default. |
|
|
237
|
+
| Suggest edit to existing mission | `myte suggestions create --file ./create.yml --confirm-write --approval-artifact ./create.yml` with `change_type: update` and `mission_id` | Creates or appends to an active review thread; live mission is unchanged until approval. |
|
|
238
|
+
| Suggest new mission | `myte suggestions create --file ./create.yml --confirm-write --approval-artifact ./create.yml` with `change_type: create` | Requires `change_set.title` and `change_set.description`; mission card is created only after approval. |
|
|
239
|
+
| Revise a suggestion | `myte suggestions revise --file ./revise.yml --confirm-write --approval-artifact ./revise.yml` with `suggestion_id` | Adds another revision to the same thread. Do not include `change_type`. |
|
|
240
|
+
| Review a suggestion | `myte suggestions review` with `review_action: approve|request_changes|reject` | Project Owner or elevated mission-review delegate required; no approval artifact required. |
|
|
241
|
+
| Update mission status | `myte mission status --mission-ids "M001" --status todo|in_progress|done` | Active status update only; no approval artifact required; refreshes local bootstrap + mission-ops by default. |
|
|
242
|
+
| Archive mission | `myte mission archive --mission-ids "M001" --reason "..."` | Project Owner or elevated delegate required; no approval artifact required. Keeps the mission record, hides it from normal board/bootstrap state, and refreshes local bootstrap + mission-ops by default. |
|
|
210
243
|
|
|
211
244
|
After `bootstrap`, find ids locally:
|
|
212
245
|
|
|
@@ -226,18 +259,18 @@ After `bootstrap`, find ids locally:
|
|
|
226
259
|
| `feedback edit` / `feedback refine` | Creates a local YAML proposal for title, description/body, priority, due date, tags, or notes. | Content changes go through owner-review membrane. |
|
|
227
260
|
| `feedback assign` | Creates a local YAML proposal to change assignee. | Goes through review unless applied through owner-direct path. |
|
|
228
261
|
| `feedback archive` | Creates a local YAML proposal to archive. | Archive is governed by backend owner/delegate capability. |
|
|
229
|
-
| `feedback submit` | Sends a local proposal artifact to the backend as a review request. |
|
|
230
|
-
| `feedback revise` | Resubmits the original submitter's request after `request_changes`. |
|
|
262
|
+
| `feedback submit` | Sends a local proposal artifact to the backend as a review request. | Requires `--confirm-write --approval-artifact <path>`; does not mutate live feedback before approval. |
|
|
263
|
+
| `feedback revise` | Resubmits the original submitter's request after `request_changes`. | Requires `--confirm-write --approval-artifact <path>`; only valid for the original submitter and `needs_changes` requests. |
|
|
231
264
|
| `feedback reviews` | Lists review requests or fetches one request by `--request-id`. | Read-only; response includes backend permissions. |
|
|
232
|
-
| `feedback review` | Approves, rejects, requests changes, or cancels one review request, or a batch with `--request-ids`. |
|
|
233
|
-
| `feedback move` | Moves a card or batch of cards across allowed board states directly with an audit event. | `--feedback-ids` sends one batch request. Blocked with `pending_feedback_review` while an active linked review request exists; governed states such as archive/reject/deploy/freeze remain backend-authorized. Project-key unarchive is not supported. |
|
|
234
|
-
| `feedback comment` | Creates a text-only comment on one Feedback item. |
|
|
235
|
-
| `feedback undo` | Reverses an audited board event when there is no conflict. |
|
|
265
|
+
| `feedback review` | Approves, rejects, requests changes, or cancels one review request, or a batch with `--request-ids`. | No approval artifact required; backend restricts approval/review decisions to Project Owner or elevated delegate for Feedback scope; batch review uses one grouped notification path. |
|
|
266
|
+
| `feedback move` | Moves a card or batch of cards across allowed board states directly with an audit event. | No approval artifact required. `--feedback-ids` sends one batch request. Blocked with `pending_feedback_review` while an active linked review request exists; governed states such as archive/reject/deploy/freeze remain backend-authorized. Project-key unarchive is not supported. |
|
|
267
|
+
| `feedback comment` | Creates a text-only comment on one Feedback item. | Requires `--confirm-write --approval-artifact <path>`; backend checks project-key access, owner/assigned permission, idempotency, and the 500,000-character content cap. Attachments remain web UI only. |
|
|
268
|
+
| `feedback undo` | Reverses an audited board event when there is no conflict. | No approval artifact required; backend validates event ownership/project scope and conflict state. |
|
|
236
269
|
| `feedback prd-versions` | Lists retained PRD baselines/revisions for a feedback item. | Read-only; old S3 objects are retained by reference. |
|
|
237
270
|
| `feedback prd-diff` | Fetches backend-generated text diff for PRD versions. | Read-only; backend controls version access. |
|
|
238
271
|
| `feedback history` | Lists audited feedback board/refinement events. | Read-only; backend checks project access. |
|
|
239
272
|
| `feedback validate` | Sends an artifact to backend validation without mutation. | Useful before submit or owner-direct apply. |
|
|
240
|
-
| `feedback apply` | Applies an artifact through the owner-direct/emergency path. |
|
|
273
|
+
| `feedback apply` | Applies an artifact through the owner-direct/emergency path. | No approval artifact required; not the normal collaborator flow; normal flow is `submit` -> `review`. |
|
|
241
274
|
|
|
242
275
|
Canonical feedback lifecycle states are `frozen`, `todo`, `in_progress`, `in_review`, `completed`, `deployed`, `rejected`, and `archived`.
|
|
243
276
|
|
|
@@ -249,13 +282,16 @@ npx --package @mytegroupinc/myte-core node ./node_modules/@mytegroupinc/myte-cor
|
|
|
249
282
|
|
|
250
283
|
The harness creates five disposable `TEST` feedback items from markdown, verifies batch review and batch board movement, batch archives the disposable items, verifies normal `feedback-sync` excludes archived items, and verifies the project-key surface does not expose Feedback unarchive/restore.
|
|
251
284
|
|
|
252
|
-
## Direct Project API Surface
|
|
253
|
-
|
|
254
|
-
All routes use `Authorization: Bearer <MYTE_API_KEY>`. The CLI adds idempotency and client-session headers on mutation routes.
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
285
|
+
## Direct Project API Surface
|
|
286
|
+
|
|
287
|
+
All routes use `Authorization: Bearer <MYTE_API_KEY>`. The CLI adds idempotency and client-session headers on mutation routes.
|
|
288
|
+
|
|
289
|
+
`myte ai` is separate from this project-scoped surface. It uses `MYTEAI_API_KEY` and calls `POST https://api.myte.ai/v1/chat/completions`, or `${MYTEAI_API_BASE}/v1/chat/completions` when that base is configured.
|
|
290
|
+
|
|
291
|
+
Read/sync routes:
|
|
292
|
+
|
|
293
|
+
- `GET /api/project-assistant/query/<job_id>`
|
|
294
|
+
- `GET /api/project-assistant/config`
|
|
259
295
|
- `GET /api/project-assistant/bootstrap`
|
|
260
296
|
- `GET /api/project-assistant/qaqc-sync`
|
|
261
297
|
- `GET /api/project-assistant/feedback-sync`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "myte",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.47",
|
|
4
4
|
"description": "Myte developer CLI.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"license": "MIT",
|
|
@@ -19,6 +19,6 @@
|
|
|
19
19
|
"node": ">=18"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@mytegroupinc/myte-core": "0.0.
|
|
22
|
+
"@mytegroupinc/myte-core": "0.0.47"
|
|
23
23
|
}
|
|
24
24
|
}
|