@redplanethq/sdk 0.1.12 → 0.1.13

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.d.mts CHANGED
@@ -410,7 +410,11 @@ declare class Spec {
410
410
  schedule?: {
411
411
  frequency?: string;
412
412
  };
413
- auth?: Record<AuthType, OAuth2Params | APIKeyParams | McpAuthParams>;
413
+ auth?: {
414
+ OAuth2?: OAuth2Params;
415
+ api_key?: APIKeyParams;
416
+ mcp?: McpAuthParams;
417
+ };
414
418
  }
415
419
  interface Config {
416
420
  access_token: string;
package/dist/index.d.ts CHANGED
@@ -410,7 +410,11 @@ declare class Spec {
410
410
  schedule?: {
411
411
  frequency?: string;
412
412
  };
413
- auth?: Record<AuthType, OAuth2Params | APIKeyParams | McpAuthParams>;
413
+ auth?: {
414
+ OAuth2?: OAuth2Params;
415
+ api_key?: APIKeyParams;
416
+ mcp?: McpAuthParams;
417
+ };
414
418
  }
415
419
  interface Config {
416
420
  access_token: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redplanethq/sdk",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "CORE Node.JS SDK",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",