@seamapi/types 1.483.0 → 1.485.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 +13 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +42 -0
- package/dist/index.cjs +13 -4
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +31 -0
- package/lib/seam/connect/openapi.js +11 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +11 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +12 -2
- package/src/lib/seam/connect/route-types.ts +11 -0
package/dist/connect.cjs
CHANGED
|
@@ -33924,9 +33924,10 @@ var openapi_default = {
|
|
|
33924
33924
|
items: { $ref: "#/components/schemas/acs_credential" },
|
|
33925
33925
|
type: "array"
|
|
33926
33926
|
},
|
|
33927
|
-
ok: { type: "boolean" }
|
|
33927
|
+
ok: { type: "boolean" },
|
|
33928
|
+
pagination: { $ref: "#/components/schemas/pagination" }
|
|
33928
33929
|
},
|
|
33929
|
-
required: ["acs_credentials", "ok"],
|
|
33930
|
+
required: ["acs_credentials", "pagination", "ok"],
|
|
33930
33931
|
type: "object"
|
|
33931
33932
|
}
|
|
33932
33933
|
}
|
|
@@ -34028,6 +34029,11 @@ var openapi_default = {
|
|
|
34028
34029
|
description: "Number of credentials to return.",
|
|
34029
34030
|
format: "float",
|
|
34030
34031
|
type: "number"
|
|
34032
|
+
},
|
|
34033
|
+
page_cursor: {
|
|
34034
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
34035
|
+
nullable: true,
|
|
34036
|
+
type: "string"
|
|
34031
34037
|
}
|
|
34032
34038
|
},
|
|
34033
34039
|
type: "object"
|
|
@@ -34047,9 +34053,10 @@ var openapi_default = {
|
|
|
34047
34053
|
items: { $ref: "#/components/schemas/acs_credential" },
|
|
34048
34054
|
type: "array"
|
|
34049
34055
|
},
|
|
34050
|
-
ok: { type: "boolean" }
|
|
34056
|
+
ok: { type: "boolean" },
|
|
34057
|
+
pagination: { $ref: "#/components/schemas/pagination" }
|
|
34051
34058
|
},
|
|
34052
|
-
required: ["acs_credentials", "ok"],
|
|
34059
|
+
required: ["acs_credentials", "pagination", "ok"],
|
|
34053
34060
|
type: "object"
|
|
34054
34061
|
}
|
|
34055
34062
|
}
|
|
@@ -35415,6 +35422,7 @@ var openapi_default = {
|
|
|
35415
35422
|
{ api_key: [] },
|
|
35416
35423
|
{ access_token: [] },
|
|
35417
35424
|
{ console_session_with_workspace: [] },
|
|
35425
|
+
{ client_session_with_customer: [] },
|
|
35418
35426
|
{ client_session: [] }
|
|
35419
35427
|
],
|
|
35420
35428
|
summary: "/acs/entrances/get",
|
|
@@ -35468,6 +35476,7 @@ var openapi_default = {
|
|
|
35468
35476
|
{ api_key: [] },
|
|
35469
35477
|
{ access_token: [] },
|
|
35470
35478
|
{ console_session_with_workspace: [] },
|
|
35479
|
+
{ client_session_with_customer: [] },
|
|
35471
35480
|
{ client_session: [] }
|
|
35472
35481
|
],
|
|
35473
35482
|
summary: "/acs/entrances/get",
|