@arke-institute/sdk 2.3.4 → 2.3.5
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.
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*
|
|
7
7
|
* Source: Arke v1 API
|
|
8
8
|
* Version: 1.0.0
|
|
9
|
-
* Generated: 2026-01-
|
|
9
|
+
* Generated: 2026-01-05T15:10:38.577Z
|
|
10
10
|
*/
|
|
11
11
|
type paths = {
|
|
12
12
|
"/auth/register": {
|
|
@@ -5738,6 +5738,8 @@ type components = {
|
|
|
5738
5738
|
limit: number;
|
|
5739
5739
|
/** @description Number of entities returned */
|
|
5740
5740
|
count: number;
|
|
5741
|
+
/** @description Whether more entities exist beyond this page */
|
|
5742
|
+
has_more: boolean;
|
|
5741
5743
|
};
|
|
5742
5744
|
};
|
|
5743
5745
|
EntityCreatedResponse: {
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*
|
|
7
7
|
* Source: Arke v1 API
|
|
8
8
|
* Version: 1.0.0
|
|
9
|
-
* Generated: 2026-01-
|
|
9
|
+
* Generated: 2026-01-05T15:10:38.577Z
|
|
10
10
|
*/
|
|
11
11
|
type paths = {
|
|
12
12
|
"/auth/register": {
|
|
@@ -5738,6 +5738,8 @@ type components = {
|
|
|
5738
5738
|
limit: number;
|
|
5739
5739
|
/** @description Number of entities returned */
|
|
5740
5740
|
count: number;
|
|
5741
|
+
/** @description Whether more entities exist beyond this page */
|
|
5742
|
+
has_more: boolean;
|
|
5741
5743
|
};
|
|
5742
5744
|
};
|
|
5743
5745
|
EntityCreatedResponse: {
|
package/openapi/spec.json
CHANGED
|
@@ -1395,12 +1395,17 @@
|
|
|
1395
1395
|
"count": {
|
|
1396
1396
|
"type": "integer",
|
|
1397
1397
|
"description": "Number of entities returned"
|
|
1398
|
+
},
|
|
1399
|
+
"has_more": {
|
|
1400
|
+
"type": "boolean",
|
|
1401
|
+
"description": "Whether more entities exist beyond this page"
|
|
1398
1402
|
}
|
|
1399
1403
|
},
|
|
1400
1404
|
"required": [
|
|
1401
1405
|
"offset",
|
|
1402
1406
|
"limit",
|
|
1403
|
-
"count"
|
|
1407
|
+
"count",
|
|
1408
|
+
"has_more"
|
|
1404
1409
|
],
|
|
1405
1410
|
"description": "Pagination info"
|
|
1406
1411
|
}
|
package/openapi/version.json
CHANGED