We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07d3778 commit d8dec77Copy full SHA for d8dec77
CHANGELOG.md
@@ -2,6 +2,12 @@
2
3
All notable changes to this project will be documented in this file.
4
5
+# [3.13.26] - 19-06-2024
6
+
7
+### Fixes
8
9
+- Search string for `InPlayer.Payment.getSitePlans` appended without `?`
10
11
# [3.13.25] - 17-06-2024
12
13
### Added
src/constants/index.ts
@@ -113,7 +113,7 @@ export const API = {
113
getSitePlans: (siteId: string, plansIds: string[] = []) =>
114
`/v3/sites/${siteId}/plans${
115
plansIds.length
116
- ? `q=id:(${plansIds.map((planId) => `"${planId}"`).join(' OR ')})`
+ ? `?q=id:(${plansIds.map((planId) => `"${planId}"`).join(' OR ')})`
117
: ''
118
}`,
119
0 commit comments