@seamapi/types 1.1035.0 → 1.1036.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/lib/seam/connect/models/access-codes/managed-access-code.d.ts +16 -74
- package/lib/seam/connect/models/access-codes/managed-access-code.js +5 -21
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +5 -26
- package/lib/seam/connect/models/events/access-codes.d.ts +8 -364
- package/lib/seam/connect/models/events/access-codes.js +4 -16
- package/lib/seam/connect/models/events/access-codes.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +4 -181
- package/lib/seam/connect/openapi.js +14 -291
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +19 -416
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +5 -22
- package/src/lib/seam/connect/models/events/access-codes.ts +6 -23
- package/src/lib/seam/connect/openapi.ts +14 -329
- package/src/lib/seam/connect/route-types.ts +19 -451
|
@@ -1270,7 +1270,7 @@ export declare const access_code_failed_to_issue_event: z.ZodObject<{
|
|
|
1270
1270
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1271
1271
|
}>;
|
|
1272
1272
|
export type AccessCodeFailedToIssueEvent = z.infer<typeof access_code_failed_to_issue_event>;
|
|
1273
|
-
export declare const
|
|
1273
|
+
export declare const access_code_failed_to_update_event: z.ZodObject<{
|
|
1274
1274
|
event_id: z.ZodString;
|
|
1275
1275
|
workspace_id: z.ZodString;
|
|
1276
1276
|
created_at: z.ZodString;
|
|
@@ -1283,7 +1283,7 @@ export declare const access_code_delay_in_applying_mutations_event: z.ZodObject<
|
|
|
1283
1283
|
device_custom_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
|
|
1284
1284
|
connected_account_custom_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
|
|
1285
1285
|
} & {
|
|
1286
|
-
event_type: z.ZodLiteral<"access_code.
|
|
1286
|
+
event_type: z.ZodLiteral<"access_code.failed_to_update">;
|
|
1287
1287
|
} & {
|
|
1288
1288
|
connected_account_errors: z.ZodArray<z.ZodObject<{
|
|
1289
1289
|
created_at: z.ZodString;
|
|
@@ -1371,7 +1371,7 @@ export declare const access_code_delay_in_applying_mutations_event: z.ZodObject<
|
|
|
1371
1371
|
access_code_id: string;
|
|
1372
1372
|
event_id: string;
|
|
1373
1373
|
occurred_at: string;
|
|
1374
|
-
event_type: "access_code.
|
|
1374
|
+
event_type: "access_code.failed_to_update";
|
|
1375
1375
|
connected_account_errors: {
|
|
1376
1376
|
message: string;
|
|
1377
1377
|
created_at: string;
|
|
@@ -1413,7 +1413,7 @@ export declare const access_code_delay_in_applying_mutations_event: z.ZodObject<
|
|
|
1413
1413
|
access_code_id: string;
|
|
1414
1414
|
event_id: string;
|
|
1415
1415
|
occurred_at: string;
|
|
1416
|
-
event_type: "access_code.
|
|
1416
|
+
event_type: "access_code.failed_to_update";
|
|
1417
1417
|
connected_account_errors: {
|
|
1418
1418
|
message: string;
|
|
1419
1419
|
created_at: string;
|
|
@@ -1448,186 +1448,7 @@ export declare const access_code_delay_in_applying_mutations_event: z.ZodObject<
|
|
|
1448
1448
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1449
1449
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1450
1450
|
}>;
|
|
1451
|
-
export type
|
|
1452
|
-
export declare const access_code_failed_to_apply_mutations_event: z.ZodObject<{
|
|
1453
|
-
event_id: z.ZodString;
|
|
1454
|
-
workspace_id: z.ZodString;
|
|
1455
|
-
created_at: z.ZodString;
|
|
1456
|
-
occurred_at: z.ZodString;
|
|
1457
|
-
event_description: z.ZodOptional<z.ZodString>;
|
|
1458
|
-
} & {
|
|
1459
|
-
access_code_id: z.ZodString;
|
|
1460
|
-
device_id: z.ZodString;
|
|
1461
|
-
connected_account_id: z.ZodString;
|
|
1462
|
-
device_custom_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
|
|
1463
|
-
connected_account_custom_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
|
|
1464
|
-
} & {
|
|
1465
|
-
event_type: z.ZodLiteral<"access_code.failed_to_apply_mutations">;
|
|
1466
|
-
} & {
|
|
1467
|
-
connected_account_errors: z.ZodArray<z.ZodObject<{
|
|
1468
|
-
created_at: z.ZodString;
|
|
1469
|
-
message: z.ZodString;
|
|
1470
|
-
error_code: z.ZodString;
|
|
1471
|
-
}, "strip", z.ZodTypeAny, {
|
|
1472
|
-
message: string;
|
|
1473
|
-
created_at: string;
|
|
1474
|
-
error_code: string;
|
|
1475
|
-
}, {
|
|
1476
|
-
message: string;
|
|
1477
|
-
created_at: string;
|
|
1478
|
-
error_code: string;
|
|
1479
|
-
}>, "many">;
|
|
1480
|
-
connected_account_warnings: z.ZodArray<z.ZodObject<{
|
|
1481
|
-
created_at: z.ZodString;
|
|
1482
|
-
message: z.ZodString;
|
|
1483
|
-
warning_code: z.ZodString;
|
|
1484
|
-
}, "strip", z.ZodTypeAny, {
|
|
1485
|
-
message: string;
|
|
1486
|
-
created_at: string;
|
|
1487
|
-
warning_code: string;
|
|
1488
|
-
}, {
|
|
1489
|
-
message: string;
|
|
1490
|
-
created_at: string;
|
|
1491
|
-
warning_code: string;
|
|
1492
|
-
}>, "many">;
|
|
1493
|
-
device_errors: z.ZodArray<z.ZodObject<{
|
|
1494
|
-
created_at: z.ZodString;
|
|
1495
|
-
message: z.ZodString;
|
|
1496
|
-
error_code: z.ZodString;
|
|
1497
|
-
}, "strip", z.ZodTypeAny, {
|
|
1498
|
-
message: string;
|
|
1499
|
-
created_at: string;
|
|
1500
|
-
error_code: string;
|
|
1501
|
-
}, {
|
|
1502
|
-
message: string;
|
|
1503
|
-
created_at: string;
|
|
1504
|
-
error_code: string;
|
|
1505
|
-
}>, "many">;
|
|
1506
|
-
device_warnings: z.ZodArray<z.ZodObject<{
|
|
1507
|
-
created_at: z.ZodString;
|
|
1508
|
-
message: z.ZodString;
|
|
1509
|
-
warning_code: z.ZodString;
|
|
1510
|
-
}, "strip", z.ZodTypeAny, {
|
|
1511
|
-
message: string;
|
|
1512
|
-
created_at: string;
|
|
1513
|
-
warning_code: string;
|
|
1514
|
-
}, {
|
|
1515
|
-
message: string;
|
|
1516
|
-
created_at: string;
|
|
1517
|
-
warning_code: string;
|
|
1518
|
-
}>, "many">;
|
|
1519
|
-
access_code_errors: z.ZodArray<z.ZodObject<{
|
|
1520
|
-
created_at: z.ZodString;
|
|
1521
|
-
message: z.ZodString;
|
|
1522
|
-
error_code: z.ZodString;
|
|
1523
|
-
}, "strip", z.ZodTypeAny, {
|
|
1524
|
-
message: string;
|
|
1525
|
-
created_at: string;
|
|
1526
|
-
error_code: string;
|
|
1527
|
-
}, {
|
|
1528
|
-
message: string;
|
|
1529
|
-
created_at: string;
|
|
1530
|
-
error_code: string;
|
|
1531
|
-
}>, "many">;
|
|
1532
|
-
access_code_warnings: z.ZodArray<z.ZodObject<{
|
|
1533
|
-
created_at: z.ZodString;
|
|
1534
|
-
message: z.ZodString;
|
|
1535
|
-
warning_code: z.ZodString;
|
|
1536
|
-
}, "strip", z.ZodTypeAny, {
|
|
1537
|
-
message: string;
|
|
1538
|
-
created_at: string;
|
|
1539
|
-
warning_code: string;
|
|
1540
|
-
}, {
|
|
1541
|
-
message: string;
|
|
1542
|
-
created_at: string;
|
|
1543
|
-
warning_code: string;
|
|
1544
|
-
}>, "many">;
|
|
1545
|
-
}, "strip", z.ZodTypeAny, {
|
|
1546
|
-
device_id: string;
|
|
1547
|
-
workspace_id: string;
|
|
1548
|
-
created_at: string;
|
|
1549
|
-
connected_account_id: string;
|
|
1550
|
-
access_code_id: string;
|
|
1551
|
-
event_id: string;
|
|
1552
|
-
occurred_at: string;
|
|
1553
|
-
event_type: "access_code.failed_to_apply_mutations";
|
|
1554
|
-
connected_account_errors: {
|
|
1555
|
-
message: string;
|
|
1556
|
-
created_at: string;
|
|
1557
|
-
error_code: string;
|
|
1558
|
-
}[];
|
|
1559
|
-
connected_account_warnings: {
|
|
1560
|
-
message: string;
|
|
1561
|
-
created_at: string;
|
|
1562
|
-
warning_code: string;
|
|
1563
|
-
}[];
|
|
1564
|
-
device_errors: {
|
|
1565
|
-
message: string;
|
|
1566
|
-
created_at: string;
|
|
1567
|
-
error_code: string;
|
|
1568
|
-
}[];
|
|
1569
|
-
device_warnings: {
|
|
1570
|
-
message: string;
|
|
1571
|
-
created_at: string;
|
|
1572
|
-
warning_code: string;
|
|
1573
|
-
}[];
|
|
1574
|
-
access_code_errors: {
|
|
1575
|
-
message: string;
|
|
1576
|
-
created_at: string;
|
|
1577
|
-
error_code: string;
|
|
1578
|
-
}[];
|
|
1579
|
-
access_code_warnings: {
|
|
1580
|
-
message: string;
|
|
1581
|
-
created_at: string;
|
|
1582
|
-
warning_code: string;
|
|
1583
|
-
}[];
|
|
1584
|
-
event_description?: string | undefined;
|
|
1585
|
-
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1586
|
-
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1587
|
-
}, {
|
|
1588
|
-
device_id: string;
|
|
1589
|
-
workspace_id: string;
|
|
1590
|
-
created_at: string;
|
|
1591
|
-
connected_account_id: string;
|
|
1592
|
-
access_code_id: string;
|
|
1593
|
-
event_id: string;
|
|
1594
|
-
occurred_at: string;
|
|
1595
|
-
event_type: "access_code.failed_to_apply_mutations";
|
|
1596
|
-
connected_account_errors: {
|
|
1597
|
-
message: string;
|
|
1598
|
-
created_at: string;
|
|
1599
|
-
error_code: string;
|
|
1600
|
-
}[];
|
|
1601
|
-
connected_account_warnings: {
|
|
1602
|
-
message: string;
|
|
1603
|
-
created_at: string;
|
|
1604
|
-
warning_code: string;
|
|
1605
|
-
}[];
|
|
1606
|
-
device_errors: {
|
|
1607
|
-
message: string;
|
|
1608
|
-
created_at: string;
|
|
1609
|
-
error_code: string;
|
|
1610
|
-
}[];
|
|
1611
|
-
device_warnings: {
|
|
1612
|
-
message: string;
|
|
1613
|
-
created_at: string;
|
|
1614
|
-
warning_code: string;
|
|
1615
|
-
}[];
|
|
1616
|
-
access_code_errors: {
|
|
1617
|
-
message: string;
|
|
1618
|
-
created_at: string;
|
|
1619
|
-
error_code: string;
|
|
1620
|
-
}[];
|
|
1621
|
-
access_code_warnings: {
|
|
1622
|
-
message: string;
|
|
1623
|
-
created_at: string;
|
|
1624
|
-
warning_code: string;
|
|
1625
|
-
}[];
|
|
1626
|
-
event_description?: string | undefined;
|
|
1627
|
-
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1628
|
-
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1629
|
-
}>;
|
|
1630
|
-
export type AccessCodeFailedToApplyMutationsEvent = z.infer<typeof access_code_failed_to_apply_mutations_event>;
|
|
1451
|
+
export type AccessCodeFailedToUpdateEvent = z.infer<typeof access_code_failed_to_update_event>;
|
|
1631
1452
|
export declare const access_code_failed_to_expire_event: z.ZodObject<{
|
|
1632
1453
|
event_id: z.ZodString;
|
|
1633
1454
|
workspace_id: z.ZodString;
|
|
@@ -3888,184 +3709,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
3888
3709
|
device_custom_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
|
|
3889
3710
|
connected_account_custom_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
|
|
3890
3711
|
} & {
|
|
3891
|
-
event_type: z.ZodLiteral<"access_code.
|
|
3892
|
-
} & {
|
|
3893
|
-
connected_account_errors: z.ZodArray<z.ZodObject<{
|
|
3894
|
-
created_at: z.ZodString;
|
|
3895
|
-
message: z.ZodString;
|
|
3896
|
-
error_code: z.ZodString;
|
|
3897
|
-
}, "strip", z.ZodTypeAny, {
|
|
3898
|
-
message: string;
|
|
3899
|
-
created_at: string;
|
|
3900
|
-
error_code: string;
|
|
3901
|
-
}, {
|
|
3902
|
-
message: string;
|
|
3903
|
-
created_at: string;
|
|
3904
|
-
error_code: string;
|
|
3905
|
-
}>, "many">;
|
|
3906
|
-
connected_account_warnings: z.ZodArray<z.ZodObject<{
|
|
3907
|
-
created_at: z.ZodString;
|
|
3908
|
-
message: z.ZodString;
|
|
3909
|
-
warning_code: z.ZodString;
|
|
3910
|
-
}, "strip", z.ZodTypeAny, {
|
|
3911
|
-
message: string;
|
|
3912
|
-
created_at: string;
|
|
3913
|
-
warning_code: string;
|
|
3914
|
-
}, {
|
|
3915
|
-
message: string;
|
|
3916
|
-
created_at: string;
|
|
3917
|
-
warning_code: string;
|
|
3918
|
-
}>, "many">;
|
|
3919
|
-
device_errors: z.ZodArray<z.ZodObject<{
|
|
3920
|
-
created_at: z.ZodString;
|
|
3921
|
-
message: z.ZodString;
|
|
3922
|
-
error_code: z.ZodString;
|
|
3923
|
-
}, "strip", z.ZodTypeAny, {
|
|
3924
|
-
message: string;
|
|
3925
|
-
created_at: string;
|
|
3926
|
-
error_code: string;
|
|
3927
|
-
}, {
|
|
3928
|
-
message: string;
|
|
3929
|
-
created_at: string;
|
|
3930
|
-
error_code: string;
|
|
3931
|
-
}>, "many">;
|
|
3932
|
-
device_warnings: z.ZodArray<z.ZodObject<{
|
|
3933
|
-
created_at: z.ZodString;
|
|
3934
|
-
message: z.ZodString;
|
|
3935
|
-
warning_code: z.ZodString;
|
|
3936
|
-
}, "strip", z.ZodTypeAny, {
|
|
3937
|
-
message: string;
|
|
3938
|
-
created_at: string;
|
|
3939
|
-
warning_code: string;
|
|
3940
|
-
}, {
|
|
3941
|
-
message: string;
|
|
3942
|
-
created_at: string;
|
|
3943
|
-
warning_code: string;
|
|
3944
|
-
}>, "many">;
|
|
3945
|
-
access_code_errors: z.ZodArray<z.ZodObject<{
|
|
3946
|
-
created_at: z.ZodString;
|
|
3947
|
-
message: z.ZodString;
|
|
3948
|
-
error_code: z.ZodString;
|
|
3949
|
-
}, "strip", z.ZodTypeAny, {
|
|
3950
|
-
message: string;
|
|
3951
|
-
created_at: string;
|
|
3952
|
-
error_code: string;
|
|
3953
|
-
}, {
|
|
3954
|
-
message: string;
|
|
3955
|
-
created_at: string;
|
|
3956
|
-
error_code: string;
|
|
3957
|
-
}>, "many">;
|
|
3958
|
-
access_code_warnings: z.ZodArray<z.ZodObject<{
|
|
3959
|
-
created_at: z.ZodString;
|
|
3960
|
-
message: z.ZodString;
|
|
3961
|
-
warning_code: z.ZodString;
|
|
3962
|
-
}, "strip", z.ZodTypeAny, {
|
|
3963
|
-
message: string;
|
|
3964
|
-
created_at: string;
|
|
3965
|
-
warning_code: string;
|
|
3966
|
-
}, {
|
|
3967
|
-
message: string;
|
|
3968
|
-
created_at: string;
|
|
3969
|
-
warning_code: string;
|
|
3970
|
-
}>, "many">;
|
|
3971
|
-
}, "strip", z.ZodTypeAny, {
|
|
3972
|
-
device_id: string;
|
|
3973
|
-
workspace_id: string;
|
|
3974
|
-
created_at: string;
|
|
3975
|
-
connected_account_id: string;
|
|
3976
|
-
access_code_id: string;
|
|
3977
|
-
event_id: string;
|
|
3978
|
-
occurred_at: string;
|
|
3979
|
-
event_type: "access_code.delay_in_applying_mutations";
|
|
3980
|
-
connected_account_errors: {
|
|
3981
|
-
message: string;
|
|
3982
|
-
created_at: string;
|
|
3983
|
-
error_code: string;
|
|
3984
|
-
}[];
|
|
3985
|
-
connected_account_warnings: {
|
|
3986
|
-
message: string;
|
|
3987
|
-
created_at: string;
|
|
3988
|
-
warning_code: string;
|
|
3989
|
-
}[];
|
|
3990
|
-
device_errors: {
|
|
3991
|
-
message: string;
|
|
3992
|
-
created_at: string;
|
|
3993
|
-
error_code: string;
|
|
3994
|
-
}[];
|
|
3995
|
-
device_warnings: {
|
|
3996
|
-
message: string;
|
|
3997
|
-
created_at: string;
|
|
3998
|
-
warning_code: string;
|
|
3999
|
-
}[];
|
|
4000
|
-
access_code_errors: {
|
|
4001
|
-
message: string;
|
|
4002
|
-
created_at: string;
|
|
4003
|
-
error_code: string;
|
|
4004
|
-
}[];
|
|
4005
|
-
access_code_warnings: {
|
|
4006
|
-
message: string;
|
|
4007
|
-
created_at: string;
|
|
4008
|
-
warning_code: string;
|
|
4009
|
-
}[];
|
|
4010
|
-
event_description?: string | undefined;
|
|
4011
|
-
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4012
|
-
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4013
|
-
}, {
|
|
4014
|
-
device_id: string;
|
|
4015
|
-
workspace_id: string;
|
|
4016
|
-
created_at: string;
|
|
4017
|
-
connected_account_id: string;
|
|
4018
|
-
access_code_id: string;
|
|
4019
|
-
event_id: string;
|
|
4020
|
-
occurred_at: string;
|
|
4021
|
-
event_type: "access_code.delay_in_applying_mutations";
|
|
4022
|
-
connected_account_errors: {
|
|
4023
|
-
message: string;
|
|
4024
|
-
created_at: string;
|
|
4025
|
-
error_code: string;
|
|
4026
|
-
}[];
|
|
4027
|
-
connected_account_warnings: {
|
|
4028
|
-
message: string;
|
|
4029
|
-
created_at: string;
|
|
4030
|
-
warning_code: string;
|
|
4031
|
-
}[];
|
|
4032
|
-
device_errors: {
|
|
4033
|
-
message: string;
|
|
4034
|
-
created_at: string;
|
|
4035
|
-
error_code: string;
|
|
4036
|
-
}[];
|
|
4037
|
-
device_warnings: {
|
|
4038
|
-
message: string;
|
|
4039
|
-
created_at: string;
|
|
4040
|
-
warning_code: string;
|
|
4041
|
-
}[];
|
|
4042
|
-
access_code_errors: {
|
|
4043
|
-
message: string;
|
|
4044
|
-
created_at: string;
|
|
4045
|
-
error_code: string;
|
|
4046
|
-
}[];
|
|
4047
|
-
access_code_warnings: {
|
|
4048
|
-
message: string;
|
|
4049
|
-
created_at: string;
|
|
4050
|
-
warning_code: string;
|
|
4051
|
-
}[];
|
|
4052
|
-
event_description?: string | undefined;
|
|
4053
|
-
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4054
|
-
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4055
|
-
}>, z.ZodObject<{
|
|
4056
|
-
event_id: z.ZodString;
|
|
4057
|
-
workspace_id: z.ZodString;
|
|
4058
|
-
created_at: z.ZodString;
|
|
4059
|
-
occurred_at: z.ZodString;
|
|
4060
|
-
event_description: z.ZodOptional<z.ZodString>;
|
|
4061
|
-
} & {
|
|
4062
|
-
access_code_id: z.ZodString;
|
|
4063
|
-
device_id: z.ZodString;
|
|
4064
|
-
connected_account_id: z.ZodString;
|
|
4065
|
-
device_custom_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
|
|
4066
|
-
connected_account_custom_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
|
|
4067
|
-
} & {
|
|
4068
|
-
event_type: z.ZodLiteral<"access_code.failed_to_apply_mutations">;
|
|
3712
|
+
event_type: z.ZodLiteral<"access_code.failed_to_update">;
|
|
4069
3713
|
} & {
|
|
4070
3714
|
connected_account_errors: z.ZodArray<z.ZodObject<{
|
|
4071
3715
|
created_at: z.ZodString;
|
|
@@ -4153,7 +3797,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
4153
3797
|
access_code_id: string;
|
|
4154
3798
|
event_id: string;
|
|
4155
3799
|
occurred_at: string;
|
|
4156
|
-
event_type: "access_code.
|
|
3800
|
+
event_type: "access_code.failed_to_update";
|
|
4157
3801
|
connected_account_errors: {
|
|
4158
3802
|
message: string;
|
|
4159
3803
|
created_at: string;
|
|
@@ -4195,7 +3839,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
4195
3839
|
access_code_id: string;
|
|
4196
3840
|
event_id: string;
|
|
4197
3841
|
occurred_at: string;
|
|
4198
|
-
event_type: "access_code.
|
|
3842
|
+
event_type: "access_code.failed_to_update";
|
|
4199
3843
|
connected_account_errors: {
|
|
4200
3844
|
message: string;
|
|
4201
3845
|
created_at: string;
|
|
@@ -253,27 +253,16 @@ export const access_code_failed_to_issue_event = access_code_event
|
|
|
253
253
|
---
|
|
254
254
|
Seam was unable to issue this [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes) before its start time, so the recipient may be unable to unlock the device. This usually points to a problem that needs attention, such as an offline or disconnected device. Seam keeps retrying, and the accompanying \`failed_to_issue\` error clears automatically if the access code is eventually issued.
|
|
255
255
|
`);
|
|
256
|
-
export const
|
|
256
|
+
export const access_code_failed_to_update_event = access_code_event
|
|
257
257
|
.extend({
|
|
258
|
-
event_type: z.literal('access_code.
|
|
258
|
+
event_type: z.literal('access_code.failed_to_update'),
|
|
259
259
|
})
|
|
260
260
|
.extend(access_code_event_issue_properties).describe(`
|
|
261
261
|
---
|
|
262
262
|
route_path: /access_codes
|
|
263
263
|
undocumented: Unreleased.
|
|
264
264
|
---
|
|
265
|
-
Seam
|
|
266
|
-
`);
|
|
267
|
-
export const access_code_failed_to_apply_mutations_event = access_code_event
|
|
268
|
-
.extend({
|
|
269
|
-
event_type: z.literal('access_code.failed_to_apply_mutations'),
|
|
270
|
-
})
|
|
271
|
-
.extend(access_code_event_issue_properties).describe(`
|
|
272
|
-
---
|
|
273
|
-
route_path: /access_codes
|
|
274
|
-
undocumented: Unreleased.
|
|
275
|
-
---
|
|
276
|
-
Seam was unable to apply this [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes)'s pending mutations to the device, so the code on the device does not match its requested state. Seam keeps retrying, and the accompanying \`failed_to_apply_mutations\` error clears automatically once the mutations are applied.
|
|
265
|
+
Seam was unable to apply this [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes)'s requested update to the device, so the code on the device does not match its requested state. Seam keeps retrying, and the accompanying \`failed_to_update\` error clears automatically once the update is applied.
|
|
277
266
|
`);
|
|
278
267
|
export const access_code_failed_to_expire_event = access_code_event
|
|
279
268
|
.extend({
|
|
@@ -393,8 +382,7 @@ export const access_code_events = [
|
|
|
393
382
|
access_code_issued_event,
|
|
394
383
|
access_code_delay_in_issuing_event,
|
|
395
384
|
access_code_failed_to_issue_event,
|
|
396
|
-
|
|
397
|
-
access_code_failed_to_apply_mutations_event,
|
|
385
|
+
access_code_failed_to_update_event,
|
|
398
386
|
access_code_failed_to_expire_event,
|
|
399
387
|
access_code_deleted_event,
|
|
400
388
|
access_code_delay_in_removing_from_device_event,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"access-codes.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/events/access-codes.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"access-codes.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/events/access-codes.ts"],"names":[],"mappings":"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"}
|