@juhuu/sdk-ts 1.2.186 → 1.2.187

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/dist/index.js CHANGED
@@ -2925,7 +2925,8 @@ var ApiKeysService = class extends Service {
2925
2925
  method: "PATCH",
2926
2926
  url: "apiKeys/" + ApiKeyUpdateParams.apiKeyId,
2927
2927
  body: {
2928
- status: ApiKeyUpdateParams.status
2928
+ status: ApiKeyUpdateParams.status,
2929
+ name: ApiKeyUpdateParams.name
2929
2930
  },
2930
2931
  authenticationNotOptional: true
2931
2932
  },
package/dist/index.mjs CHANGED
@@ -2881,7 +2881,8 @@ var ApiKeysService = class extends Service {
2881
2881
  method: "PATCH",
2882
2882
  url: "apiKeys/" + ApiKeyUpdateParams.apiKeyId,
2883
2883
  body: {
2884
- status: ApiKeyUpdateParams.status
2884
+ status: ApiKeyUpdateParams.status,
2885
+ name: ApiKeyUpdateParams.name
2885
2886
  },
2886
2887
  authenticationNotOptional: true
2887
2888
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.186",
3
+ "version": "1.2.187",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",