@seamapi/types 1.1020.0 → 1.1022.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.
|
@@ -35949,10 +35949,10 @@ export type Routes = {
|
|
|
35949
35949
|
commonParams: {
|
|
35950
35950
|
/** ID of the user identity for which you want to retrieve all access system users. */
|
|
35951
35951
|
user_identity_id?: string | undefined;
|
|
35952
|
-
/** 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`). */
|
|
35953
|
-
user_identity_phone_number?: string | undefined;
|
|
35954
|
-
/** Email address of the user identity for which you want to retrieve all access system users. */
|
|
35955
|
-
user_identity_email_address?: string | undefined;
|
|
35952
|
+
/** 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. */
|
|
35953
|
+
user_identity_phone_number?: (string | null) | undefined;
|
|
35954
|
+
/** 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. */
|
|
35955
|
+
user_identity_email_address?: (string | null) | undefined;
|
|
35956
35956
|
/** ID of the `acs_system` for which you want to retrieve all access system users. */
|
|
35957
35957
|
acs_system_id?: string | undefined;
|
|
35958
35958
|
/** 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`. */
|
|
@@ -36804,10 +36804,10 @@ export type Routes = {
|
|
|
36804
36804
|
commonParams: {
|
|
36805
36805
|
/** ID of the user identity for which you want to retrieve all unmanaged access system users. */
|
|
36806
36806
|
user_identity_id?: string | undefined;
|
|
36807
|
-
/** Phone number of the user identity for which you want to retrieve all unmanaged access system users. */
|
|
36808
|
-
user_identity_phone_number?: string | undefined;
|
|
36809
|
-
/** Email address of the user identity for which you want to retrieve all unmanaged access system users. */
|
|
36810
|
-
user_identity_email_address?: string | undefined;
|
|
36807
|
+
/** 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. */
|
|
36808
|
+
user_identity_phone_number?: (string | null) | undefined;
|
|
36809
|
+
/** 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. */
|
|
36810
|
+
user_identity_email_address?: (string | null) | undefined;
|
|
36811
36811
|
/** ID of the access system for which you want to retrieve all unmanaged access system users. */
|
|
36812
36812
|
acs_system_id?: string | undefined;
|
|
36813
36813
|
/** Number of unmanaged access system users to return. */
|
|
@@ -41042,12 +41042,12 @@ export type Routes = {
|
|
|
41042
41042
|
client_session_id?: string | undefined;
|
|
41043
41043
|
/** Your user ID for the user by which you want to filter client sessions. */
|
|
41044
41044
|
user_identifier_key?: string | undefined;
|
|
41045
|
-
/** ID of the [Connect Webview](https://docs.seam.co/core-concepts/connect-webviews) for which you want to retrieve client sessions. */
|
|
41046
|
-
connect_webview_id?: string | undefined;
|
|
41045
|
+
/** 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. */
|
|
41046
|
+
connect_webview_id?: (string | null) | undefined;
|
|
41047
41047
|
/** Indicates whether to retrieve only client sessions without associated user identifier keys. */
|
|
41048
41048
|
without_user_identifier_key?: boolean | undefined;
|
|
41049
|
-
/** 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. */
|
|
41050
|
-
user_identity_id?: string | undefined;
|
|
41049
|
+
/** 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. */
|
|
41050
|
+
user_identity_id?: (string | null) | undefined;
|
|
41051
41051
|
};
|
|
41052
41052
|
formData: {};
|
|
41053
41053
|
jsonResponse: {
|
|
@@ -78876,8 +78876,8 @@ export type Routes = {
|
|
|
78876
78876
|
entry_types?: ('resource_created' | 'resource_updated' | 'resource_deleted' | 'event' | 'provider_call' | 'automation_run' | 'webhook_processed')[] | undefined;
|
|
78877
78877
|
/** Filter timeline entries by context type. 'request' for API requests, 'job' for background jobs. */
|
|
78878
78878
|
context_type?: ('request' | 'job') | undefined;
|
|
78879
|
-
/** Identifies the specific page of results to return
|
|
78880
|
-
page_cursor?: string | undefined;
|
|
78879
|
+
/** Identifies the specific page of results to return. Specify `null` or omit this parameter to return the first page. */
|
|
78880
|
+
page_cursor?: (string | null) | undefined;
|
|
78881
78881
|
};
|
|
78882
78882
|
formData: {};
|
|
78883
78883
|
jsonResponse: {
|
package/package.json
CHANGED
|
@@ -48092,7 +48092,8 @@ const openapi: OpenAPISpec = {
|
|
|
48092
48092
|
name: 'user_identity_phone_number',
|
|
48093
48093
|
schema: {
|
|
48094
48094
|
description:
|
|
48095
|
-
'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`).',
|
|
48095
|
+
'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.',
|
|
48096
|
+
nullable: true,
|
|
48096
48097
|
type: 'string',
|
|
48097
48098
|
},
|
|
48098
48099
|
},
|
|
@@ -48101,7 +48102,8 @@ const openapi: OpenAPISpec = {
|
|
|
48101
48102
|
name: 'user_identity_email_address',
|
|
48102
48103
|
schema: {
|
|
48103
48104
|
description:
|
|
48104
|
-
'Email address of the user identity for which you want to retrieve all access system users.',
|
|
48105
|
+
'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.',
|
|
48106
|
+
nullable: true,
|
|
48105
48107
|
type: 'string',
|
|
48106
48108
|
},
|
|
48107
48109
|
},
|
|
@@ -48238,7 +48240,8 @@ const openapi: OpenAPISpec = {
|
|
|
48238
48240
|
},
|
|
48239
48241
|
user_identity_email_address: {
|
|
48240
48242
|
description:
|
|
48241
|
-
'Email address of the user identity for which you want to retrieve all access system users.',
|
|
48243
|
+
'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.',
|
|
48244
|
+
nullable: true,
|
|
48242
48245
|
type: 'string',
|
|
48243
48246
|
},
|
|
48244
48247
|
user_identity_id: {
|
|
@@ -48249,7 +48252,8 @@ const openapi: OpenAPISpec = {
|
|
|
48249
48252
|
},
|
|
48250
48253
|
user_identity_phone_number: {
|
|
48251
48254
|
description:
|
|
48252
|
-
'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`).',
|
|
48255
|
+
'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.',
|
|
48256
|
+
nullable: true,
|
|
48253
48257
|
type: 'string',
|
|
48254
48258
|
},
|
|
48255
48259
|
},
|
|
@@ -48835,7 +48839,8 @@ const openapi: OpenAPISpec = {
|
|
|
48835
48839
|
name: 'user_identity_phone_number',
|
|
48836
48840
|
schema: {
|
|
48837
48841
|
description:
|
|
48838
|
-
'Phone number of the user identity for which you want to retrieve all unmanaged access system users.',
|
|
48842
|
+
'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.',
|
|
48843
|
+
nullable: true,
|
|
48839
48844
|
type: 'string',
|
|
48840
48845
|
},
|
|
48841
48846
|
},
|
|
@@ -48844,7 +48849,8 @@ const openapi: OpenAPISpec = {
|
|
|
48844
48849
|
name: 'user_identity_email_address',
|
|
48845
48850
|
schema: {
|
|
48846
48851
|
description:
|
|
48847
|
-
'Email address of the user identity for which you want to retrieve all unmanaged access system users.',
|
|
48852
|
+
'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.',
|
|
48853
|
+
nullable: true,
|
|
48848
48854
|
type: 'string',
|
|
48849
48855
|
},
|
|
48850
48856
|
},
|
|
@@ -48947,7 +48953,8 @@ const openapi: OpenAPISpec = {
|
|
|
48947
48953
|
},
|
|
48948
48954
|
user_identity_email_address: {
|
|
48949
48955
|
description:
|
|
48950
|
-
'Email address of the user identity for which you want to retrieve all unmanaged access system users.',
|
|
48956
|
+
'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.',
|
|
48957
|
+
nullable: true,
|
|
48951
48958
|
type: 'string',
|
|
48952
48959
|
},
|
|
48953
48960
|
user_identity_id: {
|
|
@@ -48958,7 +48965,8 @@ const openapi: OpenAPISpec = {
|
|
|
48958
48965
|
},
|
|
48959
48966
|
user_identity_phone_number: {
|
|
48960
48967
|
description:
|
|
48961
|
-
'Phone number of the user identity for which you want to retrieve all unmanaged access system users.',
|
|
48968
|
+
'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.',
|
|
48969
|
+
nullable: true,
|
|
48962
48970
|
type: 'string',
|
|
48963
48971
|
},
|
|
48964
48972
|
},
|
|
@@ -50594,7 +50602,8 @@ const openapi: OpenAPISpec = {
|
|
|
50594
50602
|
name: 'connect_webview_id',
|
|
50595
50603
|
schema: {
|
|
50596
50604
|
description:
|
|
50597
|
-
'ID of the [Connect Webview](https://docs.seam.co/core-concepts/connect-webviews) for which you want to retrieve client sessions.',
|
|
50605
|
+
'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.',
|
|
50606
|
+
nullable: true,
|
|
50598
50607
|
type: 'string',
|
|
50599
50608
|
},
|
|
50600
50609
|
},
|
|
@@ -50612,7 +50621,8 @@ const openapi: OpenAPISpec = {
|
|
|
50612
50621
|
name: 'user_identity_id',
|
|
50613
50622
|
schema: {
|
|
50614
50623
|
description:
|
|
50615
|
-
'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.',
|
|
50624
|
+
'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.',
|
|
50625
|
+
nullable: true,
|
|
50616
50626
|
type: 'string',
|
|
50617
50627
|
},
|
|
50618
50628
|
},
|
|
@@ -50668,7 +50678,8 @@ const openapi: OpenAPISpec = {
|
|
|
50668
50678
|
},
|
|
50669
50679
|
connect_webview_id: {
|
|
50670
50680
|
description:
|
|
50671
|
-
'ID of the [Connect Webview](https://docs.seam.co/core-concepts/connect-webviews) for which you want to retrieve client sessions.',
|
|
50681
|
+
'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.',
|
|
50682
|
+
nullable: true,
|
|
50672
50683
|
type: 'string',
|
|
50673
50684
|
},
|
|
50674
50685
|
user_identifier_key: {
|
|
@@ -50679,7 +50690,8 @@ const openapi: OpenAPISpec = {
|
|
|
50679
50690
|
},
|
|
50680
50691
|
user_identity_id: {
|
|
50681
50692
|
description:
|
|
50682
|
-
'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.',
|
|
50693
|
+
'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.',
|
|
50694
|
+
nullable: true,
|
|
50683
50695
|
type: 'string',
|
|
50684
50696
|
},
|
|
50685
50697
|
without_user_identifier_key: {
|
|
@@ -66608,7 +66620,9 @@ const openapi: OpenAPISpec = {
|
|
|
66608
66620
|
required: false,
|
|
66609
66621
|
schema: {
|
|
66610
66622
|
description:
|
|
66611
|
-
|
|
66623
|
+
'Identifies the specific page of results to return. Specify `null` or omit this parameter to return the first page.',
|
|
66624
|
+
minLength: 1,
|
|
66625
|
+
nullable: true,
|
|
66612
66626
|
type: 'string',
|
|
66613
66627
|
},
|
|
66614
66628
|
},
|
|
@@ -67004,7 +67018,9 @@ const openapi: OpenAPISpec = {
|
|
|
67004
67018
|
},
|
|
67005
67019
|
page_cursor: {
|
|
67006
67020
|
description:
|
|
67007
|
-
|
|
67021
|
+
'Identifies the specific page of results to return. Specify `null` or omit this parameter to return the first page.',
|
|
67022
|
+
minLength: 1,
|
|
67023
|
+
nullable: true,
|
|
67008
67024
|
type: 'string',
|
|
67009
67025
|
},
|
|
67010
67026
|
resource_id: {
|
|
@@ -85198,6 +85214,7 @@ const openapi: OpenAPISpec = {
|
|
|
85198
85214
|
schema: {
|
|
85199
85215
|
description:
|
|
85200
85216
|
'String for which to search. Filters returned user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`.',
|
|
85217
|
+
minLength: 1,
|
|
85201
85218
|
type: 'string',
|
|
85202
85219
|
},
|
|
85203
85220
|
},
|
|
@@ -85319,6 +85336,7 @@ const openapi: OpenAPISpec = {
|
|
|
85319
85336
|
search: {
|
|
85320
85337
|
description:
|
|
85321
85338
|
'String for which to search. Filters returned user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`.',
|
|
85339
|
+
minLength: 1,
|
|
85322
85340
|
type: 'string',
|
|
85323
85341
|
},
|
|
85324
85342
|
user_identity_ids: {
|
|
@@ -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: {
|