@ttmg/cli 0.3.7-beta.1 → 0.3.7-beta.2

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.js CHANGED
@@ -9224,8 +9224,10 @@ function isUsableDirectFeedCard(card) {
9224
9224
  if (hasBlockingCardStatus(card.status)) {
9225
9225
  return false;
9226
9226
  }
9227
+ // Dev Portal returns numeric audit statuses; `1` is already usable in practice,
9228
+ // so only block clearly invalid numeric values and known textual blocking states.
9227
9229
  if (typeof card.audit_status === 'number') {
9228
- if (card.audit_status <= 1) {
9230
+ if (card.audit_status <= 0) {
9229
9231
  return false;
9230
9232
  }
9231
9233
  }
@@ -11164,7 +11166,7 @@ async function upload({ clientKey, note = '--', dir, }) {
11164
11166
  }
11165
11167
  }
11166
11168
 
11167
- var version = "0.3.7-beta.1";
11169
+ var version = "0.3.7-beta.2";
11168
11170
  var pkg = {
11169
11171
  version: version};
11170
11172