@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.
@@ -99518,15 +99518,22 @@ declare const _default: {
99518
99518
  post: {
99519
99519
  description: string;
99520
99520
  operationId: string;
99521
- parameters: {
99522
- in: string;
99523
- name: string;
99524
- required: boolean;
99525
- schema: {
99526
- format: string;
99527
- type: string;
99521
+ requestBody: {
99522
+ content: {
99523
+ 'application/json': {
99524
+ schema: {
99525
+ properties: {
99526
+ search: {
99527
+ format: string;
99528
+ type: string;
99529
+ };
99530
+ };
99531
+ required: string[];
99532
+ type: string;
99533
+ };
99534
+ };
99528
99535
  };
99529
- }[];
99536
+ };
99530
99537
  responses: {
99531
99538
  200: {
99532
99539
  content: {
@@ -179299,11 +179306,11 @@ type Routes = {
179299
179306
  '/workspaces/find_anything': {
179300
179307
  route: '/workspaces/find_anything';
179301
179308
  method: 'GET' | 'POST';
179302
- queryParams: {
179309
+ queryParams: {};
179310
+ jsonBody: {};
179311
+ commonParams: {
179303
179312
  search: string;
179304
179313
  };
179305
- jsonBody: {};
179306
- commonParams: {};
179307
179314
  formData: {};
179308
179315
  jsonResponse: {
179309
179316
  /** A batch of workspace resources. */
package/dist/index.cjs CHANGED
@@ -58125,14 +58125,17 @@ var openapi_default = {
58125
58125
  post: {
58126
58126
  description: "Search for resources inside a workspace.",
58127
58127
  operationId: "workspacesFindAnythingPost",
58128
- parameters: [
58129
- {
58130
- in: "query",
58131
- name: "search",
58132
- required: true,
58133
- schema: { format: "uuid", type: "string" }
58128
+ requestBody: {
58129
+ content: {
58130
+ "application/json": {
58131
+ schema: {
58132
+ properties: { search: { format: "uuid", type: "string" } },
58133
+ required: ["search"],
58134
+ type: "object"
58135
+ }
58136
+ }
58134
58137
  }
58135
- ],
58138
+ },
58136
58139
  responses: {
58137
58140
  200: {
58138
58141
  content: {