mailmeteor 0.0.32 → 0.0.33

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,11 +1612,11 @@ class PipelineConversations extends HeyApiClient {
1612
1612
  ...params
1613
1613
  });
1614
1614
  }
1615
- setStatus(pipeline_conversation_id, parameters, options) {
1615
+ update(pipeline_conversation_id, parameters, options) {
1616
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({
1617
+ return (options?.client ?? this.client).patch({
1618
1618
  responseStyle: 'data',
1619
- url: '/pipeline_conversations/{pipeline_conversation_id}/status',
1619
+ url: '/pipeline_conversations/{pipeline_conversation_id}',
1620
1620
  ...options,
1621
1621
  ...params,
1622
1622
  headers: {