@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
|
@@ -2861,6 +2861,7 @@ export default {
|
|
|
2861
2861
|
'legic_connect_credential_service',
|
|
2862
2862
|
'assa_abloy_vostio',
|
|
2863
2863
|
'assa_abloy_vostio_credential_service',
|
|
2864
|
+
'hotek_site',
|
|
2864
2865
|
],
|
|
2865
2866
|
type: 'string',
|
|
2866
2867
|
},
|
|
@@ -2912,6 +2913,7 @@ export default {
|
|
|
2912
2913
|
'legic_connect_credential_service',
|
|
2913
2914
|
'assa_abloy_vostio',
|
|
2914
2915
|
'assa_abloy_vostio_credential_service',
|
|
2916
|
+
'hotek_site',
|
|
2915
2917
|
],
|
|
2916
2918
|
type: 'string',
|
|
2917
2919
|
'x-deprecated': 'Use `external_type`.',
|
|
@@ -43550,168 +43552,185 @@ export default {
|
|
|
43550
43552
|
ok: { type: 'boolean' },
|
|
43551
43553
|
pagination: { $ref: '#/components/schemas/pagination' },
|
|
43552
43554
|
timeline: {
|
|
43553
|
-
|
|
43554
|
-
|
|
43555
|
-
|
|
43556
|
-
|
|
43557
|
-
{
|
|
43558
|
-
|
|
43559
|
-
|
|
43560
|
-
|
|
43561
|
-
|
|
43562
|
-
|
|
43563
|
-
|
|
43564
|
-
|
|
43565
|
-
|
|
43566
|
-
|
|
43555
|
+
properties: {
|
|
43556
|
+
groups: {
|
|
43557
|
+
items: {
|
|
43558
|
+
properties: {
|
|
43559
|
+
context: {
|
|
43560
|
+
oneOf: [
|
|
43561
|
+
{
|
|
43562
|
+
properties: {
|
|
43563
|
+
context_type: {
|
|
43564
|
+
enum: ['request'],
|
|
43565
|
+
type: 'string',
|
|
43566
|
+
},
|
|
43567
|
+
request_id: { type: 'string' },
|
|
43568
|
+
request_payload: {
|
|
43569
|
+
additionalProperties: {
|
|
43570
|
+
$ref: '#/components/schemas/access_code',
|
|
43571
|
+
},
|
|
43572
|
+
type: 'object',
|
|
43573
|
+
},
|
|
43574
|
+
response_payload: {
|
|
43575
|
+
additionalProperties: {
|
|
43576
|
+
$ref: '#/components/schemas/access_code',
|
|
43577
|
+
},
|
|
43578
|
+
type: 'object',
|
|
43579
|
+
},
|
|
43567
43580
|
},
|
|
43581
|
+
required: [
|
|
43582
|
+
'context_type',
|
|
43583
|
+
'request_id',
|
|
43584
|
+
'request_payload',
|
|
43585
|
+
'response_payload',
|
|
43586
|
+
],
|
|
43568
43587
|
type: 'object',
|
|
43569
43588
|
},
|
|
43570
|
-
|
|
43571
|
-
|
|
43572
|
-
|
|
43589
|
+
{
|
|
43590
|
+
properties: {
|
|
43591
|
+
context_type: {
|
|
43592
|
+
enum: ['job'],
|
|
43593
|
+
type: 'string',
|
|
43594
|
+
},
|
|
43595
|
+
job_id: { type: 'string' },
|
|
43573
43596
|
},
|
|
43597
|
+
required: ['context_type', 'job_id'],
|
|
43574
43598
|
type: 'object',
|
|
43575
43599
|
},
|
|
43576
|
-
},
|
|
43577
|
-
required: [
|
|
43578
|
-
'context_type',
|
|
43579
|
-
'request_id',
|
|
43580
|
-
'request_payload',
|
|
43581
|
-
'response_payload',
|
|
43582
43600
|
],
|
|
43583
|
-
type: 'object',
|
|
43584
|
-
},
|
|
43585
|
-
{
|
|
43586
|
-
properties: {
|
|
43587
|
-
context_type: {
|
|
43588
|
-
enum: ['job'],
|
|
43589
|
-
type: 'string',
|
|
43590
|
-
},
|
|
43591
|
-
job_id: { type: 'string' },
|
|
43592
|
-
},
|
|
43593
|
-
required: ['context_type', 'job_id'],
|
|
43594
|
-
type: 'object',
|
|
43595
43601
|
},
|
|
43596
|
-
|
|
43597
|
-
|
|
43598
|
-
|
|
43599
|
-
|
|
43600
|
-
|
|
43601
|
-
|
|
43602
|
-
|
|
43603
|
-
|
|
43604
|
-
|
|
43605
|
-
|
|
43606
|
-
|
|
43607
|
-
|
|
43608
|
-
|
|
43609
|
-
type: 'string',
|
|
43610
|
-
},
|
|
43611
|
-
},
|
|
43612
|
-
required: ['entry_type', 'description'],
|
|
43613
|
-
type: 'object',
|
|
43614
|
-
},
|
|
43615
|
-
{
|
|
43616
|
-
properties: {
|
|
43617
|
-
description: { type: 'string' },
|
|
43618
|
-
entry_type: {
|
|
43619
|
-
enum: ['resource_updated'],
|
|
43620
|
-
type: 'string',
|
|
43621
|
-
},
|
|
43622
|
-
errors: {
|
|
43623
|
-
items: { type: 'string' },
|
|
43624
|
-
type: 'array',
|
|
43625
|
-
},
|
|
43626
|
-
properties_updated: {
|
|
43627
|
-
additionalProperties: {
|
|
43628
|
-
$ref: '#/components/schemas/access_code',
|
|
43602
|
+
created_at: { type: 'string' },
|
|
43603
|
+
entries: {
|
|
43604
|
+
items: {
|
|
43605
|
+
properties: {
|
|
43606
|
+
body: {
|
|
43607
|
+
oneOf: [
|
|
43608
|
+
{
|
|
43609
|
+
properties: {
|
|
43610
|
+
description: { type: 'string' },
|
|
43611
|
+
entry_type: {
|
|
43612
|
+
enum: ['resource_created'],
|
|
43613
|
+
type: 'string',
|
|
43614
|
+
},
|
|
43629
43615
|
},
|
|
43616
|
+
required: [
|
|
43617
|
+
'entry_type',
|
|
43618
|
+
'description',
|
|
43619
|
+
],
|
|
43630
43620
|
type: 'object',
|
|
43631
43621
|
},
|
|
43632
|
-
|
|
43633
|
-
|
|
43634
|
-
|
|
43635
|
-
|
|
43636
|
-
|
|
43637
|
-
|
|
43638
|
-
|
|
43639
|
-
|
|
43640
|
-
|
|
43641
|
-
|
|
43642
|
-
|
|
43643
|
-
|
|
43644
|
-
|
|
43645
|
-
|
|
43646
|
-
|
|
43647
|
-
|
|
43648
|
-
|
|
43649
|
-
|
|
43650
|
-
|
|
43651
|
-
|
|
43652
|
-
|
|
43653
|
-
|
|
43654
|
-
|
|
43655
|
-
|
|
43622
|
+
{
|
|
43623
|
+
properties: {
|
|
43624
|
+
description: { type: 'string' },
|
|
43625
|
+
entry_type: {
|
|
43626
|
+
enum: ['resource_updated'],
|
|
43627
|
+
type: 'string',
|
|
43628
|
+
},
|
|
43629
|
+
errors: {
|
|
43630
|
+
items: { type: 'string' },
|
|
43631
|
+
type: 'array',
|
|
43632
|
+
},
|
|
43633
|
+
properties_updated: {
|
|
43634
|
+
additionalProperties: {
|
|
43635
|
+
$ref: '#/components/schemas/access_code',
|
|
43636
|
+
},
|
|
43637
|
+
type: 'object',
|
|
43638
|
+
},
|
|
43639
|
+
warnings: {
|
|
43640
|
+
items: { type: 'string' },
|
|
43641
|
+
type: 'array',
|
|
43642
|
+
},
|
|
43643
|
+
},
|
|
43644
|
+
required: [
|
|
43645
|
+
'entry_type',
|
|
43646
|
+
'description',
|
|
43647
|
+
],
|
|
43648
|
+
type: 'object',
|
|
43656
43649
|
},
|
|
43657
|
-
|
|
43658
|
-
|
|
43659
|
-
|
|
43660
|
-
|
|
43661
|
-
|
|
43662
|
-
|
|
43663
|
-
|
|
43664
|
-
|
|
43665
|
-
|
|
43666
|
-
|
|
43667
|
-
|
|
43668
|
-
|
|
43669
|
-
|
|
43670
|
-
entry_type: {
|
|
43671
|
-
enum: ['provider_call'],
|
|
43672
|
-
type: 'string',
|
|
43650
|
+
{
|
|
43651
|
+
properties: {
|
|
43652
|
+
description: { type: 'string' },
|
|
43653
|
+
entry_type: {
|
|
43654
|
+
enum: ['resource_deleted'],
|
|
43655
|
+
type: 'string',
|
|
43656
|
+
},
|
|
43657
|
+
},
|
|
43658
|
+
required: [
|
|
43659
|
+
'entry_type',
|
|
43660
|
+
'description',
|
|
43661
|
+
],
|
|
43662
|
+
type: 'object',
|
|
43673
43663
|
},
|
|
43674
|
-
|
|
43675
|
-
|
|
43676
|
-
|
|
43664
|
+
{
|
|
43665
|
+
properties: {
|
|
43666
|
+
entry_type: {
|
|
43667
|
+
enum: ['event'],
|
|
43668
|
+
type: 'string',
|
|
43669
|
+
},
|
|
43670
|
+
event_id: { type: 'string' },
|
|
43671
|
+
event_type: { type: 'string' },
|
|
43677
43672
|
},
|
|
43673
|
+
required: [
|
|
43674
|
+
'entry_type',
|
|
43675
|
+
'event_type',
|
|
43676
|
+
'event_id',
|
|
43677
|
+
],
|
|
43678
43678
|
type: 'object',
|
|
43679
43679
|
},
|
|
43680
|
-
|
|
43681
|
-
|
|
43682
|
-
|
|
43680
|
+
{
|
|
43681
|
+
properties: {
|
|
43682
|
+
description: { type: 'string' },
|
|
43683
|
+
entry_type: {
|
|
43684
|
+
enum: ['provider_call'],
|
|
43685
|
+
type: 'string',
|
|
43686
|
+
},
|
|
43687
|
+
response_body: {
|
|
43688
|
+
additionalProperties: {
|
|
43689
|
+
$ref: '#/components/schemas/access_code',
|
|
43690
|
+
},
|
|
43691
|
+
type: 'object',
|
|
43692
|
+
},
|
|
43693
|
+
response_status_code: {
|
|
43694
|
+
format: 'float',
|
|
43695
|
+
type: 'number',
|
|
43696
|
+
},
|
|
43697
|
+
},
|
|
43698
|
+
required: [
|
|
43699
|
+
'entry_type',
|
|
43700
|
+
'description',
|
|
43701
|
+
'response_status_code',
|
|
43702
|
+
],
|
|
43703
|
+
type: 'object',
|
|
43683
43704
|
},
|
|
43684
|
-
},
|
|
43685
|
-
required: [
|
|
43686
|
-
'entry_type',
|
|
43687
|
-
'description',
|
|
43688
|
-
'response_status_code',
|
|
43689
43705
|
],
|
|
43690
|
-
type: 'object',
|
|
43691
43706
|
},
|
|
43707
|
+
created_at: { type: 'string' },
|
|
43708
|
+
entry_type: { type: 'string' },
|
|
43709
|
+
resource_id: { type: 'string' },
|
|
43710
|
+
resource_type: { type: 'string' },
|
|
43711
|
+
},
|
|
43712
|
+
required: [
|
|
43713
|
+
'resource_type',
|
|
43714
|
+
'resource_id',
|
|
43715
|
+
'entry_type',
|
|
43716
|
+
'body',
|
|
43717
|
+
'created_at',
|
|
43692
43718
|
],
|
|
43719
|
+
type: 'object',
|
|
43693
43720
|
},
|
|
43694
|
-
|
|
43695
|
-
entry_type: { type: 'string' },
|
|
43696
|
-
resource_id: { type: 'string' },
|
|
43697
|
-
resource_type: { type: 'string' },
|
|
43721
|
+
type: 'array',
|
|
43698
43722
|
},
|
|
43699
|
-
required: [
|
|
43700
|
-
'resource_type',
|
|
43701
|
-
'resource_id',
|
|
43702
|
-
'entry_type',
|
|
43703
|
-
'body',
|
|
43704
|
-
'created_at',
|
|
43705
|
-
],
|
|
43706
|
-
type: 'object',
|
|
43707
43723
|
},
|
|
43708
|
-
|
|
43724
|
+
required: ['context', 'entries', 'created_at'],
|
|
43725
|
+
type: 'object',
|
|
43709
43726
|
},
|
|
43727
|
+
type: 'array',
|
|
43710
43728
|
},
|
|
43711
|
-
|
|
43712
|
-
type: '
|
|
43729
|
+
resource_id: { type: 'string' },
|
|
43730
|
+
resource_type: { type: 'string' },
|
|
43713
43731
|
},
|
|
43714
|
-
|
|
43732
|
+
required: ['resource_type', 'resource_id', 'groups'],
|
|
43733
|
+
type: 'object',
|
|
43715
43734
|
},
|
|
43716
43735
|
},
|
|
43717
43736
|
required: ['timeline', 'pagination', 'ok'],
|
|
@@ -43784,168 +43803,185 @@ export default {
|
|
|
43784
43803
|
ok: { type: 'boolean' },
|
|
43785
43804
|
pagination: { $ref: '#/components/schemas/pagination' },
|
|
43786
43805
|
timeline: {
|
|
43787
|
-
|
|
43788
|
-
|
|
43789
|
-
|
|
43790
|
-
|
|
43791
|
-
{
|
|
43792
|
-
|
|
43793
|
-
|
|
43794
|
-
|
|
43795
|
-
|
|
43796
|
-
|
|
43797
|
-
|
|
43798
|
-
|
|
43799
|
-
|
|
43800
|
-
|
|
43806
|
+
properties: {
|
|
43807
|
+
groups: {
|
|
43808
|
+
items: {
|
|
43809
|
+
properties: {
|
|
43810
|
+
context: {
|
|
43811
|
+
oneOf: [
|
|
43812
|
+
{
|
|
43813
|
+
properties: {
|
|
43814
|
+
context_type: {
|
|
43815
|
+
enum: ['request'],
|
|
43816
|
+
type: 'string',
|
|
43817
|
+
},
|
|
43818
|
+
request_id: { type: 'string' },
|
|
43819
|
+
request_payload: {
|
|
43820
|
+
additionalProperties: {
|
|
43821
|
+
$ref: '#/components/schemas/access_code',
|
|
43822
|
+
},
|
|
43823
|
+
type: 'object',
|
|
43824
|
+
},
|
|
43825
|
+
response_payload: {
|
|
43826
|
+
additionalProperties: {
|
|
43827
|
+
$ref: '#/components/schemas/access_code',
|
|
43828
|
+
},
|
|
43829
|
+
type: 'object',
|
|
43830
|
+
},
|
|
43801
43831
|
},
|
|
43832
|
+
required: [
|
|
43833
|
+
'context_type',
|
|
43834
|
+
'request_id',
|
|
43835
|
+
'request_payload',
|
|
43836
|
+
'response_payload',
|
|
43837
|
+
],
|
|
43802
43838
|
type: 'object',
|
|
43803
43839
|
},
|
|
43804
|
-
|
|
43805
|
-
|
|
43806
|
-
|
|
43840
|
+
{
|
|
43841
|
+
properties: {
|
|
43842
|
+
context_type: {
|
|
43843
|
+
enum: ['job'],
|
|
43844
|
+
type: 'string',
|
|
43845
|
+
},
|
|
43846
|
+
job_id: { type: 'string' },
|
|
43807
43847
|
},
|
|
43848
|
+
required: ['context_type', 'job_id'],
|
|
43808
43849
|
type: 'object',
|
|
43809
43850
|
},
|
|
43810
|
-
},
|
|
43811
|
-
required: [
|
|
43812
|
-
'context_type',
|
|
43813
|
-
'request_id',
|
|
43814
|
-
'request_payload',
|
|
43815
|
-
'response_payload',
|
|
43816
43851
|
],
|
|
43817
|
-
type: 'object',
|
|
43818
|
-
},
|
|
43819
|
-
{
|
|
43820
|
-
properties: {
|
|
43821
|
-
context_type: {
|
|
43822
|
-
enum: ['job'],
|
|
43823
|
-
type: 'string',
|
|
43824
|
-
},
|
|
43825
|
-
job_id: { type: 'string' },
|
|
43826
|
-
},
|
|
43827
|
-
required: ['context_type', 'job_id'],
|
|
43828
|
-
type: 'object',
|
|
43829
43852
|
},
|
|
43830
|
-
|
|
43831
|
-
|
|
43832
|
-
|
|
43833
|
-
|
|
43834
|
-
|
|
43835
|
-
|
|
43836
|
-
|
|
43837
|
-
|
|
43838
|
-
|
|
43839
|
-
|
|
43840
|
-
|
|
43841
|
-
|
|
43842
|
-
|
|
43843
|
-
type: 'string',
|
|
43844
|
-
},
|
|
43845
|
-
},
|
|
43846
|
-
required: ['entry_type', 'description'],
|
|
43847
|
-
type: 'object',
|
|
43848
|
-
},
|
|
43849
|
-
{
|
|
43850
|
-
properties: {
|
|
43851
|
-
description: { type: 'string' },
|
|
43852
|
-
entry_type: {
|
|
43853
|
-
enum: ['resource_updated'],
|
|
43854
|
-
type: 'string',
|
|
43855
|
-
},
|
|
43856
|
-
errors: {
|
|
43857
|
-
items: { type: 'string' },
|
|
43858
|
-
type: 'array',
|
|
43859
|
-
},
|
|
43860
|
-
properties_updated: {
|
|
43861
|
-
additionalProperties: {
|
|
43862
|
-
$ref: '#/components/schemas/access_code',
|
|
43853
|
+
created_at: { type: 'string' },
|
|
43854
|
+
entries: {
|
|
43855
|
+
items: {
|
|
43856
|
+
properties: {
|
|
43857
|
+
body: {
|
|
43858
|
+
oneOf: [
|
|
43859
|
+
{
|
|
43860
|
+
properties: {
|
|
43861
|
+
description: { type: 'string' },
|
|
43862
|
+
entry_type: {
|
|
43863
|
+
enum: ['resource_created'],
|
|
43864
|
+
type: 'string',
|
|
43865
|
+
},
|
|
43863
43866
|
},
|
|
43867
|
+
required: [
|
|
43868
|
+
'entry_type',
|
|
43869
|
+
'description',
|
|
43870
|
+
],
|
|
43864
43871
|
type: 'object',
|
|
43865
43872
|
},
|
|
43866
|
-
|
|
43867
|
-
|
|
43868
|
-
|
|
43869
|
-
|
|
43870
|
-
|
|
43871
|
-
|
|
43872
|
-
|
|
43873
|
-
|
|
43874
|
-
|
|
43875
|
-
|
|
43876
|
-
|
|
43877
|
-
|
|
43878
|
-
|
|
43879
|
-
|
|
43880
|
-
|
|
43881
|
-
|
|
43882
|
-
|
|
43883
|
-
|
|
43884
|
-
|
|
43885
|
-
|
|
43886
|
-
|
|
43887
|
-
|
|
43888
|
-
|
|
43889
|
-
|
|
43873
|
+
{
|
|
43874
|
+
properties: {
|
|
43875
|
+
description: { type: 'string' },
|
|
43876
|
+
entry_type: {
|
|
43877
|
+
enum: ['resource_updated'],
|
|
43878
|
+
type: 'string',
|
|
43879
|
+
},
|
|
43880
|
+
errors: {
|
|
43881
|
+
items: { type: 'string' },
|
|
43882
|
+
type: 'array',
|
|
43883
|
+
},
|
|
43884
|
+
properties_updated: {
|
|
43885
|
+
additionalProperties: {
|
|
43886
|
+
$ref: '#/components/schemas/access_code',
|
|
43887
|
+
},
|
|
43888
|
+
type: 'object',
|
|
43889
|
+
},
|
|
43890
|
+
warnings: {
|
|
43891
|
+
items: { type: 'string' },
|
|
43892
|
+
type: 'array',
|
|
43893
|
+
},
|
|
43894
|
+
},
|
|
43895
|
+
required: [
|
|
43896
|
+
'entry_type',
|
|
43897
|
+
'description',
|
|
43898
|
+
],
|
|
43899
|
+
type: 'object',
|
|
43890
43900
|
},
|
|
43891
|
-
|
|
43892
|
-
|
|
43893
|
-
|
|
43894
|
-
|
|
43895
|
-
|
|
43896
|
-
|
|
43897
|
-
|
|
43898
|
-
|
|
43899
|
-
|
|
43900
|
-
|
|
43901
|
-
|
|
43902
|
-
|
|
43903
|
-
|
|
43904
|
-
entry_type: {
|
|
43905
|
-
enum: ['provider_call'],
|
|
43906
|
-
type: 'string',
|
|
43901
|
+
{
|
|
43902
|
+
properties: {
|
|
43903
|
+
description: { type: 'string' },
|
|
43904
|
+
entry_type: {
|
|
43905
|
+
enum: ['resource_deleted'],
|
|
43906
|
+
type: 'string',
|
|
43907
|
+
},
|
|
43908
|
+
},
|
|
43909
|
+
required: [
|
|
43910
|
+
'entry_type',
|
|
43911
|
+
'description',
|
|
43912
|
+
],
|
|
43913
|
+
type: 'object',
|
|
43907
43914
|
},
|
|
43908
|
-
|
|
43909
|
-
|
|
43910
|
-
|
|
43915
|
+
{
|
|
43916
|
+
properties: {
|
|
43917
|
+
entry_type: {
|
|
43918
|
+
enum: ['event'],
|
|
43919
|
+
type: 'string',
|
|
43920
|
+
},
|
|
43921
|
+
event_id: { type: 'string' },
|
|
43922
|
+
event_type: { type: 'string' },
|
|
43911
43923
|
},
|
|
43924
|
+
required: [
|
|
43925
|
+
'entry_type',
|
|
43926
|
+
'event_type',
|
|
43927
|
+
'event_id',
|
|
43928
|
+
],
|
|
43912
43929
|
type: 'object',
|
|
43913
43930
|
},
|
|
43914
|
-
|
|
43915
|
-
|
|
43916
|
-
|
|
43931
|
+
{
|
|
43932
|
+
properties: {
|
|
43933
|
+
description: { type: 'string' },
|
|
43934
|
+
entry_type: {
|
|
43935
|
+
enum: ['provider_call'],
|
|
43936
|
+
type: 'string',
|
|
43937
|
+
},
|
|
43938
|
+
response_body: {
|
|
43939
|
+
additionalProperties: {
|
|
43940
|
+
$ref: '#/components/schemas/access_code',
|
|
43941
|
+
},
|
|
43942
|
+
type: 'object',
|
|
43943
|
+
},
|
|
43944
|
+
response_status_code: {
|
|
43945
|
+
format: 'float',
|
|
43946
|
+
type: 'number',
|
|
43947
|
+
},
|
|
43948
|
+
},
|
|
43949
|
+
required: [
|
|
43950
|
+
'entry_type',
|
|
43951
|
+
'description',
|
|
43952
|
+
'response_status_code',
|
|
43953
|
+
],
|
|
43954
|
+
type: 'object',
|
|
43917
43955
|
},
|
|
43918
|
-
},
|
|
43919
|
-
required: [
|
|
43920
|
-
'entry_type',
|
|
43921
|
-
'description',
|
|
43922
|
-
'response_status_code',
|
|
43923
43956
|
],
|
|
43924
|
-
type: 'object',
|
|
43925
43957
|
},
|
|
43958
|
+
created_at: { type: 'string' },
|
|
43959
|
+
entry_type: { type: 'string' },
|
|
43960
|
+
resource_id: { type: 'string' },
|
|
43961
|
+
resource_type: { type: 'string' },
|
|
43962
|
+
},
|
|
43963
|
+
required: [
|
|
43964
|
+
'resource_type',
|
|
43965
|
+
'resource_id',
|
|
43966
|
+
'entry_type',
|
|
43967
|
+
'body',
|
|
43968
|
+
'created_at',
|
|
43926
43969
|
],
|
|
43970
|
+
type: 'object',
|
|
43927
43971
|
},
|
|
43928
|
-
|
|
43929
|
-
entry_type: { type: 'string' },
|
|
43930
|
-
resource_id: { type: 'string' },
|
|
43931
|
-
resource_type: { type: 'string' },
|
|
43972
|
+
type: 'array',
|
|
43932
43973
|
},
|
|
43933
|
-
required: [
|
|
43934
|
-
'resource_type',
|
|
43935
|
-
'resource_id',
|
|
43936
|
-
'entry_type',
|
|
43937
|
-
'body',
|
|
43938
|
-
'created_at',
|
|
43939
|
-
],
|
|
43940
|
-
type: 'object',
|
|
43941
43974
|
},
|
|
43942
|
-
|
|
43975
|
+
required: ['context', 'entries', 'created_at'],
|
|
43976
|
+
type: 'object',
|
|
43943
43977
|
},
|
|
43978
|
+
type: 'array',
|
|
43944
43979
|
},
|
|
43945
|
-
|
|
43946
|
-
type: '
|
|
43980
|
+
resource_id: { type: 'string' },
|
|
43981
|
+
resource_type: { type: 'string' },
|
|
43947
43982
|
},
|
|
43948
|
-
|
|
43983
|
+
required: ['resource_type', 'resource_id', 'groups'],
|
|
43984
|
+
type: 'object',
|
|
43949
43985
|
},
|
|
43950
43986
|
},
|
|
43951
43987
|
required: ['timeline', 'pagination', 'ok'],
|
|
@@ -44102,11 +44138,17 @@ export default {
|
|
|
44102
44138
|
},
|
|
44103
44139
|
automation_run_id: { format: 'uuid', type: 'string' },
|
|
44104
44140
|
created_at: { type: 'string' },
|
|
44141
|
+
partner_key: { nullable: true, type: 'string' },
|
|
44105
44142
|
partner_resource_id: {
|
|
44106
44143
|
format: 'uuid',
|
|
44107
44144
|
nullable: true,
|
|
44108
44145
|
type: 'string',
|
|
44109
44146
|
},
|
|
44147
|
+
resource_type: { nullable: true, type: 'string' },
|
|
44148
|
+
resource_type_alias: {
|
|
44149
|
+
nullable: true,
|
|
44150
|
+
type: 'string',
|
|
44151
|
+
},
|
|
44110
44152
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
44111
44153
|
},
|
|
44112
44154
|
required: [
|
|
@@ -44114,6 +44156,9 @@ export default {
|
|
|
44114
44156
|
'workspace_id',
|
|
44115
44157
|
'automation_id',
|
|
44116
44158
|
'partner_resource_id',
|
|
44159
|
+
'partner_key',
|
|
44160
|
+
'resource_type',
|
|
44161
|
+
'resource_type_alias',
|
|
44117
44162
|
'created_at',
|
|
44118
44163
|
],
|
|
44119
44164
|
type: 'object',
|
|
@@ -44255,11 +44300,17 @@ export default {
|
|
|
44255
44300
|
},
|
|
44256
44301
|
automation_run_id: { format: 'uuid', type: 'string' },
|
|
44257
44302
|
created_at: { type: 'string' },
|
|
44303
|
+
partner_key: { nullable: true, type: 'string' },
|
|
44258
44304
|
partner_resource_id: {
|
|
44259
44305
|
format: 'uuid',
|
|
44260
44306
|
nullable: true,
|
|
44261
44307
|
type: 'string',
|
|
44262
44308
|
},
|
|
44309
|
+
resource_type: { nullable: true, type: 'string' },
|
|
44310
|
+
resource_type_alias: {
|
|
44311
|
+
nullable: true,
|
|
44312
|
+
type: 'string',
|
|
44313
|
+
},
|
|
44263
44314
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
44264
44315
|
},
|
|
44265
44316
|
required: [
|
|
@@ -44267,6 +44318,9 @@ export default {
|
|
|
44267
44318
|
'workspace_id',
|
|
44268
44319
|
'automation_id',
|
|
44269
44320
|
'partner_resource_id',
|
|
44321
|
+
'partner_key',
|
|
44322
|
+
'resource_type',
|
|
44323
|
+
'resource_type_alias',
|
|
44270
44324
|
'created_at',
|
|
44271
44325
|
],
|
|
44272
44326
|
type: 'object',
|