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 +15 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +38 -6
- package/dist/index.mjs +15 -3
- 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 +6 -0
- package/dist/types/generated-sdk/sdk.gen.d.ts.map +1 -1
- package/dist/types/generated-sdk/types.gen.d.ts +30 -5
- package/dist/types/generated-sdk/types.gen.d.ts.map +1 -1
- package/package.json +1 -1
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: [
|
|
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: [
|
|
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}',
|