@lessly/sdk-app 6.1.2 → 6.2.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.
Files changed (61) hide show
  1. package/dist/analytics/index.cjs +11 -0
  2. package/dist/analytics/index.cjs.map +1 -0
  3. package/dist/analytics/index.d.cts +8 -0
  4. package/dist/analytics/index.d.ts +8 -0
  5. package/dist/analytics/index.js +9 -0
  6. package/dist/analytics/index.js.map +1 -0
  7. package/dist/brain/index.cjs +0 -10
  8. package/dist/brain/index.cjs.map +1 -1
  9. package/dist/brain/index.d.cts +2 -10
  10. package/dist/brain/index.d.ts +2 -10
  11. package/dist/brain/index.js +1 -9
  12. package/dist/brain/index.js.map +1 -1
  13. package/dist/{client.gen-CJ4W5FzA.d.cts → client.gen-Q9n-n5S8.d.cts} +2809 -242
  14. package/dist/{client.gen-CJ4W5FzA.d.ts → client.gen-Q9n-n5S8.d.ts} +2809 -242
  15. package/dist/consent/index.d.cts +1 -1
  16. package/dist/consent/index.d.ts +1 -1
  17. package/dist/deployment/index.cjs +531 -0
  18. package/dist/deployment/index.cjs.map +1 -0
  19. package/dist/deployment/index.d.cts +424 -0
  20. package/dist/deployment/index.d.ts +424 -0
  21. package/dist/deployment/index.js +425 -0
  22. package/dist/deployment/index.js.map +1 -0
  23. package/dist/index.cjs +1895 -146
  24. package/dist/index.cjs.map +1 -1
  25. package/dist/index.d.cts +1 -1
  26. package/dist/index.d.ts +1 -1
  27. package/dist/index.js +1895 -146
  28. package/dist/index.js.map +1 -1
  29. package/dist/mail/index.d.cts +2 -2
  30. package/dist/mail/index.d.ts +2 -2
  31. package/dist/organization/index.cjs +5 -0
  32. package/dist/organization/index.cjs.map +1 -1
  33. package/dist/organization/index.d.cts +6 -2
  34. package/dist/organization/index.d.ts +6 -2
  35. package/dist/organization/index.js +5 -1
  36. package/dist/organization/index.js.map +1 -1
  37. package/dist/playground/index.cjs +66 -0
  38. package/dist/playground/index.cjs.map +1 -0
  39. package/dist/playground/index.d.cts +52 -0
  40. package/dist/playground/index.d.ts +52 -0
  41. package/dist/playground/index.js +53 -0
  42. package/dist/playground/index.js.map +1 -0
  43. package/dist/tracking/index.d.cts +1 -1
  44. package/dist/tracking/index.d.ts +1 -1
  45. package/dist/waitlist/index.d.cts +1 -1
  46. package/dist/waitlist/index.d.ts +1 -1
  47. package/package.json +17 -2
  48. package/src/gen/analytics/index.ts +3 -0
  49. package/src/gen/analytics/queryOptions.gen.ts +11 -0
  50. package/src/gen/bindings.gen.ts +1895 -146
  51. package/src/gen/brain/index.ts +1 -1
  52. package/src/gen/brain/queryOptions.gen.ts +0 -14
  53. package/src/gen/client.gen.ts +455 -8
  54. package/src/gen/deployment/index.ts +3 -0
  55. package/src/gen/deployment/queryOptions.gen.ts +681 -0
  56. package/src/gen/manifest.gen.ts +1 -1
  57. package/src/gen/organization/index.ts +1 -1
  58. package/src/gen/organization/queryOptions.gen.ts +6 -0
  59. package/src/gen/playground/index.ts +3 -0
  60. package/src/gen/playground/queryOptions.gen.ts +86 -0
  61. package/src/gen/types.gen.ts +2840 -234
@@ -2,6 +2,21 @@
2
2
  import type { BindingsMap } from '../runtime/types';
3
3
 
