mailmeteor 0.0.33 → 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
@@ -1592,9 +1592,13 @@ class PipelineConversations extends HeyApiClient {
1592
1592
  const params = buildClientParams([parameters], [{ args: [
1593
1593
  { in: 'query', key: 'owner' },
1594
1594
  { in: 'query', key: 'status' },
1595
+ { in: 'query', key: 'campaign' },
1596
+ { in: 'query', key: 'provider' },
1597
+ { in: 'query', key: 'thread_id' },
1595
1598
  { in: 'query', key: 'limit' },
1596
1599
  { in: 'query', key: 'starting_after' },
1597
- { in: 'query', key: 'ending_before' }
1600
+ { in: 'query', key: 'ending_before' },
1601
+ { in: 'query', key: 'include_metrics' }
1598
1602
  ] }]);
1599
1603
  return (options?.client ?? this.client).get({
1600
1604
  responseStyle: 'data',
@@ -1604,7 +1608,11 @@ class PipelineConversations extends HeyApiClient {
1604
1608
  });
1605
1609
  }
1606
1610
  count(parameters, options) {
1607
- const params = buildClientParams([parameters], [{ args: [{ in: 'query', key: 'owner' }, { in: 'query', key: 'status' }] }]);
1611
+ const params = buildClientParams([parameters], [{ args: [
1612
+ { in: 'query', key: 'owner' },
1613
+ { in: 'query', key: 'status' },
1614
+ { in: 'query', key: 'campaign' }
1615
+ ] }]);
1608
1616
  return (options?.client ?? this.client).get({
1609
1617
  responseStyle: 'data',
1610
1618
  url: '/pipeline_conversations/count',
@@ -1613,7 +1621,11 @@ class PipelineConversations extends HeyApiClient {
1613
1621
  });
1614
1622
  }
1615
1623
  update(pipeline_conversation_id, parameters, options) {
1616
- 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
+ ] }]);
1617
1629
  return (options?.client ?? this.client).patch({
1618
1630
  responseStyle: 'data',
1619
1631
  url: '/pipeline_conversations/{pipeline_conversation_id}',