@seamapi/types 1.452.0 → 1.453.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 +56 -0
- package/dist/index.cjs +38 -4
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +43 -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 +40 -2
- package/src/lib/seam/connect/route-types.ts +13 -0
package/dist/connect.cjs
CHANGED
|
@@ -29479,6 +29479,27 @@ var openapi_default = {
|
|
|
29479
29479
|
description: "Your user ID for the user by which to filter unmanaged access codes.",
|
|
29480
29480
|
type: "string"
|
|
29481
29481
|
}
|
|
29482
|
+
},
|
|
29483
|
+
{
|
|
29484
|
+
in: "query",
|
|
29485
|
+
name: "limit",
|
|
29486
|
+
required: false,
|
|
29487
|
+
schema: {
|
|
29488
|
+
default: 3e5,
|
|
29489
|
+
description: "Numerical limit on the number of unmanaged access codes to return.",
|
|
29490
|
+
format: "float",
|
|
29491
|
+
type: "number"
|
|
29492
|
+
}
|
|
29493
|
+
},
|
|
29494
|
+
{
|
|
29495
|
+
in: "query",
|
|
29496
|
+
name: "page_cursor",
|
|
29497
|
+
required: false,
|
|
29498
|
+
schema: {
|
|
29499
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
29500
|
+
nullable: true,
|
|
29501
|
+
type: "string"
|
|
29502
|
+
}
|
|
29482
29503
|
}
|
|
29483
29504
|
],
|
|
29484
29505
|
responses: {
|
|
@@ -29493,9 +29514,10 @@ var openapi_default = {
|
|
|
29493
29514
|
},
|
|
29494
29515
|
type: "array"
|
|
29495
29516
|
},
|
|
29496
|
-
ok: { type: "boolean" }
|
|
29517
|
+
ok: { type: "boolean" },
|
|
29518
|
+
pagination: { $ref: "#/components/schemas/pagination" }
|
|
29497
29519
|
},
|
|
29498
|
-
required: ["access_codes", "ok"],
|
|
29520
|
+
required: ["access_codes", "pagination", "ok"],
|
|
29499
29521
|
type: "object"
|
|
29500
29522
|
}
|
|
29501
29523
|
}
|
|
@@ -29532,6 +29554,17 @@ var openapi_default = {
|
|
|
29532
29554
|
format: "uuid",
|
|
29533
29555
|
type: "string"
|
|
29534
29556
|
},
|
|
29557
|
+
limit: {
|
|
29558
|
+
default: 3e5,
|
|
29559
|
+
description: "Numerical limit on the number of unmanaged access codes to return.",
|
|
29560
|
+
format: "float",
|
|
29561
|
+
type: "number"
|
|
29562
|
+
},
|
|
29563
|
+
page_cursor: {
|
|
29564
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
29565
|
+
nullable: true,
|
|
29566
|
+
type: "string"
|
|
29567
|
+
},
|
|
29535
29568
|
user_identifier_key: {
|
|
29536
29569
|
description: "Your user ID for the user by which to filter unmanaged access codes.",
|
|
29537
29570
|
type: "string"
|
|
@@ -29555,9 +29588,10 @@ var openapi_default = {
|
|
|
29555
29588
|
},
|
|
29556
29589
|
type: "array"
|
|
29557
29590
|
},
|
|
29558
|
-
ok: { type: "boolean" }
|
|
29591
|
+
ok: { type: "boolean" },
|
|
29592
|
+
pagination: { $ref: "#/components/schemas/pagination" }
|
|
29559
29593
|
},
|
|
29560
|
-
required: ["access_codes", "ok"],
|
|
29594
|
+
required: ["access_codes", "pagination", "ok"],
|
|
29561
29595
|
type: "object"
|
|
29562
29596
|
}
|
|
29563
29597
|
}
|