@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
|
@@ -79029,11 +79029,11 @@ export type Routes = {
|
|
|
79029
79029
|
'/workspaces/find_anything': {
|
|
79030
79030
|
route: '/workspaces/find_anything';
|
|
79031
79031
|
method: 'GET' | 'POST';
|
|
79032
|
-
queryParams: {
|
|
79032
|
+
queryParams: {};
|
|
79033
|
+
jsonBody: {};
|
|
79034
|
+
commonParams: {
|
|
79033
79035
|
search: string;
|
|
79034
79036
|
};
|
|
79035
|
-
jsonBody: {};
|
|
79036
|
-
commonParams: {};
|
|
79037
79037
|
formData: {};
|
|
79038
79038
|
jsonResponse: {
|
|
79039
79039
|
/** A batch of workspace resources. */
|
package/package.json
CHANGED
|
@@ -56863,14 +56863,17 @@ export default {
|
|
|
56863
56863
|
post: {
|
|
56864
56864
|
description: 'Search for resources inside a workspace.',
|
|
56865
56865
|
operationId: 'workspacesFindAnythingPost',
|
|
56866
|
-
|
|
56867
|
-
{
|
|
56868
|
-
|
|
56869
|
-
|
|
56870
|
-
|
|
56871
|
-
|
|
56866
|
+
requestBody: {
|
|
56867
|
+
content: {
|
|
56868
|
+
'application/json': {
|
|
56869
|
+
schema: {
|
|
56870
|
+
properties: { search: { format: 'uuid', type: 'string' } },
|
|
56871
|
+
required: ['search'],
|
|
56872
|
+
type: 'object',
|
|
56873
|
+
},
|
|
56874
|
+
},
|
|
56872
56875
|
},
|
|
56873
|
-
|
|
56876
|
+
},
|
|
56874
56877
|
responses: {
|
|
56875
56878
|
200: {
|
|
56876
56879
|
content: {
|
|
@@ -93728,11 +93728,11 @@ export type Routes = {
|
|
|
93728
93728
|
'/workspaces/find_anything': {
|
|
93729
93729
|
route: '/workspaces/find_anything'
|
|
93730
93730
|
method: 'GET' | 'POST'
|
|
93731
|
-
queryParams: {
|
|
93731
|
+
queryParams: {}
|
|
93732
|
+
jsonBody: {}
|
|
93733
|
+
commonParams: {
|
|
93732
93734
|
search: string
|
|
93733
93735
|
}
|
|
93734
|
-
jsonBody: {}
|
|
93735
|
-
commonParams: {}
|
|
93736
93736
|
formData: {}
|
|
93737
93737
|
jsonResponse: {
|
|
93738
93738
|
/** A batch of workspace resources. */
|