@roxyapi/sdk 1.2.38 → 1.2.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/dist/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "1.2.38";
1
+ export declare const VERSION = "1.2.39";
2
2
  //# sourceMappingURL=version.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roxyapi/sdk",
3
- "version": "1.2.38",
3
+ "version": "1.2.39",
4
4
  "description": "TypeScript SDK for Roxy — the multi-domain spiritual intelligence API",
5
5
  "type": "module",
6
6
  "exports": {
package/src/sdk.gen.ts CHANGED
@@ -1710,8 +1710,8 @@ export class HumanDesign extends HeyApiClient {
1710
1710
  *
1711
1711
  * Look up the static reference data for a Human Design gate by its number from 1 to 64: the gate keynote name, the center it sits in, the matching I-Ching hexagram, and the gates that form a channel with it. A pure reference endpoint with no birth data required.
1712
1712
  */
1713
- public getGate<ThrowOnError extends boolean = false>(options?: Options<GetHumanDesignGatesByNumberData, ThrowOnError>) {
1714
- return (options?.client ?? this.client).get<GetHumanDesignGatesByNumberResponses, GetHumanDesignGatesByNumberErrors, ThrowOnError>({
1713
+ public getGate<ThrowOnError extends boolean = false>(options: Options<GetHumanDesignGatesByNumberData, ThrowOnError>) {
1714
+ return (options.client ?? this.client).get<GetHumanDesignGatesByNumberResponses, GetHumanDesignGatesByNumberErrors, ThrowOnError>({
1715
1715
  security: [{ name: 'X-API-Key', type: 'apiKey' }],
1716
1716
  url: '/human-design/gates/{number}',
1717
1717
  ...options
package/src/types.gen.ts CHANGED
@@ -25145,11 +25145,11 @@ export type PostHumanDesignGatesResponse = PostHumanDesignGatesResponses[keyof P
25145
25145
 
25146
25146
  export type GetHumanDesignGatesByNumberData = {
25147
25147
  body?: never;
25148
- path?: {
25148
+ path: {
25149
25149
  /**
25150
25150
  * Gate number from 1 to 64.
25151
25151
  */
25152
- number?: number;
25152
+ number: number;
25153
25153
  };
25154
25154
  query?: {
25155
25155
  /**
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '1.2.38';
1
+ export const VERSION = '1.2.39';