@sentio/api 1.0.3-rc.47 → 1.0.3-rc.49
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/src/types.gen.d.ts +6 -2
- package/package.json +1 -1
- package/src/types.gen.ts +6 -2
package/dist/src/types.gen.d.ts
CHANGED
|
@@ -2387,7 +2387,12 @@ export declare namespace processor_service {
|
|
|
2387
2387
|
owner: string;
|
|
2388
2388
|
slug: string;
|
|
2389
2389
|
};
|
|
2390
|
-
query?:
|
|
2390
|
+
query?: {
|
|
2391
|
+
/**
|
|
2392
|
+
* Optional version to fetch. If omitted, use latest active version.
|
|
2393
|
+
*/
|
|
2394
|
+
version?: number;
|
|
2395
|
+
};
|
|
2391
2396
|
url: '/api/v1/processors/{owner}/{slug}/source_files';
|
|
2392
2397
|
};
|
|
2393
2398
|
type GetProcessorSourceFilesResponses = {
|
|
@@ -3440,7 +3445,6 @@ export declare namespace web_service {
|
|
|
3440
3445
|
dashboardId: string;
|
|
3441
3446
|
};
|
|
3442
3447
|
query?: {
|
|
3443
|
-
projectId?: string;
|
|
3444
3448
|
limit?: number;
|
|
3445
3449
|
offset?: number;
|
|
3446
3450
|
};
|
package/package.json
CHANGED
package/src/types.gen.ts
CHANGED
|
@@ -2398,7 +2398,12 @@ export namespace processor_service {
|
|
|
2398
2398
|
owner: string;
|
|
2399
2399
|
slug: string;
|
|
2400
2400
|
};
|
|
2401
|
-
query?:
|
|
2401
|
+
query?: {
|
|
2402
|
+
/**
|
|
2403
|
+
* Optional version to fetch. If omitted, use latest active version.
|
|
2404
|
+
*/
|
|
2405
|
+
version?: number;
|
|
2406
|
+
};
|
|
2402
2407
|
url: '/api/v1/processors/{owner}/{slug}/source_files';
|
|
2403
2408
|
};
|
|
2404
2409
|
export type GetProcessorSourceFilesResponses = {
|
|
@@ -3453,7 +3458,6 @@ export namespace web_service {
|
|
|
3453
3458
|
dashboardId: string;
|
|
3454
3459
|
};
|
|
3455
3460
|
query?: {
|
|
3456
|
-
projectId?: string;
|
|
3457
3461
|
limit?: number;
|
|
3458
3462
|
offset?: number;
|
|
3459
3463
|
};
|