qanswer-sdk 3.1207.0-main → 3.1208.0-main
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/README.md +4 -4
- package/api.ts +30 -30
- package/dist/api.d.ts +30 -30
- package/package.json +1 -1
- package/qanswer-sdk-3.1208.0-main.tgz +0 -0
- package/qanswer-sdk-3.1207.0-main.tgz +0 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# 🔮 QAnswer
|
|
1
|
+
# 🔮 QAnswer SDK (TypeScript + Axios)
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@the-qa-company/qanswer-client)
|
|
4
4
|
[](./LICENSE)
|
|
@@ -12,13 +12,13 @@
|
|
|
12
12
|
## 📦 Installation
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
|
-
npm install
|
|
15
|
+
npm install qanswer-sdk
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
or with Yarn:
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
|
-
yarn add
|
|
21
|
+
yarn add qanswer-sdk
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
---
|
|
@@ -26,7 +26,7 @@ yarn add @the-qa-company/qanswer-client
|
|
|
26
26
|
## ⚡ Quick Start
|
|
27
27
|
|
|
28
28
|
```javascript
|
|
29
|
-
import { DefaultApi } from "
|
|
29
|
+
import { DefaultApi } from "qanswer-sdk";
|
|
30
30
|
|
|
31
31
|
// Create an instance of the API client
|
|
32
32
|
const api = new DefaultApi();
|
package/api.ts
CHANGED
|
@@ -7014,22 +7014,16 @@ export interface PageOrganization {
|
|
|
7014
7014
|
'totalPages'?: number;
|
|
7015
7015
|
/**
|
|
7016
7016
|
*
|
|
7017
|
-
* @type {
|
|
7018
|
-
* @memberof PageOrganization
|
|
7019
|
-
*/
|
|
7020
|
-
'sort'?: SortObject;
|
|
7021
|
-
/**
|
|
7022
|
-
*
|
|
7023
|
-
* @type {number}
|
|
7017
|
+
* @type {PageableObject}
|
|
7024
7018
|
* @memberof PageOrganization
|
|
7025
7019
|
*/
|
|
7026
|
-
'
|
|
7020
|
+
'pageable'?: PageableObject;
|
|
7027
7021
|
/**
|
|
7028
7022
|
*
|
|
7029
|
-
* @type {
|
|
7023
|
+
* @type {SortObject}
|
|
7030
7024
|
* @memberof PageOrganization
|
|
7031
7025
|
*/
|
|
7032
|
-
'
|
|
7026
|
+
'sort'?: SortObject;
|
|
7033
7027
|
/**
|
|
7034
7028
|
*
|
|
7035
7029
|
* @type {boolean}
|
|
@@ -7060,6 +7054,12 @@ export interface PageOrganization {
|
|
|
7060
7054
|
* @memberof PageOrganization
|
|
7061
7055
|
*/
|
|
7062
7056
|
'number'?: number;
|
|
7057
|
+
/**
|
|
7058
|
+
*
|
|
7059
|
+
* @type {number}
|
|
7060
|
+
* @memberof PageOrganization
|
|
7061
|
+
*/
|
|
7062
|
+
'numberOfElements'?: number;
|
|
7063
7063
|
/**
|
|
7064
7064
|
*
|
|
7065
7065
|
* @type {boolean}
|
|
@@ -7087,22 +7087,16 @@ export interface PageTeamWithCount {
|
|
|
7087
7087
|
'totalPages'?: number;
|
|
7088
7088
|
/**
|
|
7089
7089
|
*
|
|
7090
|
-
* @type {
|
|
7091
|
-
* @memberof PageTeamWithCount
|
|
7092
|
-
*/
|
|
7093
|
-
'sort'?: SortObject;
|
|
7094
|
-
/**
|
|
7095
|
-
*
|
|
7096
|
-
* @type {number}
|
|
7090
|
+
* @type {PageableObject}
|
|
7097
7091
|
* @memberof PageTeamWithCount
|
|
7098
7092
|
*/
|
|
7099
|
-
'
|
|
7093
|
+
'pageable'?: PageableObject;
|
|
7100
7094
|
/**
|
|
7101
7095
|
*
|
|
7102
|
-
* @type {
|
|
7096
|
+
* @type {SortObject}
|
|
7103
7097
|
* @memberof PageTeamWithCount
|
|
7104
7098
|
*/
|
|
7105
|
-
'
|
|
7099
|
+
'sort'?: SortObject;
|
|
7106
7100
|
/**
|
|
7107
7101
|
*
|
|
7108
7102
|
* @type {boolean}
|
|
@@ -7133,6 +7127,12 @@ export interface PageTeamWithCount {
|
|
|
7133
7127
|
* @memberof PageTeamWithCount
|
|
7134
7128
|
*/
|
|
7135
7129
|
'number'?: number;
|
|
7130
|
+
/**
|
|
7131
|
+
*
|
|
7132
|
+
* @type {number}
|
|
7133
|
+
* @memberof PageTeamWithCount
|
|
7134
|
+
*/
|
|
7135
|
+
'numberOfElements'?: number;
|
|
7136
7136
|
/**
|
|
7137
7137
|
*
|
|
7138
7138
|
* @type {boolean}
|
|
@@ -7173,34 +7173,34 @@ export interface Pageable {
|
|
|
7173
7173
|
export interface PageableObject {
|
|
7174
7174
|
/**
|
|
7175
7175
|
*
|
|
7176
|
-
* @type {
|
|
7176
|
+
* @type {boolean}
|
|
7177
7177
|
* @memberof PageableObject
|
|
7178
7178
|
*/
|
|
7179
|
-
'
|
|
7179
|
+
'unpaged'?: boolean;
|
|
7180
7180
|
/**
|
|
7181
7181
|
*
|
|
7182
|
-
* @type {
|
|
7182
|
+
* @type {boolean}
|
|
7183
7183
|
* @memberof PageableObject
|
|
7184
7184
|
*/
|
|
7185
|
-
'
|
|
7185
|
+
'paged'?: boolean;
|
|
7186
7186
|
/**
|
|
7187
7187
|
*
|
|
7188
|
-
* @type {
|
|
7188
|
+
* @type {number}
|
|
7189
7189
|
* @memberof PageableObject
|
|
7190
7190
|
*/
|
|
7191
|
-
'
|
|
7191
|
+
'pageNumber'?: number;
|
|
7192
7192
|
/**
|
|
7193
7193
|
*
|
|
7194
|
-
* @type {
|
|
7194
|
+
* @type {number}
|
|
7195
7195
|
* @memberof PageableObject
|
|
7196
7196
|
*/
|
|
7197
|
-
'
|
|
7197
|
+
'pageSize'?: number;
|
|
7198
7198
|
/**
|
|
7199
7199
|
*
|
|
7200
|
-
* @type {
|
|
7200
|
+
* @type {SortObject}
|
|
7201
7201
|
* @memberof PageableObject
|
|
7202
7202
|
*/
|
|
7203
|
-
'
|
|
7203
|
+
'sort'?: SortObject;
|
|
7204
7204
|
/**
|
|
7205
7205
|
*
|
|
7206
7206
|
* @type {number}
|
package/dist/api.d.ts
CHANGED
|
@@ -6882,22 +6882,16 @@ export interface PageOrganization {
|
|
|
6882
6882
|
'totalPages'?: number;
|
|
6883
6883
|
/**
|
|
6884
6884
|
*
|
|
6885
|
-
* @type {
|
|
6886
|
-
* @memberof PageOrganization
|
|
6887
|
-
*/
|
|
6888
|
-
'sort'?: SortObject;
|
|
6889
|
-
/**
|
|
6890
|
-
*
|
|
6891
|
-
* @type {number}
|
|
6885
|
+
* @type {PageableObject}
|
|
6892
6886
|
* @memberof PageOrganization
|
|
6893
6887
|
*/
|
|
6894
|
-
'
|
|
6888
|
+
'pageable'?: PageableObject;
|
|
6895
6889
|
/**
|
|
6896
6890
|
*
|
|
6897
|
-
* @type {
|
|
6891
|
+
* @type {SortObject}
|
|
6898
6892
|
* @memberof PageOrganization
|
|
6899
6893
|
*/
|
|
6900
|
-
'
|
|
6894
|
+
'sort'?: SortObject;
|
|
6901
6895
|
/**
|
|
6902
6896
|
*
|
|
6903
6897
|
* @type {boolean}
|
|
@@ -6928,6 +6922,12 @@ export interface PageOrganization {
|
|
|
6928
6922
|
* @memberof PageOrganization
|
|
6929
6923
|
*/
|
|
6930
6924
|
'number'?: number;
|
|
6925
|
+
/**
|
|
6926
|
+
*
|
|
6927
|
+
* @type {number}
|
|
6928
|
+
* @memberof PageOrganization
|
|
6929
|
+
*/
|
|
6930
|
+
'numberOfElements'?: number;
|
|
6931
6931
|
/**
|
|
6932
6932
|
*
|
|
6933
6933
|
* @type {boolean}
|
|
@@ -6955,22 +6955,16 @@ export interface PageTeamWithCount {
|
|
|
6955
6955
|
'totalPages'?: number;
|
|
6956
6956
|
/**
|
|
6957
6957
|
*
|
|
6958
|
-
* @type {
|
|
6959
|
-
* @memberof PageTeamWithCount
|
|
6960
|
-
*/
|
|
6961
|
-
'sort'?: SortObject;
|
|
6962
|
-
/**
|
|
6963
|
-
*
|
|
6964
|
-
* @type {number}
|
|
6958
|
+
* @type {PageableObject}
|
|
6965
6959
|
* @memberof PageTeamWithCount
|
|
6966
6960
|
*/
|
|
6967
|
-
'
|
|
6961
|
+
'pageable'?: PageableObject;
|
|
6968
6962
|
/**
|
|
6969
6963
|
*
|
|
6970
|
-
* @type {
|
|
6964
|
+
* @type {SortObject}
|
|
6971
6965
|
* @memberof PageTeamWithCount
|
|
6972
6966
|
*/
|
|
6973
|
-
'
|
|
6967
|
+
'sort'?: SortObject;
|
|
6974
6968
|
/**
|
|
6975
6969
|
*
|
|
6976
6970
|
* @type {boolean}
|
|
@@ -7001,6 +6995,12 @@ export interface PageTeamWithCount {
|
|
|
7001
6995
|
* @memberof PageTeamWithCount
|
|
7002
6996
|
*/
|
|
7003
6997
|
'number'?: number;
|
|
6998
|
+
/**
|
|
6999
|
+
*
|
|
7000
|
+
* @type {number}
|
|
7001
|
+
* @memberof PageTeamWithCount
|
|
7002
|
+
*/
|
|
7003
|
+
'numberOfElements'?: number;
|
|
7004
7004
|
/**
|
|
7005
7005
|
*
|
|
7006
7006
|
* @type {boolean}
|
|
@@ -7041,34 +7041,34 @@ export interface Pageable {
|
|
|
7041
7041
|
export interface PageableObject {
|
|
7042
7042
|
/**
|
|
7043
7043
|
*
|
|
7044
|
-
* @type {
|
|
7044
|
+
* @type {boolean}
|
|
7045
7045
|
* @memberof PageableObject
|
|
7046
7046
|
*/
|
|
7047
|
-
'
|
|
7047
|
+
'unpaged'?: boolean;
|
|
7048
7048
|
/**
|
|
7049
7049
|
*
|
|
7050
|
-
* @type {
|
|
7050
|
+
* @type {boolean}
|
|
7051
7051
|
* @memberof PageableObject
|
|
7052
7052
|
*/
|
|
7053
|
-
'
|
|
7053
|
+
'paged'?: boolean;
|
|
7054
7054
|
/**
|
|
7055
7055
|
*
|
|
7056
|
-
* @type {
|
|
7056
|
+
* @type {number}
|
|
7057
7057
|
* @memberof PageableObject
|
|
7058
7058
|
*/
|
|
7059
|
-
'
|
|
7059
|
+
'pageNumber'?: number;
|
|
7060
7060
|
/**
|
|
7061
7061
|
*
|
|
7062
|
-
* @type {
|
|
7062
|
+
* @type {number}
|
|
7063
7063
|
* @memberof PageableObject
|
|
7064
7064
|
*/
|
|
7065
|
-
'
|
|
7065
|
+
'pageSize'?: number;
|
|
7066
7066
|
/**
|
|
7067
7067
|
*
|
|
7068
|
-
* @type {
|
|
7068
|
+
* @type {SortObject}
|
|
7069
7069
|
* @memberof PageableObject
|
|
7070
7070
|
*/
|
|
7071
|
-
'
|
|
7071
|
+
'sort'?: SortObject;
|
|
7072
7072
|
/**
|
|
7073
7073
|
*
|
|
7074
7074
|
* @type {number}
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|