@wevion/cli 1.0.2366 → 1.0.2370
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/openapi.json +222 -1
- package/package.json +1 -1
package/openapi.json
CHANGED
|
@@ -97277,7 +97277,8 @@
|
|
|
97277
97277
|
"computed_at",
|
|
97278
97278
|
"alerted_at",
|
|
97279
97279
|
"creative_thumbnail_url",
|
|
97280
|
-
"creative_thumbnail_proxy"
|
|
97280
|
+
"creative_thumbnail_proxy",
|
|
97281
|
+
"creative_thumbnail_proxy_large"
|
|
97281
97282
|
],
|
|
97282
97283
|
"properties": {
|
|
97283
97284
|
"ad_id": {
|
|
@@ -97459,6 +97460,9 @@
|
|
|
97459
97460
|
},
|
|
97460
97461
|
"creative_thumbnail_proxy": {
|
|
97461
97462
|
"type": "string"
|
|
97463
|
+
},
|
|
97464
|
+
"creative_thumbnail_proxy_large": {
|
|
97465
|
+
"type": "string"
|
|
97462
97466
|
}
|
|
97463
97467
|
}
|
|
97464
97468
|
}
|
|
@@ -107669,6 +107673,223 @@
|
|
|
107669
107673
|
}
|
|
107670
107674
|
}
|
|
107671
107675
|
},
|
|
107676
|
+
"/api/v1/creative-hub/library/assets/{id}/save-to-drive": {
|
|
107677
|
+
"post": {
|
|
107678
|
+
"operationId": "creativeHubSaveAssetToDrive",
|
|
107679
|
+
"summary": "Save a Creative Hub library asset into the caller's Drive folder",
|
|
107680
|
+
"tags": [
|
|
107681
|
+
"creative-hub",
|
|
107682
|
+
"creative-library"
|
|
107683
|
+
],
|
|
107684
|
+
"description": "Copies a Creative Hub library asset into the current user's personal Google Drive folder, provisioning that folder on first use. Returns the created Drive file.",
|
|
107685
|
+
"parameters": [
|
|
107686
|
+
{
|
|
107687
|
+
"schema": {
|
|
107688
|
+
"type": "string"
|
|
107689
|
+
},
|
|
107690
|
+
"in": "path",
|
|
107691
|
+
"name": "id",
|
|
107692
|
+
"required": true
|
|
107693
|
+
}
|
|
107694
|
+
],
|
|
107695
|
+
"security": [
|
|
107696
|
+
{
|
|
107697
|
+
"bearerAuth": []
|
|
107698
|
+
},
|
|
107699
|
+
{
|
|
107700
|
+
"apiKeyAuth": []
|
|
107701
|
+
}
|
|
107702
|
+
],
|
|
107703
|
+
"responses": {
|
|
107704
|
+
"200": {
|
|
107705
|
+
"description": "Successful response",
|
|
107706
|
+
"content": {
|
|
107707
|
+
"application/json": {
|
|
107708
|
+
"schema": {
|
|
107709
|
+
"type": "object",
|
|
107710
|
+
"required": [
|
|
107711
|
+
"file"
|
|
107712
|
+
],
|
|
107713
|
+
"properties": {
|
|
107714
|
+
"file": {
|
|
107715
|
+
"type": "object",
|
|
107716
|
+
"required": [
|
|
107717
|
+
"id",
|
|
107718
|
+
"name",
|
|
107719
|
+
"mimeType",
|
|
107720
|
+
"size",
|
|
107721
|
+
"createdTime",
|
|
107722
|
+
"modifiedTime",
|
|
107723
|
+
"thumbnailUrl",
|
|
107724
|
+
"viewUrl",
|
|
107725
|
+
"downloadUrl",
|
|
107726
|
+
"isVideo",
|
|
107727
|
+
"isImage",
|
|
107728
|
+
"isFolder",
|
|
107729
|
+
"parents"
|
|
107730
|
+
],
|
|
107731
|
+
"properties": {
|
|
107732
|
+
"id": {
|
|
107733
|
+
"anyOf": [
|
|
107734
|
+
{
|
|
107735
|
+
"type": "string"
|
|
107736
|
+
},
|
|
107737
|
+
{
|
|
107738
|
+
"type": "null"
|
|
107739
|
+
}
|
|
107740
|
+
]
|
|
107741
|
+
},
|
|
107742
|
+
"name": {
|
|
107743
|
+
"anyOf": [
|
|
107744
|
+
{
|
|
107745
|
+
"type": "string"
|
|
107746
|
+
},
|
|
107747
|
+
{
|
|
107748
|
+
"type": "null"
|
|
107749
|
+
}
|
|
107750
|
+
]
|
|
107751
|
+
},
|
|
107752
|
+
"mimeType": {
|
|
107753
|
+
"anyOf": [
|
|
107754
|
+
{
|
|
107755
|
+
"type": "string"
|
|
107756
|
+
},
|
|
107757
|
+
{
|
|
107758
|
+
"type": "null"
|
|
107759
|
+
}
|
|
107760
|
+
]
|
|
107761
|
+
},
|
|
107762
|
+
"size": {
|
|
107763
|
+
"type": "integer"
|
|
107764
|
+
},
|
|
107765
|
+
"createdTime": {
|
|
107766
|
+
"anyOf": [
|
|
107767
|
+
{
|
|
107768
|
+
"type": "string"
|
|
107769
|
+
},
|
|
107770
|
+
{
|
|
107771
|
+
"type": "null"
|
|
107772
|
+
}
|
|
107773
|
+
]
|
|
107774
|
+
},
|
|
107775
|
+
"modifiedTime": {
|
|
107776
|
+
"anyOf": [
|
|
107777
|
+
{
|
|
107778
|
+
"type": "string"
|
|
107779
|
+
},
|
|
107780
|
+
{
|
|
107781
|
+
"type": "null"
|
|
107782
|
+
}
|
|
107783
|
+
]
|
|
107784
|
+
},
|
|
107785
|
+
"thumbnailUrl": {
|
|
107786
|
+
"anyOf": [
|
|
107787
|
+
{
|
|
107788
|
+
"type": "string"
|
|
107789
|
+
},
|
|
107790
|
+
{
|
|
107791
|
+
"type": "null"
|
|
107792
|
+
}
|
|
107793
|
+
]
|
|
107794
|
+
},
|
|
107795
|
+
"viewUrl": {
|
|
107796
|
+
"anyOf": [
|
|
107797
|
+
{
|
|
107798
|
+
"type": "string"
|
|
107799
|
+
},
|
|
107800
|
+
{
|
|
107801
|
+
"type": "null"
|
|
107802
|
+
}
|
|
107803
|
+
]
|
|
107804
|
+
},
|
|
107805
|
+
"downloadUrl": {
|
|
107806
|
+
"anyOf": [
|
|
107807
|
+
{
|
|
107808
|
+
"type": "string"
|
|
107809
|
+
},
|
|
107810
|
+
{
|
|
107811
|
+
"type": "null"
|
|
107812
|
+
}
|
|
107813
|
+
]
|
|
107814
|
+
},
|
|
107815
|
+
"isVideo": {
|
|
107816
|
+
"type": "boolean"
|
|
107817
|
+
},
|
|
107818
|
+
"isImage": {
|
|
107819
|
+
"type": "boolean"
|
|
107820
|
+
},
|
|
107821
|
+
"isFolder": {
|
|
107822
|
+
"type": "boolean"
|
|
107823
|
+
},
|
|
107824
|
+
"parents": {
|
|
107825
|
+
"anyOf": [
|
|
107826
|
+
{
|
|
107827
|
+
"type": "array",
|
|
107828
|
+
"items": {
|
|
107829
|
+
"type": "string"
|
|
107830
|
+
}
|
|
107831
|
+
},
|
|
107832
|
+
{
|
|
107833
|
+
"type": "null"
|
|
107834
|
+
}
|
|
107835
|
+
]
|
|
107836
|
+
}
|
|
107837
|
+
}
|
|
107838
|
+
}
|
|
107839
|
+
}
|
|
107840
|
+
}
|
|
107841
|
+
}
|
|
107842
|
+
}
|
|
107843
|
+
},
|
|
107844
|
+
"401": {
|
|
107845
|
+
"description": "Unauthorized - missing or invalid bearer token",
|
|
107846
|
+
"content": {
|
|
107847
|
+
"application/json": {
|
|
107848
|
+
"schema": {
|
|
107849
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
107850
|
+
}
|
|
107851
|
+
}
|
|
107852
|
+
}
|
|
107853
|
+
},
|
|
107854
|
+
"404": {
|
|
107855
|
+
"description": "Resource not found",
|
|
107856
|
+
"content": {
|
|
107857
|
+
"application/json": {
|
|
107858
|
+
"schema": {
|
|
107859
|
+
"type": "object",
|
|
107860
|
+
"required": [
|
|
107861
|
+
"error"
|
|
107862
|
+
],
|
|
107863
|
+
"properties": {
|
|
107864
|
+
"error": {
|
|
107865
|
+
"type": "string"
|
|
107866
|
+
}
|
|
107867
|
+
}
|
|
107868
|
+
}
|
|
107869
|
+
}
|
|
107870
|
+
}
|
|
107871
|
+
},
|
|
107872
|
+
"500": {
|
|
107873
|
+
"description": "Internal server error",
|
|
107874
|
+
"content": {
|
|
107875
|
+
"application/json": {
|
|
107876
|
+
"schema": {
|
|
107877
|
+
"type": "object",
|
|
107878
|
+
"required": [
|
|
107879
|
+
"error"
|
|
107880
|
+
],
|
|
107881
|
+
"properties": {
|
|
107882
|
+
"error": {
|
|
107883
|
+
"type": "string"
|
|
107884
|
+
}
|
|
107885
|
+
}
|
|
107886
|
+
}
|
|
107887
|
+
}
|
|
107888
|
+
}
|
|
107889
|
+
}
|
|
107890
|
+
}
|
|
107891
|
+
}
|
|
107892
|
+
},
|
|
107672
107893
|
"/api/v1/creative-hub/thumbnail/{fileId}": {
|
|
107673
107894
|
"get": {
|
|
107674
107895
|
"operationId": "creativeHubThumbnail",
|