@seamapi/types 1.247.0 → 1.248.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 +28 -28
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +83 -42
- package/lib/seam/connect/models/acs/acs-credential.d.ts +18 -0
- package/lib/seam/connect/models/acs/acs-credential.js +3 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +36 -12
- package/lib/seam/connect/openapi.js +25 -28
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +29 -30
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +3 -0
- package/src/lib/seam/connect/openapi.ts +25 -28
- package/src/lib/seam/connect/route-types.ts +29 -30
package/dist/connect.cjs
CHANGED
|
@@ -1148,6 +1148,9 @@ var common_acs_credential = zod.z.object({
|
|
|
1148
1148
|
parent_acs_credential_id: zod.z.string().uuid().optional(),
|
|
1149
1149
|
display_name: zod.z.string().min(1),
|
|
1150
1150
|
code: zod.z.string().optional().nullable(),
|
|
1151
|
+
card_number: zod.z.string().optional().nullable(),
|
|
1152
|
+
is_encoded: zod.z.boolean().optional(),
|
|
1153
|
+
encoded_at: zod.z.string().datetime().optional().nullable(),
|
|
1151
1154
|
access_method: acs_credential_access_method_type,
|
|
1152
1155
|
external_type: acs_credential_external_type.optional(),
|
|
1153
1156
|
external_type_display_name: zod.z.string().optional(),
|
|
@@ -2619,9 +2622,11 @@ var openapi_default = {
|
|
|
2619
2622
|
acs_credential_pool_id: { format: "uuid", type: "string" },
|
|
2620
2623
|
acs_system_id: { format: "uuid", type: "string" },
|
|
2621
2624
|
acs_user_id: { format: "uuid", type: "string" },
|
|
2625
|
+
card_number: { nullable: true, type: "string" },
|
|
2622
2626
|
code: { nullable: true, type: "string" },
|
|
2623
2627
|
created_at: { format: "date-time", type: "string" },
|
|
2624
2628
|
display_name: { minLength: 1, type: "string" },
|
|
2629
|
+
encoded_at: { format: "date-time", nullable: true, type: "string" },
|
|
2625
2630
|
ends_at: { type: "string" },
|
|
2626
2631
|
errors: {
|
|
2627
2632
|
items: {
|
|
@@ -2645,6 +2650,7 @@ var openapi_default = {
|
|
|
2645
2650
|
type: "string"
|
|
2646
2651
|
},
|
|
2647
2652
|
external_type_display_name: { type: "string" },
|
|
2653
|
+
is_encoded: { type: "boolean" },
|
|
2648
2654
|
is_latest_desired_state_synced_with_provider: { type: "boolean" },
|
|
2649
2655
|
is_managed: { enum: [true], type: "boolean" },
|
|
2650
2656
|
is_multi_phone_sync_credential: { type: "boolean" },
|
|
@@ -9083,9 +9089,15 @@ var openapi_default = {
|
|
|
9083
9089
|
},
|
|
9084
9090
|
acs_system_id: { format: "uuid", type: "string" },
|
|
9085
9091
|
acs_user_id: { format: "uuid", type: "string" },
|
|
9092
|
+
card_number: { nullable: true, type: "string" },
|
|
9086
9093
|
code: { nullable: true, type: "string" },
|
|
9087
9094
|
created_at: { format: "date-time", type: "string" },
|
|
9088
9095
|
display_name: { minLength: 1, type: "string" },
|
|
9096
|
+
encoded_at: {
|
|
9097
|
+
format: "date-time",
|
|
9098
|
+
nullable: true,
|
|
9099
|
+
type: "string"
|
|
9100
|
+
},
|
|
9089
9101
|
ends_at: { type: "string" },
|
|
9090
9102
|
errors: {
|
|
9091
9103
|
items: {
|
|
@@ -9109,6 +9121,7 @@ var openapi_default = {
|
|
|
9109
9121
|
type: "string"
|
|
9110
9122
|
},
|
|
9111
9123
|
external_type_display_name: { type: "string" },
|
|
9124
|
+
is_encoded: { type: "boolean" },
|
|
9112
9125
|
is_latest_desired_state_synced_with_provider: {
|
|
9113
9126
|
type: "boolean"
|
|
9114
9127
|
},
|
|
@@ -9260,9 +9273,15 @@ var openapi_default = {
|
|
|
9260
9273
|
},
|
|
9261
9274
|
acs_system_id: { format: "uuid", type: "string" },
|
|
9262
9275
|
acs_user_id: { format: "uuid", type: "string" },
|
|
9276
|
+
card_number: { nullable: true, type: "string" },
|
|
9263
9277
|
code: { nullable: true, type: "string" },
|
|
9264
9278
|
created_at: { format: "date-time", type: "string" },
|
|
9265
9279
|
display_name: { minLength: 1, type: "string" },
|
|
9280
|
+
encoded_at: {
|
|
9281
|
+
format: "date-time",
|
|
9282
|
+
nullable: true,
|
|
9283
|
+
type: "string"
|
|
9284
|
+
},
|
|
9266
9285
|
ends_at: { type: "string" },
|
|
9267
9286
|
errors: {
|
|
9268
9287
|
items: {
|
|
@@ -9286,6 +9305,7 @@ var openapi_default = {
|
|
|
9286
9305
|
type: "string"
|
|
9287
9306
|
},
|
|
9288
9307
|
external_type_display_name: { type: "string" },
|
|
9308
|
+
is_encoded: { type: "boolean" },
|
|
9289
9309
|
is_latest_desired_state_synced_with_provider: {
|
|
9290
9310
|
type: "boolean"
|
|
9291
9311
|
},
|
|
@@ -16012,13 +16032,8 @@ var openapi_default = {
|
|
|
16012
16032
|
content: {
|
|
16013
16033
|
"application/json": {
|
|
16014
16034
|
schema: {
|
|
16015
|
-
properties: {
|
|
16016
|
-
|
|
16017
|
-
thermostat_schedule: {
|
|
16018
|
-
$ref: "#/components/schemas/thermostat_schedule"
|
|
16019
|
-
}
|
|
16020
|
-
},
|
|
16021
|
-
required: ["thermostat_schedule", "ok"],
|
|
16035
|
+
properties: { ok: { type: "boolean" } },
|
|
16036
|
+
required: ["ok"],
|
|
16022
16037
|
type: "object"
|
|
16023
16038
|
}
|
|
16024
16039
|
}
|
|
@@ -16063,13 +16078,8 @@ var openapi_default = {
|
|
|
16063
16078
|
content: {
|
|
16064
16079
|
"application/json": {
|
|
16065
16080
|
schema: {
|
|
16066
|
-
properties: {
|
|
16067
|
-
|
|
16068
|
-
thermostat_schedule: {
|
|
16069
|
-
$ref: "#/components/schemas/thermostat_schedule"
|
|
16070
|
-
}
|
|
16071
|
-
},
|
|
16072
|
-
required: ["thermostat_schedule", "ok"],
|
|
16081
|
+
properties: { ok: { type: "boolean" } },
|
|
16082
|
+
required: ["ok"],
|
|
16073
16083
|
type: "object"
|
|
16074
16084
|
}
|
|
16075
16085
|
}
|
|
@@ -16242,13 +16252,8 @@ var openapi_default = {
|
|
|
16242
16252
|
content: {
|
|
16243
16253
|
"application/json": {
|
|
16244
16254
|
schema: {
|
|
16245
|
-
properties: {
|
|
16246
|
-
|
|
16247
|
-
$ref: "#/components/schemas/climate_preset"
|
|
16248
|
-
},
|
|
16249
|
-
ok: { type: "boolean" }
|
|
16250
|
-
},
|
|
16251
|
-
required: ["climate_preset", "ok"],
|
|
16255
|
+
properties: { ok: { type: "boolean" } },
|
|
16256
|
+
required: ["ok"],
|
|
16252
16257
|
type: "object"
|
|
16253
16258
|
}
|
|
16254
16259
|
}
|
|
@@ -16315,13 +16320,8 @@ var openapi_default = {
|
|
|
16315
16320
|
content: {
|
|
16316
16321
|
"application/json": {
|
|
16317
16322
|
schema: {
|
|
16318
|
-
properties: {
|
|
16319
|
-
|
|
16320
|
-
$ref: "#/components/schemas/climate_preset"
|
|
16321
|
-
},
|
|
16322
|
-
ok: { type: "boolean" }
|
|
16323
|
-
},
|
|
16324
|
-
required: ["climate_preset", "ok"],
|
|
16323
|
+
properties: { ok: { type: "boolean" } },
|
|
16324
|
+
required: ["ok"],
|
|
16325
16325
|
type: "object"
|
|
16326
16326
|
}
|
|
16327
16327
|
}
|