@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 +5 -1
- package/dist/index.d.ts +5 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -410,7 +410,11 @@ declare class Spec {
|
|
|
410
410
|
schedule?: {
|
|
411
411
|
frequency?: string;
|
|
412
412
|
};
|
|
413
|
-
auth?:
|
|
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?:
|
|
413
|
+
auth?: {
|
|
414
|
+
OAuth2?: OAuth2Params;
|
|
415
|
+
api_key?: APIKeyParams;
|
|
416
|
+
mcp?: McpAuthParams;
|
|
417
|
+
};
|
|
414
418
|
}
|
|
415
419
|
interface Config {
|
|
416
420
|
access_token: string;
|