@getlatedev/node 0.1.23 → 0.1.25

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/index.js CHANGED
@@ -877,18 +877,6 @@ var getWebhookLogs = (options) => {
877
877
  url: "/v1/webhooks/logs"
878
878
  });
879
879
  };
880
- var listLogs = (options) => {
881
- return (options?.client ?? client).get({
882
- ...options,
883
- url: "/v1/logs"
884
- });
885
- };
886
- var getLog = (options) => {
887
- return (options?.client ?? client).get({
888
- ...options,
889
- url: "/v1/logs/{logId}"
890
- });
891
- };
892
880
  var listPostsLogs = (options) => {
893
881
  return (options?.client ?? client).get({
894
882
  ...options,
@@ -1389,8 +1377,6 @@ var Late = class {
1389
1377
  * Logs API - Publishing logs
1390
1378
  */
1391
1379
  this.logs = {
1392
- listLogs,
1393
- getLog,
1394
1380
  listPostsLogs,
1395
1381
  listConnectionLogs,
1396
1382
  getPostLogs
package/dist/index.mjs CHANGED
@@ -848,18 +848,6 @@ var getWebhookLogs = (options) => {
848
848
  url: "/v1/webhooks/logs"
849
849
  });
850
850
  };
851
- var listLogs = (options) => {
852
- return (options?.client ?? client).get({
853
- ...options,
854
- url: "/v1/logs"
855
- });
856
- };
857
- var getLog = (options) => {
858
- return (options?.client ?? client).get({
859
- ...options,
860
- url: "/v1/logs/{logId}"
861
- });
862
- };
863
851
  var listPostsLogs = (options) => {
864
852
  return (options?.client ?? client).get({
865
853
  ...options,
@@ -1360,8 +1348,6 @@ var Late = class {
1360
1348
  * Logs API - Publishing logs
1361
1349
  */
1362
1350
  this.logs = {
1363
- listLogs,
1364
- getLog,
1365
1351
  listPostsLogs,
1366
1352
  listConnectionLogs,
1367
1353
  getPostLogs
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getlatedev/node",
3
- "version": "0.1.23",
3
+ "version": "0.1.25",
4
4
  "description": "The official Node.js library for the Late API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
package/src/client.ts CHANGED
@@ -54,7 +54,6 @@ import {
54
54
  getLinkedInMentions,
55
55
  getLinkedInOrganizations,
56
56
  getLinkedInPostAnalytics,
57
- getLog,
58
57
  getMediaPresignedUrl,
59
58
  getMessengerMenu,
60
59
  getNextQueueSlot,
@@ -90,7 +89,6 @@ import {
90
89
  listInboxConversations,
91
90
  listInboxReviews,
92
91
  listLinkedInOrganizations,
93
- listLogs,
94
92
  listPinterestBoardsForSelection,
95
93
  listPosts,
96
94
  listPostsLogs,
@@ -434,8 +432,6 @@ export class Late {
434
432
  * Logs API - Publishing logs
435
433
  */
436
434
  logs = {
437
- listLogs: listLogs,
438
- getLog: getLog,
439
435
  listPostsLogs: listPostsLogs,
440
436
  listConnectionLogs: listConnectionLogs,
441
437
  getPostLogs: getPostLogs,