@adaptive-ds/n8n-nodes-publer 1.1.6 → 1.1.7
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/nodes/Publer/openapi.json +72 -38
- package/dist/package.json +1 -1
- package/package.json +1 -1
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"tags": [
|
|
71
71
|
"USERS"
|
|
72
72
|
],
|
|
73
|
-
"summary": "
|
|
73
|
+
"summary": "Me",
|
|
74
74
|
"responses": {
|
|
75
75
|
"200": {
|
|
76
76
|
"description": "Successful response",
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"tags": [
|
|
87
87
|
"WORKSPACES"
|
|
88
88
|
],
|
|
89
|
-
"summary": "
|
|
89
|
+
"summary": "Fetch workspaces",
|
|
90
90
|
"responses": {
|
|
91
91
|
"200": {
|
|
92
92
|
"description": "Successful response",
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"tags": [
|
|
103
103
|
"WORKSPACES"
|
|
104
104
|
],
|
|
105
|
-
"summary": "
|
|
105
|
+
"summary": "Fetch signatures",
|
|
106
106
|
"parameters": [
|
|
107
107
|
{
|
|
108
108
|
"name": "accounts[]",
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
"tags": [
|
|
137
137
|
"WORKSPACES"
|
|
138
138
|
],
|
|
139
|
-
"summary": "
|
|
139
|
+
"summary": "Fetch media options",
|
|
140
140
|
"parameters": [
|
|
141
141
|
{
|
|
142
142
|
"name": "accounts[]",
|
|
@@ -170,7 +170,7 @@
|
|
|
170
170
|
"tags": [
|
|
171
171
|
"ACCOUNTS"
|
|
172
172
|
],
|
|
173
|
-
"summary": "
|
|
173
|
+
"summary": "Accounts",
|
|
174
174
|
"parameters": [
|
|
175
175
|
{
|
|
176
176
|
"name": "Publer-Workspace-Id",
|
|
@@ -196,7 +196,7 @@
|
|
|
196
196
|
"tags": [
|
|
197
197
|
"MEDIA"
|
|
198
198
|
],
|
|
199
|
-
"summary": "
|
|
199
|
+
"summary": "List media",
|
|
200
200
|
"parameters": [
|
|
201
201
|
{
|
|
202
202
|
"name": "Publer-Workspace-Id",
|
|
@@ -238,7 +238,7 @@
|
|
|
238
238
|
"tags": [
|
|
239
239
|
"MEDIA"
|
|
240
240
|
],
|
|
241
|
-
"summary": "
|
|
241
|
+
"summary": "Upload file",
|
|
242
242
|
"requestBody": {
|
|
243
243
|
"content": {
|
|
244
244
|
"multipart/form-data": {
|
|
@@ -287,24 +287,58 @@
|
|
|
287
287
|
"tags": [
|
|
288
288
|
"MEDIA"
|
|
289
289
|
],
|
|
290
|
-
"summary": "
|
|
290
|
+
"summary": "Upload from url",
|
|
291
291
|
"requestBody": {
|
|
292
292
|
"content": {
|
|
293
293
|
"application/json": {
|
|
294
294
|
"schema": {
|
|
295
295
|
"type": "object",
|
|
296
|
-
"
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
"
|
|
296
|
+
"required": ["media", "type"],
|
|
297
|
+
"properties": {
|
|
298
|
+
"media": {
|
|
299
|
+
"type": "array",
|
|
300
|
+
"description": "List of media URLs and metadata",
|
|
301
|
+
"items": {
|
|
302
|
+
"type": "object",
|
|
303
|
+
"required": ["url", "name"],
|
|
304
|
+
"properties": {
|
|
305
|
+
"url": {
|
|
306
|
+
"type": "string",
|
|
307
|
+
"description": "URL of the media file to download"
|
|
308
|
+
},
|
|
309
|
+
"name": {
|
|
310
|
+
"type": "string",
|
|
311
|
+
"description": "Custom name for the media file"
|
|
312
|
+
},
|
|
313
|
+
"caption": {
|
|
314
|
+
"type": "string",
|
|
315
|
+
"description": "Caption for the media"
|
|
316
|
+
},
|
|
317
|
+
"source": {
|
|
318
|
+
"type": "string",
|
|
319
|
+
"description": "Source attribution"
|
|
320
|
+
}
|
|
321
|
+
}
|
|
303
322
|
}
|
|
304
|
-
|
|
305
|
-
"type":
|
|
306
|
-
|
|
307
|
-
|
|
323
|
+
},
|
|
324
|
+
"type": {
|
|
325
|
+
"type": "string",
|
|
326
|
+
"enum": ["single", "bulk", "thumbnail"],
|
|
327
|
+
"description": "Upload type",
|
|
328
|
+
"example": "single"
|
|
329
|
+
},
|
|
330
|
+
"direct_upload": {
|
|
331
|
+
"type": "boolean",
|
|
332
|
+
"description": "Whether to upload directly to S3 cloud, slower but returns id",
|
|
333
|
+
"default": false,
|
|
334
|
+
"example": false
|
|
335
|
+
},
|
|
336
|
+
"in_library": {
|
|
337
|
+
"type": "boolean",
|
|
338
|
+
"description": "Whether to save to media library",
|
|
339
|
+
"default": false,
|
|
340
|
+
"example": true
|
|
341
|
+
}
|
|
308
342
|
}
|
|
309
343
|
}
|
|
310
344
|
}
|
|
@@ -335,7 +369,7 @@
|
|
|
335
369
|
"tags": [
|
|
336
370
|
"POSTS > CONTENT TYPES"
|
|
337
371
|
],
|
|
338
|
-
"summary": "
|
|
372
|
+
"summary": "Post with locations",
|
|
339
373
|
"requestBody": {
|
|
340
374
|
"content": {
|
|
341
375
|
"application/json": {
|
|
@@ -399,7 +433,7 @@
|
|
|
399
433
|
"tags": [
|
|
400
434
|
"POSTS > PUBLISHING METHODS"
|
|
401
435
|
],
|
|
402
|
-
"summary": "
|
|
436
|
+
"summary": "Publish",
|
|
403
437
|
"requestBody": {
|
|
404
438
|
"content": {
|
|
405
439
|
"application/json": {
|
|
@@ -455,7 +489,7 @@
|
|
|
455
489
|
"tags": [
|
|
456
490
|
"POSTS"
|
|
457
491
|
],
|
|
458
|
-
"summary": "
|
|
492
|
+
"summary": "Get posts",
|
|
459
493
|
"parameters": [
|
|
460
494
|
{
|
|
461
495
|
"name": "Publer-Workspace-Id",
|
|
@@ -495,7 +529,7 @@
|
|
|
495
529
|
"tags": [
|
|
496
530
|
"POSTS"
|
|
497
531
|
],
|
|
498
|
-
"summary": "
|
|
532
|
+
"summary": "Delete posts",
|
|
499
533
|
"parameters": [
|
|
500
534
|
{
|
|
501
535
|
"name": "Publer-Workspace-Id",
|
|
@@ -529,7 +563,7 @@
|
|
|
529
563
|
"tags": [
|
|
530
564
|
"POSTS"
|
|
531
565
|
],
|
|
532
|
-
"summary": "
|
|
566
|
+
"summary": "Extract link metadata",
|
|
533
567
|
"requestBody": {
|
|
534
568
|
"content": {
|
|
535
569
|
"application/json": {
|
|
@@ -557,7 +591,7 @@
|
|
|
557
591
|
"tags": [
|
|
558
592
|
"POSTS"
|
|
559
593
|
],
|
|
560
|
-
"summary": "
|
|
594
|
+
"summary": "Update post",
|
|
561
595
|
"requestBody": {
|
|
562
596
|
"content": {
|
|
563
597
|
"application/json": {
|
|
@@ -598,7 +632,7 @@
|
|
|
598
632
|
"tags": [
|
|
599
633
|
"JOB STATUS"
|
|
600
634
|
],
|
|
601
|
-
"summary": "
|
|
635
|
+
"summary": "Job status",
|
|
602
636
|
"parameters": [
|
|
603
637
|
{
|
|
604
638
|
"name": "Publer-Workspace-Id",
|
|
@@ -624,7 +658,7 @@
|
|
|
624
658
|
"tags": [
|
|
625
659
|
"LOCATIONS"
|
|
626
660
|
],
|
|
627
|
-
"summary": "
|
|
661
|
+
"summary": "Instagram locations",
|
|
628
662
|
"parameters": [
|
|
629
663
|
{
|
|
630
664
|
"name": "Publer-Workspace-Id",
|
|
@@ -658,7 +692,7 @@
|
|
|
658
692
|
"tags": [
|
|
659
693
|
"LOCATIONS"
|
|
660
694
|
],
|
|
661
|
-
"summary": "
|
|
695
|
+
"summary": "Facebook locations",
|
|
662
696
|
"parameters": [
|
|
663
697
|
{
|
|
664
698
|
"name": "Publer-Workspace-Id",
|
|
@@ -692,7 +726,7 @@
|
|
|
692
726
|
"tags": [
|
|
693
727
|
"LOCATIONS"
|
|
694
728
|
],
|
|
695
|
-
"summary": "
|
|
729
|
+
"summary": "Threads locations",
|
|
696
730
|
"parameters": [
|
|
697
731
|
{
|
|
698
732
|
"name": "Publer-Workspace-Id",
|
|
@@ -726,7 +760,7 @@
|
|
|
726
760
|
"tags": [
|
|
727
761
|
"ANALYTICS"
|
|
728
762
|
],
|
|
729
|
-
"summary": "
|
|
763
|
+
"summary": "Get charts",
|
|
730
764
|
"parameters": [
|
|
731
765
|
{
|
|
732
766
|
"name": "Publer-Workspace-Id",
|
|
@@ -752,7 +786,7 @@
|
|
|
752
786
|
"tags": [
|
|
753
787
|
"ANALYTICS"
|
|
754
788
|
],
|
|
755
|
-
"summary": "
|
|
789
|
+
"summary": "Charts data",
|
|
756
790
|
"parameters": [
|
|
757
791
|
{
|
|
758
792
|
"name": "Publer-Workspace-Id",
|
|
@@ -810,7 +844,7 @@
|
|
|
810
844
|
"tags": [
|
|
811
845
|
"ANALYTICS"
|
|
812
846
|
],
|
|
813
|
-
"summary": "
|
|
847
|
+
"summary": "Post insights",
|
|
814
848
|
"parameters": [
|
|
815
849
|
{
|
|
816
850
|
"name": "Publer-Workspace-Id",
|
|
@@ -868,7 +902,7 @@
|
|
|
868
902
|
"tags": [
|
|
869
903
|
"ANALYTICS"
|
|
870
904
|
],
|
|
871
|
-
"summary": "
|
|
905
|
+
"summary": "Hashtag insights",
|
|
872
906
|
"parameters": [
|
|
873
907
|
{
|
|
874
908
|
"name": "Publer-Workspace-Id",
|
|
@@ -918,7 +952,7 @@
|
|
|
918
952
|
"tags": [
|
|
919
953
|
"ANALYTICS"
|
|
920
954
|
],
|
|
921
|
-
"summary": "
|
|
955
|
+
"summary": "Hashtag performing posts",
|
|
922
956
|
"parameters": [
|
|
923
957
|
{
|
|
924
958
|
"name": "Publer-Workspace-Id",
|
|
@@ -977,7 +1011,7 @@
|
|
|
977
1011
|
"tags": [
|
|
978
1012
|
"ANALYTICS"
|
|
979
1013
|
],
|
|
980
|
-
"summary": "
|
|
1014
|
+
"summary": "Best times to post",
|
|
981
1015
|
"parameters": [
|
|
982
1016
|
{
|
|
983
1017
|
"name": "Publer-Workspace-Id",
|
|
@@ -1027,7 +1061,7 @@
|
|
|
1027
1061
|
"tags": [
|
|
1028
1062
|
"ANALYTICS"
|
|
1029
1063
|
],
|
|
1030
|
-
"summary": "
|
|
1064
|
+
"summary": "Members",
|
|
1031
1065
|
"parameters": [
|
|
1032
1066
|
{
|
|
1033
1067
|
"name": "Publer-Workspace-Id",
|
|
@@ -1069,7 +1103,7 @@
|
|
|
1069
1103
|
"tags": [
|
|
1070
1104
|
"ANALYTICS"
|
|
1071
1105
|
],
|
|
1072
|
-
"summary": "
|
|
1106
|
+
"summary": "Competitors",
|
|
1073
1107
|
"parameters": [
|
|
1074
1108
|
{
|
|
1075
1109
|
"name": "Publer-Workspace-Id",
|
|
@@ -1095,7 +1129,7 @@
|
|
|
1095
1129
|
"tags": [
|
|
1096
1130
|
"ANALYTICS"
|
|
1097
1131
|
],
|
|
1098
|
-
"summary": "
|
|
1132
|
+
"summary": "Competitors analytics",
|
|
1099
1133
|
"parameters": [
|
|
1100
1134
|
{
|
|
1101
1135
|
"name": "Publer-Workspace-Id",
|
package/dist/package.json
CHANGED