params received by this action are specified as follows:export const params = {
taskId: { type: "string" },
};params only contains the id, and the taskId is not being retrieved. I have confirmed through the logs on the execution side that taskId is a string.const { result } = await gadgetApi.shopifyCustomer.updateRank(customerId, { taskId: taskId });const shopifyCustomerRecord = await api.shopifyCustomer.updateRank("5883275935793", {
taskId: "456",
});
console.log(shopifyCustomerRecord)await api.student.suspend({ id: "123", suspensionLength: 3 });const shopifyCustomerRecord = await api.shopifyCustomer.updateRank("123", {
taskId: "example value for taskId",
});