@seamapi/types 1.747.0 → 1.748.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 +158 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +274 -10
- package/dist/index.cjs +158 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-method.d.ts +81 -0
- package/lib/seam/connect/models/access-grants/access-method.js +16 -0
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +36 -0
- package/lib/seam/connect/openapi.d.ts +140 -10
- package/lib/seam/connect/openapi.js +146 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +72 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-method.ts +21 -0
- package/src/lib/seam/connect/openapi.ts +171 -0
- package/src/lib/seam/connect/route-types.ts +80 -0
|
@@ -12415,6 +12415,15 @@ export type Routes = {
|
|
|
12415
12415
|
message: string;
|
|
12416
12416
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
12417
12417
|
warning_code: 'updating_access_times';
|
|
12418
|
+
} | {
|
|
12419
|
+
/** Date and time at which Seam created the warning. */
|
|
12420
|
+
created_at: string;
|
|
12421
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
12422
|
+
message: string;
|
|
12423
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
12424
|
+
warning_code: 'pulled_backup_access_code';
|
|
12425
|
+
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
12426
|
+
original_access_method_id?: string | undefined;
|
|
12418
12427
|
})[];
|
|
12419
12428
|
/** Pending mutations for the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). Indicates operations that are in progress. */
|
|
12420
12429
|
pending_mutations: ({
|
|
@@ -14577,6 +14586,15 @@ export type Routes = {
|
|
|
14577
14586
|
message: string;
|
|
14578
14587
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14579
14588
|
warning_code: 'updating_access_times';
|
|
14589
|
+
} | {
|
|
14590
|
+
/** Date and time at which Seam created the warning. */
|
|
14591
|
+
created_at: string;
|
|
14592
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
14593
|
+
message: string;
|
|
14594
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14595
|
+
warning_code: 'pulled_backup_access_code';
|
|
14596
|
+
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
14597
|
+
original_access_method_id?: string | undefined;
|
|
14580
14598
|
})[];
|
|
14581
14599
|
/** Pending mutations for the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). Indicates operations that are in progress. */
|
|
14582
14600
|
pending_mutations: ({
|
|
@@ -16307,6 +16325,15 @@ export type Routes = {
|
|
|
16307
16325
|
message: string;
|
|
16308
16326
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
16309
16327
|
warning_code: 'updating_access_times';
|
|
16328
|
+
} | {
|
|
16329
|
+
/** Date and time at which Seam created the warning. */
|
|
16330
|
+
created_at: string;
|
|
16331
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
16332
|
+
message: string;
|
|
16333
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
16334
|
+
warning_code: 'pulled_backup_access_code';
|
|
16335
|
+
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
16336
|
+
original_access_method_id?: string | undefined;
|
|
16310
16337
|
})[];
|
|
16311
16338
|
/** Pending mutations for the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). Indicates operations that are in progress. */
|
|
16312
16339
|
pending_mutations: ({
|
|
@@ -16612,6 +16639,15 @@ export type Routes = {
|
|
|
16612
16639
|
message: string;
|
|
16613
16640
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
16614
16641
|
warning_code: 'updating_access_times';
|
|
16642
|
+
} | {
|
|
16643
|
+
/** Date and time at which Seam created the warning. */
|
|
16644
|
+
created_at: string;
|
|
16645
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
16646
|
+
message: string;
|
|
16647
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
16648
|
+
warning_code: 'pulled_backup_access_code';
|
|
16649
|
+
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
16650
|
+
original_access_method_id?: string | undefined;
|
|
16615
16651
|
})[];
|
|
16616
16652
|
/** Pending mutations for the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). Indicates operations that are in progress. */
|
|
16617
16653
|
pending_mutations: ({
|
|
@@ -16722,6 +16758,15 @@ export type Routes = {
|
|
|
16722
16758
|
message: string;
|
|
16723
16759
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
16724
16760
|
warning_code: 'updating_access_times';
|
|
16761
|
+
} | {
|
|
16762
|
+
/** Date and time at which Seam created the warning. */
|
|
16763
|
+
created_at: string;
|
|
16764
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
16765
|
+
message: string;
|
|
16766
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
16767
|
+
warning_code: 'pulled_backup_access_code';
|
|
16768
|
+
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
16769
|
+
original_access_method_id?: string | undefined;
|
|
16725
16770
|
})[];
|
|
16726
16771
|
/** Pending mutations for the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). Indicates operations that are in progress. */
|
|
16727
16772
|
pending_mutations: ({
|
|
@@ -16835,6 +16880,15 @@ export type Routes = {
|
|
|
16835
16880
|
message: string;
|
|
16836
16881
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
16837
16882
|
warning_code: 'updating_access_times';
|
|
16883
|
+
} | {
|
|
16884
|
+
/** Date and time at which Seam created the warning. */
|
|
16885
|
+
created_at: string;
|
|
16886
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
16887
|
+
message: string;
|
|
16888
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
16889
|
+
warning_code: 'pulled_backup_access_code';
|
|
16890
|
+
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
16891
|
+
original_access_method_id?: string | undefined;
|
|
16838
16892
|
})[];
|
|
16839
16893
|
/** Pending mutations for the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). Indicates operations that are in progress. */
|
|
16840
16894
|
pending_mutations: ({
|
|
@@ -65004,6 +65058,15 @@ export type Routes = {
|
|
|
65004
65058
|
message: string;
|
|
65005
65059
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65006
65060
|
warning_code: 'updating_access_times';
|
|
65061
|
+
} | {
|
|
65062
|
+
/** Date and time at which Seam created the warning. */
|
|
65063
|
+
created_at: string;
|
|
65064
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
65065
|
+
message: string;
|
|
65066
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65067
|
+
warning_code: 'pulled_backup_access_code';
|
|
65068
|
+
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
65069
|
+
original_access_method_id?: string | undefined;
|
|
65007
65070
|
})[];
|
|
65008
65071
|
/** Pending mutations for the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). Indicates operations that are in progress. */
|
|
65009
65072
|
pending_mutations: ({
|
|
@@ -89499,6 +89562,15 @@ export type Routes = {
|
|
|
89499
89562
|
message: string;
|
|
89500
89563
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
89501
89564
|
warning_code: 'updating_access_times';
|
|
89565
|
+
} | {
|
|
89566
|
+
/** Date and time at which Seam created the warning. */
|
|
89567
|
+
created_at: string;
|
|
89568
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
89569
|
+
message: string;
|
|
89570
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
89571
|
+
warning_code: 'pulled_backup_access_code';
|
|
89572
|
+
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
89573
|
+
original_access_method_id?: string | undefined;
|
|
89502
89574
|
})[];
|
|
89503
89575
|
/** Pending mutations for the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). Indicates operations that are in progress. */
|
|
89504
89576
|
pending_mutations: ({
|
package/package.json
CHANGED
|
@@ -33,10 +33,28 @@ const updating_access_times_warning = common_access_method_warning
|
|
|
33
33
|
'Indicates that the access times for this [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods) are being updated.',
|
|
34
34
|
)
|
|
35
35
|
|
|
36
|
+
const pulled_backup_access_code_warning = common_access_method_warning
|
|
37
|
+
.extend({
|
|
38
|
+
warning_code: z
|
|
39
|
+
.literal('pulled_backup_access_code')
|
|
40
|
+
.describe(warning_code_description),
|
|
41
|
+
original_access_method_id: z
|
|
42
|
+
.string()
|
|
43
|
+
.uuid()
|
|
44
|
+
.optional()
|
|
45
|
+
.describe(
|
|
46
|
+
'ID of the original access method from which this backup access method was split, if applicable.',
|
|
47
|
+
),
|
|
48
|
+
})
|
|
49
|
+
.describe(
|
|
50
|
+
'Indicates that all attempts to create an access code on this device before the start time failed and a backup access code was used to ensure access was provided in time.',
|
|
51
|
+
)
|
|
52
|
+
|
|
36
53
|
const access_method_warning = z
|
|
37
54
|
.discriminatedUnion('warning_code', [
|
|
38
55
|
being_deleted,
|
|
39
56
|
updating_access_times_warning,
|
|
57
|
+
pulled_backup_access_code_warning,
|
|
40
58
|
])
|
|
41
59
|
.describe(
|
|
42
60
|
'Warning associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods).',
|
|
@@ -45,6 +63,9 @@ const access_method_warning = z
|
|
|
45
63
|
const _access_method_warning_map = z.object({
|
|
46
64
|
being_deleted: being_deleted.optional().nullable(),
|
|
47
65
|
updating_access_times: updating_access_times_warning.optional().nullable(),
|
|
66
|
+
pulled_backup_access_code: pulled_backup_access_code_warning
|
|
67
|
+
.optional()
|
|
68
|
+
.nullable(),
|
|
48
69
|
})
|
|
49
70
|
|
|
50
71
|
export type AccessMethodWarningMap = z.infer<typeof _access_method_warning_map>
|
|
@@ -2654,6 +2654,37 @@ export default {
|
|
|
2654
2654
|
required: ['created_at', 'message', 'warning_code'],
|
|
2655
2655
|
type: 'object',
|
|
2656
2656
|
},
|
|
2657
|
+
{
|
|
2658
|
+
description:
|
|
2659
|
+
'Indicates that all attempts to create an access code on this device before the start time failed and a backup access code was used to ensure access was provided in time.',
|
|
2660
|
+
properties: {
|
|
2661
|
+
created_at: {
|
|
2662
|
+
description:
|
|
2663
|
+
'Date and time at which Seam created the warning.',
|
|
2664
|
+
format: 'date-time',
|
|
2665
|
+
type: 'string',
|
|
2666
|
+
},
|
|
2667
|
+
message: {
|
|
2668
|
+
description:
|
|
2669
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
2670
|
+
type: 'string',
|
|
2671
|
+
},
|
|
2672
|
+
original_access_method_id: {
|
|
2673
|
+
description:
|
|
2674
|
+
'ID of the original access method from which this backup access method was split, if applicable.',
|
|
2675
|
+
format: 'uuid',
|
|
2676
|
+
type: 'string',
|
|
2677
|
+
},
|
|
2678
|
+
warning_code: {
|
|
2679
|
+
description:
|
|
2680
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
2681
|
+
enum: ['pulled_backup_access_code'],
|
|
2682
|
+
type: 'string',
|
|
2683
|
+
},
|
|
2684
|
+
},
|
|
2685
|
+
required: ['created_at', 'message', 'warning_code'],
|
|
2686
|
+
type: 'object',
|
|
2687
|
+
},
|
|
2657
2688
|
],
|
|
2658
2689
|
},
|
|
2659
2690
|
type: 'array',
|
|
@@ -38638,6 +38669,41 @@ export default {
|
|
|
38638
38669
|
],
|
|
38639
38670
|
type: 'object',
|
|
38640
38671
|
},
|
|
38672
|
+
{
|
|
38673
|
+
description:
|
|
38674
|
+
'Indicates that all attempts to create an access code on this device before the start time failed and a backup access code was used to ensure access was provided in time.',
|
|
38675
|
+
properties: {
|
|
38676
|
+
created_at: {
|
|
38677
|
+
description:
|
|
38678
|
+
'Date and time at which Seam created the warning.',
|
|
38679
|
+
format: 'date-time',
|
|
38680
|
+
type: 'string',
|
|
38681
|
+
},
|
|
38682
|
+
message: {
|
|
38683
|
+
description:
|
|
38684
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
38685
|
+
type: 'string',
|
|
38686
|
+
},
|
|
38687
|
+
original_access_method_id: {
|
|
38688
|
+
description:
|
|
38689
|
+
'ID of the original access method from which this backup access method was split, if applicable.',
|
|
38690
|
+
format: 'uuid',
|
|
38691
|
+
type: 'string',
|
|
38692
|
+
},
|
|
38693
|
+
warning_code: {
|
|
38694
|
+
description:
|
|
38695
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
38696
|
+
enum: ['pulled_backup_access_code'],
|
|
38697
|
+
type: 'string',
|
|
38698
|
+
},
|
|
38699
|
+
},
|
|
38700
|
+
required: [
|
|
38701
|
+
'created_at',
|
|
38702
|
+
'message',
|
|
38703
|
+
'warning_code',
|
|
38704
|
+
],
|
|
38705
|
+
type: 'object',
|
|
38706
|
+
},
|
|
38641
38707
|
],
|
|
38642
38708
|
},
|
|
38643
38709
|
type: 'array',
|
|
@@ -39043,6 +39109,41 @@ export default {
|
|
|
39043
39109
|
],
|
|
39044
39110
|
type: 'object',
|
|
39045
39111
|
},
|
|
39112
|
+
{
|
|
39113
|
+
description:
|
|
39114
|
+
'Indicates that all attempts to create an access code on this device before the start time failed and a backup access code was used to ensure access was provided in time.',
|
|
39115
|
+
properties: {
|
|
39116
|
+
created_at: {
|
|
39117
|
+
description:
|
|
39118
|
+
'Date and time at which Seam created the warning.',
|
|
39119
|
+
format: 'date-time',
|
|
39120
|
+
type: 'string',
|
|
39121
|
+
},
|
|
39122
|
+
message: {
|
|
39123
|
+
description:
|
|
39124
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
39125
|
+
type: 'string',
|
|
39126
|
+
},
|
|
39127
|
+
original_access_method_id: {
|
|
39128
|
+
description:
|
|
39129
|
+
'ID of the original access method from which this backup access method was split, if applicable.',
|
|
39130
|
+
format: 'uuid',
|
|
39131
|
+
type: 'string',
|
|
39132
|
+
},
|
|
39133
|
+
warning_code: {
|
|
39134
|
+
description:
|
|
39135
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
39136
|
+
enum: ['pulled_backup_access_code'],
|
|
39137
|
+
type: 'string',
|
|
39138
|
+
},
|
|
39139
|
+
},
|
|
39140
|
+
required: [
|
|
39141
|
+
'created_at',
|
|
39142
|
+
'message',
|
|
39143
|
+
'warning_code',
|
|
39144
|
+
],
|
|
39145
|
+
type: 'object',
|
|
39146
|
+
},
|
|
39046
39147
|
],
|
|
39047
39148
|
},
|
|
39048
39149
|
type: 'array',
|
|
@@ -39481,6 +39582,41 @@ export default {
|
|
|
39481
39582
|
],
|
|
39482
39583
|
type: 'object',
|
|
39483
39584
|
},
|
|
39585
|
+
{
|
|
39586
|
+
description:
|
|
39587
|
+
'Indicates that all attempts to create an access code on this device before the start time failed and a backup access code was used to ensure access was provided in time.',
|
|
39588
|
+
properties: {
|
|
39589
|
+
created_at: {
|
|
39590
|
+
description:
|
|
39591
|
+
'Date and time at which Seam created the warning.',
|
|
39592
|
+
format: 'date-time',
|
|
39593
|
+
type: 'string',
|
|
39594
|
+
},
|
|
39595
|
+
message: {
|
|
39596
|
+
description:
|
|
39597
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
39598
|
+
type: 'string',
|
|
39599
|
+
},
|
|
39600
|
+
original_access_method_id: {
|
|
39601
|
+
description:
|
|
39602
|
+
'ID of the original access method from which this backup access method was split, if applicable.',
|
|
39603
|
+
format: 'uuid',
|
|
39604
|
+
type: 'string',
|
|
39605
|
+
},
|
|
39606
|
+
warning_code: {
|
|
39607
|
+
description:
|
|
39608
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
39609
|
+
enum: ['pulled_backup_access_code'],
|
|
39610
|
+
type: 'string',
|
|
39611
|
+
},
|
|
39612
|
+
},
|
|
39613
|
+
required: [
|
|
39614
|
+
'created_at',
|
|
39615
|
+
'message',
|
|
39616
|
+
'warning_code',
|
|
39617
|
+
],
|
|
39618
|
+
type: 'object',
|
|
39619
|
+
},
|
|
39484
39620
|
],
|
|
39485
39621
|
},
|
|
39486
39622
|
type: 'array',
|
|
@@ -39909,6 +40045,41 @@ export default {
|
|
|
39909
40045
|
],
|
|
39910
40046
|
type: 'object',
|
|
39911
40047
|
},
|
|
40048
|
+
{
|
|
40049
|
+
description:
|
|
40050
|
+
'Indicates that all attempts to create an access code on this device before the start time failed and a backup access code was used to ensure access was provided in time.',
|
|
40051
|
+
properties: {
|
|
40052
|
+
created_at: {
|
|
40053
|
+
description:
|
|
40054
|
+
'Date and time at which Seam created the warning.',
|
|
40055
|
+
format: 'date-time',
|
|
40056
|
+
type: 'string',
|
|
40057
|
+
},
|
|
40058
|
+
message: {
|
|
40059
|
+
description:
|
|
40060
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
40061
|
+
type: 'string',
|
|
40062
|
+
},
|
|
40063
|
+
original_access_method_id: {
|
|
40064
|
+
description:
|
|
40065
|
+
'ID of the original access method from which this backup access method was split, if applicable.',
|
|
40066
|
+
format: 'uuid',
|
|
40067
|
+
type: 'string',
|
|
40068
|
+
},
|
|
40069
|
+
warning_code: {
|
|
40070
|
+
description:
|
|
40071
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
40072
|
+
enum: ['pulled_backup_access_code'],
|
|
40073
|
+
type: 'string',
|
|
40074
|
+
},
|
|
40075
|
+
},
|
|
40076
|
+
required: [
|
|
40077
|
+
'created_at',
|
|
40078
|
+
'message',
|
|
40079
|
+
'warning_code',
|
|
40080
|
+
],
|
|
40081
|
+
type: 'object',
|
|
40082
|
+
},
|
|
39912
40083
|
],
|
|
39913
40084
|
},
|
|
39914
40085
|
type: 'array',
|
|
@@ -14254,6 +14254,16 @@ export type Routes = {
|
|
|
14254
14254
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14255
14255
|
warning_code: 'updating_access_times'
|
|
14256
14256
|
}
|
|
14257
|
+
| {
|
|
14258
|
+
/** Date and time at which Seam created the warning. */
|
|
14259
|
+
created_at: string
|
|
14260
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
14261
|
+
message: string
|
|
14262
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14263
|
+
warning_code: 'pulled_backup_access_code'
|
|
14264
|
+
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
14265
|
+
original_access_method_id?: string | undefined
|
|
14266
|
+
}
|
|
14257
14267
|
)[]
|
|
14258
14268
|
/** Pending mutations for the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). Indicates operations that are in progress. */
|
|
14259
14269
|
pending_mutations: (
|
|
@@ -16658,6 +16668,16 @@ export type Routes = {
|
|
|
16658
16668
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
16659
16669
|
warning_code: 'updating_access_times'
|
|
16660
16670
|
}
|
|
16671
|
+
| {
|
|
16672
|
+
/** Date and time at which Seam created the warning. */
|
|
16673
|
+
created_at: string
|
|
16674
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
16675
|
+
message: string
|
|
16676
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
16677
|
+
warning_code: 'pulled_backup_access_code'
|
|
16678
|
+
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
16679
|
+
original_access_method_id?: string | undefined
|
|
16680
|
+
}
|
|
16661
16681
|
)[]
|
|
16662
16682
|
/** Pending mutations for the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). Indicates operations that are in progress. */
|
|
16663
16683
|
pending_mutations: (
|
|
@@ -18814,6 +18834,16 @@ export type Routes = {
|
|
|
18814
18834
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18815
18835
|
warning_code: 'updating_access_times'
|
|
18816
18836
|
}
|
|
18837
|
+
| {
|
|
18838
|
+
/** Date and time at which Seam created the warning. */
|
|
18839
|
+
created_at: string
|
|
18840
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18841
|
+
message: string
|
|
18842
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18843
|
+
warning_code: 'pulled_backup_access_code'
|
|
18844
|
+
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
18845
|
+
original_access_method_id?: string | undefined
|
|
18846
|
+
}
|
|
18817
18847
|
)[]
|
|
18818
18848
|
/** Pending mutations for the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). Indicates operations that are in progress. */
|
|
18819
18849
|
pending_mutations: (
|
|
@@ -19163,6 +19193,16 @@ export type Routes = {
|
|
|
19163
19193
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19164
19194
|
warning_code: 'updating_access_times'
|
|
19165
19195
|
}
|
|
19196
|
+
| {
|
|
19197
|
+
/** Date and time at which Seam created the warning. */
|
|
19198
|
+
created_at: string
|
|
19199
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19200
|
+
message: string
|
|
19201
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19202
|
+
warning_code: 'pulled_backup_access_code'
|
|
19203
|
+
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
19204
|
+
original_access_method_id?: string | undefined
|
|
19205
|
+
}
|
|
19166
19206
|
)[]
|
|
19167
19207
|
/** Pending mutations for the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). Indicates operations that are in progress. */
|
|
19168
19208
|
pending_mutations: (
|
|
@@ -19280,6 +19320,16 @@ export type Routes = {
|
|
|
19280
19320
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19281
19321
|
warning_code: 'updating_access_times'
|
|
19282
19322
|
}
|
|
19323
|
+
| {
|
|
19324
|
+
/** Date and time at which Seam created the warning. */
|
|
19325
|
+
created_at: string
|
|
19326
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19327
|
+
message: string
|
|
19328
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19329
|
+
warning_code: 'pulled_backup_access_code'
|
|
19330
|
+
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
19331
|
+
original_access_method_id?: string | undefined
|
|
19332
|
+
}
|
|
19283
19333
|
)[]
|
|
19284
19334
|
/** Pending mutations for the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). Indicates operations that are in progress. */
|
|
19285
19335
|
pending_mutations: (
|
|
@@ -19400,6 +19450,16 @@ export type Routes = {
|
|
|
19400
19450
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19401
19451
|
warning_code: 'updating_access_times'
|
|
19402
19452
|
}
|
|
19453
|
+
| {
|
|
19454
|
+
/** Date and time at which Seam created the warning. */
|
|
19455
|
+
created_at: string
|
|
19456
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19457
|
+
message: string
|
|
19458
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19459
|
+
warning_code: 'pulled_backup_access_code'
|
|
19460
|
+
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
19461
|
+
original_access_method_id?: string | undefined
|
|
19462
|
+
}
|
|
19403
19463
|
)[]
|
|
19404
19464
|
/** Pending mutations for the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). Indicates operations that are in progress. */
|
|
19405
19465
|
pending_mutations: (
|
|
@@ -77251,6 +77311,16 @@ export type Routes = {
|
|
|
77251
77311
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
77252
77312
|
warning_code: 'updating_access_times'
|
|
77253
77313
|
}
|
|
77314
|
+
| {
|
|
77315
|
+
/** Date and time at which Seam created the warning. */
|
|
77316
|
+
created_at: string
|
|
77317
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
77318
|
+
message: string
|
|
77319
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
77320
|
+
warning_code: 'pulled_backup_access_code'
|
|
77321
|
+
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
77322
|
+
original_access_method_id?: string | undefined
|
|
77323
|
+
}
|
|
77254
77324
|
)[]
|
|
77255
77325
|
/** Pending mutations for the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). Indicates operations that are in progress. */
|
|
77256
77326
|
pending_mutations: (
|
|
@@ -106223,6 +106293,16 @@ export type Routes = {
|
|
|
106223
106293
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
106224
106294
|
warning_code: 'updating_access_times'
|
|
106225
106295
|
}
|
|
106296
|
+
| {
|
|
106297
|
+
/** Date and time at which Seam created the warning. */
|
|
106298
|
+
created_at: string
|
|
106299
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
106300
|
+
message: string
|
|
106301
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
106302
|
+
warning_code: 'pulled_backup_access_code'
|
|
106303
|
+
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
106304
|
+
original_access_method_id?: string | undefined
|
|
106305
|
+
}
|
|
106226
106306
|
)[]
|
|
106227
106307
|
/** Pending mutations for the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). Indicates operations that are in progress. */
|
|
106228
106308
|
pending_mutations: (
|