@seamapi/types 1.700.0 → 1.701.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 +36 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +60 -0
- package/dist/index.cjs +36 -4
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +47 -0
- package/lib/seam/connect/openapi.js +34 -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 +38 -2
- package/src/lib/seam/connect/route-types.ts +13 -0
package/dist/connect.cjs
CHANGED
|
@@ -32832,6 +32832,25 @@ var openapi_default = {
|
|
|
32832
32832
|
type: "string"
|
|
32833
32833
|
}
|
|
32834
32834
|
},
|
|
32835
|
+
{
|
|
32836
|
+
in: "query",
|
|
32837
|
+
name: "limit",
|
|
32838
|
+
schema: {
|
|
32839
|
+
default: 500,
|
|
32840
|
+
description: "Numerical limit on the number of access grants to return.",
|
|
32841
|
+
format: "float",
|
|
32842
|
+
type: "number"
|
|
32843
|
+
}
|
|
32844
|
+
},
|
|
32845
|
+
{
|
|
32846
|
+
in: "query",
|
|
32847
|
+
name: "page_cursor",
|
|
32848
|
+
schema: {
|
|
32849
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
32850
|
+
nullable: true,
|
|
32851
|
+
type: "string"
|
|
32852
|
+
}
|
|
32853
|
+
},
|
|
32835
32854
|
{
|
|
32836
32855
|
in: "query",
|
|
32837
32856
|
name: "user_identity_id",
|
|
@@ -32905,9 +32924,10 @@ var openapi_default = {
|
|
|
32905
32924
|
items: { $ref: "#/components/schemas/access_grant" },
|
|
32906
32925
|
type: "array"
|
|
32907
32926
|
},
|
|
32908
|
-
ok: { type: "boolean" }
|
|
32927
|
+
ok: { type: "boolean" },
|
|
32928
|
+
pagination: { $ref: "#/components/schemas/pagination" }
|
|
32909
32929
|
},
|
|
32910
|
-
required: ["access_grants", "ok"],
|
|
32930
|
+
required: ["access_grants", "pagination", "ok"],
|
|
32911
32931
|
type: "object"
|
|
32912
32932
|
}
|
|
32913
32933
|
}
|
|
@@ -32958,12 +32978,23 @@ var openapi_default = {
|
|
|
32958
32978
|
description: "Customer key for which you want to list access grants.",
|
|
32959
32979
|
type: "string"
|
|
32960
32980
|
},
|
|
32981
|
+
limit: {
|
|
32982
|
+
default: 500,
|
|
32983
|
+
description: "Numerical limit on the number of access grants to return.",
|
|
32984
|
+
format: "float",
|
|
32985
|
+
type: "number"
|
|
32986
|
+
},
|
|
32961
32987
|
location_id: {
|
|
32962
32988
|
deprecated: true,
|
|
32963
32989
|
format: "uuid",
|
|
32964
32990
|
type: "string",
|
|
32965
32991
|
"x-deprecated": "Use `space_id`."
|
|
32966
32992
|
},
|
|
32993
|
+
page_cursor: {
|
|
32994
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
32995
|
+
nullable: true,
|
|
32996
|
+
type: "string"
|
|
32997
|
+
},
|
|
32967
32998
|
reservation_key: {
|
|
32968
32999
|
description: "Filter Access Grants by reservation_key.",
|
|
32969
33000
|
type: "string"
|
|
@@ -32994,9 +33025,10 @@ var openapi_default = {
|
|
|
32994
33025
|
items: { $ref: "#/components/schemas/access_grant" },
|
|
32995
33026
|
type: "array"
|
|
32996
33027
|
},
|
|
32997
|
-
ok: { type: "boolean" }
|
|
33028
|
+
ok: { type: "boolean" },
|
|
33029
|
+
pagination: { $ref: "#/components/schemas/pagination" }
|
|
32998
33030
|
},
|
|
32999
|
-
required: ["access_grants", "ok"],
|
|
33031
|
+
required: ["access_grants", "pagination", "ok"],
|
|
33000
33032
|
type: "object"
|
|
33001
33033
|
}
|
|
33002
33034
|
}
|