@tapi-dev/sdk 0.1.20 → 0.1.21

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.
Files changed (2) hide show
  1. package/dist/types.d.ts +4 -0
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -158,6 +158,8 @@ export interface WebsiteApiOperation {
158
158
  version?: string;
159
159
  status?: string;
160
160
  publishedAt?: string | null;
161
+ variant?: "desktop" | "mobile" | string;
162
+ runtime?: RuntimeRunOptions | Record<string, unknown>;
161
163
  inputs: WebsiteApiInputContract[];
162
164
  outputs?: WebsiteApiOutputContract[];
163
165
  inputSchema?: Record<string, unknown>;
@@ -365,6 +367,8 @@ export interface SdkCatalogRequest {
365
367
  status: string;
366
368
  operation?: string;
367
369
  sdkName?: string;
370
+ variant?: "desktop" | "mobile" | string;
371
+ runtime?: RuntimeRunOptions | Record<string, unknown>;
368
372
  inputs?: WebsiteApiInputContract[];
369
373
  inputSchema?: Record<string, unknown>;
370
374
  outputSchema?: Record<string, unknown>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tapi-dev/sdk",
3
- "version": "0.1.20",
3
+ "version": "0.1.21",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",