@lotics/cli 0.148.2 → 0.149.0
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/src/cli.js +1 -0
- package/dist/src/client.d.ts +1 -0
- package/package.json +1 -1
package/dist/src/cli.js
CHANGED
|
@@ -46957,6 +46957,7 @@ async function dispatchRpc(client, body, opts) {
|
|
|
46957
46957
|
}
|
|
46958
46958
|
const comment = await client.appUpdateRecordComment(body.app_id, p.record_id, p.comment_id, {
|
|
46959
46959
|
content: p.content,
|
|
46960
|
+
file_ids: p.file_ids,
|
|
46960
46961
|
files: p.files
|
|
46961
46962
|
});
|
|
46962
46963
|
return { comment };
|
package/dist/src/client.d.ts
CHANGED
|
@@ -1043,6 +1043,7 @@ export declare class LoticsClient {
|
|
|
1043
1043
|
}): Promise<unknown>;
|
|
1044
1044
|
appUpdateRecordComment(app_id: string, record_id: string, comment_id: string, body: {
|
|
1045
1045
|
content: string;
|
|
1046
|
+
file_ids?: string[];
|
|
1046
1047
|
files?: unknown[];
|
|
1047
1048
|
}): Promise<unknown>;
|
|
1048
1049
|
appDeleteRecordComment(app_id: string, record_id: string, comment_id: string): Promise<void>;
|