@seamapi/types 1.487.0 → 1.489.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 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1561 -30
- package/dist/index.cjs +74 -5
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +1983 -56
- package/lib/seam/connect/models/batch.js +6 -0
- package/lib/seam/connect/models/batch.js.map +1 -1
- package/lib/seam/connect/models/phones/phone-session.d.ts +26 -26
- package/lib/seam/connect/openapi.d.ts +60 -0
- package/lib/seam/connect/openapi.js +64 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +561 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/batch.ts +9 -0
- package/src/lib/seam/connect/openapi.ts +64 -0
- package/src/lib/seam/connect/route-types.ts +687 -0
package/dist/index.cjs
CHANGED
|
@@ -5294,7 +5294,8 @@ zod.z.object({
|
|
|
5294
5294
|
acs_entrances: acs_entrance.array().optional(),
|
|
5295
5295
|
user_identities: user_identity.array().optional(),
|
|
5296
5296
|
connected_accounts: connected_account.array().optional(),
|
|
5297
|
-
acs_systems: acs_system.array().optional()
|
|
5297
|
+
acs_systems: acs_system.array().optional(),
|
|
5298
|
+
acs_access_groups: acs_access_group.array().optional()
|
|
5298
5299
|
});
|
|
5299
5300
|
zod.z.object({
|
|
5300
5301
|
batch_type: zod.z.literal("access_methods"),
|
|
@@ -5313,6 +5314,8 @@ zod.z.object({
|
|
|
5313
5314
|
acs_users: acs_user.array().optional(),
|
|
5314
5315
|
acs_access_groups: acs_access_group.array().optional(),
|
|
5315
5316
|
acs_encoders: acs_encoder.array().optional(),
|
|
5317
|
+
acs_credentials: acs_credential.array().optional(),
|
|
5318
|
+
unmanaged_acs_credentials: unmanaged_acs_credential.array().optional(),
|
|
5316
5319
|
action_attempts: action_attempt.array().optional(),
|
|
5317
5320
|
client_sessions: client_session.array().optional(),
|
|
5318
5321
|
unmanaged_acs_users: unmanaged_acs_user.array().optional(),
|
|
@@ -5341,6 +5344,8 @@ var batch = zod.z.object({
|
|
|
5341
5344
|
acs_users: acs_user.array().optional(),
|
|
5342
5345
|
acs_access_groups: acs_access_group.array().optional(),
|
|
5343
5346
|
acs_encoders: acs_encoder.array().optional(),
|
|
5347
|
+
acs_credentials: acs_credential.array().optional(),
|
|
5348
|
+
unmanaged_acs_credentials: unmanaged_acs_credential.array().optional(),
|
|
5344
5349
|
action_attempts: action_attempt.array().optional(),
|
|
5345
5350
|
client_sessions: client_session.array().optional(),
|
|
5346
5351
|
unmanaged_acs_users: unmanaged_acs_user.array().optional(),
|
|
@@ -30953,7 +30958,8 @@ var openapi_default = {
|
|
|
30953
30958
|
"acs_entrances",
|
|
30954
30959
|
"connected_accounts",
|
|
30955
30960
|
"acs_systems",
|
|
30956
|
-
"user_identity"
|
|
30961
|
+
"user_identity",
|
|
30962
|
+
"acs_access_groups"
|
|
30957
30963
|
],
|
|
30958
30964
|
type: "string"
|
|
30959
30965
|
},
|
|
@@ -30972,7 +30978,8 @@ var openapi_default = {
|
|
|
30972
30978
|
"acs_entrances",
|
|
30973
30979
|
"connected_accounts",
|
|
30974
30980
|
"acs_systems",
|
|
30975
|
-
"user_identity"
|
|
30981
|
+
"user_identity",
|
|
30982
|
+
"acs_access_groups"
|
|
30976
30983
|
],
|
|
30977
30984
|
type: "string"
|
|
30978
30985
|
},
|
|
@@ -30988,6 +30995,12 @@ var openapi_default = {
|
|
|
30988
30995
|
properties: {
|
|
30989
30996
|
batch: {
|
|
30990
30997
|
properties: {
|
|
30998
|
+
acs_access_groups: {
|
|
30999
|
+
items: {
|
|
31000
|
+
$ref: "#/components/schemas/acs_access_group"
|
|
31001
|
+
},
|
|
31002
|
+
type: "array"
|
|
31003
|
+
},
|
|
30991
31004
|
acs_entrances: {
|
|
30992
31005
|
items: { $ref: "#/components/schemas/acs_entrance" },
|
|
30993
31006
|
type: "array"
|
|
@@ -31067,7 +31080,8 @@ var openapi_default = {
|
|
|
31067
31080
|
"acs_entrances",
|
|
31068
31081
|
"connected_accounts",
|
|
31069
31082
|
"acs_systems",
|
|
31070
|
-
"user_identity"
|
|
31083
|
+
"user_identity",
|
|
31084
|
+
"acs_access_groups"
|
|
31071
31085
|
],
|
|
31072
31086
|
type: "string"
|
|
31073
31087
|
},
|
|
@@ -31081,7 +31095,8 @@ var openapi_default = {
|
|
|
31081
31095
|
"acs_entrances",
|
|
31082
31096
|
"connected_accounts",
|
|
31083
31097
|
"acs_systems",
|
|
31084
|
-
"user_identity"
|
|
31098
|
+
"user_identity",
|
|
31099
|
+
"acs_access_groups"
|
|
31085
31100
|
],
|
|
31086
31101
|
type: "string"
|
|
31087
31102
|
},
|
|
@@ -31102,6 +31117,12 @@ var openapi_default = {
|
|
|
31102
31117
|
properties: {
|
|
31103
31118
|
batch: {
|
|
31104
31119
|
properties: {
|
|
31120
|
+
acs_access_groups: {
|
|
31121
|
+
items: {
|
|
31122
|
+
$ref: "#/components/schemas/acs_access_group"
|
|
31123
|
+
},
|
|
31124
|
+
type: "array"
|
|
31125
|
+
},
|
|
31105
31126
|
acs_entrances: {
|
|
31106
31127
|
items: { $ref: "#/components/schemas/acs_entrance" },
|
|
31107
31128
|
type: "array"
|
|
@@ -31801,6 +31822,12 @@ var openapi_default = {
|
|
|
31801
31822
|
},
|
|
31802
31823
|
type: "array"
|
|
31803
31824
|
},
|
|
31825
|
+
acs_credentials: {
|
|
31826
|
+
items: {
|
|
31827
|
+
$ref: "#/components/schemas/acs_credential"
|
|
31828
|
+
},
|
|
31829
|
+
type: "array"
|
|
31830
|
+
},
|
|
31804
31831
|
acs_encoders: {
|
|
31805
31832
|
items: { $ref: "#/components/schemas/acs_encoder" },
|
|
31806
31833
|
type: "array"
|
|
@@ -31866,6 +31893,12 @@ var openapi_default = {
|
|
|
31866
31893
|
},
|
|
31867
31894
|
type: "array"
|
|
31868
31895
|
},
|
|
31896
|
+
unmanaged_acs_credentials: {
|
|
31897
|
+
items: {
|
|
31898
|
+
$ref: "#/components/schemas/unmanaged_acs_credential"
|
|
31899
|
+
},
|
|
31900
|
+
type: "array"
|
|
31901
|
+
},
|
|
31869
31902
|
unmanaged_acs_users: {
|
|
31870
31903
|
items: {
|
|
31871
31904
|
$ref: "#/components/schemas/unmanaged_acs_user"
|
|
@@ -31974,6 +32007,12 @@ var openapi_default = {
|
|
|
31974
32007
|
},
|
|
31975
32008
|
type: "array"
|
|
31976
32009
|
},
|
|
32010
|
+
acs_credentials: {
|
|
32011
|
+
items: {
|
|
32012
|
+
$ref: "#/components/schemas/acs_credential"
|
|
32013
|
+
},
|
|
32014
|
+
type: "array"
|
|
32015
|
+
},
|
|
31977
32016
|
acs_encoders: {
|
|
31978
32017
|
items: { $ref: "#/components/schemas/acs_encoder" },
|
|
31979
32018
|
type: "array"
|
|
@@ -32039,6 +32078,12 @@ var openapi_default = {
|
|
|
32039
32078
|
},
|
|
32040
32079
|
type: "array"
|
|
32041
32080
|
},
|
|
32081
|
+
unmanaged_acs_credentials: {
|
|
32082
|
+
items: {
|
|
32083
|
+
$ref: "#/components/schemas/unmanaged_acs_credential"
|
|
32084
|
+
},
|
|
32085
|
+
type: "array"
|
|
32086
|
+
},
|
|
32042
32087
|
unmanaged_acs_users: {
|
|
32043
32088
|
items: {
|
|
32044
32089
|
$ref: "#/components/schemas/unmanaged_acs_user"
|
|
@@ -57877,6 +57922,12 @@ var openapi_default = {
|
|
|
57877
57922
|
},
|
|
57878
57923
|
type: "array"
|
|
57879
57924
|
},
|
|
57925
|
+
acs_credentials: {
|
|
57926
|
+
items: {
|
|
57927
|
+
$ref: "#/components/schemas/acs_credential"
|
|
57928
|
+
},
|
|
57929
|
+
type: "array"
|
|
57930
|
+
},
|
|
57880
57931
|
acs_encoders: {
|
|
57881
57932
|
items: { $ref: "#/components/schemas/acs_encoder" },
|
|
57882
57933
|
type: "array"
|
|
@@ -57942,6 +57993,12 @@ var openapi_default = {
|
|
|
57942
57993
|
},
|
|
57943
57994
|
type: "array"
|
|
57944
57995
|
},
|
|
57996
|
+
unmanaged_acs_credentials: {
|
|
57997
|
+
items: {
|
|
57998
|
+
$ref: "#/components/schemas/unmanaged_acs_credential"
|
|
57999
|
+
},
|
|
58000
|
+
type: "array"
|
|
58001
|
+
},
|
|
57945
58002
|
unmanaged_acs_users: {
|
|
57946
58003
|
items: {
|
|
57947
58004
|
$ref: "#/components/schemas/unmanaged_acs_user"
|
|
@@ -58027,6 +58084,12 @@ var openapi_default = {
|
|
|
58027
58084
|
},
|
|
58028
58085
|
type: "array"
|
|
58029
58086
|
},
|
|
58087
|
+
acs_credentials: {
|
|
58088
|
+
items: {
|
|
58089
|
+
$ref: "#/components/schemas/acs_credential"
|
|
58090
|
+
},
|
|
58091
|
+
type: "array"
|
|
58092
|
+
},
|
|
58030
58093
|
acs_encoders: {
|
|
58031
58094
|
items: { $ref: "#/components/schemas/acs_encoder" },
|
|
58032
58095
|
type: "array"
|
|
@@ -58092,6 +58155,12 @@ var openapi_default = {
|
|
|
58092
58155
|
},
|
|
58093
58156
|
type: "array"
|
|
58094
58157
|
},
|
|
58158
|
+
unmanaged_acs_credentials: {
|
|
58159
|
+
items: {
|
|
58160
|
+
$ref: "#/components/schemas/unmanaged_acs_credential"
|
|
58161
|
+
},
|
|
58162
|
+
type: "array"
|
|
58163
|
+
},
|
|
58095
58164
|
unmanaged_acs_users: {
|
|
58096
58165
|
items: {
|
|
58097
58166
|
$ref: "#/components/schemas/unmanaged_acs_user"
|