@seamapi/types 1.962.0 → 1.963.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 +560 -21
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +976 -4
- package/dist/index.cjs +560 -21
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-method.d.ts +143 -0
- package/lib/seam/connect/models/access-grants/access-method.js +36 -0
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +63 -0
- package/lib/seam/connect/models/action-attempts/assign-credential.d.ts +63 -0
- package/lib/seam/connect/models/events/access-methods.d.ts +130 -0
- package/lib/seam/connect/models/events/access-methods.js +18 -0
- package/lib/seam/connect/models/events/access-methods.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +65 -1
- package/lib/seam/connect/openapi.js +490 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +804 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-method.ts +53 -0
- package/src/lib/seam/connect/models/events/access-methods.ts +20 -0
- package/src/lib/seam/connect/openapi.ts +558 -0
- package/src/lib/seam/connect/route-types.ts +857 -0
|
@@ -1091,7 +1091,23 @@ export type Routes = {
|
|
|
1091
1091
|
warning_code: 'pulled_backup_access_code';
|
|
1092
1092
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
1093
1093
|
original_access_method_id?: string | undefined;
|
|
1094
|
+
} | {
|
|
1095
|
+
/** Date and time at which Seam created the warning. */
|
|
1096
|
+
created_at: string;
|
|
1097
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1098
|
+
message: string;
|
|
1099
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1100
|
+
warning_code: 'delay_in_issuing';
|
|
1094
1101
|
})[];
|
|
1102
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
1103
|
+
errors: {
|
|
1104
|
+
/** Date and time at which Seam created the error. */
|
|
1105
|
+
created_at: string;
|
|
1106
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1107
|
+
message: string;
|
|
1108
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1109
|
+
error_code: 'failed_to_issue';
|
|
1110
|
+
}[];
|
|
1095
1111
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
1096
1112
|
pending_mutations: ({
|
|
1097
1113
|
/** Date and time at which the mutation was created. */
|
|
@@ -3715,7 +3731,23 @@ export type Routes = {
|
|
|
3715
3731
|
warning_code: 'pulled_backup_access_code';
|
|
3716
3732
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
3717
3733
|
original_access_method_id?: string | undefined;
|
|
3734
|
+
} | {
|
|
3735
|
+
/** Date and time at which Seam created the warning. */
|
|
3736
|
+
created_at: string;
|
|
3737
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3738
|
+
message: string;
|
|
3739
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3740
|
+
warning_code: 'delay_in_issuing';
|
|
3718
3741
|
})[];
|
|
3742
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
3743
|
+
errors: {
|
|
3744
|
+
/** Date and time at which Seam created the error. */
|
|
3745
|
+
created_at: string;
|
|
3746
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3747
|
+
message: string;
|
|
3748
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3749
|
+
error_code: 'failed_to_issue';
|
|
3750
|
+
}[];
|
|
3719
3751
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
3720
3752
|
pending_mutations: ({
|
|
3721
3753
|
/** Date and time at which the mutation was created. */
|
|
@@ -7772,7 +7804,23 @@ export type Routes = {
|
|
|
7772
7804
|
warning_code: 'pulled_backup_access_code';
|
|
7773
7805
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
7774
7806
|
original_access_method_id?: string | undefined;
|
|
7807
|
+
} | {
|
|
7808
|
+
/** Date and time at which Seam created the warning. */
|
|
7809
|
+
created_at: string;
|
|
7810
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7811
|
+
message: string;
|
|
7812
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7813
|
+
warning_code: 'delay_in_issuing';
|
|
7775
7814
|
})[];
|
|
7815
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
7816
|
+
errors: {
|
|
7817
|
+
/** Date and time at which Seam created the error. */
|
|
7818
|
+
created_at: string;
|
|
7819
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7820
|
+
message: string;
|
|
7821
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7822
|
+
error_code: 'failed_to_issue';
|
|
7823
|
+
}[];
|
|
7776
7824
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
7777
7825
|
pending_mutations: ({
|
|
7778
7826
|
/** Date and time at which the mutation was created. */
|
|
@@ -10276,7 +10324,23 @@ export type Routes = {
|
|
|
10276
10324
|
warning_code: 'pulled_backup_access_code';
|
|
10277
10325
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
10278
10326
|
original_access_method_id?: string | undefined;
|
|
10327
|
+
} | {
|
|
10328
|
+
/** Date and time at which Seam created the warning. */
|
|
10329
|
+
created_at: string;
|
|
10330
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
10331
|
+
message: string;
|
|
10332
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
10333
|
+
warning_code: 'delay_in_issuing';
|
|
10279
10334
|
})[];
|
|
10335
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
10336
|
+
errors: {
|
|
10337
|
+
/** Date and time at which Seam created the error. */
|
|
10338
|
+
created_at: string;
|
|
10339
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10340
|
+
message: string;
|
|
10341
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10342
|
+
error_code: 'failed_to_issue';
|
|
10343
|
+
}[];
|
|
10280
10344
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
10281
10345
|
pending_mutations: ({
|
|
10282
10346
|
/** Date and time at which the mutation was created. */
|
|
@@ -13665,7 +13729,23 @@ export type Routes = {
|
|
|
13665
13729
|
warning_code: 'pulled_backup_access_code';
|
|
13666
13730
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
13667
13731
|
original_access_method_id?: string | undefined;
|
|
13732
|
+
} | {
|
|
13733
|
+
/** Date and time at which Seam created the warning. */
|
|
13734
|
+
created_at: string;
|
|
13735
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
13736
|
+
message: string;
|
|
13737
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
13738
|
+
warning_code: 'delay_in_issuing';
|
|
13668
13739
|
})[];
|
|
13740
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
13741
|
+
errors: {
|
|
13742
|
+
/** Date and time at which Seam created the error. */
|
|
13743
|
+
created_at: string;
|
|
13744
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
13745
|
+
message: string;
|
|
13746
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
13747
|
+
error_code: 'failed_to_issue';
|
|
13748
|
+
}[];
|
|
13669
13749
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
13670
13750
|
pending_mutations: ({
|
|
13671
13751
|
/** Date and time at which the mutation was created. */
|
|
@@ -15644,7 +15724,23 @@ export type Routes = {
|
|
|
15644
15724
|
warning_code: 'pulled_backup_access_code';
|
|
15645
15725
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
15646
15726
|
original_access_method_id?: string | undefined;
|
|
15727
|
+
} | {
|
|
15728
|
+
/** Date and time at which Seam created the warning. */
|
|
15729
|
+
created_at: string;
|
|
15730
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15731
|
+
message: string;
|
|
15732
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15733
|
+
warning_code: 'delay_in_issuing';
|
|
15647
15734
|
})[];
|
|
15735
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
15736
|
+
errors: {
|
|
15737
|
+
/** Date and time at which Seam created the error. */
|
|
15738
|
+
created_at: string;
|
|
15739
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
15740
|
+
message: string;
|
|
15741
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15742
|
+
error_code: 'failed_to_issue';
|
|
15743
|
+
}[];
|
|
15648
15744
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
15649
15745
|
pending_mutations: ({
|
|
15650
15746
|
/** Date and time at which the mutation was created. */
|
|
@@ -17345,7 +17441,23 @@ export type Routes = {
|
|
|
17345
17441
|
warning_code: 'pulled_backup_access_code';
|
|
17346
17442
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
17347
17443
|
original_access_method_id?: string | undefined;
|
|
17444
|
+
} | {
|
|
17445
|
+
/** Date and time at which Seam created the warning. */
|
|
17446
|
+
created_at: string;
|
|
17447
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17448
|
+
message: string;
|
|
17449
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17450
|
+
warning_code: 'delay_in_issuing';
|
|
17348
17451
|
})[];
|
|
17452
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
17453
|
+
errors: {
|
|
17454
|
+
/** Date and time at which Seam created the error. */
|
|
17455
|
+
created_at: string;
|
|
17456
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
17457
|
+
message: string;
|
|
17458
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17459
|
+
error_code: 'failed_to_issue';
|
|
17460
|
+
}[];
|
|
17349
17461
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
17350
17462
|
pending_mutations: ({
|
|
17351
17463
|
/** Date and time at which the mutation was created. */
|
|
@@ -18036,7 +18148,23 @@ export type Routes = {
|
|
|
18036
18148
|
warning_code: 'pulled_backup_access_code';
|
|
18037
18149
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
18038
18150
|
original_access_method_id?: string | undefined;
|
|
18151
|
+
} | {
|
|
18152
|
+
/** Date and time at which Seam created the warning. */
|
|
18153
|
+
created_at: string;
|
|
18154
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18155
|
+
message: string;
|
|
18156
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18157
|
+
warning_code: 'delay_in_issuing';
|
|
18039
18158
|
})[];
|
|
18159
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
18160
|
+
errors: {
|
|
18161
|
+
/** Date and time at which Seam created the error. */
|
|
18162
|
+
created_at: string;
|
|
18163
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
18164
|
+
message: string;
|
|
18165
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
18166
|
+
error_code: 'failed_to_issue';
|
|
18167
|
+
}[];
|
|
18040
18168
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
18041
18169
|
pending_mutations: ({
|
|
18042
18170
|
/** Date and time at which the mutation was created. */
|
|
@@ -20023,7 +20151,23 @@ export type Routes = {
|
|
|
20023
20151
|
warning_code: 'pulled_backup_access_code';
|
|
20024
20152
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
20025
20153
|
original_access_method_id?: string | undefined;
|
|
20154
|
+
} | {
|
|
20155
|
+
/** Date and time at which Seam created the warning. */
|
|
20156
|
+
created_at: string;
|
|
20157
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20158
|
+
message: string;
|
|
20159
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20160
|
+
warning_code: 'delay_in_issuing';
|
|
20026
20161
|
})[];
|
|
20162
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
20163
|
+
errors: {
|
|
20164
|
+
/** Date and time at which Seam created the error. */
|
|
20165
|
+
created_at: string;
|
|
20166
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20167
|
+
message: string;
|
|
20168
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20169
|
+
error_code: 'failed_to_issue';
|
|
20170
|
+
}[];
|
|
20027
20171
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
20028
20172
|
pending_mutations: ({
|
|
20029
20173
|
/** Date and time at which the mutation was created. */
|
|
@@ -20349,7 +20493,23 @@ export type Routes = {
|
|
|
20349
20493
|
warning_code: 'pulled_backup_access_code';
|
|
20350
20494
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
20351
20495
|
original_access_method_id?: string | undefined;
|
|
20496
|
+
} | {
|
|
20497
|
+
/** Date and time at which Seam created the warning. */
|
|
20498
|
+
created_at: string;
|
|
20499
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20500
|
+
message: string;
|
|
20501
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20502
|
+
warning_code: 'delay_in_issuing';
|
|
20352
20503
|
})[];
|
|
20504
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
20505
|
+
errors: {
|
|
20506
|
+
/** Date and time at which Seam created the error. */
|
|
20507
|
+
created_at: string;
|
|
20508
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20509
|
+
message: string;
|
|
20510
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20511
|
+
error_code: 'failed_to_issue';
|
|
20512
|
+
}[];
|
|
20353
20513
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
20354
20514
|
pending_mutations: ({
|
|
20355
20515
|
/** Date and time at which the mutation was created. */
|
|
@@ -21469,7 +21629,23 @@ export type Routes = {
|
|
|
21469
21629
|
warning_code: 'pulled_backup_access_code';
|
|
21470
21630
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
21471
21631
|
original_access_method_id?: string | undefined;
|
|
21632
|
+
} | {
|
|
21633
|
+
/** Date and time at which Seam created the warning. */
|
|
21634
|
+
created_at: string;
|
|
21635
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
21636
|
+
message: string;
|
|
21637
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21638
|
+
warning_code: 'delay_in_issuing';
|
|
21472
21639
|
})[];
|
|
21640
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
21641
|
+
errors: {
|
|
21642
|
+
/** Date and time at which Seam created the error. */
|
|
21643
|
+
created_at: string;
|
|
21644
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
21645
|
+
message: string;
|
|
21646
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
21647
|
+
error_code: 'failed_to_issue';
|
|
21648
|
+
}[];
|
|
21473
21649
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
21474
21650
|
pending_mutations: ({
|
|
21475
21651
|
/** Date and time at which the mutation was created. */
|
|
@@ -22156,7 +22332,23 @@ export type Routes = {
|
|
|
22156
22332
|
warning_code: 'pulled_backup_access_code';
|
|
22157
22333
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
22158
22334
|
original_access_method_id?: string | undefined;
|
|
22335
|
+
} | {
|
|
22336
|
+
/** Date and time at which Seam created the warning. */
|
|
22337
|
+
created_at: string;
|
|
22338
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22339
|
+
message: string;
|
|
22340
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22341
|
+
warning_code: 'delay_in_issuing';
|
|
22159
22342
|
})[];
|
|
22343
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
22344
|
+
errors: {
|
|
22345
|
+
/** Date and time at which Seam created the error. */
|
|
22346
|
+
created_at: string;
|
|
22347
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22348
|
+
message: string;
|
|
22349
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22350
|
+
error_code: 'failed_to_issue';
|
|
22351
|
+
}[];
|
|
22160
22352
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
22161
22353
|
pending_mutations: ({
|
|
22162
22354
|
/** Date and time at which the mutation was created. */
|
|
@@ -22284,7 +22476,23 @@ export type Routes = {
|
|
|
22284
22476
|
warning_code: 'pulled_backup_access_code';
|
|
22285
22477
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
22286
22478
|
original_access_method_id?: string | undefined;
|
|
22479
|
+
} | {
|
|
22480
|
+
/** Date and time at which Seam created the warning. */
|
|
22481
|
+
created_at: string;
|
|
22482
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22483
|
+
message: string;
|
|
22484
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22485
|
+
warning_code: 'delay_in_issuing';
|
|
22287
22486
|
})[];
|
|
22487
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
22488
|
+
errors: {
|
|
22489
|
+
/** Date and time at which Seam created the error. */
|
|
22490
|
+
created_at: string;
|
|
22491
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22492
|
+
message: string;
|
|
22493
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22494
|
+
error_code: 'failed_to_issue';
|
|
22495
|
+
}[];
|
|
22288
22496
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
22289
22497
|
pending_mutations: ({
|
|
22290
22498
|
/** Date and time at which the mutation was created. */
|
|
@@ -26402,7 +26610,23 @@ export type Routes = {
|
|
|
26402
26610
|
warning_code: 'pulled_backup_access_code';
|
|
26403
26611
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
26404
26612
|
original_access_method_id?: string | undefined;
|
|
26613
|
+
} | {
|
|
26614
|
+
/** Date and time at which Seam created the warning. */
|
|
26615
|
+
created_at: string;
|
|
26616
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26617
|
+
message: string;
|
|
26618
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26619
|
+
warning_code: 'delay_in_issuing';
|
|
26405
26620
|
})[];
|
|
26621
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
26622
|
+
errors: {
|
|
26623
|
+
/** Date and time at which Seam created the error. */
|
|
26624
|
+
created_at: string;
|
|
26625
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
26626
|
+
message: string;
|
|
26627
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
26628
|
+
error_code: 'failed_to_issue';
|
|
26629
|
+
}[];
|
|
26406
26630
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
26407
26631
|
pending_mutations: ({
|
|
26408
26632
|
/** Date and time at which the mutation was created. */
|
|
@@ -28195,7 +28419,23 @@ export type Routes = {
|
|
|
28195
28419
|
warning_code: 'pulled_backup_access_code';
|
|
28196
28420
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
28197
28421
|
original_access_method_id?: string | undefined;
|
|
28422
|
+
} | {
|
|
28423
|
+
/** Date and time at which Seam created the warning. */
|
|
28424
|
+
created_at: string;
|
|
28425
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
28426
|
+
message: string;
|
|
28427
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28428
|
+
warning_code: 'delay_in_issuing';
|
|
28198
28429
|
})[];
|
|
28430
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
28431
|
+
errors: {
|
|
28432
|
+
/** Date and time at which Seam created the error. */
|
|
28433
|
+
created_at: string;
|
|
28434
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28435
|
+
message: string;
|
|
28436
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28437
|
+
error_code: 'failed_to_issue';
|
|
28438
|
+
}[];
|
|
28199
28439
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
28200
28440
|
pending_mutations: ({
|
|
28201
28441
|
/** Date and time at which the mutation was created. */
|
|
@@ -29884,7 +30124,23 @@ export type Routes = {
|
|
|
29884
30124
|
warning_code: 'pulled_backup_access_code';
|
|
29885
30125
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
29886
30126
|
original_access_method_id?: string | undefined;
|
|
30127
|
+
} | {
|
|
30128
|
+
/** Date and time at which Seam created the warning. */
|
|
30129
|
+
created_at: string;
|
|
30130
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
30131
|
+
message: string;
|
|
30132
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30133
|
+
warning_code: 'delay_in_issuing';
|
|
29887
30134
|
})[];
|
|
30135
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
30136
|
+
errors: {
|
|
30137
|
+
/** Date and time at which Seam created the error. */
|
|
30138
|
+
created_at: string;
|
|
30139
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
30140
|
+
message: string;
|
|
30141
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
30142
|
+
error_code: 'failed_to_issue';
|
|
30143
|
+
}[];
|
|
29888
30144
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
29889
30145
|
pending_mutations: ({
|
|
29890
30146
|
/** Date and time at which the mutation was created. */
|
|
@@ -32248,7 +32504,23 @@ export type Routes = {
|
|
|
32248
32504
|
warning_code: 'pulled_backup_access_code';
|
|
32249
32505
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
32250
32506
|
original_access_method_id?: string | undefined;
|
|
32507
|
+
} | {
|
|
32508
|
+
/** Date and time at which Seam created the warning. */
|
|
32509
|
+
created_at: string;
|
|
32510
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
32511
|
+
message: string;
|
|
32512
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
32513
|
+
warning_code: 'delay_in_issuing';
|
|
32251
32514
|
})[];
|
|
32515
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
32516
|
+
errors: {
|
|
32517
|
+
/** Date and time at which Seam created the error. */
|
|
32518
|
+
created_at: string;
|
|
32519
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
32520
|
+
message: string;
|
|
32521
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32522
|
+
error_code: 'failed_to_issue';
|
|
32523
|
+
}[];
|
|
32252
32524
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
32253
32525
|
pending_mutations: ({
|
|
32254
32526
|
/** Date and time at which the mutation was created. */
|
|
@@ -36172,7 +36444,23 @@ export type Routes = {
|
|
|
36172
36444
|
warning_code: 'pulled_backup_access_code';
|
|
36173
36445
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
36174
36446
|
original_access_method_id?: string | undefined;
|
|
36447
|
+
} | {
|
|
36448
|
+
/** Date and time at which Seam created the warning. */
|
|
36449
|
+
created_at: string;
|
|
36450
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
36451
|
+
message: string;
|
|
36452
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36453
|
+
warning_code: 'delay_in_issuing';
|
|
36175
36454
|
})[];
|
|
36455
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
36456
|
+
errors: {
|
|
36457
|
+
/** Date and time at which Seam created the error. */
|
|
36458
|
+
created_at: string;
|
|
36459
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
36460
|
+
message: string;
|
|
36461
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
36462
|
+
error_code: 'failed_to_issue';
|
|
36463
|
+
}[];
|
|
36176
36464
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
36177
36465
|
pending_mutations: ({
|
|
36178
36466
|
/** Date and time at which the mutation was created. */
|
|
@@ -37853,7 +38141,23 @@ export type Routes = {
|
|
|
37853
38141
|
warning_code: 'pulled_backup_access_code';
|
|
37854
38142
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
37855
38143
|
original_access_method_id?: string | undefined;
|
|
38144
|
+
} | {
|
|
38145
|
+
/** Date and time at which Seam created the warning. */
|
|
38146
|
+
created_at: string;
|
|
38147
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
38148
|
+
message: string;
|
|
38149
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38150
|
+
warning_code: 'delay_in_issuing';
|
|
37856
38151
|
})[];
|
|
38152
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
38153
|
+
errors: {
|
|
38154
|
+
/** Date and time at which Seam created the error. */
|
|
38155
|
+
created_at: string;
|
|
38156
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
38157
|
+
message: string;
|
|
38158
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
38159
|
+
error_code: 'failed_to_issue';
|
|
38160
|
+
}[];
|
|
37857
38161
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
37858
38162
|
pending_mutations: ({
|
|
37859
38163
|
/** Date and time at which the mutation was created. */
|
|
@@ -46008,6 +46312,42 @@ export type Routes = {
|
|
|
46008
46312
|
/** Keys of the access grants associated with this access method (if present). */
|
|
46009
46313
|
access_grant_keys?: string[] | undefined;
|
|
46010
46314
|
event_type: 'access_method.created';
|
|
46315
|
+
} | {
|
|
46316
|
+
/** ID of the event. */
|
|
46317
|
+
event_id: string;
|
|
46318
|
+
/** ID of the workspace associated with the event. */
|
|
46319
|
+
workspace_id: string;
|
|
46320
|
+
/** Date and time at which the event was created. */
|
|
46321
|
+
created_at: string;
|
|
46322
|
+
/** Date and time at which the event occurred. */
|
|
46323
|
+
occurred_at: string;
|
|
46324
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
46325
|
+
event_description?: string | undefined;
|
|
46326
|
+
/** ID of the affected access method. */
|
|
46327
|
+
access_method_id: string;
|
|
46328
|
+
/** IDs of the access grants associated with this access method. */
|
|
46329
|
+
access_grant_ids: string[];
|
|
46330
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
46331
|
+
access_grant_keys?: string[] | undefined;
|
|
46332
|
+
event_type: 'access_method.delay_in_issuing';
|
|
46333
|
+
} | {
|
|
46334
|
+
/** ID of the event. */
|
|
46335
|
+
event_id: string;
|
|
46336
|
+
/** ID of the workspace associated with the event. */
|
|
46337
|
+
workspace_id: string;
|
|
46338
|
+
/** Date and time at which the event was created. */
|
|
46339
|
+
created_at: string;
|
|
46340
|
+
/** Date and time at which the event occurred. */
|
|
46341
|
+
occurred_at: string;
|
|
46342
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
46343
|
+
event_description?: string | undefined;
|
|
46344
|
+
/** ID of the affected access method. */
|
|
46345
|
+
access_method_id: string;
|
|
46346
|
+
/** IDs of the access grants associated with this access method. */
|
|
46347
|
+
access_grant_ids: string[];
|
|
46348
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
46349
|
+
access_grant_keys?: string[] | undefined;
|
|
46350
|
+
event_type: 'access_method.failed_to_issue';
|
|
46011
46351
|
} | {
|
|
46012
46352
|
/** ID of the event. */
|
|
46013
46353
|
event_id: string;
|
|
@@ -48120,9 +48460,9 @@ export type Routes = {
|
|
|
48120
48460
|
/** IDs of the access codes for which you want to list events. */
|
|
48121
48461
|
access_code_ids?: string[] | undefined;
|
|
48122
48462
|
/** Type of the events that you want to list. */
|
|
48123
|
-
event_type?: ('access_code.created' | 'access_code.changed' | 'access_code.name_changed' | 'access_code.code_changed' | 'access_code.time_frame_changed' | 'access_code.mutations_requested' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'access_grant.created' | 'access_grant.deleted' | 'access_grant.access_granted_to_all_doors' | 'access_grant.access_granted_to_door' | 'access_grant.access_to_door_lost' | 'access_grant.access_times_changed' | 'access_grant.could_not_create_requested_access_methods' | 'access_method.issued' | 'access_method.revoked' | 'access_method.card_encoding_required' | 'access_method.deleted' | 'access_method.reissued' | 'access_method.created' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_credential.invalidated' | 'acs_user.created' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'connected_account.reauthorization_requested' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'action_attempt.simulate_keypad_code_entry.succeeded' | 'action_attempt.simulate_keypad_code_entry.failed' | 'action_attempt.simulate_manual_lock_via_keypad.succeeded' | 'action_attempt.simulate_manual_lock_via_keypad.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'camera.activated' | 'device.doorbell_rang' | 'enrollment_automation.deleted' | 'phone.deactivated' | 'space.device_membership_changed' | 'space.created' | 'space.deleted') | undefined;
|
|
48463
|
+
event_type?: ('access_code.created' | 'access_code.changed' | 'access_code.name_changed' | 'access_code.code_changed' | 'access_code.time_frame_changed' | 'access_code.mutations_requested' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'access_grant.created' | 'access_grant.deleted' | 'access_grant.access_granted_to_all_doors' | 'access_grant.access_granted_to_door' | 'access_grant.access_to_door_lost' | 'access_grant.access_times_changed' | 'access_grant.could_not_create_requested_access_methods' | 'access_method.issued' | 'access_method.revoked' | 'access_method.card_encoding_required' | 'access_method.deleted' | 'access_method.reissued' | 'access_method.created' | 'access_method.delay_in_issuing' | 'access_method.failed_to_issue' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_credential.invalidated' | 'acs_user.created' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'connected_account.reauthorization_requested' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'action_attempt.simulate_keypad_code_entry.succeeded' | 'action_attempt.simulate_keypad_code_entry.failed' | 'action_attempt.simulate_manual_lock_via_keypad.succeeded' | 'action_attempt.simulate_manual_lock_via_keypad.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'camera.activated' | 'device.doorbell_rang' | 'enrollment_automation.deleted' | 'phone.deactivated' | 'space.device_membership_changed' | 'space.created' | 'space.deleted') | undefined;
|
|
48124
48464
|
/** Types of the events that you want to list. */
|
|
48125
|
-
event_types?: ('access_code.created' | 'access_code.changed' | 'access_code.name_changed' | 'access_code.code_changed' | 'access_code.time_frame_changed' | 'access_code.mutations_requested' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'access_grant.created' | 'access_grant.deleted' | 'access_grant.access_granted_to_all_doors' | 'access_grant.access_granted_to_door' | 'access_grant.access_to_door_lost' | 'access_grant.access_times_changed' | 'access_grant.could_not_create_requested_access_methods' | 'access_method.issued' | 'access_method.revoked' | 'access_method.card_encoding_required' | 'access_method.deleted' | 'access_method.reissued' | 'access_method.created' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_credential.invalidated' | 'acs_user.created' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'connected_account.reauthorization_requested' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'action_attempt.simulate_keypad_code_entry.succeeded' | 'action_attempt.simulate_keypad_code_entry.failed' | 'action_attempt.simulate_manual_lock_via_keypad.succeeded' | 'action_attempt.simulate_manual_lock_via_keypad.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'camera.activated' | 'device.doorbell_rang' | 'enrollment_automation.deleted' | 'phone.deactivated' | 'space.device_membership_changed' | 'space.created' | 'space.deleted')[] | undefined;
|
|
48465
|
+
event_types?: ('access_code.created' | 'access_code.changed' | 'access_code.name_changed' | 'access_code.code_changed' | 'access_code.time_frame_changed' | 'access_code.mutations_requested' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'access_grant.created' | 'access_grant.deleted' | 'access_grant.access_granted_to_all_doors' | 'access_grant.access_granted_to_door' | 'access_grant.access_to_door_lost' | 'access_grant.access_times_changed' | 'access_grant.could_not_create_requested_access_methods' | 'access_method.issued' | 'access_method.revoked' | 'access_method.card_encoding_required' | 'access_method.deleted' | 'access_method.reissued' | 'access_method.created' | 'access_method.delay_in_issuing' | 'access_method.failed_to_issue' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_credential.invalidated' | 'acs_user.created' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'connected_account.reauthorization_requested' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'action_attempt.simulate_keypad_code_entry.succeeded' | 'action_attempt.simulate_keypad_code_entry.failed' | 'action_attempt.simulate_manual_lock_via_keypad.succeeded' | 'action_attempt.simulate_manual_lock_via_keypad.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'camera.activated' | 'device.doorbell_rang' | 'enrollment_automation.deleted' | 'phone.deactivated' | 'space.device_membership_changed' | 'space.created' | 'space.deleted')[] | undefined;
|
|
48126
48466
|
/** ID of the connected account for which you want to list events. */
|
|
48127
48467
|
connected_account_id?: string | undefined;
|
|
48128
48468
|
/** ID of the Connect Webview for which you want to list events. */
|
|
@@ -49274,6 +49614,42 @@ export type Routes = {
|
|
|
49274
49614
|
/** Keys of the access grants associated with this access method (if present). */
|
|
49275
49615
|
access_grant_keys?: string[] | undefined;
|
|
49276
49616
|
event_type: 'access_method.created';
|
|
49617
|
+
} | {
|
|
49618
|
+
/** ID of the event. */
|
|
49619
|
+
event_id: string;
|
|
49620
|
+
/** ID of the workspace associated with the event. */
|
|
49621
|
+
workspace_id: string;
|
|
49622
|
+
/** Date and time at which the event was created. */
|
|
49623
|
+
created_at: string;
|
|
49624
|
+
/** Date and time at which the event occurred. */
|
|
49625
|
+
occurred_at: string;
|
|
49626
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
49627
|
+
event_description?: string | undefined;
|
|
49628
|
+
/** ID of the affected access method. */
|
|
49629
|
+
access_method_id: string;
|
|
49630
|
+
/** IDs of the access grants associated with this access method. */
|
|
49631
|
+
access_grant_ids: string[];
|
|
49632
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
49633
|
+
access_grant_keys?: string[] | undefined;
|
|
49634
|
+
event_type: 'access_method.delay_in_issuing';
|
|
49635
|
+
} | {
|
|
49636
|
+
/** ID of the event. */
|
|
49637
|
+
event_id: string;
|
|
49638
|
+
/** ID of the workspace associated with the event. */
|
|
49639
|
+
workspace_id: string;
|
|
49640
|
+
/** Date and time at which the event was created. */
|
|
49641
|
+
created_at: string;
|
|
49642
|
+
/** Date and time at which the event occurred. */
|
|
49643
|
+
occurred_at: string;
|
|
49644
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
49645
|
+
event_description?: string | undefined;
|
|
49646
|
+
/** ID of the affected access method. */
|
|
49647
|
+
access_method_id: string;
|
|
49648
|
+
/** IDs of the access grants associated with this access method. */
|
|
49649
|
+
access_grant_ids: string[];
|
|
49650
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
49651
|
+
access_grant_keys?: string[] | undefined;
|
|
49652
|
+
event_type: 'access_method.failed_to_issue';
|
|
49277
49653
|
} | {
|
|
49278
49654
|
/** ID of the event. */
|
|
49279
49655
|
event_id: string;
|
|
@@ -52516,7 +52892,23 @@ export type Routes = {
|
|
|
52516
52892
|
warning_code: 'pulled_backup_access_code';
|
|
52517
52893
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
52518
52894
|
original_access_method_id?: string | undefined;
|
|
52895
|
+
} | {
|
|
52896
|
+
/** Date and time at which Seam created the warning. */
|
|
52897
|
+
created_at: string;
|
|
52898
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52899
|
+
message: string;
|
|
52900
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52901
|
+
warning_code: 'delay_in_issuing';
|
|
52519
52902
|
})[];
|
|
52903
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
52904
|
+
errors: {
|
|
52905
|
+
/** Date and time at which Seam created the error. */
|
|
52906
|
+
created_at: string;
|
|
52907
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52908
|
+
message: string;
|
|
52909
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
52910
|
+
error_code: 'failed_to_issue';
|
|
52911
|
+
}[];
|
|
52520
52912
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
52521
52913
|
pending_mutations: ({
|
|
52522
52914
|
/** Date and time at which the mutation was created. */
|
|
@@ -60055,7 +60447,23 @@ export type Routes = {
|
|
|
60055
60447
|
warning_code: 'pulled_backup_access_code';
|
|
60056
60448
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
60057
60449
|
original_access_method_id?: string | undefined;
|
|
60450
|
+
} | {
|
|
60451
|
+
/** Date and time at which Seam created the warning. */
|
|
60452
|
+
created_at: string;
|
|
60453
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
60454
|
+
message: string;
|
|
60455
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60456
|
+
warning_code: 'delay_in_issuing';
|
|
60058
60457
|
})[];
|
|
60458
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
60459
|
+
errors: {
|
|
60460
|
+
/** Date and time at which Seam created the error. */
|
|
60461
|
+
created_at: string;
|
|
60462
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
60463
|
+
message: string;
|
|
60464
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
60465
|
+
error_code: 'failed_to_issue';
|
|
60466
|
+
}[];
|
|
60059
60467
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
60060
60468
|
pending_mutations: ({
|
|
60061
60469
|
/** Date and time at which the mutation was created. */
|
|
@@ -61737,7 +62145,23 @@ export type Routes = {
|
|
|
61737
62145
|
warning_code: 'pulled_backup_access_code';
|
|
61738
62146
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
61739
62147
|
original_access_method_id?: string | undefined;
|
|
62148
|
+
} | {
|
|
62149
|
+
/** Date and time at which Seam created the warning. */
|
|
62150
|
+
created_at: string;
|
|
62151
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
62152
|
+
message: string;
|
|
62153
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62154
|
+
warning_code: 'delay_in_issuing';
|
|
61740
62155
|
})[];
|
|
62156
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
62157
|
+
errors: {
|
|
62158
|
+
/** Date and time at which Seam created the error. */
|
|
62159
|
+
created_at: string;
|
|
62160
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
62161
|
+
message: string;
|
|
62162
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
62163
|
+
error_code: 'failed_to_issue';
|
|
62164
|
+
}[];
|
|
61741
62165
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
61742
62166
|
pending_mutations: ({
|
|
61743
62167
|
/** Date and time at which the mutation was created. */
|
|
@@ -63417,7 +63841,23 @@ export type Routes = {
|
|
|
63417
63841
|
warning_code: 'pulled_backup_access_code';
|
|
63418
63842
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
63419
63843
|
original_access_method_id?: string | undefined;
|
|
63844
|
+
} | {
|
|
63845
|
+
/** Date and time at which Seam created the warning. */
|
|
63846
|
+
created_at: string;
|
|
63847
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
63848
|
+
message: string;
|
|
63849
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63850
|
+
warning_code: 'delay_in_issuing';
|
|
63420
63851
|
})[];
|
|
63852
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
63853
|
+
errors: {
|
|
63854
|
+
/** Date and time at which Seam created the error. */
|
|
63855
|
+
created_at: string;
|
|
63856
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
63857
|
+
message: string;
|
|
63858
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
63859
|
+
error_code: 'failed_to_issue';
|
|
63860
|
+
}[];
|
|
63421
63861
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
63422
63862
|
pending_mutations: ({
|
|
63423
63863
|
/** Date and time at which the mutation was created. */
|
|
@@ -65099,7 +65539,23 @@ export type Routes = {
|
|
|
65099
65539
|
warning_code: 'pulled_backup_access_code';
|
|
65100
65540
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
65101
65541
|
original_access_method_id?: string | undefined;
|
|
65542
|
+
} | {
|
|
65543
|
+
/** Date and time at which Seam created the warning. */
|
|
65544
|
+
created_at: string;
|
|
65545
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
65546
|
+
message: string;
|
|
65547
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65548
|
+
warning_code: 'delay_in_issuing';
|
|
65102
65549
|
})[];
|
|
65550
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
65551
|
+
errors: {
|
|
65552
|
+
/** Date and time at which Seam created the error. */
|
|
65553
|
+
created_at: string;
|
|
65554
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
65555
|
+
message: string;
|
|
65556
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
65557
|
+
error_code: 'failed_to_issue';
|
|
65558
|
+
}[];
|
|
65103
65559
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
65104
65560
|
pending_mutations: ({
|
|
65105
65561
|
/** Date and time at which the mutation was created. */
|
|
@@ -69736,7 +70192,23 @@ export type Routes = {
|
|
|
69736
70192
|
warning_code: 'pulled_backup_access_code';
|
|
69737
70193
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
69738
70194
|
original_access_method_id?: string | undefined;
|
|
70195
|
+
} | {
|
|
70196
|
+
/** Date and time at which Seam created the warning. */
|
|
70197
|
+
created_at: string;
|
|
70198
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
70199
|
+
message: string;
|
|
70200
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
70201
|
+
warning_code: 'delay_in_issuing';
|
|
69739
70202
|
})[];
|
|
70203
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
70204
|
+
errors: {
|
|
70205
|
+
/** Date and time at which Seam created the error. */
|
|
70206
|
+
created_at: string;
|
|
70207
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70208
|
+
message: string;
|
|
70209
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
70210
|
+
error_code: 'failed_to_issue';
|
|
70211
|
+
}[];
|
|
69740
70212
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
69741
70213
|
pending_mutations: ({
|
|
69742
70214
|
/** Date and time at which the mutation was created. */
|
|
@@ -71437,7 +71909,23 @@ export type Routes = {
|
|
|
71437
71909
|
warning_code: 'pulled_backup_access_code';
|
|
71438
71910
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
71439
71911
|
original_access_method_id?: string | undefined;
|
|
71912
|
+
} | {
|
|
71913
|
+
/** Date and time at which Seam created the warning. */
|
|
71914
|
+
created_at: string;
|
|
71915
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
71916
|
+
message: string;
|
|
71917
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71918
|
+
warning_code: 'delay_in_issuing';
|
|
71440
71919
|
})[];
|
|
71920
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
71921
|
+
errors: {
|
|
71922
|
+
/** Date and time at which Seam created the error. */
|
|
71923
|
+
created_at: string;
|
|
71924
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71925
|
+
message: string;
|
|
71926
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
71927
|
+
error_code: 'failed_to_issue';
|
|
71928
|
+
}[];
|
|
71441
71929
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
71442
71930
|
pending_mutations: ({
|
|
71443
71931
|
/** Date and time at which the mutation was created. */
|
|
@@ -73194,7 +73682,23 @@ export type Routes = {
|
|
|
73194
73682
|
warning_code: 'pulled_backup_access_code';
|
|
73195
73683
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
73196
73684
|
original_access_method_id?: string | undefined;
|
|
73685
|
+
} | {
|
|
73686
|
+
/** Date and time at which Seam created the warning. */
|
|
73687
|
+
created_at: string;
|
|
73688
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
73689
|
+
message: string;
|
|
73690
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
73691
|
+
warning_code: 'delay_in_issuing';
|
|
73197
73692
|
})[];
|
|
73693
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
73694
|
+
errors: {
|
|
73695
|
+
/** Date and time at which Seam created the error. */
|
|
73696
|
+
created_at: string;
|
|
73697
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73698
|
+
message: string;
|
|
73699
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
73700
|
+
error_code: 'failed_to_issue';
|
|
73701
|
+
}[];
|
|
73198
73702
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
73199
73703
|
pending_mutations: ({
|
|
73200
73704
|
/** Date and time at which the mutation was created. */
|
|
@@ -76718,7 +77222,23 @@ export type Routes = {
|
|
|
76718
77222
|
warning_code: 'pulled_backup_access_code';
|
|
76719
77223
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
76720
77224
|
original_access_method_id?: string | undefined;
|
|
77225
|
+
} | {
|
|
77226
|
+
/** Date and time at which Seam created the warning. */
|
|
77227
|
+
created_at: string;
|
|
77228
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
77229
|
+
message: string;
|
|
77230
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
77231
|
+
warning_code: 'delay_in_issuing';
|
|
76721
77232
|
})[];
|
|
77233
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
77234
|
+
errors: {
|
|
77235
|
+
/** Date and time at which Seam created the error. */
|
|
77236
|
+
created_at: string;
|
|
77237
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
77238
|
+
message: string;
|
|
77239
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
77240
|
+
error_code: 'failed_to_issue';
|
|
77241
|
+
}[];
|
|
76722
77242
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
76723
77243
|
pending_mutations: ({
|
|
76724
77244
|
/** Date and time at which the mutation was created. */
|
|
@@ -78190,9 +78710,9 @@ export type Routes = {
|
|
|
78190
78710
|
/** Lower and upper timestamps to define an exclusive interval containing the events that you want to list. You must include `since` or `between`. */
|
|
78191
78711
|
between?: (string | Date)[] | undefined;
|
|
78192
78712
|
/** Type of the events that you want to list. */
|
|
78193
|
-
event_type?: ('access_code.created' | 'access_code.changed' | 'access_code.name_changed' | 'access_code.code_changed' | 'access_code.time_frame_changed' | 'access_code.mutations_requested' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'access_grant.created' | 'access_grant.deleted' | 'access_grant.access_granted_to_all_doors' | 'access_grant.access_granted_to_door' | 'access_grant.access_to_door_lost' | 'access_grant.access_times_changed' | 'access_grant.could_not_create_requested_access_methods' | 'access_method.issued' | 'access_method.revoked' | 'access_method.card_encoding_required' | 'access_method.deleted' | 'access_method.reissued' | 'access_method.created' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_credential.invalidated' | 'acs_user.created' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'connected_account.reauthorization_requested' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'action_attempt.simulate_keypad_code_entry.succeeded' | 'action_attempt.simulate_keypad_code_entry.failed' | 'action_attempt.simulate_manual_lock_via_keypad.succeeded' | 'action_attempt.simulate_manual_lock_via_keypad.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'camera.activated' | 'device.doorbell_rang' | 'enrollment_automation.deleted' | 'phone.deactivated' | 'space.device_membership_changed' | 'space.created' | 'space.deleted') | undefined;
|
|
78713
|
+
event_type?: ('access_code.created' | 'access_code.changed' | 'access_code.name_changed' | 'access_code.code_changed' | 'access_code.time_frame_changed' | 'access_code.mutations_requested' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'access_grant.created' | 'access_grant.deleted' | 'access_grant.access_granted_to_all_doors' | 'access_grant.access_granted_to_door' | 'access_grant.access_to_door_lost' | 'access_grant.access_times_changed' | 'access_grant.could_not_create_requested_access_methods' | 'access_method.issued' | 'access_method.revoked' | 'access_method.card_encoding_required' | 'access_method.deleted' | 'access_method.reissued' | 'access_method.created' | 'access_method.delay_in_issuing' | 'access_method.failed_to_issue' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_credential.invalidated' | 'acs_user.created' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'connected_account.reauthorization_requested' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'action_attempt.simulate_keypad_code_entry.succeeded' | 'action_attempt.simulate_keypad_code_entry.failed' | 'action_attempt.simulate_manual_lock_via_keypad.succeeded' | 'action_attempt.simulate_manual_lock_via_keypad.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'camera.activated' | 'device.doorbell_rang' | 'enrollment_automation.deleted' | 'phone.deactivated' | 'space.device_membership_changed' | 'space.created' | 'space.deleted') | undefined;
|
|
78194
78714
|
/** Types of the events that you want to list. */
|
|
78195
|
-
event_types?: ('access_code.created' | 'access_code.changed' | 'access_code.name_changed' | 'access_code.code_changed' | 'access_code.time_frame_changed' | 'access_code.mutations_requested' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'access_grant.created' | 'access_grant.deleted' | 'access_grant.access_granted_to_all_doors' | 'access_grant.access_granted_to_door' | 'access_grant.access_to_door_lost' | 'access_grant.access_times_changed' | 'access_grant.could_not_create_requested_access_methods' | 'access_method.issued' | 'access_method.revoked' | 'access_method.card_encoding_required' | 'access_method.deleted' | 'access_method.reissued' | 'access_method.created' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_credential.invalidated' | 'acs_user.created' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'connected_account.reauthorization_requested' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'action_attempt.simulate_keypad_code_entry.succeeded' | 'action_attempt.simulate_keypad_code_entry.failed' | 'action_attempt.simulate_manual_lock_via_keypad.succeeded' | 'action_attempt.simulate_manual_lock_via_keypad.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'camera.activated' | 'device.doorbell_rang' | 'enrollment_automation.deleted' | 'phone.deactivated' | 'space.device_membership_changed' | 'space.created' | 'space.deleted')[] | undefined;
|
|
78715
|
+
event_types?: ('access_code.created' | 'access_code.changed' | 'access_code.name_changed' | 'access_code.code_changed' | 'access_code.time_frame_changed' | 'access_code.mutations_requested' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'access_grant.created' | 'access_grant.deleted' | 'access_grant.access_granted_to_all_doors' | 'access_grant.access_granted_to_door' | 'access_grant.access_to_door_lost' | 'access_grant.access_times_changed' | 'access_grant.could_not_create_requested_access_methods' | 'access_method.issued' | 'access_method.revoked' | 'access_method.card_encoding_required' | 'access_method.deleted' | 'access_method.reissued' | 'access_method.created' | 'access_method.delay_in_issuing' | 'access_method.failed_to_issue' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_credential.invalidated' | 'acs_user.created' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'connected_account.reauthorization_requested' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'action_attempt.simulate_keypad_code_entry.succeeded' | 'action_attempt.simulate_keypad_code_entry.failed' | 'action_attempt.simulate_manual_lock_via_keypad.succeeded' | 'action_attempt.simulate_manual_lock_via_keypad.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'camera.activated' | 'device.doorbell_rang' | 'enrollment_automation.deleted' | 'phone.deactivated' | 'space.device_membership_changed' | 'space.created' | 'space.deleted')[] | undefined;
|
|
78196
78716
|
/** Numerical limit on the number of events to return. */
|
|
78197
78717
|
limit?: number;
|
|
78198
78718
|
};
|
|
@@ -79314,6 +79834,42 @@ export type Routes = {
|
|
|
79314
79834
|
/** Keys of the access grants associated with this access method (if present). */
|
|
79315
79835
|
access_grant_keys?: string[] | undefined;
|
|
79316
79836
|
event_type: 'access_method.created';
|
|
79837
|
+
} | {
|
|
79838
|
+
/** ID of the event. */
|
|
79839
|
+
event_id: string;
|
|
79840
|
+
/** ID of the workspace associated with the event. */
|
|
79841
|
+
workspace_id: string;
|
|
79842
|
+
/** Date and time at which the event was created. */
|
|
79843
|
+
created_at: string;
|
|
79844
|
+
/** Date and time at which the event occurred. */
|
|
79845
|
+
occurred_at: string;
|
|
79846
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
79847
|
+
event_description?: string | undefined;
|
|
79848
|
+
/** ID of the affected access method. */
|
|
79849
|
+
access_method_id: string;
|
|
79850
|
+
/** IDs of the access grants associated with this access method. */
|
|
79851
|
+
access_grant_ids: string[];
|
|
79852
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
79853
|
+
access_grant_keys?: string[] | undefined;
|
|
79854
|
+
event_type: 'access_method.delay_in_issuing';
|
|
79855
|
+
} | {
|
|
79856
|
+
/** ID of the event. */
|
|
79857
|
+
event_id: string;
|
|
79858
|
+
/** ID of the workspace associated with the event. */
|
|
79859
|
+
workspace_id: string;
|
|
79860
|
+
/** Date and time at which the event was created. */
|
|
79861
|
+
created_at: string;
|
|
79862
|
+
/** Date and time at which the event occurred. */
|
|
79863
|
+
occurred_at: string;
|
|
79864
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
79865
|
+
event_description?: string | undefined;
|
|
79866
|
+
/** ID of the affected access method. */
|
|
79867
|
+
access_method_id: string;
|
|
79868
|
+
/** IDs of the access grants associated with this access method. */
|
|
79869
|
+
access_grant_ids: string[];
|
|
79870
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
79871
|
+
access_grant_keys?: string[] | undefined;
|
|
79872
|
+
event_type: 'access_method.failed_to_issue';
|
|
79317
79873
|
} | {
|
|
79318
79874
|
/** ID of the event. */
|
|
79319
79875
|
event_id: string;
|
|
@@ -85570,7 +86126,23 @@ export type Routes = {
|
|
|
85570
86126
|
warning_code: 'pulled_backup_access_code';
|
|
85571
86127
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
85572
86128
|
original_access_method_id?: string | undefined;
|
|
86129
|
+
} | {
|
|
86130
|
+
/** Date and time at which Seam created the warning. */
|
|
86131
|
+
created_at: string;
|
|
86132
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
86133
|
+
message: string;
|
|
86134
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
86135
|
+
warning_code: 'delay_in_issuing';
|
|
85573
86136
|
})[];
|
|
86137
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
86138
|
+
errors: {
|
|
86139
|
+
/** Date and time at which Seam created the error. */
|
|
86140
|
+
created_at: string;
|
|
86141
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
86142
|
+
message: string;
|
|
86143
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
86144
|
+
error_code: 'failed_to_issue';
|
|
86145
|
+
}[];
|
|
85574
86146
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
85575
86147
|
pending_mutations: ({
|
|
85576
86148
|
/** Date and time at which the mutation was created. */
|
|
@@ -86895,7 +87467,23 @@ export type Routes = {
|
|
|
86895
87467
|
warning_code: 'pulled_backup_access_code';
|
|
86896
87468
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
86897
87469
|
original_access_method_id?: string | undefined;
|
|
87470
|
+
} | {
|
|
87471
|
+
/** Date and time at which Seam created the warning. */
|
|
87472
|
+
created_at: string;
|
|
87473
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
87474
|
+
message: string;
|
|
87475
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
87476
|
+
warning_code: 'delay_in_issuing';
|
|
86898
87477
|
})[];
|
|
87478
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
87479
|
+
errors: {
|
|
87480
|
+
/** Date and time at which Seam created the error. */
|
|
87481
|
+
created_at: string;
|
|
87482
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
87483
|
+
message: string;
|
|
87484
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
87485
|
+
error_code: 'failed_to_issue';
|
|
87486
|
+
}[];
|
|
86899
87487
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
86900
87488
|
pending_mutations: ({
|
|
86901
87489
|
/** Date and time at which the mutation was created. */
|
|
@@ -88581,7 +89169,23 @@ export type Routes = {
|
|
|
88581
89169
|
warning_code: 'pulled_backup_access_code';
|
|
88582
89170
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
88583
89171
|
original_access_method_id?: string | undefined;
|
|
89172
|
+
} | {
|
|
89173
|
+
/** Date and time at which Seam created the warning. */
|
|
89174
|
+
created_at: string;
|
|
89175
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
89176
|
+
message: string;
|
|
89177
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
89178
|
+
warning_code: 'delay_in_issuing';
|
|
88584
89179
|
})[];
|
|
89180
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
89181
|
+
errors: {
|
|
89182
|
+
/** Date and time at which Seam created the error. */
|
|
89183
|
+
created_at: string;
|
|
89184
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
89185
|
+
message: string;
|
|
89186
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
89187
|
+
error_code: 'failed_to_issue';
|
|
89188
|
+
}[];
|
|
88585
89189
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
88586
89190
|
pending_mutations: ({
|
|
88587
89191
|
/** Date and time at which the mutation was created. */
|
|
@@ -90373,7 +90977,23 @@ export type Routes = {
|
|
|
90373
90977
|
warning_code: 'pulled_backup_access_code';
|
|
90374
90978
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
90375
90979
|
original_access_method_id?: string | undefined;
|
|
90980
|
+
} | {
|
|
90981
|
+
/** Date and time at which Seam created the warning. */
|
|
90982
|
+
created_at: string;
|
|
90983
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
90984
|
+
message: string;
|
|
90985
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
90986
|
+
warning_code: 'delay_in_issuing';
|
|
90376
90987
|
})[];
|
|
90988
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
90989
|
+
errors: {
|
|
90990
|
+
/** Date and time at which Seam created the error. */
|
|
90991
|
+
created_at: string;
|
|
90992
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
90993
|
+
message: string;
|
|
90994
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
90995
|
+
error_code: 'failed_to_issue';
|
|
90996
|
+
}[];
|
|
90377
90997
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
90378
90998
|
pending_mutations: ({
|
|
90379
90999
|
/** Date and time at which the mutation was created. */
|
|
@@ -93538,7 +94158,23 @@ export type Routes = {
|
|
|
93538
94158
|
warning_code: 'pulled_backup_access_code';
|
|
93539
94159
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
93540
94160
|
original_access_method_id?: string | undefined;
|
|
94161
|
+
} | {
|
|
94162
|
+
/** Date and time at which Seam created the warning. */
|
|
94163
|
+
created_at: string;
|
|
94164
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
94165
|
+
message: string;
|
|
94166
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
94167
|
+
warning_code: 'delay_in_issuing';
|
|
93541
94168
|
})[];
|
|
94169
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
94170
|
+
errors: {
|
|
94171
|
+
/** Date and time at which Seam created the error. */
|
|
94172
|
+
created_at: string;
|
|
94173
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
94174
|
+
message: string;
|
|
94175
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
94176
|
+
error_code: 'failed_to_issue';
|
|
94177
|
+
}[];
|
|
93542
94178
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
93543
94179
|
pending_mutations: ({
|
|
93544
94180
|
/** Date and time at which the mutation was created. */
|
|
@@ -95228,7 +95864,23 @@ export type Routes = {
|
|
|
95228
95864
|
warning_code: 'pulled_backup_access_code';
|
|
95229
95865
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
95230
95866
|
original_access_method_id?: string | undefined;
|
|
95867
|
+
} | {
|
|
95868
|
+
/** Date and time at which Seam created the warning. */
|
|
95869
|
+
created_at: string;
|
|
95870
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
95871
|
+
message: string;
|
|
95872
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
95873
|
+
warning_code: 'delay_in_issuing';
|
|
95231
95874
|
})[];
|
|
95875
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
95876
|
+
errors: {
|
|
95877
|
+
/** Date and time at which Seam created the error. */
|
|
95878
|
+
created_at: string;
|
|
95879
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
95880
|
+
message: string;
|
|
95881
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
95882
|
+
error_code: 'failed_to_issue';
|
|
95883
|
+
}[];
|
|
95232
95884
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
95233
95885
|
pending_mutations: ({
|
|
95234
95886
|
/** Date and time at which the mutation was created. */
|
|
@@ -99855,7 +100507,23 @@ export type Routes = {
|
|
|
99855
100507
|
warning_code: 'pulled_backup_access_code';
|
|
99856
100508
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
99857
100509
|
original_access_method_id?: string | undefined;
|
|
100510
|
+
} | {
|
|
100511
|
+
/** Date and time at which Seam created the warning. */
|
|
100512
|
+
created_at: string;
|
|
100513
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
100514
|
+
message: string;
|
|
100515
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
100516
|
+
warning_code: 'delay_in_issuing';
|
|
99858
100517
|
})[];
|
|
100518
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
100519
|
+
errors: {
|
|
100520
|
+
/** Date and time at which Seam created the error. */
|
|
100521
|
+
created_at: string;
|
|
100522
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
100523
|
+
message: string;
|
|
100524
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
100525
|
+
error_code: 'failed_to_issue';
|
|
100526
|
+
}[];
|
|
99859
100527
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
99860
100528
|
pending_mutations: ({
|
|
99861
100529
|
/** Date and time at which the mutation was created. */
|
|
@@ -101740,7 +102408,23 @@ export type Routes = {
|
|
|
101740
102408
|
warning_code: 'pulled_backup_access_code';
|
|
101741
102409
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
101742
102410
|
original_access_method_id?: string | undefined;
|
|
102411
|
+
} | {
|
|
102412
|
+
/** Date and time at which Seam created the warning. */
|
|
102413
|
+
created_at: string;
|
|
102414
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
102415
|
+
message: string;
|
|
102416
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
102417
|
+
warning_code: 'delay_in_issuing';
|
|
101743
102418
|
})[];
|
|
102419
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
102420
|
+
errors: {
|
|
102421
|
+
/** Date and time at which Seam created the error. */
|
|
102422
|
+
created_at: string;
|
|
102423
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
102424
|
+
message: string;
|
|
102425
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
102426
|
+
error_code: 'failed_to_issue';
|
|
102427
|
+
}[];
|
|
101744
102428
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
101745
102429
|
pending_mutations: ({
|
|
101746
102430
|
/** Date and time at which the mutation was created. */
|
|
@@ -103453,7 +104137,23 @@ export type Routes = {
|
|
|
103453
104137
|
warning_code: 'pulled_backup_access_code';
|
|
103454
104138
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
103455
104139
|
original_access_method_id?: string | undefined;
|
|
104140
|
+
} | {
|
|
104141
|
+
/** Date and time at which Seam created the warning. */
|
|
104142
|
+
created_at: string;
|
|
104143
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
104144
|
+
message: string;
|
|
104145
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
104146
|
+
warning_code: 'delay_in_issuing';
|
|
103456
104147
|
})[];
|
|
104148
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
104149
|
+
errors: {
|
|
104150
|
+
/** Date and time at which Seam created the error. */
|
|
104151
|
+
created_at: string;
|
|
104152
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
104153
|
+
message: string;
|
|
104154
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
104155
|
+
error_code: 'failed_to_issue';
|
|
104156
|
+
}[];
|
|
103457
104157
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
103458
104158
|
pending_mutations: ({
|
|
103459
104159
|
/** Date and time at which the mutation was created. */
|
|
@@ -105278,7 +105978,23 @@ export type Routes = {
|
|
|
105278
105978
|
warning_code: 'pulled_backup_access_code';
|
|
105279
105979
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
105280
105980
|
original_access_method_id?: string | undefined;
|
|
105981
|
+
} | {
|
|
105982
|
+
/** Date and time at which Seam created the warning. */
|
|
105983
|
+
created_at: string;
|
|
105984
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
105985
|
+
message: string;
|
|
105986
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105987
|
+
warning_code: 'delay_in_issuing';
|
|
105281
105988
|
})[];
|
|
105989
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
105990
|
+
errors: {
|
|
105991
|
+
/** Date and time at which Seam created the error. */
|
|
105992
|
+
created_at: string;
|
|
105993
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
105994
|
+
message: string;
|
|
105995
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
105996
|
+
error_code: 'failed_to_issue';
|
|
105997
|
+
}[];
|
|
105282
105998
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
105283
105999
|
pending_mutations: ({
|
|
105284
106000
|
/** Date and time at which the mutation was created. */
|
|
@@ -113924,7 +114640,23 @@ export type Routes = {
|
|
|
113924
114640
|
warning_code: 'pulled_backup_access_code';
|
|
113925
114641
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
113926
114642
|
original_access_method_id?: string | undefined;
|
|
114643
|
+
} | {
|
|
114644
|
+
/** Date and time at which Seam created the warning. */
|
|
114645
|
+
created_at: string;
|
|
114646
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
114647
|
+
message: string;
|
|
114648
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
114649
|
+
warning_code: 'delay_in_issuing';
|
|
113927
114650
|
})[];
|
|
114651
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
114652
|
+
errors: {
|
|
114653
|
+
/** Date and time at which Seam created the error. */
|
|
114654
|
+
created_at: string;
|
|
114655
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
114656
|
+
message: string;
|
|
114657
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
114658
|
+
error_code: 'failed_to_issue';
|
|
114659
|
+
}[];
|
|
113928
114660
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
113929
114661
|
pending_mutations: ({
|
|
113930
114662
|
/** Date and time at which the mutation was created. */
|
|
@@ -115608,7 +116340,23 @@ export type Routes = {
|
|
|
115608
116340
|
warning_code: 'pulled_backup_access_code';
|
|
115609
116341
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
115610
116342
|
original_access_method_id?: string | undefined;
|
|
116343
|
+
} | {
|
|
116344
|
+
/** Date and time at which Seam created the warning. */
|
|
116345
|
+
created_at: string;
|
|
116346
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
116347
|
+
message: string;
|
|
116348
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
116349
|
+
warning_code: 'delay_in_issuing';
|
|
115611
116350
|
})[];
|
|
116351
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
116352
|
+
errors: {
|
|
116353
|
+
/** Date and time at which Seam created the error. */
|
|
116354
|
+
created_at: string;
|
|
116355
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
116356
|
+
message: string;
|
|
116357
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
116358
|
+
error_code: 'failed_to_issue';
|
|
116359
|
+
}[];
|
|
115612
116360
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
115613
116361
|
pending_mutations: ({
|
|
115614
116362
|
/** Date and time at which the mutation was created. */
|
|
@@ -117144,6 +117892,42 @@ export type Routes = {
|
|
|
117144
117892
|
/** Keys of the access grants associated with this access method (if present). */
|
|
117145
117893
|
access_grant_keys?: string[] | undefined;
|
|
117146
117894
|
event_type: 'access_method.created';
|
|
117895
|
+
} | {
|
|
117896
|
+
/** ID of the event. */
|
|
117897
|
+
event_id: string;
|
|
117898
|
+
/** ID of the workspace associated with the event. */
|
|
117899
|
+
workspace_id: string;
|
|
117900
|
+
/** Date and time at which the event was created. */
|
|
117901
|
+
created_at: string;
|
|
117902
|
+
/** Date and time at which the event occurred. */
|
|
117903
|
+
occurred_at: string;
|
|
117904
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
117905
|
+
event_description?: string | undefined;
|
|
117906
|
+
/** ID of the affected access method. */
|
|
117907
|
+
access_method_id: string;
|
|
117908
|
+
/** IDs of the access grants associated with this access method. */
|
|
117909
|
+
access_grant_ids: string[];
|
|
117910
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
117911
|
+
access_grant_keys?: string[] | undefined;
|
|
117912
|
+
event_type: 'access_method.delay_in_issuing';
|
|
117913
|
+
} | {
|
|
117914
|
+
/** ID of the event. */
|
|
117915
|
+
event_id: string;
|
|
117916
|
+
/** ID of the workspace associated with the event. */
|
|
117917
|
+
workspace_id: string;
|
|
117918
|
+
/** Date and time at which the event was created. */
|
|
117919
|
+
created_at: string;
|
|
117920
|
+
/** Date and time at which the event occurred. */
|
|
117921
|
+
occurred_at: string;
|
|
117922
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
117923
|
+
event_description?: string | undefined;
|
|
117924
|
+
/** ID of the affected access method. */
|
|
117925
|
+
access_method_id: string;
|
|
117926
|
+
/** IDs of the access grants associated with this access method. */
|
|
117927
|
+
access_grant_ids: string[];
|
|
117928
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
117929
|
+
access_grant_keys?: string[] | undefined;
|
|
117930
|
+
event_type: 'access_method.failed_to_issue';
|
|
117147
117931
|
} | {
|
|
117148
117932
|
/** ID of the event. */
|
|
117149
117933
|
event_id: string;
|
|
@@ -121543,7 +122327,23 @@ export type Routes = {
|
|
|
121543
122327
|
warning_code: 'pulled_backup_access_code';
|
|
121544
122328
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
121545
122329
|
original_access_method_id?: string | undefined;
|
|
122330
|
+
} | {
|
|
122331
|
+
/** Date and time at which Seam created the warning. */
|
|
122332
|
+
created_at: string;
|
|
122333
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
122334
|
+
message: string;
|
|
122335
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
122336
|
+
warning_code: 'delay_in_issuing';
|
|
121546
122337
|
})[];
|
|
122338
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
122339
|
+
errors: {
|
|
122340
|
+
/** Date and time at which Seam created the error. */
|
|
122341
|
+
created_at: string;
|
|
122342
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
122343
|
+
message: string;
|
|
122344
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
122345
|
+
error_code: 'failed_to_issue';
|
|
122346
|
+
}[];
|
|
121547
122347
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
121548
122348
|
pending_mutations: ({
|
|
121549
122349
|
/** Date and time at which the mutation was created. */
|