mailmeteor 0.0.36 → 0.0.38
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 +53 -5
- 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 +5 -1
- package/dist/types/generated-sdk/sdk.gen.d.ts.map +1 -1
- package/dist/types/generated-sdk/types.gen.d.ts +43 -4
- package/dist/types/generated-sdk/types.gen.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1620,6 +1620,15 @@ class PipelineConversations extends HeyApiClient {
|
|
|
1620
1620
|
...params
|
|
1621
1621
|
});
|
|
1622
1622
|
}
|
|
1623
|
+
retrieve(pipeline_conversation_id, parameters, options) {
|
|
1624
|
+
const params = buildClientParams([pipeline_conversation_id, parameters], [{ in: 'path', key: 'pipeline_conversation_id' }, { args: [{ in: 'query', key: 'owner' }, { in: 'query', key: 'include_metrics' }] }]);
|
|
1625
|
+
return (options?.client ?? this.client).get({
|
|
1626
|
+
responseStyle: 'data',
|
|
1627
|
+
url: '/pipeline_conversations/{pipeline_conversation_id}',
|
|
1628
|
+
...options,
|
|
1629
|
+
...params
|
|
1630
|
+
});
|
|
1631
|
+
}
|
|
1623
1632
|
update(pipeline_conversation_id, parameters, options) {
|
|
1624
1633
|
const params = buildClientParams([pipeline_conversation_id, parameters], [{ in: 'path', key: 'pipeline_conversation_id' }, { args: [
|
|
1625
1634
|
{ in: 'query', key: 'include_metrics' },
|