Skip to content

Commit b3dc0f5

Browse files
release: v1.2.39
1 parent 3605ce8 commit b3dc0f5

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@roxyapi/sdk",
3-
"version": "1.2.38",
3+
"version": "1.2.39",
44
"description": "TypeScript SDK for Roxy — the multi-domain spiritual intelligence API",
55
"type": "module",
66
"exports": {

specs/openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50663,7 +50663,7 @@
5066350663
"example": 34,
5066450664
"description": "Gate number from 1 to 64."
5066550665
},
50666-
"required": false,
50666+
"required": true,
5066750667
"description": "Gate number from 1 to 64.",
5066850668
"name": "number",
5066950669
"in": "path"

src/sdk.gen.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1710,8 +1710,8 @@ export class HumanDesign extends HeyApiClient {
17101710
*
17111711
* 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.
17121712
*/
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>({
17151715
security: [{ name: 'X-API-Key', type: 'apiKey' }],
17161716
url: '/human-design/gates/{number}',
17171717
...options

src/types.gen.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25145,11 +25145,11 @@ export type PostHumanDesignGatesResponse = PostHumanDesignGatesResponses[keyof P
2514525145

2514625146
export type GetHumanDesignGatesByNumberData = {
2514725147
body?: never;
25148-
path?: {
25148+
path: {
2514925149
/**
2515025150
* Gate number from 1 to 64.
2515125151
*/
25152-
number?: number;
25152+
number: number;
2515325153
};
2515425154
query?: {
2515525155
/**

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '1.2.38';
1+
export const VERSION = '1.2.39';

0 commit comments

Comments
 (0)