mailmeteor 0.0.38 → 0.0.39

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.cjs CHANGED
@@ -1647,6 +1647,15 @@ class PipelineConversations extends HeyApiClient {
1647
1647
  }
1648
1648
  });
1649
1649
  }
1650
+ listMessages(pipeline_conversation_id, parameters, options) {
1651
+ const params = buildClientParams([pipeline_conversation_id, parameters], [{ in: 'path', key: 'pipeline_conversation_id' }, { args: [{ in: 'query', key: 'owner' }] }]);
1652
+ return (options?.client ?? this.client).get({
1653
+ responseStyle: 'data',
1654
+ url: '/pipeline_conversations/{pipeline_conversation_id}/messages',
1655
+ ...options,
1656
+ ...params
1657
+ });
1658
+ }
1650
1659
  }
1651
1660
  class PipelineConversations2 extends HeyApiClient {
1652
1661
  constructor(args) {