@liaisongroup/assist-api-js-client 1.5.124 → 1.5.126
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/openapi.d.ts +8 -0
- package/dist/openapi.json +14 -1
- package/dist/openapi.zod.d.ts +15254 -0
- package/dist/openapi.zod.js +4 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -917,7 +917,9 @@ declare namespace Components {
|
|
|
917
917
|
export interface Links {
|
|
918
918
|
self?: string;
|
|
919
919
|
current?: string;
|
|
920
|
+
prev?: string;
|
|
920
921
|
next?: string;
|
|
922
|
+
first?: string;
|
|
921
923
|
last?: string;
|
|
922
924
|
related?: string;
|
|
923
925
|
}
|
|
@@ -1125,7 +1127,13 @@ declare namespace Components {
|
|
|
1125
1127
|
pagination?: {
|
|
1126
1128
|
current?: number;
|
|
1127
1129
|
records?: number;
|
|
1130
|
+
prev?: number;
|
|
1128
1131
|
next?: number;
|
|
1132
|
+
/**
|
|
1133
|
+
* example:
|
|
1134
|
+
* 1
|
|
1135
|
+
*/
|
|
1136
|
+
first?: number;
|
|
1129
1137
|
last?: number;
|
|
1130
1138
|
};
|
|
1131
1139
|
}
|
package/dist/openapi.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "Liaison Assist API",
|
|
5
5
|
"description": "\n",
|
|
6
|
-
"version": "0.0.
|
|
6
|
+
"version": "0.0.352",
|
|
7
7
|
"license": {
|
|
8
8
|
"name": "MIT",
|
|
9
9
|
"url": "https://opensource.org/licenses/MIT"
|
|
@@ -15538,9 +15538,16 @@
|
|
|
15538
15538
|
"records": {
|
|
15539
15539
|
"type": "integer"
|
|
15540
15540
|
},
|
|
15541
|
+
"prev": {
|
|
15542
|
+
"type": "integer"
|
|
15543
|
+
},
|
|
15541
15544
|
"next": {
|
|
15542
15545
|
"type": "integer"
|
|
15543
15546
|
},
|
|
15547
|
+
"first": {
|
|
15548
|
+
"type": "integer",
|
|
15549
|
+
"example": 1
|
|
15550
|
+
},
|
|
15544
15551
|
"last": {
|
|
15545
15552
|
"type": "integer"
|
|
15546
15553
|
}
|
|
@@ -15558,9 +15565,15 @@
|
|
|
15558
15565
|
"current": {
|
|
15559
15566
|
"type": "string"
|
|
15560
15567
|
},
|
|
15568
|
+
"prev": {
|
|
15569
|
+
"type": "string"
|
|
15570
|
+
},
|
|
15561
15571
|
"next": {
|
|
15562
15572
|
"type": "string"
|
|
15563
15573
|
},
|
|
15574
|
+
"first": {
|
|
15575
|
+
"type": "string"
|
|
15576
|
+
},
|
|
15564
15577
|
"last": {
|
|
15565
15578
|
"type": "string"
|
|
15566
15579
|
},
|