4
4
  export const bindings: BindingsMap = {
5
+ "analytics": {
6
+ "query": {
7
+ "run": {
8
+ "method": "POST",
9
+ "params": [
10
+ {
11
+ "in": "body",
12
+ "name": "q"
13
+ }
14
+ ],
15
+ "path": "/analytics/query",
16
+ "readOnly": true
17
+ }
18
+ }
19
+ },
5
20
  "brain": {
6
21
  "backup": {
7
22
  "create": {
@@ -394,21 +409,6 @@ export const bindings: BindingsMap = {
394
409
  }
395
410
  },
396
411
  "knowledge": {
397
- "graph": {
398
- "method": "GET",
399
- "params": [
400
- {
401
- "in": "query",
402
- "name": "limit"
403
- },
404
- {
405
- "in": "query",
406
- "name": "scope"
407
- }
408
- ],
409
- "path": "/brain/knowledge/graph",
410
- "readOnly": true
411
- },
412
412
  "neighborhood": {
413
413
  "method": "GET",
414
414
  "params": [
@@ -495,31 +495,6 @@ export const bindings: BindingsMap = {
495
495
  "readOnly": true
496
496
  }
497
497
  },
498
- "knowledge-entity": {
499
- "memories": {
500
- "method": "GET",
501
- "params": [
502
- {
503
- "in": "path",
504
- "name": "entity_ref"
505
- },
506
- {
507
- "in": "query",
508
- "name": "limit"
509
- },
510
- {
511
- "in": "query",
512
- "name": "offset"
513
- },
514
- {
515
- "in": "query",
516
- "name": "scope"
517
- }
518
- ],
519
- "path": "/brain/knowledge/entities/:entity_ref/memories",
520
- "readOnly": true
521
- }
522
- },
523
498
  "memory": {
524
499
  "add": {
525
500
  "method": "POST",
@@ -744,100 +719,1783 @@ export const bindings: BindingsMap = {
744
719
  },
745
720
  {
746
721
  "in": "body",
747
- "name": "font"
722
+ "name": "font"
723
+ },
724
+ {
725
+ "in": "body",
726
+ "name": "overrides"
727
+ }
728
+ ],
729
+ "path": "/consent/config/theme",
730
+ "readOnly": false
731
+ }
732
+ },
733
+ "dashboard-config": {
734
+ "get": {
735
+ "method": "GET",
736
+ "path": "/consent/consent/dashboard/config",
737
+ "readOnly": true
738
+ }
739
+ },
740
+ "dashboard-decisions": {
741
+ "list": {
742
+ "method": "GET",
743
+ "params": [
744
+ {
745
+ "in": "query",
746
+ "name": "limit"
747
+ },
748
+ {
749
+ "in": "query",
750
+ "name": "offset"
751
+ }
752
+ ],
753
+ "path": "/consent/consent/dashboard/decisions",
754
+ "readOnly": true
755
+ }
756
+ },
757
+ "dashboard-embed-snippet": {
758
+ "get": {
759
+ "method": "GET",
760
+ "path": "/consent/consent/dashboard/embed-snippet",
761
+ "readOnly": true
762
+ }
763
+ },
764
+ "dashboard-stats": {
765
+ "get": {
766
+ "method": "GET",
767
+ "path": "/consent/consent/dashboard/stats",
768
+ "readOnly": true
769
+ }
770
+ },
771
+ "embed": {
772
+ "get": {
773
+ "method": "GET",
774
+ "path": "/consent/embed",
775
+ "readOnly": true
776
+ }
777
+ },
778
+ "providers": {
779
+ "create": {
780
+ "method": "POST",
781
+ "params": [
782
+ {
783
+ "in": "body",
784
+ "name": "name"
785
+ },
786
+ {
787
+ "in": "body",
788
+ "name": "category"
789
+ },
790
+ {
791
+ "in": "body",
792
+ "name": "hosts"
793
+ },
794
+ {
795
+ "in": "body",
796
+ "name": "privacyUrl"
797
+ },
798
+ {
799
+ "in": "body",
800
+ "name": "description"
801
+ },
802
+ {
803
+ "in": "body",
804
+ "name": "orderIndex"
805
+ },
806
+ {
807
+ "in": "body",
808
+ "name": "cookies"
809
+ },
810
+ {
811
+ "in": "body",
812
+ "name": "catalogKey"
813
+ }
814
+ ],
815
+ "path": "/consent/consent/providers",
816
+ "readOnly": false
817
+ },
818
+ "delete": {
819
+ "method": "DELETE",
820
+ "params": [
821
+ {
822
+ "in": "path",
823
+ "name": "id"
824
+ }
825
+ ],
826
+ "path": "/consent/consent/providers/:id",
827
+ "readOnly": false
828
+ },
829
+ "list": {
830
+ "method": "GET",
831
+ "path": "/consent/consent/providers",
832
+ "readOnly": true
833
+ },
834
+ "update": {
835
+ "method": "PATCH",
836
+ "params": [
837
+ {
838
+ "in": "path",
839
+ "name": "id"
840
+ },
841
+ {
842
+ "in": "body",
843
+ "name": "name"
844
+ },
845
+ {
846
+ "in": "body",
847
+ "name": "category"
848
+ },
849
+ {
850
+ "in": "body",
851
+ "name": "hosts"
852
+ },
853
+ {
854
+ "in": "body",
855
+ "name": "privacyUrl"
856
+ },
857
+ {
858
+ "in": "body",
859
+ "name": "description"
860
+ },
861
+ {
862
+ "in": "body",
863
+ "name": "orderIndex"
864
+ },
865
+ {
866
+ "in": "body",
867
+ "name": "cookies"
868
+ }
869
+ ],
870
+ "path": "/consent/consent/providers/:id",
871
+ "readOnly": false
872
+ }
873
+ },
874
+ "records": {
875
+ "export": {
876
+ "method": "POST",
877
+ "params": [
878
+ {
879
+ "in": "body",
880
+ "name": "from"
881
+ },
882
+ {
883
+ "in": "body",
884
+ "name": "to"
885
+ },
886
+ {
887
+ "in": "body",
888
+ "name": "limit"
889
+ },
890
+ {
891
+ "in": "body",
892
+ "name": "record_id"
893
+ }
894
+ ],
895
+ "path": "/consent/consent/dashboard/export",
896
+ "readOnly": true
897
+ }
898
+ },
899
+ "stats": {
900
+ "get": {
901
+ "method": "GET",
902
+ "params": [
903
+ {
904
+ "in": "query",
905
+ "name": "range"
906
+ }
907
+ ],
908
+ "path": "/consent/consent/stats",
909
+ "readOnly": true
910
+ }
911
+ }
912
+ },
913
+ "deployment": {
914
+ "alert": {
915
+ "create": {
916
+ "method": "POST",
917
+ "params": [
918
+ {
919
+ "in": "body",
920
+ "name": "targetKind"
921
+ },
922
+ {
923
+ "in": "body",
924
+ "name": "targetId"
925
+ },
926
+ {
927
+ "in": "body",
928
+ "name": "metric"
929
+ },
930
+ {
931
+ "in": "body",
932
+ "name": "comparator"
933
+ },
934
+ {
935
+ "in": "body",
936
+ "name": "threshold"
937
+ },
938
+ {
939
+ "in": "body",
940
+ "name": "enabled"
941
+ }
942
+ ],
943
+ "path": "/deployment/alerts",
944
+ "readOnly": false
945
+ },
946
+ "delete": {
947
+ "method": "DELETE",
948
+ "params": [
949
+ {
950
+ "in": "path",
951
+ "name": "id"
952
+ }
953
+ ],
954
+ "path": "/deployment/alerts/:id",
955
+ "readOnly": false
956
+ },
957
+ "list": {
958
+ "method": "GET",
959
+ "params": [
960
+ {
961
+ "in": "path",
962
+ "name": "environmentId"
963
+ }
964
+ ],
965
+ "path": "/deployment/environments/:environmentId/alerts",
966
+ "readOnly": true
967
+ },
968
+ "update": {
969
+ "method": "PATCH",
970
+ "params": [
971
+ {
972
+ "in": "body",
973
+ "name": "comparator"
974
+ },
975
+ {
976
+ "in": "body",
977
+ "name": "threshold"
978
+ },
979
+ {
980
+ "in": "body",
981
+ "name": "enabled"
982
+ },
983
+ {
984
+ "in": "path",
985
+ "name": "id"
986
+ }
987
+ ],
988
+ "path": "/deployment/alerts/:id",
989
+ "readOnly": false
990
+ }
991
+ },
992
+ "alert-events": {
993
+ "list": {
994
+ "method": "GET",
995
+ "params": [
996
+ {
997
+ "in": "path",
998
+ "name": "environmentId"
999
+ },
1000
+ {
1001
+ "in": "query",
1002
+ "name": "limit"
1003
+ }
1004
+ ],
1005
+ "path": "/deployment/environments/:environmentId/alert-events",
1006
+ "readOnly": true
1007
+ }
1008
+ },
1009
+ "analytics": {
1010
+ "query": {
1011
+ "method": "POST",
1012
+ "params": [
1013
+ {
1014
+ "in": "body",
1015
+ "name": "q"
1016
+ }
1017
+ ],
1018
+ "path": "/deployment/analytics/query",
1019
+ "readOnly": true
1020
+ }
1021
+ },
1022
+ "audit": {
1023
+ "list": {
1024
+ "method": "GET",
1025
+ "params": [
1026
+ {
1027
+ "in": "path",
1028
+ "name": "environmentId"
1029
+ },
1030
+ {
1031
+ "in": "query",
1032
+ "name": "entityType"
1033
+ },
1034
+ {
1035
+ "in": "query",
1036
+ "name": "action"
1037
+ },
1038
+ {
1039
+ "in": "query",
1040
+ "name": "actorId"
1041
+ },
1042
+ {
1043
+ "in": "query",
1044
+ "name": "serviceId"
1045
+ },
1046
+ {
1047
+ "in": "query",
1048
+ "name": "limit"
1049
+ }
1050
+ ],
1051
+ "path": "/deployment/environments/:environmentId/audit",
1052
+ "readOnly": true
1053
+ }
1054
+ },
1055
+ "build": {
1056
+ "get": {
1057
+ "method": "GET",
1058
+ "params": [
1059
+ {
1060
+ "in": "path",
1061
+ "name": "id"
1062
+ }
1063
+ ],
1064
+ "path": "/deployment/builds/:id",
1065
+ "readOnly": true
1066
+ },
1067
+ "list": {
1068
+ "method": "GET",
1069
+ "params": [
1070
+ {
1071
+ "in": "path",
1072
+ "name": "serviceId"
1073
+ }
1074
+ ],
1075
+ "path": "/deployment/services/:serviceId/builds",
1076
+ "readOnly": true
1077
+ },
1078
+ "logs": {
1079
+ "method": "GET",
1080
+ "params": [
1081
+ {
1082
+ "in": "path",
1083
+ "name": "serviceId"
1084
+ },
1085
+ {
1086
+ "in": "path",
1087
+ "name": "deploymentId"
1088
+ },
1089
+ {
1090
+ "in": "query",
1091
+ "name": "tail"
1092
+ },
1093
+ {
1094
+ "in": "query",
1095
+ "name": "since"
1096
+ }
1097
+ ],
1098
+ "path": "/deployment/services/:serviceId/deployments/:deploymentId/build-logs",
1099
+ "readOnly": true
1100
+ }
1101
+ },
1102
+ "canvas": {
1103
+ "get": {
1104
+ "method": "GET",
1105
+ "params": [
1106
+ {
1107
+ "in": "path",
1108
+ "name": "environmentId"
1109
+ }
1110
+ ],
1111
+ "path": "/deployment/environments/:environmentId/canvas",
1112
+ "readOnly": true
1113
+ }
1114
+ },
1115
+ "canvas-move": {
1116
+ "node": {
1117
+ "method": "PUT",
1118
+ "params": [
1119
+ {
1120
+ "in": "path",
1121
+ "name": "environmentId"
1122
+ },
1123
+ {
1124
+ "in": "path",
1125
+ "name": "nodeId"
1126
+ },
1127
+ {
1128
+ "in": "body",
1129
+ "name": "x"
1130
+ },
1131
+ {
1132
+ "in": "body",
1133
+ "name": "y"
1134
+ },
1135
+ {
1136
+ "in": "body",
1137
+ "name": "width"
1138
+ },
1139
+ {
1140
+ "in": "body",
1141
+ "name": "height"
1142
+ }
1143
+ ],
1144
+ "path": "/deployment/environments/:environmentId/canvas/nodes/:nodeId",
1145
+ "readOnly": false
1146
+ }
1147
+ },
1148
+ "cloud-sql": {
1149
+ "logs": {
1150
+ "method": "GET",
1151
+ "params": [
1152
+ {
1153
+ "in": "path",
1154
+ "name": "instanceId"
1155
+ },
1156
+ {
1157
+ "in": "query",
1158
+ "name": "tail"
1159
+ }
1160
+ ],
1161
+ "path": "/deployment/cloud-sql/instances/:instanceId/logs",
1162
+ "readOnly": true
1163
+ }
1164
+ },
1165
+ "cloud-sql-backfill-log": {
1166
+ "flags": {
1167
+ "method": "POST",
1168
+ "params": [
1169
+ {
1170
+ "in": "body",
1171
+ "name": "instanceId"
1172
+ }
1173
+ ],
1174
+ "path": "/deployment/cloud-sql/instances/backfill-log-flags",
1175
+ "readOnly": false
1176
+ }
1177
+ },
1178
+ "cloud-sql-database": {
1179
+ "attach": {
1180
+ "method": "POST",
1181
+ "params": [
1182
+ {
1183
+ "in": "body",
1184
+ "name": "databaseId"
1185
+ },
1186
+ {
1187
+ "in": "body",
1188
+ "name": "serviceId"
1189
+ },
1190
+ {
1191
+ "in": "body",
1192
+ "name": "environmentId"
1193
+ }
1194
+ ],
1195
+ "path": "/deployment/cloud-sql/databases/attach",
1196
+ "readOnly": false
1197
+ },
1198
+ "create": {
1199
+ "method": "POST",
1200
+ "params": [
1201
+ {
1202
+ "in": "body",
1203
+ "name": "instanceId"
1204
+ },
1205
+ {
1206
+ "in": "body",
1207
+ "name": "label"
1208
+ }
1209
+ ],
1210
+ "path": "/deployment/cloud-sql/databases",
1211
+ "readOnly": false
1212
+ },
1213
+ "delete": {
1214
+ "method": "DELETE",
1215
+ "params": [
1216
+ {
1217
+ "in": "path",
1218
+ "name": "databaseId"
1219
+ }
1220
+ ],
1221
+ "path": "/deployment/cloud-sql/databases/:databaseId",
1222
+ "readOnly": false
1223
+ },
1224
+ "detach": {
1225
+ "method": "POST",
1226
+ "params": [
1227
+ {
1228
+ "in": "body",
1229
+ "name": "attachmentId"
1230
+ }
1231
+ ],
1232
+ "path": "/deployment/cloud-sql/databases/detach",
1233
+ "readOnly": false
1234
+ },
1235
+ "get": {
1236
+ "method": "GET",
1237
+ "params": [
1238
+ {
1239
+ "in": "path",
1240
+ "name": "databaseId"
1241
+ }
1242
+ ],
1243
+ "path": "/deployment/cloud-sql/databases/:databaseId",
1244
+ "readOnly": true
1245
+ },
1246
+ "list": {
1247
+ "method": "GET",
1248
+ "params": [
1249
+ {
1250
+ "in": "path",
1251
+ "name": "instanceId"
1252
+ }
1253
+ ],
1254
+ "path": "/deployment/cloud-sql/instances/:instanceId/databases",
1255
+ "readOnly": true
1256
+ }
1257
+ },
1258
+ "cloud-sql-instance": {
1259
+ "backup": {
1260
+ "method": "POST",
1261
+ "params": [
1262
+ {
1263
+ "in": "path",
1264
+ "name": "instanceId"
1265
+ }
1266
+ ],
1267
+ "path": "/deployment/cloud-sql/instances/:instanceId/backups",
1268
+ "readOnly": false
1269
+ },
1270
+ "create": {
1271
+ "method": "POST",
1272
+ "params": [
1273
+ {
1274
+ "in": "body",
1275
+ "name": "label"
1276
+ },
1277
+ {
1278
+ "in": "body",
1279
+ "name": "tier"
1280
+ },
1281
+ {
1282
+ "in": "body",
1283
+ "name": "pgVersion"
1284
+ }
1285
+ ],
1286
+ "path": "/deployment/cloud-sql/instances",
1287
+ "readOnly": false
1288
+ },
1289
+ "delete": {
1290
+ "method": "DELETE",
1291
+ "params": [
1292
+ {
1293
+ "in": "path",
1294
+ "name": "instanceId"
1295
+ }
1296
+ ],
1297
+ "path": "/deployment/cloud-sql/instances/:instanceId",
1298
+ "readOnly": false
1299
+ },
1300
+ "get": {
1301
+ "method": "GET",
1302
+ "params": [
1303
+ {
1304
+ "in": "path",
1305
+ "name": "instanceId"
1306
+ }
1307
+ ],
1308
+ "path": "/deployment/cloud-sql/instances/:instanceId",
1309
+ "readOnly": true
1310
+ },
1311
+ "list": {
1312
+ "method": "GET",
1313
+ "path": "/deployment/cloud-sql/instances",
1314
+ "readOnly": true
1315
+ },
1316
+ "resize": {
1317
+ "method": "PATCH",
1318
+ "params": [
1319
+ {
1320
+ "in": "path",
1321
+ "name": "instanceId"
1322
+ },
1323
+ {
1324
+ "in": "body",
1325
+ "name": "tier"
1326
+ }
1327
+ ],
1328
+ "path": "/deployment/cloud-sql/instances/:instanceId/resize",
1329
+ "readOnly": false
1330
+ },
1331
+ "restore": {
1332
+ "method": "POST",
1333
+ "params": [
1334
+ {
1335
+ "in": "body",
1336
+ "name": "backupRunId"
1337
+ },
1338
+ {
1339
+ "in": "path",
1340
+ "name": "instanceId"
1341
+ }
1342
+ ],
1343
+ "path": "/deployment/cloud-sql/instances/:instanceId/restore",
1344
+ "readOnly": false
1345
+ }
1346
+ },
1347
+ "cloud-sql-instance-backup": {
1348
+ "list": {
1349
+ "method": "GET",
1350
+ "params": [
1351
+ {
1352
+ "in": "path",
1353
+ "name": "instanceId"
1354
+ }
1355
+ ],
1356
+ "path": "/deployment/cloud-sql/instances/:instanceId/backups",
1357
+ "readOnly": true
1358
+ }
1359
+ },
1360
+ "deployment": {
1361
+ "cancel": {
1362
+ "method": "POST",
1363
+ "params": [
1364
+ {
1365
+ "in": "path",
1366
+ "name": "serviceId"
1367
+ },
1368
+ {
1369
+ "in": "body",
1370
+ "name": "deploymentId"
1371
+ }
1372
+ ],
1373
+ "path": "/deployment/services/:serviceId/cancel",
1374
+ "readOnly": false
1375
+ },
1376
+ "get": {
1377
+ "method": "GET",
1378
+ "params": [
1379
+ {
1380
+ "in": "path",
1381
+ "name": "id"
1382
+ }
1383
+ ],
1384
+ "path": "/deployment/deployments/:id",
1385
+ "readOnly": true
1386
+ },
1387
+ "list": {
1388
+ "method": "GET",
1389
+ "params": [
1390
+ {
1391
+ "in": "path",
1392
+ "name": "serviceId"
1393
+ }
1394
+ ],
1395
+ "path": "/deployment/services/:serviceId/deployments",
1396
+ "readOnly": true
1397
+ }
1398
+ },
1399
+ "domain": {
1400
+ "add": {
1401
+ "method": "POST",
1402
+ "params": [
1403
+ {
1404
+ "in": "path",
1405
+ "name": "environmentId"
1406
+ },
1407
+ {
1408
+ "in": "body",
1409
+ "name": "hostname"
1410
+ },
1411
+ {
1412
+ "in": "body",
1413
+ "name": "defaultServiceId"
1414
+ },
1415
+ {
1416
+ "in": "body",
1417
+ "name": "pathPrefix"
1418
+ },
1419
+ {
1420
+ "in": "body",
1421
+ "name": "redirectWww"
1422
+ }
1423
+ ],
1424
+ "path": "/deployment/environments/:environmentId/domains",
1425
+ "readOnly": false
1426
+ },
1427
+ "get": {
1428
+ "method": "GET",
1429
+ "params": [
1430
+ {
1431
+ "in": "path",
1432
+ "name": "id"
1433
+ }
1434
+ ],
1435
+ "path": "/deployment/domains/:id",
1436
+ "readOnly": true
1437
+ },
1438
+ "list": {
1439
+ "method": "GET",
1440
+ "params": [
1441
+ {
1442
+ "in": "path",
1443
+ "name": "environmentId"
1444
+ }
1445
+ ],
1446
+ "path": "/deployment/environments/:environmentId/domains",
1447
+ "readOnly": true
1448
+ },
1449
+ "remove": {
1450
+ "method": "DELETE",
1451
+ "params": [
1452
+ {
1453
+ "in": "path",
1454
+ "name": "id"
1455
+ }
1456
+ ],
1457
+ "path": "/deployment/domains/:id",
1458
+ "readOnly": false
1459
+ },
1460
+ "verify": {
1461
+ "method": "POST",
1462
+ "params": [
1463
+ {
1464
+ "in": "path",
1465
+ "name": "id"
1466
+ }
1467
+ ],
1468
+ "path": "/deployment/domains/:id/verify",
1469
+ "readOnly": false
1470
+ }
1471
+ },
1472
+ "domain-allowed": {
1473
+ "list": {
1474
+ "method": "GET",
1475
+ "path": "/deployment/governance/domains",
1476
+ "readOnly": true
1477
+ }
1478
+ },
1479
+ "domain-list-by": {
1480
+ "service": {
1481
+ "method": "GET",
1482
+ "params": [
1483
+ {
1484
+ "in": "path",
1485
+ "name": "serviceId"
1486
+ }
1487
+ ],
1488
+ "path": "/deployment/services/:serviceId/domains",
1489
+ "readOnly": true
1490
+ }
1491
+ },
1492
+ "domain-redirect": {
1493
+ "www": {
1494
+ "method": "PATCH",
1495
+ "params": [
1496
+ {
1497
+ "in": "path",
1498
+ "name": "id"
1499
+ },
1500
+ {
1501
+ "in": "body",
1502
+ "name": "enabled"
1503
+ }
1504
+ ],
1505
+ "path": "/deployment/domains/:id/redirect-www",
1506
+ "readOnly": false
1507
+ }
1508
+ },
1509
+ "domain-routes": {
1510
+ "add": {
1511
+ "method": "POST",
1512
+ "params": [
1513
+ {
1514
+ "in": "path",
1515
+ "name": "domainId"
1516
+ },
1517
+ {
1518
+ "in": "body",
1519
+ "name": "pathPrefix"
1520
+ },
1521
+ {
1522
+ "in": "body",
1523
+ "name": "serviceId"
1524
+ },
1525
+ {
1526
+ "in": "body",
1527
+ "name": "isDefault"
1528
+ },
1529
+ {
1530
+ "in": "body",
1531
+ "name": "priority"
1532
+ }
1533
+ ],
1534
+ "path": "/deployment/domains/:domainId/routes",
1535
+ "readOnly": false
1536
+ },
1537
+ "list": {
1538
+ "method": "GET",
1539
+ "params": [
1540
+ {
1541
+ "in": "path",
1542
+ "name": "domainId"
1543
+ }
1544
+ ],
1545
+ "path": "/deployment/domains/:domainId/routes",
1546
+ "readOnly": true
1547
+ },
1548
+ "remove": {
1549
+ "method": "DELETE",
1550
+ "params": [
1551
+ {
1552
+ "in": "path",
1553
+ "name": "domainId"
1554
+ },
1555
+ {
1556
+ "in": "path",
1557
+ "name": "routeId"
1558
+ }
1559
+ ],
1560
+ "path": "/deployment/domains/:domainId/routes/:routeId",
1561
+ "readOnly": false
1562
+ },
1563
+ "update": {
1564
+ "method": "PATCH",
1565
+ "params": [
1566
+ {
1567
+ "in": "path",
1568
+ "name": "domainId"
1569
+ },
1570
+ {
1571
+ "in": "path",
1572
+ "name": "routeId"
1573
+ },
1574
+ {
1575
+ "in": "body",
1576
+ "name": "pathPrefix"
1577
+ },
1578
+ {
1579
+ "in": "body",
1580
+ "name": "serviceId"
1581
+ },
1582
+ {
1583
+ "in": "body",
1584
+ "name": "priority"
1585
+ }
1586
+ ],
1587
+ "path": "/deployment/domains/:domainId/routes/:routeId",
1588
+ "readOnly": false
1589
+ }
1590
+ },
1591
+ "environment": {
1592
+ "create": {
1593
+ "method": "POST",
1594
+ "params": [
1595
+ {
1596
+ "in": "body",
1597
+ "name": "name"
1598
+ },
1599
+ {
1600
+ "in": "body",
1601
+ "name": "slug"
1602
+ }
1603
+ ],
1604
+ "path": "/deployment/environments",
1605
+ "readOnly": false
1606
+ },
1607
+ "delete": {
1608
+ "method": "DELETE",
1609
+ "params": [
1610
+ {
1611
+ "in": "path",
1612
+ "name": "id"
1613
+ }
1614
+ ],
1615
+ "path": "/deployment/environments/:id",
1616
+ "readOnly": false
1617
+ },
1618
+ "fork": {
1619
+ "method": "POST",
1620
+ "params": [
1621
+ {
1622
+ "in": "body",
1623
+ "name": "baseEnvironmentId"
1624
+ },
1625
+ {
1626
+ "in": "body",
1627
+ "name": "name"
1628
+ },
1629
+ {
1630
+ "in": "body",
1631
+ "name": "slug"
1632
+ }
1633
+ ],
1634
+ "path": "/deployment/environments/fork",
1635
+ "readOnly": false
1636
+ },
1637
+ "get": {
1638
+ "method": "GET",
1639
+ "params": [
1640
+ {
1641
+ "in": "path",
1642
+ "name": "id"
1643
+ }
1644
+ ],
1645
+ "path": "/deployment/environments/:id",
1646
+ "readOnly": true
1647
+ },
1648
+ "list": {
1649
+ "method": "GET",
1650
+ "params": [
1651
+ {
1652
+ "in": "query",
1653
+ "name": "type"
1654
+ }
1655
+ ],
1656
+ "path": "/deployment/environments",
1657
+ "readOnly": true
1658
+ },
1659
+ "reconcile": {
1660
+ "method": "POST",
1661
+ "params": [
1662
+ {
1663
+ "in": "path",
1664
+ "name": "id"
1665
+ },
1666
+ {
1667
+ "in": "body",
1668
+ "name": "force"
1669
+ }
1670
+ ],
1671
+ "path": "/deployment/environments/:id/reconcile",
1672
+ "readOnly": false
1673
+ },
1674
+ "update": {
1675
+ "method": "PATCH",
1676
+ "params": [
1677
+ {
1678
+ "in": "body",
1679
+ "name": "name"
1680
+ },
1681
+ {
1682
+ "in": "path",
1683
+ "name": "id"
1684
+ }
1685
+ ],
1686
+ "path": "/deployment/environments/:id",
1687
+ "readOnly": false
1688
+ }
1689
+ },
1690
+ "events-list-by": {
1691
+ "environment": {
1692
+ "method": "GET",
1693
+ "params": [
1694
+ {
1695
+ "in": "path",
1696
+ "name": "environmentId"
1697
+ },
1698
+ {
1699
+ "in": "query",
1700
+ "name": "type"
1701
+ },
1702
+ {
1703
+ "in": "query",
1704
+ "name": "since"
1705
+ },
1706
+ {
1707
+ "in": "query",
1708
+ "name": "until"
1709
+ },
1710
+ {
1711
+ "in": "query",
1712
+ "name": "limit"
1713
+ }
1714
+ ],
1715
+ "path": "/deployment/environments/:environmentId/events",
1716
+ "readOnly": true
1717
+ },
1718
+ "service": {
1719
+ "method": "GET",
1720
+ "params": [
1721
+ {
1722
+ "in": "path",
1723
+ "name": "serviceId"
1724
+ },
1725
+ {
1726
+ "in": "query",
1727
+ "name": "type"
1728
+ },
1729
+ {
1730
+ "in": "query",
1731
+ "name": "since"
1732
+ },
1733
+ {
1734
+ "in": "query",
1735
+ "name": "until"
1736
+ },
1737
+ {
1738
+ "in": "query",
1739
+ "name": "limit"
1740
+ },
1741
+ {
1742
+ "in": "query",
1743
+ "name": "deploymentId"
1744
+ }
1745
+ ],
1746
+ "path": "/deployment/services/:serviceId/events",
1747
+ "readOnly": true
1748
+ }
1749
+ },
1750
+ "managed-service": {
1751
+ "backup": {
1752
+ "method": "POST",
1753
+ "params": [
1754
+ {
1755
+ "in": "path",
1756
+ "name": "id"
1757
+ }
1758
+ ],
1759
+ "path": "/deployment/managed-services/:id/backup",
1760
+ "readOnly": false
1761
+ },
1762
+ "delete": {
1763
+ "method": "DELETE",
1764
+ "params": [
1765
+ {
1766
+ "in": "path",
1767
+ "name": "id"
1768
+ }
1769
+ ],
1770
+ "path": "/deployment/managed-services/:id",
1771
+ "readOnly": false
1772
+ },
1773
+ "get": {
1774
+ "method": "GET",
1775
+ "params": [
1776
+ {
1777
+ "in": "path",
1778
+ "name": "id"
1779
+ }
1780
+ ],
1781
+ "path": "/deployment/managed-services/:id",
1782
+ "readOnly": true
1783
+ },
1784
+ "list": {
1785
+ "method": "GET",
1786
+ "params": [
1787
+ {
1788
+ "in": "path",
1789
+ "name": "environmentId"
1790
+ }
1791
+ ],
1792
+ "path": "/deployment/environments/:environmentId/managed-services",
1793
+ "readOnly": true
1794
+ },
1795
+ "logs": {
1796
+ "method": "GET",
1797
+ "params": [
1798
+ {
1799
+ "in": "path",
1800
+ "name": "id"
1801
+ },
1802
+ {
1803
+ "in": "query",
1804
+ "name": "tail"
1805
+ }
1806
+ ],
1807
+ "path": "/deployment/managed-services/:id/logs",
1808
+ "readOnly": true
1809
+ },
1810
+ "provision": {
1811
+ "method": "POST",
1812
+ "params": [
1813
+ {
1814
+ "in": "path",
1815
+ "name": "environmentId"
1816
+ },
1817
+ {
1818
+ "in": "body",
1819
+ "name": "name"
1820
+ },
1821
+ {
1822
+ "in": "body",
1823
+ "name": "slug"
1824
+ },
1825
+ {
1826
+ "in": "body",
1827
+ "name": "engine"
1828
+ },
1829
+ {
1830
+ "in": "body",
1831
+ "name": "version"
1832
+ },
1833
+ {
1834
+ "in": "body",
1835
+ "name": "storageGiB"
1836
+ },
1837
+ {
1838
+ "in": "body",
1839
+ "name": "databaseName"
1840
+ }
1841
+ ],
1842
+ "path": "/deployment/environments/:environmentId/managed-services",
1843
+ "readOnly": false
1844
+ },
1845
+ "reconcile": {
1846
+ "method": "POST",
1847
+ "params": [
1848
+ {
1849
+ "in": "path",
1850
+ "name": "id"
1851
+ }
1852
+ ],
1853
+ "path": "/deployment/managed-services/:id/reconcile",
1854
+ "readOnly": false
1855
+ },
1856
+ "resize": {
1857
+ "method": "POST",
1858
+ "params": [
1859
+ {
1860
+ "in": "path",
1861
+ "name": "id"
1862
+ },
1863
+ {
1864
+ "in": "body",
1865
+ "name": "storageGiB"
1866
+ }
1867
+ ],
1868
+ "path": "/deployment/managed-services/:id/resize",
1869
+ "readOnly": false
1870
+ },
1871
+ "restore": {
1872
+ "method": "POST",
1873
+ "params": [
1874
+ {
1875
+ "in": "path",
1876
+ "name": "id"
1877
+ },
1878
+ {
1879
+ "in": "body",
1880
+ "name": "snapshotName"
1881
+ }
1882
+ ],
1883
+ "path": "/deployment/managed-services/:id/restore",
1884
+ "readOnly": false
1885
+ },
1886
+ "start": {
1887
+ "method": "POST",
1888
+ "params": [
1889
+ {
1890
+ "in": "path",
1891
+ "name": "id"
1892
+ }
1893
+ ],
1894
+ "path": "/deployment/managed-services/:id/start",
1895
+ "readOnly": false
1896
+ },
1897
+ "stop": {
1898
+ "method": "POST",
1899
+ "params": [
1900
+ {
1901
+ "in": "path",
1902
+ "name": "id"
1903
+ }
1904
+ ],
1905
+ "path": "/deployment/managed-services/:id/stop",
1906
+ "readOnly": false
1907
+ },
1908
+ "types": {
1909
+ "method": "GET",
1910
+ "path": "/deployment/managed-service-types",
1911
+ "readOnly": true
1912
+ }
1913
+ },
1914
+ "managed-service-backup": {
1915
+ "list": {
1916
+ "method": "GET",
1917
+ "params": [
1918
+ {
1919
+ "in": "path",
1920
+ "name": "id"
1921
+ }
1922
+ ],
1923
+ "path": "/deployment/managed-services/:id/backups",
1924
+ "readOnly": true
1925
+ }
1926
+ },
1927
+ "managed-service-connect": {
1928
+ "info": {
1929
+ "method": "GET",
1930
+ "params": [
1931
+ {
1932
+ "in": "path",
1933
+ "name": "id"
1934
+ }
1935
+ ],
1936
+ "path": "/deployment/managed-services/:id/connect-info",
1937
+ "readOnly": true
1938
+ }
1939
+ },
1940
+ "metrics": {
1941
+ "get": {
1942
+ "method": "GET",
1943
+ "params": [
1944
+ {
1945
+ "in": "query",
1946
+ "name": "targetKind"
1947
+ },
1948
+ {
1949
+ "in": "query",
1950
+ "name": "targetId"
1951
+ },
1952
+ {
1953
+ "in": "query",
1954
+ "name": "window"
1955
+ }
1956
+ ],
1957
+ "path": "/deployment/metrics",
1958
+ "readOnly": true
1959
+ }
1960
+ },
1961
+ "preview-environment": {
1962
+ "create": {
1963
+ "method": "POST",
1964
+ "params": [
1965
+ {
1966
+ "in": "body",
1967
+ "name": "baseEnvironmentId"
1968
+ },
1969
+ {
1970
+ "in": "body",
1971
+ "name": "prNumber"
1972
+ },
1973
+ {
1974
+ "in": "body",
1975
+ "name": "prBranch"
1976
+ }
1977
+ ],
1978
+ "path": "/deployment/preview-environments",
1979
+ "readOnly": false
1980
+ },
1981
+ "delete": {
1982
+ "method": "DELETE",
1983
+ "params": [
1984
+ {
1985
+ "in": "path",
1986
+ "name": "id"
1987
+ }
1988
+ ],
1989
+ "path": "/deployment/preview-environments/:id",
1990
+ "readOnly": false
1991
+ },
1992
+ "list": {
1993
+ "method": "GET",
1994
+ "path": "/deployment/preview-environments",
1995
+ "readOnly": true
1996
+ }
1997
+ },
1998
+ "preview-policy": {
1999
+ "get": {
2000
+ "method": "GET",
2001
+ "params": [
2002
+ {
2003
+ "in": "path",
2004
+ "name": "baseEnvironmentId"
2005
+ }
2006
+ ],
2007
+ "path": "/deployment/preview-policies/:baseEnvironmentId",
2008
+ "readOnly": true
2009
+ },
2010
+ "set": {
2011
+ "method": "PUT",
2012
+ "params": [
2013
+ {
2014
+ "in": "path",
2015
+ "name": "baseEnvironmentId"
2016
+ },
2017
+ {
2018
+ "in": "body",
2019
+ "name": "enabled"
2020
+ },
2021
+ {
2022
+ "in": "body",
2023
+ "name": "maxPreviews"
2024
+ },
2025
+ {
2026
+ "in": "body",
2027
+ "name": "ttlHours"
2028
+ }
2029
+ ],
2030
+ "path": "/deployment/preview-policies/:baseEnvironmentId",
2031
+ "readOnly": false
2032
+ }
2033
+ },
2034
+ "service": {
2035
+ "create": {
2036
+ "method": "POST",
2037
+ "params": [
2038
+ {
2039
+ "in": "path",
2040
+ "name": "environmentId"
2041
+ },
2042
+ {
2043
+ "in": "body",
2044
+ "name": "name"
2045
+ },
2046
+ {
2047
+ "in": "body",
2048
+ "name": "slug"
2049
+ },
2050
+ {
2051
+ "in": "body",
2052
+ "name": "source"
2053
+ },
2054
+ {
2055
+ "in": "body",
2056
+ "name": "containerPort"
2057
+ },
2058
+ {
2059
+ "in": "body",
2060
+ "name": "replicas"
2061
+ },
2062
+ {
2063
+ "in": "body",
2064
+ "name": "probes"
2065
+ },
2066
+ {
2067
+ "in": "body",
2068
+ "name": "resources"
2069
+ },
2070
+ {
2071
+ "in": "body",
2072
+ "name": "canvas"
2073
+ }
2074
+ ],
2075
+ "path": "/deployment/environments/:environmentId/services",
2076
+ "readOnly": false
2077
+ },
2078
+ "delete": {
2079
+ "method": "DELETE",
2080
+ "params": [
2081
+ {
2082
+ "in": "path",
2083
+ "name": "id"
2084
+ }
2085
+ ],
2086
+ "path": "/deployment/services/:id",
2087
+ "readOnly": false
2088
+ },
2089
+ "exec": {
2090
+ "method": "POST",
2091
+ "params": [
2092
+ {
2093
+ "in": "body",
2094
+ "name": "command"
2095
+ },
2096
+ {
2097
+ "in": "body",
2098
+ "name": "mode"
2099
+ },
2100
+ {
2101
+ "in": "body",
2102
+ "name": "timeoutSec"
2103
+ },
2104
+ {
2105
+ "in": "path",
2106
+ "name": "serviceId"
2107
+ }
2108
+ ],
2109
+ "path": "/deployment/services/:serviceId/exec",
2110
+ "readOnly": false
2111
+ },
2112
+ "get": {
2113
+ "method": "GET",
2114
+ "params": [
2115
+ {
2116
+ "in": "path",
2117
+ "name": "id"
2118
+ }
2119
+ ],
2120
+ "path": "/deployment/services/:id",
2121
+ "readOnly": true
2122
+ },
2123
+ "list": {
2124
+ "method": "GET",
2125
+ "params": [
2126
+ {
2127
+ "in": "path",
2128
+ "name": "environmentId"
2129
+ }
2130
+ ],
2131
+ "path": "/deployment/environments/:environmentId/services",
2132
+ "readOnly": true
2133
+ },
2134
+ "logs": {
2135
+ "method": "GET",
2136
+ "params": [
2137
+ {
2138
+ "in": "path",
2139
+ "name": "serviceId"
2140
+ },
2141
+ {
2142
+ "in": "query",
2143
+ "name": "tail"
2144
+ }
2145
+ ],
2146
+ "path": "/deployment/services/:serviceId/logs",
2147
+ "readOnly": true
2148
+ },
2149
+ "redeploy": {
2150
+ "method": "POST",
2151
+ "params": [
2152
+ {
2153
+ "in": "path",
2154
+ "name": "serviceId"
2155
+ }
2156
+ ],
2157
+ "path": "/deployment/services/:serviceId/redeploy",
2158
+ "readOnly": false
2159
+ },
2160
+ "restart": {
2161
+ "method": "POST",
2162
+ "params": [
2163
+ {
2164
+ "in": "path",
2165
+ "name": "id"
2166
+ }
2167
+ ],
2168
+ "path": "/deployment/services/:id/restart",
2169
+ "readOnly": false
2170
+ },
2171
+ "rollback": {
2172
+ "method": "POST",
2173
+ "params": [
2174
+ {
2175
+ "in": "path",
2176
+ "name": "serviceId"
2177
+ },
2178
+ {
2179
+ "in": "body",
2180
+ "name": "deploymentId"
2181
+ }
2182
+ ],
2183
+ "path": "/deployment/services/:serviceId/rollback",
2184
+ "readOnly": false
2185
+ },
2186
+ "scale": {
2187
+ "method": "POST",
2188
+ "params": [
2189
+ {
2190
+ "in": "path",
2191
+ "name": "id"
2192
+ },
2193
+ {
2194
+ "in": "body",
2195
+ "name": "replicas"
2196
+ }
2197
+ ],
2198
+ "path": "/deployment/services/:id/scale",
2199
+ "readOnly": false
2200
+ },
2201
+ "update": {
2202
+ "method": "PATCH",
2203
+ "params": [
2204
+ {
2205
+ "in": "body",
2206
+ "name": "name"
2207
+ },
2208
+ {
2209
+ "in": "body",
2210
+ "name": "source"
2211
+ },
2212
+ {
2213
+ "in": "body",
2214
+ "name": "containerPort"
2215
+ },
2216
+ {
2217
+ "in": "body",
2218
+ "name": "replicas"
2219
+ },
2220
+ {
2221
+ "in": "body",
2222
+ "name": "probes"
2223
+ },
2224
+ {
2225
+ "in": "body",
2226
+ "name": "resources"
2227
+ },
2228
+ {
2229
+ "in": "path",
2230
+ "name": "id"
2231
+ }
2232
+ ],
2233
+ "path": "/deployment/services/:id",
2234
+ "readOnly": false
2235
+ }
2236
+ },
2237
+ "ssh": {
2238
+ "command": {
2239
+ "method": "GET",
2240
+ "params": [
2241
+ {
2242
+ "in": "path",
2243
+ "name": "serviceId"
2244
+ }
2245
+ ],
2246
+ "path": "/deployment/services/:serviceId/ssh-command",
2247
+ "readOnly": true
2248
+ }
2249
+ },
2250
+ "ssh-key": {
2251
+ "delete": {
2252
+ "method": "DELETE",
2253
+ "params": [
2254
+ {
2255
+ "in": "path",
2256
+ "name": "id"
2257
+ }
2258
+ ],
2259
+ "path": "/deployment/ssh-keys/:id",
2260
+ "readOnly": false
2261
+ },
2262
+ "list": {
2263
+ "method": "GET",
2264
+ "path": "/deployment/ssh-keys",
2265
+ "readOnly": true
2266
+ },
2267
+ "register": {
2268
+ "method": "POST",
2269
+ "params": [
2270
+ {
2271
+ "in": "body",
2272
+ "name": "name"
2273
+ },
2274
+ {
2275
+ "in": "body",
2276
+ "name": "publicKey"
2277
+ }
2278
+ ],
2279
+ "path": "/deployment/ssh-keys",
2280
+ "readOnly": false
2281
+ }
2282
+ },
2283
+ "variable": {
2284
+ "list": {
2285
+ "method": "GET",
2286
+ "params": [
2287
+ {
2288
+ "in": "path",
2289
+ "name": "serviceId"
2290
+ }
2291
+ ],
2292
+ "path": "/deployment/services/:serviceId/variables",
2293
+ "readOnly": true
2294
+ },
2295
+ "set": {
2296
+ "method": "PUT",
2297
+ "params": [
2298
+ {
2299
+ "in": "path",
2300
+ "name": "serviceId"
2301
+ },
2302
+ {
2303
+ "in": "path",
2304
+ "name": "key"
2305
+ },
2306
+ {
2307
+ "in": "body",
2308
+ "name": "value"
2309
+ },
2310
+ {
2311
+ "in": "body",
2312
+ "name": "isSecret"
2313
+ }
2314
+ ],
2315
+ "path": "/deployment/services/:serviceId/variables/:key",
2316
+ "readOnly": false
2317
+ },
2318
+ "unset": {
2319
+ "method": "DELETE",
2320
+ "params": [
2321
+ {
2322
+ "in": "path",
2323
+ "name": "serviceId"
2324
+ },
2325
+ {
2326
+ "in": "path",
2327
+ "name": "key"
2328
+ }
2329
+ ],
2330
+ "path": "/deployment/services/:serviceId/variables/:key",
2331
+ "readOnly": false
2332
+ }
2333
+ },
2334
+ "variable-list": {
2335
+ "env": {
2336
+ "method": "GET",
2337
+ "params": [
2338
+ {
2339
+ "in": "path",
2340
+ "name": "environmentId"
2341
+ }
2342
+ ],
2343
+ "path": "/deployment/environments/:environmentId/variables",
2344
+ "readOnly": true
2345
+ },
2346
+ "product": {
2347
+ "method": "GET",
2348
+ "path": "/deployment/product/variables",
2349
+ "readOnly": true
2350
+ }
2351
+ },
2352
+ "variable-set": {
2353
+ "env": {
2354
+ "method": "PUT",
2355
+ "params": [
2356
+ {
2357
+ "in": "path",
2358
+ "name": "environmentId"
2359
+ },
2360
+ {
2361
+ "in": "path",
2362
+ "name": "key"
2363
+ },
2364
+ {
2365
+ "in": "body",
2366
+ "name": "value"
2367
+ },
2368
+ {
2369
+ "in": "body",
2370
+ "name": "isSecret"
2371
+ }
2372
+ ],
2373
+ "path": "/deployment/environments/:environmentId/variables/:key",
2374
+ "readOnly": false
2375
+ },
2376
+ "product": {
2377
+ "method": "PUT",
2378
+ "params": [
2379
+ {
2380
+ "in": "path",
2381
+ "name": "key"
2382
+ },
2383
+ {
2384
+ "in": "body",
2385
+ "name": "value"
748
2386
  },
749
2387
  {
750
2388
  "in": "body",
751
- "name": "overrides"
2389
+ "name": "isSecret"
752
2390
  }
753
2391
  ],
754
- "path": "/consent/config/theme",
2392
+ "path": "/deployment/product/variables/:key",
755
2393
  "readOnly": false
756
2394
  }
757
2395
  },
758
- "dashboard-config": {
759
- "get": {
760
- "method": "GET",
761
- "path": "/consent/consent/dashboard/config",
762
- "readOnly": true
2396
+ "variable-unset": {
2397
+ "env": {
2398
+ "method": "DELETE",
2399
+ "params": [
2400
+ {
2401
+ "in": "path",
2402
+ "name": "environmentId"
2403
+ },
2404
+ {
2405
+ "in": "path",
2406
+ "name": "key"
2407
+ }
2408
+ ],
2409
+ "path": "/deployment/environments/:environmentId/variables/:key",
2410
+ "readOnly": false
2411
+ },
2412
+ "product": {
2413
+ "method": "DELETE",
2414
+ "params": [
2415
+ {
2416
+ "in": "path",
2417
+ "name": "key"
2418
+ }
2419
+ ],
2420
+ "path": "/deployment/product/variables/:key",
2421
+ "readOnly": false
763
2422
  }
764
2423
  },
765
- "dashboard-decisions": {
2424
+ "vcs-branch": {
766
2425
  "list": {
767
2426
  "method": "GET",
768
2427
  "params": [
769
2428
  {
770
2429
  "in": "query",
771
- "name": "limit"
2430
+ "name": "connectorId"
772
2431
  },
773
2432
  {
774
2433
  "in": "query",
775
- "name": "offset"
2434
+ "name": "repoFullName"
776
2435
  }
777
2436
  ],
778
- "path": "/consent/consent/dashboard/decisions",
779
- "readOnly": true
780
- }
781
- },
782
- "dashboard-embed-snippet": {
783
- "get": {
784
- "method": "GET",
785
- "path": "/consent/consent/dashboard/embed-snippet",
2437
+ "path": "/deployment/vcs/branches",
786
2438
  "readOnly": true
787
2439
  }
788
2440
  },
789
- "dashboard-stats": {
790
- "get": {
2441
+ "vcs-connection": {
2442
+ "list": {
791
2443
  "method": "GET",
792
- "path": "/consent/consent/dashboard/stats",
2444
+ "path": "/deployment/vcs/connections",
793
2445
  "readOnly": true
794
2446
  }
795
2447
  },
796
- "embed": {
797
- "get": {
2448
+ "vcs-repo": {
2449
+ "list": {
798
2450
  "method": "GET",
799
- "path": "/consent/embed",
2451
+ "params": [
2452
+ {
2453
+ "in": "query",
2454
+ "name": "connectorId"
2455
+ },
2456
+ {
2457
+ "in": "query",
2458
+ "name": "page"
2459
+ },
2460
+ {
2461
+ "in": "query",
2462
+ "name": "search"
2463
+ }
2464
+ ],
2465
+ "path": "/deployment/vcs/repos",
800
2466
  "readOnly": true
801
2467
  }
802
2468
  },
803
- "providers": {
2469
+ "volume": {
804
2470
  "create": {
805
2471
  "method": "POST",
806
2472
  "params": [
807
2473
  {
808
- "in": "body",
809
- "name": "name"
810
- },
811
- {
812
- "in": "body",
813
- "name": "category"
814
- },
815
- {
816
- "in": "body",
817
- "name": "hosts"
2474
+ "in": "path",
2475
+ "name": "environmentId"
818
2476
  },
819
2477
  {
820
2478
  "in": "body",
821
- "name": "privacyUrl"
2479
+ "name": "name"
822
2480
  },
823
2481
  {
824
2482
  "in": "body",
825
- "name": "description"
2483
+ "name": "slug"
826
2484
  },
827
2485
  {
828
2486
  "in": "body",
829
- "name": "orderIndex"
2487
+ "name": "sizeGb"
830
2488
  },
831
2489
  {
832
2490
  "in": "body",
833
- "name": "cookies"
2491
+ "name": "mountPath"
834
2492
  },
835
2493
  {
836
2494
  "in": "body",
837
- "name": "catalogKey"
2495
+ "name": "attachedServiceId"
838
2496
  }
839
2497
  ],
840
- "path": "/consent/consent/providers",
2498
+ "path": "/deployment/environments/:environmentId/volumes",
841
2499
  "readOnly": false
842
2500
  },
843
2501
  "delete": {
@@ -848,90 +2506,56 @@ export const bindings: BindingsMap = {
848
2506
  "name": "id"
849
2507
  }
850
2508
  ],
851
- "path": "/consent/consent/providers/:id",
2509
+ "path": "/deployment/volumes/:id",
852
2510
  "readOnly": false
853
2511
  },
854
- "list": {
855
- "method": "GET",
856
- "path": "/consent/consent/providers",
857
- "readOnly": true
858
- },
859
- "update": {
860
- "method": "PATCH",
2512
+ "detach": {
2513
+ "method": "POST",
861
2514
  "params": [
862
2515
  {
863
2516
  "in": "path",
864
2517
  "name": "id"
865
- },
866
- {
867
- "in": "body",
868
- "name": "name"
869
- },
870
- {
871
- "in": "body",
872
- "name": "category"
873
- },
874
- {
875
- "in": "body",
876
- "name": "hosts"
877
- },
878
- {
879
- "in": "body",
880
- "name": "privacyUrl"
881
- },
882
- {
883
- "in": "body",
884
- "name": "description"
885
- },
886
- {
887
- "in": "body",
888
- "name": "orderIndex"
889
- },
890
- {
891
- "in": "body",
892
- "name": "cookies"
893
2518
  }
894
2519
  ],
895
- "path": "/consent/consent/providers/:id",
2520
+ "path": "/deployment/volumes/:id/detach",
896
2521
  "readOnly": false
897
- }
898
- },
899
- "records": {
900
- "export": {
901
- "method": "POST",
2522
+ },
2523
+ "get": {
2524
+ "method": "GET",
902
2525
  "params": [
903
2526
  {
904
- "in": "body",
905
- "name": "from"
906
- },
907
- {
908
- "in": "body",
909
- "name": "to"
910
- },
911
- {
912
- "in": "body",
913
- "name": "limit"
914
- },
915
- {
916
- "in": "body",
917
- "name": "record_id"
2527
+ "in": "path",
2528
+ "name": "id"
918
2529
  }
919
2530
  ],
920
- "path": "/consent/consent/dashboard/export",
2531
+ "path": "/deployment/volumes/:id",
921
2532
  "readOnly": true
922
- }
923
- },
924
- "stats": {
925
- "get": {
2533
+ },
2534
+ "list": {
926
2535
  "method": "GET",
927
2536
  "params": [
928
2537
  {
929
- "in": "query",
930
- "name": "range"
2538
+ "in": "path",
2539
+ "name": "environmentId"
931
2540
  }
932
2541
  ],
933
- "path": "/consent/consent/stats",
2542
+ "path": "/deployment/environments/:environmentId/volumes",
934
2543
  "readOnly": true
2544
+ },
2545
+ "resize": {
2546
+ "method": "POST",
2547
+ "params": [
2548
+ {
2549
+ "in": "path",
2550
+ "name": "id"
2551
+ },
2552
+ {
2553
+ "in": "body",
2554
+ "name": "sizeGb"
2555
+ }
2556
+ ],
2557
+ "path": "/deployment/volumes/:id/resize",
2558
+ "readOnly": false
935
2559
  }
936
2560
  }
937
2561
  },
@@ -2113,6 +3737,27 @@ export const bindings: BindingsMap = {
2113
3737
  "readOnly": false
2114
3738
  }
2115
3739
  },
3740
+ "feedback": {
3741
+ "submit": {
3742
+ "method": "POST",
3743
+ "params": [
3744
+ {
3745
+ "in": "body",
3746
+ "name": "title"
3747
+ },
3748
+ {
3749
+ "in": "body",
3750
+ "name": "details"
3751
+ },
3752
+ {
3753
+ "in": "body",
3754
+ "name": "page"
3755
+ }
3756
+ ],
3757
+ "path": "/governance/api/v1/feedback",
3758
+ "readOnly": false
3759
+ }
3760
+ },
2116
3761
  "gdrive": {
2117
3762
  "install": {
2118
3763
  "method": "GET",
@@ -2552,6 +4197,110 @@ export const bindings: BindingsMap = {
2552
4197
  }
2553
4198
  }
2554
4199
  },
4200
+ "playground": {
4201
+ "analytics": {
4202
+ "overview": {
4203
+ "method": "POST",
4204
+ "params": [
4205
+ {
4206
+ "in": "body",
4207
+ "name": "limit"
4208
+ }
4209
+ ],
4210
+ "path": "/playground/analytics/overview",
4211
+ "readOnly": true
4212
+ }
4213
+ },
4214
+ "billing": {
4215
+ "entitlements": {
4216
+ "method": "POST",
4217
+ "path": "/playground/billing/entitlements",
4218
+ "readOnly": true
4219
+ },
4220
+ "record-usage": {
4221
+ "method": "POST",
4222
+ "params": [
4223
+ {
4224
+ "in": "body",
4225
+ "name": "value"
4226
+ }
4227
+ ],
4228
+ "path": "/playground/billing/usage",
4229
+ "readOnly": false
4230
+ }
4231
+ },
4232
+ "clickup": {
4233
+ "create-task": {
4234
+ "method": "POST",
4235
+ "params": [
4236
+ {
4237
+ "in": "body",
4238
+ "name": "listId"
4239
+ },
4240
+ {
4241
+ "in": "body",
4242
+ "name": "name"
4243
+ }
4244
+ ],
4245
+ "path": "/playground/clickup/tasks",
4246
+ "readOnly": false
4247
+ },
4248
+ "get-last-webhook": {
4249
+ "method": "GET",
4250
+ "path": "/playground/clickup/webhooks/last",
4251
+ "readOnly": true
4252
+ },
4253
+ "get-overview": {
4254
+ "method": "GET",
4255
+ "path": "/playground/clickup/overview",
4256
+ "readOnly": true
4257
+ }
4258
+ },
4259
+ "gdrive": {
4260
+ "get-last-change": {
4261
+ "method": "GET",
4262
+ "path": "/playground/gdrive/changes/last",
4263
+ "readOnly": true
4264
+ },
4265
+ "read-file": {
4266
+ "method": "POST",
4267
+ "params": [
4268
+ {
4269
+ "in": "body",
4270
+ "name": "fileId"
4271
+ }
4272
+ ],
4273
+ "path": "/playground/gdrive/file",
4274
+ "readOnly": true
4275
+ }
4276
+ },
4277
+ "googleads": {
4278
+ "read-customer": {
4279
+ "method": "POST",
4280
+ "path": "/playground/googleads/customer",
4281
+ "readOnly": true
4282
+ }
4283
+ },
4284
+ "lifecycle": {
4285
+ "get-state": {
4286
+ "method": "GET",
4287
+ "path": "/playground/lifecycle/state",
4288
+ "readOnly": true
4289
+ },
4290
+ "list-events": {
4291
+ "method": "GET",
4292
+ "path": "/playground/lifecycle/events",
4293
+ "readOnly": true
4294
+ }
4295
+ },
4296
+ "webhook": {
4297
+ "get-last": {
4298
+ "method": "GET",
4299
+ "path": "/playground/webhooks/last",
4300
+ "readOnly": true
4301
+ }
4302
+ }
4303
+ },
2555
4304
  "tracking": {
2556
4305
  "api-keys": {
2557
4306
  "create": {