@seamapi/types 1.79.0 → 1.80.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 +100 -70
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +152 -70
- package/lib/seam/connect/openapi.d.ts +138 -70
- package/lib/seam/connect/openapi.js +100 -70
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +14 -0
- package/lib/seam/connect/unstable/models/acs/credential.d.ts +6 -0
- package/lib/seam/connect/unstable/models/acs/credential.js +2 -0
- package/lib/seam/connect/unstable/models/acs/credential.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +100 -70
- package/src/lib/seam/connect/route-types.ts +15 -0
- package/src/lib/seam/connect/unstable/models/acs/credential.ts +2 -0
|
@@ -799,6 +799,8 @@ export interface Routes {
|
|
|
799
799
|
external_type_display_name?: string | undefined;
|
|
800
800
|
created_at: string;
|
|
801
801
|
workspace_id: string;
|
|
802
|
+
starts_at?: string | undefined;
|
|
803
|
+
ends_at?: string | undefined;
|
|
802
804
|
};
|
|
803
805
|
};
|
|
804
806
|
};
|
|
@@ -833,6 +835,8 @@ export interface Routes {
|
|
|
833
835
|
external_type_display_name?: string | undefined;
|
|
834
836
|
created_at: string;
|
|
835
837
|
workspace_id: string;
|
|
838
|
+
starts_at?: string | undefined;
|
|
839
|
+
ends_at?: string | undefined;
|
|
836
840
|
};
|
|
837
841
|
};
|
|
838
842
|
};
|
|
@@ -869,6 +873,8 @@ export interface Routes {
|
|
|
869
873
|
external_type_display_name?: string | undefined;
|
|
870
874
|
created_at: string;
|
|
871
875
|
workspace_id: string;
|
|
876
|
+
starts_at?: string | undefined;
|
|
877
|
+
ends_at?: string | undefined;
|
|
872
878
|
};
|
|
873
879
|
};
|
|
874
880
|
};
|
|
@@ -884,6 +890,8 @@ export interface Routes {
|
|
|
884
890
|
} | {
|
|
885
891
|
acs_user_id: string;
|
|
886
892
|
acs_system_id: string;
|
|
893
|
+
} | {
|
|
894
|
+
user_identity_id: string;
|
|
887
895
|
};
|
|
888
896
|
formData: {};
|
|
889
897
|
jsonResponse: {
|
|
@@ -899,6 +907,8 @@ export interface Routes {
|
|
|
899
907
|
external_type_display_name?: string | undefined;
|
|
900
908
|
created_at: string;
|
|
901
909
|
workspace_id: string;
|
|
910
|
+
starts_at?: string | undefined;
|
|
911
|
+
ends_at?: string | undefined;
|
|
902
912
|
}>;
|
|
903
913
|
};
|
|
904
914
|
};
|
|
@@ -925,6 +935,8 @@ export interface Routes {
|
|
|
925
935
|
external_type_display_name?: string | undefined;
|
|
926
936
|
created_at: string;
|
|
927
937
|
workspace_id: string;
|
|
938
|
+
starts_at?: string | undefined;
|
|
939
|
+
ends_at?: string | undefined;
|
|
928
940
|
};
|
|
929
941
|
};
|
|
930
942
|
};
|
|
@@ -951,6 +963,8 @@ export interface Routes {
|
|
|
951
963
|
external_type_display_name?: string | undefined;
|
|
952
964
|
created_at: string;
|
|
953
965
|
workspace_id: string;
|
|
966
|
+
starts_at?: string | undefined;
|
|
967
|
+
ends_at?: string | undefined;
|
|
954
968
|
};
|
|
955
969
|
};
|
|
956
970
|
};
|
|
@@ -14,6 +14,8 @@ export declare const acs_credential: z.ZodObject<{
|
|
|
14
14
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
15
15
|
created_at: z.ZodString;
|
|
16
16
|
workspace_id: z.ZodString;
|
|
17
|
+
starts_at: z.ZodOptional<z.ZodString>;
|
|
18
|
+
ends_at: z.ZodOptional<z.ZodString>;
|
|
17
19
|
}, "strip", z.ZodTypeAny, {
|
|
18
20
|
workspace_id: string;
|
|
19
21
|
created_at: string;
|
|
@@ -26,6 +28,8 @@ export declare const acs_credential: z.ZodObject<{
|
|
|
26
28
|
code?: string | null | undefined;
|
|
27
29
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | undefined;
|
|
28
30
|
external_type_display_name?: string | undefined;
|
|
31
|
+
starts_at?: string | undefined;
|
|
32
|
+
ends_at?: string | undefined;
|
|
29
33
|
}, {
|
|
30
34
|
workspace_id: string;
|
|
31
35
|
created_at: string;
|
|
@@ -38,5 +42,7 @@ export declare const acs_credential: z.ZodObject<{
|
|
|
38
42
|
code?: string | null | undefined;
|
|
39
43
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | undefined;
|
|
40
44
|
external_type_display_name?: string | undefined;
|
|
45
|
+
starts_at?: string | undefined;
|
|
46
|
+
ends_at?: string | undefined;
|
|
41
47
|
}>;
|
|
42
48
|
export type AcsCredential = z.output<typeof acs_credential>;
|
|
@@ -23,5 +23,7 @@ export const acs_credential = z.object({
|
|
|
23
23
|
external_type_display_name: z.string().optional(),
|
|
24
24
|
created_at: z.string().datetime(),
|
|
25
25
|
workspace_id: z.string().uuid(),
|
|
26
|
+
starts_at: z.string().optional(),
|
|
27
|
+
ends_at: z.string().optional(),
|
|
26
28
|
});
|
|
27
29
|
//# sourceMappingURL=credential.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"credential.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/credential.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,wEAAwE;AACxE,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC,CAAC,IAAI,CAAC;IACjD,UAAU;IACV,kBAAkB;IAClB,gBAAgB;IAChB,iBAAiB;CAClB,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,iCAAiC,GAAG,CAAC,CAAC,IAAI,CAAC;IACtD,MAAM;IACN,MAAM;IACN,YAAY;CACb,CAAC,CAAA;AAMF,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACpC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IACzC,sBAAsB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IACpD,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnC,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACtC,aAAa,EAAE,iCAAiC;IAChD,aAAa,EAAE,4BAA4B,CAAC,QAAQ,EAAE;IACtD,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjD,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;
|
|
1
|
+
{"version":3,"file":"credential.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/credential.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,wEAAwE;AACxE,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC,CAAC,IAAI,CAAC;IACjD,UAAU;IACV,kBAAkB;IAClB,gBAAgB;IAChB,iBAAiB;CAClB,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,iCAAiC,GAAG,CAAC,CAAC,IAAI,CAAC;IACtD,MAAM;IACN,MAAM;IACN,YAAY;CACb,CAAC,CAAA;AAMF,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACpC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IACzC,sBAAsB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IACpD,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnC,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACtC,aAAa,EAAE,iCAAiC;IAChD,aAAa,EAAE,4BAA4B,CAAC,QAAQ,EAAE;IACtD,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjD,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC/B,CAAC,CAAA"}
|