@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
|
@@ -2318,6 +2318,32 @@ export default {
|
|
|
2318
2318
|
required: ['created_at', 'message', 'warning_code'],
|
|
2319
2319
|
type: 'object',
|
|
2320
2320
|
},
|
|
2321
|
+
{
|
|
2322
|
+
description: '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.',
|
|
2323
|
+
properties: {
|
|
2324
|
+
created_at: {
|
|
2325
|
+
description: 'Date and time at which Seam created the warning.',
|
|
2326
|
+
format: 'date-time',
|
|
2327
|
+
type: 'string',
|
|
2328
|
+
},
|
|
2329
|
+
message: {
|
|
2330
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
2331
|
+
type: 'string',
|
|
2332
|
+
},
|
|
2333
|
+
original_access_method_id: {
|
|
2334
|
+
description: 'ID of the original access method from which this backup access method was split, if applicable.',
|
|
2335
|
+
format: 'uuid',
|
|
2336
|
+
type: 'string',
|
|
2337
|
+
},
|
|
2338
|
+
warning_code: {
|
|
2339
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
2340
|
+
enum: ['pulled_backup_access_code'],
|
|
2341
|
+
type: 'string',
|
|
2342
|
+
},
|
|
2343
|
+
},
|
|
2344
|
+
required: ['created_at', 'message', 'warning_code'],
|
|
2345
|
+
type: 'object',
|
|
2346
|
+
},
|
|
2321
2347
|
],
|
|
2322
2348
|
},
|
|
2323
2349
|
type: 'array',
|
|
@@ -34806,6 +34832,36 @@ export default {
|
|
|
34806
34832
|
],
|
|
34807
34833
|
type: 'object',
|
|
34808
34834
|
},
|
|
34835
|
+
{
|
|
34836
|
+
description: '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.',
|
|
34837
|
+
properties: {
|
|
34838
|
+
created_at: {
|
|
34839
|
+
description: 'Date and time at which Seam created the warning.',
|
|
34840
|
+
format: 'date-time',
|
|
34841
|
+
type: 'string',
|
|
34842
|
+
},
|
|
34843
|
+
message: {
|
|
34844
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
34845
|
+
type: 'string',
|
|
34846
|
+
},
|
|
34847
|
+
original_access_method_id: {
|
|
34848
|
+
description: 'ID of the original access method from which this backup access method was split, if applicable.',
|
|
34849
|
+
format: 'uuid',
|
|
34850
|
+
type: 'string',
|
|
34851
|
+
},
|
|
34852
|
+
warning_code: {
|
|
34853
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
34854
|
+
enum: ['pulled_backup_access_code'],
|
|
34855
|
+
type: 'string',
|
|
34856
|
+
},
|
|
34857
|
+
},
|
|
34858
|
+
required: [
|
|
34859
|
+
'created_at',
|
|
34860
|
+
'message',
|
|
34861
|
+
'warning_code',
|
|
34862
|
+
],
|
|
34863
|
+
type: 'object',
|
|
34864
|
+
},
|
|
34809
34865
|
],
|
|
34810
34866
|
},
|
|
34811
34867
|
type: 'array',
|
|
@@ -35168,6 +35224,36 @@ export default {
|
|
|
35168
35224
|
],
|
|
35169
35225
|
type: 'object',
|
|
35170
35226
|
},
|
|
35227
|
+
{
|
|
35228
|
+
description: '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.',
|
|
35229
|
+
properties: {
|
|
35230
|
+
created_at: {
|
|
35231
|
+
description: 'Date and time at which Seam created the warning.',
|
|
35232
|
+
format: 'date-time',
|
|
35233
|
+
type: 'string',
|
|
35234
|
+
},
|
|
35235
|
+
message: {
|
|
35236
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
35237
|
+
type: 'string',
|
|
35238
|
+
},
|
|
35239
|
+
original_access_method_id: {
|
|
35240
|
+
description: 'ID of the original access method from which this backup access method was split, if applicable.',
|
|
35241
|
+
format: 'uuid',
|
|
35242
|
+
type: 'string',
|
|
35243
|
+
},
|
|
35244
|
+
warning_code: {
|
|
35245
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
35246
|
+
enum: ['pulled_backup_access_code'],
|
|
35247
|
+
type: 'string',
|
|
35248
|
+
},
|
|
35249
|
+
},
|
|
35250
|
+
required: [
|
|
35251
|
+
'created_at',
|
|
35252
|
+
'message',
|
|
35253
|
+
'warning_code',
|
|
35254
|
+
],
|
|
35255
|
+
type: 'object',
|
|
35256
|
+
},
|
|
35171
35257
|
],
|
|
35172
35258
|
},
|
|
35173
35259
|
type: 'array',
|
|
@@ -35558,6 +35644,36 @@ export default {
|
|
|
35558
35644
|
],
|
|
35559
35645
|
type: 'object',
|
|
35560
35646
|
},
|
|
35647
|
+
{
|
|
35648
|
+
description: '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.',
|
|
35649
|
+
properties: {
|
|
35650
|
+
created_at: {
|
|
35651
|
+
description: 'Date and time at which Seam created the warning.',
|
|
35652
|
+
format: 'date-time',
|
|
35653
|
+
type: 'string',
|
|
35654
|
+
},
|
|
35655
|
+
message: {
|
|
35656
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
35657
|
+
type: 'string',
|
|
35658
|
+
},
|
|
35659
|
+
original_access_method_id: {
|
|
35660
|
+
description: 'ID of the original access method from which this backup access method was split, if applicable.',
|
|
35661
|
+
format: 'uuid',
|
|
35662
|
+
type: 'string',
|
|
35663
|
+
},
|
|
35664
|
+
warning_code: {
|
|
35665
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
35666
|
+
enum: ['pulled_backup_access_code'],
|
|
35667
|
+
type: 'string',
|
|
35668
|
+
},
|
|
35669
|
+
},
|
|
35670
|
+
required: [
|
|
35671
|
+
'created_at',
|
|
35672
|
+
'message',
|
|
35673
|
+
'warning_code',
|
|
35674
|
+
],
|
|
35675
|
+
type: 'object',
|
|
35676
|
+
},
|
|
35561
35677
|
],
|
|
35562
35678
|
},
|
|
35563
35679
|
type: 'array',
|
|
@@ -35938,6 +36054,36 @@ export default {
|
|
|
35938
36054
|
],
|
|
35939
36055
|
type: 'object',
|
|
35940
36056
|
},
|
|
36057
|
+
{
|
|
36058
|
+
description: '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.',
|
|
36059
|
+
properties: {
|
|
36060
|
+
created_at: {
|
|
36061
|
+
description: 'Date and time at which Seam created the warning.',
|
|
36062
|
+
format: 'date-time',
|
|
36063
|
+
type: 'string',
|
|
36064
|
+
},
|
|
36065
|
+
message: {
|
|
36066
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
36067
|
+
type: 'string',
|
|
36068
|
+
},
|
|
36069
|
+
original_access_method_id: {
|
|
36070
|
+
description: 'ID of the original access method from which this backup access method was split, if applicable.',
|
|
36071
|
+
format: 'uuid',
|
|
36072
|
+
type: 'string',
|
|
36073
|
+
},
|
|
36074
|
+
warning_code: {
|
|
36075
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
36076
|
+
enum: ['pulled_backup_access_code'],
|
|
36077
|
+
type: 'string',
|
|
36078
|
+
},
|
|
36079
|
+
},
|
|
36080
|
+
required: [
|
|
36081
|
+
'created_at',
|
|
36082
|
+
'message',
|
|
36083
|
+
'warning_code',
|
|
36084
|
+
],
|
|
36085
|
+
type: 'object',
|
|
36086
|
+
},
|
|
35941
36087
|
],
|
|
35942
36088
|
},
|
|
35943
36089
|
type: 'array',
|
|
@@ -56536,7 +56682,7 @@ export default {
|
|
|
56536
56682
|
},
|
|
56537
56683
|
'/seam/customer/v1/automations/update': {
|
|
56538
56684
|
patch: {
|
|
56539
|
-
description: 'Updates the automation configuration for a customer portal workspace
|
|
56685
|
+
description: 'Updates the automation configuration for a customer portal workspace.',
|
|
56540
56686
|
operationId: 'seamCustomerV1AutomationsUpdatePatch',
|
|
56541
56687
|
requestBody: {
|
|
56542
56688
|
content: {
|
|
@@ -56805,11 +56951,7 @@ export default {
|
|
|
56805
56951
|
400: { description: 'Bad Request' },
|
|
56806
56952
|
401: { description: 'Unauthorized' },
|
|
56807
56953
|
},
|
|
56808
|
-
security: [
|
|
56809
|
-
{ console_session_with_workspace: [] },
|
|
56810
|
-
{ api_key: [] },
|
|
56811
|
-
{ client_session_with_customer: [] },
|
|
56812
|
-
],
|
|
56954
|
+
security: [{ console_session_with_workspace: [] }, { api_key: [] }],
|
|
56813
56955
|
summary: '/seam/customer/v1/automations/update',
|
|
56814
56956
|
tags: [],
|
|
56815
56957
|
'x-fern-sdk-group-name': ['seam', 'customer', 'v1', 'automations'],
|
|
@@ -56819,7 +56961,7 @@ export default {
|
|
|
56819
56961
|
'x-undocumented': 'Internal endpoint for customer portals.',
|
|
56820
56962
|
},
|
|
56821
56963
|
post: {
|
|
56822
|
-
description: 'Updates the automation configuration for a customer portal workspace
|
|
56964
|
+
description: 'Updates the automation configuration for a customer portal workspace.',
|
|
56823
56965
|
operationId: 'seamCustomerV1AutomationsUpdatePost',
|
|
56824
56966
|
requestBody: {
|
|
56825
56967
|
content: {
|
|
@@ -57088,11 +57230,7 @@ export default {
|
|
|
57088
57230
|
400: { description: 'Bad Request' },
|
|
57089
57231
|
401: { description: 'Unauthorized' },
|
|
57090
57232
|
},
|
|
57091
|
-
security: [
|
|
57092
|
-
{ console_session_with_workspace: [] },
|
|
57093
|
-
{ api_key: [] },
|
|
57094
|
-
{ client_session_with_customer: [] },
|
|
57095
|
-
],
|
|
57233
|
+
security: [{ console_session_with_workspace: [] }, { api_key: [] }],
|
|
57096
57234
|
summary: '/seam/customer/v1/automations/update',
|
|
57097
57235
|
tags: [],
|
|
57098
57236
|
'x-fern-sdk-group-name': ['seam', 'customer', 'v1', 'automations'],
|
|
@@ -58932,12 +59070,7 @@ export default {
|
|
|
58932
59070
|
},
|
|
58933
59071
|
type: 'object',
|
|
58934
59072
|
},
|
|
58935
|
-
customer_key: {
|
|
58936
|
-
description: 'Key of the customer.',
|
|
58937
|
-
type: 'string',
|
|
58938
|
-
},
|
|
58939
59073
|
},
|
|
58940
|
-
required: ['customer_key'],
|
|
58941
59074
|
type: 'object',
|
|
58942
59075
|
},
|
|
58943
59076
|
},
|
|
@@ -58959,11 +59092,7 @@ export default {
|
|
|
58959
59092
|
400: { description: 'Bad Request' },
|
|
58960
59093
|
401: { description: 'Unauthorized' },
|
|
58961
59094
|
},
|
|
58962
|
-
security: [
|
|
58963
|
-
{ pat_with_workspace: [] },
|
|
58964
|
-
{ console_session_with_workspace: [] },
|
|
58965
|
-
{ api_key: [] },
|
|
58966
|
-
],
|
|
59095
|
+
security: [{ client_session_with_customer: [] }],
|
|
58967
59096
|
summary: '/seam/customer/v1/customers/automations/update',
|
|
58968
59097
|
tags: [],
|
|
58969
59098
|
'x-fern-sdk-group-name': [
|
|
@@ -59225,12 +59354,7 @@ export default {
|
|
|
59225
59354
|
},
|
|
59226
59355
|
type: 'object',
|
|
59227
59356
|
},
|
|
59228
|
-
customer_key: {
|
|
59229
|
-
description: 'Key of the customer.',
|
|
59230
|
-
type: 'string',
|
|
59231
|
-
},
|
|
59232
59357
|
},
|
|
59233
|
-
required: ['customer_key'],
|
|
59234
59358
|
type: 'object',
|
|
59235
59359
|
},
|
|
59236
59360
|
},
|
|
@@ -59252,11 +59376,7 @@ export default {
|
|
|
59252
59376
|
400: { description: 'Bad Request' },
|
|
59253
59377
|
401: { description: 'Unauthorized' },
|
|
59254
59378
|
},
|
|
59255
|
-
security: [
|
|
59256
|
-
{ pat_with_workspace: [] },
|
|
59257
|
-
{ console_session_with_workspace: [] },
|
|
59258
|
-
{ api_key: [] },
|
|
59259
|
-
],
|
|
59379
|
+
security: [{ client_session_with_customer: [] }],
|
|
59260
59380
|
summary: '/seam/customer/v1/customers/automations/update',
|
|
59261
59381
|
tags: [],
|
|
59262
59382
|
'x-fern-sdk-group-name': [
|