@seamapi/types 1.1021.0 → 1.1023.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/lib/seam/connect/models/customer/customer-delete-data.d.ts +19 -19
- package/lib/seam/connect/models/customer/customer-delete-data.js +20 -19
- package/lib/seam/connect/models/customer/customer-delete-data.js.map +1 -1
- package/lib/seam/connect/openapi.js +68 -52
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +14 -14
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-delete-data.ts +21 -19
- package/src/lib/seam/connect/openapi.ts +68 -52
- package/src/lib/seam/connect/route-types.ts +14 -14
|
@@ -42189,10 +42189,10 @@ export type Routes = {
|
|
|
42189
42189
|
commonParams: {
|
|
42190
42190
|
/** ID of the user identity for which you want to retrieve all access system users. */
|
|
42191
42191
|
user_identity_id?: string | undefined
|
|
42192
|
-
/** Phone number of the user identity for which you want to retrieve all access system users, in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, `+15555550100`). */
|
|
42193
|
-
user_identity_phone_number?: string | undefined
|
|
42194
|
-
/** Email address of the user identity for which you want to retrieve all access system users. */
|
|
42195
|
-
user_identity_email_address?: string | undefined
|
|
42192
|
+
/** Phone number of the user identity for which you want to retrieve all access system users, in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, `+15555550100`). Specify `null` to retrieve access system users whose user identity has no phone number. */
|
|
42193
|
+
user_identity_phone_number?: (string | null) | undefined
|
|
42194
|
+
/** Email address of the user identity for which you want to retrieve all access system users. Specify `null` to retrieve access system users whose user identity has no email address. */
|
|
42195
|
+
user_identity_email_address?: (string | null) | undefined
|
|
42196
42196
|
/** ID of the `acs_system` for which you want to retrieve all access system users. */
|
|
42197
42197
|
acs_system_id?: string | undefined
|
|
42198
42198
|
/** String for which to search. Filters returned access system users to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address`, `acs_user_id`, `user_identity_id`, `user_identity_full_name` or `user_identity_phone_number`. */
|
|
@@ -43187,10 +43187,10 @@ export type Routes = {
|
|
|
43187
43187
|
commonParams: {
|
|
43188
43188
|
/** ID of the user identity for which you want to retrieve all unmanaged access system users. */
|
|
43189
43189
|
user_identity_id?: string | undefined
|
|
43190
|
-
/** Phone number of the user identity for which you want to retrieve all unmanaged access system users. */
|
|
43191
|
-
user_identity_phone_number?: string | undefined
|
|
43192
|
-
/** Email address of the user identity for which you want to retrieve all unmanaged access system users. */
|
|
43193
|
-
user_identity_email_address?: string | undefined
|
|
43190
|
+
/** Phone number of the user identity for which you want to retrieve all unmanaged access system users. Specify `null` to retrieve unmanaged access system users whose user identity has no phone number. */
|
|
43191
|
+
user_identity_phone_number?: (string | null) | undefined
|
|
43192
|
+
/** Email address of the user identity for which you want to retrieve all unmanaged access system users. Specify `null` to retrieve unmanaged access system users whose user identity has no email address. */
|
|
43193
|
+
user_identity_email_address?: (string | null) | undefined
|
|
43194
43194
|
/** ID of the access system for which you want to retrieve all unmanaged access system users. */
|
|
43195
43195
|
acs_system_id?: string | undefined
|
|
43196
43196
|
/** Number of unmanaged access system users to return. */
|
|
@@ -48079,12 +48079,12 @@ export type Routes = {
|
|
|
48079
48079
|
client_session_id?: string | undefined
|
|
48080
48080
|
/** Your user ID for the user by which you want to filter client sessions. */
|
|
48081
48081
|
user_identifier_key?: string | undefined
|
|
48082
|
-
/** ID of the [Connect Webview](https://docs.seam.co/core-concepts/connect-webviews) for which you want to retrieve client sessions. */
|
|
48083
|
-
connect_webview_id?: string | undefined
|
|
48082
|
+
/** ID of the [Connect Webview](https://docs.seam.co/core-concepts/connect-webviews) for which you want to retrieve client sessions. Specify `null` to retrieve client sessions that are not associated with a Connect Webview. */
|
|
48083
|
+
connect_webview_id?: (string | null) | undefined
|
|
48084
48084
|
/** Indicates whether to retrieve only client sessions without associated user identifier keys. */
|
|
48085
48085
|
without_user_identifier_key?: boolean | undefined
|
|
48086
|
-
/** ID of the [user identity](https://docs.seam.co/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) for which you want to retrieve client sessions. */
|
|
48087
|
-
user_identity_id?: string | undefined
|
|
48086
|
+
/** ID of the [user identity](https://docs.seam.co/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) for which you want to retrieve client sessions. Specify `null` to retrieve client sessions that are not associated with a user identity. */
|
|
48087
|
+
user_identity_id?: (string | null) | undefined
|
|
48088
48088
|
}
|
|
48089
48089
|
formData: {}
|
|
48090
48090
|
jsonResponse: {
|
|
@@ -94864,8 +94864,8 @@ export type Routes = {
|
|
|
94864
94864
|
| undefined
|
|
94865
94865
|
/** Filter timeline entries by context type. 'request' for API requests, 'job' for background jobs. */
|
|
94866
94866
|
context_type?: ('request' | 'job') | undefined
|
|
94867
|
-
/** Identifies the specific page of results to return
|
|
94868
|
-
page_cursor?: string | undefined
|
|
94867
|
+
/** Identifies the specific page of results to return. Specify `null` or omit this parameter to return the first page. */
|
|
94868
|
+
page_cursor?: (string | null) | undefined
|
|
94869
94869
|
}
|
|
94870
94870
|
formData: {}
|
|
94871
94871
|
jsonResponse: {
|