@seamapi/types 1.543.0 → 1.545.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 +342 -287
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +435 -380
- package/dist/index.cjs +342 -287
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +7 -7
- package/lib/seam/connect/models/acs/acs-system.js +1 -0
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +40 -40
- package/lib/seam/connect/openapi.d.ts +354 -306
- package/lib/seam/connect/openapi.js +326 -272
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +65 -58
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +326 -272
- package/src/lib/seam/connect/route-types.ts +75 -52
|
@@ -3285,6 +3285,7 @@ export default {
|
|
|
3285
3285
|
'legic_connect_credential_service',
|
|
3286
3286
|
'assa_abloy_vostio',
|
|
3287
3287
|
'assa_abloy_vostio_credential_service',
|
|
3288
|
+
'hotek_site',
|
|
3288
3289
|
],
|
|
3289
3290
|
type: 'string',
|
|
3290
3291
|
},
|
|
@@ -3342,6 +3343,7 @@ export default {
|
|
|
3342
3343
|
'legic_connect_credential_service',
|
|
3343
3344
|
'assa_abloy_vostio',
|
|
3344
3345
|
'assa_abloy_vostio_credential_service',
|
|
3346
|
+
'hotek_site',
|
|
3345
3347
|
],
|
|
3346
3348
|
type: 'string',
|
|
3347
3349
|
'x-deprecated': 'Use `external_type`.',
|
|
@@ -47440,168 +47442,185 @@ export default {
|
|
|
47440
47442
|
ok: { type: 'boolean' },
|
|
47441
47443
|
pagination: { $ref: '#/components/schemas/pagination' },
|
|
47442
47444
|
timeline: {
|
|
47443
|
-
|
|
47444
|
-
|
|
47445
|
-
|
|
47446
|
-
|
|
47447
|
-
{
|
|
47448
|
-
|
|
47449
|
-
|
|
47450
|
-
|
|
47451
|
-
|
|
47452
|
-
|
|
47453
|
-
|
|
47454
|
-
|
|
47455
|
-
|
|
47456
|
-
|
|
47445
|
+
properties: {
|
|
47446
|
+
groups: {
|
|
47447
|
+
items: {
|
|
47448
|
+
properties: {
|
|
47449
|
+
context: {
|
|
47450
|
+
oneOf: [
|
|
47451
|
+
{
|
|
47452
|
+
properties: {
|
|
47453
|
+
context_type: {
|
|
47454
|
+
enum: ['request'],
|
|
47455
|
+
type: 'string',
|
|
47456
|
+
},
|
|
47457
|
+
request_id: { type: 'string' },
|
|
47458
|
+
request_payload: {
|
|
47459
|
+
additionalProperties: {
|
|
47460
|
+
$ref: '#/components/schemas/access_code',
|
|
47461
|
+
},
|
|
47462
|
+
type: 'object',
|
|
47463
|
+
},
|
|
47464
|
+
response_payload: {
|
|
47465
|
+
additionalProperties: {
|
|
47466
|
+
$ref: '#/components/schemas/access_code',
|
|
47467
|
+
},
|
|
47468
|
+
type: 'object',
|
|
47469
|
+
},
|
|
47457
47470
|
},
|
|
47471
|
+
required: [
|
|
47472
|
+
'context_type',
|
|
47473
|
+
'request_id',
|
|
47474
|
+
'request_payload',
|
|
47475
|
+
'response_payload',
|
|
47476
|
+
],
|
|
47458
47477
|
type: 'object',
|
|
47459
47478
|
},
|
|
47460
|
-
|
|
47461
|
-
|
|
47462
|
-
|
|
47479
|
+
{
|
|
47480
|
+
properties: {
|
|
47481
|
+
context_type: {
|
|
47482
|
+
enum: ['job'],
|
|
47483
|
+
type: 'string',
|
|
47484
|
+
},
|
|
47485
|
+
job_id: { type: 'string' },
|
|
47463
47486
|
},
|
|
47487
|
+
required: ['context_type', 'job_id'],
|
|
47464
47488
|
type: 'object',
|
|
47465
47489
|
},
|
|
47466
|
-
},
|
|
47467
|
-
required: [
|
|
47468
|
-
'context_type',
|
|
47469
|
-
'request_id',
|
|
47470
|
-
'request_payload',
|
|
47471
|
-
'response_payload',
|
|
47472
47490
|
],
|
|
47473
|
-
type: 'object',
|
|
47474
|
-
},
|
|
47475
|
-
{
|
|
47476
|
-
properties: {
|
|
47477
|
-
context_type: {
|
|
47478
|
-
enum: ['job'],
|
|
47479
|
-
type: 'string',
|
|
47480
|
-
},
|
|
47481
|
-
job_id: { type: 'string' },
|
|
47482
|
-
},
|
|
47483
|
-
required: ['context_type', 'job_id'],
|
|
47484
|
-
type: 'object',
|
|
47485
47491
|
},
|
|
47486
|
-
|
|
47487
|
-
|
|
47488
|
-
|
|
47489
|
-
|
|
47490
|
-
|
|
47491
|
-
|
|
47492
|
-
|
|
47493
|
-
|
|
47494
|
-
|
|
47495
|
-
|
|
47496
|
-
|
|
47497
|
-
|
|
47498
|
-
|
|
47499
|
-
type: 'string',
|
|
47500
|
-
},
|
|
47501
|
-
},
|
|
47502
|
-
required: ['entry_type', 'description'],
|
|
47503
|
-
type: 'object',
|
|
47504
|
-
},
|
|
47505
|
-
{
|
|
47506
|
-
properties: {
|
|
47507
|
-
description: { type: 'string' },
|
|
47508
|
-
entry_type: {
|
|
47509
|
-
enum: ['resource_updated'],
|
|
47510
|
-
type: 'string',
|
|
47511
|
-
},
|
|
47512
|
-
errors: {
|
|
47513
|
-
items: { type: 'string' },
|
|
47514
|
-
type: 'array',
|
|
47515
|
-
},
|
|
47516
|
-
properties_updated: {
|
|
47517
|
-
additionalProperties: {
|
|
47518
|
-
$ref: '#/components/schemas/access_code',
|
|
47492
|
+
created_at: { type: 'string' },
|
|
47493
|
+
entries: {
|
|
47494
|
+
items: {
|
|
47495
|
+
properties: {
|
|
47496
|
+
body: {
|
|
47497
|
+
oneOf: [
|
|
47498
|
+
{
|
|
47499
|
+
properties: {
|
|
47500
|
+
description: { type: 'string' },
|
|
47501
|
+
entry_type: {
|
|
47502
|
+
enum: ['resource_created'],
|
|
47503
|
+
type: 'string',
|
|
47504
|
+
},
|
|
47519
47505
|
},
|
|
47506
|
+
required: [
|
|
47507
|
+
'entry_type',
|
|
47508
|
+
'description',
|
|
47509
|
+
],
|
|
47520
47510
|
type: 'object',
|
|
47521
47511
|
},
|
|
47522
|
-
|
|
47523
|
-
|
|
47524
|
-
|
|
47525
|
-
|
|
47526
|
-
|
|
47527
|
-
|
|
47528
|
-
|
|
47529
|
-
|
|
47530
|
-
|
|
47531
|
-
|
|
47532
|
-
|
|
47533
|
-
|
|
47534
|
-
|
|
47535
|
-
|
|
47536
|
-
|
|
47537
|
-
|
|
47538
|
-
|
|
47539
|
-
|
|
47540
|
-
|
|
47541
|
-
|
|
47542
|
-
|
|
47543
|
-
|
|
47544
|
-
|
|
47545
|
-
|
|
47512
|
+
{
|
|
47513
|
+
properties: {
|
|
47514
|
+
description: { type: 'string' },
|
|
47515
|
+
entry_type: {
|
|
47516
|
+
enum: ['resource_updated'],
|
|
47517
|
+
type: 'string',
|
|
47518
|
+
},
|
|
47519
|
+
errors: {
|
|
47520
|
+
items: { type: 'string' },
|
|
47521
|
+
type: 'array',
|
|
47522
|
+
},
|
|
47523
|
+
properties_updated: {
|
|
47524
|
+
additionalProperties: {
|
|
47525
|
+
$ref: '#/components/schemas/access_code',
|
|
47526
|
+
},
|
|
47527
|
+
type: 'object',
|
|
47528
|
+
},
|
|
47529
|
+
warnings: {
|
|
47530
|
+
items: { type: 'string' },
|
|
47531
|
+
type: 'array',
|
|
47532
|
+
},
|
|
47533
|
+
},
|
|
47534
|
+
required: [
|
|
47535
|
+
'entry_type',
|
|
47536
|
+
'description',
|
|
47537
|
+
],
|
|
47538
|
+
type: 'object',
|
|
47546
47539
|
},
|
|
47547
|
-
|
|
47548
|
-
|
|
47549
|
-
|
|
47550
|
-
|
|
47551
|
-
|
|
47552
|
-
|
|
47553
|
-
|
|
47554
|
-
|
|
47555
|
-
|
|
47556
|
-
|
|
47557
|
-
|
|
47558
|
-
|
|
47559
|
-
|
|
47560
|
-
entry_type: {
|
|
47561
|
-
enum: ['provider_call'],
|
|
47562
|
-
type: 'string',
|
|
47540
|
+
{
|
|
47541
|
+
properties: {
|
|
47542
|
+
description: { type: 'string' },
|
|
47543
|
+
entry_type: {
|
|
47544
|
+
enum: ['resource_deleted'],
|
|
47545
|
+
type: 'string',
|
|
47546
|
+
},
|
|
47547
|
+
},
|
|
47548
|
+
required: [
|
|
47549
|
+
'entry_type',
|
|
47550
|
+
'description',
|
|
47551
|
+
],
|
|
47552
|
+
type: 'object',
|
|
47563
47553
|
},
|
|
47564
|
-
|
|
47565
|
-
|
|
47566
|
-
|
|
47554
|
+
{
|
|
47555
|
+
properties: {
|
|
47556
|
+
entry_type: {
|
|
47557
|
+
enum: ['event'],
|
|
47558
|
+
type: 'string',
|
|
47559
|
+
},
|
|
47560
|
+
event_id: { type: 'string' },
|
|
47561
|
+
event_type: { type: 'string' },
|
|
47567
47562
|
},
|
|
47563
|
+
required: [
|
|
47564
|
+
'entry_type',
|
|
47565
|
+
'event_type',
|
|
47566
|
+
'event_id',
|
|
47567
|
+
],
|
|
47568
47568
|
type: 'object',
|
|
47569
47569
|
},
|
|
47570
|
-
|
|
47571
|
-
|
|
47572
|
-
|
|
47570
|
+
{
|
|
47571
|
+
properties: {
|
|
47572
|
+
description: { type: 'string' },
|
|
47573
|
+
entry_type: {
|
|
47574
|
+
enum: ['provider_call'],
|
|
47575
|
+
type: 'string',
|
|
47576
|
+
},
|
|
47577
|
+
response_body: {
|
|
47578
|
+
additionalProperties: {
|
|
47579
|
+
$ref: '#/components/schemas/access_code',
|
|
47580
|
+
},
|
|
47581
|
+
type: 'object',
|
|
47582
|
+
},
|
|
47583
|
+
response_status_code: {
|
|
47584
|
+
format: 'float',
|
|
47585
|
+
type: 'number',
|
|
47586
|
+
},
|
|
47587
|
+
},
|
|
47588
|
+
required: [
|
|
47589
|
+
'entry_type',
|
|
47590
|
+
'description',
|
|
47591
|
+
'response_status_code',
|
|
47592
|
+
],
|
|
47593
|
+
type: 'object',
|
|
47573
47594
|
},
|
|
47574
|
-
},
|
|
47575
|
-
required: [
|
|
47576
|
-
'entry_type',
|
|
47577
|
-
'description',
|
|
47578
|
-
'response_status_code',
|
|
47579
47595
|
],
|
|
47580
|
-
type: 'object',
|
|
47581
47596
|
},
|
|
47597
|
+
created_at: { type: 'string' },
|
|
47598
|
+
entry_type: { type: 'string' },
|
|
47599
|
+
resource_id: { type: 'string' },
|
|
47600
|
+
resource_type: { type: 'string' },
|
|
47601
|
+
},
|
|
47602
|
+
required: [
|
|
47603
|
+
'resource_type',
|
|
47604
|
+
'resource_id',
|
|
47605
|
+
'entry_type',
|
|
47606
|
+
'body',
|
|
47607
|
+
'created_at',
|
|
47582
47608
|
],
|
|
47609
|
+
type: 'object',
|
|
47583
47610
|
},
|
|
47584
|
-
|
|
47585
|
-
entry_type: { type: 'string' },
|
|
47586
|
-
resource_id: { type: 'string' },
|
|
47587
|
-
resource_type: { type: 'string' },
|
|
47611
|
+
type: 'array',
|
|
47588
47612
|
},
|
|
47589
|
-
required: [
|
|
47590
|
-
'resource_type',
|
|
47591
|
-
'resource_id',
|
|
47592
|
-
'entry_type',
|
|
47593
|
-
'body',
|
|
47594
|
-
'created_at',
|
|
47595
|
-
],
|
|
47596
|
-
type: 'object',
|
|
47597
47613
|
},
|
|
47598
|
-
|
|
47614
|
+
required: ['context', 'entries', 'created_at'],
|
|
47615
|
+
type: 'object',
|
|
47599
47616
|
},
|
|
47617
|
+
type: 'array',
|
|
47600
47618
|
},
|
|
47601
|
-
|
|
47602
|
-
type: '
|
|
47619
|
+
resource_id: { type: 'string' },
|
|
47620
|
+
resource_type: { type: 'string' },
|
|
47603
47621
|
},
|
|
47604
|
-
|
|
47622
|
+
required: ['resource_type', 'resource_id', 'groups'],
|
|
47623
|
+
type: 'object',
|
|
47605
47624
|
},
|
|
47606
47625
|
},
|
|
47607
47626
|
required: ['timeline', 'pagination', 'ok'],
|
|
@@ -47678,168 +47697,185 @@ export default {
|
|
|
47678
47697
|
ok: { type: 'boolean' },
|
|
47679
47698
|
pagination: { $ref: '#/components/schemas/pagination' },
|
|
47680
47699
|
timeline: {
|
|
47681
|
-
|
|
47682
|
-
|
|
47683
|
-
|
|
47684
|
-
|
|
47685
|
-
{
|
|
47686
|
-
|
|
47687
|
-
|
|
47688
|
-
|
|
47689
|
-
|
|
47690
|
-
|
|
47691
|
-
|
|
47692
|
-
|
|
47693
|
-
|
|
47694
|
-
|
|
47700
|
+
properties: {
|
|
47701
|
+
groups: {
|
|
47702
|
+
items: {
|
|
47703
|
+
properties: {
|
|
47704
|
+
context: {
|
|
47705
|
+
oneOf: [
|
|
47706
|
+
{
|
|
47707
|
+
properties: {
|
|
47708
|
+
context_type: {
|
|
47709
|
+
enum: ['request'],
|
|
47710
|
+
type: 'string',
|
|
47711
|
+
},
|
|
47712
|
+
request_id: { type: 'string' },
|
|
47713
|
+
request_payload: {
|
|
47714
|
+
additionalProperties: {
|
|
47715
|
+
$ref: '#/components/schemas/access_code',
|
|
47716
|
+
},
|
|
47717
|
+
type: 'object',
|
|
47718
|
+
},
|
|
47719
|
+
response_payload: {
|
|
47720
|
+
additionalProperties: {
|
|
47721
|
+
$ref: '#/components/schemas/access_code',
|
|
47722
|
+
},
|
|
47723
|
+
type: 'object',
|
|
47724
|
+
},
|
|
47695
47725
|
},
|
|
47726
|
+
required: [
|
|
47727
|
+
'context_type',
|
|
47728
|
+
'request_id',
|
|
47729
|
+
'request_payload',
|
|
47730
|
+
'response_payload',
|
|
47731
|
+
],
|
|
47696
47732
|
type: 'object',
|
|
47697
47733
|
},
|
|
47698
|
-
|
|
47699
|
-
|
|
47700
|
-
|
|
47734
|
+
{
|
|
47735
|
+
properties: {
|
|
47736
|
+
context_type: {
|
|
47737
|
+
enum: ['job'],
|
|
47738
|
+
type: 'string',
|
|
47739
|
+
},
|
|
47740
|
+
job_id: { type: 'string' },
|
|
47701
47741
|
},
|
|
47742
|
+
required: ['context_type', 'job_id'],
|
|
47702
47743
|
type: 'object',
|
|
47703
47744
|
},
|
|
47704
|
-
},
|
|
47705
|
-
required: [
|
|
47706
|
-
'context_type',
|
|
47707
|
-
'request_id',
|
|
47708
|
-
'request_payload',
|
|
47709
|
-
'response_payload',
|
|
47710
47745
|
],
|
|
47711
|
-
type: 'object',
|
|
47712
|
-
},
|
|
47713
|
-
{
|
|
47714
|
-
properties: {
|
|
47715
|
-
context_type: {
|
|
47716
|
-
enum: ['job'],
|
|
47717
|
-
type: 'string',
|
|
47718
|
-
},
|
|
47719
|
-
job_id: { type: 'string' },
|
|
47720
|
-
},
|
|
47721
|
-
required: ['context_type', 'job_id'],
|
|
47722
|
-
type: 'object',
|
|
47723
47746
|
},
|
|
47724
|
-
|
|
47725
|
-
|
|
47726
|
-
|
|
47727
|
-
|
|
47728
|
-
|
|
47729
|
-
|
|
47730
|
-
|
|
47731
|
-
|
|
47732
|
-
|
|
47733
|
-
|
|
47734
|
-
|
|
47735
|
-
|
|
47736
|
-
|
|
47737
|
-
type: 'string',
|
|
47738
|
-
},
|
|
47739
|
-
},
|
|
47740
|
-
required: ['entry_type', 'description'],
|
|
47741
|
-
type: 'object',
|
|
47742
|
-
},
|
|
47743
|
-
{
|
|
47744
|
-
properties: {
|
|
47745
|
-
description: { type: 'string' },
|
|
47746
|
-
entry_type: {
|
|
47747
|
-
enum: ['resource_updated'],
|
|
47748
|
-
type: 'string',
|
|
47749
|
-
},
|
|
47750
|
-
errors: {
|
|
47751
|
-
items: { type: 'string' },
|
|
47752
|
-
type: 'array',
|
|
47753
|
-
},
|
|
47754
|
-
properties_updated: {
|
|
47755
|
-
additionalProperties: {
|
|
47756
|
-
$ref: '#/components/schemas/access_code',
|
|
47747
|
+
created_at: { type: 'string' },
|
|
47748
|
+
entries: {
|
|
47749
|
+
items: {
|
|
47750
|
+
properties: {
|
|
47751
|
+
body: {
|
|
47752
|
+
oneOf: [
|
|
47753
|
+
{
|
|
47754
|
+
properties: {
|
|
47755
|
+
description: { type: 'string' },
|
|
47756
|
+
entry_type: {
|
|
47757
|
+
enum: ['resource_created'],
|
|
47758
|
+
type: 'string',
|
|
47759
|
+
},
|
|
47757
47760
|
},
|
|
47761
|
+
required: [
|
|
47762
|
+
'entry_type',
|
|
47763
|
+
'description',
|
|
47764
|
+
],
|
|
47758
47765
|
type: 'object',
|
|
47759
47766
|
},
|
|
47760
|
-
|
|
47761
|
-
|
|
47762
|
-
|
|
47763
|
-
|
|
47764
|
-
|
|
47765
|
-
|
|
47766
|
-
|
|
47767
|
-
|
|
47768
|
-
|
|
47769
|
-
|
|
47770
|
-
|
|
47771
|
-
|
|
47772
|
-
|
|
47773
|
-
|
|
47774
|
-
|
|
47775
|
-
|
|
47776
|
-
|
|
47777
|
-
|
|
47778
|
-
|
|
47779
|
-
|
|
47780
|
-
|
|
47781
|
-
|
|
47782
|
-
|
|
47783
|
-
|
|
47767
|
+
{
|
|
47768
|
+
properties: {
|
|
47769
|
+
description: { type: 'string' },
|
|
47770
|
+
entry_type: {
|
|
47771
|
+
enum: ['resource_updated'],
|
|
47772
|
+
type: 'string',
|
|
47773
|
+
},
|
|
47774
|
+
errors: {
|
|
47775
|
+
items: { type: 'string' },
|
|
47776
|
+
type: 'array',
|
|
47777
|
+
},
|
|
47778
|
+
properties_updated: {
|
|
47779
|
+
additionalProperties: {
|
|
47780
|
+
$ref: '#/components/schemas/access_code',
|
|
47781
|
+
},
|
|
47782
|
+
type: 'object',
|
|
47783
|
+
},
|
|
47784
|
+
warnings: {
|
|
47785
|
+
items: { type: 'string' },
|
|
47786
|
+
type: 'array',
|
|
47787
|
+
},
|
|
47788
|
+
},
|
|
47789
|
+
required: [
|
|
47790
|
+
'entry_type',
|
|
47791
|
+
'description',
|
|
47792
|
+
],
|
|
47793
|
+
type: 'object',
|
|
47784
47794
|
},
|
|
47785
|
-
|
|
47786
|
-
|
|
47787
|
-
|
|
47788
|
-
|
|
47789
|
-
|
|
47790
|
-
|
|
47791
|
-
|
|
47792
|
-
|
|
47793
|
-
|
|
47794
|
-
|
|
47795
|
-
|
|
47796
|
-
|
|
47797
|
-
|
|
47798
|
-
entry_type: {
|
|
47799
|
-
enum: ['provider_call'],
|
|
47800
|
-
type: 'string',
|
|
47795
|
+
{
|
|
47796
|
+
properties: {
|
|
47797
|
+
description: { type: 'string' },
|
|
47798
|
+
entry_type: {
|
|
47799
|
+
enum: ['resource_deleted'],
|
|
47800
|
+
type: 'string',
|
|
47801
|
+
},
|
|
47802
|
+
},
|
|
47803
|
+
required: [
|
|
47804
|
+
'entry_type',
|
|
47805
|
+
'description',
|
|
47806
|
+
],
|
|
47807
|
+
type: 'object',
|
|
47801
47808
|
},
|
|
47802
|
-
|
|
47803
|
-
|
|
47804
|
-
|
|
47809
|
+
{
|
|
47810
|
+
properties: {
|
|
47811
|
+
entry_type: {
|
|
47812
|
+
enum: ['event'],
|
|
47813
|
+
type: 'string',
|
|
47814
|
+
},
|
|
47815
|
+
event_id: { type: 'string' },
|
|
47816
|
+
event_type: { type: 'string' },
|
|
47805
47817
|
},
|
|
47818
|
+
required: [
|
|
47819
|
+
'entry_type',
|
|
47820
|
+
'event_type',
|
|
47821
|
+
'event_id',
|
|
47822
|
+
],
|
|
47806
47823
|
type: 'object',
|
|
47807
47824
|
},
|
|
47808
|
-
|
|
47809
|
-
|
|
47810
|
-
|
|
47825
|
+
{
|
|
47826
|
+
properties: {
|
|
47827
|
+
description: { type: 'string' },
|
|
47828
|
+
entry_type: {
|
|
47829
|
+
enum: ['provider_call'],
|
|
47830
|
+
type: 'string',
|
|
47831
|
+
},
|
|
47832
|
+
response_body: {
|
|
47833
|
+
additionalProperties: {
|
|
47834
|
+
$ref: '#/components/schemas/access_code',
|
|
47835
|
+
},
|
|
47836
|
+
type: 'object',
|
|
47837
|
+
},
|
|
47838
|
+
response_status_code: {
|
|
47839
|
+
format: 'float',
|
|
47840
|
+
type: 'number',
|
|
47841
|
+
},
|
|
47842
|
+
},
|
|
47843
|
+
required: [
|
|
47844
|
+
'entry_type',
|
|
47845
|
+
'description',
|
|
47846
|
+
'response_status_code',
|
|
47847
|
+
],
|
|
47848
|
+
type: 'object',
|
|
47811
47849
|
},
|
|
47812
|
-
},
|
|
47813
|
-
required: [
|
|
47814
|
-
'entry_type',
|
|
47815
|
-
'description',
|
|
47816
|
-
'response_status_code',
|
|
47817
47850
|
],
|
|
47818
|
-
type: 'object',
|
|
47819
47851
|
},
|
|
47852
|
+
created_at: { type: 'string' },
|
|
47853
|
+
entry_type: { type: 'string' },
|
|
47854
|
+
resource_id: { type: 'string' },
|
|
47855
|
+
resource_type: { type: 'string' },
|
|
47856
|
+
},
|
|
47857
|
+
required: [
|
|
47858
|
+
'resource_type',
|
|
47859
|
+
'resource_id',
|
|
47860
|
+
'entry_type',
|
|
47861
|
+
'body',
|
|
47862
|
+
'created_at',
|
|
47820
47863
|
],
|
|
47864
|
+
type: 'object',
|
|
47821
47865
|
},
|
|
47822
|
-
|
|
47823
|
-
entry_type: { type: 'string' },
|
|
47824
|
-
resource_id: { type: 'string' },
|
|
47825
|
-
resource_type: { type: 'string' },
|
|
47866
|
+
type: 'array',
|
|
47826
47867
|
},
|
|
47827
|
-
required: [
|
|
47828
|
-
'resource_type',
|
|
47829
|
-
'resource_id',
|
|
47830
|
-
'entry_type',
|
|
47831
|
-
'body',
|
|
47832
|
-
'created_at',
|
|
47833
|
-
],
|
|
47834
|
-
type: 'object',
|
|
47835
47868
|
},
|
|
47836
|
-
|
|
47869
|
+
required: ['context', 'entries', 'created_at'],
|
|
47870
|
+
type: 'object',
|
|
47837
47871
|
},
|
|
47872
|
+
type: 'array',
|
|
47838
47873
|
},
|
|
47839
|
-
|
|
47840
|
-
type: '
|
|
47874
|
+
resource_id: { type: 'string' },
|
|
47875
|
+
resource_type: { type: 'string' },
|
|
47841
47876
|
},
|
|
47842
|
-
|
|
47877
|
+
required: ['resource_type', 'resource_id', 'groups'],
|
|
47878
|
+
type: 'object',
|
|
47843
47879
|
},
|
|
47844
47880
|
},
|
|
47845
47881
|
required: ['timeline', 'pagination', 'ok'],
|
|
@@ -48002,11 +48038,17 @@ export default {
|
|
|
48002
48038
|
},
|
|
48003
48039
|
automation_run_id: { format: 'uuid', type: 'string' },
|
|
48004
48040
|
created_at: { type: 'string' },
|
|
48041
|
+
partner_key: { nullable: true, type: 'string' },
|
|
48005
48042
|
partner_resource_id: {
|
|
48006
48043
|
format: 'uuid',
|
|
48007
48044
|
nullable: true,
|
|
48008
48045
|
type: 'string',
|
|
48009
48046
|
},
|
|
48047
|
+
resource_type: { nullable: true, type: 'string' },
|
|
48048
|
+
resource_type_alias: {
|
|
48049
|
+
nullable: true,
|
|
48050
|
+
type: 'string',
|
|
48051
|
+
},
|
|
48010
48052
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
48011
48053
|
},
|
|
48012
48054
|
required: [
|
|
@@ -48014,6 +48056,9 @@ export default {
|
|
|
48014
48056
|
'workspace_id',
|
|
48015
48057
|
'automation_id',
|
|
48016
48058
|
'partner_resource_id',
|
|
48059
|
+
'partner_key',
|
|
48060
|
+
'resource_type',
|
|
48061
|
+
'resource_type_alias',
|
|
48017
48062
|
'created_at',
|
|
48018
48063
|
],
|
|
48019
48064
|
type: 'object',
|
|
@@ -48162,11 +48207,17 @@ export default {
|
|
|
48162
48207
|
},
|
|
48163
48208
|
automation_run_id: { format: 'uuid', type: 'string' },
|
|
48164
48209
|
created_at: { type: 'string' },
|
|
48210
|
+
partner_key: { nullable: true, type: 'string' },
|
|
48165
48211
|
partner_resource_id: {
|
|
48166
48212
|
format: 'uuid',
|
|
48167
48213
|
nullable: true,
|
|
48168
48214
|
type: 'string',
|
|
48169
48215
|
},
|
|
48216
|
+
resource_type: { nullable: true, type: 'string' },
|
|
48217
|
+
resource_type_alias: {
|
|
48218
|
+
nullable: true,
|
|
48219
|
+
type: 'string',
|
|
48220
|
+
},
|
|
48170
48221
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
48171
48222
|
},
|
|
48172
48223
|
required: [
|
|
@@ -48174,6 +48225,9 @@ export default {
|
|
|
48174
48225
|
'workspace_id',
|
|
48175
48226
|
'automation_id',
|
|
48176
48227
|
'partner_resource_id',
|
|
48228
|
+
'partner_key',
|
|
48229
|
+
'resource_type',
|
|
48230
|
+
'resource_type_alias',
|
|
48177
48231
|
'created_at',
|
|
48178
48232
|
],
|
|
48179
48233
|
type: 'object',
|