@wandelbots/nova-js 3.9.0-pr.280.74e07a8 → 3.9.0-pr.280.8c5fb2f

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": "@wandelbots/nova-js",
3
3
  "type": "module",
4
- "version": "3.9.0-pr.280.74e07a8",
4
+ "version": "3.9.0-pr.280.8c5fb2f",
5
5
  "description": "Official JS client for the Wandelbots API",
6
6
  "sideEffects": false,
7
7
  "packageManager": "pnpm@11.1.3+sha512.c85357fe17ca12dd23dd7071822666dfd7e3cb76fe214e3370b5ea2fb34f2a231185509b63e717f3cd0acb38dd3f8d82bcd5e8172400ae678b70ea4fbed0896d",
@@ -45,7 +45,6 @@ export type NovaClientConfig = {
45
45
 
46
46
  /**
47
47
  * Access token for Bearer authentication.
48
- * @deprecated use accessToken instead
49
48
  */
50
49
  accessToken?: string
51
50
  } & Omit<BaseConfiguration, "isJsonMime" | "basePath">
@@ -40,7 +40,7 @@ type ApiConstructors = {
40
40
  type CamelCase<S extends string> =
41
41
  S extends `${Uppercase<infer A>}${Uppercase<infer B>}${infer Rest}`
42
42
  ? Rest extends `${Lowercase<string>}${string}`
43
- ? `${Lowercase<A>}${CamelCase<`${Uppercase<B>}${Rest}`>}`
43
+ ? `${Lowercase<A>}${Uppercase<B>}${CamelCase<Rest>}`
44
44
  : `${Lowercase<A>}${CamelCase<`${Uppercase<B>}${Rest}`>}`
45
45
  : Uncapitalize<S>
46
46