@seamapi/types 1.542.0 → 1.544.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 +340 -289
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +428 -374
- package/dist/index.cjs +340 -289
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +10 -10
- package/lib/seam/connect/models/client-sessions/client-session.d.ts +3 -3
- package/lib/seam/connect/models/client-sessions/client-session.js +2 -3
- package/lib/seam/connect/models/client-sessions/client-session.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +355 -308
- package/lib/seam/connect/openapi.js +326 -275
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +65 -58
- package/package.json +1 -1
- package/src/lib/seam/connect/models/client-sessions/client-session.ts +2 -3
- package/src/lib/seam/connect/openapi.ts +326 -275
- package/src/lib/seam/connect/route-types.ts +75 -68
|
@@ -29447,7 +29447,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
29447
29447
|
token: z.ZodString;
|
|
29448
29448
|
user_identifier_key: z.ZodNullable<z.ZodString>;
|
|
29449
29449
|
device_count: z.ZodNumber;
|
|
29450
|
-
|
|
29450
|
+
customer_key: z.ZodOptional<z.ZodString>;
|
|
29451
29451
|
connected_account_ids: z.ZodArray<z.ZodString, "many">;
|
|
29452
29452
|
connect_webview_ids: z.ZodArray<z.ZodString, "many">;
|
|
29453
29453
|
user_identity_ids: z.ZodArray<z.ZodString, "many">;
|
|
@@ -29463,8 +29463,8 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
29463
29463
|
device_count: number;
|
|
29464
29464
|
connect_webview_ids: string[];
|
|
29465
29465
|
user_identity_ids: string[];
|
|
29466
|
+
customer_key?: string | undefined;
|
|
29466
29467
|
user_identity_id?: string | undefined;
|
|
29467
|
-
customer_id?: string | undefined;
|
|
29468
29468
|
}, {
|
|
29469
29469
|
workspace_id: string;
|
|
29470
29470
|
created_at: string;
|
|
@@ -29476,8 +29476,8 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
29476
29476
|
device_count: number;
|
|
29477
29477
|
connect_webview_ids: string[];
|
|
29478
29478
|
user_identity_ids: string[];
|
|
29479
|
+
customer_key?: string | undefined;
|
|
29479
29480
|
user_identity_id?: string | undefined;
|
|
29480
|
-
customer_id?: string | undefined;
|
|
29481
29481
|
}>, "many">>;
|
|
29482
29482
|
unmanaged_acs_users: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
29483
29483
|
acs_user_id: z.ZodString;
|
|
@@ -42262,8 +42262,8 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42262
42262
|
device_count: number;
|
|
42263
42263
|
connect_webview_ids: string[];
|
|
42264
42264
|
user_identity_ids: string[];
|
|
42265
|
+
customer_key?: string | undefined;
|
|
42265
42266
|
user_identity_id?: string | undefined;
|
|
42266
|
-
customer_id?: string | undefined;
|
|
42267
42267
|
}[] | undefined;
|
|
42268
42268
|
unmanaged_acs_users?: {
|
|
42269
42269
|
display_name: string;
|
|
@@ -46192,8 +46192,8 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
46192
46192
|
device_count: number;
|
|
46193
46193
|
connect_webview_ids: string[];
|
|
46194
46194
|
user_identity_ids: string[];
|
|
46195
|
+
customer_key?: string | undefined;
|
|
46195
46196
|
user_identity_id?: string | undefined;
|
|
46196
|
-
customer_id?: string | undefined;
|
|
46197
46197
|
}[] | undefined;
|
|
46198
46198
|
unmanaged_acs_users?: {
|
|
46199
46199
|
display_name: string;
|
|
@@ -58099,7 +58099,7 @@ export declare const batch: z.ZodObject<{
|
|
|
58099
58099
|
token: z.ZodString;
|
|
58100
58100
|
user_identifier_key: z.ZodNullable<z.ZodString>;
|
|
58101
58101
|
device_count: z.ZodNumber;
|
|
58102
|
-
|
|
58102
|
+
customer_key: z.ZodOptional<z.ZodString>;
|
|
58103
58103
|
connected_account_ids: z.ZodArray<z.ZodString, "many">;
|
|
58104
58104
|
connect_webview_ids: z.ZodArray<z.ZodString, "many">;
|
|
58105
58105
|
user_identity_ids: z.ZodArray<z.ZodString, "many">;
|
|
@@ -58115,8 +58115,8 @@ export declare const batch: z.ZodObject<{
|
|
|
58115
58115
|
device_count: number;
|
|
58116
58116
|
connect_webview_ids: string[];
|
|
58117
58117
|
user_identity_ids: string[];
|
|
58118
|
+
customer_key?: string | undefined;
|
|
58118
58119
|
user_identity_id?: string | undefined;
|
|
58119
|
-
customer_id?: string | undefined;
|
|
58120
58120
|
}, {
|
|
58121
58121
|
workspace_id: string;
|
|
58122
58122
|
created_at: string;
|
|
@@ -58128,8 +58128,8 @@ export declare const batch: z.ZodObject<{
|
|
|
58128
58128
|
device_count: number;
|
|
58129
58129
|
connect_webview_ids: string[];
|
|
58130
58130
|
user_identity_ids: string[];
|
|
58131
|
+
customer_key?: string | undefined;
|
|
58131
58132
|
user_identity_id?: string | undefined;
|
|
58132
|
-
customer_id?: string | undefined;
|
|
58133
58133
|
}>, "many">>;
|
|
58134
58134
|
unmanaged_acs_users: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
58135
58135
|
acs_user_id: z.ZodString;
|
|
@@ -70461,8 +70461,8 @@ export declare const batch: z.ZodObject<{
|
|
|
70461
70461
|
device_count: number;
|
|
70462
70462
|
connect_webview_ids: string[];
|
|
70463
70463
|
user_identity_ids: string[];
|
|
70464
|
+
customer_key?: string | undefined;
|
|
70464
70465
|
user_identity_id?: string | undefined;
|
|
70465
|
-
customer_id?: string | undefined;
|
|
70466
70466
|
}[] | undefined;
|
|
70467
70467
|
unmanaged_acs_users?: {
|
|
70468
70468
|
display_name: string;
|
|
@@ -74320,8 +74320,8 @@ export declare const batch: z.ZodObject<{
|
|
|
74320
74320
|
device_count: number;
|
|
74321
74321
|
connect_webview_ids: string[];
|
|
74322
74322
|
user_identity_ids: string[];
|
|
74323
|
+
customer_key?: string | undefined;
|
|
74323
74324
|
user_identity_id?: string | undefined;
|
|
74324
|
-
customer_id?: string | undefined;
|
|
74325
74325
|
}[] | undefined;
|
|
74326
74326
|
unmanaged_acs_users?: {
|
|
74327
74327
|
display_name: string;
|
|
@@ -7,7 +7,7 @@ export declare const client_session: z.ZodObject<{
|
|
|
7
7
|
token: z.ZodString;
|
|
8
8
|
user_identifier_key: z.ZodNullable<z.ZodString>;
|
|
9
9
|
device_count: z.ZodNumber;
|
|
10
|
-
|
|
10
|
+
customer_key: z.ZodOptional<z.ZodString>;
|
|
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">;
|
|
@@ -23,8 +23,8 @@ export declare const client_session: z.ZodObject<{
|
|
|
23
23
|
device_count: number;
|
|
24
24
|
connect_webview_ids: string[];
|
|
25
25
|
user_identity_ids: string[];
|
|
26
|
+
customer_key?: string | undefined;
|
|
26
27
|
user_identity_id?: string | undefined;
|
|
27
|
-
customer_id?: string | undefined;
|
|
28
28
|
}, {
|
|
29
29
|
workspace_id: string;
|
|
30
30
|
created_at: string;
|
|
@@ -36,7 +36,7 @@ export declare const client_session: z.ZodObject<{
|
|
|
36
36
|
device_count: number;
|
|
37
37
|
connect_webview_ids: string[];
|
|
38
38
|
user_identity_ids: string[];
|
|
39
|
+
customer_key?: string | undefined;
|
|
39
40
|
user_identity_id?: string | undefined;
|
|
40
|
-
customer_id?: string | undefined;
|
|
41
41
|
}>;
|
|
42
42
|
export type ClientSession = z.infer<typeof client_session>;
|
|
@@ -26,11 +26,10 @@ export const client_session = z.object({
|
|
|
26
26
|
device_count: z
|
|
27
27
|
.number()
|
|
28
28
|
.describe('Number of devices associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens).'),
|
|
29
|
-
|
|
29
|
+
customer_key: z
|
|
30
30
|
.string()
|
|
31
|
-
.uuid()
|
|
32
31
|
.optional()
|
|
33
|
-
.describe('Customer
|
|
32
|
+
.describe('Customer key associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens).'),
|
|
34
33
|
connected_account_ids: z
|
|
35
34
|
.array(z.string().uuid())
|
|
36
35
|
.describe('IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens).'),
|
|
@@ -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;SACjB,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,6GAA6G,CAC9G;IACH,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,mMAAmM,CACpM;IACH,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,0IAA0I,CAC3I;IACH,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,sIAAsI,CACvI;IACH,KAAK,EAAE,CAAC;SACL,MAAM,EAAE;SACR,QAAQ,CACP,4IAA4I,CAC7I;IACH,mBAAmB,EAAE,CAAC;SACnB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,iJAAiJ,CAClJ;IACH,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,QAAQ,CACP,yIAAyI,CAC1I;IACH,
|
|
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;SACjB,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,6GAA6G,CAC9G;IACH,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,mMAAmM,CACpM;IACH,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,0IAA0I,CAC3I;IACH,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,sIAAsI,CACvI;IACH,KAAK,EAAE,CAAC;SACL,MAAM,EAAE;SACR,QAAQ,CACP,4IAA4I,CAC7I;IACH,mBAAmB,EAAE,CAAC;SACnB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,iJAAiJ,CAClJ;IACH,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,QAAQ,CACP,yIAAyI,CAC1I;IACH,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,oIAAoI,CACrI;IACH,qBAAqB,EAAE,CAAC;SACrB,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;SACxB,QAAQ,CACP,qNAAqN,CACtN;IACH,mBAAmB,EAAE,CAAC;SACnB,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;SACxB,QAAQ,CACP,iNAAiN,CAClN;IACH,iBAAiB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC;;;;;GAKtD,CAAC;IACF,gBAAgB,EAAE,CAAC;SAChB,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,EAAE;SACV,QAAQ,CACP,2MAA2M,CAC5M;CACJ,CAAC,CAAC,QAAQ,CAAC;;;;;;;;;;;;;CAaX,CAAC,CAAA"}
|