@powerportalspro/core 6.0.0 → 6.1.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/index.d.cts CHANGED
@@ -5121,13 +5121,25 @@ interface components {
5121
5121
  * @description The total number of records that match the query, when the server returned a count. Null when the count was not requested or could not be computed.
5122
5122
  */
5123
5123
  totalRecordCount?: null | number | string;
5124
- /** @description The opaque paging cookie used by Dataverse to efficiently fetch the next page. Null when there are no further pages. */
5124
+ /**
5125
+ * @description The opaque paging cookie used by Dataverse to efficiently fetch the next page. Dataverse still issues a
5126
+ * cookie on the final populated page (it only comes back null once a page past the end is requested), so this
5127
+ * is not an end-of-data signal — use bool? PagingInfo.MoreRecords for that.
5128
+ */
5125
5129
  pagingCookie?: null | string;
5126
5130
  /**
5127
5131
  * Format: int32
5128
5132
  * @description The 1-based page number of the records in the response.
5129
5133
  */
5130
5134
  pageNumber?: number | string;
5135
+ /**
5136
+ * @description Whether Dataverse reports further pages beyond this one (`EntityCollection.MoreRecords`). This is the
5137
+ * authoritative end-of-data signal for sequential paging: int? PagingInfo.TotalRecordCount is computed by
5138
+ * Dataverse before the portal's per-row permission handlers drop rows, so the rows a caller accumulates can
5139
+ * legitimately total fewer than the count, and string? PagingInfo.PagingCookie is still populated on the last
5140
+ * populated page. Null when the source of the response cannot report it.
5141
+ */
5142
+ moreRecords?: null | boolean;
5131
5143
  };
5132
5144
  /**
5133
5145
  * @description Returned by `GET /api/auth/external-login/pending` when a recent OAuth
package/dist/index.d.ts CHANGED
@@ -5121,13 +5121,25 @@ interface components {
5121
5121
  * @description The total number of records that match the query, when the server returned a count. Null when the count was not requested or could not be computed.
5122
5122
  */
5123
5123
  totalRecordCount?: null | number | string;
5124
- /** @description The opaque paging cookie used by Dataverse to efficiently fetch the next page. Null when there are no further pages. */
5124
+ /**
5125
+ * @description The opaque paging cookie used by Dataverse to efficiently fetch the next page. Dataverse still issues a
5126
+ * cookie on the final populated page (it only comes back null once a page past the end is requested), so this
5127
+ * is not an end-of-data signal — use bool? PagingInfo.MoreRecords for that.
5128
+ */
5125
5129
  pagingCookie?: null | string;
5126
5130
  /**
5127
5131
  * Format: int32
5128
5132
  * @description The 1-based page number of the records in the response.
5129
5133
  */
5130
5134
  pageNumber?: number | string;
5135
+ /**
5136
+ * @description Whether Dataverse reports further pages beyond this one (`EntityCollection.MoreRecords`). This is the
5137
+ * authoritative end-of-data signal for sequential paging: int? PagingInfo.TotalRecordCount is computed by
5138
+ * Dataverse before the portal's per-row permission handlers drop rows, so the rows a caller accumulates can
5139
+ * legitimately total fewer than the count, and string? PagingInfo.PagingCookie is still populated on the last
5140
+ * populated page. Null when the source of the response cannot report it.
5141
+ */
5142
+ moreRecords?: null | boolean;
5131
5143
  };
5132
5144
  /**
5133
5145
  * @description Returned by `GET /api/auth/external-login/pending` when a recent OAuth
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerportalspro/core",
3
- "version": "6.0.0",
3
+ "version": "6.1.0",
4
4
  "description": "Framework-agnostic typed client for the PowerPortalsPro /api/* surface and IAuthService.",
5
5
  "license": "SEE LICENSE IN EULA.txt",
6
6
  "type": "module",