@seamapi/types 1.746.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 +164 -34
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +280 -60
- package/dist/index.cjs +164 -34
- 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 +146 -58
- package/lib/seam/connect/openapi.js +152 -32
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +72 -2
- 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 +177 -32
- package/src/lib/seam/connect/route-types.ts +80 -2
|
@@ -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: ({
|
|
@@ -58739,8 +58793,6 @@ export type Routes = {
|
|
|
58739
58793
|
method: 'PATCH' | 'POST';
|
|
58740
58794
|
queryParams: {};
|
|
58741
58795
|
jsonBody: {
|
|
58742
|
-
/** Key of the customer. */
|
|
58743
|
-
customer_key: string;
|
|
58744
58796
|
/** Access automation rules configuration. */
|
|
58745
58797
|
access_rules?: {
|
|
58746
58798
|
reservation_created?: {
|
|
@@ -65006,6 +65058,15 @@ export type Routes = {
|
|
|
65006
65058
|
message: string;
|
|
65007
65059
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65008
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;
|
|
65009
65070
|
})[];
|
|
65010
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. */
|
|
65011
65072
|
pending_mutations: ({
|
|
@@ -89501,6 +89562,15 @@ export type Routes = {
|
|
|
89501
89562
|
message: string;
|
|
89502
89563
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
89503
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;
|
|
89504
89574
|
})[];
|
|
89505
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. */
|
|
89506
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',
|
|
@@ -61649,7 +61820,7 @@ export default {
|
|
|
61649
61820
|
'/seam/customer/v1/automations/update': {
|
|
61650
61821
|
patch: {
|
|
61651
61822
|
description:
|
|
61652
|
-
'Updates the automation configuration for a customer portal workspace
|
|
61823
|
+
'Updates the automation configuration for a customer portal workspace.',
|
|
61653
61824
|
operationId: 'seamCustomerV1AutomationsUpdatePatch',
|
|
61654
61825
|
requestBody: {
|
|
61655
61826
|
content: {
|
|
@@ -61918,11 +62089,7 @@ export default {
|
|
|
61918
62089
|
400: { description: 'Bad Request' },
|
|
61919
62090
|
401: { description: 'Unauthorized' },
|
|
61920
62091
|
},
|
|
61921
|
-
security: [
|
|
61922
|
-
{ console_session_with_workspace: [] },
|
|
61923
|
-
{ api_key: [] },
|
|
61924
|
-
{ client_session_with_customer: [] },
|
|
61925
|
-
],
|
|
62092
|
+
security: [{ console_session_with_workspace: [] }, { api_key: [] }],
|
|
61926
62093
|
summary: '/seam/customer/v1/automations/update',
|
|
61927
62094
|
tags: [],
|
|
61928
62095
|
'x-fern-sdk-group-name': ['seam', 'customer', 'v1', 'automations'],
|
|
@@ -61933,7 +62100,7 @@ export default {
|
|
|
61933
62100
|
},
|
|
61934
62101
|
post: {
|
|
61935
62102
|
description:
|
|
61936
|
-
'Updates the automation configuration for a customer portal workspace
|
|
62103
|
+
'Updates the automation configuration for a customer portal workspace.',
|
|
61937
62104
|
operationId: 'seamCustomerV1AutomationsUpdatePost',
|
|
61938
62105
|
requestBody: {
|
|
61939
62106
|
content: {
|
|
@@ -62202,11 +62369,7 @@ export default {
|
|
|
62202
62369
|
400: { description: 'Bad Request' },
|
|
62203
62370
|
401: { description: 'Unauthorized' },
|
|
62204
62371
|
},
|
|
62205
|
-
security: [
|
|
62206
|
-
{ console_session_with_workspace: [] },
|
|
62207
|
-
{ api_key: [] },
|
|
62208
|
-
{ client_session_with_customer: [] },
|
|
62209
|
-
],
|
|
62372
|
+
security: [{ console_session_with_workspace: [] }, { api_key: [] }],
|
|
62210
62373
|
summary: '/seam/customer/v1/automations/update',
|
|
62211
62374
|
tags: [],
|
|
62212
62375
|
'x-fern-sdk-group-name': ['seam', 'customer', 'v1', 'automations'],
|
|
@@ -64065,12 +64228,7 @@ export default {
|
|
|
64065
64228
|
},
|
|
64066
64229
|
type: 'object',
|
|
64067
64230
|
},
|
|
64068
|
-
customer_key: {
|
|
64069
|
-
description: 'Key of the customer.',
|
|
64070
|
-
type: 'string',
|
|
64071
|
-
},
|
|
64072
64231
|
},
|
|
64073
|
-
required: ['customer_key'],
|
|
64074
64232
|
type: 'object',
|
|
64075
64233
|
},
|
|
64076
64234
|
},
|
|
@@ -64092,11 +64250,7 @@ export default {
|
|
|
64092
64250
|
400: { description: 'Bad Request' },
|
|
64093
64251
|
401: { description: 'Unauthorized' },
|
|
64094
64252
|
},
|
|
64095
|
-
security: [
|
|
64096
|
-
{ pat_with_workspace: [] },
|
|
64097
|
-
{ console_session_with_workspace: [] },
|
|
64098
|
-
{ api_key: [] },
|
|
64099
|
-
],
|
|
64253
|
+
security: [{ client_session_with_customer: [] }],
|
|
64100
64254
|
summary: '/seam/customer/v1/customers/automations/update',
|
|
64101
64255
|
tags: [],
|
|
64102
64256
|
'x-fern-sdk-group-name': [
|
|
@@ -64359,12 +64513,7 @@ export default {
|
|
|
64359
64513
|
},
|
|
64360
64514
|
type: 'object',
|
|
64361
64515
|
},
|
|
64362
|
-
customer_key: {
|
|
64363
|
-
description: 'Key of the customer.',
|
|
64364
|
-
type: 'string',
|
|
64365
|
-
},
|
|
64366
64516
|
},
|
|
64367
|
-
required: ['customer_key'],
|
|
64368
64517
|
type: 'object',
|
|
64369
64518
|
},
|
|
64370
64519
|
},
|
|
@@ -64386,11 +64535,7 @@ export default {
|
|
|
64386
64535
|
400: { description: 'Bad Request' },
|
|
64387
64536
|
401: { description: 'Unauthorized' },
|
|
64388
64537
|
},
|
|
64389
|
-
security: [
|
|
64390
|
-
{ pat_with_workspace: [] },
|
|
64391
|
-
{ console_session_with_workspace: [] },
|
|
64392
|
-
{ api_key: [] },
|
|
64393
|
-
],
|
|
64538
|
+
security: [{ client_session_with_customer: [] }],
|
|
64394
64539
|
summary: '/seam/customer/v1/customers/automations/update',
|
|
64395
64540
|
tags: [],
|
|
64396
64541
|
'x-fern-sdk-group-name': [
|
|
@@ -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: (
|
|
@@ -69741,8 +69801,6 @@ export type Routes = {
|
|
|
69741
69801
|
method: 'PATCH' | 'POST'
|
|
69742
69802
|
queryParams: {}
|
|
69743
69803
|
jsonBody: {
|
|
69744
|
-
/** Key of the customer. */
|
|
69745
|
-
customer_key: string
|
|
69746
69804
|
/** Access automation rules configuration. */
|
|
69747
69805
|
access_rules?:
|
|
69748
69806
|
| {
|
|
@@ -77253,6 +77311,16 @@ export type Routes = {
|
|
|
77253
77311
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
77254
77312
|
warning_code: 'updating_access_times'
|
|
77255
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
|
+
}
|
|
77256
77324
|
)[]
|
|
77257
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. */
|
|
77258
77326
|
pending_mutations: (
|
|
@@ -106225,6 +106293,16 @@ export type Routes = {
|
|
|
106225
106293
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
106226
106294
|
warning_code: 'updating_access_times'
|
|
106227
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
|
+
}
|
|
106228
106306
|
)[]
|
|
106229
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. */
|
|
106230
106308
|
pending_mutations: (
|