mailmeteor 0.0.32 → 0.0.34
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 +9 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +54 -36
- package/dist/index.mjs +9 -4
- package/dist/index.mjs.map +1 -1
- package/dist/types/generated-sdk/index.d.ts +1 -1
- package/dist/types/generated-sdk/index.d.ts.map +1 -1
- package/dist/types/generated-sdk/sdk.gen.d.ts +11 -9
- package/dist/types/generated-sdk/sdk.gen.d.ts.map +1 -1
- package/dist/types/generated-sdk/types.gen.d.ts +35 -19
- package/dist/types/generated-sdk/types.gen.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1592,6 +1592,7 @@ 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' },
|
|
1595
1596
|
{ in: 'query', key: 'limit' },
|
|
1596
1597
|
{ in: 'query', key: 'starting_after' },
|
|
1597
1598
|
{ in: 'query', key: 'ending_before' }
|
|
@@ -1604,7 +1605,11 @@ class PipelineConversations extends HeyApiClient {
|
|
|
1604
1605
|
});
|
|
1605
1606
|
}
|
|
1606
1607
|
count(parameters, options) {
|
|
1607
|
-
const params = buildClientParams([parameters], [{ args: [
|
|
1608
|
+
const params = buildClientParams([parameters], [{ args: [
|
|
1609
|
+
{ in: 'query', key: 'owner' },
|
|
1610
|
+
{ in: 'query', key: 'status' },
|
|
1611
|
+
{ in: 'query', key: 'campaign' }
|
|
1612
|
+
] }]);
|
|
1608
1613
|
return (options?.client ?? this.client).get({
|
|
1609
1614
|
responseStyle: 'data',
|
|
1610
1615
|
url: '/pipeline_conversations/count',
|
|
@@ -1612,11 +1617,11 @@ class PipelineConversations extends HeyApiClient {
|
|
|
1612
1617
|
...params
|
|
1613
1618
|
});
|
|
1614
1619
|
}
|
|
1615
|
-
|
|
1620
|
+
update(pipeline_conversation_id, parameters, options) {
|
|
1616
1621
|
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).
|
|
1622
|
+
return (options?.client ?? this.client).patch({
|
|
1618
1623
|
responseStyle: 'data',
|
|
1619
|
-
url: '/pipeline_conversations/{pipeline_conversation_id}
|
|
1624
|
+
url: '/pipeline_conversations/{pipeline_conversation_id}',
|
|
1620
1625
|
...options,
|
|
1621
1626
|
...params,
|
|
1622
1627
|
headers: {
|