@seamapi/types 1.412.0 → 1.413.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 +52 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +72 -3
- package/lib/seam/connect/models/client-sessions/client-session.d.ts +3 -0
- package/lib/seam/connect/models/client-sessions/client-session.js +4 -1
- package/lib/seam/connect/models/client-sessions/client-session.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +45 -0
- package/lib/seam/connect/openapi.js +45 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +24 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/models/client-sessions/client-session.ts +4 -1
- package/src/lib/seam/connect/openapi.ts +50 -3
- package/src/lib/seam/connect/route-types.ts +24 -3
package/dist/connect.d.cts
CHANGED
|
@@ -10430,6 +10430,7 @@ declare const client_session: z.ZodObject<{
|
|
|
10430
10430
|
connected_account_ids: z.ZodArray<z.ZodString, "many">;
|
|
10431
10431
|
connect_webview_ids: z.ZodArray<z.ZodString, "many">;
|
|
10432
10432
|
user_identity_ids: z.ZodArray<z.ZodString, "many">;
|
|
10433
|
+
user_identity_id: z.ZodOptional<z.ZodString>;
|
|
10433
10434
|
}, "strip", z.ZodTypeAny, {
|
|
10434
10435
|
workspace_id: string;
|
|
10435
10436
|
created_at: string;
|
|
@@ -10441,6 +10442,7 @@ declare const client_session: z.ZodObject<{
|
|
|
10441
10442
|
device_count: number;
|
|
10442
10443
|
connect_webview_ids: string[];
|
|
10443
10444
|
user_identity_ids: string[];
|
|
10445
|
+
user_identity_id?: string | undefined;
|
|
10444
10446
|
customer_id?: string | undefined;
|
|
10445
10447
|
}, {
|
|
10446
10448
|
workspace_id: string;
|
|
@@ -10453,6 +10455,7 @@ declare const client_session: z.ZodObject<{
|
|
|
10453
10455
|
device_count: number;
|
|
10454
10456
|
connect_webview_ids: string[];
|
|
10455
10457
|
user_identity_ids: string[];
|
|
10458
|
+
user_identity_id?: string | undefined;
|
|
10456
10459
|
customer_id?: string | undefined;
|
|
10457
10460
|
}>;
|
|
10458
10461
|
type ClientSession = z.infer<typeof client_session>;
|
|
@@ -24652,7 +24655,12 @@ declare const _default: {
|
|
|
24652
24655
|
nullable: boolean;
|
|
24653
24656
|
type: string;
|
|
24654
24657
|
};
|
|
24658
|
+
user_identity_id: {
|
|
24659
|
+
format: string;
|
|
24660
|
+
type: string;
|
|
24661
|
+
};
|
|
24655
24662
|
user_identity_ids: {
|
|
24663
|
+
description: string;
|
|
24656
24664
|
items: {
|
|
24657
24665
|
format: string;
|
|
24658
24666
|
type: string;
|
|
@@ -41089,12 +41097,20 @@ declare const _default: {
|
|
|
41089
41097
|
minLength: number;
|
|
41090
41098
|
type: string;
|
|
41091
41099
|
};
|
|
41100
|
+
user_identity_id: {
|
|
41101
|
+
description: string;
|
|
41102
|
+
type: string;
|
|
41103
|
+
};
|
|
41092
41104
|
user_identity_ids: {
|
|
41105
|
+
deprecated: boolean;
|
|
41093
41106
|
description: string;
|
|
41094
41107
|
items: {
|
|
41095
41108
|
type: string;
|
|
41096
41109
|
};
|
|
41110
|
+
maxItems: number;
|
|
41111
|
+
minItems: number;
|
|
41097
41112
|
type: string;
|
|
41113
|
+
'x-deprecated': string;
|
|
41098
41114
|
};
|
|
41099
41115
|
};
|
|
41100
41116
|
type: string;
|
|
@@ -41196,12 +41212,20 @@ declare const _default: {
|
|
|
41196
41212
|
minLength: number;
|
|
41197
41213
|
type: string;
|
|
41198
41214
|
};
|
|
41215
|
+
user_identity_id: {
|
|
41216
|
+
description: string;
|
|
41217
|
+
type: string;
|
|
41218
|
+
};
|
|
41199
41219
|
user_identity_ids: {
|
|
41220
|
+
deprecated: boolean;
|
|
41200
41221
|
description: string;
|
|
41201
41222
|
items: {
|
|
41202
41223
|
type: string;
|
|
41203
41224
|
};
|
|
41225
|
+
maxItems: number;
|
|
41226
|
+
minItems: number;
|
|
41204
41227
|
type: string;
|
|
41228
|
+
'x-deprecated': string;
|
|
41205
41229
|
};
|
|
41206
41230
|
};
|
|
41207
41231
|
type: string;
|
|
@@ -41443,12 +41467,20 @@ declare const _default: {
|
|
|
41443
41467
|
minLength: number;
|
|
41444
41468
|
type: string;
|
|
41445
41469
|
};
|
|
41470
|
+
user_identity_id: {
|
|
41471
|
+
description: string;
|
|
41472
|
+
type: string;
|
|
41473
|
+
};
|
|
41446
41474
|
user_identity_ids: {
|
|
41475
|
+
deprecated: boolean;
|
|
41447
41476
|
description: string;
|
|
41448
41477
|
items: {
|
|
41449
41478
|
type: string;
|
|
41450
41479
|
};
|
|
41480
|
+
maxItems: number;
|
|
41481
|
+
minItems: number;
|
|
41451
41482
|
type: string;
|
|
41483
|
+
'x-deprecated': string;
|
|
41452
41484
|
};
|
|
41453
41485
|
};
|
|
41454
41486
|
type: string;
|
|
@@ -41544,12 +41576,20 @@ declare const _default: {
|
|
|
41544
41576
|
description: string;
|
|
41545
41577
|
type: string;
|
|
41546
41578
|
};
|
|
41579
|
+
user_identity_id: {
|
|
41580
|
+
description: string;
|
|
41581
|
+
type: string;
|
|
41582
|
+
};
|
|
41547
41583
|
user_identity_ids: {
|
|
41584
|
+
deprecated: boolean;
|
|
41548
41585
|
description: string;
|
|
41549
41586
|
items: {
|
|
41550
41587
|
type: string;
|
|
41551
41588
|
};
|
|
41589
|
+
maxItems: number;
|
|
41590
|
+
minItems: number;
|
|
41552
41591
|
type: string;
|
|
41592
|
+
'x-deprecated': string;
|
|
41553
41593
|
};
|
|
41554
41594
|
};
|
|
41555
41595
|
type: string;
|
|
@@ -41633,12 +41673,20 @@ declare const _default: {
|
|
|
41633
41673
|
description: string;
|
|
41634
41674
|
type: string;
|
|
41635
41675
|
};
|
|
41676
|
+
user_identity_id: {
|
|
41677
|
+
description: string;
|
|
41678
|
+
type: string;
|
|
41679
|
+
};
|
|
41636
41680
|
user_identity_ids: {
|
|
41681
|
+
deprecated: boolean;
|
|
41637
41682
|
description: string;
|
|
41638
41683
|
items: {
|
|
41639
41684
|
type: string;
|
|
41640
41685
|
};
|
|
41686
|
+
maxItems: number;
|
|
41687
|
+
minItems: number;
|
|
41641
41688
|
type: string;
|
|
41689
|
+
'x-deprecated': string;
|
|
41642
41690
|
};
|
|
41643
41691
|
};
|
|
41644
41692
|
type: string;
|
|
@@ -75816,8 +75864,11 @@ interface Routes {
|
|
|
75816
75864
|
connect_webview_ids?: string[] | undefined;
|
|
75817
75865
|
/** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) for which you want to create a client session. */
|
|
75818
75866
|
connected_account_ids?: string[] | undefined;
|
|
75819
|
-
/** IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity)
|
|
75867
|
+
/** IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session.
|
|
75868
|
+
* @deprecated Use `user_identity_id`. */
|
|
75820
75869
|
user_identity_ids?: string[] | undefined;
|
|
75870
|
+
/** ID of the [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) for which you want to create a client session. */
|
|
75871
|
+
user_identity_id?: string | undefined;
|
|
75821
75872
|
/** Date and time at which the client session should expire, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
75822
75873
|
expires_at?: Date | undefined;
|
|
75823
75874
|
};
|
|
@@ -75844,7 +75895,9 @@ interface Routes {
|
|
|
75844
75895
|
customer_id?: string | undefined;
|
|
75845
75896
|
connected_account_ids: string[];
|
|
75846
75897
|
connect_webview_ids: string[];
|
|
75898
|
+
/** deprecated: Use `user_identity_id`. */
|
|
75847
75899
|
user_identity_ids: string[];
|
|
75900
|
+
user_identity_id?: string | undefined;
|
|
75848
75901
|
};
|
|
75849
75902
|
};
|
|
75850
75903
|
};
|
|
@@ -75893,7 +75946,9 @@ interface Routes {
|
|
|
75893
75946
|
customer_id?: string | undefined;
|
|
75894
75947
|
connected_account_ids: string[];
|
|
75895
75948
|
connect_webview_ids: string[];
|
|
75949
|
+
/** deprecated: Use `user_identity_id`. */
|
|
75896
75950
|
user_identity_ids: string[];
|
|
75951
|
+
user_identity_id?: string | undefined;
|
|
75897
75952
|
};
|
|
75898
75953
|
};
|
|
75899
75954
|
};
|
|
@@ -75908,8 +75963,11 @@ interface Routes {
|
|
|
75908
75963
|
connect_webview_ids?: string[] | undefined;
|
|
75909
75964
|
/** IDs of the [connected accounts](https://docs.seam.co/latest/api/connected_accounts) that you want to associate with the client session (or that are already associated with the existing client session). */
|
|
75910
75965
|
connected_account_ids?: string[] | undefined;
|
|
75911
|
-
/** IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session
|
|
75966
|
+
/** IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session.
|
|
75967
|
+
* @deprecated Use `user_identity_id`. */
|
|
75912
75968
|
user_identity_ids?: string[] | undefined;
|
|
75969
|
+
/** ID of the [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session (or that are already associated with the existing client session). */
|
|
75970
|
+
user_identity_id?: string | undefined;
|
|
75913
75971
|
/** Date and time at which the client session should expire (or at which the existing client session expires), in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
75914
75972
|
expires_at?: Date | undefined;
|
|
75915
75973
|
};
|
|
@@ -75936,7 +75994,9 @@ interface Routes {
|
|
|
75936
75994
|
customer_id?: string | undefined;
|
|
75937
75995
|
connected_account_ids: string[];
|
|
75938
75996
|
connect_webview_ids: string[];
|
|
75997
|
+
/** deprecated: Use `user_identity_id`. */
|
|
75939
75998
|
user_identity_ids: string[];
|
|
75999
|
+
user_identity_id?: string | undefined;
|
|
75940
76000
|
};
|
|
75941
76001
|
};
|
|
75942
76002
|
};
|
|
@@ -75954,8 +76014,11 @@ interface Routes {
|
|
|
75954
76014
|
connected_account_ids?: string[] | undefined;
|
|
75955
76015
|
/** IDs of the [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews) that you want to associate with the client session. */
|
|
75956
76016
|
connect_webview_ids?: string[] | undefined;
|
|
75957
|
-
/** IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session.
|
|
76017
|
+
/** IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session.
|
|
76018
|
+
* @deprecated Use `user_identity_id`. */
|
|
75958
76019
|
user_identity_ids?: string[] | undefined;
|
|
76020
|
+
/** ID of the [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session. */
|
|
76021
|
+
user_identity_id?: string | undefined;
|
|
75959
76022
|
};
|
|
75960
76023
|
formData: {};
|
|
75961
76024
|
jsonResponse: {
|
|
@@ -75979,7 +76042,9 @@ interface Routes {
|
|
|
75979
76042
|
customer_id?: string | undefined;
|
|
75980
76043
|
connected_account_ids: string[];
|
|
75981
76044
|
connect_webview_ids: string[];
|
|
76045
|
+
/** deprecated: Use `user_identity_id`. */
|
|
75982
76046
|
user_identity_ids: string[];
|
|
76047
|
+
user_identity_id?: string | undefined;
|
|
75983
76048
|
};
|
|
75984
76049
|
};
|
|
75985
76050
|
};
|
|
@@ -76013,7 +76078,9 @@ interface Routes {
|
|
|
76013
76078
|
customer_id?: string | undefined;
|
|
76014
76079
|
connected_account_ids: string[];
|
|
76015
76080
|
connect_webview_ids: string[];
|
|
76081
|
+
/** deprecated: Use `user_identity_id`. */
|
|
76016
76082
|
user_identity_ids: string[];
|
|
76083
|
+
user_identity_id?: string | undefined;
|
|
76017
76084
|
}>;
|
|
76018
76085
|
};
|
|
76019
76086
|
};
|
|
@@ -98644,7 +98711,9 @@ interface Routes {
|
|
|
98644
98711
|
customer_id?: string | undefined;
|
|
98645
98712
|
connected_account_ids: string[];
|
|
98646
98713
|
connect_webview_ids: string[];
|
|
98714
|
+
/** deprecated: Use `user_identity_id`. */
|
|
98647
98715
|
user_identity_ids: string[];
|
|
98716
|
+
user_identity_id?: string | undefined;
|
|
98648
98717
|
};
|
|
98649
98718
|
};
|
|
98650
98719
|
};
|
|
@@ -11,6 +11,7 @@ export declare const client_session: z.ZodObject<{
|
|
|
11
11
|
connected_account_ids: z.ZodArray<z.ZodString, "many">;
|
|
12
12
|
connect_webview_ids: z.ZodArray<z.ZodString, "many">;
|
|
13
13
|
user_identity_ids: z.ZodArray<z.ZodString, "many">;
|
|
14
|
+
user_identity_id: z.ZodOptional<z.ZodString>;
|
|
14
15
|
}, "strip", z.ZodTypeAny, {
|
|
15
16
|
workspace_id: string;
|
|
16
17
|
created_at: string;
|
|
@@ -22,6 +23,7 @@ export declare const client_session: z.ZodObject<{
|
|
|
22
23
|
device_count: number;
|
|
23
24
|
connect_webview_ids: string[];
|
|
24
25
|
user_identity_ids: string[];
|
|
26
|
+
user_identity_id?: string | undefined;
|
|
25
27
|
customer_id?: string | undefined;
|
|
26
28
|
}, {
|
|
27
29
|
workspace_id: string;
|
|
@@ -34,6 +36,7 @@ export declare const client_session: z.ZodObject<{
|
|
|
34
36
|
device_count: number;
|
|
35
37
|
connect_webview_ids: string[];
|
|
36
38
|
user_identity_ids: string[];
|
|
39
|
+
user_identity_id?: string | undefined;
|
|
37
40
|
customer_id?: string | undefined;
|
|
38
41
|
}>;
|
|
39
42
|
export type ClientSession = z.infer<typeof client_session>;
|
|
@@ -10,7 +10,10 @@ export const client_session = z.object({
|
|
|
10
10
|
customer_id: z.string().uuid().optional(),
|
|
11
11
|
connected_account_ids: z.array(z.string().uuid()),
|
|
12
12
|
connect_webview_ids: z.array(z.string().uuid()),
|
|
13
|
-
user_identity_ids: z
|
|
13
|
+
user_identity_ids: z
|
|
14
|
+
.array(z.string().uuid())
|
|
15
|
+
.describe('deprecated: Use `user_identity_id`.'),
|
|
16
|
+
user_identity_id: z.string().uuid().optional(),
|
|
14
17
|
}).describe(`
|
|
15
18
|
---
|
|
16
19
|
route_path: /client_sessions
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client-session.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/client-sessions/client-session.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACpC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC1C,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IACzC,qBAAqB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;IACjD,mBAAmB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;IAC/C,iBAAiB,EAAE,CAAC,CAAC,
|
|
1
|
+
{"version":3,"file":"client-session.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/client-sessions/client-session.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACpC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC1C,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IACzC,qBAAqB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;IACjD,mBAAmB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;IAC/C,iBAAiB,EAAE,CAAC;SACjB,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;SACxB,QAAQ,CAAC,qCAAqC,CAAC;IAClD,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;CAC/C,CAAC,CAAC,QAAQ,CAAC;;;;;;;;;;;;;CAaX,CAAC,CAAA"}
|
|
@@ -3018,7 +3018,12 @@ declare const _default: {
|
|
|
3018
3018
|
nullable: boolean;
|
|
3019
3019
|
type: string;
|
|
3020
3020
|
};
|
|
3021
|
+
user_identity_id: {
|
|
3022
|
+
format: string;
|
|
3023
|
+
type: string;
|
|
3024
|
+
};
|
|
3021
3025
|
user_identity_ids: {
|
|
3026
|
+
description: string;
|
|
3022
3027
|
items: {
|
|
3023
3028
|
format: string;
|
|
3024
3029
|
type: string;
|
|
@@ -19455,12 +19460,20 @@ declare const _default: {
|
|
|
19455
19460
|
minLength: number;
|
|
19456
19461
|
type: string;
|
|
19457
19462
|
};
|
|
19463
|
+
user_identity_id: {
|
|
19464
|
+
description: string;
|
|
19465
|
+
type: string;
|
|
19466
|
+
};
|
|
19458
19467
|
user_identity_ids: {
|
|
19468
|
+
deprecated: boolean;
|
|
19459
19469
|
description: string;
|
|
19460
19470
|
items: {
|
|
19461
19471
|
type: string;
|
|
19462
19472
|
};
|
|
19473
|
+
maxItems: number;
|
|
19474
|
+
minItems: number;
|
|
19463
19475
|
type: string;
|
|
19476
|
+
'x-deprecated': string;
|
|
19464
19477
|
};
|
|
19465
19478
|
};
|
|
19466
19479
|
type: string;
|
|
@@ -19562,12 +19575,20 @@ declare const _default: {
|
|
|
19562
19575
|
minLength: number;
|
|
19563
19576
|
type: string;
|
|
19564
19577
|
};
|
|
19578
|
+
user_identity_id: {
|
|
19579
|
+
description: string;
|
|
19580
|
+
type: string;
|
|
19581
|
+
};
|
|
19565
19582
|
user_identity_ids: {
|
|
19583
|
+
deprecated: boolean;
|
|
19566
19584
|
description: string;
|
|
19567
19585
|
items: {
|
|
19568
19586
|
type: string;
|
|
19569
19587
|
};
|
|
19588
|
+
maxItems: number;
|
|
19589
|
+
minItems: number;
|
|
19570
19590
|
type: string;
|
|
19591
|
+
'x-deprecated': string;
|
|
19571
19592
|
};
|
|
19572
19593
|
};
|
|
19573
19594
|
type: string;
|
|
@@ -19809,12 +19830,20 @@ declare const _default: {
|
|
|
19809
19830
|
minLength: number;
|
|
19810
19831
|
type: string;
|
|
19811
19832
|
};
|
|
19833
|
+
user_identity_id: {
|
|
19834
|
+
description: string;
|
|
19835
|
+
type: string;
|
|
19836
|
+
};
|
|
19812
19837
|
user_identity_ids: {
|
|
19838
|
+
deprecated: boolean;
|
|
19813
19839
|
description: string;
|
|
19814
19840
|
items: {
|
|
19815
19841
|
type: string;
|
|
19816
19842
|
};
|
|
19843
|
+
maxItems: number;
|
|
19844
|
+
minItems: number;
|
|
19817
19845
|
type: string;
|
|
19846
|
+
'x-deprecated': string;
|
|
19818
19847
|
};
|
|
19819
19848
|
};
|
|
19820
19849
|
type: string;
|
|
@@ -19910,12 +19939,20 @@ declare const _default: {
|
|
|
19910
19939
|
description: string;
|
|
19911
19940
|
type: string;
|
|
19912
19941
|
};
|
|
19942
|
+
user_identity_id: {
|
|
19943
|
+
description: string;
|
|
19944
|
+
type: string;
|
|
19945
|
+
};
|
|
19913
19946
|
user_identity_ids: {
|
|
19947
|
+
deprecated: boolean;
|
|
19914
19948
|
description: string;
|
|
19915
19949
|
items: {
|
|
19916
19950
|
type: string;
|
|
19917
19951
|
};
|
|
19952
|
+
maxItems: number;
|
|
19953
|
+
minItems: number;
|
|
19918
19954
|
type: string;
|
|
19955
|
+
'x-deprecated': string;
|
|
19919
19956
|
};
|
|
19920
19957
|
};
|
|
19921
19958
|
type: string;
|
|
@@ -19999,12 +20036,20 @@ declare const _default: {
|
|
|
19999
20036
|
description: string;
|
|
20000
20037
|
type: string;
|
|
20001
20038
|
};
|
|
20039
|
+
user_identity_id: {
|
|
20040
|
+
description: string;
|
|
20041
|
+
type: string;
|
|
20042
|
+
};
|
|
20002
20043
|
user_identity_ids: {
|
|
20044
|
+
deprecated: boolean;
|
|
20003
20045
|
description: string;
|
|
20004
20046
|
items: {
|
|
20005
20047
|
type: string;
|
|
20006
20048
|
};
|
|
20049
|
+
maxItems: number;
|
|
20050
|
+
minItems: number;
|
|
20007
20051
|
type: string;
|
|
20052
|
+
'x-deprecated': string;
|
|
20008
20053
|
};
|
|
20009
20054
|
};
|
|
20010
20055
|
type: string;
|
|
@@ -6597,7 +6597,9 @@ export default {
|
|
|
6597
6597
|
expires_at: { format: 'date-time', type: 'string' },
|
|
6598
6598
|
token: { type: 'string' },
|
|
6599
6599
|
user_identifier_key: { nullable: true, type: 'string' },
|
|
6600
|
+
user_identity_id: { format: 'uuid', type: 'string' },
|
|
6600
6601
|
user_identity_ids: {
|
|
6602
|
+
description: 'deprecated: Use `user_identity_id`.',
|
|
6601
6603
|
items: { format: 'uuid', type: 'string' },
|
|
6602
6604
|
type: 'array',
|
|
6603
6605
|
},
|
|
@@ -25577,10 +25579,18 @@ export default {
|
|
|
25577
25579
|
minLength: 1,
|
|
25578
25580
|
type: 'string',
|
|
25579
25581
|
},
|
|
25582
|
+
user_identity_id: {
|
|
25583
|
+
description: 'ID of the [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) for which you want to create a client session.',
|
|
25584
|
+
type: 'string',
|
|
25585
|
+
},
|
|
25580
25586
|
user_identity_ids: {
|
|
25581
|
-
|
|
25587
|
+
deprecated: true,
|
|
25588
|
+
description: 'IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session.',
|
|
25582
25589
|
items: { type: 'string' },
|
|
25590
|
+
maxItems: 1,
|
|
25591
|
+
minItems: 1,
|
|
25583
25592
|
type: 'array',
|
|
25593
|
+
'x-deprecated': 'Use `user_identity_id`.',
|
|
25584
25594
|
},
|
|
25585
25595
|
},
|
|
25586
25596
|
type: 'object',
|
|
@@ -25653,10 +25663,18 @@ export default {
|
|
|
25653
25663
|
minLength: 1,
|
|
25654
25664
|
type: 'string',
|
|
25655
25665
|
},
|
|
25666
|
+
user_identity_id: {
|
|
25667
|
+
description: 'ID of the [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) for which you want to create a client session.',
|
|
25668
|
+
type: 'string',
|
|
25669
|
+
},
|
|
25656
25670
|
user_identity_ids: {
|
|
25657
|
-
|
|
25671
|
+
deprecated: true,
|
|
25672
|
+
description: 'IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session.',
|
|
25658
25673
|
items: { type: 'string' },
|
|
25674
|
+
maxItems: 1,
|
|
25675
|
+
minItems: 1,
|
|
25659
25676
|
type: 'array',
|
|
25677
|
+
'x-deprecated': 'Use `user_identity_id`.',
|
|
25660
25678
|
},
|
|
25661
25679
|
},
|
|
25662
25680
|
type: 'object',
|
|
@@ -25836,10 +25854,18 @@ export default {
|
|
|
25836
25854
|
minLength: 1,
|
|
25837
25855
|
type: 'string',
|
|
25838
25856
|
},
|
|
25857
|
+
user_identity_id: {
|
|
25858
|
+
description: 'ID of the [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session (or that are already associated with the existing client session).',
|
|
25859
|
+
type: 'string',
|
|
25860
|
+
},
|
|
25839
25861
|
user_identity_ids: {
|
|
25840
|
-
|
|
25862
|
+
deprecated: true,
|
|
25863
|
+
description: 'IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session.',
|
|
25841
25864
|
items: { type: 'string' },
|
|
25865
|
+
maxItems: 1,
|
|
25866
|
+
minItems: 1,
|
|
25842
25867
|
type: 'array',
|
|
25868
|
+
'x-deprecated': 'Use `user_identity_id`.',
|
|
25843
25869
|
},
|
|
25844
25870
|
},
|
|
25845
25871
|
type: 'object',
|
|
@@ -25910,10 +25936,18 @@ export default {
|
|
|
25910
25936
|
description: 'Your user ID for the user that you want to associate with the client session.',
|
|
25911
25937
|
type: 'string',
|
|
25912
25938
|
},
|
|
25939
|
+
user_identity_id: {
|
|
25940
|
+
description: 'ID of the [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session.',
|
|
25941
|
+
type: 'string',
|
|
25942
|
+
},
|
|
25913
25943
|
user_identity_ids: {
|
|
25944
|
+
deprecated: true,
|
|
25914
25945
|
description: 'IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session.',
|
|
25915
25946
|
items: { type: 'string' },
|
|
25947
|
+
maxItems: 1,
|
|
25948
|
+
minItems: 1,
|
|
25916
25949
|
type: 'array',
|
|
25950
|
+
'x-deprecated': 'Use `user_identity_id`.',
|
|
25917
25951
|
},
|
|
25918
25952
|
},
|
|
25919
25953
|
type: 'object',
|
|
@@ -25979,10 +26013,18 @@ export default {
|
|
|
25979
26013
|
description: 'Your user ID for the user that you want to associate with the client session.',
|
|
25980
26014
|
type: 'string',
|
|
25981
26015
|
},
|
|
26016
|
+
user_identity_id: {
|
|
26017
|
+
description: 'ID of the [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session.',
|
|
26018
|
+
type: 'string',
|
|
26019
|
+
},
|
|
25982
26020
|
user_identity_ids: {
|
|
26021
|
+
deprecated: true,
|
|
25983
26022
|
description: 'IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session.',
|
|
25984
26023
|
items: { type: 'string' },
|
|
26024
|
+
maxItems: 1,
|
|
26025
|
+
minItems: 1,
|
|
25985
26026
|
type: 'array',
|
|
26027
|
+
'x-deprecated': 'Use `user_identity_id`.',
|
|
25986
26028
|
},
|
|
25987
26029
|
},
|
|
25988
26030
|
type: 'object',
|