pinata 2.2.1 → 2.2.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.d.mts CHANGED
@@ -126,7 +126,7 @@ type PinQueueItem = {
126
126
  };
127
127
  };
128
128
  type PinQueueResponse = {
129
- rows: PinQueueItem[];
129
+ jobs: PinQueueItem[];
130
130
  next_page_token: string;
131
131
  };
132
132
  type SwapCidOptions = {
package/dist/index.d.ts CHANGED
@@ -126,7 +126,7 @@ type PinQueueItem = {
126
126
  };
127
127
  };
128
128
  type PinQueueResponse = {
129
- rows: PinQueueItem[];
129
+ jobs: PinQueueItem[];
130
130
  next_page_token: string;
131
131
  };
132
132
  type SwapCidOptions = {
package/dist/index.js CHANGED
@@ -4242,7 +4242,7 @@ var FilterQueue = class {
4242
4242
  async *[Symbol.asyncIterator]() {
4243
4243
  while (true) {
4244
4244
  const items = await this.fetchPage();
4245
- for (const item of items.rows) {
4245
+ for (const item of items.jobs) {
4246
4246
  yield item;
4247
4247
  }
4248
4248
  if (!this.currentPageToken) {