@gewis/sudosos-client 0.0.0-develop.6e16b4c → 0.0.0-develop.7457574
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/api.d.ts +19 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -6528,6 +6528,25 @@ export interface UserWithIndex {
|
|
|
6528
6528
|
*/
|
|
6529
6529
|
'index': number;
|
|
6530
6530
|
}
|
|
6531
|
+
/**
|
|
6532
|
+
*
|
|
6533
|
+
* @export
|
|
6534
|
+
* @interface ValidationResponse
|
|
6535
|
+
*/
|
|
6536
|
+
export interface ValidationResponse {
|
|
6537
|
+
/**
|
|
6538
|
+
* Whether the request passed validation.
|
|
6539
|
+
* @type {boolean}
|
|
6540
|
+
* @memberof ValidationResponse
|
|
6541
|
+
*/
|
|
6542
|
+
'valid': boolean;
|
|
6543
|
+
/**
|
|
6544
|
+
* List of validation error messages.
|
|
6545
|
+
* @type {Array<string>}
|
|
6546
|
+
* @memberof ValidationResponse
|
|
6547
|
+
*/
|
|
6548
|
+
'errors': Array<string>;
|
|
6549
|
+
}
|
|
6531
6550
|
/**
|
|
6532
6551
|
*
|
|
6533
6552
|
* @export
|
package/package.json
CHANGED