@lessly/sdk-app 43.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 (47) 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.d.cts +1 -1
  4. package/dist/brain/index.d.ts +1 -1
  5. package/dist/{client.gen-BE8VaNrU.d.cts → client.gen-DlCqQAIZ.d.cts} +1175 -1
  6. package/dist/{client.gen-BE8VaNrU.d.ts → client.gen-DlCqQAIZ.d.ts} +1175 -1
  7. package/dist/consent/index.d.cts +1 -1
  8. package/dist/consent/index.d.ts +1 -1
  9. package/dist/content/index.cjs +96 -0
  10. package/dist/content/index.cjs.map +1 -0
  11. package/dist/content/index.d.cts +76 -0
  12. package/dist/content/index.d.ts +76 -0
  13. package/dist/content/index.js +77 -0
  14. package/dist/content/index.js.map +1 -0
  15. package/dist/deployment/index.d.cts +1 -1
  16. package/dist/deployment/index.d.ts +1 -1
  17. package/dist/index.cjs +302 -0
  18. package/dist/index.cjs.map +1 -1
  19. package/dist/index.d.cts +1 -1
  20. package/dist/index.d.ts +1 -1
  21. package/dist/index.js +302 -0
  22. package/dist/index.js.map +1 -1
  23. package/dist/mail/index.d.cts +2 -2
  24. package/dist/mail/index.d.ts +2 -2
  25. package/dist/observe/index.d.cts +1 -1
  26. package/dist/observe/index.d.ts +1 -1
  27. package/dist/organization/index.d.cts +1 -1
  28. package/dist/organization/index.d.ts +1 -1
  29. package/dist/playground/index.d.cts +1 -1
  30. package/dist/playground/index.d.ts +1 -1
  31. package/dist/realtime/index.d.cts +1 -1
  32. package/dist/realtime/index.d.ts +1 -1
  33. package/dist/support/index.d.cts +1 -1
  34. package/dist/support/index.d.ts +1 -1
  35. package/dist/tracking/index.d.cts +1 -1
  36. package/dist/tracking/index.d.ts +1 -1
  37. package/dist/users/index.d.cts +1 -1
  38. package/dist/users/index.d.ts +1 -1
  39. package/dist/waitlist/index.d.cts +1 -1
  40. package/dist/waitlist/index.d.ts +1 -1
  41. package/package.json +7 -2
  42. package/src/gen/bindings.gen.ts +302 -0
  43. package/src/gen/client.gen.ts +62 -0
  44. package/src/gen/content/index.ts +3 -0
  45. package/src/gen/content/queryOptions.gen.ts +119 -0
  46. package/src/gen/manifest.gen.ts +1 -1
  47. package/src/gen/types.gen.ts +1184 -0
package/dist/index.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- import { G as GeneratedClient } from './client.gen-BE8VaNrU.cjs';
1
+ import { G as GeneratedClient } from './client.gen-DlCqQAIZ.cjs';
2
2
 
3
3
  type HttpMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE';
4
4
  type ParamIn = 'path' | 'query' | 'body';
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { G as GeneratedClient } from './client.gen-BE8VaNrU.js';
1
+ import { G as GeneratedClient } from './client.gen-DlCqQAIZ.js';
2
2
 
3
3
  type HttpMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE';
4
4
  type ParamIn = 'path' | 'query' | 'body';
package/dist/index.js CHANGED
@@ -1088,6 +1088,308 @@ var bindings = {
1088
1088
  }
1089
1089
  }
1090
1090
  },
