@seamapi/types 1.153.2 → 1.154.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 +1 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +9 -0
- package/lib/seam/connect/models/acs/user.d.ts +3 -0
- package/lib/seam/connect/models/acs/user.js +1 -0
- package/lib/seam/connect/models/acs/user.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +4 -0
- package/lib/seam/connect/openapi.js +1 -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/acs/user.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +1 -0
- package/src/lib/seam/connect/route-types.ts +5 -0
package/dist/connect.d.cts
CHANGED
|
@@ -585,6 +585,10 @@ declare const _default: {
|
|
|
585
585
|
nullable: boolean;
|
|
586
586
|
type: string;
|
|
587
587
|
};
|
|
588
|
+
user_identity_full_name: {
|
|
589
|
+
nullable: boolean;
|
|
590
|
+
type: string;
|
|
591
|
+
};
|
|
588
592
|
user_identity_id: {
|
|
589
593
|
type: string;
|
|
590
594
|
};
|
|
@@ -16773,6 +16777,7 @@ interface Routes {
|
|
|
16773
16777
|
ends_at: string;
|
|
16774
16778
|
} | undefined;
|
|
16775
16779
|
user_identity_id?: string | undefined;
|
|
16780
|
+
user_identity_full_name?: (string | null) | undefined;
|
|
16776
16781
|
user_identity_email_address?: (string | null) | undefined;
|
|
16777
16782
|
user_identity_phone_number?: (string | null) | undefined;
|
|
16778
16783
|
full_name?: string | undefined;
|
|
@@ -17375,6 +17380,7 @@ interface Routes {
|
|
|
17375
17380
|
ends_at: string;
|
|
17376
17381
|
} | undefined;
|
|
17377
17382
|
user_identity_id?: string | undefined;
|
|
17383
|
+
user_identity_full_name?: (string | null) | undefined;
|
|
17378
17384
|
user_identity_email_address?: (string | null) | undefined;
|
|
17379
17385
|
user_identity_phone_number?: (string | null) | undefined;
|
|
17380
17386
|
full_name?: string | undefined;
|
|
@@ -17425,6 +17431,7 @@ interface Routes {
|
|
|
17425
17431
|
ends_at: string;
|
|
17426
17432
|
} | undefined;
|
|
17427
17433
|
user_identity_id?: string | undefined;
|
|
17434
|
+
user_identity_full_name?: (string | null) | undefined;
|
|
17428
17435
|
user_identity_email_address?: (string | null) | undefined;
|
|
17429
17436
|
user_identity_phone_number?: (string | null) | undefined;
|
|
17430
17437
|
full_name?: string | undefined;
|
|
@@ -17467,6 +17474,7 @@ interface Routes {
|
|
|
17467
17474
|
ends_at: string;
|
|
17468
17475
|
} | undefined;
|
|
17469
17476
|
user_identity_id?: string | undefined;
|
|
17477
|
+
user_identity_full_name?: (string | null) | undefined;
|
|
17470
17478
|
user_identity_email_address?: (string | null) | undefined;
|
|
17471
17479
|
user_identity_phone_number?: (string | null) | undefined;
|
|
17472
17480
|
full_name?: string | undefined;
|
|
@@ -24725,6 +24733,7 @@ interface Routes {
|
|
|
24725
24733
|
ends_at: string;
|
|
24726
24734
|
} | undefined;
|
|
24727
24735
|
user_identity_id?: string | undefined;
|
|
24736
|
+
user_identity_full_name?: (string | null) | undefined;
|
|
24728
24737
|
user_identity_email_address?: (string | null) | undefined;
|
|
24729
24738
|
user_identity_phone_number?: (string | null) | undefined;
|
|
24730
24739
|
full_name?: string | undefined;
|
|
@@ -22,6 +22,7 @@ export declare const acs_user: z.ZodObject<{
|
|
|
22
22
|
starts_at: string;
|
|
23
23
|
ends_at: string;
|
|
24
24
|
}>>;
|
|
25
|
+
user_identity_full_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25
26
|
user_identity_email_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26
27
|
user_identity_phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27
28
|
full_name: z.ZodOptional<z.ZodString>;
|
|
@@ -43,6 +44,7 @@ export declare const acs_user: z.ZodObject<{
|
|
|
43
44
|
starts_at: string;
|
|
44
45
|
ends_at: string;
|
|
45
46
|
} | undefined;
|
|
47
|
+
user_identity_full_name?: string | null | undefined;
|
|
46
48
|
user_identity_email_address?: string | null | undefined;
|
|
47
49
|
user_identity_phone_number?: string | null | undefined;
|
|
48
50
|
full_name?: string | undefined;
|
|
@@ -64,6 +66,7 @@ export declare const acs_user: z.ZodObject<{
|
|
|
64
66
|
starts_at: string;
|
|
65
67
|
ends_at: string;
|
|
66
68
|
} | undefined;
|
|
69
|
+
user_identity_full_name?: string | null | undefined;
|
|
67
70
|
user_identity_email_address?: string | null | undefined;
|
|
68
71
|
user_identity_phone_number?: string | null | undefined;
|
|
69
72
|
full_name?: string | undefined;
|
|
@@ -31,6 +31,7 @@ export const acs_user = z
|
|
|
31
31
|
is_suspended: z.boolean(),
|
|
32
32
|
access_schedule: schedule.optional(),
|
|
33
33
|
user_identity_id: z.string().optional(),
|
|
34
|
+
user_identity_full_name: z.string().nullable().optional(),
|
|
34
35
|
user_identity_email_address: z.string().nullable().optional(),
|
|
35
36
|
user_identity_phone_number: z.string().nullable().optional(),
|
|
36
37
|
})
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/user.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAA;AACjD,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AAEzC,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC3C,UAAU;IACV,YAAY;IACZ,6BAA6B;IAC7B,iBAAiB;IACjB,YAAY;CACb,CAAC,CAAA;AAIF,MAAM,WAAW,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC;;;;KAI3C,CAAC;IACJ,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IAC5C,YAAY,EAAE,YAAY,CAAC,QAAQ,EAAE;CACtC,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAC;KACtB,MAAM,CAAC;IACN,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC9B,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IAC/C,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,aAAa,EAAE,sBAAsB,CAAC,QAAQ,EAAE;IAChD,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjD,YAAY,EAAE,CAAC,CAAC,OAAO,EAAE;IACzB,eAAe,EAAE,QAAQ,CAAC,QAAQ,EAAE;IACpC,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACvC,2BAA2B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IAC7D,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;CAC7D,CAAC;KACD,KAAK,CAAC,WAAW,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"user.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/user.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAA;AACjD,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AAEzC,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC3C,UAAU;IACV,YAAY;IACZ,6BAA6B;IAC7B,iBAAiB;IACjB,YAAY;CACb,CAAC,CAAA;AAIF,MAAM,WAAW,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC;;;;KAI3C,CAAC;IACJ,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IAC5C,YAAY,EAAE,YAAY,CAAC,QAAQ,EAAE;CACtC,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAC;KACtB,MAAM,CAAC;IACN,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC9B,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IAC/C,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,aAAa,EAAE,sBAAsB,CAAC,QAAQ,EAAE;IAChD,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjD,YAAY,EAAE,CAAC,CAAC,OAAO,EAAE;IACzB,eAAe,EAAE,QAAQ,CAAC,QAAQ,EAAE;IACpC,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACvC,uBAAuB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACzD,2BAA2B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IAC7D,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;CAC7D,CAAC;KACD,KAAK,CAAC,WAAW,CAAC,CAAA"}
|
|
@@ -439,6 +439,7 @@ export default {
|
|
|
439
439
|
is_suspended: { type: 'boolean' },
|
|
440
440
|
phone_number: { nullable: true, type: 'string' },
|
|
441
441
|
user_identity_email_address: { nullable: true, type: 'string' },
|
|
442
|
+
user_identity_full_name: { nullable: true, type: 'string' },
|
|
442
443
|
user_identity_id: { type: 'string' },
|
|
443
444
|
user_identity_phone_number: { nullable: true, type: 'string' },
|
|
444
445
|
workspace_id: { format: 'uuid', type: 'string' },
|