@seamapi/types 1.483.0 → 1.484.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 +11 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +22 -0
- package/dist/index.cjs +11 -4
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +11 -0
- package/lib/seam/connect/openapi.js +9 -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 +10 -2
- package/src/lib/seam/connect/route-types.ts +11 -0
package/dist/connect.d.cts
CHANGED
|
@@ -61410,6 +61410,9 @@ declare const _default: {
|
|
|
61410
61410
|
ok: {
|
|
61411
61411
|
type: string;
|
|
61412
61412
|
};
|
|
61413
|
+
pagination: {
|
|
61414
|
+
$ref: string;
|
|
61415
|
+
};
|
|
61413
61416
|
};
|
|
61414
61417
|
required: string[];
|
|
61415
61418
|
type: string;
|
|
@@ -61542,6 +61545,11 @@ declare const _default: {
|
|
|
61542
61545
|
format: string;
|
|
61543
61546
|
type: string;
|
|
61544
61547
|
};
|
|
61548
|
+
page_cursor: {
|
|
61549
|
+
description: string;
|
|
61550
|
+
nullable: boolean;
|
|
61551
|
+
type: string;
|
|
61552
|
+
};
|
|
61545
61553
|
};
|
|
61546
61554
|
type: string;
|
|
61547
61555
|
oneOf?: never;
|
|
@@ -61565,6 +61573,9 @@ declare const _default: {
|
|
|
61565
61573
|
ok: {
|
|
61566
61574
|
type: string;
|
|
61567
61575
|
};
|
|
61576
|
+
pagination: {
|
|
61577
|
+
$ref: string;
|
|
61578
|
+
};
|
|
61568
61579
|
};
|
|
61569
61580
|
required: string[];
|
|
61570
61581
|
type: string;
|
|
@@ -108435,6 +108446,8 @@ type Routes = {
|
|
|
108435
108446
|
created_before?: Date | undefined;
|
|
108436
108447
|
/** Indicates whether you want to retrieve only multi-phone sync credentials or non-multi-phone sync credentials. */
|
|
108437
108448
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
108449
|
+
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
108450
|
+
page_cursor?: (string | undefined) | null;
|
|
108438
108451
|
};
|
|
108439
108452
|
formData: {};
|
|
108440
108453
|
jsonResponse: {
|
|
@@ -108569,6 +108582,15 @@ type Routes = {
|
|
|
108569
108582
|
} | undefined;
|
|
108570
108583
|
is_managed: true;
|
|
108571
108584
|
}[];
|
|
108585
|
+
/** Information about the current page of results. */
|
|
108586
|
+
pagination: {
|
|
108587
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
108588
|
+
next_page_cursor: string | null;
|
|
108589
|
+
/** Indicates whether there is another page of results after this one. */
|
|
108590
|
+
has_next_page: boolean;
|
|
108591
|
+
/** URL to get the next page of results. */
|
|
108592
|
+
next_page_url: string | null;
|
|
108593
|
+
};
|
|
108572
108594
|
};
|
|
108573
108595
|
};
|
|
108574
108596
|
'/acs/credentials/list_accessible_entrances': {
|
package/dist/index.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
|
}
|