@zapier/zapier-sdk 0.98.1 → 0.99.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/CHANGELOG.md +19 -0
- package/dist/{chunk-IZRPXHWO.cjs → chunk-BUAAO3AY.cjs} +457 -146
- package/dist/{chunk-CHT6AJG3.mjs → chunk-VXVMVORI.mjs} +457 -147
- package/dist/experimental.cjs +388 -384
- package/dist/experimental.d.mts +1911 -285
- package/dist/experimental.d.ts +1911 -285
- package/dist/experimental.mjs +2 -2
- package/dist/{index-BcUDdHo2.d.mts → index-BL4Djdpe.d.mts} +2884 -472
- package/dist/{index-BcUDdHo2.d.ts → index-BL4Djdpe.d.ts} +2884 -472
- package/dist/index.cjs +280 -276
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @zapier/zapier-sdk
|
|
2
2
|
|
|
3
|
+
## 0.99.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 9cde1f6: Item and list methods accept `skipOutputDataValidation: true` alongside their
|
|
8
|
+
input, bypassing output validation for that one call. Most methods here opt out
|
|
9
|
+
of validation at authoring time, where a caller's flag does nothing, so it
|
|
10
|
+
applies to `createActionRun` and `getActionRun`. Both build their response field
|
|
11
|
+
by field, so nothing is stripped either way, and the visible difference is a
|
|
12
|
+
`meta.outputDataValidation` sidecar on a call that passes it.
|
|
13
|
+
|
|
14
|
+
`ResponseMeta` gains `outputDataValidation`, a union discriminated on `skipped`,
|
|
15
|
+
which supersedes the deprecated `outputValidation`. That field is still written,
|
|
16
|
+
with the same `{ droppedPaths }` shape.
|
|
17
|
+
|
|
18
|
+
`defineOverride` is re-exported, so a head can patch how a surface presents an
|
|
19
|
+
SDK method without importing kitcore. `defineMethodOverride` is deprecated in
|
|
20
|
+
its favour and still works.
|
|
21
|
+
|
|
3
22
|
## 0.98.1
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|