@seamapi/types 1.497.0 → 1.498.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 +38 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +75 -0
- package/dist/index.cjs +38 -4
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +62 -0
- package/lib/seam/connect/openapi.js +36 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +13 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +39 -2
- package/src/lib/seam/connect/route-types.ts +13 -0
package/dist/connect.cjs
CHANGED
|
@@ -35799,6 +35799,26 @@ var openapi_default = {
|
|
|
35799
35799
|
minLength: 1,
|
|
35800
35800
|
type: "string"
|
|
35801
35801
|
}
|
|
35802
|
+
},
|
|
35803
|
+
{
|
|
35804
|
+
in: "query",
|
|
35805
|
+
name: "limit",
|
|
35806
|
+
schema: {
|
|
35807
|
+
default: 900,
|
|
35808
|
+
description: "Maximum number of records to return per page.",
|
|
35809
|
+
exclusiveMinimum: true,
|
|
35810
|
+
minimum: 0,
|
|
35811
|
+
type: "integer"
|
|
35812
|
+
}
|
|
35813
|
+
},
|
|
35814
|
+
{
|
|
35815
|
+
in: "query",
|
|
35816
|
+
name: "page_cursor",
|
|
35817
|
+
schema: {
|
|
35818
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
35819
|
+
nullable: true,
|
|
35820
|
+
type: "string"
|
|
35821
|
+
}
|
|
35802
35822
|
}
|
|
35803
35823
|
],
|
|
35804
35824
|
responses: {
|
|
@@ -35811,9 +35831,10 @@ var openapi_default = {
|
|
|
35811
35831
|
items: { $ref: "#/components/schemas/acs_entrance" },
|
|
35812
35832
|
type: "array"
|
|
35813
35833
|
},
|
|
35814
|
-
ok: { type: "boolean" }
|
|
35834
|
+
ok: { type: "boolean" },
|
|
35835
|
+
pagination: { $ref: "#/components/schemas/pagination" }
|
|
35815
35836
|
},
|
|
35816
|
-
required: ["acs_entrances", "ok"],
|
|
35837
|
+
required: ["acs_entrances", "pagination", "ok"],
|
|
35817
35838
|
type: "object"
|
|
35818
35839
|
}
|
|
35819
35840
|
}
|
|
@@ -35876,6 +35897,13 @@ var openapi_default = {
|
|
|
35876
35897
|
format: "uuid",
|
|
35877
35898
|
type: "string"
|
|
35878
35899
|
},
|
|
35900
|
+
limit: {
|
|
35901
|
+
default: 900,
|
|
35902
|
+
description: "Maximum number of records to return per page.",
|
|
35903
|
+
exclusiveMinimum: true,
|
|
35904
|
+
minimum: 0,
|
|
35905
|
+
type: "integer"
|
|
35906
|
+
},
|
|
35879
35907
|
location_id: {
|
|
35880
35908
|
deprecated: true,
|
|
35881
35909
|
format: "uuid",
|
|
@@ -35883,6 +35911,11 @@ var openapi_default = {
|
|
|
35883
35911
|
type: "string",
|
|
35884
35912
|
"x-deprecated": "Use `space_id`."
|
|
35885
35913
|
},
|
|
35914
|
+
page_cursor: {
|
|
35915
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
35916
|
+
nullable: true,
|
|
35917
|
+
type: "string"
|
|
35918
|
+
},
|
|
35886
35919
|
search: {
|
|
35887
35920
|
description: "String for which to search. Filters returned entrances to include all records that satisfy a partial match using `display_name`.",
|
|
35888
35921
|
minLength: 1,
|
|
@@ -35909,9 +35942,10 @@ var openapi_default = {
|
|
|
35909
35942
|
items: { $ref: "#/components/schemas/acs_entrance" },
|
|
35910
35943
|
type: "array"
|
|
35911
35944
|
},
|
|
35912
|
-
ok: { type: "boolean" }
|
|
35945
|
+
ok: { type: "boolean" },
|
|
35946
|
+
pagination: { $ref: "#/components/schemas/pagination" }
|
|
35913
35947
|
},
|
|
35914
|
-
required: ["acs_entrances", "ok"],
|
|
35948
|
+
required: ["acs_entrances", "pagination", "ok"],
|
|
35915
35949
|
type: "object"
|
|
35916
35950
|
}
|
|
35917
35951
|
}
|