@lessly/sdk-app 44.0.0 → 44.1.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 (59) hide show
  1. package/dist/analytics/index.d.cts +1 -1
  2. package/dist/analytics/index.d.ts +1 -1
  3. package/dist/brain/index.cjs +0 -5
  4. package/dist/brain/index.cjs.map +1 -1
  5. package/dist/brain/index.d.cts +2 -6
  6. package/dist/brain/index.d.ts +2 -6
  7. package/dist/brain/index.js +1 -5
  8. package/dist/brain/index.js.map +1 -1
  9. package/dist/{client.gen-BsjxuDLy.d.cts → client.gen-DlCqQAIZ.d.cts} +1392 -94
  10. package/dist/{client.gen-BsjxuDLy.d.ts → client.gen-DlCqQAIZ.d.ts} +1392 -94
  11. package/dist/consent/index.d.cts +1 -1
  12. package/dist/consent/index.d.ts +1 -1
  13. package/dist/content/index.cjs +96 -0
  14. package/dist/content/index.cjs.map +1 -0
  15. package/dist/content/index.d.cts +76 -0
  16. package/dist/content/index.d.ts +76 -0
  17. package/dist/content/index.js +77 -0
  18. package/dist/content/index.js.map +1 -0
  19. package/dist/deployment/index.d.cts +1 -1
  20. package/dist/deployment/index.d.ts +1 -1
  21. package/dist/index.cjs +406 -13
  22. package/dist/index.cjs.map +1 -1
  23. package/dist/index.d.cts +1 -1
  24. package/dist/index.d.ts +1 -1
  25. package/dist/index.js +406 -13
  26. package/dist/index.js.map +1 -1
  27. package/dist/mail/index.d.cts +2 -2
  28. package/dist/mail/index.d.ts +2 -2
  29. package/dist/observe/index.d.cts +1 -1
  30. package/dist/observe/index.d.ts +1 -1
  31. package/dist/organization/index.d.cts +1 -1
  32. package/dist/organization/index.d.ts +1 -1
  33. package/dist/playground/index.cjs +66 -0
  34. package/dist/playground/index.cjs.map +1 -0
  35. package/dist/playground/index.d.cts +52 -0
  36. package/dist/playground/index.d.ts +52 -0
  37. package/dist/playground/index.js +53 -0
  38. package/dist/playground/index.js.map +1 -0
  39. package/dist/realtime/index.d.cts +1 -1
  40. package/dist/realtime/index.d.ts +1 -1
  41. package/dist/support/index.d.cts +1 -1
  42. package/dist/support/index.d.ts +1 -1
  43. package/dist/tracking/index.d.cts +1 -1
  44. package/dist/tracking/index.d.ts +1 -1
  45. package/dist/users/index.d.cts +1 -1
  46. package/dist/users/index.d.ts +1 -1
  47. package/dist/waitlist/index.d.cts +1 -1
  48. package/dist/waitlist/index.d.ts +1 -1
  49. package/package.json +12 -2
  50. package/src/gen/bindings.gen.ts +406 -13
  51. package/src/gen/brain/index.ts +1 -1
  52. package/src/gen/brain/queryOptions.gen.ts +0 -7
  53. package/src/gen/client.gen.ts +114 -5
  54. package/src/gen/content/index.ts +3 -0
  55. package/src/gen/content/queryOptions.gen.ts +119 -0
  56. package/src/gen/manifest.gen.ts +1 -1
  57. package/src/gen/playground/index.ts +3 -0
  58. package/src/gen/playground/queryOptions.gen.ts +86 -0
  59. package/src/gen/types.gen.ts +1500 -187
package/dist/index.cjs CHANGED
@@ -823,19 +823,6 @@ var bindings = {
823
823
  "path": "/brain/restores/:restoreId",
824
824
  "readOnly": true
825
825
  }
