mailmeteor 0.0.34 → 0.0.35

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
@@ -1593,9 +1593,12 @@ class PipelineConversations extends HeyApiClient {
1593
1593
  { in: 'query', key: 'owner' },
1594
1594
  { in: 'query', key: 'status' },
1595
1595
  { in: 'query', key: 'campaign' },
1596
+ { in: 'query', key: 'provider' },
1597
+ { in: 'query', key: 'thread_id' },
1596
1598
  { in: 'query', key: 'limit' },
1597
1599
  { in: 'query', key: 'starting_after' },
1598
- { in: 'query', key: 'ending_before' }
1600
+ { in: 'query', key: 'ending_before' },
1601
+ { in: 'query', key: 'include_metrics' }
1599
1602
  ] }]);
1600
1603
  return (options?.client ?? this.client).get({
1601
1604
  responseStyle: 'data',
@@ -1618,7 +1621,11 @@ class PipelineConversations extends HeyApiClient {
1618
1621
  });
1619
1622
  }
1620
1623
  update(pipeline_conversation_id, parameters, options) {
1621
- const params = buildClientParams([pipeline_conversation_id, parameters], [{ in: 'path', key: 'pipeline_conversation_id' }, { args: [{ in: 'body', key: 'owner' }, { in: 'body', key: 'status' }] }]);
1624
+ const params = buildClientParams([pipeline_conversation_id, parameters], [{ in: 'path', key: 'pipeline_conversation_id' }, { args: [
1625
+ { in: 'query', key: 'include_metrics' },
1626
+ { in: 'body', key: 'owner' },
1627
+ { in: 'body', key: 'status' }
1628
+ ] }]);
1622
1629
  return (options?.client ?? this.client).patch({
1623
1630
  responseStyle: 'data',
1624
1631
  url: '/pipeline_conversations/{pipeline_conversation_id}',