@seamapi/types 1.961.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 +564 -22
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +979 -6
- package/dist/index.cjs +564 -22
- 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/devices/device-provider.d.ts +2 -1
- package/lib/seam/connect/models/devices/device-provider.js +2 -1
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- 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 +492 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +806 -6
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-method.ts +53 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -1
- package/src/lib/seam/connect/models/events/access-methods.ts +20 -0
- package/src/lib/seam/connect/openapi.ts +560 -0
- package/src/lib/seam/connect/route-types.ts +859 -0
|
@@ -1365,7 +1365,24 @@ export type Routes = {
|
|
|
1365
1365
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
1366
1366
|
original_access_method_id?: string | undefined
|
|
1367
1367
|
}
|
|
1368
|
+
| {
|
|
1369
|
+
/** Date and time at which Seam created the warning. */
|
|
1370
|
+
created_at: string
|
|
1371
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1372
|
+
message: string
|
|
1373
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1374
|
+
warning_code: 'delay_in_issuing'
|
|
1375
|
+
}
|
|
1368
1376
|
)[]
|
|
1377
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
1378
|
+
errors: {
|
|
1379
|
+
/** Date and time at which Seam created the error. */
|
|
1380
|
+
created_at: string
|
|
1381
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1382
|
+
message: string
|
|
1383
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1384
|
+
error_code: 'failed_to_issue'
|
|
1385
|
+
}[]
|
|
1369
1386
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
1370
1387
|
pending_mutations: (
|
|
1371
1388
|
| {
|
|
@@ -4410,7 +4427,24 @@ export type Routes = {
|
|
|
4410
4427
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
4411
4428
|
original_access_method_id?: string | undefined
|
|
4412
4429
|
}
|
|
4430
|
+
| {
|
|
4431
|
+
/** Date and time at which Seam created the warning. */
|
|
4432
|
+
created_at: string
|
|
4433
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4434
|
+
message: string
|
|
4435
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4436
|
+
warning_code: 'delay_in_issuing'
|
|
4437
|
+
}
|
|
4413
4438
|
)[]
|
|
4439
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
4440
|
+
errors: {
|
|
4441
|
+
/** Date and time at which Seam created the error. */
|
|
4442
|
+
created_at: string
|
|
4443
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4444
|
+
message: string
|
|
4445
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4446
|
+
error_code: 'failed_to_issue'
|
|
4447
|
+
}[]
|
|
4414
4448
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
4415
4449
|
pending_mutations: (
|
|
4416
4450
|
| {
|
|
@@ -9075,7 +9109,24 @@ export type Routes = {
|
|
|
9075
9109
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
9076
9110
|
original_access_method_id?: string | undefined
|
|
9077
9111
|
}
|
|
9112
|
+
| {
|
|
9113
|
+
/** Date and time at which Seam created the warning. */
|
|
9114
|
+
created_at: string
|
|
9115
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9116
|
+
message: string
|
|
9117
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9118
|
+
warning_code: 'delay_in_issuing'
|
|
9119
|
+
}
|
|
9078
9120
|
)[]
|
|
9121
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
9122
|
+
errors: {
|
|
9123
|
+
/** Date and time at which Seam created the error. */
|
|
9124
|
+
created_at: string
|
|
9125
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9126
|
+
message: string
|
|
9127
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9128
|
+
error_code: 'failed_to_issue'
|
|
9129
|
+
}[]
|
|
9079
9130
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
9080
9131
|
pending_mutations: (
|
|
9081
9132
|
| {
|
|
@@ -11988,7 +12039,24 @@ export type Routes = {
|
|
|
11988
12039
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
11989
12040
|
original_access_method_id?: string | undefined
|
|
11990
12041
|
}
|
|
12042
|
+
| {
|
|
12043
|
+
/** Date and time at which Seam created the warning. */
|
|
12044
|
+
created_at: string
|
|
12045
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
12046
|
+
message: string
|
|
12047
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
12048
|
+
warning_code: 'delay_in_issuing'
|
|
12049
|
+
}
|
|
11991
12050
|
)[]
|
|
12051
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
12052
|
+
errors: {
|
|
12053
|
+
/** Date and time at which Seam created the error. */
|
|
12054
|
+
created_at: string
|
|
12055
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
12056
|
+
message: string
|
|
12057
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12058
|
+
error_code: 'failed_to_issue'
|
|
12059
|
+
}[]
|
|
11992
12060
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
11993
12061
|
pending_mutations: (
|
|
11994
12062
|
| {
|
|
@@ -16173,7 +16241,24 @@ export type Routes = {
|
|
|
16173
16241
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
16174
16242
|
original_access_method_id?: string | undefined
|
|
16175
16243
|
}
|
|
16244
|
+
| {
|
|
16245
|
+
/** Date and time at which Seam created the warning. */
|
|
16246
|
+
created_at: string
|
|
16247
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
16248
|
+
message: string
|
|
16249
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
16250
|
+
warning_code: 'delay_in_issuing'
|
|
16251
|
+
}
|
|
16176
16252
|
)[]
|
|
16253
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
16254
|
+
errors: {
|
|
16255
|
+
/** Date and time at which Seam created the error. */
|
|
16256
|
+
created_at: string
|
|
16257
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
16258
|
+
message: string
|
|
16259
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16260
|
+
error_code: 'failed_to_issue'
|
|
16261
|
+
}[]
|
|
16177
16262
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
16178
16263
|
pending_mutations: (
|
|
16179
16264
|
| {
|
|
@@ -18495,7 +18580,24 @@ export type Routes = {
|
|
|
18495
18580
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
18496
18581
|
original_access_method_id?: string | undefined
|
|
18497
18582
|
}
|
|
18583
|
+
| {
|
|
18584
|
+
/** Date and time at which Seam created the warning. */
|
|
18585
|
+
created_at: string
|
|
18586
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18587
|
+
message: string
|
|
18588
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18589
|
+
warning_code: 'delay_in_issuing'
|
|
18590
|
+
}
|
|
18498
18591
|
)[]
|
|
18592
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
18593
|
+
errors: {
|
|
18594
|
+
/** Date and time at which Seam created the error. */
|
|
18595
|
+
created_at: string
|
|
18596
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
18597
|
+
message: string
|
|
18598
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
18599
|
+
error_code: 'failed_to_issue'
|
|
18600
|
+
}[]
|
|
18499
18601
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
18500
18602
|
pending_mutations: (
|
|
18501
18603
|
| {
|
|
@@ -20526,7 +20628,24 @@ export type Routes = {
|
|
|
20526
20628
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
20527
20629
|
original_access_method_id?: string | undefined
|
|
20528
20630
|
}
|
|
20631
|
+
| {
|
|
20632
|
+
/** Date and time at which Seam created the warning. */
|
|
20633
|
+
created_at: string
|
|
20634
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20635
|
+
message: string
|
|
20636
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20637
|
+
warning_code: 'delay_in_issuing'
|
|
20638
|
+
}
|
|
20529
20639
|
)[]
|
|
20640
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
20641
|
+
errors: {
|
|
20642
|
+
/** Date and time at which Seam created the error. */
|
|
20643
|
+
created_at: string
|
|
20644
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20645
|
+
message: string
|
|
20646
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20647
|
+
error_code: 'failed_to_issue'
|
|
20648
|
+
}[]
|
|
20530
20649
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
20531
20650
|
pending_mutations: (
|
|
20532
20651
|
| {
|
|
@@ -21274,7 +21393,24 @@ export type Routes = {
|
|
|
21274
21393
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
21275
21394
|
original_access_method_id?: string | undefined
|
|
21276
21395
|
}
|
|
21396
|
+
| {
|
|
21397
|
+
/** Date and time at which Seam created the warning. */
|
|
21398
|
+
created_at: string
|
|
21399
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
21400
|
+
message: string
|
|
21401
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21402
|
+
warning_code: 'delay_in_issuing'
|
|
21403
|
+
}
|
|
21277
21404
|
)[]
|
|
21405
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
21406
|
+
errors: {
|
|
21407
|
+
/** Date and time at which Seam created the error. */
|
|
21408
|
+
created_at: string
|
|
21409
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
21410
|
+
message: string
|
|
21411
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
21412
|
+
error_code: 'failed_to_issue'
|
|
21413
|
+
}[]
|
|
21278
21414
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
21279
21415
|
pending_mutations: (
|
|
21280
21416
|
| {
|
|
@@ -23849,7 +23985,24 @@ export type Routes = {
|
|
|
23849
23985
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
23850
23986
|
original_access_method_id?: string | undefined
|
|
23851
23987
|
}
|
|
23988
|
+
| {
|
|
23989
|
+
/** Date and time at which Seam created the warning. */
|
|
23990
|
+
created_at: string
|
|
23991
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
23992
|
+
message: string
|
|
23993
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23994
|
+
warning_code: 'delay_in_issuing'
|
|
23995
|
+
}
|
|
23852
23996
|
)[]
|
|
23997
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
23998
|
+
errors: {
|
|
23999
|
+
/** Date and time at which Seam created the error. */
|
|
24000
|
+
created_at: string
|
|
24001
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
24002
|
+
message: string
|
|
24003
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24004
|
+
error_code: 'failed_to_issue'
|
|
24005
|
+
}[]
|
|
23853
24006
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
23854
24007
|
pending_mutations: (
|
|
23855
24008
|
| {
|
|
@@ -24229,7 +24382,24 @@ export type Routes = {
|
|
|
24229
24382
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
24230
24383
|
original_access_method_id?: string | undefined
|
|
24231
24384
|
}
|
|
24385
|
+
| {
|
|
24386
|
+
/** Date and time at which Seam created the warning. */
|
|
24387
|
+
created_at: string
|
|
24388
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
24389
|
+
message: string
|
|
24390
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
24391
|
+
warning_code: 'delay_in_issuing'
|
|
24392
|
+
}
|
|
24232
24393
|
)[]
|
|
24394
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
24395
|
+
errors: {
|
|
24396
|
+
/** Date and time at which Seam created the error. */
|
|
24397
|
+
created_at: string
|
|
24398
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
24399
|
+
message: string
|
|
24400
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24401
|
+
error_code: 'failed_to_issue'
|
|
24402
|
+
}[]
|
|
24233
24403
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
24234
24404
|
pending_mutations: (
|
|
24235
24405
|
| {
|
|
@@ -25627,7 +25797,24 @@ export type Routes = {
|
|
|
25627
25797
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
25628
25798
|
original_access_method_id?: string | undefined
|
|
25629
25799
|
}
|
|
25800
|
+
| {
|
|
25801
|
+
/** Date and time at which Seam created the warning. */
|
|
25802
|
+
created_at: string
|
|
25803
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
25804
|
+
message: string
|
|
25805
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25806
|
+
warning_code: 'delay_in_issuing'
|
|
25807
|
+
}
|
|
25630
25808
|
)[]
|
|
25809
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
25810
|
+
errors: {
|
|
25811
|
+
/** Date and time at which Seam created the error. */
|
|
25812
|
+
created_at: string
|
|
25813
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
25814
|
+
message: string
|
|
25815
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25816
|
+
error_code: 'failed_to_issue'
|
|
25817
|
+
}[]
|
|
25631
25818
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
25632
25819
|
pending_mutations: (
|
|
25633
25820
|
| {
|
|
@@ -26371,7 +26558,24 @@ export type Routes = {
|
|
|
26371
26558
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
26372
26559
|
original_access_method_id?: string | undefined
|
|
26373
26560
|
}
|
|
26561
|
+
| {
|
|
26562
|
+
/** Date and time at which Seam created the warning. */
|
|
26563
|
+
created_at: string
|
|
26564
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26565
|
+
message: string
|
|
26566
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26567
|
+
warning_code: 'delay_in_issuing'
|
|
26568
|
+
}
|
|
26374
26569
|
)[]
|
|
26570
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
26571
|
+
errors: {
|
|
26572
|
+
/** Date and time at which Seam created the error. */
|
|
26573
|
+
created_at: string
|
|
26574
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
26575
|
+
message: string
|
|
26576
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
26577
|
+
error_code: 'failed_to_issue'
|
|
26578
|
+
}[]
|
|
26375
26579
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
26376
26580
|
pending_mutations: (
|
|
26377
26581
|
| {
|
|
@@ -26507,7 +26711,24 @@ export type Routes = {
|
|
|
26507
26711
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
26508
26712
|
original_access_method_id?: string | undefined
|
|
26509
26713
|
}
|
|
26714
|
+
| {
|
|
26715
|
+
/** Date and time at which Seam created the warning. */
|
|
26716
|
+
created_at: string
|
|
26717
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26718
|
+
message: string
|
|
26719
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26720
|
+
warning_code: 'delay_in_issuing'
|
|
26721
|
+
}
|
|
26510
26722
|
)[]
|
|
26723
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
26724
|
+
errors: {
|
|
26725
|
+
/** Date and time at which Seam created the error. */
|
|
26726
|
+
created_at: string
|
|
26727
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
26728
|
+
message: string
|
|
26729
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
26730
|
+
error_code: 'failed_to_issue'
|
|
26731
|
+
}[]
|
|
26511
26732
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
26512
26733
|
pending_mutations: (
|
|
26513
26734
|
| {
|
|
@@ -31491,7 +31712,24 @@ export type Routes = {
|
|
|
31491
31712
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
31492
31713
|
original_access_method_id?: string | undefined
|
|
31493
31714
|
}
|
|
31715
|
+
| {
|
|
31716
|
+
/** Date and time at which Seam created the warning. */
|
|
31717
|
+
created_at: string
|
|
31718
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
31719
|
+
message: string
|
|
31720
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
31721
|
+
warning_code: 'delay_in_issuing'
|
|
31722
|
+
}
|
|
31494
31723
|
)[]
|
|
31724
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
31725
|
+
errors: {
|
|
31726
|
+
/** Date and time at which Seam created the error. */
|
|
31727
|
+
created_at: string
|
|
31728
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
31729
|
+
message: string
|
|
31730
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31731
|
+
error_code: 'failed_to_issue'
|
|
31732
|
+
}[]
|
|
31495
31733
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
31496
31734
|
pending_mutations: (
|
|
31497
31735
|
| {
|
|
@@ -33617,7 +33855,24 @@ export type Routes = {
|
|
|
33617
33855
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
33618
33856
|
original_access_method_id?: string | undefined
|
|
33619
33857
|
}
|
|
33858
|
+
| {
|
|
33859
|
+
/** Date and time at which Seam created the warning. */
|
|
33860
|
+
created_at: string
|
|
33861
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
33862
|
+
message: string
|
|
33863
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
33864
|
+
warning_code: 'delay_in_issuing'
|
|
33865
|
+
}
|
|
33620
33866
|
)[]
|
|
33867
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
33868
|
+
errors: {
|
|
33869
|
+
/** Date and time at which Seam created the error. */
|
|
33870
|
+
created_at: string
|
|
33871
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
33872
|
+
message: string
|
|
33873
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
33874
|
+
error_code: 'failed_to_issue'
|
|
33875
|
+
}[]
|
|
33621
33876
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
33622
33877
|
pending_mutations: (
|
|
33623
33878
|
| {
|
|
@@ -35635,7 +35890,24 @@ export type Routes = {
|
|
|
35635
35890
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
35636
35891
|
original_access_method_id?: string | undefined
|
|
35637
35892
|
}
|
|
35893
|
+
| {
|
|
35894
|
+
/** Date and time at which Seam created the warning. */
|
|
35895
|
+
created_at: string
|
|
35896
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
35897
|
+
message: string
|
|
35898
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
35899
|
+
warning_code: 'delay_in_issuing'
|
|
35900
|
+
}
|
|
35638
35901
|
)[]
|
|
35902
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
35903
|
+
errors: {
|
|
35904
|
+
/** Date and time at which Seam created the error. */
|
|
35905
|
+
created_at: string
|
|
35906
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
35907
|
+
message: string
|
|
35908
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
35909
|
+
error_code: 'failed_to_issue'
|
|
35910
|
+
}[]
|
|
35639
35911
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
35640
35912
|
pending_mutations: (
|
|
35641
35913
|
| {
|
|
@@ -38470,7 +38742,24 @@ export type Routes = {
|
|
|
38470
38742
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
38471
38743
|
original_access_method_id?: string | undefined
|
|
38472
38744
|
}
|
|
38745
|
+
| {
|
|
38746
|
+
/** Date and time at which Seam created the warning. */
|
|
38747
|
+
created_at: string
|
|
38748
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
38749
|
+
message: string
|
|
38750
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38751
|
+
warning_code: 'delay_in_issuing'
|
|
38752
|
+
}
|
|
38473
38753
|
)[]
|
|
38754
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
38755
|
+
errors: {
|
|
38756
|
+
/** Date and time at which Seam created the error. */
|
|
38757
|
+
created_at: string
|
|
38758
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
38759
|
+
message: string
|
|
38760
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
38761
|
+
error_code: 'failed_to_issue'
|
|
38762
|
+
}[]
|
|
38474
38763
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
38475
38764
|
pending_mutations: (
|
|
38476
38765
|
| {
|
|
@@ -43139,7 +43428,24 @@ export type Routes = {
|
|
|
43139
43428
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
43140
43429
|
original_access_method_id?: string | undefined
|
|
43141
43430
|
}
|
|
43431
|
+
| {
|
|
43432
|
+
/** Date and time at which Seam created the warning. */
|
|
43433
|
+
created_at: string
|
|
43434
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
43435
|
+
message: string
|
|
43436
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43437
|
+
warning_code: 'delay_in_issuing'
|
|
43438
|
+
}
|
|
43142
43439
|
)[]
|
|
43440
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
43441
|
+
errors: {
|
|
43442
|
+
/** Date and time at which Seam created the error. */
|
|
43443
|
+
created_at: string
|
|
43444
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
43445
|
+
message: string
|
|
43446
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43447
|
+
error_code: 'failed_to_issue'
|
|
43448
|
+
}[]
|
|
43143
43449
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
43144
43450
|
pending_mutations: (
|
|
43145
43451
|
| {
|
|
@@ -45147,7 +45453,24 @@ export type Routes = {
|
|
|
45147
45453
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
45148
45454
|
original_access_method_id?: string | undefined
|
|
45149
45455
|
}
|
|
45456
|
+
| {
|
|
45457
|
+
/** Date and time at which Seam created the warning. */
|
|
45458
|
+
created_at: string
|
|
45459
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
45460
|
+
message: string
|
|
45461
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45462
|
+
warning_code: 'delay_in_issuing'
|
|
45463
|
+
}
|
|
45150
45464
|
)[]
|
|
45465
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
45466
|
+
errors: {
|
|
45467
|
+
/** Date and time at which Seam created the error. */
|
|
45468
|
+
created_at: string
|
|
45469
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
45470
|
+
message: string
|
|
45471
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45472
|
+
error_code: 'failed_to_issue'
|
|
45473
|
+
}[]
|
|
45151
45474
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
45152
45475
|
pending_mutations: (
|
|
45153
45476
|
| {
|
|
@@ -46223,6 +46546,7 @@ export type Routes = {
|
|
|
46223
46546
|
| 'doorking'
|
|
46224
46547
|
| 'salto'
|
|
46225
46548
|
| 'salto_ks'
|
|
46549
|
+
| 'salto_ks_accept'
|
|
46226
46550
|
| 'lockly'
|
|
46227
46551
|
| 'ttlock'
|
|
46228
46552
|
| 'linear'
|
|
@@ -52385,6 +52709,7 @@ export type Routes = {
|
|
|
52385
52709
|
| 'doorking'
|
|
52386
52710
|
| 'salto'
|
|
52387
52711
|
| 'salto_ks'
|
|
52712
|
+
| 'salto_ks_accept'
|
|
52388
52713
|
| 'lockly'
|
|
52389
52714
|
| 'ttlock'
|
|
52390
52715
|
| 'linear'
|
|
@@ -56635,6 +56960,44 @@ export type Routes = {
|
|
|
56635
56960
|
access_grant_keys?: string[] | undefined
|
|
56636
56961
|
event_type: 'access_method.created'
|
|
56637
56962
|
}
|
|
56963
|
+
| {
|
|
56964
|
+
/** ID of the event. */
|
|
56965
|
+
event_id: string
|
|
56966
|
+
/** ID of the workspace associated with the event. */
|
|
56967
|
+
workspace_id: string
|
|
56968
|
+
/** Date and time at which the event was created. */
|
|
56969
|
+
created_at: string
|
|
56970
|
+
/** Date and time at which the event occurred. */
|
|
56971
|
+
occurred_at: string
|
|
56972
|
+
/** 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. */
|
|
56973
|
+
event_description?: string | undefined
|
|
56974
|
+
/** ID of the affected access method. */
|
|
56975
|
+
access_method_id: string
|
|
56976
|
+
/** IDs of the access grants associated with this access method. */
|
|
56977
|
+
access_grant_ids: string[]
|
|
56978
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
56979
|
+
access_grant_keys?: string[] | undefined
|
|
56980
|
+
event_type: 'access_method.delay_in_issuing'
|
|
56981
|
+
}
|
|
56982
|
+
| {
|
|
56983
|
+
/** ID of the event. */
|
|
56984
|
+
event_id: string
|
|
56985
|
+
/** ID of the workspace associated with the event. */
|
|
56986
|
+
workspace_id: string
|
|
56987
|
+
/** Date and time at which the event was created. */
|
|
56988
|
+
created_at: string
|
|
56989
|
+
/** Date and time at which the event occurred. */
|
|
56990
|
+
occurred_at: string
|
|
56991
|
+
/** 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. */
|
|
56992
|
+
event_description?: string | undefined
|
|
56993
|
+
/** ID of the affected access method. */
|
|
56994
|
+
access_method_id: string
|
|
56995
|
+
/** IDs of the access grants associated with this access method. */
|
|
56996
|
+
access_grant_ids: string[]
|
|
56997
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
56998
|
+
access_grant_keys?: string[] | undefined
|
|
56999
|
+
event_type: 'access_method.failed_to_issue'
|
|
57000
|
+
}
|
|
56638
57001
|
| {
|
|
56639
57002
|
/** ID of the event. */
|
|
56640
57003
|
event_id: string
|
|
@@ -59054,6 +59417,8 @@ export type Routes = {
|
|
|
59054
59417
|
| 'access_method.deleted'
|
|
59055
59418
|
| 'access_method.reissued'
|
|
59056
59419
|
| 'access_method.created'
|
|
59420
|
+
| 'access_method.delay_in_issuing'
|
|
59421
|
+
| 'access_method.failed_to_issue'
|
|
59057
59422
|
| 'acs_system.connected'
|
|
59058
59423
|
| 'acs_system.added'
|
|
59059
59424
|
| 'acs_system.disconnected'
|
|
@@ -59166,6 +59531,8 @@ export type Routes = {
|
|
|
59166
59531
|
| 'access_method.deleted'
|
|
59167
59532
|
| 'access_method.reissued'
|
|
59168
59533
|
| 'access_method.created'
|
|
59534
|
+
| 'access_method.delay_in_issuing'
|
|
59535
|
+
| 'access_method.failed_to_issue'
|
|
59169
59536
|
| 'acs_system.connected'
|
|
59170
59537
|
| 'acs_system.added'
|
|
59171
59538
|
| 'acs_system.disconnected'
|
|
@@ -60523,6 +60890,44 @@ export type Routes = {
|
|
|
60523
60890
|
access_grant_keys?: string[] | undefined
|
|
60524
60891
|
event_type: 'access_method.created'
|
|
60525
60892
|
}
|
|
60893
|
+
| {
|
|
60894
|
+
/** ID of the event. */
|
|
60895
|
+
event_id: string
|
|
60896
|
+
/** ID of the workspace associated with the event. */
|
|
60897
|
+
workspace_id: string
|
|
60898
|
+
/** Date and time at which the event was created. */
|
|
60899
|
+
created_at: string
|
|
60900
|
+
/** Date and time at which the event occurred. */
|
|
60901
|
+
occurred_at: string
|
|
60902
|
+
/** 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. */
|
|
60903
|
+
event_description?: string | undefined
|
|
60904
|
+
/** ID of the affected access method. */
|
|
60905
|
+
access_method_id: string
|
|
60906
|
+
/** IDs of the access grants associated with this access method. */
|
|
60907
|
+
access_grant_ids: string[]
|
|
60908
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
60909
|
+
access_grant_keys?: string[] | undefined
|
|
60910
|
+
event_type: 'access_method.delay_in_issuing'
|
|
60911
|
+
}
|
|
60912
|
+
| {
|
|
60913
|
+
/** ID of the event. */
|
|
60914
|
+
event_id: string
|
|
60915
|
+
/** ID of the workspace associated with the event. */
|
|
60916
|
+
workspace_id: string
|
|
60917
|
+
/** Date and time at which the event was created. */
|
|
60918
|
+
created_at: string
|
|
60919
|
+
/** Date and time at which the event occurred. */
|
|
60920
|
+
occurred_at: string
|
|
60921
|
+
/** 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. */
|
|
60922
|
+
event_description?: string | undefined
|
|
60923
|
+
/** ID of the affected access method. */
|
|
60924
|
+
access_method_id: string
|
|
60925
|
+
/** IDs of the access grants associated with this access method. */
|
|
60926
|
+
access_grant_ids: string[]
|
|
60927
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
60928
|
+
access_grant_keys?: string[] | undefined
|
|
60929
|
+
event_type: 'access_method.failed_to_issue'
|
|
60930
|
+
}
|
|
60526
60931
|
| {
|
|
60527
60932
|
/** ID of the event. */
|
|
60528
60933
|
event_id: string
|
|
@@ -64300,7 +64705,24 @@ export type Routes = {
|
|
|
64300
64705
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
64301
64706
|
original_access_method_id?: string | undefined
|
|
64302
64707
|
}
|
|
64708
|
+
| {
|
|
64709
|
+
/** Date and time at which Seam created the warning. */
|
|
64710
|
+
created_at: string
|
|
64711
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
64712
|
+
message: string
|
|
64713
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64714
|
+
warning_code: 'delay_in_issuing'
|
|
64715
|
+
}
|
|
64303
64716
|
)[]
|
|
64717
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
64718
|
+
errors: {
|
|
64719
|
+
/** Date and time at which Seam created the error. */
|
|
64720
|
+
created_at: string
|
|
64721
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
64722
|
+
message: string
|
|
64723
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
64724
|
+
error_code: 'failed_to_issue'
|
|
64725
|
+
}[]
|
|
64304
64726
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
64305
64727
|
pending_mutations: (
|
|
64306
64728
|
| {
|
|
@@ -73893,7 +74315,24 @@ export type Routes = {
|
|
|
73893
74315
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
73894
74316
|
original_access_method_id?: string | undefined
|
|
73895
74317
|
}
|
|
74318
|
+
| {
|
|
74319
|
+
/** Date and time at which Seam created the warning. */
|
|
74320
|
+
created_at: string
|
|
74321
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
74322
|
+
message: string
|
|
74323
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74324
|
+
warning_code: 'delay_in_issuing'
|
|
74325
|
+
}
|
|
73896
74326
|
)[]
|
|
74327
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
74328
|
+
errors: {
|
|
74329
|
+
/** Date and time at which Seam created the error. */
|
|
74330
|
+
created_at: string
|
|
74331
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
74332
|
+
message: string
|
|
74333
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
74334
|
+
error_code: 'failed_to_issue'
|
|
74335
|
+
}[]
|
|
73897
74336
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
73898
74337
|
pending_mutations: (
|
|
73899
74338
|
| {
|
|
@@ -75902,7 +76341,24 @@ export type Routes = {
|
|
|
75902
76341
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
75903
76342
|
original_access_method_id?: string | undefined
|
|
75904
76343
|
}
|
|
76344
|
+
| {
|
|
76345
|
+
/** Date and time at which Seam created the warning. */
|
|
76346
|
+
created_at: string
|
|
76347
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
76348
|
+
message: string
|
|
76349
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
76350
|
+
warning_code: 'delay_in_issuing'
|
|
76351
|
+
}
|
|
75905
76352
|
)[]
|
|
76353
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
76354
|
+
errors: {
|
|
76355
|
+
/** Date and time at which Seam created the error. */
|
|
76356
|
+
created_at: string
|
|
76357
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76358
|
+
message: string
|
|
76359
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
76360
|
+
error_code: 'failed_to_issue'
|
|
76361
|
+
}[]
|
|
75906
76362
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
75907
76363
|
pending_mutations: (
|
|
75908
76364
|
| {
|
|
@@ -77909,7 +78365,24 @@ export type Routes = {
|
|
|
77909
78365
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
77910
78366
|
original_access_method_id?: string | undefined
|
|
77911
78367
|
}
|
|
78368
|
+
| {
|
|
78369
|
+
/** Date and time at which Seam created the warning. */
|
|
78370
|
+
created_at: string
|
|
78371
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
78372
|
+
message: string
|
|
78373
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
78374
|
+
warning_code: 'delay_in_issuing'
|
|
78375
|
+
}
|
|
77912
78376
|
)[]
|
|
78377
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
78378
|
+
errors: {
|
|
78379
|
+
/** Date and time at which Seam created the error. */
|
|
78380
|
+
created_at: string
|
|
78381
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
78382
|
+
message: string
|
|
78383
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
78384
|
+
error_code: 'failed_to_issue'
|
|
78385
|
+
}[]
|
|
77913
78386
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
77914
78387
|
pending_mutations: (
|
|
77915
78388
|
| {
|
|
@@ -79918,7 +80391,24 @@ export type Routes = {
|
|
|
79918
80391
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
79919
80392
|
original_access_method_id?: string | undefined
|
|
79920
80393
|
}
|
|
80394
|
+
| {
|
|
80395
|
+
/** Date and time at which Seam created the warning. */
|
|
80396
|
+
created_at: string
|
|
80397
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
80398
|
+
message: string
|
|
80399
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
80400
|
+
warning_code: 'delay_in_issuing'
|
|
80401
|
+
}
|
|
79921
80402
|
)[]
|
|
80403
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
80404
|
+
errors: {
|
|
80405
|
+
/** Date and time at which Seam created the error. */
|
|
80406
|
+
created_at: string
|
|
80407
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
80408
|
+
message: string
|
|
80409
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
80410
|
+
error_code: 'failed_to_issue'
|
|
80411
|
+
}[]
|
|
79922
80412
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
79923
80413
|
pending_mutations: (
|
|
79924
80414
|
| {
|
|
@@ -85720,7 +86210,24 @@ export type Routes = {
|
|
|
85720
86210
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
85721
86211
|
original_access_method_id?: string | undefined
|
|
85722
86212
|
}
|
|
86213
|
+
| {
|
|
86214
|
+
/** Date and time at which Seam created the warning. */
|
|
86215
|
+
created_at: string
|
|
86216
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
86217
|
+
message: string
|
|
86218
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
86219
|
+
warning_code: 'delay_in_issuing'
|
|
86220
|
+
}
|
|
85723
86221
|
)[]
|
|
86222
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
86223
|
+
errors: {
|
|
86224
|
+
/** Date and time at which Seam created the error. */
|
|
86225
|
+
created_at: string
|
|
86226
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
86227
|
+
message: string
|
|
86228
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
86229
|
+
error_code: 'failed_to_issue'
|
|
86230
|
+
}[]
|
|
85724
86231
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
85725
86232
|
pending_mutations: (
|
|
85726
86233
|
| {
|
|
@@ -87748,7 +88255,24 @@ export type Routes = {
|
|
|
87748
88255
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
87749
88256
|
original_access_method_id?: string | undefined
|
|
87750
88257
|
}
|
|
88258
|
+
| {
|
|
88259
|
+
/** Date and time at which Seam created the warning. */
|
|
88260
|
+
created_at: string
|
|
88261
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
88262
|
+
message: string
|
|
88263
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88264
|
+
warning_code: 'delay_in_issuing'
|
|
88265
|
+
}
|
|
87751
88266
|
)[]
|
|
88267
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
88268
|
+
errors: {
|
|
88269
|
+
/** Date and time at which Seam created the error. */
|
|
88270
|
+
created_at: string
|
|
88271
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
88272
|
+
message: string
|
|
88273
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
88274
|
+
error_code: 'failed_to_issue'
|
|
88275
|
+
}[]
|
|
87752
88276
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
87753
88277
|
pending_mutations: (
|
|
87754
88278
|
| {
|
|
@@ -89832,7 +90356,24 @@ export type Routes = {
|
|
|
89832
90356
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
89833
90357
|
original_access_method_id?: string | undefined
|
|
89834
90358
|
}
|
|
90359
|
+
| {
|
|
90360
|
+
/** Date and time at which Seam created the warning. */
|
|
90361
|
+
created_at: string
|
|
90362
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
90363
|
+
message: string
|
|
90364
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
90365
|
+
warning_code: 'delay_in_issuing'
|
|
90366
|
+
}
|
|
89835
90367
|
)[]
|
|
90368
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
90369
|
+
errors: {
|
|
90370
|
+
/** Date and time at which Seam created the error. */
|
|
90371
|
+
created_at: string
|
|
90372
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
90373
|
+
message: string
|
|
90374
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
90375
|
+
error_code: 'failed_to_issue'
|
|
90376
|
+
}[]
|
|
89836
90377
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
89837
90378
|
pending_mutations: (
|
|
89838
90379
|
| {
|
|
@@ -93814,7 +94355,24 @@ export type Routes = {
|
|
|
93814
94355
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
93815
94356
|
original_access_method_id?: string | undefined
|
|
93816
94357
|
}
|
|
94358
|
+
| {
|
|
94359
|
+
/** Date and time at which Seam created the warning. */
|
|
94360
|
+
created_at: string
|
|
94361
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
94362
|
+
message: string
|
|
94363
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
94364
|
+
warning_code: 'delay_in_issuing'
|
|
94365
|
+
}
|
|
93817
94366
|
)[]
|
|
94367
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
94368
|
+
errors: {
|
|
94369
|
+
/** Date and time at which Seam created the error. */
|
|
94370
|
+
created_at: string
|
|
94371
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
94372
|
+
message: string
|
|
94373
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
94374
|
+
error_code: 'failed_to_issue'
|
|
94375
|
+
}[]
|
|
93818
94376
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
93819
94377
|
pending_mutations: (
|
|
93820
94378
|
| {
|
|
@@ -95548,6 +96106,8 @@ export type Routes = {
|
|
|
95548
96106
|
| 'access_method.deleted'
|
|
95549
96107
|
| 'access_method.reissued'
|
|
95550
96108
|
| 'access_method.created'
|
|
96109
|
+
| 'access_method.delay_in_issuing'
|
|
96110
|
+
| 'access_method.failed_to_issue'
|
|
95551
96111
|
| 'acs_system.connected'
|
|
95552
96112
|
| 'acs_system.added'
|
|
95553
96113
|
| 'acs_system.disconnected'
|
|
@@ -95660,6 +96220,8 @@ export type Routes = {
|
|
|
95660
96220
|
| 'access_method.deleted'
|
|
95661
96221
|
| 'access_method.reissued'
|
|
95662
96222
|
| 'access_method.created'
|
|
96223
|
+
| 'access_method.delay_in_issuing'
|
|
96224
|
+
| 'access_method.failed_to_issue'
|
|
95663
96225
|
| 'acs_system.connected'
|
|
95664
96226
|
| 'acs_system.added'
|
|
95665
96227
|
| 'acs_system.disconnected'
|
|
@@ -96987,6 +97549,44 @@ export type Routes = {
|
|
|
96987
97549
|
access_grant_keys?: string[] | undefined
|
|
96988
97550
|
event_type: 'access_method.created'
|
|
96989
97551
|
}
|
|
97552
|
+
| {
|
|
97553
|
+
/** ID of the event. */
|
|
97554
|
+
event_id: string
|
|
97555
|
+
/** ID of the workspace associated with the event. */
|
|
97556
|
+
workspace_id: string
|
|
97557
|
+
/** Date and time at which the event was created. */
|
|
97558
|
+
created_at: string
|
|
97559
|
+
/** Date and time at which the event occurred. */
|
|
97560
|
+
occurred_at: string
|
|
97561
|
+
/** 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. */
|
|
97562
|
+
event_description?: string | undefined
|
|
97563
|
+
/** ID of the affected access method. */
|
|
97564
|
+
access_method_id: string
|
|
97565
|
+
/** IDs of the access grants associated with this access method. */
|
|
97566
|
+
access_grant_ids: string[]
|
|
97567
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
97568
|
+
access_grant_keys?: string[] | undefined
|
|
97569
|
+
event_type: 'access_method.delay_in_issuing'
|
|
97570
|
+
}
|
|
97571
|
+
| {
|
|
97572
|
+
/** ID of the event. */
|
|
97573
|
+
event_id: string
|
|
97574
|
+
/** ID of the workspace associated with the event. */
|
|
97575
|
+
workspace_id: string
|
|
97576
|
+
/** Date and time at which the event was created. */
|
|
97577
|
+
created_at: string
|
|
97578
|
+
/** Date and time at which the event occurred. */
|
|
97579
|
+
occurred_at: string
|
|
97580
|
+
/** 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. */
|
|
97581
|
+
event_description?: string | undefined
|
|
97582
|
+
/** ID of the affected access method. */
|
|
97583
|
+
access_method_id: string
|
|
97584
|
+
/** IDs of the access grants associated with this access method. */
|
|
97585
|
+
access_grant_ids: string[]
|
|
97586
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
97587
|
+
access_grant_keys?: string[] | undefined
|
|
97588
|
+
event_type: 'access_method.failed_to_issue'
|
|
97589
|
+
}
|
|
96990
97590
|
| {
|
|
96991
97591
|
/** ID of the event. */
|
|
96992
97592
|
event_id: string
|
|
@@ -104484,7 +105084,24 @@ export type Routes = {
|
|
|
104484
105084
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
104485
105085
|
original_access_method_id?: string | undefined
|
|
104486
105086
|
}
|
|
105087
|
+
| {
|
|
105088
|
+
/** Date and time at which Seam created the warning. */
|
|
105089
|
+
created_at: string
|
|
105090
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
105091
|
+
message: string
|
|
105092
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105093
|
+
warning_code: 'delay_in_issuing'
|
|
105094
|
+
}
|
|
104487
105095
|
)[]
|
|
105096
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
105097
|
+
errors: {
|
|
105098
|
+
/** Date and time at which Seam created the error. */
|
|
105099
|
+
created_at: string
|
|
105100
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
105101
|
+
message: string
|
|
105102
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
105103
|
+
error_code: 'failed_to_issue'
|
|
105104
|
+
}[]
|
|
104488
105105
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
104489
105106
|
pending_mutations: (
|
|
104490
105107
|
| {
|
|
@@ -106098,7 +106715,24 @@ export type Routes = {
|
|
|
106098
106715
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
106099
106716
|
original_access_method_id?: string | undefined
|
|
106100
106717
|
}
|
|
106718
|
+
| {
|
|
106719
|
+
/** Date and time at which Seam created the warning. */
|
|
106720
|
+
created_at: string
|
|
106721
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
106722
|
+
message: string
|
|
106723
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
106724
|
+
warning_code: 'delay_in_issuing'
|
|
106725
|
+
}
|
|
106101
106726
|
)[]
|
|
106727
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
106728
|
+
errors: {
|
|
106729
|
+
/** Date and time at which Seam created the error. */
|
|
106730
|
+
created_at: string
|
|
106731
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
106732
|
+
message: string
|
|
106733
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
106734
|
+
error_code: 'failed_to_issue'
|
|
106735
|
+
}[]
|
|
106102
106736
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
106103
106737
|
pending_mutations: (
|
|
106104
106738
|
| {
|
|
@@ -108111,7 +108745,24 @@ export type Routes = {
|
|
|
108111
108745
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
108112
108746
|
original_access_method_id?: string | undefined
|
|
108113
108747
|
}
|
|
108748
|
+
| {
|
|
108749
|
+
/** Date and time at which Seam created the warning. */
|
|
108750
|
+
created_at: string
|
|
108751
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
108752
|
+
message: string
|
|
108753
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
108754
|
+
warning_code: 'delay_in_issuing'
|
|
108755
|
+
}
|
|
108114
108756
|
)[]
|
|
108757
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
108758
|
+
errors: {
|
|
108759
|
+
/** Date and time at which Seam created the error. */
|
|
108760
|
+
created_at: string
|
|
108761
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
108762
|
+
message: string
|
|
108763
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
108764
|
+
error_code: 'failed_to_issue'
|
|
108765
|
+
}[]
|
|
108115
108766
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
108116
108767
|
pending_mutations: (
|
|
108117
108768
|
| {
|
|
@@ -110236,7 +110887,24 @@ export type Routes = {
|
|
|
110236
110887
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
110237
110888
|
original_access_method_id?: string | undefined
|
|
110238
110889
|
}
|
|
110890
|
+
| {
|
|
110891
|
+
/** Date and time at which Seam created the warning. */
|
|
110892
|
+
created_at: string
|
|
110893
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
110894
|
+
message: string
|
|
110895
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
110896
|
+
warning_code: 'delay_in_issuing'
|
|
110897
|
+
}
|
|
110239
110898
|
)[]
|
|
110899
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
110900
|
+
errors: {
|
|
110901
|
+
/** Date and time at which Seam created the error. */
|
|
110902
|
+
created_at: string
|
|
110903
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
110904
|
+
message: string
|
|
110905
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
110906
|
+
error_code: 'failed_to_issue'
|
|
110907
|
+
}[]
|
|
110240
110908
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
110241
110909
|
pending_mutations: (
|
|
110242
110910
|
| {
|
|
@@ -114123,7 +114791,24 @@ export type Routes = {
|
|
|
114123
114791
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
114124
114792
|
original_access_method_id?: string | undefined
|
|
114125
114793
|
}
|
|
114794
|
+
| {
|
|
114795
|
+
/** Date and time at which Seam created the warning. */
|
|
114796
|
+
created_at: string
|
|
114797
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
114798
|
+
message: string
|
|
114799
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
114800
|
+
warning_code: 'delay_in_issuing'
|
|
114801
|
+
}
|
|
114126
114802
|
)[]
|
|
114803
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
114804
|
+
errors: {
|
|
114805
|
+
/** Date and time at which Seam created the error. */
|
|
114806
|
+
created_at: string
|
|
114807
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
114808
|
+
message: string
|
|
114809
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
114810
|
+
error_code: 'failed_to_issue'
|
|
114811
|
+
}[]
|
|
114127
114812
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
114128
114813
|
pending_mutations: (
|
|
114129
114814
|
| {
|
|
@@ -116140,7 +116825,24 @@ export type Routes = {
|
|
|
116140
116825
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
116141
116826
|
original_access_method_id?: string | undefined
|
|
116142
116827
|
}
|
|
116828
|
+
| {
|
|
116829
|
+
/** Date and time at which Seam created the warning. */
|
|
116830
|
+
created_at: string
|
|
116831
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
116832
|
+
message: string
|
|
116833
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
116834
|
+
warning_code: 'delay_in_issuing'
|
|
116835
|
+
}
|
|
116143
116836
|
)[]
|
|
116837
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
116838
|
+
errors: {
|
|
116839
|
+
/** Date and time at which Seam created the error. */
|
|
116840
|
+
created_at: string
|
|
116841
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
116842
|
+
message: string
|
|
116843
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
116844
|
+
error_code: 'failed_to_issue'
|
|
116845
|
+
}[]
|
|
116144
116846
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
116145
116847
|
pending_mutations: (
|
|
116146
116848
|
| {
|
|
@@ -121959,7 +122661,24 @@ export type Routes = {
|
|
|
121959
122661
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
121960
122662
|
original_access_method_id?: string | undefined
|
|
121961
122663
|
}
|
|
122664
|
+
| {
|
|
122665
|
+
/** Date and time at which Seam created the warning. */
|
|
122666
|
+
created_at: string
|
|
122667
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
122668
|
+
message: string
|
|
122669
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
122670
|
+
warning_code: 'delay_in_issuing'
|
|
122671
|
+
}
|
|
121962
122672
|
)[]
|
|
122673
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
122674
|
+
errors: {
|
|
122675
|
+
/** Date and time at which Seam created the error. */
|
|
122676
|
+
created_at: string
|
|
122677
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
122678
|
+
message: string
|
|
122679
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
122680
|
+
error_code: 'failed_to_issue'
|
|
122681
|
+
}[]
|
|
121963
122682
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
121964
122683
|
pending_mutations: (
|
|
121965
122684
|
| {
|
|
@@ -124171,7 +124890,24 @@ export type Routes = {
|
|
|
124171
124890
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
124172
124891
|
original_access_method_id?: string | undefined
|
|
124173
124892
|
}
|
|
124893
|
+
| {
|
|
124894
|
+
/** Date and time at which Seam created the warning. */
|
|
124895
|
+
created_at: string
|
|
124896
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
124897
|
+
message: string
|
|
124898
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
124899
|
+
warning_code: 'delay_in_issuing'
|
|
124900
|
+
}
|
|
124174
124901
|
)[]
|
|
124902
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
124903
|
+
errors: {
|
|
124904
|
+
/** Date and time at which Seam created the error. */
|
|
124905
|
+
created_at: string
|
|
124906
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
124907
|
+
message: string
|
|
124908
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
124909
|
+
error_code: 'failed_to_issue'
|
|
124910
|
+
}[]
|
|
124175
124911
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
124176
124912
|
pending_mutations: (
|
|
124177
124913
|
| {
|
|
@@ -126216,7 +126952,24 @@ export type Routes = {
|
|
|
126216
126952
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
126217
126953
|
original_access_method_id?: string | undefined
|
|
126218
126954
|
}
|
|
126955
|
+
| {
|
|
126956
|
+
/** Date and time at which Seam created the warning. */
|
|
126957
|
+
created_at: string
|
|
126958
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
126959
|
+
message: string
|
|
126960
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
126961
|
+
warning_code: 'delay_in_issuing'
|
|
126962
|
+
}
|
|
126219
126963
|
)[]
|
|
126964
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
126965
|
+
errors: {
|
|
126966
|
+
/** Date and time at which Seam created the error. */
|
|
126967
|
+
created_at: string
|
|
126968
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
126969
|
+
message: string
|
|
126970
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
126971
|
+
error_code: 'failed_to_issue'
|
|
126972
|
+
}[]
|
|
126220
126973
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
126221
126974
|
pending_mutations: (
|
|
126222
126975
|
| {
|
|
@@ -128378,7 +129131,24 @@ export type Routes = {
|
|
|
128378
129131
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
128379
129132
|
original_access_method_id?: string | undefined
|
|
128380
129133
|
}
|
|
129134
|
+
| {
|
|
129135
|
+
/** Date and time at which Seam created the warning. */
|
|
129136
|
+
created_at: string
|
|
129137
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
129138
|
+
message: string
|
|
129139
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
129140
|
+
warning_code: 'delay_in_issuing'
|
|
129141
|
+
}
|
|
128381
129142
|
)[]
|
|
129143
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
129144
|
+
errors: {
|
|
129145
|
+
/** Date and time at which Seam created the error. */
|
|
129146
|
+
created_at: string
|
|
129147
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
129148
|
+
message: string
|
|
129149
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
129150
|
+
error_code: 'failed_to_issue'
|
|
129151
|
+
}[]
|
|
128382
129152
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
128383
129153
|
pending_mutations: (
|
|
128384
129154
|
| {
|
|
@@ -139070,7 +139840,24 @@ export type Routes = {
|
|
|
139070
139840
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
139071
139841
|
original_access_method_id?: string | undefined
|
|
139072
139842
|
}
|
|
139843
|
+
| {
|
|
139844
|
+
/** Date and time at which Seam created the warning. */
|
|
139845
|
+
created_at: string
|
|
139846
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
139847
|
+
message: string
|
|
139848
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
139849
|
+
warning_code: 'delay_in_issuing'
|
|
139850
|
+
}
|
|
139073
139851
|
)[]
|
|
139852
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
139853
|
+
errors: {
|
|
139854
|
+
/** Date and time at which Seam created the error. */
|
|
139855
|
+
created_at: string
|
|
139856
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
139857
|
+
message: string
|
|
139858
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
139859
|
+
error_code: 'failed_to_issue'
|
|
139860
|
+
}[]
|
|
139074
139861
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
139075
139862
|
pending_mutations: (
|
|
139076
139863
|
| {
|
|
@@ -141019,7 +141806,24 @@ export type Routes = {
|
|
|
141019
141806
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
141020
141807
|
original_access_method_id?: string | undefined
|
|
141021
141808
|
}
|
|
141809
|
+
| {
|
|
141810
|
+
/** Date and time at which Seam created the warning. */
|
|
141811
|
+
created_at: string
|
|
141812
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
141813
|
+
message: string
|
|
141814
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
141815
|
+
warning_code: 'delay_in_issuing'
|
|
141816
|
+
}
|
|
141022
141817
|
)[]
|
|
141818
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
141819
|
+
errors: {
|
|
141820
|
+
/** Date and time at which Seam created the error. */
|
|
141821
|
+
created_at: string
|
|
141822
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
141823
|
+
message: string
|
|
141824
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
141825
|
+
error_code: 'failed_to_issue'
|
|
141826
|
+
}[]
|
|
141023
141827
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
141024
141828
|
pending_mutations: (
|
|
141025
141829
|
| {
|
|
@@ -142752,6 +143556,44 @@ export type Routes = {
|
|
|
142752
143556
|
access_grant_keys?: string[] | undefined
|
|
142753
143557
|
event_type: 'access_method.created'
|
|
142754
143558
|
}
|
|
143559
|
+
| {
|
|
143560
|
+
/** ID of the event. */
|
|
143561
|
+
event_id: string
|
|
143562
|
+
/** ID of the workspace associated with the event. */
|
|
143563
|
+
workspace_id: string
|
|
143564
|
+
/** Date and time at which the event was created. */
|
|
143565
|
+
created_at: string
|
|
143566
|
+
/** Date and time at which the event occurred. */
|
|
143567
|
+
occurred_at: string
|
|
143568
|
+
/** 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. */
|
|
143569
|
+
event_description?: string | undefined
|
|
143570
|
+
/** ID of the affected access method. */
|
|
143571
|
+
access_method_id: string
|
|
143572
|
+
/** IDs of the access grants associated with this access method. */
|
|
143573
|
+
access_grant_ids: string[]
|
|
143574
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
143575
|
+
access_grant_keys?: string[] | undefined
|
|
143576
|
+
event_type: 'access_method.delay_in_issuing'
|
|
143577
|
+
}
|
|
143578
|
+
| {
|
|
143579
|
+
/** ID of the event. */
|
|
143580
|
+
event_id: string
|
|
143581
|
+
/** ID of the workspace associated with the event. */
|
|
143582
|
+
workspace_id: string
|
|
143583
|
+
/** Date and time at which the event was created. */
|
|
143584
|
+
created_at: string
|
|
143585
|
+
/** Date and time at which the event occurred. */
|
|
143586
|
+
occurred_at: string
|
|
143587
|
+
/** 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. */
|
|
143588
|
+
event_description?: string | undefined
|
|
143589
|
+
/** ID of the affected access method. */
|
|
143590
|
+
access_method_id: string
|
|
143591
|
+
/** IDs of the access grants associated with this access method. */
|
|
143592
|
+
access_grant_ids: string[]
|
|
143593
|
+
/** Keys of the access grants associated with this access method (if present). */
|
|
143594
|
+
access_grant_keys?: string[] | undefined
|
|
143595
|
+
event_type: 'access_method.failed_to_issue'
|
|
143596
|
+
}
|
|
142755
143597
|
| {
|
|
142756
143598
|
/** ID of the event. */
|
|
142757
143599
|
event_id: string
|
|
@@ -147885,7 +148727,24 @@ export type Routes = {
|
|
|
147885
148727
|
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
147886
148728
|
original_access_method_id?: string | undefined
|
|
147887
148729
|
}
|
|
148730
|
+
| {
|
|
148731
|
+
/** Date and time at which Seam created the warning. */
|
|
148732
|
+
created_at: string
|
|
148733
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
148734
|
+
message: string
|
|
148735
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
148736
|
+
warning_code: 'delay_in_issuing'
|
|
148737
|
+
}
|
|
147888
148738
|
)[]
|
|
148739
|
+
/** Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). */
|
|
148740
|
+
errors: {
|
|
148741
|
+
/** Date and time at which Seam created the error. */
|
|
148742
|
+
created_at: string
|
|
148743
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
148744
|
+
message: string
|
|
148745
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
148746
|
+
error_code: 'failed_to_issue'
|
|
148747
|
+
}[]
|
|
147889
148748
|
/** Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress. */
|
|
147890
148749
|
pending_mutations: (
|
|
147891
148750
|
| {
|