mailmeteor 0.0.38 → 0.0.39
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 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +101 -1
- package/dist/index.mjs +9 -0
- 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 +4 -1
- package/dist/types/generated-sdk/sdk.gen.d.ts.map +1 -1
- package/dist/types/generated-sdk/types.gen.d.ts +89 -0
- package/dist/types/generated-sdk/types.gen.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1647,6 +1647,15 @@ class PipelineConversations extends HeyApiClient {
|
|
|
1647
1647
|
}
|
|
1648
1648
|
});
|
|
1649
1649
|
}
|
|
1650
|
+
listMessages(pipeline_conversation_id, parameters, options) {
|
|
1651
|
+
const params = buildClientParams([pipeline_conversation_id, parameters], [{ in: 'path', key: 'pipeline_conversation_id' }, { args: [{ in: 'query', key: 'owner' }] }]);
|
|
1652
|
+
return (options?.client ?? this.client).get({
|
|
1653
|
+
responseStyle: 'data',
|
|
1654
|
+
url: '/pipeline_conversations/{pipeline_conversation_id}/messages',
|
|
1655
|
+
...options,
|
|
1656
|
+
...params
|
|
1657
|
+
});
|
|
1658
|
+
}
|
|
1650
1659
|
}
|
|
1651
1660
|
class PipelineConversations2 extends HeyApiClient {
|
|
1652
1661
|
constructor(args) {
|