current-cli 0.1.23__tar.gz → 0.1.25__tar.gz
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.
- {current_cli-0.1.23 → current_cli-0.1.25}/PKG-INFO +1 -1
- {current_cli-0.1.23 → current_cli-0.1.25}/current_cli/schema.yml +91 -3
- {current_cli-0.1.23 → current_cli-0.1.25}/pyproject.toml +1 -1
- {current_cli-0.1.23 → current_cli-0.1.25}/.gitignore +0 -0
- {current_cli-0.1.23 → current_cli-0.1.25}/README.md +0 -0
- {current_cli-0.1.23 → current_cli-0.1.25}/current_cli/__init__.py +0 -0
- {current_cli-0.1.23 → current_cli-0.1.25}/current_cli/build.py +0 -0
- {current_cli-0.1.23 → current_cli-0.1.25}/current_cli/config.py +0 -0
- {current_cli-0.1.23 → current_cli-0.1.25}/current_cli/docs.py +0 -0
- {current_cli-0.1.23 → current_cli-0.1.25}/current_cli/http.py +0 -0
- {current_cli-0.1.23 → current_cli-0.1.25}/current_cli/main.py +0 -0
- {current_cli-0.1.23 → current_cli-0.1.25}/current_cli/schema.py +0 -0
- {current_cli-0.1.23 → current_cli-0.1.25}/llms.txt +0 -0
- {current_cli-0.1.23 → current_cli-0.1.25}/scripts/bump_version.py +0 -0
- {current_cli-0.1.23 → current_cli-0.1.25}/tests/__init__.py +0 -0
- {current_cli-0.1.23 → current_cli-0.1.25}/tests/conftest.py +0 -0
- {current_cli-0.1.23 → current_cli-0.1.25}/tests/test_auth.py +0 -0
- {current_cli-0.1.23 → current_cli-0.1.25}/tests/test_bump_version.py +0 -0
- {current_cli-0.1.23 → current_cli-0.1.25}/tests/test_command_tree.py +0 -0
- {current_cli-0.1.23 → current_cli-0.1.25}/tests/test_docs.py +0 -0
- {current_cli-0.1.23 → current_cli-0.1.25}/tests/test_requests.py +0 -0
|
@@ -11,6 +11,7 @@ paths:
|
|
|
11
11
|
tags:
|
|
12
12
|
- accounts
|
|
13
13
|
security:
|
|
14
|
+
- MessagingJobTokenAuth: []
|
|
14
15
|
- tokenAuth: []
|
|
15
16
|
responses:
|
|
16
17
|
'200':
|
|
@@ -53,6 +54,7 @@ paths:
|
|
|
53
54
|
tags:
|
|
54
55
|
- accounts
|
|
55
56
|
security:
|
|
57
|
+
- MessagingJobTokenAuth: []
|
|
56
58
|
- tokenAuth: []
|
|
57
59
|
responses:
|
|
58
60
|
'200':
|
|
@@ -121,6 +123,7 @@ paths:
|
|
|
121
123
|
tags:
|
|
122
124
|
- contacts
|
|
123
125
|
security:
|
|
126
|
+
- MessagingJobTokenAuth: []
|
|
124
127
|
- tokenAuth: []
|
|
125
128
|
responses:
|
|
126
129
|
'200':
|
|
@@ -146,6 +149,7 @@ paths:
|
|
|
146
149
|
$ref: '#/components/schemas/ContactRequest'
|
|
147
150
|
required: true
|
|
148
151
|
security:
|
|
152
|
+
- MessagingJobTokenAuth: []
|
|
149
153
|
- tokenAuth: []
|
|
150
154
|
responses:
|
|
151
155
|
'201':
|
|
@@ -168,6 +172,7 @@ paths:
|
|
|
168
172
|
tags:
|
|
169
173
|
- contacts
|
|
170
174
|
security:
|
|
175
|
+
- MessagingJobTokenAuth: []
|
|
171
176
|
- tokenAuth: []
|
|
172
177
|
responses:
|
|
173
178
|
'200':
|
|
@@ -201,6 +206,7 @@ paths:
|
|
|
201
206
|
$ref: '#/components/schemas/ContactRequest'
|
|
202
207
|
required: true
|
|
203
208
|
security:
|
|
209
|
+
- MessagingJobTokenAuth: []
|
|
204
210
|
- tokenAuth: []
|
|
205
211
|
responses:
|
|
206
212
|
'200':
|
|
@@ -233,6 +239,7 @@ paths:
|
|
|
233
239
|
schema:
|
|
234
240
|
$ref: '#/components/schemas/PatchedContactRequest'
|
|
235
241
|
security:
|
|
242
|
+
- MessagingJobTokenAuth: []
|
|
236
243
|
- tokenAuth: []
|
|
237
244
|
responses:
|
|
238
245
|
'200':
|
|
@@ -254,6 +261,7 @@ paths:
|
|
|
254
261
|
tags:
|
|
255
262
|
- contacts
|
|
256
263
|
security:
|
|
264
|
+
- MessagingJobTokenAuth: []
|
|
257
265
|
- tokenAuth: []
|
|
258
266
|
responses:
|
|
259
267
|
'204':
|
|
@@ -284,6 +292,7 @@ paths:
|
|
|
284
292
|
$ref: '#/components/schemas/ContactAddressCreateRequest'
|
|
285
293
|
required: true
|
|
286
294
|
security:
|
|
295
|
+
- MessagingJobTokenAuth: []
|
|
287
296
|
- tokenAuth: []
|
|
288
297
|
responses:
|
|
289
298
|
'201':
|
|
@@ -318,6 +327,7 @@ paths:
|
|
|
318
327
|
tags:
|
|
319
328
|
- contacts
|
|
320
329
|
security:
|
|
330
|
+
- MessagingJobTokenAuth: []
|
|
321
331
|
- tokenAuth: []
|
|
322
332
|
responses:
|
|
323
333
|
'204':
|
|
@@ -345,6 +355,7 @@ paths:
|
|
|
345
355
|
tags:
|
|
346
356
|
- contacts
|
|
347
357
|
security:
|
|
358
|
+
- MessagingJobTokenAuth: []
|
|
348
359
|
- tokenAuth: []
|
|
349
360
|
responses:
|
|
350
361
|
'200':
|
|
@@ -367,6 +378,7 @@ paths:
|
|
|
367
378
|
tags:
|
|
368
379
|
- inbox
|
|
369
380
|
security:
|
|
381
|
+
- MessagingJobTokenAuth: []
|
|
370
382
|
- tokenAuth: []
|
|
371
383
|
responses:
|
|
372
384
|
'200':
|
|
@@ -391,6 +403,7 @@ paths:
|
|
|
391
403
|
tags:
|
|
392
404
|
- integrations
|
|
393
405
|
security:
|
|
406
|
+
- MessagingJobTokenAuth: []
|
|
394
407
|
- tokenAuth: []
|
|
395
408
|
responses:
|
|
396
409
|
'200':
|
|
@@ -419,6 +432,7 @@ paths:
|
|
|
419
432
|
tags:
|
|
420
433
|
- integrations
|
|
421
434
|
security:
|
|
435
|
+
- MessagingJobTokenAuth: []
|
|
422
436
|
- tokenAuth: []
|
|
423
437
|
responses:
|
|
424
438
|
'204':
|
|
@@ -438,6 +452,7 @@ paths:
|
|
|
438
452
|
tags:
|
|
439
453
|
- integrations
|
|
440
454
|
security:
|
|
455
|
+
- MessagingJobTokenAuth: []
|
|
441
456
|
- tokenAuth: []
|
|
442
457
|
responses:
|
|
443
458
|
'200':
|
|
@@ -467,6 +482,7 @@ paths:
|
|
|
467
482
|
tags:
|
|
468
483
|
- integrations
|
|
469
484
|
security:
|
|
485
|
+
- MessagingJobTokenAuth: []
|
|
470
486
|
- tokenAuth: []
|
|
471
487
|
responses:
|
|
472
488
|
'200':
|
|
@@ -497,6 +513,7 @@ paths:
|
|
|
497
513
|
$ref: '#/components/schemas/AuthorizeRequestRequest'
|
|
498
514
|
required: true
|
|
499
515
|
security:
|
|
516
|
+
- MessagingJobTokenAuth: []
|
|
500
517
|
- tokenAuth: []
|
|
501
518
|
responses:
|
|
502
519
|
'200':
|
|
@@ -529,6 +546,7 @@ paths:
|
|
|
529
546
|
$ref: '#/components/schemas/ApiUserConnectRequestRequest'
|
|
530
547
|
required: true
|
|
531
548
|
security:
|
|
549
|
+
- MessagingJobTokenAuth: []
|
|
532
550
|
- tokenAuth: []
|
|
533
551
|
responses:
|
|
534
552
|
'200':
|
|
@@ -561,6 +579,7 @@ paths:
|
|
|
561
579
|
$ref: '#/components/schemas/ClientCredentialsConnectRequestRequest'
|
|
562
580
|
required: true
|
|
563
581
|
security:
|
|
582
|
+
- MessagingJobTokenAuth: []
|
|
564
583
|
- tokenAuth: []
|
|
565
584
|
responses:
|
|
566
585
|
'200':
|
|
@@ -576,6 +595,7 @@ paths:
|
|
|
576
595
|
tags:
|
|
577
596
|
- integrations
|
|
578
597
|
security:
|
|
598
|
+
- MessagingJobTokenAuth: []
|
|
579
599
|
- tokenAuth: []
|
|
580
600
|
responses:
|
|
581
601
|
'200':
|
|
@@ -605,7 +625,7 @@ paths:
|
|
|
605
625
|
$ref: '#/components/schemas/MessagingReactRequestRequest'
|
|
606
626
|
required: true
|
|
607
627
|
security:
|
|
608
|
-
-
|
|
628
|
+
- MessagingJobTokenAuth: []
|
|
609
629
|
responses:
|
|
610
630
|
'200':
|
|
611
631
|
content:
|
|
@@ -632,7 +652,7 @@ paths:
|
|
|
632
652
|
$ref: '#/components/schemas/MessagingRespondRequestRequest'
|
|
633
653
|
required: true
|
|
634
654
|
security:
|
|
635
|
-
-
|
|
655
|
+
- MessagingJobTokenAuth: []
|
|
636
656
|
responses:
|
|
637
657
|
'200':
|
|
638
658
|
content:
|
|
@@ -672,7 +692,7 @@ paths:
|
|
|
672
692
|
$ref: '#/components/schemas/MessagingStreamRequestRequest'
|
|
673
693
|
required: true
|
|
674
694
|
security:
|
|
675
|
-
-
|
|
695
|
+
- MessagingJobTokenAuth: []
|
|
676
696
|
responses:
|
|
677
697
|
'200':
|
|
678
698
|
content:
|
|
@@ -700,6 +720,7 @@ paths:
|
|
|
700
720
|
tags:
|
|
701
721
|
- integrations
|
|
702
722
|
security:
|
|
723
|
+
- MessagingJobTokenAuth: []
|
|
703
724
|
- tokenAuth: []
|
|
704
725
|
responses:
|
|
705
726
|
'200':
|
|
@@ -747,6 +768,7 @@ paths:
|
|
|
747
768
|
tags:
|
|
748
769
|
- observations
|
|
749
770
|
security:
|
|
771
|
+
- MessagingJobTokenAuth: []
|
|
750
772
|
- tokenAuth: []
|
|
751
773
|
responses:
|
|
752
774
|
'200':
|
|
@@ -778,6 +800,7 @@ paths:
|
|
|
778
800
|
$ref: '#/components/schemas/QuickCaptureRequest'
|
|
779
801
|
required: true
|
|
780
802
|
security:
|
|
803
|
+
- MessagingJobTokenAuth: []
|
|
781
804
|
- tokenAuth: []
|
|
782
805
|
responses:
|
|
783
806
|
'201':
|
|
@@ -804,6 +827,7 @@ paths:
|
|
|
804
827
|
tags:
|
|
805
828
|
- observations
|
|
806
829
|
security:
|
|
830
|
+
- MessagingJobTokenAuth: []
|
|
807
831
|
- tokenAuth: []
|
|
808
832
|
responses:
|
|
809
833
|
'200':
|
|
@@ -825,6 +849,7 @@ paths:
|
|
|
825
849
|
tags:
|
|
826
850
|
- projects
|
|
827
851
|
security:
|
|
852
|
+
- MessagingJobTokenAuth: []
|
|
828
853
|
- tokenAuth: []
|
|
829
854
|
responses:
|
|
830
855
|
'200':
|
|
@@ -853,6 +878,7 @@ paths:
|
|
|
853
878
|
$ref: '#/components/schemas/ProjectFieldDefinitionRequest'
|
|
854
879
|
required: true
|
|
855
880
|
security:
|
|
881
|
+
- MessagingJobTokenAuth: []
|
|
856
882
|
- tokenAuth: []
|
|
857
883
|
responses:
|
|
858
884
|
'201':
|
|
@@ -876,6 +902,7 @@ paths:
|
|
|
876
902
|
tags:
|
|
877
903
|
- projects
|
|
878
904
|
security:
|
|
905
|
+
- MessagingJobTokenAuth: []
|
|
879
906
|
- tokenAuth: []
|
|
880
907
|
responses:
|
|
881
908
|
'200':
|
|
@@ -910,6 +937,7 @@ paths:
|
|
|
910
937
|
$ref: '#/components/schemas/ProjectFieldDefinitionRequest'
|
|
911
938
|
required: true
|
|
912
939
|
security:
|
|
940
|
+
- MessagingJobTokenAuth: []
|
|
913
941
|
- tokenAuth: []
|
|
914
942
|
responses:
|
|
915
943
|
'200':
|
|
@@ -943,6 +971,7 @@ paths:
|
|
|
943
971
|
schema:
|
|
944
972
|
$ref: '#/components/schemas/PatchedProjectFieldDefinitionRequest'
|
|
945
973
|
security:
|
|
974
|
+
- MessagingJobTokenAuth: []
|
|
946
975
|
- tokenAuth: []
|
|
947
976
|
responses:
|
|
948
977
|
'200':
|
|
@@ -965,6 +994,7 @@ paths:
|
|
|
965
994
|
tags:
|
|
966
995
|
- projects
|
|
967
996
|
security:
|
|
997
|
+
- MessagingJobTokenAuth: []
|
|
968
998
|
- tokenAuth: []
|
|
969
999
|
responses:
|
|
970
1000
|
'204':
|
|
@@ -984,6 +1014,7 @@ paths:
|
|
|
984
1014
|
tags:
|
|
985
1015
|
- projects
|
|
986
1016
|
security:
|
|
1017
|
+
- MessagingJobTokenAuth: []
|
|
987
1018
|
- tokenAuth: []
|
|
988
1019
|
responses:
|
|
989
1020
|
'200':
|
|
@@ -1006,6 +1037,7 @@ paths:
|
|
|
1006
1037
|
tags:
|
|
1007
1038
|
- projects
|
|
1008
1039
|
security:
|
|
1040
|
+
- MessagingJobTokenAuth: []
|
|
1009
1041
|
- tokenAuth: []
|
|
1010
1042
|
responses:
|
|
1011
1043
|
'200':
|
|
@@ -1035,6 +1067,7 @@ paths:
|
|
|
1035
1067
|
$ref: '#/components/schemas/ProjectRequest'
|
|
1036
1068
|
required: true
|
|
1037
1069
|
security:
|
|
1070
|
+
- MessagingJobTokenAuth: []
|
|
1038
1071
|
- tokenAuth: []
|
|
1039
1072
|
responses:
|
|
1040
1073
|
'201':
|
|
@@ -1059,6 +1092,7 @@ paths:
|
|
|
1059
1092
|
tags:
|
|
1060
1093
|
- projects
|
|
1061
1094
|
security:
|
|
1095
|
+
- MessagingJobTokenAuth: []
|
|
1062
1096
|
- tokenAuth: []
|
|
1063
1097
|
responses:
|
|
1064
1098
|
'200':
|
|
@@ -1094,6 +1128,7 @@ paths:
|
|
|
1094
1128
|
$ref: '#/components/schemas/ProjectRequest'
|
|
1095
1129
|
required: true
|
|
1096
1130
|
security:
|
|
1131
|
+
- MessagingJobTokenAuth: []
|
|
1097
1132
|
- tokenAuth: []
|
|
1098
1133
|
responses:
|
|
1099
1134
|
'200':
|
|
@@ -1128,6 +1163,7 @@ paths:
|
|
|
1128
1163
|
schema:
|
|
1129
1164
|
$ref: '#/components/schemas/PatchedProjectRequest'
|
|
1130
1165
|
security:
|
|
1166
|
+
- MessagingJobTokenAuth: []
|
|
1131
1167
|
- tokenAuth: []
|
|
1132
1168
|
responses:
|
|
1133
1169
|
'200':
|
|
@@ -1151,6 +1187,7 @@ paths:
|
|
|
1151
1187
|
tags:
|
|
1152
1188
|
- projects
|
|
1153
1189
|
security:
|
|
1190
|
+
- MessagingJobTokenAuth: []
|
|
1154
1191
|
- tokenAuth: []
|
|
1155
1192
|
responses:
|
|
1156
1193
|
'204':
|
|
@@ -1180,6 +1217,7 @@ paths:
|
|
|
1180
1217
|
tags:
|
|
1181
1218
|
- projects
|
|
1182
1219
|
security:
|
|
1220
|
+
- MessagingJobTokenAuth: []
|
|
1183
1221
|
- tokenAuth: []
|
|
1184
1222
|
responses:
|
|
1185
1223
|
'200':
|
|
@@ -1215,6 +1253,7 @@ paths:
|
|
|
1215
1253
|
$ref: '#/components/schemas/RevertRequestRequest'
|
|
1216
1254
|
required: true
|
|
1217
1255
|
security:
|
|
1256
|
+
- MessagingJobTokenAuth: []
|
|
1218
1257
|
- tokenAuth: []
|
|
1219
1258
|
responses:
|
|
1220
1259
|
'200':
|
|
@@ -1231,6 +1270,7 @@ paths:
|
|
|
1231
1270
|
tags:
|
|
1232
1271
|
- tasks
|
|
1233
1272
|
security:
|
|
1273
|
+
- MessagingJobTokenAuth: []
|
|
1234
1274
|
- tokenAuth: []
|
|
1235
1275
|
responses:
|
|
1236
1276
|
'200':
|
|
@@ -1260,6 +1300,7 @@ paths:
|
|
|
1260
1300
|
$ref: '#/components/schemas/TaskRequest'
|
|
1261
1301
|
required: true
|
|
1262
1302
|
security:
|
|
1303
|
+
- MessagingJobTokenAuth: []
|
|
1263
1304
|
- tokenAuth: []
|
|
1264
1305
|
responses:
|
|
1265
1306
|
'201':
|
|
@@ -1284,6 +1325,7 @@ paths:
|
|
|
1284
1325
|
tags:
|
|
1285
1326
|
- tasks
|
|
1286
1327
|
security:
|
|
1328
|
+
- MessagingJobTokenAuth: []
|
|
1287
1329
|
- tokenAuth: []
|
|
1288
1330
|
responses:
|
|
1289
1331
|
'200':
|
|
@@ -1319,6 +1361,7 @@ paths:
|
|
|
1319
1361
|
$ref: '#/components/schemas/TaskRequest'
|
|
1320
1362
|
required: true
|
|
1321
1363
|
security:
|
|
1364
|
+
- MessagingJobTokenAuth: []
|
|
1322
1365
|
- tokenAuth: []
|
|
1323
1366
|
responses:
|
|
1324
1367
|
'200':
|
|
@@ -1353,6 +1396,7 @@ paths:
|
|
|
1353
1396
|
schema:
|
|
1354
1397
|
$ref: '#/components/schemas/PatchedTaskRequest'
|
|
1355
1398
|
security:
|
|
1399
|
+
- MessagingJobTokenAuth: []
|
|
1356
1400
|
- tokenAuth: []
|
|
1357
1401
|
responses:
|
|
1358
1402
|
'200':
|
|
@@ -1376,6 +1420,7 @@ paths:
|
|
|
1376
1420
|
tags:
|
|
1377
1421
|
- tasks
|
|
1378
1422
|
security:
|
|
1423
|
+
- MessagingJobTokenAuth: []
|
|
1379
1424
|
- tokenAuth: []
|
|
1380
1425
|
responses:
|
|
1381
1426
|
'204':
|
|
@@ -1399,6 +1444,7 @@ paths:
|
|
|
1399
1444
|
tags:
|
|
1400
1445
|
- vendors
|
|
1401
1446
|
security:
|
|
1447
|
+
- MessagingJobTokenAuth: []
|
|
1402
1448
|
- tokenAuth: []
|
|
1403
1449
|
responses:
|
|
1404
1450
|
'200':
|
|
@@ -1428,6 +1474,7 @@ paths:
|
|
|
1428
1474
|
$ref: '#/components/schemas/VendorRequest'
|
|
1429
1475
|
required: true
|
|
1430
1476
|
security:
|
|
1477
|
+
- MessagingJobTokenAuth: []
|
|
1431
1478
|
- tokenAuth: []
|
|
1432
1479
|
responses:
|
|
1433
1480
|
'201':
|
|
@@ -1452,6 +1499,7 @@ paths:
|
|
|
1452
1499
|
tags:
|
|
1453
1500
|
- vendors
|
|
1454
1501
|
security:
|
|
1502
|
+
- MessagingJobTokenAuth: []
|
|
1455
1503
|
- tokenAuth: []
|
|
1456
1504
|
responses:
|
|
1457
1505
|
'200':
|
|
@@ -1487,6 +1535,7 @@ paths:
|
|
|
1487
1535
|
$ref: '#/components/schemas/VendorRequest'
|
|
1488
1536
|
required: true
|
|
1489
1537
|
security:
|
|
1538
|
+
- MessagingJobTokenAuth: []
|
|
1490
1539
|
- tokenAuth: []
|
|
1491
1540
|
responses:
|
|
1492
1541
|
'200':
|
|
@@ -1521,6 +1570,7 @@ paths:
|
|
|
1521
1570
|
schema:
|
|
1522
1571
|
$ref: '#/components/schemas/PatchedVendorRequest'
|
|
1523
1572
|
security:
|
|
1573
|
+
- MessagingJobTokenAuth: []
|
|
1524
1574
|
- tokenAuth: []
|
|
1525
1575
|
responses:
|
|
1526
1576
|
'200':
|
|
@@ -1544,6 +1594,7 @@ paths:
|
|
|
1544
1594
|
tags:
|
|
1545
1595
|
- vendors
|
|
1546
1596
|
security:
|
|
1597
|
+
- MessagingJobTokenAuth: []
|
|
1547
1598
|
- tokenAuth: []
|
|
1548
1599
|
responses:
|
|
1549
1600
|
'204':
|
|
@@ -1620,6 +1671,7 @@ paths:
|
|
|
1620
1671
|
tags:
|
|
1621
1672
|
- workflows
|
|
1622
1673
|
security:
|
|
1674
|
+
- MessagingJobTokenAuth: []
|
|
1623
1675
|
- tokenAuth: []
|
|
1624
1676
|
responses:
|
|
1625
1677
|
'200':
|
|
@@ -1648,6 +1700,7 @@ paths:
|
|
|
1648
1700
|
tags:
|
|
1649
1701
|
- workflows
|
|
1650
1702
|
security:
|
|
1703
|
+
- MessagingJobTokenAuth: []
|
|
1651
1704
|
- tokenAuth: []
|
|
1652
1705
|
responses:
|
|
1653
1706
|
'200':
|
|
@@ -1684,6 +1737,7 @@ paths:
|
|
|
1684
1737
|
$ref: '#/components/schemas/DefinitionApplyRequest'
|
|
1685
1738
|
required: true
|
|
1686
1739
|
security:
|
|
1740
|
+
- MessagingJobTokenAuth: []
|
|
1687
1741
|
- tokenAuth: []
|
|
1688
1742
|
responses:
|
|
1689
1743
|
'200':
|
|
@@ -1721,6 +1775,7 @@ paths:
|
|
|
1721
1775
|
$ref: '#/components/schemas/ProposalApprovalRequest'
|
|
1722
1776
|
required: true
|
|
1723
1777
|
security:
|
|
1778
|
+
- MessagingJobTokenAuth: []
|
|
1724
1779
|
- tokenAuth: []
|
|
1725
1780
|
responses:
|
|
1726
1781
|
'201':
|
|
@@ -1760,6 +1815,7 @@ paths:
|
|
|
1760
1815
|
tags:
|
|
1761
1816
|
- workflows
|
|
1762
1817
|
security:
|
|
1818
|
+
- MessagingJobTokenAuth: []
|
|
1763
1819
|
- tokenAuth: []
|
|
1764
1820
|
responses:
|
|
1765
1821
|
'200':
|
|
@@ -1788,6 +1844,7 @@ paths:
|
|
|
1788
1844
|
tags:
|
|
1789
1845
|
- workflows
|
|
1790
1846
|
security:
|
|
1847
|
+
- MessagingJobTokenAuth: []
|
|
1791
1848
|
- tokenAuth: []
|
|
1792
1849
|
responses:
|
|
1793
1850
|
'200':
|
|
@@ -1832,6 +1889,7 @@ paths:
|
|
|
1832
1889
|
tags:
|
|
1833
1890
|
- workflows
|
|
1834
1891
|
security:
|
|
1892
|
+
- MessagingJobTokenAuth: []
|
|
1835
1893
|
- tokenAuth: []
|
|
1836
1894
|
responses:
|
|
1837
1895
|
'200':
|
|
@@ -1863,6 +1921,7 @@ paths:
|
|
|
1863
1921
|
$ref: '#/components/schemas/WorkflowRunCreateRequest'
|
|
1864
1922
|
required: true
|
|
1865
1923
|
security:
|
|
1924
|
+
- MessagingJobTokenAuth: []
|
|
1866
1925
|
- tokenAuth: []
|
|
1867
1926
|
responses:
|
|
1868
1927
|
'201':
|
|
@@ -1889,6 +1948,7 @@ paths:
|
|
|
1889
1948
|
tags:
|
|
1890
1949
|
- workflows
|
|
1891
1950
|
security:
|
|
1951
|
+
- MessagingJobTokenAuth: []
|
|
1892
1952
|
- tokenAuth: []
|
|
1893
1953
|
responses:
|
|
1894
1954
|
'200':
|
|
@@ -1915,6 +1975,7 @@ paths:
|
|
|
1915
1975
|
tags:
|
|
1916
1976
|
- workflows
|
|
1917
1977
|
security:
|
|
1978
|
+
- MessagingJobTokenAuth: []
|
|
1918
1979
|
- tokenAuth: []
|
|
1919
1980
|
responses:
|
|
1920
1981
|
'200':
|
|
@@ -1938,6 +1999,7 @@ paths:
|
|
|
1938
1999
|
tags:
|
|
1939
2000
|
- workflows
|
|
1940
2001
|
security:
|
|
2002
|
+
- MessagingJobTokenAuth: []
|
|
1941
2003
|
- tokenAuth: []
|
|
1942
2004
|
responses:
|
|
1943
2005
|
'200':
|
|
@@ -2101,6 +2163,7 @@ paths:
|
|
|
2101
2163
|
tags:
|
|
2102
2164
|
- workflows
|
|
2103
2165
|
security:
|
|
2166
|
+
- MessagingJobTokenAuth: []
|
|
2104
2167
|
- tokenAuth: []
|
|
2105
2168
|
responses:
|
|
2106
2169
|
'200':
|
|
@@ -2130,6 +2193,7 @@ paths:
|
|
|
2130
2193
|
$ref: '#/components/schemas/WorkflowRequest'
|
|
2131
2194
|
required: true
|
|
2132
2195
|
security:
|
|
2196
|
+
- MessagingJobTokenAuth: []
|
|
2133
2197
|
- tokenAuth: []
|
|
2134
2198
|
responses:
|
|
2135
2199
|
'201':
|
|
@@ -2154,6 +2218,7 @@ paths:
|
|
|
2154
2218
|
tags:
|
|
2155
2219
|
- workflows
|
|
2156
2220
|
security:
|
|
2221
|
+
- MessagingJobTokenAuth: []
|
|
2157
2222
|
- tokenAuth: []
|
|
2158
2223
|
responses:
|
|
2159
2224
|
'200':
|
|
@@ -2189,6 +2254,7 @@ paths:
|
|
|
2189
2254
|
$ref: '#/components/schemas/WorkflowRequest'
|
|
2190
2255
|
required: true
|
|
2191
2256
|
security:
|
|
2257
|
+
- MessagingJobTokenAuth: []
|
|
2192
2258
|
- tokenAuth: []
|
|
2193
2259
|
responses:
|
|
2194
2260
|
'200':
|
|
@@ -2223,6 +2289,7 @@ paths:
|
|
|
2223
2289
|
schema:
|
|
2224
2290
|
$ref: '#/components/schemas/PatchedWorkflowRequest'
|
|
2225
2291
|
security:
|
|
2292
|
+
- MessagingJobTokenAuth: []
|
|
2226
2293
|
- tokenAuth: []
|
|
2227
2294
|
responses:
|
|
2228
2295
|
'200':
|
|
@@ -2246,6 +2313,7 @@ paths:
|
|
|
2246
2313
|
tags:
|
|
2247
2314
|
- workflows
|
|
2248
2315
|
security:
|
|
2316
|
+
- MessagingJobTokenAuth: []
|
|
2249
2317
|
- tokenAuth: []
|
|
2250
2318
|
responses:
|
|
2251
2319
|
'204':
|
|
@@ -2266,6 +2334,7 @@ paths:
|
|
|
2266
2334
|
tags:
|
|
2267
2335
|
- workspaces
|
|
2268
2336
|
security:
|
|
2337
|
+
- MessagingJobTokenAuth: []
|
|
2269
2338
|
- tokenAuth: []
|
|
2270
2339
|
responses:
|
|
2271
2340
|
'200':
|
|
@@ -2290,6 +2359,7 @@ paths:
|
|
|
2290
2359
|
tags:
|
|
2291
2360
|
- workspaces
|
|
2292
2361
|
security:
|
|
2362
|
+
- MessagingJobTokenAuth: []
|
|
2293
2363
|
- tokenAuth: []
|
|
2294
2364
|
responses:
|
|
2295
2365
|
'200':
|
|
@@ -2306,6 +2376,7 @@ paths:
|
|
|
2306
2376
|
tags:
|
|
2307
2377
|
- workspaces
|
|
2308
2378
|
security:
|
|
2379
|
+
- MessagingJobTokenAuth: []
|
|
2309
2380
|
- tokenAuth: []
|
|
2310
2381
|
responses:
|
|
2311
2382
|
'200':
|
|
@@ -2335,6 +2406,7 @@ paths:
|
|
|
2335
2406
|
$ref: '#/components/schemas/WorkspaceRequest'
|
|
2336
2407
|
required: true
|
|
2337
2408
|
security:
|
|
2409
|
+
- MessagingJobTokenAuth: []
|
|
2338
2410
|
- tokenAuth: []
|
|
2339
2411
|
responses:
|
|
2340
2412
|
'201':
|
|
@@ -2359,6 +2431,7 @@ paths:
|
|
|
2359
2431
|
tags:
|
|
2360
2432
|
- workspaces
|
|
2361
2433
|
security:
|
|
2434
|
+
- MessagingJobTokenAuth: []
|
|
2362
2435
|
- tokenAuth: []
|
|
2363
2436
|
responses:
|
|
2364
2437
|
'200':
|
|
@@ -2394,6 +2467,7 @@ paths:
|
|
|
2394
2467
|
$ref: '#/components/schemas/WorkspaceRequest'
|
|
2395
2468
|
required: true
|
|
2396
2469
|
security:
|
|
2470
|
+
- MessagingJobTokenAuth: []
|
|
2397
2471
|
- tokenAuth: []
|
|
2398
2472
|
responses:
|
|
2399
2473
|
'200':
|
|
@@ -2428,6 +2502,7 @@ paths:
|
|
|
2428
2502
|
schema:
|
|
2429
2503
|
$ref: '#/components/schemas/PatchedWorkspaceRequest'
|
|
2430
2504
|
security:
|
|
2505
|
+
- MessagingJobTokenAuth: []
|
|
2431
2506
|
- tokenAuth: []
|
|
2432
2507
|
responses:
|
|
2433
2508
|
'200':
|
|
@@ -2451,6 +2526,7 @@ paths:
|
|
|
2451
2526
|
tags:
|
|
2452
2527
|
- workspaces
|
|
2453
2528
|
security:
|
|
2529
|
+
- MessagingJobTokenAuth: []
|
|
2454
2530
|
- tokenAuth: []
|
|
2455
2531
|
responses:
|
|
2456
2532
|
'204':
|
|
@@ -2469,6 +2545,7 @@ paths:
|
|
|
2469
2545
|
tags:
|
|
2470
2546
|
- workspaces
|
|
2471
2547
|
security:
|
|
2548
|
+
- MessagingJobTokenAuth: []
|
|
2472
2549
|
- tokenAuth: []
|
|
2473
2550
|
responses:
|
|
2474
2551
|
'200':
|
|
@@ -2504,6 +2581,7 @@ paths:
|
|
|
2504
2581
|
$ref: '#/components/schemas/WorkspaceInviteRequest'
|
|
2505
2582
|
required: true
|
|
2506
2583
|
security:
|
|
2584
|
+
- MessagingJobTokenAuth: []
|
|
2507
2585
|
- tokenAuth: []
|
|
2508
2586
|
responses:
|
|
2509
2587
|
'201':
|
|
@@ -2533,6 +2611,7 @@ paths:
|
|
|
2533
2611
|
tags:
|
|
2534
2612
|
- workspaces
|
|
2535
2613
|
security:
|
|
2614
|
+
- MessagingJobTokenAuth: []
|
|
2536
2615
|
- tokenAuth: []
|
|
2537
2616
|
responses:
|
|
2538
2617
|
'204':
|
|
@@ -2551,6 +2630,7 @@ paths:
|
|
|
2551
2630
|
tags:
|
|
2552
2631
|
- workspaces
|
|
2553
2632
|
security:
|
|
2633
|
+
- MessagingJobTokenAuth: []
|
|
2554
2634
|
- tokenAuth: []
|
|
2555
2635
|
responses:
|
|
2556
2636
|
'200':
|
|
@@ -2582,6 +2662,7 @@ paths:
|
|
|
2582
2662
|
tags:
|
|
2583
2663
|
- workspaces
|
|
2584
2664
|
security:
|
|
2665
|
+
- MessagingJobTokenAuth: []
|
|
2585
2666
|
- tokenAuth: []
|
|
2586
2667
|
responses:
|
|
2587
2668
|
'200':
|
|
@@ -2621,6 +2702,7 @@ paths:
|
|
|
2621
2702
|
schema:
|
|
2622
2703
|
$ref: '#/components/schemas/WorkspaceMembershipRequest'
|
|
2623
2704
|
security:
|
|
2705
|
+
- MessagingJobTokenAuth: []
|
|
2624
2706
|
- tokenAuth: []
|
|
2625
2707
|
responses:
|
|
2626
2708
|
'200':
|
|
@@ -2660,6 +2742,7 @@ paths:
|
|
|
2660
2742
|
schema:
|
|
2661
2743
|
$ref: '#/components/schemas/PatchedWorkspaceMembershipRequest'
|
|
2662
2744
|
security:
|
|
2745
|
+
- MessagingJobTokenAuth: []
|
|
2663
2746
|
- tokenAuth: []
|
|
2664
2747
|
responses:
|
|
2665
2748
|
'200':
|
|
@@ -2688,6 +2771,7 @@ paths:
|
|
|
2688
2771
|
tags:
|
|
2689
2772
|
- workspaces
|
|
2690
2773
|
security:
|
|
2774
|
+
- MessagingJobTokenAuth: []
|
|
2691
2775
|
- tokenAuth: []
|
|
2692
2776
|
responses:
|
|
2693
2777
|
'204':
|
|
@@ -4932,6 +5016,10 @@ components:
|
|
|
4932
5016
|
required:
|
|
4933
5017
|
- name
|
|
4934
5018
|
securitySchemes:
|
|
5019
|
+
MessagingJobTokenAuth:
|
|
5020
|
+
type: apiKey
|
|
5021
|
+
in: header
|
|
5022
|
+
name: Authorization
|
|
4935
5023
|
RunTokenAuth:
|
|
4936
5024
|
type: http
|
|
4937
5025
|
scheme: bearer
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|