@ted-galago/wave-cli 0.1.6 → 0.1.7
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 +5 -0
- package/dist/index.cjs +824 -228
- package/dist/index.js +824 -228
- package/package.json +1 -1
- package/scripts/verify-dev-api.mjs +76 -1
package/README.md
CHANGED
|
@@ -201,6 +201,8 @@ If a required parent field is missing, CLI returns JSON error with exit code `2`
|
|
|
201
201
|
- Use `question.name` (legacy `summary` is normalized to `name`).
|
|
202
202
|
- `questions.create` requires `question.member_id` and `question.name`.
|
|
203
203
|
- `question.status`, when provided, must be `asked` or `answered`.
|
|
204
|
+
- `questions.list` supports only `asked` and `answered` filters (plus `page` / `per`).
|
|
205
|
+
- `questions.list` does not expose `--query-json`; unsupported filters are rejected at CLI parse time.
|
|
204
206
|
|
|
205
207
|
`pulse.create` contract notes:
|
|
206
208
|
|
|
@@ -212,6 +214,8 @@ If a required parent field is missing, CLI returns JSON error with exit code `2`
|
|
|
212
214
|
|
|
213
215
|
- Use `survey.name` and `survey.recipient_type` (`title` is normalized to `name`).
|
|
214
216
|
- `survey.recipient_type` must be `member`, `team`, or `org_wide`.
|
|
217
|
+
- Survey results are written via `surveys.update` using nested `survey.survey_results_attributes`.
|
|
218
|
+
- There is no standalone `createSurveyResult` / `updateSurveyResult` CLI command.
|
|
215
219
|
- Valid `survey.name` values:
|
|
216
220
|
- `employee_net_promoter_score`
|
|
217
221
|
- `continuous_performance_review`
|
|
@@ -279,6 +283,7 @@ These wrap backend-owned markdown-tree primitives:
|
|
|
279
283
|
- `tree` -> `markdownTreeSubtree`
|
|
280
284
|
|
|
281
285
|
Discovery, ranking, canonical paths, and narrowing are backend-owned.
|
|
286
|
+
An empty `find` result (`candidates: []`) means no evidence for that exact query/scope, not confirmed global absence.
|
|
282
287
|
|
|
283
288
|
Ambiguity contract:
|
|
284
289
|
|