@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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.494.0",
3
+ "version": "1.495.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -56863,14 +56863,17 @@ export default {
56863
56863
  post: {
56864
56864
  description: 'Search for resources inside a workspace.',
56865
56865
  operationId: 'workspacesFindAnythingPost',
56866
- parameters: [
56867
- {
56868
- in: 'query',
56869
- name: 'search',
56870
- required: true,
56871
- schema: { format: 'uuid', type: 'string' },
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. */