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