@seamapi/types 1.895.0 → 1.896.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 +9 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +18 -18
- package/dist/index.cjs +9 -9
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/events/access-codes.d.ts +20 -20
- package/lib/seam/connect/models/events/access-codes.js +2 -2
- package/lib/seam/connect/models/events/access-codes.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +10 -10
- package/lib/seam/connect/openapi.js +7 -7
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +8 -8
- package/package.json +1 -1
- package/src/lib/seam/connect/models/events/access-codes.ts +2 -2
- package/src/lib/seam/connect/openapi.ts +8 -8
- package/src/lib/seam/connect/route-types.ts +8 -8
|
@@ -51,16 +51,16 @@ export declare const access_code_changed_event: z.ZodObject<{
|
|
|
51
51
|
event_type: z.ZodLiteral<"access_code.changed">;
|
|
52
52
|
changed_properties: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
53
53
|
property: z.ZodString;
|
|
54
|
-
|
|
55
|
-
|
|
54
|
+
from: z.ZodNullable<z.ZodString>;
|
|
55
|
+
to: z.ZodNullable<z.ZodString>;
|
|
56
56
|
}, "strip", z.ZodTypeAny, {
|
|
57
|
+
from: string | null;
|
|
58
|
+
to: string | null;
|
|
57
59
|
property: string;
|
|
58
|
-
previous_value: string | null;
|
|
59
|
-
new_value: string | null;
|
|
60
60
|
}, {
|
|
61
|
+
from: string | null;
|
|
62
|
+
to: string | null;
|
|
61
63
|
property: string;
|
|
62
|
-
previous_value: string | null;
|
|
63
|
-
new_value: string | null;
|
|
64
64
|
}>, "many">>;
|
|
65
65
|
change_reason: z.ZodOptional<z.ZodString>;
|
|
66
66
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -75,9 +75,9 @@ export declare const access_code_changed_event: z.ZodObject<{
|
|
|
75
75
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
76
76
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
77
77
|
changed_properties?: {
|
|
78
|
+
from: string | null;
|
|
79
|
+
to: string | null;
|
|
78
80
|
property: string;
|
|
79
|
-
previous_value: string | null;
|
|
80
|
-
new_value: string | null;
|
|
81
81
|
}[] | undefined;
|
|
82
82
|
change_reason?: string | undefined;
|
|
83
83
|
}, {
|
|
@@ -92,9 +92,9 @@ export declare const access_code_changed_event: z.ZodObject<{
|
|
|
92
92
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
93
93
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
94
94
|
changed_properties?: {
|
|
95
|
+
from: string | null;
|
|
96
|
+
to: string | null;
|
|
95
97
|
property: string;
|
|
96
|
-
previous_value: string | null;
|
|
97
|
-
new_value: string | null;
|
|
98
98
|
}[] | undefined;
|
|
99
99
|
change_reason?: string | undefined;
|
|
100
100
|
}>;
|
|
@@ -1411,16 +1411,16 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1411
1411
|
event_type: z.ZodLiteral<"access_code.changed">;
|
|
1412
1412
|
changed_properties: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1413
1413
|
property: z.ZodString;
|
|
1414
|
-
|
|
1415
|
-
|
|
1414
|
+
from: z.ZodNullable<z.ZodString>;
|
|
1415
|
+
to: z.ZodNullable<z.ZodString>;
|
|
1416
1416
|
}, "strip", z.ZodTypeAny, {
|
|
1417
|
+
from: string | null;
|
|
1418
|
+
to: string | null;
|
|
1417
1419
|
property: string;
|
|
1418
|
-
previous_value: string | null;
|
|
1419
|
-
new_value: string | null;
|
|
1420
1420
|
}, {
|
|
1421
|
+
from: string | null;
|
|
1422
|
+
to: string | null;
|
|
1421
1423
|
property: string;
|
|
1422
|
-
previous_value: string | null;
|
|
1423
|
-
new_value: string | null;
|
|
1424
1424
|
}>, "many">>;
|
|
1425
1425
|
change_reason: z.ZodOptional<z.ZodString>;
|
|
1426
1426
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1435,9 +1435,9 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1435
1435
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1436
1436
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1437
1437
|
changed_properties?: {
|
|
1438
|
+
from: string | null;
|
|
1439
|
+
to: string | null;
|
|
1438
1440
|
property: string;
|
|
1439
|
-
previous_value: string | null;
|
|
1440
|
-
new_value: string | null;
|
|
1441
1441
|
}[] | undefined;
|
|
1442
1442
|
change_reason?: string | undefined;
|
|
1443
1443
|
}, {
|
|
@@ -1452,9 +1452,9 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1452
1452
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1453
1453
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1454
1454
|
changed_properties?: {
|
|
1455
|
+
from: string | null;
|
|
1456
|
+
to: string | null;
|
|
1455
1457
|
property: string;
|
|
1456
|
-
previous_value: string | null;
|
|
1457
|
-
new_value: string | null;
|
|
1458
1458
|
}[] | undefined;
|
|
1459
1459
|
change_reason?: string | undefined;
|
|
1460
1460
|
}>, z.ZodObject<{
|
|
@@ -54,11 +54,11 @@ export const access_code_changed_event = access_code_event.extend({
|
|
|
54
54
|
property: z
|
|
55
55
|
.string()
|
|
56
56
|
.describe('Name of the property that changed (e.g. `code`).'),
|
|
57
|
-
|
|
57
|
+
from: z
|
|
58
58
|
.string()
|
|
59
59
|
.nullable()
|
|
60
60
|
.describe('Previous value of the property, or null if not set.'),
|
|
61
|
-
|
|
61
|
+
to: z
|
|
62
62
|
.string()
|
|
63
63
|
.nullable()
|
|
64
64
|
.describe('New value of the property, or null if cleared.'),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"access-codes.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/events/access-codes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAA;AACvD,OAAO,EACL,YAAY,EACZ,kBAAkB,EAClB,oBAAoB,GACrB,MAAM,aAAa,CAAA;AAEpB,MAAM,iBAAiB,GAAG,YAAY,CAAC,MAAM,CAAC;IAC5C,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,iCAAiC,CAAC;IAC7E,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CAAC,4DAA4D,CAAC;IACzE,oBAAoB,EAAE,CAAC;SACpB,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,gIAAgI,CACjI;IACH,sBAAsB,EAAE,eAAe;SACpC,QAAQ,EAAE;SACV,QAAQ,CACP,oEAAoE,CACrE;IACH,iCAAiC,EAAE,eAAe;SAC/C,QAAQ,EAAE;SACV,QAAQ,CACP,0FAA0F,CAC3F;CACJ,CAAC,CAAA;AAEF,MAAM,kCAAkC,GAAG;IACzC,wBAAwB,EAAE,CAAC;SACxB,KAAK,CAAC,kBAAkB,CAAC;SACzB,QAAQ,CAAC,+CAA+C,CAAC;IAC5D,0BAA0B,EAAE,CAAC;SAC1B,KAAK,CAAC,oBAAoB,CAAC;SAC3B,QAAQ,CAAC,iDAAiD,CAAC;IAC9D,aAAa,EAAE,CAAC;SACb,KAAK,CAAC,kBAAkB,CAAC;SACzB,QAAQ,CAAC,oCAAoC,CAAC;IACjD,eAAe,EAAE,CAAC;SACf,KAAK,CAAC,oBAAoB,CAAC;SAC3B,QAAQ,CAAC,sCAAsC,CAAC;IACnD,kBAAkB,EAAE,CAAC;SAClB,KAAK,CAAC,kBAAkB,CAAC;SACzB,QAAQ,CAAC,yCAAyC,CAAC;IACtD,oBAAoB,EAAE,CAAC;SACpB,KAAK,CAAC,oBAAoB,CAAC;SAC3B,QAAQ,CAAC,2CAA2C,CAAC;CACzD,CAAA;AAED,MAAM,IAAI,GAAG,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,oCAAoC,CAAC,CAAA;AAEtE,MAAM,CAAC,MAAM,yBAAyB,GAAG,iBAAiB,CAAC,MAAM,CAAC;IAChE,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,qBAAqB,CAAC;CAC7C,CAAC,CAAC,QAAQ,CAAC;;;;;GAKT,CAAC,CAAA;AAIJ,MAAM,CAAC,MAAM,yBAAyB,GAAG,iBAAiB,CAAC,MAAM,CAAC;IAChE,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,qBAAqB,CAAC;IAC5C,kBAAkB,EAAE,CAAC;SAClB,KAAK,CACJ,CAAC,CAAC,MAAM,CAAC;QACP,QAAQ,EAAE,CAAC;aACR,MAAM,EAAE;aACR,QAAQ,CAAC,kDAAkD,CAAC;QAC/D,
|
|
1
|
+
{"version":3,"file":"access-codes.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/events/access-codes.ts"],"names":[],"mappings":"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"}
|
|
@@ -49,16 +49,16 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
49
49
|
event_type: z.ZodLiteral<"access_code.changed">;
|
|
50
50
|
changed_properties: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
51
51
|
property: z.ZodString;
|
|
52
|
-
|
|
53
|
-
|
|
52
|
+
from: z.ZodNullable<z.ZodString>;
|
|
53
|
+
to: z.ZodNullable<z.ZodString>;
|
|
54
54
|
}, "strip", z.ZodTypeAny, {
|
|
55
|
+
from: string | null;
|
|
56
|
+
to: string | null;
|
|
55
57
|
property: string;
|
|
56
|
-
previous_value: string | null;
|
|
57
|
-
new_value: string | null;
|
|
58
58
|
}, {
|
|
59
|
+
from: string | null;
|
|
60
|
+
to: string | null;
|
|
59
61
|
property: string;
|
|
60
|
-
previous_value: string | null;
|
|
61
|
-
new_value: string | null;
|
|
62
62
|
}>, "many">>;
|
|
63
63
|
change_reason: z.ZodOptional<z.ZodString>;
|
|
64
64
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -73,9 +73,9 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
73
73
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
74
74
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
75
75
|
changed_properties?: {
|
|
76
|
+
from: string | null;
|
|
77
|
+
to: string | null;
|
|
76
78
|
property: string;
|
|
77
|
-
previous_value: string | null;
|
|
78
|
-
new_value: string | null;
|
|
79
79
|
}[] | undefined;
|
|
80
80
|
change_reason?: string | undefined;
|
|
81
81
|
}, {
|
|
@@ -90,9 +90,9 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
90
90
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
91
91
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
92
92
|
changed_properties?: {
|
|
93
|
+
from: string | null;
|
|
94
|
+
to: string | null;
|
|
93
95
|
property: string;
|
|
94
|
-
previous_value: string | null;
|
|
95
|
-
new_value: string | null;
|
|
96
96
|
}[] | undefined;
|
|
97
97
|
change_reason?: string | undefined;
|
|
98
98
|
}>, z.ZodObject<{
|
|
@@ -15719,12 +15719,7 @@ const openapi = {
|
|
|
15719
15719
|
description: 'List of properties that changed on the access code.',
|
|
15720
15720
|
items: {
|
|
15721
15721
|
properties: {
|
|
15722
|
-
|
|
15723
|
-
description: 'New value of the property, or null if cleared.',
|
|
15724
|
-
nullable: true,
|
|
15725
|
-
type: 'string',
|
|
15726
|
-
},
|
|
15727
|
-
previous_value: {
|
|
15722
|
+
from: {
|
|
15728
15723
|
description: 'Previous value of the property, or null if not set.',
|
|
15729
15724
|
nullable: true,
|
|
15730
15725
|
type: 'string',
|
|
@@ -15733,8 +15728,13 @@ const openapi = {
|
|
|
15733
15728
|
description: 'Name of the property that changed (e.g. `code`).',
|
|
15734
15729
|
type: 'string',
|
|
15735
15730
|
},
|
|
15731
|
+
to: {
|
|
15732
|
+
description: 'New value of the property, or null if cleared.',
|
|
15733
|
+
nullable: true,
|
|
15734
|
+
type: 'string',
|
|
15735
|
+
},
|
|
15736
15736
|
},
|
|
15737
|
-
required: ['property', '
|
|
15737
|
+
required: ['property', 'from', 'to'],
|
|
15738
15738
|
type: 'object',
|
|
15739
15739
|
},
|
|
15740
15740
|
type: 'array',
|