@seamapi/types 1.241.0 → 1.242.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 +204 -95
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +250 -120
- package/lib/seam/connect/models/acs/acs-user.d.ts +169 -140
- package/lib/seam/connect/models/acs/acs-user.js +32 -30
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +36 -18
- package/lib/seam/connect/openapi.js +173 -69
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +112 -42
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-user.ts +41 -35
- package/src/lib/seam/connect/openapi.ts +200 -69
- package/src/lib/seam/connect/route-types.ts +119 -42
|
@@ -2605,7 +2605,9 @@ export interface Routes {
|
|
|
2605
2605
|
warning_code: 'being_deleted'
|
|
2606
2606
|
}
|
|
2607
2607
|
| {
|
|
2608
|
+
/** Date and time at which Seam created the error. */
|
|
2608
2609
|
created_at: string
|
|
2610
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2609
2611
|
message: string
|
|
2610
2612
|
warning_code: 'failed_to_update_on_acs_system'
|
|
2611
2613
|
}
|
|
@@ -2614,33 +2616,42 @@ export interface Routes {
|
|
|
2614
2616
|
message: string
|
|
2615
2617
|
warning_code: 'salto_ks_user_not_subscribed'
|
|
2616
2618
|
}
|
|
2619
|
+
>
|
|
2620
|
+
errors: Array<
|
|
2617
2621
|
| {
|
|
2622
|
+
/** Date and time at which Seam created the error. */
|
|
2618
2623
|
created_at: string
|
|
2624
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2619
2625
|
message: string
|
|
2620
|
-
|
|
2626
|
+
error_code: 'deleted_externally'
|
|
2621
2627
|
}
|
|
2622
|
-
>
|
|
2623
|
-
errors: Array<
|
|
2624
2628
|
| {
|
|
2625
2629
|
/** Date and time at which Seam created the error. */
|
|
2626
2630
|
created_at: string
|
|
2627
2631
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2628
2632
|
message: string
|
|
2629
|
-
error_code: '
|
|
2633
|
+
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
2630
2634
|
}
|
|
2631
2635
|
| {
|
|
2632
2636
|
/** Date and time at which Seam created the error. */
|
|
2633
2637
|
created_at: string
|
|
2634
2638
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2635
2639
|
message: string
|
|
2636
|
-
|
|
2640
|
+
warning_code: 'failed_to_create_on_acs_system'
|
|
2637
2641
|
}
|
|
2638
2642
|
| {
|
|
2639
2643
|
/** Date and time at which Seam created the error. */
|
|
2640
2644
|
created_at: string
|
|
2641
2645
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2642
2646
|
message: string
|
|
2643
|
-
|
|
2647
|
+
warning_code: 'failed_to_update_on_acs_system'
|
|
2648
|
+
}
|
|
2649
|
+
| {
|
|
2650
|
+
/** Date and time at which Seam created the error. */
|
|
2651
|
+
created_at: string
|
|
2652
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2653
|
+
message: string
|
|
2654
|
+
warning_code: 'failed_to_delete_on_acs_system'
|
|
2644
2655
|
}
|
|
2645
2656
|
>
|
|
2646
2657
|
full_name?: string | undefined
|
|
@@ -3967,7 +3978,9 @@ export interface Routes {
|
|
|
3967
3978
|
warning_code: 'being_deleted'
|
|
3968
3979
|
}
|
|
3969
3980
|
| {
|
|
3981
|
+
/** Date and time at which Seam created the error. */
|
|
3970
3982
|
created_at: string
|
|
3983
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3971
3984
|
message: string
|
|
3972
3985
|
warning_code: 'failed_to_update_on_acs_system'
|
|
3973
3986
|
}
|
|
@@ -3976,33 +3989,42 @@ export interface Routes {
|
|
|
3976
3989
|
message: string
|
|
3977
3990
|
warning_code: 'salto_ks_user_not_subscribed'
|
|
3978
3991
|
}
|
|
3992
|
+
>
|
|
3993
|
+
errors: Array<
|
|
3979
3994
|
| {
|
|
3995
|
+
/** Date and time at which Seam created the error. */
|
|
3980
3996
|
created_at: string
|
|
3997
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3981
3998
|
message: string
|
|
3982
|
-
|
|
3999
|
+
error_code: 'deleted_externally'
|
|
3983
4000
|
}
|
|
3984
|
-
>
|
|
3985
|
-
errors: Array<
|
|
3986
4001
|
| {
|
|
3987
4002
|
/** Date and time at which Seam created the error. */
|
|
3988
4003
|
created_at: string
|
|
3989
4004
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3990
4005
|
message: string
|
|
3991
|
-
error_code: '
|
|
4006
|
+
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
3992
4007
|
}
|
|
3993
4008
|
| {
|
|
3994
4009
|
/** Date and time at which Seam created the error. */
|
|
3995
4010
|
created_at: string
|
|
3996
4011
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3997
4012
|
message: string
|
|
3998
|
-
|
|
4013
|
+
warning_code: 'failed_to_create_on_acs_system'
|
|
3999
4014
|
}
|
|
4000
4015
|
| {
|
|
4001
4016
|
/** Date and time at which Seam created the error. */
|
|
4002
4017
|
created_at: string
|
|
4003
4018
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4004
4019
|
message: string
|
|
4005
|
-
|
|
4020
|
+
warning_code: 'failed_to_update_on_acs_system'
|
|
4021
|
+
}
|
|
4022
|
+
| {
|
|
4023
|
+
/** Date and time at which Seam created the error. */
|
|
4024
|
+
created_at: string
|
|
4025
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4026
|
+
message: string
|
|
4027
|
+
warning_code: 'failed_to_delete_on_acs_system'
|
|
4006
4028
|
}
|
|
4007
4029
|
>
|
|
4008
4030
|
full_name?: string | undefined
|
|
@@ -4073,7 +4095,9 @@ export interface Routes {
|
|
|
4073
4095
|
warning_code: 'being_deleted'
|
|
4074
4096
|
}
|
|
4075
4097
|
| {
|
|
4098
|
+
/** Date and time at which Seam created the error. */
|
|
4076
4099
|
created_at: string
|
|
4100
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4077
4101
|
message: string
|
|
4078
4102
|
warning_code: 'failed_to_update_on_acs_system'
|
|
4079
4103
|
}
|
|
@@ -4082,33 +4106,42 @@ export interface Routes {
|
|
|
4082
4106
|
message: string
|
|
4083
4107
|
warning_code: 'salto_ks_user_not_subscribed'
|
|
4084
4108
|
}
|
|
4109
|
+
>
|
|
4110
|
+
errors: Array<
|
|
4085
4111
|
| {
|
|
4112
|
+
/** Date and time at which Seam created the error. */
|
|
4086
4113
|
created_at: string
|
|
4114
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4087
4115
|
message: string
|
|
4088
|
-
|
|
4116
|
+
error_code: 'deleted_externally'
|
|
4089
4117
|
}
|
|
4090
|
-
>
|
|
4091
|
-
errors: Array<
|
|
4092
4118
|
| {
|
|
4093
4119
|
/** Date and time at which Seam created the error. */
|
|
4094
4120
|
created_at: string
|
|
4095
4121
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4096
4122
|
message: string
|
|
4097
|
-
error_code: '
|
|
4123
|
+
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
4098
4124
|
}
|
|
4099
4125
|
| {
|
|
4100
4126
|
/** Date and time at which Seam created the error. */
|
|
4101
4127
|
created_at: string
|
|
4102
4128
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4103
4129
|
message: string
|
|
4104
|
-
|
|
4130
|
+
warning_code: 'failed_to_create_on_acs_system'
|
|
4105
4131
|
}
|
|
4106
4132
|
| {
|
|
4107
4133
|
/** Date and time at which Seam created the error. */
|
|
4108
4134
|
created_at: string
|
|
4109
4135
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4110
4136
|
message: string
|
|
4111
|
-
|
|
4137
|
+
warning_code: 'failed_to_update_on_acs_system'
|
|
4138
|
+
}
|
|
4139
|
+
| {
|
|
4140
|
+
/** Date and time at which Seam created the error. */
|
|
4141
|
+
created_at: string
|
|
4142
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4143
|
+
message: string
|
|
4144
|
+
warning_code: 'failed_to_delete_on_acs_system'
|
|
4112
4145
|
}
|
|
4113
4146
|
>
|
|
4114
4147
|
full_name?: string | undefined
|
|
@@ -4173,7 +4206,9 @@ export interface Routes {
|
|
|
4173
4206
|
warning_code: 'being_deleted'
|
|
4174
4207
|
}
|
|
4175
4208
|
| {
|
|
4209
|
+
/** Date and time at which Seam created the error. */
|
|
4176
4210
|
created_at: string
|
|
4211
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4177
4212
|
message: string
|
|
4178
4213
|
warning_code: 'failed_to_update_on_acs_system'
|
|
4179
4214
|
}
|
|
@@ -4182,33 +4217,42 @@ export interface Routes {
|
|
|
4182
4217
|
message: string
|
|
4183
4218
|
warning_code: 'salto_ks_user_not_subscribed'
|
|
4184
4219
|
}
|
|
4220
|
+
>
|
|
4221
|
+
errors: Array<
|
|
4185
4222
|
| {
|
|
4223
|
+
/** Date and time at which Seam created the error. */
|
|
4186
4224
|
created_at: string
|
|
4225
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4187
4226
|
message: string
|
|
4188
|
-
|
|
4227
|
+
error_code: 'deleted_externally'
|
|
4228
|
+
}
|
|
4229
|
+
| {
|
|
4230
|
+
/** Date and time at which Seam created the error. */
|
|
4231
|
+
created_at: string
|
|
4232
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4233
|
+
message: string
|
|
4234
|
+
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
4189
4235
|
}
|
|
4190
|
-
>
|
|
4191
|
-
errors: Array<
|
|
4192
4236
|
| {
|
|
4193
4237
|
/** Date and time at which Seam created the error. */
|
|
4194
4238
|
created_at: string
|
|
4195
4239
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4196
4240
|
message: string
|
|
4197
|
-
|
|
4241
|
+
warning_code: 'failed_to_create_on_acs_system'
|
|
4198
4242
|
}
|
|
4199
4243
|
| {
|
|
4200
4244
|
/** Date and time at which Seam created the error. */
|
|
4201
4245
|
created_at: string
|
|
4202
4246
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4203
4247
|
message: string
|
|
4204
|
-
|
|
4248
|
+
warning_code: 'failed_to_update_on_acs_system'
|
|
4205
4249
|
}
|
|
4206
4250
|
| {
|
|
4207
4251
|
/** Date and time at which Seam created the error. */
|
|
4208
4252
|
created_at: string
|
|
4209
4253
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4210
4254
|
message: string
|
|
4211
|
-
|
|
4255
|
+
warning_code: 'failed_to_delete_on_acs_system'
|
|
4212
4256
|
}
|
|
4213
4257
|
>
|
|
4214
4258
|
full_name?: string | undefined
|
|
@@ -4349,7 +4393,9 @@ export interface Routes {
|
|
|
4349
4393
|
warning_code: 'being_deleted'
|
|
4350
4394
|
}
|
|
4351
4395
|
| {
|
|
4396
|
+
/** Date and time at which Seam created the error. */
|
|
4352
4397
|
created_at: string
|
|
4398
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4353
4399
|
message: string
|
|
4354
4400
|
warning_code: 'failed_to_update_on_acs_system'
|
|
4355
4401
|
}
|
|
@@ -4358,33 +4404,42 @@ export interface Routes {
|
|
|
4358
4404
|
message: string
|
|
4359
4405
|
warning_code: 'salto_ks_user_not_subscribed'
|
|
4360
4406
|
}
|
|
4407
|
+
>
|
|
4408
|
+
errors: Array<
|
|
4361
4409
|
| {
|
|
4410
|
+
/** Date and time at which Seam created the error. */
|
|
4362
4411
|
created_at: string
|
|
4412
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4363
4413
|
message: string
|
|
4364
|
-
|
|
4414
|
+
error_code: 'deleted_externally'
|
|
4365
4415
|
}
|
|
4366
|
-
>
|
|
4367
|
-
errors: Array<
|
|
4368
4416
|
| {
|
|
4369
4417
|
/** Date and time at which Seam created the error. */
|
|
4370
4418
|
created_at: string
|
|
4371
4419
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4372
4420
|
message: string
|
|
4373
|
-
error_code: '
|
|
4421
|
+
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
4374
4422
|
}
|
|
4375
4423
|
| {
|
|
4376
4424
|
/** Date and time at which Seam created the error. */
|
|
4377
4425
|
created_at: string
|
|
4378
4426
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4379
4427
|
message: string
|
|
4380
|
-
|
|
4428
|
+
warning_code: 'failed_to_create_on_acs_system'
|
|
4381
4429
|
}
|
|
4382
4430
|
| {
|
|
4383
4431
|
/** Date and time at which Seam created the error. */
|
|
4384
4432
|
created_at: string
|
|
4385
4433
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4386
4434
|
message: string
|
|
4387
|
-
|
|
4435
|
+
warning_code: 'failed_to_update_on_acs_system'
|
|
4436
|
+
}
|
|
4437
|
+
| {
|
|
4438
|
+
/** Date and time at which Seam created the error. */
|
|
4439
|
+
created_at: string
|
|
4440
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4441
|
+
message: string
|
|
4442
|
+
warning_code: 'failed_to_delete_on_acs_system'
|
|
4388
4443
|
}
|
|
4389
4444
|
>
|
|
4390
4445
|
full_name?: string | undefined
|
|
@@ -4448,7 +4503,9 @@ export interface Routes {
|
|
|
4448
4503
|
warning_code: 'being_deleted'
|
|
4449
4504
|
}
|
|
4450
4505
|
| {
|
|
4506
|
+
/** Date and time at which Seam created the error. */
|
|
4451
4507
|
created_at: string
|
|
4508
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4452
4509
|
message: string
|
|
4453
4510
|
warning_code: 'failed_to_update_on_acs_system'
|
|
4454
4511
|
}
|
|
@@ -4457,33 +4514,42 @@ export interface Routes {
|
|
|
4457
4514
|
message: string
|
|
4458
4515
|
warning_code: 'salto_ks_user_not_subscribed'
|
|
4459
4516
|
}
|
|
4517
|
+
>
|
|
4518
|
+
errors: Array<
|
|
4460
4519
|
| {
|
|
4520
|
+
/** Date and time at which Seam created the error. */
|
|
4461
4521
|
created_at: string
|
|
4522
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4462
4523
|
message: string
|
|
4463
|
-
|
|
4524
|
+
error_code: 'deleted_externally'
|
|
4464
4525
|
}
|
|
4465
|
-
>
|
|
4466
|
-
errors: Array<
|
|
4467
4526
|
| {
|
|
4468
4527
|
/** Date and time at which Seam created the error. */
|
|
4469
4528
|
created_at: string
|
|
4470
4529
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4471
4530
|
message: string
|
|
4472
|
-
error_code: '
|
|
4531
|
+
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
4473
4532
|
}
|
|
4474
4533
|
| {
|
|
4475
4534
|
/** Date and time at which Seam created the error. */
|
|
4476
4535
|
created_at: string
|
|
4477
4536
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4478
4537
|
message: string
|
|
4479
|
-
|
|
4538
|
+
warning_code: 'failed_to_create_on_acs_system'
|
|
4480
4539
|
}
|
|
4481
4540
|
| {
|
|
4482
4541
|
/** Date and time at which Seam created the error. */
|
|
4483
4542
|
created_at: string
|
|
4484
4543
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4485
4544
|
message: string
|
|
4486
|
-
|
|
4545
|
+
warning_code: 'failed_to_update_on_acs_system'
|
|
4546
|
+
}
|
|
4547
|
+
| {
|
|
4548
|
+
/** Date and time at which Seam created the error. */
|
|
4549
|
+
created_at: string
|
|
4550
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4551
|
+
message: string
|
|
4552
|
+
warning_code: 'failed_to_delete_on_acs_system'
|
|
4487
4553
|
}
|
|
4488
4554
|
>
|
|
4489
4555
|
full_name?: string | undefined
|
|
@@ -20173,7 +20239,9 @@ export interface Routes {
|
|
|
20173
20239
|
warning_code: 'being_deleted'
|
|
20174
20240
|
}
|
|
20175
20241
|
| {
|
|
20242
|
+
/** Date and time at which Seam created the error. */
|
|
20176
20243
|
created_at: string
|
|
20244
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20177
20245
|
message: string
|
|
20178
20246
|
warning_code: 'failed_to_update_on_acs_system'
|
|
20179
20247
|
}
|
|
@@ -20182,33 +20250,42 @@ export interface Routes {
|
|
|
20182
20250
|
message: string
|
|
20183
20251
|
warning_code: 'salto_ks_user_not_subscribed'
|
|
20184
20252
|
}
|
|
20253
|
+
>
|
|
20254
|
+
errors: Array<
|
|
20185
20255
|
| {
|
|
20256
|
+
/** Date and time at which Seam created the error. */
|
|
20186
20257
|
created_at: string
|
|
20258
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20187
20259
|
message: string
|
|
20188
|
-
|
|
20260
|
+
error_code: 'deleted_externally'
|
|
20189
20261
|
}
|
|
20190
|
-
>
|
|
20191
|
-
errors: Array<
|
|
20192
20262
|
| {
|
|
20193
20263
|
/** Date and time at which Seam created the error. */
|
|
20194
20264
|
created_at: string
|
|
20195
20265
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20196
20266
|
message: string
|
|
20197
|
-
error_code: '
|
|
20267
|
+
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
20198
20268
|
}
|
|
20199
20269
|
| {
|
|
20200
20270
|
/** Date and time at which Seam created the error. */
|
|
20201
20271
|
created_at: string
|
|
20202
20272
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20203
20273
|
message: string
|
|
20204
|
-
|
|
20274
|
+
warning_code: 'failed_to_create_on_acs_system'
|
|
20205
20275
|
}
|
|
20206
20276
|
| {
|
|
20207
20277
|
/** Date and time at which Seam created the error. */
|
|
20208
20278
|
created_at: string
|
|
20209
20279
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20210
20280
|
message: string
|
|
20211
|
-
|
|
20281
|
+
warning_code: 'failed_to_update_on_acs_system'
|
|
20282
|
+
}
|
|
20283
|
+
| {
|
|
20284
|
+
/** Date and time at which Seam created the error. */
|
|
20285
|
+
created_at: string
|
|
20286
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20287
|
+
message: string
|
|
20288
|
+
warning_code: 'failed_to_delete_on_acs_system'
|
|
20212
20289
|
}
|
|
20213
20290
|
>
|
|
20214
20291
|
full_name?: string | undefined
|