@seamapi/types 1.247.1 → 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 +20 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +81 -0
- 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 -0
- package/lib/seam/connect/openapi.js +17 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +27 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +3 -0
- package/src/lib/seam/connect/openapi.ts +17 -0
- package/src/lib/seam/connect/route-types.ts +27 -0
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
|
},
|