@seamapi/types 1.79.0 → 1.80.1
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 -72
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +152 -79
- package/lib/seam/connect/openapi.d.ts +138 -78
- package/lib/seam/connect/openapi.js +100 -72
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +14 -1
- 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 -72
- package/src/lib/seam/connect/route-types.ts +15 -1
- package/src/lib/seam/connect/unstable/models/acs/credential.ts +2 -0
|
@@ -843,6 +843,8 @@ export interface Routes {
|
|
|
843
843
|
external_type_display_name?: string | undefined
|
|
844
844
|
created_at: string
|
|
845
845
|
workspace_id: string
|
|
846
|
+
starts_at?: string | undefined
|
|
847
|
+
ends_at?: string | undefined
|
|
846
848
|
}
|
|
847
849
|
}
|
|
848
850
|
}
|
|
@@ -891,6 +893,8 @@ export interface Routes {
|
|
|
891
893
|
external_type_display_name?: string | undefined
|
|
892
894
|
created_at: string
|
|
893
895
|
workspace_id: string
|
|
896
|
+
starts_at?: string | undefined
|
|
897
|
+
ends_at?: string | undefined
|
|
894
898
|
}
|
|
895
899
|
}
|
|
896
900
|
}
|
|
@@ -934,6 +938,8 @@ export interface Routes {
|
|
|
934
938
|
external_type_display_name?: string | undefined
|
|
935
939
|
created_at: string
|
|
936
940
|
workspace_id: string
|
|
941
|
+
starts_at?: string | undefined
|
|
942
|
+
ends_at?: string | undefined
|
|
937
943
|
}
|
|
938
944
|
}
|
|
939
945
|
}
|
|
@@ -953,6 +959,9 @@ export interface Routes {
|
|
|
953
959
|
acs_user_id: string
|
|
954
960
|
acs_system_id: string
|
|
955
961
|
}
|
|
962
|
+
| {
|
|
963
|
+
user_identity_id: string
|
|
964
|
+
}
|
|
956
965
|
formData: {}
|
|
957
966
|
jsonResponse: {
|
|
958
967
|
acs_credentials: Array<{
|
|
@@ -974,6 +983,8 @@ export interface Routes {
|
|
|
974
983
|
external_type_display_name?: string | undefined
|
|
975
984
|
created_at: string
|
|
976
985
|
workspace_id: string
|
|
986
|
+
starts_at?: string | undefined
|
|
987
|
+
ends_at?: string | undefined
|
|
977
988
|
}>
|
|
978
989
|
}
|
|
979
990
|
}
|
|
@@ -1007,6 +1018,8 @@ export interface Routes {
|
|
|
1007
1018
|
external_type_display_name?: string | undefined
|
|
1008
1019
|
created_at: string
|
|
1009
1020
|
workspace_id: string
|
|
1021
|
+
starts_at?: string | undefined
|
|
1022
|
+
ends_at?: string | undefined
|
|
1010
1023
|
}
|
|
1011
1024
|
}
|
|
1012
1025
|
}
|
|
@@ -1040,6 +1053,8 @@ export interface Routes {
|
|
|
1040
1053
|
external_type_display_name?: string | undefined
|
|
1041
1054
|
created_at: string
|
|
1042
1055
|
workspace_id: string
|
|
1056
|
+
starts_at?: string | undefined
|
|
1057
|
+
ends_at?: string | undefined
|
|
1043
1058
|
}
|
|
1044
1059
|
}
|
|
1045
1060
|
}
|
|
@@ -3722,7 +3737,6 @@ export interface Routes {
|
|
|
3722
3737
|
}
|
|
3723
3738
|
| undefined
|
|
3724
3739
|
name?: (string | null) | undefined
|
|
3725
|
-
location?: {} | undefined
|
|
3726
3740
|
is_managed?: boolean
|
|
3727
3741
|
}
|
|
3728
3742
|
formData: {}
|
|
@@ -30,6 +30,8 @@ export const acs_credential = z.object({
|
|
|
30
30
|
external_type_display_name: z.string().optional(),
|
|
31
31
|
created_at: z.string().datetime(),
|
|
32
32
|
workspace_id: z.string().uuid(),
|
|
33
|
+
starts_at: z.string().optional(),
|
|
34
|
+
ends_at: z.string().optional(),
|
|
33
35
|
})
|
|
34
36
|
|
|
35
37
|
export type AcsCredential = z.output<typeof acs_credential>
|