@seamapi/types 1.890.0 → 1.891.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.
@@ -110432,6 +110432,10 @@ type Routes = {
110432
110432
  connected_account_id?: string | undefined;
110433
110433
  /** Filter spaces by space_key. */
110434
110434
  space_key?: string | undefined;
110435
+ /** Filter spaces to only include those whose parent space has the specified `parent_space_id`. */
110436
+ parent_space_id?: string | undefined;
110437
+ /** Filter spaces to only include those whose parent space has the specified `parent_space_key`. */
110438
+ parent_space_key?: string | undefined;
110435
110439
  };
110436
110440
  formData: {};
110437
110441
  jsonResponse: {
@@ -113683,6 +113687,10 @@ type Routes = {
113683
113687
  connected_account_id?: string | undefined;
113684
113688
  /** Filter spaces by space_key. */
113685
113689
  space_key?: string | undefined;
113690
+ /** Filter spaces to only include those whose parent space has the specified `parent_space_id`. */
113691
+ parent_space_id?: string | undefined;
113692
+ /** Filter spaces to only include those whose parent space has the specified `parent_space_key`. */
113693
+ parent_space_key?: string | undefined;
113686
113694
  /** Maximum number of records to return per page. */
113687
113695
  limit?: number;
113688
113696
  /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
package/dist/index.cjs CHANGED
@@ -76490,6 +76490,25 @@ var openapi = {
76490
76490
  description: "Filter spaces by space_key.",
76491
76491
  type: "string"
76492
76492
  }
76493
+ },
76494
+ {
76495
+ in: "query",
76496
+ name: "parent_space_id",
76497
+ schema: {
76498
+ description: "Filter spaces to only include those whose parent space has the specified `parent_space_id`.",
76499
+ format: "uuid",
76500
+ type: "string",
76501
+ "x-undocumented": "Only used internally."
76502
+ }
76503
+ },
76504
+ {
76505
+ in: "query",
76506
+ name: "parent_space_key",
76507
+ schema: {
76508
+ description: "Filter spaces to only include those whose parent space has the specified `parent_space_key`.",
76509
+ type: "string",
76510
+ "x-undocumented": "Only used internally."
76511
+ }
76493
76512
  }
76494
76513
  ],
76495
76514
  responses: {
@@ -76543,6 +76562,17 @@ var openapi = {
76543
76562
  "x-draft": "Needs review.",
76544
76563
  "x-undocumented": "Only used internally."
76545
76564
  },
76565
+ parent_space_id: {
76566
+ description: "Filter spaces to only include those whose parent space has the specified `parent_space_id`.",
76567
+ format: "uuid",
76568
+ type: "string",
76569
+ "x-undocumented": "Only used internally."
76570
+ },
76571
+ parent_space_key: {
76572
+ description: "Filter spaces to only include those whose parent space has the specified `parent_space_key`.",
76573
+ type: "string",
76574
+ "x-undocumented": "Only used internally."
76575
+ },
76546
76576
  search: {
76547
76577
  description: "String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.",
76548
76578
  minLength: 1,
@@ -79094,6 +79124,25 @@ var openapi = {
79094
79124
  type: "string"
79095
79125
  }
79096
79126
  },
79127
+ {
79128
+ in: "query",
79129
+ name: "parent_space_id",
79130
+ schema: {
79131
+ description: "Filter spaces to only include those whose parent space has the specified `parent_space_id`.",
79132
+ format: "uuid",
79133
+ type: "string",
79134
+ "x-undocumented": "Only used internally."
79135
+ }
79136
+ },
79137
+ {
79138
+ in: "query",
79139
+ name: "parent_space_key",
79140
+ schema: {
79141
+ description: "Filter spaces to only include those whose parent space has the specified `parent_space_key`.",
79142
+ type: "string",
79143
+ "x-undocumented": "Only used internally."
79144
+ }
79145
+ },
79097
79146
  {
79098
79147
  in: "query",
79099
79148
  name: "limit",
@@ -79181,6 +79230,17 @@ var openapi = {
79181
79230
  nullable: true,
79182
79231
  type: "string"
79183
79232
  },
79233
+ parent_space_id: {
79234
+ description: "Filter spaces to only include those whose parent space has the specified `parent_space_id`.",
79235
+ format: "uuid",
79236
+ type: "string",
79237
+ "x-undocumented": "Only used internally."
79238
+ },
79239
+ parent_space_key: {
79240
+ description: "Filter spaces to only include those whose parent space has the specified `parent_space_key`.",
79241
+ type: "string",
79242
+ "x-undocumented": "Only used internally."
79243
+ },
79184
79244
  search: {
79185
79245
  description: "String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`, `space_key`, or `customer_key`.",
79186
79246
  minLength: 1,