826
- },
827
- "usage": {
828
- "report": {
829
- "method": "GET",
830
- "params": [
831
- {
832
- "in": "query",
833
- "name": "days"
834
- }
835
- ],
836
- "path": "/brain/usage/report",
837
- "readOnly": true
838
- }
839
826
  }
840
827
  },
841
828
  "consent": {
@@ -1103,6 +1090,308 @@ var bindings = {
1103
1090
  }
1104
1091
  }
1105
1092
  },
1093
+ "content": {
1094
+ "channels": {
1095
+ "get": {
1096
+ "method": "GET",
1097
+ "params": [
1098
+ {
1099
+ "in": "path",
1100
+ "name": "id"
1101
+ }
1102
+ ],
1103
+ "path": "/content/channels/:id",
1104
+ "readOnly": true
1105
+ },
1106
+ "list": {
1107
+ "method": "GET",
1108
+ "params": [
1109
+ {
1110
+ "in": "query",
1111
+ "name": "network"
1112
+ },
1113
+ {
1114
+ "in": "query",
1115
+ "name": "limit"
1116
+ },
1117
+ {
1118
+ "in": "query",
1119
+ "name": "offset"
1120
+ }
1121
+ ],
1122
+ "path": "/content/channels",
1123
+ "readOnly": true
1124
+ },
1125
+ "update": {
1126
+ "method": "PATCH",
1127
+ "params": [
1128
+ {
1129
+ "in": "path",
1130
+ "name": "id"
1131
+ },
1132
+ {
1133
+ "in": "body",
1134
+ "name": "displayName"
1135
+ },
1136
+ {
1137
+ "in": "body",
1138
+ "name": "deliveryMode"
1139
+ },
1140
+ {
1141
+ "in": "body",
1142
+ "name": "capabilities"
1143
+ }
1144
+ ],
1145
+ "path": "/content/channels/:id",
1146
+ "readOnly": false
1147
+ }
1148
+ },
1149
+ "posts": {
1150
+ "approve": {
1151
+ "method": "POST",
1152
+ "params": [
1153
+ {
1154
+ "in": "path",
1155
+ "name": "id"
1156
+ }
1157
+ ],
1158
+ "path": "/content/posts/:id/approve",
1159
+ "readOnly": false
1160
+ },
1161
+ "create": {
1162
+ "method": "POST",
1163
+ "params": [
1164
+ {
1165
+ "in": "body",
1166
+ "name": "text"
1167
+ },
1168
+ {
1169
+ "in": "body",
1170
+ "name": "media"
1171
+ }
1172
+ ],
1173
+ "path": "/content/posts",
1174
+ "readOnly": false
1175
+ },
1176
+ "get": {
1177
+ "method": "GET",
1178
+ "params": [
1179
+ {
1180
+ "in": "path",
1181
+ "name": "id"
1182
+ }
1183
+ ],
1184
+ "path": "/content/posts/:id",
1185
+ "readOnly": true
1186
+ },
1187
+ "list": {
1188
+ "method": "GET",
1189
+ "params": [
1190
+ {
1191
+ "in": "query",
1192
+ "name": "status"
1193
+ },
1194
+ {
1195
+ "in": "query",
1196
+ "name": "limit"
1197
+ },
1198
+ {
1199
+ "in": "query",
1200
+ "name": "offset"
1201
+ }
1202
+ ],
1203
+ "path": "/content/posts",
1204
+ "readOnly": true
1205
+ },
1206
+ "submit": {
1207
+ "method": "POST",
1208
+ "params": [
1209
+ {
1210
+ "in": "path",
1211
+ "name": "id"
1212
+ }
1213
+ ],
1214
+ "path": "/content/posts/:id/submit",
1215
+ "readOnly": false
1216
+ },
1217
+ "update": {
1218
+ "method": "PATCH",
1219
+ "params": [
1220
+ {
1221
+ "in": "path",
1222
+ "name": "id"
1223
+ },
1224
+ {
1225
+ "in": "body",
1226
+ "name": "text"
1227
+ },
1228
+ {
1229
+ "in": "body",
1230
+ "name": "media"
1231
+ }
1232
+ ],
1233
+ "path": "/content/posts/:id",
1234
+ "readOnly": false
1235
+ },
1236
+ "versions": {
1237
+ "method": "GET",
1238
+ "params": [
1239
+ {
1240
+ "in": "path",
1241
+ "name": "id"
1242
+ }
1243
+ ],
1244
+ "path": "/content/posts/:id/versions",
1245
+ "readOnly": true
1246
+ }
1247
+ },
1248
+ "publications": {
1249
+ "cancel": {
1250
+ "method": "POST",
1251
+ "params": [
1252
+ {
1253
+ "in": "path",
1254
+ "name": "id"
1255
+ }
1256
+ ],
1257
+ "path": "/content/publications/:id/cancel",
1258
+ "readOnly": false
1259
+ },
1260
+ "confirm": {
1261
+ "method": "POST",
1262
+ "params": [
1263
+ {
1264
+ "in": "path",
1265
+ "name": "id"
1266
+ },
1267
+ {
1268
+ "in": "body",
1269
+ "name": "externalUrl"
1270
+ },
1271
+ {
1272
+ "in": "body",
1273
+ "name": "externalId"
1274
+ }
1275
+ ],
1276
+ "path": "/content/publications/:id/confirm",
1277
+ "readOnly": false
1278
+ },
1279
+ "get": {
1280
+ "method": "GET",
1281
+ "params": [
1282
+ {
1283
+ "in": "path",
1284
+ "name": "id"
1285
+ }
1286
+ ],
1287
+ "path": "/content/publications/:id",
1288
+ "readOnly": true
1289
+ },
1290
+ "list": {
1291
+ "method": "GET",
1292
+ "params": [
1293
+ {
1294
+ "in": "query",
1295
+ "name": "state"
1296
+ },
1297
+ {
1298
+ "in": "query",
1299
+ "name": "postId"
1300
+ },
1301
+ {
1302
+ "in": "query",
1303
+ "name": "channelId"
1304
+ },
1305
+ {
1306
+ "in": "query",
1307
+ "name": "limit"
1308
+ },
1309
+ {
1310
+ "in": "query",
1311
+ "name": "offset"
1312
+ }
1313
+ ],
1314
+ "path": "/content/publications",
1315
+ "readOnly": true
1316
+ },
1317
+ "publish": {
1318
+ "method": "POST",
1319
+ "params": [
1320
+ {
1321
+ "in": "body",
1322
+ "name": "postId"
1323
+ },
1324
+ {
1325
+ "in": "body",
1326
+ "name": "channelId"
1327
+ },
1328
+ {
1329
+ "in": "body",
1330
+ "name": "text"
1331
+ },
1332
+ {
1333
+ "in": "body",
1334
+ "name": "idempotencyKey"
1335
+ }
1336
+ ],
1337
+ "path": "/content/publications/publish",
1338
+ "readOnly": false
1339
+ },
1340
+ "remind": {
1341
+ "method": "POST",
1342
+ "params": [
1343
+ {
1344
+ "in": "path",
1345
+ "name": "id"
1346
+ }
1347
+ ],
1348
+ "path": "/content/publications/:id/remind",
1349
+ "readOnly": false
1350
+ },
1351
+ "reschedule": {
1352
+ "method": "POST",
1353
+ "params": [
1354
+ {
1355
+ "in": "path",
1356
+ "name": "id"
1357
+ },
1358
+ {
1359
+ "in": "body",
1360
+ "name": "scheduledAt"
1361
+ }
1362
+ ],
1363
+ "path": "/content/publications/:id/reschedule",
1364
+ "readOnly": false
1365
+ },
1366
+ "schedule": {
1367
+ "method": "POST",
1368
+ "params": [
1369
+ {
1370
+ "in": "body",
1371
+ "name": "postId"
1372
+ },
1373
+ {
1374
+ "in": "body",
1375
+ "name": "channelId"
1376
+ },
1377
+ {
1378
+ "in": "body",
1379
+ "name": "scheduledAt"
1380
+ },
1381
+ {
1382
+ "in": "body",
1383
+ "name": "text"
1384
+ },
1385
+ {
1386
+ "in": "body",
1387
+ "name": "idempotencyKey"
1388
+ }
1389
+ ],
1390
+ "path": "/content/publications",
1391
+ "readOnly": false
1392
+ }
1393
+ }
1394
+ },
1106
1395
  "deployment": {
1107
1396
  "alert": {
1108
1397
  "create": {
@@ -5289,6 +5578,110 @@ var bindings = {
5289
5578
  }
5290
5579
  }
5291
5580
  },
5581
+ "playground": {
5582
+ "analytics": {
5583
+ "overview": {
5584
+ "method": "POST",
5585
+ "params": [
5586
+ {
5587
+ "in": "body",
5588
+ "name": "limit"
5589
+ }
5590
+ ],
5591
+ "path": "/playground/analytics/overview",
5592
+ "readOnly": true
5593
+ }
5594
+ },
5595
+ "billing": {
5596
+ "entitlements": {
5597
+ "method": "POST",
5598
+ "path": "/playground/billing/entitlements",
5599
+ "readOnly": true
5600
+ },
5601
+ "record-usage": {
5602
+ "method": "POST",
5603
+ "params": [
5604
+ {
5605
+ "in": "body",
5606
+ "name": "value"
5607
+ }
5608
+ ],
5609
+ "path": "/playground/billing/usage",
5610
+ "readOnly": false
5611
+ }
5612
+ },
5613
+ "clickup": {
5614
+ "create-task": {
5615
+ "method": "POST",
5616
+ "params": [
5617
+ {
5618
+ "in": "body",
5619
+ "name": "listId"
5620
+ },
5621
+ {
5622
+ "in": "body",
5623
+ "name": "name"
5624
+ }
5625
+ ],
5626
+ "path": "/playground/clickup/tasks",
5627
+ "readOnly": false
5628
+ },
5629
+ "get-last-webhook": {
5630
+ "method": "GET",
5631
+ "path": "/playground/clickup/webhooks/last",
5632
+ "readOnly": true
5633
+ },
5634
+ "get-overview": {
5635
+ "method": "GET",
5636
+ "path": "/playground/clickup/overview",
5637
+ "readOnly": true
5638
+ }
5639
+ },
5640
+ "gdrive": {
5641
+ "get-last-change": {
5642
+ "method": "GET",
5643
+ "path": "/playground/gdrive/changes/last",
5644
+ "readOnly": true
5645
+ },
5646
+ "read-file": {
5647
+ "method": "POST",
5648
+ "params": [
5649
+ {
5650
+ "in": "body",
5651
+ "name": "fileId"
5652
+ }
5653
+ ],
5654
+ "path": "/playground/gdrive/file",
5655
+ "readOnly": true
5656
+ }
5657
+ },
5658
+ "googleads": {
5659
+ "read-customer": {
5660
+ "method": "POST",
5661
+ "path": "/playground/googleads/customer",
5662
+ "readOnly": true
5663
+ }
5664
+ },
5665
+ "lifecycle": {
5666
+ "get-state": {
5667
+ "method": "GET",
5668
+ "path": "/playground/lifecycle/state",
5669
+ "readOnly": true
5670
+ },
5671
+ "list-events": {
5672
+ "method": "GET",
5673
+ "path": "/playground/lifecycle/events",
5674
+ "readOnly": true
5675
+ }
5676
+ },
5677
+ "webhook": {
5678
+ "get-last": {
5679
+ "method": "GET",
5680
+ "path": "/playground/webhooks/last",
5681
+ "readOnly": true
5682
+ }
5683
+ }
5684
+ },
5292
5685
  "realtime": {
5293
5686
  "archive": {
5294
5687
  "export": {