@seamapi/types 1.378.0 → 1.379.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 +74 -13
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +132 -0
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +60 -0
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.d.ts +61 -0
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js +1 -0
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +30 -0
- package/lib/seam/connect/openapi.js +72 -12
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +42 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +72 -12
- package/src/lib/seam/connect/route-types.ts +42 -0
package/dist/connect.cjs
CHANGED
|
@@ -2403,7 +2403,8 @@ var start_end_schedule = zod.z.object({
|
|
|
2403
2403
|
});
|
|
2404
2404
|
var schedule = start_end_schedule;
|
|
2405
2405
|
var common_pending_mutation = zod.z.object({
|
|
2406
|
-
created_at: zod.z.string().datetime()
|
|
2406
|
+
created_at: zod.z.string().datetime(),
|
|
2407
|
+
message: zod.z.string()
|
|
2407
2408
|
});
|
|
2408
2409
|
var creating = common_pending_mutation.extend({
|
|
2409
2410
|
mutation_code: zod.z.literal("creating")
|
|
@@ -6816,17 +6817,19 @@ var openapi_default = {
|
|
|
6816
6817
|
{
|
|
6817
6818
|
properties: {
|
|
6818
6819
|
created_at: { format: "date-time", type: "string" },
|
|
6820
|
+
message: { type: "string" },
|
|
6819
6821
|
mutation_code: { enum: ["creating"], type: "string" }
|
|
6820
6822
|
},
|
|
6821
|
-
required: ["created_at", "mutation_code"],
|
|
6823
|
+
required: ["created_at", "message", "mutation_code"],
|
|
6822
6824
|
type: "object"
|
|
6823
6825
|
},
|
|
6824
6826
|
{
|
|
6825
6827
|
properties: {
|
|
6826
6828
|
created_at: { format: "date-time", type: "string" },
|
|
6829
|
+
message: { type: "string" },
|
|
6827
6830
|
mutation_code: { enum: ["deleting"], type: "string" }
|
|
6828
6831
|
},
|
|
6829
|
-
required: ["created_at", "mutation_code"],
|
|
6832
|
+
required: ["created_at", "message", "mutation_code"],
|
|
6830
6833
|
type: "object"
|
|
6831
6834
|
},
|
|
6832
6835
|
{
|
|
@@ -6844,6 +6847,7 @@ var openapi_default = {
|
|
|
6844
6847
|
},
|
|
6845
6848
|
type: "object"
|
|
6846
6849
|
},
|
|
6850
|
+
message: { type: "string" },
|
|
6847
6851
|
mutation_code: {
|
|
6848
6852
|
enum: ["updating_user_information"],
|
|
6849
6853
|
type: "string"
|
|
@@ -6861,7 +6865,13 @@ var openapi_default = {
|
|
|
6861
6865
|
type: "object"
|
|
6862
6866
|
}
|
|
6863
6867
|
},
|
|
6864
|
-
required: [
|
|
6868
|
+
required: [
|
|
6869
|
+
"created_at",
|
|
6870
|
+
"message",
|
|
6871
|
+
"mutation_code",
|
|
6872
|
+
"from",
|
|
6873
|
+
"to"
|
|
6874
|
+
],
|
|
6865
6875
|
type: "object"
|
|
6866
6876
|
},
|
|
6867
6877
|
{
|
|
@@ -6883,6 +6893,7 @@ var openapi_default = {
|
|
|
6883
6893
|
required: ["starts_at", "ends_at"],
|
|
6884
6894
|
type: "object"
|
|
6885
6895
|
},
|
|
6896
|
+
message: { type: "string" },
|
|
6886
6897
|
mutation_code: {
|
|
6887
6898
|
enum: ["updating_access_schedule"],
|
|
6888
6899
|
type: "string"
|
|
@@ -6904,7 +6915,13 @@ var openapi_default = {
|
|
|
6904
6915
|
type: "object"
|
|
6905
6916
|
}
|
|
6906
6917
|
},
|
|
6907
|
-
required: [
|
|
6918
|
+
required: [
|
|
6919
|
+
"created_at",
|
|
6920
|
+
"message",
|
|
6921
|
+
"mutation_code",
|
|
6922
|
+
"from",
|
|
6923
|
+
"to"
|
|
6924
|
+
],
|
|
6908
6925
|
type: "object"
|
|
6909
6926
|
},
|
|
6910
6927
|
{
|
|
@@ -6915,6 +6932,7 @@ var openapi_default = {
|
|
|
6915
6932
|
required: ["is_suspended"],
|
|
6916
6933
|
type: "object"
|
|
6917
6934
|
},
|
|
6935
|
+
message: { type: "string" },
|
|
6918
6936
|
mutation_code: {
|
|
6919
6937
|
enum: ["updating_suspension_state"],
|
|
6920
6938
|
type: "string"
|
|
@@ -6925,7 +6943,13 @@ var openapi_default = {
|
|
|
6925
6943
|
type: "object"
|
|
6926
6944
|
}
|
|
6927
6945
|
},
|
|
6928
|
-
required: [
|
|
6946
|
+
required: [
|
|
6947
|
+
"created_at",
|
|
6948
|
+
"message",
|
|
6949
|
+
"mutation_code",
|
|
6950
|
+
"from",
|
|
6951
|
+
"to"
|
|
6952
|
+
],
|
|
6929
6953
|
type: "object"
|
|
6930
6954
|
},
|
|
6931
6955
|
{
|
|
@@ -6942,6 +6966,7 @@ var openapi_default = {
|
|
|
6942
6966
|
required: ["acs_access_group_id"],
|
|
6943
6967
|
type: "object"
|
|
6944
6968
|
},
|
|
6969
|
+
message: { type: "string" },
|
|
6945
6970
|
mutation_code: {
|
|
6946
6971
|
enum: ["updating_group_membership"],
|
|
6947
6972
|
type: "string"
|
|
@@ -6958,7 +6983,13 @@ var openapi_default = {
|
|
|
6958
6983
|
type: "object"
|
|
6959
6984
|
}
|
|
6960
6985
|
},
|
|
6961
|
-
required: [
|
|
6986
|
+
required: [
|
|
6987
|
+
"created_at",
|
|
6988
|
+
"message",
|
|
6989
|
+
"mutation_code",
|
|
6990
|
+
"from",
|
|
6991
|
+
"to"
|
|
6992
|
+
],
|
|
6962
6993
|
type: "object"
|
|
6963
6994
|
}
|
|
6964
6995
|
]
|
|
@@ -18817,17 +18848,19 @@ var openapi_default = {
|
|
|
18817
18848
|
{
|
|
18818
18849
|
properties: {
|
|
18819
18850
|
created_at: { format: "date-time", type: "string" },
|
|
18851
|
+
message: { type: "string" },
|
|
18820
18852
|
mutation_code: { enum: ["creating"], type: "string" }
|
|
18821
18853
|
},
|
|
18822
|
-
required: ["created_at", "mutation_code"],
|
|
18854
|
+
required: ["created_at", "message", "mutation_code"],
|
|
18823
18855
|
type: "object"
|
|
18824
18856
|
},
|
|
18825
18857
|
{
|
|
18826
18858
|
properties: {
|
|
18827
18859
|
created_at: { format: "date-time", type: "string" },
|
|
18860
|
+
message: { type: "string" },
|
|
18828
18861
|
mutation_code: { enum: ["deleting"], type: "string" }
|
|
18829
18862
|
},
|
|
18830
|
-
required: ["created_at", "mutation_code"],
|
|
18863
|
+
required: ["created_at", "message", "mutation_code"],
|
|
18831
18864
|
type: "object"
|
|
18832
18865
|
},
|
|
18833
18866
|
{
|
|
@@ -18845,6 +18878,7 @@ var openapi_default = {
|
|
|
18845
18878
|
},
|
|
18846
18879
|
type: "object"
|
|
18847
18880
|
},
|
|
18881
|
+
message: { type: "string" },
|
|
18848
18882
|
mutation_code: {
|
|
18849
18883
|
enum: ["updating_user_information"],
|
|
18850
18884
|
type: "string"
|
|
@@ -18862,7 +18896,13 @@ var openapi_default = {
|
|
|
18862
18896
|
type: "object"
|
|
18863
18897
|
}
|
|
18864
18898
|
},
|
|
18865
|
-
required: [
|
|
18899
|
+
required: [
|
|
18900
|
+
"created_at",
|
|
18901
|
+
"message",
|
|
18902
|
+
"mutation_code",
|
|
18903
|
+
"from",
|
|
18904
|
+
"to"
|
|
18905
|
+
],
|
|
18866
18906
|
type: "object"
|
|
18867
18907
|
},
|
|
18868
18908
|
{
|
|
@@ -18884,6 +18924,7 @@ var openapi_default = {
|
|
|
18884
18924
|
required: ["starts_at", "ends_at"],
|
|
18885
18925
|
type: "object"
|
|
18886
18926
|
},
|
|
18927
|
+
message: { type: "string" },
|
|
18887
18928
|
mutation_code: {
|
|
18888
18929
|
enum: ["updating_access_schedule"],
|
|
18889
18930
|
type: "string"
|
|
@@ -18905,7 +18946,13 @@ var openapi_default = {
|
|
|
18905
18946
|
type: "object"
|
|
18906
18947
|
}
|
|
18907
18948
|
},
|
|
18908
|
-
required: [
|
|
18949
|
+
required: [
|
|
18950
|
+
"created_at",
|
|
18951
|
+
"message",
|
|
18952
|
+
"mutation_code",
|
|
18953
|
+
"from",
|
|
18954
|
+
"to"
|
|
18955
|
+
],
|
|
18909
18956
|
type: "object"
|
|
18910
18957
|
},
|
|
18911
18958
|
{
|
|
@@ -18916,6 +18963,7 @@ var openapi_default = {
|
|
|
18916
18963
|
required: ["is_suspended"],
|
|
18917
18964
|
type: "object"
|
|
18918
18965
|
},
|
|
18966
|
+
message: { type: "string" },
|
|
18919
18967
|
mutation_code: {
|
|
18920
18968
|
enum: ["updating_suspension_state"],
|
|
18921
18969
|
type: "string"
|
|
@@ -18926,7 +18974,13 @@ var openapi_default = {
|
|
|
18926
18974
|
type: "object"
|
|
18927
18975
|
}
|
|
18928
18976
|
},
|
|
18929
|
-
required: [
|
|
18977
|
+
required: [
|
|
18978
|
+
"created_at",
|
|
18979
|
+
"message",
|
|
18980
|
+
"mutation_code",
|
|
18981
|
+
"from",
|
|
18982
|
+
"to"
|
|
18983
|
+
],
|
|
18930
18984
|
type: "object"
|
|
18931
18985
|
},
|
|
18932
18986
|
{
|
|
@@ -18943,6 +18997,7 @@ var openapi_default = {
|
|
|
18943
18997
|
required: ["acs_access_group_id"],
|
|
18944
18998
|
type: "object"
|
|
18945
18999
|
},
|
|
19000
|
+
message: { type: "string" },
|
|
18946
19001
|
mutation_code: {
|
|
18947
19002
|
enum: ["updating_group_membership"],
|
|
18948
19003
|
type: "string"
|
|
@@ -18959,7 +19014,13 @@ var openapi_default = {
|
|
|
18959
19014
|
type: "object"
|
|
18960
19015
|
}
|
|
18961
19016
|
},
|
|
18962
|
-
required: [
|
|
19017
|
+
required: [
|
|
19018
|
+
"created_at",
|
|
19019
|
+
"message",
|
|
19020
|
+
"mutation_code",
|
|
19021
|
+
"from",
|
|
19022
|
+
"to"
|
|
19023
|
+
],
|
|
18963
19024
|
type: "object"
|
|
18964
19025
|
}
|
|
18965
19026
|
]
|