@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
|
@@ -18313,6 +18313,8 @@ export type Routes = {
|
|
|
18313
18313
|
created_before?: Date | undefined;
|
|
18314
18314
|
/** Indicates whether you want to retrieve only multi-phone sync credentials or non-multi-phone sync credentials. */
|
|
18315
18315
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
18316
|
+
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
18317
|
+
page_cursor?: (string | undefined) | null;
|
|
18316
18318
|
};
|
|
18317
18319
|
formData: {};
|
|
18318
18320
|
jsonResponse: {
|
|
@@ -18447,6 +18449,15 @@ export type Routes = {
|
|
|
18447
18449
|
} | undefined;
|
|
18448
18450
|
is_managed: true;
|
|
18449
18451
|
}[];
|
|
18452
|
+
/** Information about the current page of results. */
|
|
18453
|
+
pagination: {
|
|
18454
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
18455
|
+
next_page_cursor: string | null;
|
|
18456
|
+
/** Indicates whether there is another page of results after this one. */
|
|
18457
|
+
has_next_page: boolean;
|
|
18458
|
+
/** URL to get the next page of results. */
|
|
18459
|
+
next_page_url: string | null;
|
|
18460
|
+
};
|
|
18450
18461
|
};
|
|
18451
18462
|
};
|
|
18452
18463
|
'/acs/credentials/list_accessible_entrances': {
|
package/package.json
CHANGED
|
@@ -31402,8 +31402,9 @@ export default {
|
|
|
31402
31402
|
type: 'array',
|
|
31403
31403
|
},
|
|
31404
31404
|
ok: { type: 'boolean' },
|
|
31405
|
+
pagination: { $ref: '#/components/schemas/pagination' },
|
|
31405
31406
|
},
|
|
31406
|
-
required: ['acs_credentials', 'ok'],
|
|
31407
|
+
required: ['acs_credentials', 'pagination', 'ok'],
|
|
31407
31408
|
type: 'object',
|
|
31408
31409
|
},
|
|
31409
31410
|
},
|
|
@@ -31514,6 +31515,12 @@ export default {
|
|
|
31514
31515
|
format: 'float',
|
|
31515
31516
|
type: 'number',
|
|
31516
31517
|
},
|
|
31518
|
+
page_cursor: {
|
|
31519
|
+
description:
|
|
31520
|
+
"Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
31521
|
+
nullable: true,
|
|
31522
|
+
type: 'string',
|
|
31523
|
+
},
|
|
31517
31524
|
},
|
|
31518
31525
|
type: 'object',
|
|
31519
31526
|
},
|
|
@@ -31533,8 +31540,9 @@ export default {
|
|
|
31533
31540
|
type: 'array',
|
|
31534
31541
|
},
|
|
31535
31542
|
ok: { type: 'boolean' },
|
|
31543
|
+
pagination: { $ref: '#/components/schemas/pagination' },
|
|
31536
31544
|
},
|
|
31537
|
-
required: ['acs_credentials', 'ok'],
|
|
31545
|
+
required: ['acs_credentials', 'pagination', 'ok'],
|
|
31538
31546
|
type: 'object',
|
|
31539
31547
|
},
|
|
31540
31548
|
},
|
|
@@ -32962,6 +32970,7 @@ export default {
|
|
|
32962
32970
|
{ api_key: [] },
|
|
32963
32971
|
{ access_token: [] },
|
|
32964
32972
|
{ console_session_with_workspace: [] },
|
|
32973
|
+
{ client_session_with_customer: [] },
|
|
32965
32974
|
{ client_session: [] },
|
|
32966
32975
|
],
|
|
32967
32976
|
summary: '/acs/entrances/get',
|
|
@@ -33016,6 +33025,7 @@ export default {
|
|
|
33016
33025
|
{ api_key: [] },
|
|
33017
33026
|
{ access_token: [] },
|
|
33018
33027
|
{ console_session_with_workspace: [] },
|
|
33028
|
+
{ client_session_with_customer: [] },
|
|
33019
33029
|
{ client_session: [] },
|
|
33020
33030
|
],
|
|
33021
33031
|
summary: '/acs/entrances/get',
|
|
@@ -21214,6 +21214,8 @@ export type Routes = {
|
|
|
21214
21214
|
created_before?: Date | undefined
|
|
21215
21215
|
/** Indicates whether you want to retrieve only multi-phone sync credentials or non-multi-phone sync credentials. */
|
|
21216
21216
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
21217
|
+
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
21218
|
+
page_cursor?: (string | undefined) | null
|
|
21217
21219
|
}
|
|
21218
21220
|
formData: {}
|
|
21219
21221
|
jsonResponse: {
|
|
@@ -21374,6 +21376,15 @@ export type Routes = {
|
|
|
21374
21376
|
| undefined
|
|
21375
21377
|
is_managed: true
|
|
21376
21378
|
}[]
|
|
21379
|
+
/** Information about the current page of results. */
|
|
21380
|
+
pagination: {
|
|
21381
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
21382
|
+
next_page_cursor: string | null
|
|
21383
|
+
/** Indicates whether there is another page of results after this one. */
|
|
21384
|
+
has_next_page: boolean
|
|
21385
|
+
/** URL to get the next page of results. */
|
|
21386
|
+
next_page_url: string | null
|
|
21387
|
+
}
|
|
21377
21388
|
}
|
|
21378
21389
|
}
|
|
21379
21390
|
'/acs/credentials/list_accessible_entrances': {
|