1091
+ "content": {
1092
+ "channels": {
1093
+ "get": {
1094
+ "method": "GET",
1095
+ "params": [
1096
+ {
1097
+ "in": "path",
1098
+ "name": "id"
1099
+ }
1100
+ ],
1101
+ "path": "/content/channels/:id",
1102
+ "readOnly": true
1103
+ },
1104
+ "list": {
1105
+ "method": "GET",
1106
+ "params": [
1107
+ {
1108
+ "in": "query",
1109
+ "name": "network"
1110
+ },
1111
+ {
1112
+ "in": "query",
1113
+ "name": "limit"
1114
+ },
1115
+ {
1116
+ "in": "query",
1117
+ "name": "offset"
1118
+ }
1119
+ ],
1120
+ "path": "/content/channels",
1121
+ "readOnly": true
1122
+ },
1123
+ "update": {
1124
+ "method": "PATCH",
1125
+ "params": [
1126
+ {
1127
+ "in": "path",
1128
+ "name": "id"
1129
+ },
1130
+ {
1131
+ "in": "body",
1132
+ "name": "displayName"
1133
+ },
1134
+ {
1135
+ "in": "body",
1136
+ "name": "deliveryMode"
1137
+ },
1138
+ {
1139
+ "in": "body",
1140
+ "name": "capabilities"
1141
+ }
1142
+ ],
1143
+ "path": "/content/channels/:id",
1144
+ "readOnly": false
1145
+ }
1146
+ },
1147
+ "posts": {
1148
+ "approve": {
1149
+ "method": "POST",
1150
+ "params": [
1151
+ {
1152
+ "in": "path",
1153
+ "name": "id"
1154
+ }
1155
+ ],
1156
+ "path": "/content/posts/:id/approve",
1157
+ "readOnly": false
1158
+ },
1159
+ "create": {
1160
+ "method": "POST",
1161
+ "params": [
1162
+ {
1163
+ "in": "body",
1164
+ "name": "text"
1165
+ },
1166
+ {
1167
+ "in": "body",
1168
+ "name": "media"
1169
+ }
1170
+ ],
1171
+ "path": "/content/posts",
1172
+ "readOnly": false
1173
+ },
1174
+ "get": {
1175
+ "method": "GET",
1176
+ "params": [
1177
+ {
1178
+ "in": "path",
1179
+ "name": "id"
1180
+ }
1181
+ ],
1182
+ "path": "/content/posts/:id",
1183
+ "readOnly": true
1184
+ },
1185
+ "list": {
1186
+ "method": "GET",
1187
+ "params": [
1188
+ {
1189
+ "in": "query",
1190
+ "name": "status"
1191
+ },
1192
+ {
1193
+ "in": "query",
1194
+ "name": "limit"
1195
+ },
1196
+ {
1197
+ "in": "query",
1198
+ "name": "offset"
1199
+ }
1200
+ ],
1201
+ "path": "/content/posts",
1202
+ "readOnly": true
1203
+ },
1204
+ "submit": {
1205
+ "method": "POST",
1206
+ "params": [
1207
+ {
1208
+ "in": "path",
1209
+ "name": "id"
1210
+ }
1211
+ ],
1212
+ "path": "/content/posts/:id/submit",
1213
+ "readOnly": false
1214
+ },
1215
+ "update": {
1216
+ "method": "PATCH",
1217
+ "params": [
1218
+ {
1219
+ "in": "path",
1220
+ "name": "id"
1221
+ },
1222
+ {
1223
+ "in": "body",
1224
+ "name": "text"
1225
+ },
1226
+ {
1227
+ "in": "body",
1228
+ "name": "media"
1229
+ }
1230
+ ],
1231
+ "path": "/content/posts/:id",
1232
+ "readOnly": false
1233
+ },
1234
+ "versions": {
1235
+ "method": "GET",
1236
+ "params": [
1237
+ {
1238
+ "in": "path",
1239
+ "name": "id"
1240
+ }
1241
+ ],
1242
+ "path": "/content/posts/:id/versions",
1243
+ "readOnly": true
1244
+ }
1245
+ },
1246
+ "publications": {
1247
+ "cancel": {
1248
+ "method": "POST",
1249
+ "params": [
1250
+ {
1251
+ "in": "path",
1252
+ "name": "id"
1253
+ }
1254
+ ],
1255
+ "path": "/content/publications/:id/cancel",
1256
+ "readOnly": false
1257
+ },
1258
+ "confirm": {
1259
+ "method": "POST",
1260
+ "params": [
1261
+ {
1262
+ "in": "path",
1263
+ "name": "id"
1264
+ },
1265
+ {
1266
+ "in": "body",
1267
+ "name": "externalUrl"
1268
+ },
1269
+ {
1270
+ "in": "body",
1271
+ "name": "externalId"
1272
+ }
1273
+ ],
1274
+ "path": "/content/publications/:id/confirm",
1275
+ "readOnly": false
1276
+ },
1277
+ "get": {
1278
+ "method": "GET",
1279
+ "params": [
1280
+ {
1281
+ "in": "path",
1282
+ "name": "id"
1283
+ }
1284
+ ],
1285
+ "path": "/content/publications/:id",
1286
+ "readOnly": true
1287
+ },
1288
+ "list": {
1289
+ "method": "GET",
1290
+ "params": [
1291
+ {
1292
+ "in": "query",
1293
+ "name": "state"
1294
+ },
1295
+ {
1296
+ "in": "query",
1297
+ "name": "postId"
1298
+ },
1299
+ {
1300
+ "in": "query",
1301
+ "name": "channelId"
1302
+ },
1303
+ {
1304
+ "in": "query",
1305
+ "name": "limit"
1306
+ },
1307
+ {
1308
+ "in": "query",
1309
+ "name": "offset"
1310
+ }
1311
+ ],
1312
+ "path": "/content/publications",
1313
+ "readOnly": true
1314
+ },
1315
+ "publish": {
1316
+ "method": "POST",
1317
+ "params": [
1318
+ {
1319
+ "in": "body",
1320
+ "name": "postId"
1321
+ },
1322
+ {
1323
+ "in": "body",
1324
+ "name": "channelId"
1325
+ },
1326
+ {
1327
+ "in": "body",
1328
+ "name": "text"
1329
+ },
1330
+ {
1331
+ "in": "body",
1332
+ "name": "idempotencyKey"
1333
+ }
1334
+ ],
1335
+ "path": "/content/publications/publish",
1336
+ "readOnly": false
1337
+ },
1338
+ "remind": {
1339
+ "method": "POST",
1340
+ "params": [
1341
+ {
1342
+ "in": "path",
1343
+ "name": "id"
1344
+ }
1345
+ ],
1346
+ "path": "/content/publications/:id/remind",
1347
+ "readOnly": false
1348
+ },
1349
+ "reschedule": {
1350
+ "method": "POST",
1351
+ "params": [
1352
+ {
1353
+ "in": "path",
1354
+ "name": "id"
1355
+ },
1356
+ {
1357
+ "in": "body",
1358
+ "name": "scheduledAt"
1359
+ }
1360
+ ],
1361
+ "path": "/content/publications/:id/reschedule",
1362
+ "readOnly": false
1363
+ },
1364
+ "schedule": {
1365
+ "method": "POST",
1366
+ "params": [
1367
+ {
1368
+ "in": "body",
1369
+ "name": "postId"
1370
+ },
1371
+ {
1372
+ "in": "body",
1373
+ "name": "channelId"
1374
+ },
1375
+ {
1376
+ "in": "body",
1377
+ "name": "scheduledAt"
1378
+ },
1379
+ {
1380
+ "in": "body",
1381
+ "name": "text"
1382
+ },
1383
+ {
1384
+ "in": "body",
1385
+ "name": "idempotencyKey"
1386
+ }
1387
+ ],
1388
+ "path": "/content/publications",
1389
+ "readOnly": false
1390
+ }
1391
+ }
1392
+ },
1091
1393
  "deployment": {
1092
1394
  "alert": {
1093
1395
  "create": {