mailmeteor 0.0.30 → 0.0.32

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
@@ -1612,6 +1612,20 @@ class PipelineConversations extends HeyApiClient {
1612
1612
  ...params
1613
1613
  });
1614
1614
  }
1615
+ setStatus(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' }] }]);
1617
+ return (options?.client ?? this.client).post({
1618
+ responseStyle: 'data',
1619
+ url: '/pipeline_conversations/{pipeline_conversation_id}/status',
1620
+ ...options,
1621
+ ...params,
1622
+ headers: {
1623
+ 'Content-Type': 'application/json',
1624
+ ...options?.headers,
1625
+ ...params.headers
1626
+ }
1627
+ });
1628
+ }
1615
1629
  }
1616
1630
  class PipelineConversations2 extends HeyApiClient {
1617
1631
  constructor(args) {