ob-bms-sdk 0.0.75 → 0.0.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/api/api.ts +44 -2
- package/dist/api/api.d.ts +44 -2
- package/package.json +1 -1
package/api/api.ts
CHANGED
|
@@ -243,6 +243,18 @@ export interface ACRequestResponse {
|
|
|
243
243
|
* @memberof ACRequestResponse
|
|
244
244
|
*/
|
|
245
245
|
'references': string;
|
|
246
|
+
/**
|
|
247
|
+
*
|
|
248
|
+
* @type {string}
|
|
249
|
+
* @memberof ACRequestResponse
|
|
250
|
+
*/
|
|
251
|
+
'reason': string | null;
|
|
252
|
+
/**
|
|
253
|
+
*
|
|
254
|
+
* @type {string}
|
|
255
|
+
* @memberof ACRequestResponse
|
|
256
|
+
*/
|
|
257
|
+
'internal_remark': string | null;
|
|
246
258
|
}
|
|
247
259
|
/**
|
|
248
260
|
*
|
|
@@ -291,12 +303,24 @@ export type ACRequestStatusRejected = typeof ACRequestStatusRejected[keyof typeo
|
|
|
291
303
|
* @interface ACRequestUpdateBody
|
|
292
304
|
*/
|
|
293
305
|
export interface ACRequestUpdateBody {
|
|
306
|
+
/**
|
|
307
|
+
*
|
|
308
|
+
* @type {string}
|
|
309
|
+
* @memberof ACRequestUpdateBody
|
|
310
|
+
*/
|
|
311
|
+
'internal_remark'?: string;
|
|
312
|
+
/**
|
|
313
|
+
*
|
|
314
|
+
* @type {string}
|
|
315
|
+
* @memberof ACRequestUpdateBody
|
|
316
|
+
*/
|
|
317
|
+
'reason'?: string;
|
|
294
318
|
/**
|
|
295
319
|
*
|
|
296
320
|
* @type {ACRequestUpdateBodyStatus}
|
|
297
321
|
* @memberof ACRequestUpdateBody
|
|
298
322
|
*/
|
|
299
|
-
'status'
|
|
323
|
+
'status'?: ACRequestUpdateBodyStatus;
|
|
300
324
|
}
|
|
301
325
|
/**
|
|
302
326
|
*
|
|
@@ -875,6 +899,12 @@ export interface IssueTypeRequest {
|
|
|
875
899
|
* @interface IssueTypeUpdate
|
|
876
900
|
*/
|
|
877
901
|
export interface IssueTypeUpdate {
|
|
902
|
+
/**
|
|
903
|
+
*
|
|
904
|
+
* @type {string}
|
|
905
|
+
* @memberof IssueTypeUpdate
|
|
906
|
+
*/
|
|
907
|
+
'deleted_at'?: string;
|
|
878
908
|
/**
|
|
879
909
|
*
|
|
880
910
|
* @type {object}
|
|
@@ -1891,6 +1921,12 @@ export interface ServiceRequestBody {
|
|
|
1891
1921
|
* @interface ServiceRequestData
|
|
1892
1922
|
*/
|
|
1893
1923
|
export interface ServiceRequestData {
|
|
1924
|
+
/**
|
|
1925
|
+
*
|
|
1926
|
+
* @type {string}
|
|
1927
|
+
* @memberof ServiceRequestData
|
|
1928
|
+
*/
|
|
1929
|
+
'internal_remark': string | null;
|
|
1894
1930
|
/**
|
|
1895
1931
|
*
|
|
1896
1932
|
* @type {string}
|
|
@@ -2056,12 +2092,18 @@ export type ServiceRequestStatusInProgress = typeof ServiceRequestStatusInProgre
|
|
|
2056
2092
|
* @interface ServiceRequestsUpdateRequestBody
|
|
2057
2093
|
*/
|
|
2058
2094
|
export interface ServiceRequestsUpdateRequestBody {
|
|
2095
|
+
/**
|
|
2096
|
+
*
|
|
2097
|
+
* @type {string}
|
|
2098
|
+
* @memberof ServiceRequestsUpdateRequestBody
|
|
2099
|
+
*/
|
|
2100
|
+
'internal_remark'?: string;
|
|
2059
2101
|
/**
|
|
2060
2102
|
*
|
|
2061
2103
|
* @type {ServiceRequestsUpdateRequestBodyStatus}
|
|
2062
2104
|
* @memberof ServiceRequestsUpdateRequestBody
|
|
2063
2105
|
*/
|
|
2064
|
-
'status'
|
|
2106
|
+
'status'?: ServiceRequestsUpdateRequestBodyStatus;
|
|
2065
2107
|
}
|
|
2066
2108
|
/**
|
|
2067
2109
|
*
|
package/dist/api/api.d.ts
CHANGED
|
@@ -231,6 +231,18 @@ export interface ACRequestResponse {
|
|
|
231
231
|
* @memberof ACRequestResponse
|
|
232
232
|
*/
|
|
233
233
|
'references': string;
|
|
234
|
+
/**
|
|
235
|
+
*
|
|
236
|
+
* @type {string}
|
|
237
|
+
* @memberof ACRequestResponse
|
|
238
|
+
*/
|
|
239
|
+
'reason': string | null;
|
|
240
|
+
/**
|
|
241
|
+
*
|
|
242
|
+
* @type {string}
|
|
243
|
+
* @memberof ACRequestResponse
|
|
244
|
+
*/
|
|
245
|
+
'internal_remark': string | null;
|
|
234
246
|
}
|
|
235
247
|
/**
|
|
236
248
|
*
|
|
@@ -267,12 +279,24 @@ export type ACRequestStatusRejected = typeof ACRequestStatusRejected[keyof typeo
|
|
|
267
279
|
* @interface ACRequestUpdateBody
|
|
268
280
|
*/
|
|
269
281
|
export interface ACRequestUpdateBody {
|
|
282
|
+
/**
|
|
283
|
+
*
|
|
284
|
+
* @type {string}
|
|
285
|
+
* @memberof ACRequestUpdateBody
|
|
286
|
+
*/
|
|
287
|
+
'internal_remark'?: string;
|
|
288
|
+
/**
|
|
289
|
+
*
|
|
290
|
+
* @type {string}
|
|
291
|
+
* @memberof ACRequestUpdateBody
|
|
292
|
+
*/
|
|
293
|
+
'reason'?: string;
|
|
270
294
|
/**
|
|
271
295
|
*
|
|
272
296
|
* @type {ACRequestUpdateBodyStatus}
|
|
273
297
|
* @memberof ACRequestUpdateBody
|
|
274
298
|
*/
|
|
275
|
-
'status'
|
|
299
|
+
'status'?: ACRequestUpdateBodyStatus;
|
|
276
300
|
}
|
|
277
301
|
/**
|
|
278
302
|
*
|
|
@@ -859,6 +883,12 @@ export interface IssueTypeRequest {
|
|
|
859
883
|
* @interface IssueTypeUpdate
|
|
860
884
|
*/
|
|
861
885
|
export interface IssueTypeUpdate {
|
|
886
|
+
/**
|
|
887
|
+
*
|
|
888
|
+
* @type {string}
|
|
889
|
+
* @memberof IssueTypeUpdate
|
|
890
|
+
*/
|
|
891
|
+
'deleted_at'?: string;
|
|
862
892
|
/**
|
|
863
893
|
*
|
|
864
894
|
* @type {object}
|
|
@@ -1860,6 +1890,12 @@ export interface ServiceRequestBody {
|
|
|
1860
1890
|
* @interface ServiceRequestData
|
|
1861
1891
|
*/
|
|
1862
1892
|
export interface ServiceRequestData {
|
|
1893
|
+
/**
|
|
1894
|
+
*
|
|
1895
|
+
* @type {string}
|
|
1896
|
+
* @memberof ServiceRequestData
|
|
1897
|
+
*/
|
|
1898
|
+
'internal_remark': string | null;
|
|
1863
1899
|
/**
|
|
1864
1900
|
*
|
|
1865
1901
|
* @type {string}
|
|
@@ -2011,12 +2047,18 @@ export type ServiceRequestStatusInProgress = typeof ServiceRequestStatusInProgre
|
|
|
2011
2047
|
* @interface ServiceRequestsUpdateRequestBody
|
|
2012
2048
|
*/
|
|
2013
2049
|
export interface ServiceRequestsUpdateRequestBody {
|
|
2050
|
+
/**
|
|
2051
|
+
*
|
|
2052
|
+
* @type {string}
|
|
2053
|
+
* @memberof ServiceRequestsUpdateRequestBody
|
|
2054
|
+
*/
|
|
2055
|
+
'internal_remark'?: string;
|
|
2014
2056
|
/**
|
|
2015
2057
|
*
|
|
2016
2058
|
* @type {ServiceRequestsUpdateRequestBodyStatus}
|
|
2017
2059
|
* @memberof ServiceRequestsUpdateRequestBody
|
|
2018
2060
|
*/
|
|
2019
|
-
'status'
|
|
2061
|
+
'status'?: ServiceRequestsUpdateRequestBodyStatus;
|
|
2020
2062
|
}
|
|
2021
2063
|
/**
|
|
2022
2064
|
*
|