@otr-app/shared-backend-generated-client 2.3.75 → 2.3.76
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/angular/api/dashboardController.service.ts +0 -136
- package/dist/otrBackendService.js +0 -74
- package/dist/otrBackendService.min.js +5 -5
- package/dist/typescript/api/DashboardControllerApi.d.ts +0 -12
- package/dist/typescript/api/DashboardControllerApi.js +0 -50
- package/dist/typescript/api/DashboardControllerApi.ts +0 -58
- package/package.json +1 -1
|
@@ -24,24 +24,12 @@ export declare class DashboardControllerApi {
|
|
|
24
24
|
* @param request request
|
|
25
25
|
*/
|
|
26
26
|
getBookingsUsingPOST(request: models.GetBookingsRequest, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetBookingsResponse>;
|
|
27
|
-
/**
|
|
28
|
-
*
|
|
29
|
-
* @summary getRegisteredUsers
|
|
30
|
-
* @param graphRequest graphRequest
|
|
31
|
-
*/
|
|
32
|
-
getRegisteredUsersUsingPOST(graphRequest: models.GraphRequest, extraHttpRequestParams?: any): ng.IHttpPromise<models.SqlResponse>;
|
|
33
27
|
/**
|
|
34
28
|
*
|
|
35
29
|
* @summary getUserRegistrations
|
|
36
30
|
* @param request request
|
|
37
31
|
*/
|
|
38
32
|
getUserRegistrationsUsingPOST(request: models.GetUserRegistrationsRequest, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetUserRegistrationsResponse>;
|
|
39
|
-
/**
|
|
40
|
-
*
|
|
41
|
-
* @summary listCasesByStatus
|
|
42
|
-
* @param graphRequest graphRequest
|
|
43
|
-
*/
|
|
44
|
-
listCasesByStatusUsingPOST(graphRequest: models.GraphRequest, extraHttpRequestParams?: any): ng.IHttpPromise<models.SqlResponse>;
|
|
45
33
|
/**
|
|
46
34
|
*
|
|
47
35
|
* @summary listCitations
|
|
@@ -48,31 +48,6 @@ var DashboardControllerApi = /** @class */ (function () {
|
|
|
48
48
|
}
|
|
49
49
|
return this.$http(httpRequestParams);
|
|
50
50
|
};
|
|
51
|
-
/**
|
|
52
|
-
*
|
|
53
|
-
* @summary getRegisteredUsers
|
|
54
|
-
* @param graphRequest graphRequest
|
|
55
|
-
*/
|
|
56
|
-
DashboardControllerApi.prototype.getRegisteredUsersUsingPOST = function (graphRequest, extraHttpRequestParams) {
|
|
57
|
-
var localVarPath = this.basePath + '/api/v1/console/users';
|
|
58
|
-
var queryParameters = {};
|
|
59
|
-
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
60
|
-
// verify required parameter 'graphRequest' is not null or undefined
|
|
61
|
-
if (graphRequest === null || graphRequest === undefined) {
|
|
62
|
-
throw new Error('Required parameter graphRequest was null or undefined when calling getRegisteredUsersUsingPOST.');
|
|
63
|
-
}
|
|
64
|
-
var httpRequestParams = {
|
|
65
|
-
method: 'POST',
|
|
66
|
-
url: localVarPath,
|
|
67
|
-
data: graphRequest,
|
|
68
|
-
params: queryParameters,
|
|
69
|
-
headers: headerParams
|
|
70
|
-
};
|
|
71
|
-
if (extraHttpRequestParams) {
|
|
72
|
-
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
73
|
-
}
|
|
74
|
-
return this.$http(httpRequestParams);
|
|
75
|
-
};
|
|
76
51
|
/**
|
|
77
52
|
*
|
|
78
53
|
* @summary getUserRegistrations
|
|
@@ -98,31 +73,6 @@ var DashboardControllerApi = /** @class */ (function () {
|
|
|
98
73
|
}
|
|
99
74
|
return this.$http(httpRequestParams);
|
|
100
75
|
};
|
|
101
|
-
/**
|
|
102
|
-
*
|
|
103
|
-
* @summary listCasesByStatus
|
|
104
|
-
* @param graphRequest graphRequest
|
|
105
|
-
*/
|
|
106
|
-
DashboardControllerApi.prototype.listCasesByStatusUsingPOST = function (graphRequest, extraHttpRequestParams) {
|
|
107
|
-
var localVarPath = this.basePath + '/api/v1/console/cases/status';
|
|
108
|
-
var queryParameters = {};
|
|
109
|
-
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
110
|
-
// verify required parameter 'graphRequest' is not null or undefined
|
|
111
|
-
if (graphRequest === null || graphRequest === undefined) {
|
|
112
|
-
throw new Error('Required parameter graphRequest was null or undefined when calling listCasesByStatusUsingPOST.');
|
|
113
|
-
}
|
|
114
|
-
var httpRequestParams = {
|
|
115
|
-
method: 'POST',
|
|
116
|
-
url: localVarPath,
|
|
117
|
-
data: graphRequest,
|
|
118
|
-
params: queryParameters,
|
|
119
|
-
headers: headerParams
|
|
120
|
-
};
|
|
121
|
-
if (extraHttpRequestParams) {
|
|
122
|
-
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
123
|
-
}
|
|
124
|
-
return this.$http(httpRequestParams);
|
|
125
|
-
};
|
|
126
76
|
/**
|
|
127
77
|
*
|
|
128
78
|
* @summary listCitations
|
|
@@ -55,35 +55,6 @@ export class DashboardControllerApi {
|
|
|
55
55
|
|
|
56
56
|
return this.$http(httpRequestParams);
|
|
57
57
|
}
|
|
58
|
-
/**
|
|
59
|
-
*
|
|
60
|
-
* @summary getRegisteredUsers
|
|
61
|
-
* @param graphRequest graphRequest
|
|
62
|
-
*/
|
|
63
|
-
public getRegisteredUsersUsingPOST (graphRequest: models.GraphRequest, extraHttpRequestParams?: any ) : ng.IHttpPromise<models.SqlResponse> {
|
|
64
|
-
const localVarPath = this.basePath + '/api/v1/console/users';
|
|
65
|
-
|
|
66
|
-
let queryParameters: any = {};
|
|
67
|
-
let headerParams: any = (<any>Object).assign({}, this.defaultHeaders);
|
|
68
|
-
// verify required parameter 'graphRequest' is not null or undefined
|
|
69
|
-
if (graphRequest === null || graphRequest === undefined) {
|
|
70
|
-
throw new Error('Required parameter graphRequest was null or undefined when calling getRegisteredUsersUsingPOST.');
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
let httpRequestParams: ng.IRequestConfig = {
|
|
74
|
-
method: 'POST',
|
|
75
|
-
url: localVarPath,
|
|
76
|
-
data: graphRequest,
|
|
77
|
-
params: queryParameters,
|
|
78
|
-
headers: headerParams
|
|
79
|
-
};
|
|
80
|
-
|
|
81
|
-
if (extraHttpRequestParams) {
|
|
82
|
-
httpRequestParams = (<any>Object).assign(httpRequestParams, extraHttpRequestParams);
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
return this.$http(httpRequestParams);
|
|
86
|
-
}
|
|
87
58
|
/**
|
|
88
59
|
*
|
|
89
60
|
* @summary getUserRegistrations
|
|
@@ -113,35 +84,6 @@ export class DashboardControllerApi {
|
|
|
113
84
|
|
|
114
85
|
return this.$http(httpRequestParams);
|
|
115
86
|
}
|
|
116
|
-
/**
|
|
117
|
-
*
|
|
118
|
-
* @summary listCasesByStatus
|
|
119
|
-
* @param graphRequest graphRequest
|
|
120
|
-
*/
|
|
121
|
-
public listCasesByStatusUsingPOST (graphRequest: models.GraphRequest, extraHttpRequestParams?: any ) : ng.IHttpPromise<models.SqlResponse> {
|
|
122
|
-
const localVarPath = this.basePath + '/api/v1/console/cases/status';
|
|
123
|
-
|
|
124
|
-
let queryParameters: any = {};
|
|
125
|
-
let headerParams: any = (<any>Object).assign({}, this.defaultHeaders);
|
|
126
|
-
// verify required parameter 'graphRequest' is not null or undefined
|
|
127
|
-
if (graphRequest === null || graphRequest === undefined) {
|
|
128
|
-
throw new Error('Required parameter graphRequest was null or undefined when calling listCasesByStatusUsingPOST.');
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
let httpRequestParams: ng.IRequestConfig = {
|
|
132
|
-
method: 'POST',
|
|
133
|
-
url: localVarPath,
|
|
134
|
-
data: graphRequest,
|
|
135
|
-
params: queryParameters,
|
|
136
|
-
headers: headerParams
|
|
137
|
-
};
|
|
138
|
-
|
|
139
|
-
if (extraHttpRequestParams) {
|
|
140
|
-
httpRequestParams = (<any>Object).assign(httpRequestParams, extraHttpRequestParams);
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
return this.$http(httpRequestParams);
|
|
144
|
-
}
|
|
145
87
|
/**
|
|
146
88
|
*
|
|
147
89
|
* @summary listCitations
|