@seamapi/types 1.537.0 → 1.539.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 +5 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +17 -1
- package/dist/index.cjs +5 -3
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +16 -0
- package/lib/seam/connect/openapi.js +3 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +3 -1
- package/src/lib/seam/connect/route-types.ts +1 -1
package/dist/connect.d.cts
CHANGED
|
@@ -92327,14 +92327,22 @@ declare const _default: {
|
|
|
92327
92327
|
pat_with_workspace: never[];
|
|
92328
92328
|
console_session_with_workspace?: never;
|
|
92329
92329
|
api_key?: never;
|
|
92330
|
+
client_session_with_customer?: never;
|
|
92330
92331
|
} | {
|
|
92331
92332
|
console_session_with_workspace: never[];
|
|
92332
92333
|
pat_with_workspace?: never;
|
|
92333
92334
|
api_key?: never;
|
|
92335
|
+
client_session_with_customer?: never;
|
|
92334
92336
|
} | {
|
|
92335
92337
|
api_key: never[];
|
|
92336
92338
|
pat_with_workspace?: never;
|
|
92337
92339
|
console_session_with_workspace?: never;
|
|
92340
|
+
client_session_with_customer?: never;
|
|
92341
|
+
} | {
|
|
92342
|
+
client_session_with_customer: never[];
|
|
92343
|
+
pat_with_workspace?: never;
|
|
92344
|
+
console_session_with_workspace?: never;
|
|
92345
|
+
api_key?: never;
|
|
92338
92346
|
})[];
|
|
92339
92347
|
summary: string;
|
|
92340
92348
|
tags: never[];
|
|
@@ -92409,14 +92417,22 @@ declare const _default: {
|
|
|
92409
92417
|
pat_with_workspace: never[];
|
|
92410
92418
|
console_session_with_workspace?: never;
|
|
92411
92419
|
api_key?: never;
|
|
92420
|
+
client_session_with_customer?: never;
|
|
92412
92421
|
} | {
|
|
92413
92422
|
console_session_with_workspace: never[];
|
|
92414
92423
|
pat_with_workspace?: never;
|
|
92415
92424
|
api_key?: never;
|
|
92425
|
+
client_session_with_customer?: never;
|
|
92416
92426
|
} | {
|
|
92417
92427
|
api_key: never[];
|
|
92418
92428
|
pat_with_workspace?: never;
|
|
92419
92429
|
console_session_with_workspace?: never;
|
|
92430
|
+
client_session_with_customer?: never;
|
|
92431
|
+
} | {
|
|
92432
|
+
client_session_with_customer: never[];
|
|
92433
|
+
pat_with_workspace?: never;
|
|
92434
|
+
console_session_with_workspace?: never;
|
|
92435
|
+
api_key?: never;
|
|
92420
92436
|
})[];
|
|
92421
92437
|
summary: string;
|
|
92422
92438
|
tags: never[];
|
|
@@ -123765,7 +123781,7 @@ type Routes = {
|
|
|
123765
123781
|
created_before?: Date | undefined;
|
|
123766
123782
|
/** Indicates whether you want to retrieve only multi-phone sync credentials or non-multi-phone sync credentials. */
|
|
123767
123783
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
123768
|
-
/** String for which to search. Filters returned credentials to include all records that satisfy a partial match using `code`, `card_number`, `acs_user_id` or `acs_credential_id`. */
|
|
123784
|
+
/** String for which to search. Filters returned credentials to include all records that satisfy a partial match using `display_name`, `code`, `card_number`, `acs_user_id` or `acs_credential_id`. */
|
|
123769
123785
|
search?: string | undefined;
|
|
123770
123786
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
123771
123787
|
page_cursor?: (string | undefined) | null;
|
package/dist/index.cjs
CHANGED
|
@@ -34329,7 +34329,7 @@ var openapi_default = {
|
|
|
34329
34329
|
type: "string"
|
|
34330
34330
|
},
|
|
34331
34331
|
search: {
|
|
34332
|
-
description: "String for which to search. Filters returned credentials to include all records that satisfy a partial match using `code`, `card_number`, `acs_user_id` or `acs_credential_id`.",
|
|
34332
|
+
description: "String for which to search. Filters returned credentials to include all records that satisfy a partial match using `display_name`, `code`, `card_number`, `acs_user_id` or `acs_credential_id`.",
|
|
34333
34333
|
minLength: 1,
|
|
34334
34334
|
type: "string"
|
|
34335
34335
|
}
|
|
@@ -52493,7 +52493,8 @@ var openapi_default = {
|
|
|
52493
52493
|
security: [
|
|
52494
52494
|
{ pat_with_workspace: [] },
|
|
52495
52495
|
{ console_session_with_workspace: [] },
|
|
52496
|
-
{ api_key: [] }
|
|
52496
|
+
{ api_key: [] },
|
|
52497
|
+
{ client_session_with_customer: [] }
|
|
52497
52498
|
],
|
|
52498
52499
|
summary: "/spaces/get",
|
|
52499
52500
|
tags: [],
|
|
@@ -52560,7 +52561,8 @@ var openapi_default = {
|
|
|
52560
52561
|
security: [
|
|
52561
52562
|
{ pat_with_workspace: [] },
|
|
52562
52563
|
{ console_session_with_workspace: [] },
|
|
52563
|
-
{ api_key: [] }
|
|
52564
|
+
{ api_key: [] },
|
|
52565
|
+
{ client_session_with_customer: [] }
|
|
52564
52566
|
],
|
|
52565
52567
|
summary: "/spaces/get",
|
|
52566
52568
|
tags: [],
|