@kaspernj/api-maker 1.0.275 → 1.0.277
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/package.json
CHANGED
package/src/commands-pool.mjs
CHANGED
|
@@ -101,9 +101,9 @@ export default class ApiMakerCommandsPool {
|
|
|
101
101
|
}
|
|
102
102
|
|
|
103
103
|
if (response.success === false && response.type == "invalid_authenticity_token") {
|
|
104
|
-
console.
|
|
104
|
+
console.log("Invalid authenticity token - try again")
|
|
105
105
|
await SessionStatusUpdater.current().updateSessionStatus()
|
|
106
|
-
continue
|
|
106
|
+
continue
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
return response
|
|
@@ -210,7 +210,7 @@ export default class ApiMakerTableSettings {
|
|
|
210
210
|
}
|
|
211
211
|
|
|
212
212
|
const oldAttributeValue = tableSettingColumn[changedAttribute]()
|
|
213
|
-
const newAttributeValue =
|
|
213
|
+
const newAttributeValue = column[columnAttributeName]
|
|
214
214
|
|
|
215
215
|
if (oldAttributeValue != newAttributeValue) {
|
|
216
216
|
logger.debug(() => `${changedAttribute} changed from ${oldAttributeValue} to ${newAttributeValue} on column: ${column.label}`)
|