@seamapi/types 1.823.0 → 1.824.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 +14 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +49 -0
- package/dist/index.cjs +14 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +13 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js +5 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +5 -0
- package/lib/seam/connect/models/batch.d.ts +14 -0
- package/lib/seam/connect/openapi.js +10 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +22 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +7 -0
- package/src/lib/seam/connect/openapi.ts +12 -0
- package/src/lib/seam/connect/route-types.ts +22 -0
|
@@ -1457,6 +1457,8 @@ export type Routes = {
|
|
|
1457
1457
|
created_at?: string | undefined;
|
|
1458
1458
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1459
1459
|
error_code: 'duplicate_code_on_device';
|
|
1460
|
+
/** ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it. */
|
|
1461
|
+
unmanaged_access_code_id?: string | undefined;
|
|
1460
1462
|
} | {
|
|
1461
1463
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1462
1464
|
message: string;
|
|
@@ -2094,6 +2096,8 @@ export type Routes = {
|
|
|
2094
2096
|
created_at?: string | undefined;
|
|
2095
2097
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2096
2098
|
error_code: 'duplicate_code_on_device';
|
|
2099
|
+
/** ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it. */
|
|
2100
|
+
unmanaged_access_code_id?: string | undefined;
|
|
2097
2101
|
} | {
|
|
2098
2102
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2099
2103
|
message: string;
|
|
@@ -4077,6 +4081,8 @@ export type Routes = {
|
|
|
4077
4081
|
created_at?: string | undefined;
|
|
4078
4082
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4079
4083
|
error_code: 'duplicate_code_on_device';
|
|
4084
|
+
/** ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it. */
|
|
4085
|
+
unmanaged_access_code_id?: string | undefined;
|
|
4080
4086
|
} | {
|
|
4081
4087
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4082
4088
|
message: string;
|
|
@@ -4760,6 +4766,8 @@ export type Routes = {
|
|
|
4760
4766
|
created_at?: string | undefined;
|
|
4761
4767
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4762
4768
|
error_code: 'duplicate_code_on_device';
|
|
4769
|
+
/** ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it. */
|
|
4770
|
+
unmanaged_access_code_id?: string | undefined;
|
|
4763
4771
|
} | {
|
|
4764
4772
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4765
4773
|
message: string;
|
|
@@ -5386,6 +5394,8 @@ export type Routes = {
|
|
|
5386
5394
|
created_at?: string | undefined;
|
|
5387
5395
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5388
5396
|
error_code: 'duplicate_code_on_device';
|
|
5397
|
+
/** ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it. */
|
|
5398
|
+
unmanaged_access_code_id?: string | undefined;
|
|
5389
5399
|
} | {
|
|
5390
5400
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5391
5401
|
message: string;
|
|
@@ -5989,6 +5999,8 @@ export type Routes = {
|
|
|
5989
5999
|
created_at?: string | undefined;
|
|
5990
6000
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5991
6001
|
error_code: 'duplicate_code_on_device';
|
|
6002
|
+
/** ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it. */
|
|
6003
|
+
unmanaged_access_code_id?: string | undefined;
|
|
5992
6004
|
} | {
|
|
5993
6005
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5994
6006
|
message: string;
|
|
@@ -6627,6 +6639,8 @@ export type Routes = {
|
|
|
6627
6639
|
created_at?: string | undefined;
|
|
6628
6640
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6629
6641
|
error_code: 'duplicate_code_on_device';
|
|
6642
|
+
/** ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it. */
|
|
6643
|
+
unmanaged_access_code_id?: string | undefined;
|
|
6630
6644
|
} | {
|
|
6631
6645
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6632
6646
|
message: string;
|
|
@@ -8517,6 +8531,8 @@ export type Routes = {
|
|
|
8517
8531
|
created_at?: string | undefined;
|
|
8518
8532
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8519
8533
|
error_code: 'duplicate_code_on_device';
|
|
8534
|
+
/** ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it. */
|
|
8535
|
+
unmanaged_access_code_id?: string | undefined;
|
|
8520
8536
|
} | {
|
|
8521
8537
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8522
8538
|
message: string;
|
|
@@ -9037,6 +9053,8 @@ export type Routes = {
|
|
|
9037
9053
|
created_at?: string | undefined;
|
|
9038
9054
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9039
9055
|
error_code: 'duplicate_code_on_device';
|
|
9056
|
+
/** ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it. */
|
|
9057
|
+
unmanaged_access_code_id?: string | undefined;
|
|
9040
9058
|
} | {
|
|
9041
9059
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9042
9060
|
message: string;
|
|
@@ -99815,6 +99833,8 @@ export type Routes = {
|
|
|
99815
99833
|
created_at?: string | undefined;
|
|
99816
99834
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
99817
99835
|
error_code: 'duplicate_code_on_device';
|
|
99836
|
+
/** ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it. */
|
|
99837
|
+
unmanaged_access_code_id?: string | undefined;
|
|
99818
99838
|
} | {
|
|
99819
99839
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99820
99840
|
message: string;
|
|
@@ -100319,6 +100339,8 @@ export type Routes = {
|
|
|
100319
100339
|
created_at?: string | undefined;
|
|
100320
100340
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
100321
100341
|
error_code: 'duplicate_code_on_device';
|
|
100342
|
+
/** ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it. */
|
|
100343
|
+
unmanaged_access_code_id?: string | undefined;
|
|
100322
100344
|
} | {
|
|
100323
100345
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
100324
100346
|
message: string;
|
package/package.json
CHANGED
|
@@ -70,6 +70,13 @@ const duplicate_code_on_device = common_access_code_error
|
|
|
70
70
|
error_code: z
|
|
71
71
|
.literal('duplicate_code_on_device')
|
|
72
72
|
.describe(error_code_description),
|
|
73
|
+
unmanaged_access_code_id: z
|
|
74
|
+
.string()
|
|
75
|
+
.uuid()
|
|
76
|
+
.optional()
|
|
77
|
+
.describe(
|
|
78
|
+
'ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it.',
|
|
79
|
+
),
|
|
73
80
|
})
|
|
74
81
|
.describe('Duplicate access code detected on device.')
|
|
75
82
|
|
|
@@ -282,6 +282,12 @@ const openapi: OpenAPISpec = {
|
|
|
282
282
|
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
283
283
|
type: 'string',
|
|
284
284
|
},
|
|
285
|
+
unmanaged_access_code_id: {
|
|
286
|
+
description:
|
|
287
|
+
'ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it.',
|
|
288
|
+
format: 'uuid',
|
|
289
|
+
type: 'string',
|
|
290
|
+
},
|
|
285
291
|
},
|
|
286
292
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
287
293
|
type: 'object',
|
|
@@ -26477,6 +26483,12 @@ const openapi: OpenAPISpec = {
|
|
|
26477
26483
|
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
26478
26484
|
type: 'string',
|
|
26479
26485
|
},
|
|
26486
|
+
unmanaged_access_code_id: {
|
|
26487
|
+
description:
|
|
26488
|
+
'ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it.',
|
|
26489
|
+
format: 'uuid',
|
|
26490
|
+
type: 'string',
|
|
26491
|
+
},
|
|
26480
26492
|
},
|
|
26481
26493
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
26482
26494
|
type: 'object',
|
|
@@ -1671,6 +1671,8 @@ export type Routes = {
|
|
|
1671
1671
|
created_at?: string | undefined
|
|
1672
1672
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1673
1673
|
error_code: 'duplicate_code_on_device'
|
|
1674
|
+
/** ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it. */
|
|
1675
|
+
unmanaged_access_code_id?: string | undefined
|
|
1674
1676
|
}
|
|
1675
1677
|
| {
|
|
1676
1678
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -2372,6 +2374,8 @@ export type Routes = {
|
|
|
2372
2374
|
created_at?: string | undefined
|
|
2373
2375
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2374
2376
|
error_code: 'duplicate_code_on_device'
|
|
2377
|
+
/** ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it. */
|
|
2378
|
+
unmanaged_access_code_id?: string | undefined
|
|
2375
2379
|
}
|
|
2376
2380
|
| {
|
|
2377
2381
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -4627,6 +4631,8 @@ export type Routes = {
|
|
|
4627
4631
|
created_at?: string | undefined
|
|
4628
4632
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4629
4633
|
error_code: 'duplicate_code_on_device'
|
|
4634
|
+
/** ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it. */
|
|
4635
|
+
unmanaged_access_code_id?: string | undefined
|
|
4630
4636
|
}
|
|
4631
4637
|
| {
|
|
4632
4638
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -5415,6 +5421,8 @@ export type Routes = {
|
|
|
5415
5421
|
created_at?: string | undefined
|
|
5416
5422
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5417
5423
|
error_code: 'duplicate_code_on_device'
|
|
5424
|
+
/** ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it. */
|
|
5425
|
+
unmanaged_access_code_id?: string | undefined
|
|
5418
5426
|
}
|
|
5419
5427
|
| {
|
|
5420
5428
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -6105,6 +6113,8 @@ export type Routes = {
|
|
|
6105
6113
|
created_at?: string | undefined
|
|
6106
6114
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6107
6115
|
error_code: 'duplicate_code_on_device'
|
|
6116
|
+
/** ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it. */
|
|
6117
|
+
unmanaged_access_code_id?: string | undefined
|
|
6108
6118
|
}
|
|
6109
6119
|
| {
|
|
6110
6120
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -6772,6 +6782,8 @@ export type Routes = {
|
|
|
6772
6782
|
created_at?: string | undefined
|
|
6773
6783
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6774
6784
|
error_code: 'duplicate_code_on_device'
|
|
6785
|
+
/** ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it. */
|
|
6786
|
+
unmanaged_access_code_id?: string | undefined
|
|
6775
6787
|
}
|
|
6776
6788
|
| {
|
|
6777
6789
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -7474,6 +7486,8 @@ export type Routes = {
|
|
|
7474
7486
|
created_at?: string | undefined
|
|
7475
7487
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7476
7488
|
error_code: 'duplicate_code_on_device'
|
|
7489
|
+
/** ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it. */
|
|
7490
|
+
unmanaged_access_code_id?: string | undefined
|
|
7477
7491
|
}
|
|
7478
7492
|
| {
|
|
7479
7493
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -9629,6 +9643,8 @@ export type Routes = {
|
|
|
9629
9643
|
created_at?: string | undefined
|
|
9630
9644
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9631
9645
|
error_code: 'duplicate_code_on_device'
|
|
9646
|
+
/** ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it. */
|
|
9647
|
+
unmanaged_access_code_id?: string | undefined
|
|
9632
9648
|
}
|
|
9633
9649
|
| {
|
|
9634
9650
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -10206,6 +10222,8 @@ export type Routes = {
|
|
|
10206
10222
|
created_at?: string | undefined
|
|
10207
10223
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10208
10224
|
error_code: 'duplicate_code_on_device'
|
|
10225
|
+
/** ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it. */
|
|
10226
|
+
unmanaged_access_code_id?: string | undefined
|
|
10209
10227
|
}
|
|
10210
10228
|
| {
|
|
10211
10229
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -118706,6 +118724,8 @@ export type Routes = {
|
|
|
118706
118724
|
created_at?: string | undefined
|
|
118707
118725
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
118708
118726
|
error_code: 'duplicate_code_on_device'
|
|
118727
|
+
/** ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it. */
|
|
118728
|
+
unmanaged_access_code_id?: string | undefined
|
|
118709
118729
|
}
|
|
118710
118730
|
| {
|
|
118711
118731
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -119269,6 +119289,8 @@ export type Routes = {
|
|
|
119269
119289
|
created_at?: string | undefined
|
|
119270
119290
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
119271
119291
|
error_code: 'duplicate_code_on_device'
|
|
119292
|
+
/** ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it. */
|
|
119293
|
+
unmanaged_access_code_id?: string | undefined
|
|
119272
119294
|
}
|
|
119273
119295
|
| {
|
|
119274
119296
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|