@api-client/core 0.19.38 → 0.19.39

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@api-client/core",
3
3
  "description": "The API Client's core client library. Works in NodeJS and in a ES enabled browser.",
4
- "version": "0.19.38",
4
+ "version": "0.19.39",
5
5
  "license": "UNLICENSED",
6
6
  "exports": {
7
7
  "./browser.js": {
@@ -1515,7 +1515,7 @@ export class SdkMock {
1515
1515
  const filter = this.decodeFilter(query.filter)
1516
1516
  const schema: Partial<DeploymentSchema> = {}
1517
1517
  if (isAtomicFilter(filter)) {
1518
- if (['apiId', 'api_id'].includes(filter.field)) {
1518
+ if (filter.field === 'fid') {
1519
1519
  if (filter.operator === 'eq') {
1520
1520
  schema.apiId = filter.value as string
1521
1521
  }