@seamapi/types 1.44.1 → 1.46.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 +8 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +19 -4
- package/lib/seam/connect/openapi.d.ts +12 -0
- package/lib/seam/connect/openapi.js +8 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +7 -4
- package/lib/seam/connect/unstable/models/acs/credential.d.ts +3 -0
- package/lib/seam/connect/unstable/models/acs/credential.js +1 -1
- package/lib/seam/connect/unstable/models/acs/credential.js.map +1 -1
- package/lib/seam/connect/unstable/models/acs/system.d.ts +7 -7
- package/lib/seam/connect/unstable/models/acs/system.js +1 -0
- package/lib/seam/connect/unstable/models/acs/system.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +8 -2
- package/src/lib/seam/connect/route-types.ts +7 -4
- package/src/lib/seam/connect/unstable/models/acs/credential.ts +1 -1
- package/src/lib/seam/connect/unstable/models/acs/system.ts +1 -0
package/dist/connect.cjs
CHANGED
|
@@ -147,14 +147,14 @@ var openapi_default = {
|
|
|
147
147
|
connected_account_ids: { items: { type: "string" }, type: "array" },
|
|
148
148
|
created_at: { format: "date-time", type: "string" },
|
|
149
149
|
external_type: {
|
|
150
|
-
enum: ["pti_site", "alta_org", "brivo_system"],
|
|
150
|
+
enum: ["pti_site", "alta_org", "salto_site", "brivo_system"],
|
|
151
151
|
type: "string"
|
|
152
152
|
},
|
|
153
153
|
external_type_display_name: { type: "string" },
|
|
154
154
|
name: { type: "string" },
|
|
155
155
|
system_type: {
|
|
156
156
|
description: "deprecated: use external_type",
|
|
157
|
-
enum: ["pti_site", "alta_org", "brivo_system"],
|
|
157
|
+
enum: ["pti_site", "alta_org", "salto_site", "brivo_system"],
|
|
158
158
|
type: "string"
|
|
159
159
|
},
|
|
160
160
|
system_type_display_name: {
|
|
@@ -3143,6 +3143,7 @@ var openapi_default = {
|
|
|
3143
3143
|
acs_user_id: { format: "uuid", type: "string" },
|
|
3144
3144
|
code: { nullable: true, type: "string" },
|
|
3145
3145
|
created_at: { format: "date-time", type: "string" },
|
|
3146
|
+
display_name: { minLength: 1, type: "string" },
|
|
3146
3147
|
external_type: {
|
|
3147
3148
|
enum: ["pti_card", "brivo_credential"],
|
|
3148
3149
|
type: "string"
|
|
@@ -3153,6 +3154,7 @@ var openapi_default = {
|
|
|
3153
3154
|
required: [
|
|
3154
3155
|
"acs_credential_id",
|
|
3155
3156
|
"acs_system_id",
|
|
3157
|
+
"display_name",
|
|
3156
3158
|
"code",
|
|
3157
3159
|
"external_type",
|
|
3158
3160
|
"external_type_display_name",
|
|
@@ -3256,6 +3258,7 @@ var openapi_default = {
|
|
|
3256
3258
|
acs_user_id: { format: "uuid", type: "string" },
|
|
3257
3259
|
code: { nullable: true, type: "string" },
|
|
3258
3260
|
created_at: { format: "date-time", type: "string" },
|
|
3261
|
+
display_name: { minLength: 1, type: "string" },
|
|
3259
3262
|
external_type: {
|
|
3260
3263
|
enum: ["pti_card", "brivo_credential"],
|
|
3261
3264
|
type: "string"
|
|
@@ -3266,6 +3269,7 @@ var openapi_default = {
|
|
|
3266
3269
|
required: [
|
|
3267
3270
|
"acs_credential_id",
|
|
3268
3271
|
"acs_system_id",
|
|
3272
|
+
"display_name",
|
|
3269
3273
|
"code",
|
|
3270
3274
|
"external_type",
|
|
3271
3275
|
"external_type_display_name",
|
|
@@ -3346,6 +3350,7 @@ var openapi_default = {
|
|
|
3346
3350
|
acs_user_id: { format: "uuid", type: "string" },
|
|
3347
3351
|
code: { nullable: true, type: "string" },
|
|
3348
3352
|
created_at: { format: "date-time", type: "string" },
|
|
3353
|
+
display_name: { minLength: 1, type: "string" },
|
|
3349
3354
|
external_type: {
|
|
3350
3355
|
enum: ["pti_card", "brivo_credential"],
|
|
3351
3356
|
type: "string"
|
|
@@ -3356,6 +3361,7 @@ var openapi_default = {
|
|
|
3356
3361
|
required: [
|
|
3357
3362
|
"acs_credential_id",
|
|
3358
3363
|
"acs_system_id",
|
|
3364
|
+
"display_name",
|
|
3359
3365
|
"code",
|
|
3360
3366
|
"external_type",
|
|
3361
3367
|
"external_type_display_name",
|