sharetribe-flex-sdk 1.22.0 → 1.24.0-alpha.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 +14 -2
- package/build/sharetribe-flex-sdk-node.js +241 -140
- package/build/sharetribe-flex-sdk-web.js +1 -1
- package/docs/README.md +2 -1
- package/docs/calling-the-api.md +1 -1
- package/docs/file-uploads-and-downloads.md +168 -0
- package/docs/query-parameter-serialization.md +152 -0
- package/docs/scripts.js +27 -0
- package/package.json +2 -2
- package/playground.js +19 -2
- package/src/endpoints.js +24 -0
- package/src/file.js +40 -0
- package/src/index.js +4 -2
- package/src/params_serializer.js +23 -3
- package/src/params_serializer.test.js +25 -0
- package/src/version.js +1 -1
- package/.clj-kondo/.cache/v1/lock +0 -0
- package/.lsp/.cache/db.transit.json +0 -1
- package/docs/object-query-parameters.md +0 -36
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,17 @@ adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased] - xxxx-xx-xx
|
|
10
10
|
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- Update jsonwebtoken to 9.0.3 [#207](https://github.com/sharetribe/flex-sdk-js/pull/207)
|
|
14
|
+
|
|
15
|
+
## [v1.23.0] - 2026-02-12
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
|
|
19
|
+
- Added ability to pass query parameters as a string or query parts [#202](https://github.com/sharetribe/flex-sdk-js/pull/202)
|
|
20
|
+
- Added `sharetribeSdk.util.queryString` function for query parameter serialization [#202](https://github.com/sharetribe/flex-sdk-js/pull/202)
|
|
21
|
+
|
|
11
22
|
## [v1.22.0] - 2025-11-24
|
|
12
23
|
|
|
13
24
|
### Changed
|
|
@@ -337,9 +348,10 @@ See: https://www.npmjs.com/package/sharetribe-flex-sdk
|
|
|
337
348
|
to prepare for publishing to NPM. Remember to check your existing
|
|
338
349
|
imports!
|
|
339
350
|
|
|
340
|
-
[unreleased]: https://github.com/sharetribe/flex-sdk-js/compare/v1.
|
|
351
|
+
[unreleased]: https://github.com/sharetribe/flex-sdk-js/compare/v1.23.0...HEAD
|
|
341
352
|
|
|
342
|
-
[v1.
|
|
353
|
+
[v1.23.0]: https://github.com/sharetribe/flex-sdk-js/compare/v1.22.0...v1.23.0
|
|
354
|
+
[v1.22.0]: https://github.com/sharetribe/flex-sdk-js/compare/v1.21.1...v1.22.0
|
|
343
355
|
[v1.21.1]: https://github.com/sharetribe/flex-sdk-js/compare/v1.21.0...v1.21.1
|
|
344
356
|
[v1.21.0]: https://github.com/sharetribe/flex-sdk-js/compare/v1.20.1...v1.21.0
|
|
345
357
|
[v1.20.1]: https://github.com/sharetribe/flex-sdk-js/compare/v1.20.0...v1.20.1
|