@seamapi/types 1.308.0 → 1.309.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 +3 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +12 -0
- package/lib/seam/connect/models/client-sessions/client-session.d.ts +3 -0
- package/lib/seam/connect/models/client-sessions/client-session.js +1 -0
- package/lib/seam/connect/models/client-sessions/client-session.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +4 -0
- package/lib/seam/connect/openapi.js +2 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +5 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/client-sessions/client-session.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +2 -0
- package/src/lib/seam/connect/route-types.ts +5 -0
package/dist/connect.d.cts
CHANGED
|
@@ -5232,6 +5232,7 @@ declare const client_session: z.ZodObject<{
|
|
|
5232
5232
|
client_session_id: z.ZodString;
|
|
5233
5233
|
workspace_id: z.ZodString;
|
|
5234
5234
|
created_at: z.ZodString;
|
|
5235
|
+
expires_at: z.ZodString;
|
|
5235
5236
|
token: z.ZodString;
|
|
5236
5237
|
user_identifier_key: z.ZodNullable<z.ZodString>;
|
|
5237
5238
|
device_count: z.ZodNumber;
|
|
@@ -5243,6 +5244,7 @@ declare const client_session: z.ZodObject<{
|
|
|
5243
5244
|
workspace_id: string;
|
|
5244
5245
|
connected_account_ids: string[];
|
|
5245
5246
|
client_session_id: string;
|
|
5247
|
+
expires_at: string;
|
|
5246
5248
|
token: string;
|
|
5247
5249
|
user_identifier_key: string | null;
|
|
5248
5250
|
device_count: number;
|
|
@@ -5253,6 +5255,7 @@ declare const client_session: z.ZodObject<{
|
|
|
5253
5255
|
workspace_id: string;
|
|
5254
5256
|
connected_account_ids: string[];
|
|
5255
5257
|
client_session_id: string;
|
|
5258
|
+
expires_at: string;
|
|
5256
5259
|
token: string;
|
|
5257
5260
|
user_identifier_key: string | null;
|
|
5258
5261
|
device_count: number;
|
|
@@ -14616,6 +14619,10 @@ declare const _default: {
|
|
|
14616
14619
|
format: string;
|
|
14617
14620
|
type: string;
|
|
14618
14621
|
};
|
|
14622
|
+
expires_at: {
|
|
14623
|
+
format: string;
|
|
14624
|
+
type: string;
|
|
14625
|
+
};
|
|
14619
14626
|
token: {
|
|
14620
14627
|
type: string;
|
|
14621
14628
|
};
|
|
@@ -43961,6 +43968,7 @@ interface Routes {
|
|
|
43961
43968
|
client_session_id: string;
|
|
43962
43969
|
workspace_id: string;
|
|
43963
43970
|
created_at: string;
|
|
43971
|
+
expires_at: string;
|
|
43964
43972
|
token: string;
|
|
43965
43973
|
user_identifier_key: string | null;
|
|
43966
43974
|
device_count: number;
|
|
@@ -43996,6 +44004,7 @@ interface Routes {
|
|
|
43996
44004
|
client_session_id: string;
|
|
43997
44005
|
workspace_id: string;
|
|
43998
44006
|
created_at: string;
|
|
44007
|
+
expires_at: string;
|
|
43999
44008
|
token: string;
|
|
44000
44009
|
user_identifier_key: string | null;
|
|
44001
44010
|
device_count: number;
|
|
@@ -44023,6 +44032,7 @@ interface Routes {
|
|
|
44023
44032
|
client_session_id: string;
|
|
44024
44033
|
workspace_id: string;
|
|
44025
44034
|
created_at: string;
|
|
44035
|
+
expires_at: string;
|
|
44026
44036
|
token: string;
|
|
44027
44037
|
user_identifier_key: string | null;
|
|
44028
44038
|
device_count: number;
|
|
@@ -44050,6 +44060,7 @@ interface Routes {
|
|
|
44050
44060
|
client_session_id: string;
|
|
44051
44061
|
workspace_id: string;
|
|
44052
44062
|
created_at: string;
|
|
44063
|
+
expires_at: string;
|
|
44053
44064
|
token: string;
|
|
44054
44065
|
user_identifier_key: string | null;
|
|
44055
44066
|
device_count: number;
|
|
@@ -44077,6 +44088,7 @@ interface Routes {
|
|
|
44077
44088
|
client_session_id: string;
|
|
44078
44089
|
workspace_id: string;
|
|
44079
44090
|
created_at: string;
|
|
44091
|
+
expires_at: string;
|
|
44080
44092
|
token: string;
|
|
44081
44093
|
user_identifier_key: string | null;
|
|
44082
44094
|
device_count: number;
|
|
@@ -3,6 +3,7 @@ export declare const client_session: z.ZodObject<{
|
|
|
3
3
|
client_session_id: z.ZodString;
|
|
4
4
|
workspace_id: z.ZodString;
|
|
5
5
|
created_at: z.ZodString;
|
|
6
|
+
expires_at: z.ZodString;
|
|
6
7
|
token: z.ZodString;
|
|
7
8
|
user_identifier_key: z.ZodNullable<z.ZodString>;
|
|
8
9
|
device_count: z.ZodNumber;
|
|
@@ -14,6 +15,7 @@ export declare const client_session: z.ZodObject<{
|
|
|
14
15
|
workspace_id: string;
|
|
15
16
|
connected_account_ids: string[];
|
|
16
17
|
client_session_id: string;
|
|
18
|
+
expires_at: string;
|
|
17
19
|
token: string;
|
|
18
20
|
user_identifier_key: string | null;
|
|
19
21
|
device_count: number;
|
|
@@ -24,6 +26,7 @@ export declare const client_session: z.ZodObject<{
|
|
|
24
26
|
workspace_id: string;
|
|
25
27
|
connected_account_ids: string[];
|
|
26
28
|
client_session_id: string;
|
|
29
|
+
expires_at: string;
|
|
27
30
|
token: string;
|
|
28
31
|
user_identifier_key: string | null;
|
|
29
32
|
device_count: number;
|
|
@@ -3,6 +3,7 @@ export const client_session = z.object({
|
|
|
3
3
|
client_session_id: z.string().uuid(),
|
|
4
4
|
workspace_id: z.string().uuid(),
|
|
5
5
|
created_at: z.string().datetime(),
|
|
6
|
+
expires_at: z.string().datetime(),
|
|
6
7
|
token: z.string(),
|
|
7
8
|
user_identifier_key: z.string().nullable(),
|
|
8
9
|
device_count: z.number(),
|
|
@@ -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,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC1C,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,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,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;CAC9C,CAAC,CAAA"}
|
|
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,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,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;CAC9C,CAAC,CAAA"}
|
|
@@ -3928,6 +3928,7 @@ export default {
|
|
|
3928
3928
|
},
|
|
3929
3929
|
created_at: { format: 'date-time', type: 'string' },
|
|
3930
3930
|
device_count: { format: 'float', type: 'number' },
|
|
3931
|
+
expires_at: { format: 'date-time', type: 'string' },
|
|
3931
3932
|
token: { type: 'string' },
|
|
3932
3933
|
user_identifier_key: { nullable: true, type: 'string' },
|
|
3933
3934
|
user_identity_ids: {
|
|
@@ -3940,6 +3941,7 @@ export default {
|
|
|
3940
3941
|
'client_session_id',
|
|
3941
3942
|
'workspace_id',
|
|
3942
3943
|
'created_at',
|
|
3944
|
+
'expires_at',
|
|
3943
3945
|
'token',
|
|
3944
3946
|
'user_identifier_key',
|
|
3945
3947
|
'device_count',
|