mailmeteor 0.0.33 → 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 +6 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +16 -0
- package/dist/index.mjs +6 -1
- package/dist/index.mjs.map +1 -1
- package/dist/types/generated-sdk/sdk.gen.d.ts +2 -0
- package/dist/types/generated-sdk/sdk.gen.d.ts.map +1 -1
- package/dist/types/generated-sdk/types.gen.d.ts +14 -0
- 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',
|