@seamapi/types 1.494.0 → 1.495.0
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/connect.cjs +10 -7
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +18 -11
- package/dist/index.cjs +10 -7
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +15 -8
- package/lib/seam/connect/openapi.js +10 -7
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +10 -7
- package/src/lib/seam/connect/route-types.ts +3 -3
|
@@ -48838,15 +48838,22 @@ declare const _default: {
|
|
|
48838
48838
|
post: {
|
|
48839
48839
|
description: string;
|
|
48840
48840
|
operationId: string;
|
|
48841
|
-
|
|
48842
|
-
|
|
48843
|
-
|
|
48844
|
-
|
|
48845
|
-
|
|
48846
|
-
|
|
48847
|
-
|
|
48841
|
+
requestBody: {
|
|
48842
|
+
content: {
|
|
48843
|
+
'application/json': {
|
|
48844
|
+
schema: {
|
|
48845
|
+
properties: {
|
|
48846
|
+
search: {
|
|
48847
|
+
format: string;
|
|
48848
|
+
type: string;
|
|
48849
|
+
};
|
|
48850
|
+
};
|
|
48851
|
+
required: string[];
|
|
48852
|
+
type: string;
|
|
48853
|
+
};
|
|
48854
|
+
};
|
|
48848
48855
|
};
|
|
48849
|
-
}
|
|
48856
|
+
};
|
|
48850
48857
|
responses: {
|
|
48851
48858
|
200: {
|
|
48852
48859
|
content: {
|
|
@@ -52587,14 +52587,17 @@ export default {
|
|
|
52587
52587
|
post: {
|
|
52588
52588
|
description: 'Search for resources inside a workspace.',
|
|
52589
52589
|
operationId: 'workspacesFindAnythingPost',
|
|
52590
|
-
|
|
52591
|
-
{
|
|
52592
|
-
|
|
52593
|
-
|
|
52594
|
-
|
|
52595
|
-
|
|
52590
|
+
requestBody: {
|
|
52591
|
+
content: {
|
|
52592
|
+
'application/json': {
|
|
52593
|
+
schema: {
|
|
52594
|
+
properties: { search: { format: 'uuid', type: 'string' } },
|
|
52595
|
+
required: ['search'],
|
|
52596
|
+
type: 'object',
|
|
52597
|
+
},
|
|
52598
|
+
},
|
|
52596
52599
|
},
|
|
52597
|
-
|
|
52600
|
+
},
|
|
52598
52601
|
responses: {
|
|
52599
52602
|
200: {
|
|
52600
52603
|
content: {
|