@ricado/api-client 2.2.0 → 2.3.2
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/ricado.api.client.js +1 -1
- package/lib/Controllers/Packhouse/Site/BinTipBinController.js +267 -0
- package/lib/Controllers/Packhouse/Site/BinTipWeightController.js +267 -0
- package/lib/Controllers/Packhouse/Site/CompacSizerBatchController.js +267 -0
- package/lib/Controllers/Packhouse/Site/CompacSizerOutletProductChangeController.js +267 -0
- package/lib/Controllers/Packhouse/Site/CompacSizerOutletTypeChangeController.js +267 -0
- package/lib/Controllers/Packhouse/Site/CompacSizerPackrunSummaryController.js +267 -0
- package/lib/Controllers/Packhouse/Site/DowntimeEventController.js +267 -0
- package/lib/Controllers/Packhouse/Site/FreshPackPackrunSummaryController.js +267 -0
- package/lib/Controllers/Packhouse/Site/FreshQualityPackrunSummaryController.js +267 -0
- package/lib/Controllers/Packhouse/Site/PackingLineController.js +4 -0
- package/lib/Controllers/Packhouse/Site/PackrunController.js +267 -0
- package/lib/Controllers/Packhouse/Site/RejectBinController.js +267 -0
- package/lib/Controllers/Packhouse/Site/RejectBinWeightController.js +267 -0
- package/lib/Controllers/Packhouse/Site/ShiftController.js +267 -0
- package/lib/Controllers/Packhouse/Site/ShiftFocusMeetingController.js +267 -0
- package/lib/Controllers/Packhouse/Site/ShiftHourlyEntryController.js +267 -0
- package/lib/Controllers/Packhouse/Site/ShiftQualitySummaryController.js +267 -0
- package/lib/Controllers/Packhouse/Site/ShiftTaskController.js +267 -0
- package/lib/Controllers/Site/PermanentObjectDataController.js +267 -0
- package/lib/DataItems/PointValueItem.js +3 -3
- package/lib/Models/AccountPolicyModel.js +7 -7
- package/lib/Models/ApiAccountModel.js +7 -7
- package/lib/Models/CompanyModel.js +5 -5
- package/lib/Models/FirebaseTokenModel.js +8 -8
- package/lib/Models/Packhouse/Site/BinTipBinModel.js +13 -13
- package/lib/Models/Packhouse/Site/BinTipWeightModel.js +9 -9
- package/lib/Models/Packhouse/Site/CompacSizerBatchModel.js +8 -8
- package/lib/Models/Packhouse/Site/CompacSizerModel.js +14 -14
- package/lib/Models/Packhouse/Site/CompacSizerOutletProductChangeModel.js +10 -10
- package/lib/Models/Packhouse/Site/CompacSizerOutletTypeChangeModel.js +8 -8
- package/lib/Models/Packhouse/Site/CompacSizerOutletTypeModel.js +6 -6
- package/lib/Models/Packhouse/Site/CompacSizerPackrunSummaryModel.js +12 -12
- package/lib/Models/Packhouse/Site/DowntimeEventModel.js +14 -14
- package/lib/Models/Packhouse/Site/FreshPackPackrunSummaryModel.js +8 -8
- package/lib/Models/Packhouse/Site/FreshQualityPackrunSummaryModel.js +10 -10
- package/lib/Models/Packhouse/Site/GrowingMethodModel.js +6 -6
- package/lib/Models/Packhouse/Site/PackTypeModel.js +8 -8
- package/lib/Models/Packhouse/Site/PackingLineModel.js +60 -16
- package/lib/Models/Packhouse/Site/PackrunModel.js +18 -18
- package/lib/Models/Packhouse/Site/RejectBinModel.js +9 -9
- package/lib/Models/Packhouse/Site/RejectBinScaleModel.js +23 -23
- package/lib/Models/Packhouse/Site/RejectBinWeightModel.js +10 -10
- package/lib/Models/Packhouse/Site/ShiftFocusMeetingModel.js +12 -12
- package/lib/Models/Packhouse/Site/ShiftHourlyEntryModel.js +44 -44
- package/lib/Models/Packhouse/Site/ShiftModel.js +26 -19
- package/lib/Models/Packhouse/Site/ShiftQualitySummaryModel.js +14 -14
- package/lib/Models/Packhouse/Site/ShiftTaskModel.js +14 -14
- package/lib/Models/Packhouse/Site/SoftSortBeltModel.js +7 -7
- package/lib/Models/Packhouse/Site/VarietyModel.js +8 -8
- package/lib/Models/RTUModel.js +6 -6
- package/lib/Models/RTUPluginModel.js +5 -5
- package/lib/Models/Site/AlarmGroupModel.js +7 -7
- package/lib/Models/Site/AlarmModel.js +17 -17
- package/lib/Models/Site/DefinitionModel.js +6 -6
- package/lib/Models/Site/PermanentObjectDataModel.js +8 -8
- package/lib/Models/Site/PermanentObjectModel.js +7 -7
- package/lib/Models/Site/PointModel.js +11 -11
- package/lib/Models/Site/TemporaryObjectModel.js +6 -6
- package/lib/Models/SiteModel.js +6 -6
- package/lib/Models/TokenModel.js +10 -10
- package/lib/Models/UserAccountActionTokenModel.js +11 -11
- package/lib/Models/UserAccountModel.js +10 -10
- package/lib/PackageVersion.js +1 -1
- package/lib/Points.js +22 -12
- package/lib/WebSocketHelper.js +29 -13
- package/lib/index.d.ts +715 -361
- package/lib/index.js +3 -3
- package/package.json +1 -1
- package/src/Controllers/Packhouse/Site/BinTipBinController.js +355 -0
- package/src/Controllers/Packhouse/Site/BinTipWeightController.js +355 -0
- package/src/Controllers/Packhouse/Site/CompacSizerBatchController.js +355 -0
- package/src/Controllers/Packhouse/Site/CompacSizerOutletProductChangeController.js +355 -0
- package/src/Controllers/Packhouse/Site/CompacSizerOutletTypeChangeController.js +355 -0
- package/src/Controllers/Packhouse/Site/CompacSizerPackrunSummaryController.js +355 -0
- package/src/Controllers/Packhouse/Site/DowntimeEventController.js +355 -0
- package/src/Controllers/Packhouse/Site/FreshPackPackrunSummaryController.js +355 -0
- package/src/Controllers/Packhouse/Site/FreshQualityPackrunSummaryController.js +355 -0
- package/src/Controllers/Packhouse/Site/PackingLineController.js +4 -0
- package/src/Controllers/Packhouse/Site/PackrunController.js +355 -0
- package/src/Controllers/Packhouse/Site/RejectBinController.js +355 -0
- package/src/Controllers/Packhouse/Site/RejectBinWeightController.js +355 -0
- package/src/Controllers/Packhouse/Site/ShiftController.js +355 -0
- package/src/Controllers/Packhouse/Site/ShiftFocusMeetingController.js +355 -0
- package/src/Controllers/Packhouse/Site/ShiftHourlyEntryController.js +355 -0
- package/src/Controllers/Packhouse/Site/ShiftQualitySummaryController.js +355 -0
- package/src/Controllers/Packhouse/Site/ShiftTaskController.js +355 -0
- package/src/Controllers/Site/PermanentObjectDataController.js +355 -0
- package/src/DataItems/PointValueItem.js +3 -3
- package/src/Models/AccountPolicyModel.js +7 -7
- package/src/Models/ApiAccountModel.js +7 -7
- package/src/Models/CompanyModel.js +5 -5
- package/src/Models/FirebaseTokenModel.js +8 -8
- package/src/Models/Packhouse/Site/BinTipBinModel.js +13 -13
- package/src/Models/Packhouse/Site/BinTipWeightModel.js +9 -9
- package/src/Models/Packhouse/Site/CompacSizerBatchModel.js +8 -8
- package/src/Models/Packhouse/Site/CompacSizerModel.js +14 -14
- package/src/Models/Packhouse/Site/CompacSizerOutletProductChangeModel.js +10 -10
- package/src/Models/Packhouse/Site/CompacSizerOutletTypeChangeModel.js +8 -8
- package/src/Models/Packhouse/Site/CompacSizerOutletTypeModel.js +6 -6
- package/src/Models/Packhouse/Site/CompacSizerPackrunSummaryModel.js +12 -12
- package/src/Models/Packhouse/Site/DowntimeEventModel.js +14 -14
- package/src/Models/Packhouse/Site/FreshPackPackrunSummaryModel.js +8 -8
- package/src/Models/Packhouse/Site/FreshQualityPackrunSummaryModel.js +10 -10
- package/src/Models/Packhouse/Site/GrowingMethodModel.js +6 -6
- package/src/Models/Packhouse/Site/PackTypeModel.js +8 -8
- package/src/Models/Packhouse/Site/PackingLineModel.js +66 -16
- package/src/Models/Packhouse/Site/PackrunModel.js +18 -18
- package/src/Models/Packhouse/Site/RejectBinModel.js +9 -9
- package/src/Models/Packhouse/Site/RejectBinScaleModel.js +23 -23
- package/src/Models/Packhouse/Site/RejectBinWeightModel.js +10 -10
- package/src/Models/Packhouse/Site/ShiftFocusMeetingModel.js +12 -12
- package/src/Models/Packhouse/Site/ShiftHourlyEntryModel.js +44 -44
- package/src/Models/Packhouse/Site/ShiftModel.js +29 -19
- package/src/Models/Packhouse/Site/ShiftQualitySummaryModel.js +14 -14
- package/src/Models/Packhouse/Site/ShiftTaskModel.js +14 -14
- package/src/Models/Packhouse/Site/SoftSortBeltModel.js +7 -7
- package/src/Models/Packhouse/Site/VarietyModel.js +8 -8
- package/src/Models/RTUModel.js +6 -6
- package/src/Models/RTUPluginModel.js +5 -5
- package/src/Models/Site/AlarmGroupModel.js +7 -7
- package/src/Models/Site/AlarmModel.js +17 -17
- package/src/Models/Site/DefinitionModel.js +6 -6
- package/src/Models/Site/PermanentObjectDataModel.js +8 -8
- package/src/Models/Site/PermanentObjectModel.js +7 -7
- package/src/Models/Site/PointModel.js +11 -11
- package/src/Models/Site/TemporaryObjectModel.js +6 -6
- package/src/Models/SiteModel.js +6 -6
- package/src/Models/TokenModel.js +10 -10
- package/src/Models/UserAccountActionTokenModel.js +11 -11
- package/src/Models/UserAccountModel.js +10 -10
- package/src/PackageVersion.js +1 -1
- package/src/Points.js +24 -12
- package/src/WebSocketHelper.js +34 -13
- package/src/index.js +3 -3
- package/types/tslint.json +2 -1
package/lib/index.d.ts
CHANGED
|
@@ -123,7 +123,7 @@ declare module '@ricado/api-client' {
|
|
|
123
123
|
* @param {string} [token] An optional JSON Web Token to Initialize the API with.
|
|
124
124
|
* @throws {Error} The JSON Web Token provided was not valid
|
|
125
125
|
*/
|
|
126
|
-
export function initialize(token?: string): void;
|
|
126
|
+
export function initialize(token?: string | undefined): void;
|
|
127
127
|
/**
|
|
128
128
|
* Generates a new JWT for a User Account
|
|
129
129
|
*
|
|
@@ -134,7 +134,7 @@ declare module '@ricado/api-client' {
|
|
|
134
134
|
* @param {string} [providerId] The Service Provider ID
|
|
135
135
|
* @return {Promise<string>}
|
|
136
136
|
*/
|
|
137
|
-
export function userAccountLogin(email: string, password: string, providerId?: string): Promise<string>;
|
|
137
|
+
export function userAccountLogin(email: string, password: string, providerId?: string | undefined): Promise<string>;
|
|
138
138
|
/**
|
|
139
139
|
* Generates a new JWT for an API Account
|
|
140
140
|
*
|
|
@@ -145,7 +145,7 @@ declare module '@ricado/api-client' {
|
|
|
145
145
|
* @param {string} [providerId] - The Service Provider ID
|
|
146
146
|
* @return {Promise<string>}
|
|
147
147
|
*/
|
|
148
|
-
export function apiAccountLogin(key: string, secret: string, providerId?: string): Promise<string>;
|
|
148
|
+
export function apiAccountLogin(key: string, secret: string, providerId?: string | undefined): Promise<string>;
|
|
149
149
|
/**
|
|
150
150
|
* Unlocks an existing JWT using a Pin Code
|
|
151
151
|
*
|
|
@@ -192,9 +192,9 @@ declare module '@ricado/api-client' {
|
|
|
192
192
|
* The JSON Web Token for all Authenticated API Calls
|
|
193
193
|
*
|
|
194
194
|
* @private
|
|
195
|
-
* @type {string}
|
|
195
|
+
* @type {string|undefined}
|
|
196
196
|
*/
|
|
197
|
-
export var JWT: string;
|
|
197
|
+
export var JWT: string | undefined;
|
|
198
198
|
/**
|
|
199
199
|
* The Base URL for the RICADO Gen 4 API
|
|
200
200
|
*
|
|
@@ -251,7 +251,7 @@ declare module '@ricado/api-client/RequestHelper' {
|
|
|
251
251
|
*/
|
|
252
252
|
static getRequest(url: string, queryParameters?: {
|
|
253
253
|
[x: string]: any;
|
|
254
|
-
}): Promise<any>;
|
|
254
|
+
} | undefined): Promise<any>;
|
|
255
255
|
/**
|
|
256
256
|
* Perform a PUT Request
|
|
257
257
|
*
|
|
@@ -293,7 +293,7 @@ declare module '@ricado/api-client/RequestHelper' {
|
|
|
293
293
|
*/
|
|
294
294
|
static deleteRequest(url: string, queryParameters?: {
|
|
295
295
|
[x: string]: any;
|
|
296
|
-
}): Promise<boolean>;
|
|
296
|
+
} | undefined): Promise<boolean>;
|
|
297
297
|
/**
|
|
298
298
|
* Performs a Request (fetch)
|
|
299
299
|
*
|
|
@@ -307,7 +307,7 @@ declare module '@ricado/api-client/RequestHelper' {
|
|
|
307
307
|
*/
|
|
308
308
|
static performRequest(method: string, url: string, data?: any, queryParameters?: {
|
|
309
309
|
[x: string]: any;
|
|
310
|
-
}): Promise<any>;
|
|
310
|
+
} | undefined): Promise<any>;
|
|
311
311
|
}
|
|
312
312
|
}
|
|
313
313
|
|
|
@@ -334,7 +334,7 @@ declare module '@ricado/api-client/WebSocketHelper' {
|
|
|
334
334
|
* @public
|
|
335
335
|
* @param {string} [key] - The Site ID or RTU ID Key (e.g. site.2 or rtu.1200)
|
|
336
336
|
*/
|
|
337
|
-
static subscribe(key?: string): void;
|
|
337
|
+
static subscribe(key?: string | undefined): void;
|
|
338
338
|
/**
|
|
339
339
|
* Unsubscribe from a Site or RTU for Events
|
|
340
340
|
*
|
|
@@ -342,7 +342,7 @@ declare module '@ricado/api-client/WebSocketHelper' {
|
|
|
342
342
|
* @public
|
|
343
343
|
* @param {string} [key] - The Site ID or RTU ID Key (e.g. site.2 or rtu.1200)
|
|
344
344
|
*/
|
|
345
|
-
static unsubscribe(key?: string): void;
|
|
345
|
+
static unsubscribe(key?: string | undefined): void;
|
|
346
346
|
/**
|
|
347
347
|
* Register Events Handler
|
|
348
348
|
*
|
|
@@ -366,7 +366,7 @@ declare module '@ricado/api-client/WebSocketHelper' {
|
|
|
366
366
|
/**
|
|
367
367
|
* The Events Callback
|
|
368
368
|
*/
|
|
369
|
-
export type eventCallback = (...args: any
|
|
369
|
+
export type eventCallback = (...args: any) => void;
|
|
370
370
|
}
|
|
371
371
|
}
|
|
372
372
|
|
|
@@ -482,7 +482,7 @@ declare module '@ricado/api-client/Points' {
|
|
|
482
482
|
/**
|
|
483
483
|
* The Events Callback
|
|
484
484
|
*/
|
|
485
|
-
export type eventCallback = (...args: any
|
|
485
|
+
export type eventCallback = (...args: any) => void;
|
|
486
486
|
/**
|
|
487
487
|
* The Read Points Callback
|
|
488
488
|
*/
|
|
@@ -765,7 +765,7 @@ declare module '@ricado/api-client/Controllers/AccountPolicyController' {
|
|
|
765
765
|
* @param {AccountPolicyController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
766
766
|
* @return {Promise<AccountPolicyModel[]>}
|
|
767
767
|
*/
|
|
768
|
-
static getAll(queryParameters?: AccountPolicyController.GetAllQueryParameters): Promise<AccountPolicyModel[]>;
|
|
768
|
+
static getAll(queryParameters?: AccountPolicyController.GetAllQueryParameters | undefined): Promise<AccountPolicyModel[]>;
|
|
769
769
|
/**
|
|
770
770
|
* Create a Account Policy [POST /account-policies]
|
|
771
771
|
*
|
|
@@ -956,7 +956,7 @@ declare module '@ricado/api-client/Controllers/ApiAccountController' {
|
|
|
956
956
|
* @param {ApiAccountController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
957
957
|
* @return {Promise<ApiAccountModel[]>}
|
|
958
958
|
*/
|
|
959
|
-
static getAll(queryParameters?: ApiAccountController.GetAllQueryParameters): Promise<ApiAccountModel[]>;
|
|
959
|
+
static getAll(queryParameters?: ApiAccountController.GetAllQueryParameters | undefined): Promise<ApiAccountModel[]>;
|
|
960
960
|
/**
|
|
961
961
|
* Create a API Account [POST /api-accounts]
|
|
962
962
|
*
|
|
@@ -1055,7 +1055,7 @@ declare module '@ricado/api-client/Controllers/CompanyController' {
|
|
|
1055
1055
|
* @param {CompanyController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
1056
1056
|
* @return {Promise<CompanyModel[]>}
|
|
1057
1057
|
*/
|
|
1058
|
-
static getAll(queryParameters?: CompanyController.GetAllQueryParameters): Promise<CompanyModel[]>;
|
|
1058
|
+
static getAll(queryParameters?: CompanyController.GetAllQueryParameters | undefined): Promise<CompanyModel[]>;
|
|
1059
1059
|
/**
|
|
1060
1060
|
* Create a Company [POST /companies]
|
|
1061
1061
|
*
|
|
@@ -1154,7 +1154,7 @@ declare module '@ricado/api-client/Controllers/FirebaseTokenController' {
|
|
|
1154
1154
|
* @param {FirebaseTokenController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
1155
1155
|
* @return {Promise<FirebaseTokenModel[]>}
|
|
1156
1156
|
*/
|
|
1157
|
-
static getAll(queryParameters?: FirebaseTokenController.GetAllQueryParameters): Promise<FirebaseTokenModel[]>;
|
|
1157
|
+
static getAll(queryParameters?: FirebaseTokenController.GetAllQueryParameters | undefined): Promise<FirebaseTokenModel[]>;
|
|
1158
1158
|
/**
|
|
1159
1159
|
* Create a Firebase Token [POST /firebase-tokens]
|
|
1160
1160
|
*
|
|
@@ -1285,7 +1285,7 @@ declare module '@ricado/api-client/Controllers/RTUController' {
|
|
|
1285
1285
|
* @param {RTUController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
1286
1286
|
* @return {Promise<RTUModel[]>}
|
|
1287
1287
|
*/
|
|
1288
|
-
static getAll(queryParameters?: RTUController.GetAllQueryParameters): Promise<RTUModel[]>;
|
|
1288
|
+
static getAll(queryParameters?: RTUController.GetAllQueryParameters | undefined): Promise<RTUModel[]>;
|
|
1289
1289
|
/**
|
|
1290
1290
|
* Create a RTU [POST /rtus]
|
|
1291
1291
|
*
|
|
@@ -1392,7 +1392,7 @@ declare module '@ricado/api-client/Controllers/RTUPluginController' {
|
|
|
1392
1392
|
* @param {RTUPluginController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
1393
1393
|
* @return {Promise<RTUPluginModel[]>}
|
|
1394
1394
|
*/
|
|
1395
|
-
static getAll(queryParameters?: RTUPluginController.GetAllQueryParameters): Promise<RTUPluginModel[]>;
|
|
1395
|
+
static getAll(queryParameters?: RTUPluginController.GetAllQueryParameters | undefined): Promise<RTUPluginModel[]>;
|
|
1396
1396
|
/**
|
|
1397
1397
|
* Create a RTU Plugin [POST /rtu-plugins]
|
|
1398
1398
|
*
|
|
@@ -1491,7 +1491,7 @@ declare module '@ricado/api-client/Controllers/SiteController' {
|
|
|
1491
1491
|
* @param {SiteController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
1492
1492
|
* @return {Promise<SiteModel[]>}
|
|
1493
1493
|
*/
|
|
1494
|
-
static getAll(queryParameters?: SiteController.GetAllQueryParameters): Promise<SiteModel[]>;
|
|
1494
|
+
static getAll(queryParameters?: SiteController.GetAllQueryParameters | undefined): Promise<SiteModel[]>;
|
|
1495
1495
|
/**
|
|
1496
1496
|
* Create a Site [POST /sites]
|
|
1497
1497
|
*
|
|
@@ -1663,7 +1663,7 @@ declare module '@ricado/api-client/Controllers/TokenController' {
|
|
|
1663
1663
|
* @param {TokenController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
1664
1664
|
* @return {Promise<TokenModel[]>}
|
|
1665
1665
|
*/
|
|
1666
|
-
static getAll(queryParameters?: TokenController.GetAllQueryParameters): Promise<TokenModel[]>;
|
|
1666
|
+
static getAll(queryParameters?: TokenController.GetAllQueryParameters | undefined): Promise<TokenModel[]>;
|
|
1667
1667
|
}
|
|
1668
1668
|
namespace TokenController {
|
|
1669
1669
|
/**
|
|
@@ -1689,7 +1689,7 @@ declare module '@ricado/api-client/Controllers/TokenController' {
|
|
|
1689
1689
|
/**
|
|
1690
1690
|
* When the last API call using this Token was made
|
|
1691
1691
|
*/
|
|
1692
|
-
activityTimestamp?: Date;
|
|
1692
|
+
activityTimestamp?: Date | null;
|
|
1693
1693
|
};
|
|
1694
1694
|
/**
|
|
1695
1695
|
* A **PinCodeUnlock** Type
|
|
@@ -1778,7 +1778,7 @@ declare module '@ricado/api-client/Controllers/UserAccountActionTokenController'
|
|
|
1778
1778
|
* @param {UserAccountActionTokenController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
1779
1779
|
* @return {Promise<UserAccountActionTokenModel[]>}
|
|
1780
1780
|
*/
|
|
1781
|
-
static getAll(queryParameters?: UserAccountActionTokenController.GetAllQueryParameters): Promise<UserAccountActionTokenModel[]>;
|
|
1781
|
+
static getAll(queryParameters?: UserAccountActionTokenController.GetAllQueryParameters | undefined): Promise<UserAccountActionTokenModel[]>;
|
|
1782
1782
|
/**
|
|
1783
1783
|
* Create a User Account Action Token [POST /user-action-tokens]
|
|
1784
1784
|
*
|
|
@@ -1925,15 +1925,15 @@ declare module '@ricado/api-client/Controllers/UserAccountActionTokenController'
|
|
|
1925
1925
|
/**
|
|
1926
1926
|
* When the last API call using this Action Token was made
|
|
1927
1927
|
*/
|
|
1928
|
-
activityTimestamp?: Date;
|
|
1928
|
+
activityTimestamp?: Date | null;
|
|
1929
1929
|
/**
|
|
1930
1930
|
* When the Action was Completed
|
|
1931
1931
|
*/
|
|
1932
|
-
completedTimestamp?: Date;
|
|
1932
|
+
completedTimestamp?: Date | null;
|
|
1933
1933
|
/**
|
|
1934
1934
|
* When the Action Email was Sent
|
|
1935
1935
|
*/
|
|
1936
|
-
emailTimestamp?: Date;
|
|
1936
|
+
emailTimestamp?: Date | null;
|
|
1937
1937
|
};
|
|
1938
1938
|
/**
|
|
1939
1939
|
* The Update Data for a User Account Action Token
|
|
@@ -1942,15 +1942,15 @@ declare module '@ricado/api-client/Controllers/UserAccountActionTokenController'
|
|
|
1942
1942
|
/**
|
|
1943
1943
|
* When the last API call using this Action Token was made
|
|
1944
1944
|
*/
|
|
1945
|
-
activityTimestamp?: Date;
|
|
1945
|
+
activityTimestamp?: Date | null;
|
|
1946
1946
|
/**
|
|
1947
1947
|
* When the Action was Completed
|
|
1948
1948
|
*/
|
|
1949
|
-
completedTimestamp?: Date;
|
|
1949
|
+
completedTimestamp?: Date | null;
|
|
1950
1950
|
/**
|
|
1951
1951
|
* When the Action Email was Sent
|
|
1952
1952
|
*/
|
|
1953
|
-
emailTimestamp?: Date;
|
|
1953
|
+
emailTimestamp?: Date | null;
|
|
1954
1954
|
};
|
|
1955
1955
|
}
|
|
1956
1956
|
import UserAccountActionTokenModel from "@ricado/api-client/Models/UserAccountActionTokenModel";
|
|
@@ -2085,7 +2085,7 @@ declare module '@ricado/api-client/Controllers/UserAccountController' {
|
|
|
2085
2085
|
* @param {UserAccountController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
2086
2086
|
* @return {Promise<UserAccountModel[]>}
|
|
2087
2087
|
*/
|
|
2088
|
-
static getAll(queryParameters?: UserAccountController.GetAllQueryParameters): Promise<UserAccountModel[]>;
|
|
2088
|
+
static getAll(queryParameters?: UserAccountController.GetAllQueryParameters | undefined): Promise<UserAccountModel[]>;
|
|
2089
2089
|
/**
|
|
2090
2090
|
* Create a User Account [POST /users]
|
|
2091
2091
|
*
|
|
@@ -2108,11 +2108,11 @@ declare module '@ricado/api-client/Controllers/UserAccountController' {
|
|
|
2108
2108
|
/**
|
|
2109
2109
|
* The User's First Name
|
|
2110
2110
|
*/
|
|
2111
|
-
firstName?: string;
|
|
2111
|
+
firstName?: string | null;
|
|
2112
2112
|
/**
|
|
2113
2113
|
* The User's Last Name
|
|
2114
2114
|
*/
|
|
2115
|
-
lastName?: string;
|
|
2115
|
+
lastName?: string | null;
|
|
2116
2116
|
/**
|
|
2117
2117
|
* The Company this User belongs to
|
|
2118
2118
|
*/
|
|
@@ -2129,11 +2129,11 @@ declare module '@ricado/api-client/Controllers/UserAccountController' {
|
|
|
2129
2129
|
/**
|
|
2130
2130
|
* The User's First Name
|
|
2131
2131
|
*/
|
|
2132
|
-
firstName?: string;
|
|
2132
|
+
firstName?: string | null;
|
|
2133
2133
|
/**
|
|
2134
2134
|
* The User's Last Name
|
|
2135
2135
|
*/
|
|
2136
|
-
lastName?: string;
|
|
2136
|
+
lastName?: string | null;
|
|
2137
2137
|
/**
|
|
2138
2138
|
* The Company this User belongs to
|
|
2139
2139
|
*/
|
|
@@ -2154,11 +2154,11 @@ declare module '@ricado/api-client/Controllers/UserAccountController' {
|
|
|
2154
2154
|
/**
|
|
2155
2155
|
* The User's First Name
|
|
2156
2156
|
*/
|
|
2157
|
-
firstName?: string;
|
|
2157
|
+
firstName?: string | null;
|
|
2158
2158
|
/**
|
|
2159
2159
|
* The User's Last Name
|
|
2160
2160
|
*/
|
|
2161
|
-
lastName?: string;
|
|
2161
|
+
lastName?: string | null;
|
|
2162
2162
|
};
|
|
2163
2163
|
}
|
|
2164
2164
|
import UserAccountModel from "@ricado/api-client/Models/UserAccountModel";
|
|
@@ -3366,7 +3366,7 @@ declare module '@ricado/api-client/Controllers/Site/AlarmController' {
|
|
|
3366
3366
|
* @param {AlarmController.GetOneHistoryQueryParameters} [queryParameters] The Optional Query Parameters
|
|
3367
3367
|
* @return {Promise<Array<AlarmController.AlarmHistoryItem>>}
|
|
3368
3368
|
*/
|
|
3369
|
-
static getOneHistory(siteId: number, id: string, queryParameters?: AlarmController.GetOneHistoryQueryParameters): Promise<Array<AlarmController.AlarmHistoryItem>>;
|
|
3369
|
+
static getOneHistory(siteId: number, id: string, queryParameters?: AlarmController.GetOneHistoryQueryParameters | undefined): Promise<Array<AlarmController.AlarmHistoryItem>>;
|
|
3370
3370
|
/**
|
|
3371
3371
|
* List all Alarms [GET /sites/{siteId}/alarms]
|
|
3372
3372
|
*
|
|
@@ -3376,7 +3376,7 @@ declare module '@ricado/api-client/Controllers/Site/AlarmController' {
|
|
|
3376
3376
|
* @param {AlarmController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
3377
3377
|
* @return {Promise<AlarmModel[]>}
|
|
3378
3378
|
*/
|
|
3379
|
-
static getAll(siteId: number, queryParameters?: AlarmController.GetAllQueryParameters): Promise<AlarmModel[]>;
|
|
3379
|
+
static getAll(siteId: number, queryParameters?: AlarmController.GetAllQueryParameters | undefined): Promise<AlarmModel[]>;
|
|
3380
3380
|
/**
|
|
3381
3381
|
* Create a Alarm [POST /sites/{siteId}/alarms]
|
|
3382
3382
|
*
|
|
@@ -3398,7 +3398,7 @@ declare module '@ricado/api-client/Controllers/Site/AlarmController' {
|
|
|
3398
3398
|
* @param {AlarmController.GetAllHistoryQueryParameters} [queryParameters] The Optional Query Parameters
|
|
3399
3399
|
* @return {Promise<Array<AlarmController.AlarmHistoryItem>>}
|
|
3400
3400
|
*/
|
|
3401
|
-
static getAllHistory(siteId: number, queryParameters?: AlarmController.GetAllHistoryQueryParameters): Promise<Array<AlarmController.AlarmHistoryItem>>;
|
|
3401
|
+
static getAllHistory(siteId: number, queryParameters?: AlarmController.GetAllHistoryQueryParameters | undefined): Promise<Array<AlarmController.AlarmHistoryItem>>;
|
|
3402
3402
|
}
|
|
3403
3403
|
namespace AlarmController {
|
|
3404
3404
|
/**
|
|
@@ -3421,7 +3421,7 @@ declare module '@ricado/api-client/Controllers/Site/AlarmController' {
|
|
|
3421
3421
|
/**
|
|
3422
3422
|
* The RTU this Alarm belongs to
|
|
3423
3423
|
*/
|
|
3424
|
-
rtuId?: number;
|
|
3424
|
+
rtuId?: number | null;
|
|
3425
3425
|
/**
|
|
3426
3426
|
* The Alarm Group this Alarm is a part of
|
|
3427
3427
|
*/
|
|
@@ -3483,7 +3483,7 @@ declare module '@ricado/api-client/Controllers/Site/AlarmController' {
|
|
|
3483
3483
|
/**
|
|
3484
3484
|
* The RTU this Alarm belongs to
|
|
3485
3485
|
*/
|
|
3486
|
-
rtuId?: number;
|
|
3486
|
+
rtuId?: number | null;
|
|
3487
3487
|
/**
|
|
3488
3488
|
* The Alarm Group this Alarm is a part of
|
|
3489
3489
|
*/
|
|
@@ -3503,7 +3503,7 @@ declare module '@ricado/api-client/Controllers/Site/AlarmController' {
|
|
|
3503
3503
|
/**
|
|
3504
3504
|
* The Python Script with the Conditions to Reset this Alarm
|
|
3505
3505
|
*/
|
|
3506
|
-
resetScript?: string;
|
|
3506
|
+
resetScript?: string | null;
|
|
3507
3507
|
/**
|
|
3508
3508
|
* The Delay before this Alarm will Trip in Milliseconds
|
|
3509
3509
|
*/
|
|
@@ -3560,7 +3560,7 @@ declare module '@ricado/api-client/Controllers/Site/AlarmController' {
|
|
|
3560
3560
|
/**
|
|
3561
3561
|
* The Python Script with the Conditions to Reset this Alarm
|
|
3562
3562
|
*/
|
|
3563
|
-
resetScript?: string;
|
|
3563
|
+
resetScript?: string | null;
|
|
3564
3564
|
/**
|
|
3565
3565
|
* The Delay before this Alarm will Trip in Milliseconds
|
|
3566
3566
|
*/
|
|
@@ -3609,7 +3609,7 @@ declare module '@ricado/api-client/Controllers/Site/AlarmController' {
|
|
|
3609
3609
|
/**
|
|
3610
3610
|
* When the Alarm Reset
|
|
3611
3611
|
*/
|
|
3612
|
-
resetTimestamp: Date;
|
|
3612
|
+
resetTimestamp: Date | null;
|
|
3613
3613
|
/**
|
|
3614
3614
|
* The Duration in Seconds that the Alarm was Tripped
|
|
3615
3615
|
*/
|
|
@@ -3667,7 +3667,7 @@ declare module '@ricado/api-client/Controllers/Site/AlarmGroupController' {
|
|
|
3667
3667
|
* @param {AlarmGroupController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
3668
3668
|
* @return {Promise<AlarmGroupModel[]>}
|
|
3669
3669
|
*/
|
|
3670
|
-
static getAll(siteId: number, queryParameters?: AlarmGroupController.GetAllQueryParameters): Promise<AlarmGroupModel[]>;
|
|
3670
|
+
static getAll(siteId: number, queryParameters?: AlarmGroupController.GetAllQueryParameters | undefined): Promise<AlarmGroupModel[]>;
|
|
3671
3671
|
/**
|
|
3672
3672
|
* Create a Alarm Group [POST /sites/{siteId}/alarm-groups]
|
|
3673
3673
|
*
|
|
@@ -3687,7 +3687,7 @@ declare module '@ricado/api-client/Controllers/Site/AlarmGroupController' {
|
|
|
3687
3687
|
/**
|
|
3688
3688
|
* The RTU this Alarm Group belongs to
|
|
3689
3689
|
*/
|
|
3690
|
-
rtuId?: number;
|
|
3690
|
+
rtuId?: number | null;
|
|
3691
3691
|
/**
|
|
3692
3692
|
* The Alarm Group Name
|
|
3693
3693
|
*/
|
|
@@ -3704,7 +3704,7 @@ declare module '@ricado/api-client/Controllers/Site/AlarmGroupController' {
|
|
|
3704
3704
|
/**
|
|
3705
3705
|
* The RTU this Alarm Group belongs to
|
|
3706
3706
|
*/
|
|
3707
|
-
rtuId?: number;
|
|
3707
|
+
rtuId?: number | null;
|
|
3708
3708
|
/**
|
|
3709
3709
|
* The Alarm Group Name
|
|
3710
3710
|
*/
|
|
@@ -3800,7 +3800,7 @@ declare module '@ricado/api-client/Controllers/Site/DefinitionController' {
|
|
|
3800
3800
|
* @param {DefinitionController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
3801
3801
|
* @return {Promise<DefinitionModel[]>}
|
|
3802
3802
|
*/
|
|
3803
|
-
static getAll(siteId: number, queryParameters?: DefinitionController.GetAllQueryParameters): Promise<DefinitionModel[]>;
|
|
3803
|
+
static getAll(siteId: number, queryParameters?: DefinitionController.GetAllQueryParameters | undefined): Promise<DefinitionModel[]>;
|
|
3804
3804
|
/**
|
|
3805
3805
|
* Create a Definition [POST /sites/{siteId}/definitions]
|
|
3806
3806
|
*
|
|
@@ -3908,7 +3908,7 @@ declare module '@ricado/api-client/Controllers/Site/PermanentObjectController' {
|
|
|
3908
3908
|
* @param {PermanentObjectController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
3909
3909
|
* @return {Promise<PermanentObjectModel[]>}
|
|
3910
3910
|
*/
|
|
3911
|
-
static getAll(siteId: number, queryParameters?: PermanentObjectController.GetAllQueryParameters): Promise<PermanentObjectModel[]>;
|
|
3911
|
+
static getAll(siteId: number, queryParameters?: PermanentObjectController.GetAllQueryParameters | undefined): Promise<PermanentObjectModel[]>;
|
|
3912
3912
|
/**
|
|
3913
3913
|
* Create a Permanent Object [POST /sites/{siteId}/permanent-objects]
|
|
3914
3914
|
*
|
|
@@ -3928,7 +3928,7 @@ declare module '@ricado/api-client/Controllers/Site/PermanentObjectController' {
|
|
|
3928
3928
|
/**
|
|
3929
3929
|
* The RTU this Permanent Object belongs to
|
|
3930
3930
|
*/
|
|
3931
|
-
rtuId?: number;
|
|
3931
|
+
rtuId?: number | null;
|
|
3932
3932
|
/**
|
|
3933
3933
|
* The Permanent Object Key Index
|
|
3934
3934
|
*/
|
|
@@ -3945,7 +3945,7 @@ declare module '@ricado/api-client/Controllers/Site/PermanentObjectController' {
|
|
|
3945
3945
|
/**
|
|
3946
3946
|
* The RTU this Permanent Object belongs to
|
|
3947
3947
|
*/
|
|
3948
|
-
rtuId?: number;
|
|
3948
|
+
rtuId?: number | null;
|
|
3949
3949
|
/**
|
|
3950
3950
|
* The Permanent Object Key Index
|
|
3951
3951
|
*/
|
|
@@ -4089,7 +4089,7 @@ declare module '@ricado/api-client/Controllers/Site/PermanentObjectDataControlle
|
|
|
4089
4089
|
* @param {PermanentObjectDataController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
4090
4090
|
* @return {Promise<PermanentObjectDataModel[]>}
|
|
4091
4091
|
*/
|
|
4092
|
-
static getAll(siteId: number, queryParameters?: PermanentObjectDataController.GetAllQueryParameters): Promise<PermanentObjectDataModel[]>;
|
|
4092
|
+
static getAll(siteId: number, queryParameters?: PermanentObjectDataController.GetAllQueryParameters | undefined): Promise<PermanentObjectDataModel[]>;
|
|
4093
4093
|
/**
|
|
4094
4094
|
* Create a Permanent Object Data [POST /sites/{siteId}/permanent-object-data]
|
|
4095
4095
|
*
|
|
@@ -4173,6 +4173,23 @@ declare module '@ricado/api-client/Controllers/Site/PermanentObjectDataControlle
|
|
|
4173
4173
|
*/
|
|
4174
4174
|
data?: any;
|
|
4175
4175
|
};
|
|
4176
|
+
/**
|
|
4177
|
+
* A **UserAccount** Type
|
|
4178
|
+
*/
|
|
4179
|
+
export type UserAccount = {
|
|
4180
|
+
/**
|
|
4181
|
+
* The User Account ID
|
|
4182
|
+
*/
|
|
4183
|
+
id: string | null;
|
|
4184
|
+
/**
|
|
4185
|
+
* The User's First Name
|
|
4186
|
+
*/
|
|
4187
|
+
firstName: string | null;
|
|
4188
|
+
/**
|
|
4189
|
+
* The User's Last Name
|
|
4190
|
+
*/
|
|
4191
|
+
lastName: string | null;
|
|
4192
|
+
};
|
|
4176
4193
|
/**
|
|
4177
4194
|
* A **CommentItem** Type
|
|
4178
4195
|
*/
|
|
@@ -4181,18 +4198,19 @@ declare module '@ricado/api-client/Controllers/Site/PermanentObjectDataControlle
|
|
|
4181
4198
|
* The Comment ID
|
|
4182
4199
|
*/
|
|
4183
4200
|
id: string;
|
|
4201
|
+
userAccount: UserAccount;
|
|
4184
4202
|
/**
|
|
4185
4203
|
* The Content of the Comment
|
|
4186
4204
|
*/
|
|
4187
|
-
content: string;
|
|
4205
|
+
content: string | null;
|
|
4188
4206
|
/**
|
|
4189
4207
|
* When the Comment was Created
|
|
4190
4208
|
*/
|
|
4191
|
-
createdTimestamp: Date;
|
|
4209
|
+
createdTimestamp: Date | null;
|
|
4192
4210
|
/**
|
|
4193
4211
|
* When the Comment was last Updated
|
|
4194
4212
|
*/
|
|
4195
|
-
updatedTimestamp: Date;
|
|
4213
|
+
updatedTimestamp: Date | null;
|
|
4196
4214
|
};
|
|
4197
4215
|
}
|
|
4198
4216
|
import PermanentObjectDataModel from "@ricado/api-client/Models/Site/PermanentObjectDataModel";
|
|
@@ -4217,7 +4235,7 @@ declare module '@ricado/api-client/Controllers/Site/PointController' {
|
|
|
4217
4235
|
* @param {PointController.GetAllValuesQueryParameters} [queryParameters] The Optional Query Parameters
|
|
4218
4236
|
* @return {Promise<Array<PointController.PointValueItem>>}
|
|
4219
4237
|
*/
|
|
4220
|
-
static getAllValues(siteId: number, queryParameters?: PointController.GetAllValuesQueryParameters): Promise<Array<PointController.PointValueItem>>;
|
|
4238
|
+
static getAllValues(siteId: number, queryParameters?: PointController.GetAllValuesQueryParameters | undefined): Promise<Array<PointController.PointValueItem>>;
|
|
4221
4239
|
/**
|
|
4222
4240
|
* Set specific Point Values [POST /sites/{siteId}/points/values]
|
|
4223
4241
|
*
|
|
@@ -4242,7 +4260,7 @@ declare module '@ricado/api-client/Controllers/Site/PointController' {
|
|
|
4242
4260
|
* @param {PointController.GetAllHistoryQueryParameters} [queryParameters] The Optional Query Parameters
|
|
4243
4261
|
* @return {Promise<Array<PointController.PointHistoryItem>>}
|
|
4244
4262
|
*/
|
|
4245
|
-
static getAllHistory(siteId: number, pointIds: number[], queryParameters?: PointController.GetAllHistoryQueryParameters): Promise<Array<PointController.PointHistoryItem>>;
|
|
4263
|
+
static getAllHistory(siteId: number, pointIds: number[], queryParameters?: PointController.GetAllHistoryQueryParameters | undefined): Promise<Array<PointController.PointHistoryItem>>;
|
|
4246
4264
|
/**
|
|
4247
4265
|
* Add Point History [POST /sites/{siteId}/points/history]
|
|
4248
4266
|
*
|
|
@@ -4267,7 +4285,7 @@ declare module '@ricado/api-client/Controllers/Site/PointController' {
|
|
|
4267
4285
|
* @param {PointController.GetAllEventsQueryParameters} [queryParameters] The Optional Query Parameters
|
|
4268
4286
|
* @return {Promise<Array<PointController.PointEventItem>>}
|
|
4269
4287
|
*/
|
|
4270
|
-
static getAllEvents(siteId: number, pointIds: number[], queryParameters?: PointController.GetAllEventsQueryParameters): Promise<Array<PointController.PointEventItem>>;
|
|
4288
|
+
static getAllEvents(siteId: number, pointIds: number[], queryParameters?: PointController.GetAllEventsQueryParameters | undefined): Promise<Array<PointController.PointEventItem>>;
|
|
4271
4289
|
/**
|
|
4272
4290
|
* Add Point Events [POST /sites/{siteId}/points/events]
|
|
4273
4291
|
*
|
|
@@ -4320,7 +4338,7 @@ declare module '@ricado/api-client/Controllers/Site/PointController' {
|
|
|
4320
4338
|
* @param {PointController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
4321
4339
|
* @return {Promise<PointModel[]>}
|
|
4322
4340
|
*/
|
|
4323
|
-
static getAll(siteId: number, queryParameters?: PointController.GetAllQueryParameters): Promise<PointModel[]>;
|
|
4341
|
+
static getAll(siteId: number, queryParameters?: PointController.GetAllQueryParameters | undefined): Promise<PointModel[]>;
|
|
4324
4342
|
/**
|
|
4325
4343
|
* Create a Point [POST /sites/{siteId}/points]
|
|
4326
4344
|
*
|
|
@@ -4383,11 +4401,11 @@ declare module '@ricado/api-client/Controllers/Site/PointController' {
|
|
|
4383
4401
|
/**
|
|
4384
4402
|
* The RTU this Point belongs to
|
|
4385
4403
|
*/
|
|
4386
|
-
rtuId?: number;
|
|
4404
|
+
rtuId?: number | null;
|
|
4387
4405
|
/**
|
|
4388
4406
|
* The Plugin ID
|
|
4389
4407
|
*/
|
|
4390
|
-
pluginId?: number;
|
|
4408
|
+
pluginId?: number | null;
|
|
4391
4409
|
/**
|
|
4392
4410
|
* The Point Name
|
|
4393
4411
|
*/
|
|
@@ -4416,11 +4434,11 @@ declare module '@ricado/api-client/Controllers/Site/PointController' {
|
|
|
4416
4434
|
/**
|
|
4417
4435
|
* The RTU this Point belongs to
|
|
4418
4436
|
*/
|
|
4419
|
-
rtuId?: number;
|
|
4437
|
+
rtuId?: number | null;
|
|
4420
4438
|
/**
|
|
4421
4439
|
* The Plugin ID
|
|
4422
4440
|
*/
|
|
4423
|
-
pluginId?: number;
|
|
4441
|
+
pluginId?: number | null;
|
|
4424
4442
|
/**
|
|
4425
4443
|
* The Point Name
|
|
4426
4444
|
*/
|
|
@@ -4453,7 +4471,7 @@ declare module '@ricado/api-client/Controllers/Site/PointController' {
|
|
|
4453
4471
|
/**
|
|
4454
4472
|
* The Plugin ID
|
|
4455
4473
|
*/
|
|
4456
|
-
pluginId?: number;
|
|
4474
|
+
pluginId?: number | null;
|
|
4457
4475
|
/**
|
|
4458
4476
|
* The Point Name
|
|
4459
4477
|
*/
|
|
@@ -4641,7 +4659,7 @@ declare module '@ricado/api-client/Controllers/Site/TemporaryObjectController' {
|
|
|
4641
4659
|
* @param {TemporaryObjectController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
4642
4660
|
* @return {Promise<TemporaryObjectModel[]>}
|
|
4643
4661
|
*/
|
|
4644
|
-
static getAll(siteId: number, queryParameters?: TemporaryObjectController.GetAllQueryParameters): Promise<TemporaryObjectModel[]>;
|
|
4662
|
+
static getAll(siteId: number, queryParameters?: TemporaryObjectController.GetAllQueryParameters | undefined): Promise<TemporaryObjectModel[]>;
|
|
4645
4663
|
/**
|
|
4646
4664
|
* Create a Temporary Object [POST /sites/{siteId}/temporary-objects]
|
|
4647
4665
|
*
|
|
@@ -5470,7 +5488,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/BinTipBinControlle
|
|
|
5470
5488
|
* @param {BinTipBinController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
5471
5489
|
* @return {Promise<BinTipBinModel[]>}
|
|
5472
5490
|
*/
|
|
5473
|
-
static getAll(siteId: number, queryParameters?: BinTipBinController.GetAllQueryParameters): Promise<BinTipBinModel[]>;
|
|
5491
|
+
static getAll(siteId: number, queryParameters?: BinTipBinController.GetAllQueryParameters | undefined): Promise<BinTipBinModel[]>;
|
|
5474
5492
|
/**
|
|
5475
5493
|
* Create a Bin Tip Bin [POST /packhouse/sites/{siteId}/bin-tip-bins]
|
|
5476
5494
|
*
|
|
@@ -5498,11 +5516,11 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/BinTipBinControlle
|
|
|
5498
5516
|
/**
|
|
5499
5517
|
* The `BinTipWeight` ID as the Source for the Full Weight of this Bin
|
|
5500
5518
|
*/
|
|
5501
|
-
fullBinWeightId?: string;
|
|
5519
|
+
fullBinWeightId?: string | null;
|
|
5502
5520
|
/**
|
|
5503
5521
|
* The `BinTipWeight` ID as the Source for the Empty Weight of this Bin
|
|
5504
5522
|
*/
|
|
5505
|
-
emptyBinWeightId?: string;
|
|
5523
|
+
emptyBinWeightId?: string | null;
|
|
5506
5524
|
/**
|
|
5507
5525
|
* Filter by the Timestamp when this Bin was Created. Results Greater than or Equal to Timestamp
|
|
5508
5526
|
*/
|
|
@@ -5531,27 +5549,27 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/BinTipBinControlle
|
|
|
5531
5549
|
/**
|
|
5532
5550
|
* A 10-Digit Bin Number made up of a Bin Lot (4-Digits) and a Unique Number (6-Digits)
|
|
5533
5551
|
*/
|
|
5534
|
-
binNumber?: string;
|
|
5552
|
+
binNumber?: string | null;
|
|
5535
5553
|
/**
|
|
5536
5554
|
* The Time Batch ID associated with this Bin
|
|
5537
5555
|
*/
|
|
5538
|
-
timeBatchId?: string;
|
|
5556
|
+
timeBatchId?: string | null;
|
|
5539
5557
|
/**
|
|
5540
5558
|
* The Full Weight for this Bin
|
|
5541
5559
|
*/
|
|
5542
|
-
fullWeight?: number;
|
|
5560
|
+
fullWeight?: number | null;
|
|
5543
5561
|
/**
|
|
5544
5562
|
* The Empty Weight for this Bin
|
|
5545
5563
|
*/
|
|
5546
|
-
emptyWeight?: number;
|
|
5564
|
+
emptyWeight?: number | null;
|
|
5547
5565
|
/**
|
|
5548
5566
|
* The `BinTipWeight` ID as the Source for the Full Weight of this Bin
|
|
5549
5567
|
*/
|
|
5550
|
-
fullBinWeightId?: string;
|
|
5568
|
+
fullBinWeightId?: string | null;
|
|
5551
5569
|
/**
|
|
5552
5570
|
* The `BinTipWeight` ID as the Source for the Empty Weight of this Bin
|
|
5553
5571
|
*/
|
|
5554
|
-
emptyBinWeightId?: string;
|
|
5572
|
+
emptyBinWeightId?: string | null;
|
|
5555
5573
|
/**
|
|
5556
5574
|
* The FreshPack Field Bin Weight API Data
|
|
5557
5575
|
*/
|
|
@@ -5572,32 +5590,49 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/BinTipBinControlle
|
|
|
5572
5590
|
/**
|
|
5573
5591
|
* A 10-Digit Bin Number made up of a Bin Lot (4-Digits) and a Unique Number (6-Digits)
|
|
5574
5592
|
*/
|
|
5575
|
-
binNumber?: string;
|
|
5593
|
+
binNumber?: string | null;
|
|
5576
5594
|
/**
|
|
5577
5595
|
* The Time Batch ID associated with this Bin
|
|
5578
5596
|
*/
|
|
5579
|
-
timeBatchId?: string;
|
|
5597
|
+
timeBatchId?: string | null;
|
|
5580
5598
|
/**
|
|
5581
5599
|
* The Full Weight for this Bin
|
|
5582
5600
|
*/
|
|
5583
|
-
fullWeight?: number;
|
|
5601
|
+
fullWeight?: number | null;
|
|
5584
5602
|
/**
|
|
5585
5603
|
* The Empty Weight for this Bin
|
|
5586
5604
|
*/
|
|
5587
|
-
emptyWeight?: number;
|
|
5605
|
+
emptyWeight?: number | null;
|
|
5588
5606
|
/**
|
|
5589
5607
|
* The `BinTipWeight` ID as the Source for the Full Weight of this Bin
|
|
5590
5608
|
*/
|
|
5591
|
-
fullBinWeightId?: string;
|
|
5609
|
+
fullBinWeightId?: string | null;
|
|
5592
5610
|
/**
|
|
5593
5611
|
* The `BinTipWeight` ID as the Source for the Empty Weight of this Bin
|
|
5594
5612
|
*/
|
|
5595
|
-
emptyBinWeightId?: string;
|
|
5613
|
+
emptyBinWeightId?: string | null;
|
|
5596
5614
|
/**
|
|
5597
5615
|
* The FreshPack Field Bin Weight API Data
|
|
5598
5616
|
*/
|
|
5599
5617
|
freshPackFieldBinWeightApi?: any;
|
|
5600
5618
|
};
|
|
5619
|
+
/**
|
|
5620
|
+
* A **UserAccount** Type
|
|
5621
|
+
*/
|
|
5622
|
+
export type UserAccount = {
|
|
5623
|
+
/**
|
|
5624
|
+
* The User Account ID
|
|
5625
|
+
*/
|
|
5626
|
+
id: string | null;
|
|
5627
|
+
/**
|
|
5628
|
+
* The User's First Name
|
|
5629
|
+
*/
|
|
5630
|
+
firstName: string | null;
|
|
5631
|
+
/**
|
|
5632
|
+
* The User's Last Name
|
|
5633
|
+
*/
|
|
5634
|
+
lastName: string | null;
|
|
5635
|
+
};
|
|
5601
5636
|
/**
|
|
5602
5637
|
* A **CommentItem** Type
|
|
5603
5638
|
*/
|
|
@@ -5606,18 +5641,19 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/BinTipBinControlle
|
|
|
5606
5641
|
* The Comment ID
|
|
5607
5642
|
*/
|
|
5608
5643
|
id: string;
|
|
5644
|
+
userAccount: UserAccount;
|
|
5609
5645
|
/**
|
|
5610
5646
|
* The Content of the Comment
|
|
5611
5647
|
*/
|
|
5612
|
-
content: string;
|
|
5648
|
+
content: string | null;
|
|
5613
5649
|
/**
|
|
5614
5650
|
* When the Comment was Created
|
|
5615
5651
|
*/
|
|
5616
|
-
createdTimestamp: Date;
|
|
5652
|
+
createdTimestamp: Date | null;
|
|
5617
5653
|
/**
|
|
5618
5654
|
* When the Comment was last Updated
|
|
5619
5655
|
*/
|
|
5620
|
-
updatedTimestamp: Date;
|
|
5656
|
+
updatedTimestamp: Date | null;
|
|
5621
5657
|
};
|
|
5622
5658
|
}
|
|
5623
5659
|
import BinTipBinModel from "@ricado/api-client/Models/Packhouse/Site/BinTipBinModel";
|
|
@@ -5736,7 +5772,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/BinTipWeightContro
|
|
|
5736
5772
|
* @param {BinTipWeightController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
5737
5773
|
* @return {Promise<BinTipWeightModel[]>}
|
|
5738
5774
|
*/
|
|
5739
|
-
static getAll(siteId: number, queryParameters?: BinTipWeightController.GetAllQueryParameters): Promise<BinTipWeightModel[]>;
|
|
5775
|
+
static getAll(siteId: number, queryParameters?: BinTipWeightController.GetAllQueryParameters | undefined): Promise<BinTipWeightModel[]>;
|
|
5740
5776
|
/**
|
|
5741
5777
|
* Create a Bin Tip Weight [POST /packhouse/sites/{siteId}/bin-tip-weights]
|
|
5742
5778
|
*
|
|
@@ -5768,7 +5804,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/BinTipWeightContro
|
|
|
5768
5804
|
/**
|
|
5769
5805
|
* The Bin Scale ID associated with this Bin Weight
|
|
5770
5806
|
*/
|
|
5771
|
-
binScaleId?: string;
|
|
5807
|
+
binScaleId?: string | null;
|
|
5772
5808
|
/**
|
|
5773
5809
|
* Filter by the Timestamp when this Bin Tip Weight was Created. Results Greater than or Equal to Timestamp
|
|
5774
5810
|
*/
|
|
@@ -5805,7 +5841,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/BinTipWeightContro
|
|
|
5805
5841
|
/**
|
|
5806
5842
|
* The Bin Scale ID associated with this Bin Weight
|
|
5807
5843
|
*/
|
|
5808
|
-
binScaleId?: string;
|
|
5844
|
+
binScaleId?: string | null;
|
|
5809
5845
|
};
|
|
5810
5846
|
/**
|
|
5811
5847
|
* The Update Data for a Bin Tip Weight
|
|
@@ -5830,7 +5866,24 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/BinTipWeightContro
|
|
|
5830
5866
|
/**
|
|
5831
5867
|
* The Bin Scale ID associated with this Bin Weight
|
|
5832
5868
|
*/
|
|
5833
|
-
binScaleId?: string;
|
|
5869
|
+
binScaleId?: string | null;
|
|
5870
|
+
};
|
|
5871
|
+
/**
|
|
5872
|
+
* A **UserAccount** Type
|
|
5873
|
+
*/
|
|
5874
|
+
export type UserAccount = {
|
|
5875
|
+
/**
|
|
5876
|
+
* The User Account ID
|
|
5877
|
+
*/
|
|
5878
|
+
id: string | null;
|
|
5879
|
+
/**
|
|
5880
|
+
* The User's First Name
|
|
5881
|
+
*/
|
|
5882
|
+
firstName: string | null;
|
|
5883
|
+
/**
|
|
5884
|
+
* The User's Last Name
|
|
5885
|
+
*/
|
|
5886
|
+
lastName: string | null;
|
|
5834
5887
|
};
|
|
5835
5888
|
/**
|
|
5836
5889
|
* A **CommentItem** Type
|
|
@@ -5840,18 +5893,19 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/BinTipWeightContro
|
|
|
5840
5893
|
* The Comment ID
|
|
5841
5894
|
*/
|
|
5842
5895
|
id: string;
|
|
5896
|
+
userAccount: UserAccount;
|
|
5843
5897
|
/**
|
|
5844
5898
|
* The Content of the Comment
|
|
5845
5899
|
*/
|
|
5846
|
-
content: string;
|
|
5900
|
+
content: string | null;
|
|
5847
5901
|
/**
|
|
5848
5902
|
* When the Comment was Created
|
|
5849
5903
|
*/
|
|
5850
|
-
createdTimestamp: Date;
|
|
5904
|
+
createdTimestamp: Date | null;
|
|
5851
5905
|
/**
|
|
5852
5906
|
* When the Comment was last Updated
|
|
5853
5907
|
*/
|
|
5854
|
-
updatedTimestamp: Date;
|
|
5908
|
+
updatedTimestamp: Date | null;
|
|
5855
5909
|
};
|
|
5856
5910
|
}
|
|
5857
5911
|
import BinTipWeightModel from "@ricado/api-client/Models/Packhouse/Site/BinTipWeightModel";
|
|
@@ -5970,7 +6024,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerBatchCo
|
|
|
5970
6024
|
* @param {CompacSizerBatchController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
5971
6025
|
* @return {Promise<CompacSizerBatchModel[]>}
|
|
5972
6026
|
*/
|
|
5973
|
-
static getAll(siteId: number, queryParameters?: CompacSizerBatchController.GetAllQueryParameters): Promise<CompacSizerBatchModel[]>;
|
|
6027
|
+
static getAll(siteId: number, queryParameters?: CompacSizerBatchController.GetAllQueryParameters | undefined): Promise<CompacSizerBatchModel[]>;
|
|
5974
6028
|
/**
|
|
5975
6029
|
* Create a Compac Sizer Batch [POST /packhouse/sites/{siteId}/compac-sizer-batches]
|
|
5976
6030
|
*
|
|
@@ -5998,7 +6052,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerBatchCo
|
|
|
5998
6052
|
/**
|
|
5999
6053
|
* The Packrun ID associated with this Batch
|
|
6000
6054
|
*/
|
|
6001
|
-
packrunId?: string;
|
|
6055
|
+
packrunId?: string | null;
|
|
6002
6056
|
/**
|
|
6003
6057
|
* Filter by the Timestamp when this Compac Sizer Batch was Created. Results Greater than or Equal to Timestamp
|
|
6004
6058
|
*/
|
|
@@ -6031,7 +6085,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerBatchCo
|
|
|
6031
6085
|
/**
|
|
6032
6086
|
* The Packrun ID associated with this Batch
|
|
6033
6087
|
*/
|
|
6034
|
-
packrunId?: string;
|
|
6088
|
+
packrunId?: string | null;
|
|
6035
6089
|
/**
|
|
6036
6090
|
* The Compac Sizer Batch Data
|
|
6037
6091
|
*/
|
|
@@ -6052,12 +6106,29 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerBatchCo
|
|
|
6052
6106
|
/**
|
|
6053
6107
|
* The Packrun ID associated with this Batch
|
|
6054
6108
|
*/
|
|
6055
|
-
packrunId?: string;
|
|
6109
|
+
packrunId?: string | null;
|
|
6056
6110
|
/**
|
|
6057
6111
|
* The Compac Sizer Batch Data
|
|
6058
6112
|
*/
|
|
6059
6113
|
batch?: any;
|
|
6060
6114
|
};
|
|
6115
|
+
/**
|
|
6116
|
+
* A **UserAccount** Type
|
|
6117
|
+
*/
|
|
6118
|
+
export type UserAccount = {
|
|
6119
|
+
/**
|
|
6120
|
+
* The User Account ID
|
|
6121
|
+
*/
|
|
6122
|
+
id: string | null;
|
|
6123
|
+
/**
|
|
6124
|
+
* The User's First Name
|
|
6125
|
+
*/
|
|
6126
|
+
firstName: string | null;
|
|
6127
|
+
/**
|
|
6128
|
+
* The User's Last Name
|
|
6129
|
+
*/
|
|
6130
|
+
lastName: string | null;
|
|
6131
|
+
};
|
|
6061
6132
|
/**
|
|
6062
6133
|
* A **CommentItem** Type
|
|
6063
6134
|
*/
|
|
@@ -6066,18 +6137,19 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerBatchCo
|
|
|
6066
6137
|
* The Comment ID
|
|
6067
6138
|
*/
|
|
6068
6139
|
id: string;
|
|
6140
|
+
userAccount: UserAccount;
|
|
6069
6141
|
/**
|
|
6070
6142
|
* The Content of the Comment
|
|
6071
6143
|
*/
|
|
6072
|
-
content: string;
|
|
6144
|
+
content: string | null;
|
|
6073
6145
|
/**
|
|
6074
6146
|
* When the Comment was Created
|
|
6075
6147
|
*/
|
|
6076
|
-
createdTimestamp: Date;
|
|
6148
|
+
createdTimestamp: Date | null;
|
|
6077
6149
|
/**
|
|
6078
6150
|
* When the Comment was last Updated
|
|
6079
6151
|
*/
|
|
6080
|
-
updatedTimestamp: Date;
|
|
6152
|
+
updatedTimestamp: Date | null;
|
|
6081
6153
|
};
|
|
6082
6154
|
}
|
|
6083
6155
|
import CompacSizerBatchModel from "@ricado/api-client/Models/Packhouse/Site/CompacSizerBatchModel";
|
|
@@ -6131,7 +6203,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerControl
|
|
|
6131
6203
|
* @param {CompacSizerController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
6132
6204
|
* @return {Promise<CompacSizerModel[]>}
|
|
6133
6205
|
*/
|
|
6134
|
-
static getAll(siteId: number, queryParameters?: CompacSizerController.GetAllQueryParameters): Promise<CompacSizerModel[]>;
|
|
6206
|
+
static getAll(siteId: number, queryParameters?: CompacSizerController.GetAllQueryParameters | undefined): Promise<CompacSizerModel[]>;
|
|
6135
6207
|
/**
|
|
6136
6208
|
* Create a Compac Sizer [POST /packhouse/sites/{siteId}/compac-sizers]
|
|
6137
6209
|
*
|
|
@@ -6151,7 +6223,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerControl
|
|
|
6151
6223
|
/**
|
|
6152
6224
|
* The RTU this Compac Sizer belongs to
|
|
6153
6225
|
*/
|
|
6154
|
-
rtuId?: number;
|
|
6226
|
+
rtuId?: number | null;
|
|
6155
6227
|
/**
|
|
6156
6228
|
* The Compac Sizer Name
|
|
6157
6229
|
*/
|
|
@@ -6172,7 +6244,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerControl
|
|
|
6172
6244
|
/**
|
|
6173
6245
|
* The RTU this Compac Sizer belongs to
|
|
6174
6246
|
*/
|
|
6175
|
-
rtuId?: number;
|
|
6247
|
+
rtuId?: number | null;
|
|
6176
6248
|
/**
|
|
6177
6249
|
* The Compac Sizer Name
|
|
6178
6250
|
*/
|
|
@@ -6376,7 +6448,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerOutletP
|
|
|
6376
6448
|
* @param {CompacSizerOutletProductChangeController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
6377
6449
|
* @return {Promise<CompacSizerOutletProductChangeModel[]>}
|
|
6378
6450
|
*/
|
|
6379
|
-
static getAll(siteId: number, queryParameters?: CompacSizerOutletProductChangeController.GetAllQueryParameters): Promise<CompacSizerOutletProductChangeModel[]>;
|
|
6451
|
+
static getAll(siteId: number, queryParameters?: CompacSizerOutletProductChangeController.GetAllQueryParameters | undefined): Promise<CompacSizerOutletProductChangeModel[]>;
|
|
6380
6452
|
/**
|
|
6381
6453
|
* Create a Compac Sizer Outlet Product Change [POST /packhouse/sites/{siteId}/compac-sizer-outlet-product-changes]
|
|
6382
6454
|
*
|
|
@@ -6404,11 +6476,11 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerOutletP
|
|
|
6404
6476
|
/**
|
|
6405
6477
|
* The ID of the Previous Product that was active on the Outlet
|
|
6406
6478
|
*/
|
|
6407
|
-
previousProductId?: string;
|
|
6479
|
+
previousProductId?: string | null;
|
|
6408
6480
|
/**
|
|
6409
6481
|
* The Name of the Previous Product that was active on the Outlet
|
|
6410
6482
|
*/
|
|
6411
|
-
previousProductName?: string;
|
|
6483
|
+
previousProductName?: string | null;
|
|
6412
6484
|
/**
|
|
6413
6485
|
* The ID of the New Product that is now active on the Outlet
|
|
6414
6486
|
*/
|
|
@@ -6445,11 +6517,11 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerOutletP
|
|
|
6445
6517
|
/**
|
|
6446
6518
|
* The ID of the Previous Product that was active on the Outlet
|
|
6447
6519
|
*/
|
|
6448
|
-
previousProductId?: string;
|
|
6520
|
+
previousProductId?: string | null;
|
|
6449
6521
|
/**
|
|
6450
6522
|
* The Name of the Previous Product that was active on the Outlet
|
|
6451
6523
|
*/
|
|
6452
|
-
previousProductName?: string;
|
|
6524
|
+
previousProductName?: string | null;
|
|
6453
6525
|
/**
|
|
6454
6526
|
* The ID of the New Product that is now active on the Outlet
|
|
6455
6527
|
*/
|
|
@@ -6474,11 +6546,11 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerOutletP
|
|
|
6474
6546
|
/**
|
|
6475
6547
|
* The ID of the Previous Product that was active on the Outlet
|
|
6476
6548
|
*/
|
|
6477
|
-
previousProductId?: string;
|
|
6549
|
+
previousProductId?: string | null;
|
|
6478
6550
|
/**
|
|
6479
6551
|
* The Name of the Previous Product that was active on the Outlet
|
|
6480
6552
|
*/
|
|
6481
|
-
previousProductName?: string;
|
|
6553
|
+
previousProductName?: string | null;
|
|
6482
6554
|
/**
|
|
6483
6555
|
* The ID of the New Product that is now active on the Outlet
|
|
6484
6556
|
*/
|
|
@@ -6488,6 +6560,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerOutletP
|
|
|
6488
6560
|
*/
|
|
6489
6561
|
newProductName?: string;
|
|
6490
6562
|
};
|
|
6563
|
+
/**
|
|
6564
|
+
* A **UserAccount** Type
|
|
6565
|
+
*/
|
|
6566
|
+
export type UserAccount = {
|
|
6567
|
+
/**
|
|
6568
|
+
* The User Account ID
|
|
6569
|
+
*/
|
|
6570
|
+
id: string | null;
|
|
6571
|
+
/**
|
|
6572
|
+
* The User's First Name
|
|
6573
|
+
*/
|
|
6574
|
+
firstName: string | null;
|
|
6575
|
+
/**
|
|
6576
|
+
* The User's Last Name
|
|
6577
|
+
*/
|
|
6578
|
+
lastName: string | null;
|
|
6579
|
+
};
|
|
6491
6580
|
/**
|
|
6492
6581
|
* A **CommentItem** Type
|
|
6493
6582
|
*/
|
|
@@ -6496,18 +6585,19 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerOutletP
|
|
|
6496
6585
|
* The Comment ID
|
|
6497
6586
|
*/
|
|
6498
6587
|
id: string;
|
|
6588
|
+
userAccount: UserAccount;
|
|
6499
6589
|
/**
|
|
6500
6590
|
* The Content of the Comment
|
|
6501
6591
|
*/
|
|
6502
|
-
content: string;
|
|
6592
|
+
content: string | null;
|
|
6503
6593
|
/**
|
|
6504
6594
|
* When the Comment was Created
|
|
6505
6595
|
*/
|
|
6506
|
-
createdTimestamp: Date;
|
|
6596
|
+
createdTimestamp: Date | null;
|
|
6507
6597
|
/**
|
|
6508
6598
|
* When the Comment was last Updated
|
|
6509
6599
|
*/
|
|
6510
|
-
updatedTimestamp: Date;
|
|
6600
|
+
updatedTimestamp: Date | null;
|
|
6511
6601
|
};
|
|
6512
6602
|
}
|
|
6513
6603
|
import CompacSizerOutletProductChangeModel from "@ricado/api-client/Models/Packhouse/Site/CompacSizerOutletProductChangeModel";
|
|
@@ -6626,7 +6716,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerOutletT
|
|
|
6626
6716
|
* @param {CompacSizerOutletTypeChangeController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
6627
6717
|
* @return {Promise<CompacSizerOutletTypeChangeModel[]>}
|
|
6628
6718
|
*/
|
|
6629
|
-
static getAll(siteId: number, queryParameters?: CompacSizerOutletTypeChangeController.GetAllQueryParameters): Promise<CompacSizerOutletTypeChangeModel[]>;
|
|
6719
|
+
static getAll(siteId: number, queryParameters?: CompacSizerOutletTypeChangeController.GetAllQueryParameters | undefined): Promise<CompacSizerOutletTypeChangeModel[]>;
|
|
6630
6720
|
/**
|
|
6631
6721
|
* Create a Compac Sizer Outlet Type Change [POST /packhouse/sites/{siteId}/compac-sizer-outlet-type-changes]
|
|
6632
6722
|
*
|
|
@@ -6654,7 +6744,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerOutletT
|
|
|
6654
6744
|
/**
|
|
6655
6745
|
* The ID of the Previous Type that was active on the Outlet
|
|
6656
6746
|
*/
|
|
6657
|
-
previousTypeId?: string;
|
|
6747
|
+
previousTypeId?: string | null;
|
|
6658
6748
|
/**
|
|
6659
6749
|
* The ID of the New Type that is now active on the Outlet
|
|
6660
6750
|
*/
|
|
@@ -6687,7 +6777,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerOutletT
|
|
|
6687
6777
|
/**
|
|
6688
6778
|
* The ID of the Previous Type that was active on the Outlet
|
|
6689
6779
|
*/
|
|
6690
|
-
previousTypeId?: string;
|
|
6780
|
+
previousTypeId?: string | null;
|
|
6691
6781
|
/**
|
|
6692
6782
|
* The ID of the New Type that is now active on the Outlet
|
|
6693
6783
|
*/
|
|
@@ -6708,12 +6798,29 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerOutletT
|
|
|
6708
6798
|
/**
|
|
6709
6799
|
* The ID of the Previous Type that was active on the Outlet
|
|
6710
6800
|
*/
|
|
6711
|
-
previousTypeId?: string;
|
|
6801
|
+
previousTypeId?: string | null;
|
|
6712
6802
|
/**
|
|
6713
6803
|
* The ID of the New Type that is now active on the Outlet
|
|
6714
6804
|
*/
|
|
6715
6805
|
newTypeId?: string;
|
|
6716
6806
|
};
|
|
6807
|
+
/**
|
|
6808
|
+
* A **UserAccount** Type
|
|
6809
|
+
*/
|
|
6810
|
+
export type UserAccount = {
|
|
6811
|
+
/**
|
|
6812
|
+
* The User Account ID
|
|
6813
|
+
*/
|
|
6814
|
+
id: string | null;
|
|
6815
|
+
/**
|
|
6816
|
+
* The User's First Name
|
|
6817
|
+
*/
|
|
6818
|
+
firstName: string | null;
|
|
6819
|
+
/**
|
|
6820
|
+
* The User's Last Name
|
|
6821
|
+
*/
|
|
6822
|
+
lastName: string | null;
|
|
6823
|
+
};
|
|
6717
6824
|
/**
|
|
6718
6825
|
* A **CommentItem** Type
|
|
6719
6826
|
*/
|
|
@@ -6722,18 +6829,19 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerOutletT
|
|
|
6722
6829
|
* The Comment ID
|
|
6723
6830
|
*/
|
|
6724
6831
|
id: string;
|
|
6832
|
+
userAccount: UserAccount;
|
|
6725
6833
|
/**
|
|
6726
6834
|
* The Content of the Comment
|
|
6727
6835
|
*/
|
|
6728
|
-
content: string;
|
|
6836
|
+
content: string | null;
|
|
6729
6837
|
/**
|
|
6730
6838
|
* When the Comment was Created
|
|
6731
6839
|
*/
|
|
6732
|
-
createdTimestamp: Date;
|
|
6840
|
+
createdTimestamp: Date | null;
|
|
6733
6841
|
/**
|
|
6734
6842
|
* When the Comment was last Updated
|
|
6735
6843
|
*/
|
|
6736
|
-
updatedTimestamp: Date;
|
|
6844
|
+
updatedTimestamp: Date | null;
|
|
6737
6845
|
};
|
|
6738
6846
|
}
|
|
6739
6847
|
import CompacSizerOutletTypeChangeModel from "@ricado/api-client/Models/Packhouse/Site/CompacSizerOutletTypeChangeModel";
|
|
@@ -6787,7 +6895,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerOutletT
|
|
|
6787
6895
|
* @param {CompacSizerOutletTypeController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
6788
6896
|
* @return {Promise<CompacSizerOutletTypeModel[]>}
|
|
6789
6897
|
*/
|
|
6790
|
-
static getAll(siteId: number, queryParameters?: CompacSizerOutletTypeController.GetAllQueryParameters): Promise<CompacSizerOutletTypeModel[]>;
|
|
6898
|
+
static getAll(siteId: number, queryParameters?: CompacSizerOutletTypeController.GetAllQueryParameters | undefined): Promise<CompacSizerOutletTypeModel[]>;
|
|
6791
6899
|
/**
|
|
6792
6900
|
* Create a Compac Sizer Outlet Type [POST /packhouse/sites/{siteId}/compac-sizer-outlet-types]
|
|
6793
6901
|
*
|
|
@@ -6960,7 +7068,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerPackrun
|
|
|
6960
7068
|
* @param {CompacSizerPackrunSummaryController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
6961
7069
|
* @return {Promise<CompacSizerPackrunSummaryModel[]>}
|
|
6962
7070
|
*/
|
|
6963
|
-
static getAll(siteId: number, queryParameters?: CompacSizerPackrunSummaryController.GetAllQueryParameters): Promise<CompacSizerPackrunSummaryModel[]>;
|
|
7071
|
+
static getAll(siteId: number, queryParameters?: CompacSizerPackrunSummaryController.GetAllQueryParameters | undefined): Promise<CompacSizerPackrunSummaryModel[]>;
|
|
6964
7072
|
/**
|
|
6965
7073
|
* Create a Compac Sizer Packrun Summary [POST /packhouse/sites/{siteId}/compac-sizer-packrun-summaries]
|
|
6966
7074
|
*
|
|
@@ -6988,7 +7096,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerPackrun
|
|
|
6988
7096
|
/**
|
|
6989
7097
|
* The Time Batch this Summary is associated with
|
|
6990
7098
|
*/
|
|
6991
|
-
timeBatchId?: string;
|
|
7099
|
+
timeBatchId?: string | null;
|
|
6992
7100
|
/**
|
|
6993
7101
|
* Filter by the Timestamp when this Compac Sizer Packrun Summary was Created. Results Greater than or Equal to Timestamp
|
|
6994
7102
|
*/
|
|
@@ -7017,7 +7125,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerPackrun
|
|
|
7017
7125
|
/**
|
|
7018
7126
|
* The Time Batch this Summary is associated with
|
|
7019
7127
|
*/
|
|
7020
|
-
timeBatchId?: string;
|
|
7128
|
+
timeBatchId?: string | null;
|
|
7021
7129
|
/**
|
|
7022
7130
|
* An Array of Packrun Summary Data Objects for each Outlet
|
|
7023
7131
|
*/
|
|
@@ -7054,7 +7162,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerPackrun
|
|
|
7054
7162
|
/**
|
|
7055
7163
|
* The Time Batch this Summary is associated with
|
|
7056
7164
|
*/
|
|
7057
|
-
timeBatchId?: string;
|
|
7165
|
+
timeBatchId?: string | null;
|
|
7058
7166
|
/**
|
|
7059
7167
|
* An Array of Packrun Summary Data Objects for each Outlet
|
|
7060
7168
|
*/
|
|
@@ -7076,6 +7184,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerPackrun
|
|
|
7076
7184
|
*/
|
|
7077
7185
|
outletTypeChanges?: OutletTypeChange[];
|
|
7078
7186
|
};
|
|
7187
|
+
/**
|
|
7188
|
+
* A **UserAccount** Type
|
|
7189
|
+
*/
|
|
7190
|
+
export type UserAccount = {
|
|
7191
|
+
/**
|
|
7192
|
+
* The User Account ID
|
|
7193
|
+
*/
|
|
7194
|
+
id: string | null;
|
|
7195
|
+
/**
|
|
7196
|
+
* The User's First Name
|
|
7197
|
+
*/
|
|
7198
|
+
firstName: string | null;
|
|
7199
|
+
/**
|
|
7200
|
+
* The User's Last Name
|
|
7201
|
+
*/
|
|
7202
|
+
lastName: string | null;
|
|
7203
|
+
};
|
|
7079
7204
|
/**
|
|
7080
7205
|
* A **CommentItem** Type
|
|
7081
7206
|
*/
|
|
@@ -7084,18 +7209,19 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerPackrun
|
|
|
7084
7209
|
* The Comment ID
|
|
7085
7210
|
*/
|
|
7086
7211
|
id: string;
|
|
7212
|
+
userAccount: UserAccount;
|
|
7087
7213
|
/**
|
|
7088
7214
|
* The Content of the Comment
|
|
7089
7215
|
*/
|
|
7090
|
-
content: string;
|
|
7216
|
+
content: string | null;
|
|
7091
7217
|
/**
|
|
7092
7218
|
* When the Comment was Created
|
|
7093
7219
|
*/
|
|
7094
|
-
createdTimestamp: Date;
|
|
7220
|
+
createdTimestamp: Date | null;
|
|
7095
7221
|
/**
|
|
7096
7222
|
* When the Comment was last Updated
|
|
7097
7223
|
*/
|
|
7098
|
-
updatedTimestamp: Date;
|
|
7224
|
+
updatedTimestamp: Date | null;
|
|
7099
7225
|
};
|
|
7100
7226
|
/**
|
|
7101
7227
|
* A **OutletTotal** Type
|
|
@@ -7104,7 +7230,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerPackrun
|
|
|
7104
7230
|
/**
|
|
7105
7231
|
* The Class Type
|
|
7106
7232
|
*/
|
|
7107
|
-
classType: string;
|
|
7233
|
+
classType: string | null;
|
|
7108
7234
|
/**
|
|
7109
7235
|
* The Fruit Size
|
|
7110
7236
|
*/
|
|
@@ -7112,7 +7238,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerPackrun
|
|
|
7112
7238
|
/**
|
|
7113
7239
|
* The Pack Type
|
|
7114
7240
|
*/
|
|
7115
|
-
packType: string;
|
|
7241
|
+
packType: string | null;
|
|
7116
7242
|
/**
|
|
7117
7243
|
* The Weight expressed in Kilograms
|
|
7118
7244
|
*/
|
|
@@ -7124,7 +7250,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerPackrun
|
|
|
7124
7250
|
/**
|
|
7125
7251
|
* The Number of Packs
|
|
7126
7252
|
*/
|
|
7127
|
-
packCount: number;
|
|
7253
|
+
packCount: number | null;
|
|
7128
7254
|
};
|
|
7129
7255
|
/**
|
|
7130
7256
|
* A **OutletSummary** Type
|
|
@@ -7162,7 +7288,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerPackrun
|
|
|
7162
7288
|
/**
|
|
7163
7289
|
* The Name of the Product assigned to the Outlet
|
|
7164
7290
|
*/
|
|
7165
|
-
productName: string;
|
|
7291
|
+
productName: string | null;
|
|
7166
7292
|
};
|
|
7167
7293
|
/**
|
|
7168
7294
|
* A **OutletProductChange** Type
|
|
@@ -7183,7 +7309,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerPackrun
|
|
|
7183
7309
|
/**
|
|
7184
7310
|
* The Name of the new Product that has been assigned to the Outlet
|
|
7185
7311
|
*/
|
|
7186
|
-
productName: string;
|
|
7312
|
+
productName: string | null;
|
|
7187
7313
|
/**
|
|
7188
7314
|
* The ID of the associated *Compac Sizer Outlet Product Change*
|
|
7189
7315
|
*/
|
|
@@ -7204,7 +7330,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerPackrun
|
|
|
7204
7330
|
/**
|
|
7205
7331
|
* The Type ID configured on the Outlet. Only applies when the *type* is *Dynamic*
|
|
7206
7332
|
*/
|
|
7207
|
-
typeId: string;
|
|
7333
|
+
typeId: string | null;
|
|
7208
7334
|
};
|
|
7209
7335
|
/**
|
|
7210
7336
|
* A **OutletTypeChange** Type
|
|
@@ -7221,7 +7347,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerPackrun
|
|
|
7221
7347
|
/**
|
|
7222
7348
|
* The new Dynamic Type ID that has been configured for the Outlet
|
|
7223
7349
|
*/
|
|
7224
|
-
typeId: string;
|
|
7350
|
+
typeId: string | null;
|
|
7225
7351
|
};
|
|
7226
7352
|
}
|
|
7227
7353
|
import CompacSizerPackrunSummaryModel from "@ricado/api-client/Models/Packhouse/Site/CompacSizerPackrunSummaryModel";
|
|
@@ -7340,7 +7466,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/DowntimeEventContr
|
|
|
7340
7466
|
* @param {DowntimeEventController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
7341
7467
|
* @return {Promise<DowntimeEventModel[]>}
|
|
7342
7468
|
*/
|
|
7343
|
-
static getAll(siteId: number, queryParameters?: DowntimeEventController.GetAllQueryParameters): Promise<DowntimeEventModel[]>;
|
|
7469
|
+
static getAll(siteId: number, queryParameters?: DowntimeEventController.GetAllQueryParameters | undefined): Promise<DowntimeEventModel[]>;
|
|
7344
7470
|
/**
|
|
7345
7471
|
* Create a Downtime Event [POST /packhouse/sites/{siteId}/downtime-events]
|
|
7346
7472
|
*
|
|
@@ -7368,11 +7494,11 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/DowntimeEventContr
|
|
|
7368
7494
|
/**
|
|
7369
7495
|
* The Reason Category for this Downtime Event
|
|
7370
7496
|
*/
|
|
7371
|
-
reasonCategory?: string;
|
|
7497
|
+
reasonCategory?: string | null;
|
|
7372
7498
|
/**
|
|
7373
7499
|
* The Reason Tag for this Downtime Event
|
|
7374
7500
|
*/
|
|
7375
|
-
reasonTag?: string;
|
|
7501
|
+
reasonTag?: string | null;
|
|
7376
7502
|
/**
|
|
7377
7503
|
* The Source which Created this Downtime Event
|
|
7378
7504
|
*/
|
|
@@ -7437,23 +7563,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/DowntimeEventContr
|
|
|
7437
7563
|
/**
|
|
7438
7564
|
* When this Downtime Event Ended
|
|
7439
7565
|
*/
|
|
7440
|
-
endTimestamp?: Date;
|
|
7566
|
+
endTimestamp?: Date | null;
|
|
7441
7567
|
/**
|
|
7442
7568
|
* The Reason Category for this Downtime Event
|
|
7443
7569
|
*/
|
|
7444
|
-
reasonCategory?: string;
|
|
7570
|
+
reasonCategory?: string | null;
|
|
7445
7571
|
/**
|
|
7446
7572
|
* The Reason Tag for this Downtime Event
|
|
7447
7573
|
*/
|
|
7448
|
-
reasonTag?: string;
|
|
7574
|
+
reasonTag?: string | null;
|
|
7449
7575
|
/**
|
|
7450
7576
|
* An Optional Summary of the Action taken to Remedy this Downtime Event
|
|
7451
7577
|
*/
|
|
7452
|
-
remedyAction?: string;
|
|
7578
|
+
remedyAction?: string | null;
|
|
7453
7579
|
/**
|
|
7454
7580
|
* An Optional Rating between 1 and 10 on how likely this Downtime Event could have been Avoided
|
|
7455
7581
|
*/
|
|
7456
|
-
avoidableRating?: number;
|
|
7582
|
+
avoidableRating?: number | null;
|
|
7457
7583
|
/**
|
|
7458
7584
|
* The Source which Created this Downtime Event
|
|
7459
7585
|
*/
|
|
@@ -7482,23 +7608,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/DowntimeEventContr
|
|
|
7482
7608
|
/**
|
|
7483
7609
|
* When this Downtime Event Ended
|
|
7484
7610
|
*/
|
|
7485
|
-
endTimestamp?: Date;
|
|
7611
|
+
endTimestamp?: Date | null;
|
|
7486
7612
|
/**
|
|
7487
7613
|
* The Reason Category for this Downtime Event
|
|
7488
7614
|
*/
|
|
7489
|
-
reasonCategory?: string;
|
|
7615
|
+
reasonCategory?: string | null;
|
|
7490
7616
|
/**
|
|
7491
7617
|
* The Reason Tag for this Downtime Event
|
|
7492
7618
|
*/
|
|
7493
|
-
reasonTag?: string;
|
|
7619
|
+
reasonTag?: string | null;
|
|
7494
7620
|
/**
|
|
7495
7621
|
* An Optional Summary of the Action taken to Remedy this Downtime Event
|
|
7496
7622
|
*/
|
|
7497
|
-
remedyAction?: string;
|
|
7623
|
+
remedyAction?: string | null;
|
|
7498
7624
|
/**
|
|
7499
7625
|
* An Optional Rating between 1 and 10 on how likely this Downtime Event could have been Avoided
|
|
7500
7626
|
*/
|
|
7501
|
-
avoidableRating?: number;
|
|
7627
|
+
avoidableRating?: number | null;
|
|
7502
7628
|
/**
|
|
7503
7629
|
* The Source which Created this Downtime Event
|
|
7504
7630
|
*/
|
|
@@ -7508,6 +7634,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/DowntimeEventContr
|
|
|
7508
7634
|
*/
|
|
7509
7635
|
status?: string;
|
|
7510
7636
|
};
|
|
7637
|
+
/**
|
|
7638
|
+
* A **UserAccount** Type
|
|
7639
|
+
*/
|
|
7640
|
+
export type UserAccount = {
|
|
7641
|
+
/**
|
|
7642
|
+
* The User Account ID
|
|
7643
|
+
*/
|
|
7644
|
+
id: string | null;
|
|
7645
|
+
/**
|
|
7646
|
+
* The User's First Name
|
|
7647
|
+
*/
|
|
7648
|
+
firstName: string | null;
|
|
7649
|
+
/**
|
|
7650
|
+
* The User's Last Name
|
|
7651
|
+
*/
|
|
7652
|
+
lastName: string | null;
|
|
7653
|
+
};
|
|
7511
7654
|
/**
|
|
7512
7655
|
* A **CommentItem** Type
|
|
7513
7656
|
*/
|
|
@@ -7516,18 +7659,19 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/DowntimeEventContr
|
|
|
7516
7659
|
* The Comment ID
|
|
7517
7660
|
*/
|
|
7518
7661
|
id: string;
|
|
7662
|
+
userAccount: UserAccount;
|
|
7519
7663
|
/**
|
|
7520
7664
|
* The Content of the Comment
|
|
7521
7665
|
*/
|
|
7522
|
-
content: string;
|
|
7666
|
+
content: string | null;
|
|
7523
7667
|
/**
|
|
7524
7668
|
* When the Comment was Created
|
|
7525
7669
|
*/
|
|
7526
|
-
createdTimestamp: Date;
|
|
7670
|
+
createdTimestamp: Date | null;
|
|
7527
7671
|
/**
|
|
7528
7672
|
* When the Comment was last Updated
|
|
7529
7673
|
*/
|
|
7530
|
-
updatedTimestamp: Date;
|
|
7674
|
+
updatedTimestamp: Date | null;
|
|
7531
7675
|
};
|
|
7532
7676
|
}
|
|
7533
7677
|
import DowntimeEventModel from "@ricado/api-client/Models/Packhouse/Site/DowntimeEventModel";
|
|
@@ -7646,7 +7790,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/FreshPackPackrunSu
|
|
|
7646
7790
|
* @param {FreshPackPackrunSummaryController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
7647
7791
|
* @return {Promise<FreshPackPackrunSummaryModel[]>}
|
|
7648
7792
|
*/
|
|
7649
|
-
static getAll(siteId: number, queryParameters?: FreshPackPackrunSummaryController.GetAllQueryParameters): Promise<FreshPackPackrunSummaryModel[]>;
|
|
7793
|
+
static getAll(siteId: number, queryParameters?: FreshPackPackrunSummaryController.GetAllQueryParameters | undefined): Promise<FreshPackPackrunSummaryModel[]>;
|
|
7650
7794
|
/**
|
|
7651
7795
|
* Create a FreshPack Packrun Summary [POST /packhouse/sites/{siteId}/freshpack-packrun-summaries]
|
|
7652
7796
|
*
|
|
@@ -7674,7 +7818,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/FreshPackPackrunSu
|
|
|
7674
7818
|
/**
|
|
7675
7819
|
* The Time Batch this Summary is associated with
|
|
7676
7820
|
*/
|
|
7677
|
-
timeBatchId?: string;
|
|
7821
|
+
timeBatchId?: string | null;
|
|
7678
7822
|
/**
|
|
7679
7823
|
* Filter by the Timestamp when this FreshPack Packrun Summary was Created. Results Greater than or Equal to Timestamp
|
|
7680
7824
|
*/
|
|
@@ -7703,7 +7847,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/FreshPackPackrunSu
|
|
|
7703
7847
|
/**
|
|
7704
7848
|
* The Time Batch this Summary is associated with
|
|
7705
7849
|
*/
|
|
7706
|
-
timeBatchId?: string;
|
|
7850
|
+
timeBatchId?: string | null;
|
|
7707
7851
|
/**
|
|
7708
7852
|
* An Array of Tray Summary Data Objects for all Sizes and Class Types
|
|
7709
7853
|
*/
|
|
@@ -7724,12 +7868,29 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/FreshPackPackrunSu
|
|
|
7724
7868
|
/**
|
|
7725
7869
|
* The Time Batch this Summary is associated with
|
|
7726
7870
|
*/
|
|
7727
|
-
timeBatchId?: string;
|
|
7871
|
+
timeBatchId?: string | null;
|
|
7728
7872
|
/**
|
|
7729
7873
|
* An Array of Tray Summary Data Objects for all Sizes and Class Types
|
|
7730
7874
|
*/
|
|
7731
7875
|
traySummaries?: any[];
|
|
7732
7876
|
};
|
|
7877
|
+
/**
|
|
7878
|
+
* A **UserAccount** Type
|
|
7879
|
+
*/
|
|
7880
|
+
export type UserAccount = {
|
|
7881
|
+
/**
|
|
7882
|
+
* The User Account ID
|
|
7883
|
+
*/
|
|
7884
|
+
id: string | null;
|
|
7885
|
+
/**
|
|
7886
|
+
* The User's First Name
|
|
7887
|
+
*/
|
|
7888
|
+
firstName: string | null;
|
|
7889
|
+
/**
|
|
7890
|
+
* The User's Last Name
|
|
7891
|
+
*/
|
|
7892
|
+
lastName: string | null;
|
|
7893
|
+
};
|
|
7733
7894
|
/**
|
|
7734
7895
|
* A **CommentItem** Type
|
|
7735
7896
|
*/
|
|
@@ -7738,18 +7899,19 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/FreshPackPackrunSu
|
|
|
7738
7899
|
* The Comment ID
|
|
7739
7900
|
*/
|
|
7740
7901
|
id: string;
|
|
7902
|
+
userAccount: UserAccount;
|
|
7741
7903
|
/**
|
|
7742
7904
|
* The Content of the Comment
|
|
7743
7905
|
*/
|
|
7744
|
-
content: string;
|
|
7906
|
+
content: string | null;
|
|
7745
7907
|
/**
|
|
7746
7908
|
* When the Comment was Created
|
|
7747
7909
|
*/
|
|
7748
|
-
createdTimestamp: Date;
|
|
7910
|
+
createdTimestamp: Date | null;
|
|
7749
7911
|
/**
|
|
7750
7912
|
* When the Comment was last Updated
|
|
7751
7913
|
*/
|
|
7752
|
-
updatedTimestamp: Date;
|
|
7914
|
+
updatedTimestamp: Date | null;
|
|
7753
7915
|
};
|
|
7754
7916
|
}
|
|
7755
7917
|
import FreshPackPackrunSummaryModel from "@ricado/api-client/Models/Packhouse/Site/FreshPackPackrunSummaryModel";
|
|
@@ -7868,7 +8030,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/FreshQualityPackru
|
|
|
7868
8030
|
* @param {FreshQualityPackrunSummaryController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
7869
8031
|
* @return {Promise<FreshQualityPackrunSummaryModel[]>}
|
|
7870
8032
|
*/
|
|
7871
|
-
static getAll(siteId: number, queryParameters?: FreshQualityPackrunSummaryController.GetAllQueryParameters): Promise<FreshQualityPackrunSummaryModel[]>;
|
|
8033
|
+
static getAll(siteId: number, queryParameters?: FreshQualityPackrunSummaryController.GetAllQueryParameters | undefined): Promise<FreshQualityPackrunSummaryModel[]>;
|
|
7872
8034
|
/**
|
|
7873
8035
|
* Create a FreshQuality Packrun Summary [POST /packhouse/sites/{siteId}/freshquality-packrun-summaries]
|
|
7874
8036
|
*
|
|
@@ -7896,7 +8058,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/FreshQualityPackru
|
|
|
7896
8058
|
/**
|
|
7897
8059
|
* The Time Batch this Summary is associated with
|
|
7898
8060
|
*/
|
|
7899
|
-
timeBatchId?: string;
|
|
8061
|
+
timeBatchId?: string | null;
|
|
7900
8062
|
/**
|
|
7901
8063
|
* Filter by the Timestamp when this FreshQuality Packrun Summary was Created. Results Greater than or Equal to Timestamp
|
|
7902
8064
|
*/
|
|
@@ -7925,7 +8087,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/FreshQualityPackru
|
|
|
7925
8087
|
/**
|
|
7926
8088
|
* The Time Batch this Summary is associated with
|
|
7927
8089
|
*/
|
|
7928
|
-
timeBatchId?: string;
|
|
8090
|
+
timeBatchId?: string | null;
|
|
7929
8091
|
/**
|
|
7930
8092
|
* An Array of Class 1 R600 Samples
|
|
7931
8093
|
*/
|
|
@@ -7954,7 +8116,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/FreshQualityPackru
|
|
|
7954
8116
|
/**
|
|
7955
8117
|
* The Time Batch this Summary is associated with
|
|
7956
8118
|
*/
|
|
7957
|
-
timeBatchId?: string;
|
|
8119
|
+
timeBatchId?: string | null;
|
|
7958
8120
|
/**
|
|
7959
8121
|
* An Array of Class 1 R600 Samples
|
|
7960
8122
|
*/
|
|
@@ -7968,6 +8130,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/FreshQualityPackru
|
|
|
7968
8130
|
*/
|
|
7969
8131
|
totalFruitSampled?: number;
|
|
7970
8132
|
};
|
|
8133
|
+
/**
|
|
8134
|
+
* A **UserAccount** Type
|
|
8135
|
+
*/
|
|
8136
|
+
export type UserAccount = {
|
|
8137
|
+
/**
|
|
8138
|
+
* The User Account ID
|
|
8139
|
+
*/
|
|
8140
|
+
id: string | null;
|
|
8141
|
+
/**
|
|
8142
|
+
* The User's First Name
|
|
8143
|
+
*/
|
|
8144
|
+
firstName: string | null;
|
|
8145
|
+
/**
|
|
8146
|
+
* The User's Last Name
|
|
8147
|
+
*/
|
|
8148
|
+
lastName: string | null;
|
|
8149
|
+
};
|
|
7971
8150
|
/**
|
|
7972
8151
|
* A **CommentItem** Type
|
|
7973
8152
|
*/
|
|
@@ -7976,18 +8155,19 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/FreshQualityPackru
|
|
|
7976
8155
|
* The Comment ID
|
|
7977
8156
|
*/
|
|
7978
8157
|
id: string;
|
|
8158
|
+
userAccount: UserAccount;
|
|
7979
8159
|
/**
|
|
7980
8160
|
* The Content of the Comment
|
|
7981
8161
|
*/
|
|
7982
|
-
content: string;
|
|
8162
|
+
content: string | null;
|
|
7983
8163
|
/**
|
|
7984
8164
|
* When the Comment was Created
|
|
7985
8165
|
*/
|
|
7986
|
-
createdTimestamp: Date;
|
|
8166
|
+
createdTimestamp: Date | null;
|
|
7987
8167
|
/**
|
|
7988
8168
|
* When the Comment was last Updated
|
|
7989
8169
|
*/
|
|
7990
|
-
updatedTimestamp: Date;
|
|
8170
|
+
updatedTimestamp: Date | null;
|
|
7991
8171
|
};
|
|
7992
8172
|
/**
|
|
7993
8173
|
* A **SampleDefect** Type
|
|
@@ -8117,7 +8297,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/GrowingMethodContr
|
|
|
8117
8297
|
* @param {GrowingMethodController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
8118
8298
|
* @return {Promise<GrowingMethodModel[]>}
|
|
8119
8299
|
*/
|
|
8120
|
-
static getAll(siteId: number, queryParameters?: GrowingMethodController.GetAllQueryParameters): Promise<GrowingMethodModel[]>;
|
|
8300
|
+
static getAll(siteId: number, queryParameters?: GrowingMethodController.GetAllQueryParameters | undefined): Promise<GrowingMethodModel[]>;
|
|
8121
8301
|
/**
|
|
8122
8302
|
* Create a Growing Method [POST /packhouse/sites/{siteId}/growing-methods]
|
|
8123
8303
|
*
|
|
@@ -8225,7 +8405,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackTypeController
|
|
|
8225
8405
|
* @param {PackTypeController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
8226
8406
|
* @return {Promise<PackTypeModel[]>}
|
|
8227
8407
|
*/
|
|
8228
|
-
static getAll(siteId: number, queryParameters?: PackTypeController.GetAllQueryParameters): Promise<PackTypeModel[]>;
|
|
8408
|
+
static getAll(siteId: number, queryParameters?: PackTypeController.GetAllQueryParameters | undefined): Promise<PackTypeModel[]>;
|
|
8229
8409
|
/**
|
|
8230
8410
|
* Create a Pack Type [POST /packhouse/sites/{siteId}/pack-types]
|
|
8231
8411
|
*
|
|
@@ -8362,7 +8542,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackingLineControl
|
|
|
8362
8542
|
* @param {PackingLineController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
8363
8543
|
* @return {Promise<PackingLineModel[]>}
|
|
8364
8544
|
*/
|
|
8365
|
-
static getAll(siteId: number, queryParameters?: PackingLineController.GetAllQueryParameters): Promise<PackingLineModel[]>;
|
|
8545
|
+
static getAll(siteId: number, queryParameters?: PackingLineController.GetAllQueryParameters | undefined): Promise<PackingLineModel[]>;
|
|
8366
8546
|
/**
|
|
8367
8547
|
* Create a Packing Line [POST /packhouse/sites/{siteId}/packing-lines]
|
|
8368
8548
|
*
|
|
@@ -8382,7 +8562,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackingLineControl
|
|
|
8382
8562
|
/**
|
|
8383
8563
|
* The RTU this Packing Line belongs to
|
|
8384
8564
|
*/
|
|
8385
|
-
rtuId?: number;
|
|
8565
|
+
rtuId?: number | null;
|
|
8386
8566
|
/**
|
|
8387
8567
|
* The Packing Line Name
|
|
8388
8568
|
*/
|
|
@@ -8395,7 +8575,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackingLineControl
|
|
|
8395
8575
|
/**
|
|
8396
8576
|
* The RTU this Packing Line belongs to
|
|
8397
8577
|
*/
|
|
8398
|
-
rtuId?: number;
|
|
8578
|
+
rtuId?: number | null;
|
|
8399
8579
|
/**
|
|
8400
8580
|
* The Packing Line Name
|
|
8401
8581
|
*/
|
|
@@ -8435,7 +8615,15 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackingLineControl
|
|
|
8435
8615
|
/**
|
|
8436
8616
|
* The Optional Shift Management Object for this Packing Line
|
|
8437
8617
|
*/
|
|
8438
|
-
shiftManagement?: ShiftManagement;
|
|
8618
|
+
shiftManagement?: ShiftManagement | null;
|
|
8619
|
+
/**
|
|
8620
|
+
* The Advanced Packrun Management Configuration for this Packing Line
|
|
8621
|
+
*/
|
|
8622
|
+
advancedPackrunManagement?: any;
|
|
8623
|
+
/**
|
|
8624
|
+
* The MAF Integration Configuration for this Packing Line
|
|
8625
|
+
*/
|
|
8626
|
+
mafIntegration?: any;
|
|
8439
8627
|
/**
|
|
8440
8628
|
* The FreshPack Integration Configuration for this Packing Line
|
|
8441
8629
|
*/
|
|
@@ -8488,7 +8676,15 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackingLineControl
|
|
|
8488
8676
|
/**
|
|
8489
8677
|
* The Optional Shift Management Object for this Packing Line
|
|
8490
8678
|
*/
|
|
8491
|
-
shiftManagement?: ShiftManagement;
|
|
8679
|
+
shiftManagement?: ShiftManagement | null;
|
|
8680
|
+
/**
|
|
8681
|
+
* The Advanced Packrun Management Configuration for this Packing Line
|
|
8682
|
+
*/
|
|
8683
|
+
advancedPackrunManagement?: any;
|
|
8684
|
+
/**
|
|
8685
|
+
* The MAF Integration Configuration for this Packing Line
|
|
8686
|
+
*/
|
|
8687
|
+
mafIntegration?: any;
|
|
8492
8688
|
/**
|
|
8493
8689
|
* The FreshPack Integration Configuration for this Packing Line
|
|
8494
8690
|
*/
|
|
@@ -8736,7 +8932,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackrunController'
|
|
|
8736
8932
|
* @param {PackrunController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
8737
8933
|
* @return {Promise<PackrunModel[]>}
|
|
8738
8934
|
*/
|
|
8739
|
-
static getAll(siteId: number, queryParameters?: PackrunController.GetAllQueryParameters): Promise<PackrunModel[]>;
|
|
8935
|
+
static getAll(siteId: number, queryParameters?: PackrunController.GetAllQueryParameters | undefined): Promise<PackrunModel[]>;
|
|
8740
8936
|
/**
|
|
8741
8937
|
* Create a Packrun [POST /packhouse/sites/{siteId}/packruns]
|
|
8742
8938
|
*
|
|
@@ -8780,15 +8976,15 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackrunController'
|
|
|
8780
8976
|
/**
|
|
8781
8977
|
* The Growing Method for this Packrun
|
|
8782
8978
|
*/
|
|
8783
|
-
growingMethodId?: string;
|
|
8979
|
+
growingMethodId?: string | null;
|
|
8784
8980
|
/**
|
|
8785
8981
|
* The FreshPack Grader ID associated with this Packrun
|
|
8786
8982
|
*/
|
|
8787
|
-
freshPackGraderId?: number;
|
|
8983
|
+
freshPackGraderId?: number | null;
|
|
8788
8984
|
/**
|
|
8789
8985
|
* The FreshPack Bin Lot Code associated with this Packrun
|
|
8790
8986
|
*/
|
|
8791
|
-
freshPackBinLotCode?: string;
|
|
8987
|
+
freshPackBinLotCode?: string | null;
|
|
8792
8988
|
/**
|
|
8793
8989
|
* Filter by the Timestamp when this Packrun was Created. Results Greater than or Equal to Timestamp
|
|
8794
8990
|
*/
|
|
@@ -8845,11 +9041,11 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackrunController'
|
|
|
8845
9041
|
/**
|
|
8846
9042
|
* When this Packrun was Started
|
|
8847
9043
|
*/
|
|
8848
|
-
startTimestamp?: Date;
|
|
9044
|
+
startTimestamp?: Date | null;
|
|
8849
9045
|
/**
|
|
8850
9046
|
* When this Packrun was Finished
|
|
8851
9047
|
*/
|
|
8852
|
-
finishTimestamp?: Date;
|
|
9048
|
+
finishTimestamp?: Date | null;
|
|
8853
9049
|
/**
|
|
8854
9050
|
* The Variety for this Packrun
|
|
8855
9051
|
*/
|
|
@@ -8857,7 +9053,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackrunController'
|
|
|
8857
9053
|
/**
|
|
8858
9054
|
* The Growing Method for this Packrun
|
|
8859
9055
|
*/
|
|
8860
|
-
growingMethodId?: string;
|
|
9056
|
+
growingMethodId?: string | null;
|
|
8861
9057
|
/**
|
|
8862
9058
|
* The Number of Allocated Bins for this Packrun
|
|
8863
9059
|
*/
|
|
@@ -8869,15 +9065,15 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackrunController'
|
|
|
8869
9065
|
/**
|
|
8870
9066
|
* The FreshPack Grader ID associated with this Packrun
|
|
8871
9067
|
*/
|
|
8872
|
-
freshPackGraderId?: number;
|
|
9068
|
+
freshPackGraderId?: number | null;
|
|
8873
9069
|
/**
|
|
8874
9070
|
* The FreshPack Bin Lot Code associated with this Packrun
|
|
8875
9071
|
*/
|
|
8876
|
-
freshPackBinLotCode?: string;
|
|
9072
|
+
freshPackBinLotCode?: string | null;
|
|
8877
9073
|
/**
|
|
8878
9074
|
* The FreshPack Produce Code associated with this Packrun
|
|
8879
9075
|
*/
|
|
8880
|
-
freshPackProduceCode?: string;
|
|
9076
|
+
freshPackProduceCode?: string | null;
|
|
8881
9077
|
};
|
|
8882
9078
|
/**
|
|
8883
9079
|
* The Update Data for a Packrun
|
|
@@ -8906,11 +9102,11 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackrunController'
|
|
|
8906
9102
|
/**
|
|
8907
9103
|
* When this Packrun was Started
|
|
8908
9104
|
*/
|
|
8909
|
-
startTimestamp?: Date;
|
|
9105
|
+
startTimestamp?: Date | null;
|
|
8910
9106
|
/**
|
|
8911
9107
|
* When this Packrun was Finished
|
|
8912
9108
|
*/
|
|
8913
|
-
finishTimestamp?: Date;
|
|
9109
|
+
finishTimestamp?: Date | null;
|
|
8914
9110
|
/**
|
|
8915
9111
|
* The Variety for this Packrun
|
|
8916
9112
|
*/
|
|
@@ -8918,7 +9114,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackrunController'
|
|
|
8918
9114
|
/**
|
|
8919
9115
|
* The Growing Method for this Packrun
|
|
8920
9116
|
*/
|
|
8921
|
-
growingMethodId?: string;
|
|
9117
|
+
growingMethodId?: string | null;
|
|
8922
9118
|
/**
|
|
8923
9119
|
* The Number of Allocated Bins for this Packrun
|
|
8924
9120
|
*/
|
|
@@ -8930,15 +9126,32 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackrunController'
|
|
|
8930
9126
|
/**
|
|
8931
9127
|
* The FreshPack Grader ID associated with this Packrun
|
|
8932
9128
|
*/
|
|
8933
|
-
freshPackGraderId?: number;
|
|
9129
|
+
freshPackGraderId?: number | null;
|
|
8934
9130
|
/**
|
|
8935
9131
|
* The FreshPack Bin Lot Code associated with this Packrun
|
|
8936
9132
|
*/
|
|
8937
|
-
freshPackBinLotCode?: string;
|
|
9133
|
+
freshPackBinLotCode?: string | null;
|
|
8938
9134
|
/**
|
|
8939
9135
|
* The FreshPack Produce Code associated with this Packrun
|
|
8940
9136
|
*/
|
|
8941
|
-
freshPackProduceCode?: string;
|
|
9137
|
+
freshPackProduceCode?: string | null;
|
|
9138
|
+
};
|
|
9139
|
+
/**
|
|
9140
|
+
* A **UserAccount** Type
|
|
9141
|
+
*/
|
|
9142
|
+
export type UserAccount = {
|
|
9143
|
+
/**
|
|
9144
|
+
* The User Account ID
|
|
9145
|
+
*/
|
|
9146
|
+
id: string | null;
|
|
9147
|
+
/**
|
|
9148
|
+
* The User's First Name
|
|
9149
|
+
*/
|
|
9150
|
+
firstName: string | null;
|
|
9151
|
+
/**
|
|
9152
|
+
* The User's Last Name
|
|
9153
|
+
*/
|
|
9154
|
+
lastName: string | null;
|
|
8942
9155
|
};
|
|
8943
9156
|
/**
|
|
8944
9157
|
* A **CommentItem** Type
|
|
@@ -8948,18 +9161,19 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackrunController'
|
|
|
8948
9161
|
* The Comment ID
|
|
8949
9162
|
*/
|
|
8950
9163
|
id: string;
|
|
9164
|
+
userAccount: UserAccount;
|
|
8951
9165
|
/**
|
|
8952
9166
|
* The Content of the Comment
|
|
8953
9167
|
*/
|
|
8954
|
-
content: string;
|
|
9168
|
+
content: string | null;
|
|
8955
9169
|
/**
|
|
8956
9170
|
* When the Comment was Created
|
|
8957
9171
|
*/
|
|
8958
|
-
createdTimestamp: Date;
|
|
9172
|
+
createdTimestamp: Date | null;
|
|
8959
9173
|
/**
|
|
8960
9174
|
* When the Comment was last Updated
|
|
8961
9175
|
*/
|
|
8962
|
-
updatedTimestamp: Date;
|
|
9176
|
+
updatedTimestamp: Date | null;
|
|
8963
9177
|
};
|
|
8964
9178
|
/**
|
|
8965
9179
|
* A **TimeBatchItem** Type
|
|
@@ -9122,15 +9336,15 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackrunController'
|
|
|
9122
9336
|
/**
|
|
9123
9337
|
* The Maturity Area
|
|
9124
9338
|
*/
|
|
9125
|
-
maturityArea: string;
|
|
9339
|
+
maturityArea: string | null;
|
|
9126
9340
|
/**
|
|
9127
9341
|
* When the Packrun was Started
|
|
9128
9342
|
*/
|
|
9129
|
-
startTimestamp: Date;
|
|
9343
|
+
startTimestamp: Date | null;
|
|
9130
9344
|
/**
|
|
9131
9345
|
* When the Packrun was Finished
|
|
9132
9346
|
*/
|
|
9133
|
-
finishTimestamp: Date;
|
|
9347
|
+
finishTimestamp: Date | null;
|
|
9134
9348
|
/**
|
|
9135
9349
|
* The Number of Bins Allocated for the Packrun
|
|
9136
9350
|
*/
|
|
@@ -9154,7 +9368,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackrunController'
|
|
|
9154
9368
|
/**
|
|
9155
9369
|
* The Packing Line Name
|
|
9156
9370
|
*/
|
|
9157
|
-
packingLineName: string;
|
|
9371
|
+
packingLineName: string | null;
|
|
9158
9372
|
/**
|
|
9159
9373
|
* An Array of Class Types for the Packing Line
|
|
9160
9374
|
*/
|
|
@@ -9236,11 +9450,11 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackrunController'
|
|
|
9236
9450
|
/**
|
|
9237
9451
|
* When the Packrun was Started
|
|
9238
9452
|
*/
|
|
9239
|
-
startTimestamp: Date;
|
|
9453
|
+
startTimestamp: Date | null;
|
|
9240
9454
|
/**
|
|
9241
9455
|
* When the Packrun was Finished
|
|
9242
9456
|
*/
|
|
9243
|
-
finishTimestamp: Date;
|
|
9457
|
+
finishTimestamp: Date | null;
|
|
9244
9458
|
/**
|
|
9245
9459
|
* The Packing Line ID
|
|
9246
9460
|
*/
|
|
@@ -9248,7 +9462,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackrunController'
|
|
|
9248
9462
|
/**
|
|
9249
9463
|
* The Packing Line Name
|
|
9250
9464
|
*/
|
|
9251
|
-
packingLineName: string;
|
|
9465
|
+
packingLineName: string | null;
|
|
9252
9466
|
/**
|
|
9253
9467
|
* The Grower Name
|
|
9254
9468
|
*/
|
|
@@ -9260,7 +9474,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackrunController'
|
|
|
9260
9474
|
/**
|
|
9261
9475
|
* The Maturity Area
|
|
9262
9476
|
*/
|
|
9263
|
-
maturityArea: string;
|
|
9477
|
+
maturityArea: string | null;
|
|
9264
9478
|
/**
|
|
9265
9479
|
* The Number of Bins Allocated for the Packrun
|
|
9266
9480
|
*/
|
|
@@ -9296,11 +9510,11 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackrunController'
|
|
|
9296
9510
|
/**
|
|
9297
9511
|
* Whether the Soft-Sort Events Data is considered accurate or not
|
|
9298
9512
|
*/
|
|
9299
|
-
softSortEventsIsAccurate: boolean;
|
|
9513
|
+
softSortEventsIsAccurate: boolean | null;
|
|
9300
9514
|
/**
|
|
9301
9515
|
* A Reason for why the Soft-Sort Events Data is not accurate. Applies when `softSortEventsIsAccurate` is false
|
|
9302
9516
|
*/
|
|
9303
|
-
softSortEventsNotAccurateReason: string;
|
|
9517
|
+
softSortEventsNotAccurateReason: string | null;
|
|
9304
9518
|
};
|
|
9305
9519
|
}
|
|
9306
9520
|
import PackrunModel from "@ricado/api-client/Models/Packhouse/Site/PackrunModel";
|
|
@@ -9419,7 +9633,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinControlle
|
|
|
9419
9633
|
* @param {RejectBinController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
9420
9634
|
* @return {Promise<RejectBinModel[]>}
|
|
9421
9635
|
*/
|
|
9422
|
-
static getAll(siteId: number, queryParameters?: RejectBinController.GetAllQueryParameters): Promise<RejectBinModel[]>;
|
|
9636
|
+
static getAll(siteId: number, queryParameters?: RejectBinController.GetAllQueryParameters | undefined): Promise<RejectBinModel[]>;
|
|
9423
9637
|
/**
|
|
9424
9638
|
* Create a Reject Bin [POST /packhouse/sites/{siteId}/reject-bins]
|
|
9425
9639
|
*
|
|
@@ -9480,11 +9694,11 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinControlle
|
|
|
9480
9694
|
/**
|
|
9481
9695
|
* The Tare Weight Captured by the Reject Bin Scale
|
|
9482
9696
|
*/
|
|
9483
|
-
tareWeight?: number;
|
|
9697
|
+
tareWeight?: number | null;
|
|
9484
9698
|
/**
|
|
9485
9699
|
* When this Reject Bin was Finalized (No new Weights)
|
|
9486
9700
|
*/
|
|
9487
|
-
finalizedTimestamp?: Date;
|
|
9701
|
+
finalizedTimestamp?: Date | null;
|
|
9488
9702
|
/**
|
|
9489
9703
|
* The Multi-Grower Bins that will be submitted to FreshPack
|
|
9490
9704
|
*/
|
|
@@ -9509,16 +9723,33 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinControlle
|
|
|
9509
9723
|
/**
|
|
9510
9724
|
* The Tare Weight Captured by the Reject Bin Scale
|
|
9511
9725
|
*/
|
|
9512
|
-
tareWeight?: number;
|
|
9726
|
+
tareWeight?: number | null;
|
|
9513
9727
|
/**
|
|
9514
9728
|
* When this Reject Bin was Finalized (No new Weights)
|
|
9515
9729
|
*/
|
|
9516
|
-
finalizedTimestamp?: Date;
|
|
9730
|
+
finalizedTimestamp?: Date | null;
|
|
9517
9731
|
/**
|
|
9518
9732
|
* The Multi-Grower Bins that will be submitted to FreshPack
|
|
9519
9733
|
*/
|
|
9520
9734
|
freshPackMultiGrowerBins?: any[];
|
|
9521
9735
|
};
|
|
9736
|
+
/**
|
|
9737
|
+
* A **UserAccount** Type
|
|
9738
|
+
*/
|
|
9739
|
+
export type UserAccount = {
|
|
9740
|
+
/**
|
|
9741
|
+
* The User Account ID
|
|
9742
|
+
*/
|
|
9743
|
+
id: string | null;
|
|
9744
|
+
/**
|
|
9745
|
+
* The User's First Name
|
|
9746
|
+
*/
|
|
9747
|
+
firstName: string | null;
|
|
9748
|
+
/**
|
|
9749
|
+
* The User's Last Name
|
|
9750
|
+
*/
|
|
9751
|
+
lastName: string | null;
|
|
9752
|
+
};
|
|
9522
9753
|
/**
|
|
9523
9754
|
* A **CommentItem** Type
|
|
9524
9755
|
*/
|
|
@@ -9527,18 +9758,19 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinControlle
|
|
|
9527
9758
|
* The Comment ID
|
|
9528
9759
|
*/
|
|
9529
9760
|
id: string;
|
|
9761
|
+
userAccount: UserAccount;
|
|
9530
9762
|
/**
|
|
9531
9763
|
* The Content of the Comment
|
|
9532
9764
|
*/
|
|
9533
|
-
content: string;
|
|
9765
|
+
content: string | null;
|
|
9534
9766
|
/**
|
|
9535
9767
|
* When the Comment was Created
|
|
9536
9768
|
*/
|
|
9537
|
-
createdTimestamp: Date;
|
|
9769
|
+
createdTimestamp: Date | null;
|
|
9538
9770
|
/**
|
|
9539
9771
|
* When the Comment was last Updated
|
|
9540
9772
|
*/
|
|
9541
|
-
updatedTimestamp: Date;
|
|
9773
|
+
updatedTimestamp: Date | null;
|
|
9542
9774
|
};
|
|
9543
9775
|
}
|
|
9544
9776
|
import RejectBinModel from "@ricado/api-client/Models/Packhouse/Site/RejectBinModel";
|
|
@@ -9592,7 +9824,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinScaleCont
|
|
|
9592
9824
|
* @param {RejectBinScaleController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
9593
9825
|
* @return {Promise<RejectBinScaleModel[]>}
|
|
9594
9826
|
*/
|
|
9595
|
-
static getAll(siteId: number, queryParameters?: RejectBinScaleController.GetAllQueryParameters): Promise<RejectBinScaleModel[]>;
|
|
9827
|
+
static getAll(siteId: number, queryParameters?: RejectBinScaleController.GetAllQueryParameters | undefined): Promise<RejectBinScaleModel[]>;
|
|
9596
9828
|
/**
|
|
9597
9829
|
* Create a Reject Bin Scale [POST /packhouse/sites/{siteId}/reject-bin-scales]
|
|
9598
9830
|
*
|
|
@@ -9612,7 +9844,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinScaleCont
|
|
|
9612
9844
|
/**
|
|
9613
9845
|
* The RTU this Reject Bin Scale belongs to
|
|
9614
9846
|
*/
|
|
9615
|
-
rtuId?: number;
|
|
9847
|
+
rtuId?: number | null;
|
|
9616
9848
|
/**
|
|
9617
9849
|
* The Name of this Reject Bin Scale
|
|
9618
9850
|
*/
|
|
@@ -9624,11 +9856,11 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinScaleCont
|
|
|
9624
9856
|
/**
|
|
9625
9857
|
* The Permanent Object that provides the Next Packrun for this Reject Bin Scale
|
|
9626
9858
|
*/
|
|
9627
|
-
packrunSourceId?: string;
|
|
9859
|
+
packrunSourceId?: string | null;
|
|
9628
9860
|
/**
|
|
9629
9861
|
* The Packrun Group this Reject Bin Scale is a part of
|
|
9630
9862
|
*/
|
|
9631
|
-
packrunGroup?: number;
|
|
9863
|
+
packrunGroup?: number | null;
|
|
9632
9864
|
};
|
|
9633
9865
|
/**
|
|
9634
9866
|
* The Create Data for a Reject Bin Scale
|
|
@@ -9637,7 +9869,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinScaleCont
|
|
|
9637
9869
|
/**
|
|
9638
9870
|
* The RTU this Reject Bin Scale belongs to
|
|
9639
9871
|
*/
|
|
9640
|
-
rtuId?: number;
|
|
9872
|
+
rtuId?: number | null;
|
|
9641
9873
|
/**
|
|
9642
9874
|
* The Name of this Reject Bin Scale
|
|
9643
9875
|
*/
|
|
@@ -9653,11 +9885,11 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinScaleCont
|
|
|
9653
9885
|
/**
|
|
9654
9886
|
* The Permanent Object that provides the Next Packrun for this Reject Bin Scale
|
|
9655
9887
|
*/
|
|
9656
|
-
packrunSourceId?: string;
|
|
9888
|
+
packrunSourceId?: string | null;
|
|
9657
9889
|
/**
|
|
9658
9890
|
* The Packrun Group this Reject Bin Scale is a part of
|
|
9659
9891
|
*/
|
|
9660
|
-
packrunGroup?: number;
|
|
9892
|
+
packrunGroup?: number | null;
|
|
9661
9893
|
/**
|
|
9662
9894
|
* An Array of Sources that deliver Fruit to this Reject Bin Scale
|
|
9663
9895
|
*/
|
|
@@ -9666,52 +9898,52 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinScaleCont
|
|
|
9666
9898
|
* The Auto Packrun Change Configuration for this Reject Bin Scale
|
|
9667
9899
|
*/
|
|
9668
9900
|
autoPackrunChange?: {
|
|
9669
|
-
delay: number;
|
|
9670
|
-
};
|
|
9901
|
+
delay: number | null;
|
|
9902
|
+
} | null;
|
|
9671
9903
|
/**
|
|
9672
9904
|
* Whether this Reject Bin Scale supports Live Weighing
|
|
9673
9905
|
*/
|
|
9674
|
-
supportsLiveWeighing?: boolean;
|
|
9906
|
+
supportsLiveWeighing?: boolean | null;
|
|
9675
9907
|
/**
|
|
9676
9908
|
* The Minimum Weight Change Required to Automatically Start Live Weighing
|
|
9677
9909
|
*/
|
|
9678
|
-
autoWeighingStartThreshold?: number;
|
|
9910
|
+
autoWeighingStartThreshold?: number | null;
|
|
9679
9911
|
/**
|
|
9680
9912
|
* The Delay in Milliseconds before Auto Live Weighing would Start
|
|
9681
9913
|
*/
|
|
9682
|
-
autoWeighingStartDelay?: number;
|
|
9914
|
+
autoWeighingStartDelay?: number | null;
|
|
9683
9915
|
/**
|
|
9684
9916
|
* The Minimum Weight Change Required to Automatically Finish Live Weighing
|
|
9685
9917
|
*/
|
|
9686
|
-
autoWeighingFinishThreshold?: number;
|
|
9918
|
+
autoWeighingFinishThreshold?: number | null;
|
|
9687
9919
|
/**
|
|
9688
9920
|
* The Delay in Milliseconds before Auto Live Weighing would Finish
|
|
9689
9921
|
*/
|
|
9690
|
-
autoWeighingFinishDelay?: number;
|
|
9922
|
+
autoWeighingFinishDelay?: number | null;
|
|
9691
9923
|
/**
|
|
9692
9924
|
* The Maximum Duration in Milliseconds before a Manual Intervention would end
|
|
9693
9925
|
*/
|
|
9694
|
-
manualInterventionMaximumDuration?: number;
|
|
9926
|
+
manualInterventionMaximumDuration?: number | null;
|
|
9695
9927
|
/**
|
|
9696
9928
|
* The Maximum Weight Increase allowed within a single Live Weighing Update Interval
|
|
9697
9929
|
*/
|
|
9698
|
-
liveWeighingIncreaseTolerance?: number;
|
|
9930
|
+
liveWeighingIncreaseTolerance?: number | null;
|
|
9699
9931
|
/**
|
|
9700
9932
|
* The Maximum Weight Decrease allowed within a single Live Weighing Update Interval
|
|
9701
9933
|
*/
|
|
9702
|
-
liveWeighingDecreaseTolerance?: number;
|
|
9934
|
+
liveWeighingDecreaseTolerance?: number | null;
|
|
9703
9935
|
/**
|
|
9704
9936
|
* The Interval in Milliseconds between Live Weighing Updates
|
|
9705
9937
|
*/
|
|
9706
|
-
liveWeighingUpdateInterval?: number;
|
|
9938
|
+
liveWeighingUpdateInterval?: number | null;
|
|
9707
9939
|
/**
|
|
9708
9940
|
* Whether the Loadcell Stable Status is used to ignore Changes during Live Weighing
|
|
9709
9941
|
*/
|
|
9710
|
-
liveWeighingUsesStableStatus?: boolean;
|
|
9942
|
+
liveWeighingUsesStableStatus?: boolean | null;
|
|
9711
9943
|
/**
|
|
9712
9944
|
* The Maximum Weight Change allowed while Live Weighing before an Incorrect Operation is Logged
|
|
9713
9945
|
*/
|
|
9714
|
-
incorrectOperationTolerance?: number;
|
|
9946
|
+
incorrectOperationTolerance?: number | null;
|
|
9715
9947
|
/**
|
|
9716
9948
|
* The FreshPack Integration Configuration for this Reject Bin Scale
|
|
9717
9949
|
*/
|
|
@@ -9736,11 +9968,11 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinScaleCont
|
|
|
9736
9968
|
/**
|
|
9737
9969
|
* The Permanent Object that provides the Next Packrun for this Reject Bin Scale
|
|
9738
9970
|
*/
|
|
9739
|
-
packrunSourceId?: string;
|
|
9971
|
+
packrunSourceId?: string | null;
|
|
9740
9972
|
/**
|
|
9741
9973
|
* The Packrun Group this Reject Bin Scale is a part of
|
|
9742
9974
|
*/
|
|
9743
|
-
packrunGroup?: number;
|
|
9975
|
+
packrunGroup?: number | null;
|
|
9744
9976
|
/**
|
|
9745
9977
|
* An Array of Sources that deliver Fruit to this Reject Bin Scale
|
|
9746
9978
|
*/
|
|
@@ -9749,52 +9981,52 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinScaleCont
|
|
|
9749
9981
|
* The Auto Packrun Change Configuration for this Reject Bin Scale
|
|
9750
9982
|
*/
|
|
9751
9983
|
autoPackrunChange?: {
|
|
9752
|
-
delay: number;
|
|
9753
|
-
};
|
|
9984
|
+
delay: number | null;
|
|
9985
|
+
} | null;
|
|
9754
9986
|
/**
|
|
9755
9987
|
* Whether this Reject Bin Scale supports Live Weighing
|
|
9756
9988
|
*/
|
|
9757
|
-
supportsLiveWeighing?: boolean;
|
|
9989
|
+
supportsLiveWeighing?: boolean | null;
|
|
9758
9990
|
/**
|
|
9759
9991
|
* The Minimum Weight Change Required to Automatically Start Live Weighing
|
|
9760
9992
|
*/
|
|
9761
|
-
autoWeighingStartThreshold?: number;
|
|
9993
|
+
autoWeighingStartThreshold?: number | null;
|
|
9762
9994
|
/**
|
|
9763
9995
|
* The Delay in Milliseconds before Auto Live Weighing would Start
|
|
9764
9996
|
*/
|
|
9765
|
-
autoWeighingStartDelay?: number;
|
|
9997
|
+
autoWeighingStartDelay?: number | null;
|
|
9766
9998
|
/**
|
|
9767
9999
|
* The Minimum Weight Change Required to Automatically Finish Live Weighing
|
|
9768
10000
|
*/
|
|
9769
|
-
autoWeighingFinishThreshold?: number;
|
|
10001
|
+
autoWeighingFinishThreshold?: number | null;
|
|
9770
10002
|
/**
|
|
9771
10003
|
* The Delay in Milliseconds before Auto Live Weighing would Finish
|
|
9772
10004
|
*/
|
|
9773
|
-
autoWeighingFinishDelay?: number;
|
|
10005
|
+
autoWeighingFinishDelay?: number | null;
|
|
9774
10006
|
/**
|
|
9775
10007
|
* The Maximum Duration in Milliseconds before a Manual Intervention would end
|
|
9776
10008
|
*/
|
|
9777
|
-
manualInterventionMaximumDuration?: number;
|
|
10009
|
+
manualInterventionMaximumDuration?: number | null;
|
|
9778
10010
|
/**
|
|
9779
10011
|
* The Maximum Weight Increase allowed within a single Live Weighing Update Interval
|
|
9780
10012
|
*/
|
|
9781
|
-
liveWeighingIncreaseTolerance?: number;
|
|
10013
|
+
liveWeighingIncreaseTolerance?: number | null;
|
|
9782
10014
|
/**
|
|
9783
10015
|
* The Maximum Weight Decrease allowed within a single Live Weighing Update Interval
|
|
9784
10016
|
*/
|
|
9785
|
-
liveWeighingDecreaseTolerance?: number;
|
|
10017
|
+
liveWeighingDecreaseTolerance?: number | null;
|
|
9786
10018
|
/**
|
|
9787
10019
|
* The Interval in Milliseconds between Live Weighing Updates
|
|
9788
10020
|
*/
|
|
9789
|
-
liveWeighingUpdateInterval?: number;
|
|
10021
|
+
liveWeighingUpdateInterval?: number | null;
|
|
9790
10022
|
/**
|
|
9791
10023
|
* Whether the Loadcell Stable Status is used to ignore Changes during Live Weighing
|
|
9792
10024
|
*/
|
|
9793
|
-
liveWeighingUsesStableStatus?: boolean;
|
|
10025
|
+
liveWeighingUsesStableStatus?: boolean | null;
|
|
9794
10026
|
/**
|
|
9795
10027
|
* The Maximum Weight Change allowed while Live Weighing before an Incorrect Operation is Logged
|
|
9796
10028
|
*/
|
|
9797
|
-
incorrectOperationTolerance?: number;
|
|
10029
|
+
incorrectOperationTolerance?: number | null;
|
|
9798
10030
|
/**
|
|
9799
10031
|
* The FreshPack Integration Configuration for this Reject Bin Scale
|
|
9800
10032
|
*/
|
|
@@ -9917,7 +10149,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinWeightCon
|
|
|
9917
10149
|
* @param {RejectBinWeightController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
9918
10150
|
* @return {Promise<RejectBinWeightModel[]>}
|
|
9919
10151
|
*/
|
|
9920
|
-
static getAll(siteId: number, queryParameters?: RejectBinWeightController.GetAllQueryParameters): Promise<RejectBinWeightModel[]>;
|
|
10152
|
+
static getAll(siteId: number, queryParameters?: RejectBinWeightController.GetAllQueryParameters | undefined): Promise<RejectBinWeightModel[]>;
|
|
9921
10153
|
/**
|
|
9922
10154
|
* Create a Reject Bin Weight [POST /packhouse/sites/{siteId}/reject-bin-weights]
|
|
9923
10155
|
*
|
|
@@ -9945,7 +10177,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinWeightCon
|
|
|
9945
10177
|
/**
|
|
9946
10178
|
* The Packrun this Reject Weight is associated with
|
|
9947
10179
|
*/
|
|
9948
|
-
packrunId?: string;
|
|
10180
|
+
packrunId?: string | null;
|
|
9949
10181
|
/**
|
|
9950
10182
|
* Filter by the Timestamp when this Reject Bin Weight was Created. Results Greater than or Equal to Timestamp
|
|
9951
10183
|
*/
|
|
@@ -9974,7 +10206,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinWeightCon
|
|
|
9974
10206
|
/**
|
|
9975
10207
|
* The Packrun this Reject Weight is associated with
|
|
9976
10208
|
*/
|
|
9977
|
-
packrunId?: string;
|
|
10209
|
+
packrunId?: string | null;
|
|
9978
10210
|
/**
|
|
9979
10211
|
* The Net Weight Captured by the Reject Bin Scale
|
|
9980
10212
|
*/
|
|
@@ -10003,7 +10235,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinWeightCon
|
|
|
10003
10235
|
/**
|
|
10004
10236
|
* The Packrun this Reject Weight is associated with
|
|
10005
10237
|
*/
|
|
10006
|
-
packrunId?: string;
|
|
10238
|
+
packrunId?: string | null;
|
|
10007
10239
|
/**
|
|
10008
10240
|
* The Net Weight Captured by the Reject Bin Scale
|
|
10009
10241
|
*/
|
|
@@ -10017,6 +10249,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinWeightCon
|
|
|
10017
10249
|
*/
|
|
10018
10250
|
freshPackMultiGrowerBinWeights?: any[];
|
|
10019
10251
|
};
|
|
10252
|
+
/**
|
|
10253
|
+
* A **UserAccount** Type
|
|
10254
|
+
*/
|
|
10255
|
+
export type UserAccount = {
|
|
10256
|
+
/**
|
|
10257
|
+
* The User Account ID
|
|
10258
|
+
*/
|
|
10259
|
+
id: string | null;
|
|
10260
|
+
/**
|
|
10261
|
+
* The User's First Name
|
|
10262
|
+
*/
|
|
10263
|
+
firstName: string | null;
|
|
10264
|
+
/**
|
|
10265
|
+
* The User's Last Name
|
|
10266
|
+
*/
|
|
10267
|
+
lastName: string | null;
|
|
10268
|
+
};
|
|
10020
10269
|
/**
|
|
10021
10270
|
* A **CommentItem** Type
|
|
10022
10271
|
*/
|
|
@@ -10025,18 +10274,19 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinWeightCon
|
|
|
10025
10274
|
* The Comment ID
|
|
10026
10275
|
*/
|
|
10027
10276
|
id: string;
|
|
10277
|
+
userAccount: UserAccount;
|
|
10028
10278
|
/**
|
|
10029
10279
|
* The Content of the Comment
|
|
10030
10280
|
*/
|
|
10031
|
-
content: string;
|
|
10281
|
+
content: string | null;
|
|
10032
10282
|
/**
|
|
10033
10283
|
* When the Comment was Created
|
|
10034
10284
|
*/
|
|
10035
|
-
createdTimestamp: Date;
|
|
10285
|
+
createdTimestamp: Date | null;
|
|
10036
10286
|
/**
|
|
10037
10287
|
* When the Comment was last Updated
|
|
10038
10288
|
*/
|
|
10039
|
-
updatedTimestamp: Date;
|
|
10289
|
+
updatedTimestamp: Date | null;
|
|
10040
10290
|
};
|
|
10041
10291
|
}
|
|
10042
10292
|
import RejectBinWeightModel from "@ricado/api-client/Models/Packhouse/Site/RejectBinWeightModel";
|
|
@@ -10155,7 +10405,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftController' {
|
|
|
10155
10405
|
* @param {ShiftController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
10156
10406
|
* @return {Promise<ShiftModel[]>}
|
|
10157
10407
|
*/
|
|
10158
|
-
static getAll(siteId: number, queryParameters?: ShiftController.GetAllQueryParameters): Promise<ShiftModel[]>;
|
|
10408
|
+
static getAll(siteId: number, queryParameters?: ShiftController.GetAllQueryParameters | undefined): Promise<ShiftModel[]>;
|
|
10159
10409
|
/**
|
|
10160
10410
|
* Create a Shift [POST /packhouse/sites/{siteId}/shifts]
|
|
10161
10411
|
*
|
|
@@ -10183,7 +10433,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftController' {
|
|
|
10183
10433
|
/**
|
|
10184
10434
|
* The Name of the Line Manager for this Shift
|
|
10185
10435
|
*/
|
|
10186
|
-
lineManagerName?: string;
|
|
10436
|
+
lineManagerName?: string | null;
|
|
10187
10437
|
/**
|
|
10188
10438
|
* Filter by the Timestamp when Shifts were Created. Results Greater than or Equal to Timestamp
|
|
10189
10439
|
*/
|
|
@@ -10236,39 +10486,39 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftController' {
|
|
|
10236
10486
|
/**
|
|
10237
10487
|
* The Name of the Line Manager for this Shift
|
|
10238
10488
|
*/
|
|
10239
|
-
lineManagerName?: string;
|
|
10489
|
+
lineManagerName?: string | null;
|
|
10240
10490
|
/**
|
|
10241
10491
|
* The Target Number of Bins to Tip for this Shift
|
|
10242
10492
|
*/
|
|
10243
|
-
binsTippedTarget?: number;
|
|
10493
|
+
binsTippedTarget?: number | null;
|
|
10244
10494
|
/**
|
|
10245
10495
|
* DEPRECATED* The Initial Number of People working in all Areas except Class 2 for this Hour
|
|
10246
10496
|
*/
|
|
10247
|
-
initialClass1Manning?: number;
|
|
10497
|
+
initialClass1Manning?: number | null;
|
|
10248
10498
|
/**
|
|
10249
10499
|
* DEPRECATED* The Initial Number of People working in the Class 2 Area for this Hour
|
|
10250
10500
|
*/
|
|
10251
|
-
initialClass2Manning?: number;
|
|
10501
|
+
initialClass2Manning?: number | null;
|
|
10252
10502
|
/**
|
|
10253
10503
|
* When this Shift was Ready for Packing
|
|
10254
10504
|
*/
|
|
10255
|
-
readyTimestamp?: Date;
|
|
10505
|
+
readyTimestamp?: Date | null;
|
|
10256
10506
|
/**
|
|
10257
10507
|
* When this Shift was Started
|
|
10258
10508
|
*/
|
|
10259
|
-
startTimestamp?: Date;
|
|
10509
|
+
startTimestamp?: Date | null;
|
|
10260
10510
|
/**
|
|
10261
10511
|
* When this Shift was Finished
|
|
10262
10512
|
*/
|
|
10263
|
-
finishTimestamp?: Date;
|
|
10513
|
+
finishTimestamp?: Date | null;
|
|
10264
10514
|
/**
|
|
10265
10515
|
* When this Shift was Published
|
|
10266
10516
|
*/
|
|
10267
|
-
publishTimestamp?: Date;
|
|
10517
|
+
publishTimestamp?: Date | null;
|
|
10268
10518
|
/**
|
|
10269
10519
|
* An Optional Rating between 1 and 10 on how Satisfied the Line Manager was with this Shift
|
|
10270
10520
|
*/
|
|
10271
|
-
satisfactionRating?: number;
|
|
10521
|
+
satisfactionRating?: number | null;
|
|
10272
10522
|
/**
|
|
10273
10523
|
* DEPRECATED* An Optional Array of Handover Notes for this Shift
|
|
10274
10524
|
*/
|
|
@@ -10301,39 +10551,39 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftController' {
|
|
|
10301
10551
|
/**
|
|
10302
10552
|
* The Name of the Line Manager for this Shift
|
|
10303
10553
|
*/
|
|
10304
|
-
lineManagerName?: string;
|
|
10554
|
+
lineManagerName?: string | null;
|
|
10305
10555
|
/**
|
|
10306
10556
|
* The Target Number of Bins to Tip for this Shift
|
|
10307
10557
|
*/
|
|
10308
|
-
binsTippedTarget?: number;
|
|
10558
|
+
binsTippedTarget?: number | null;
|
|
10309
10559
|
/**
|
|
10310
10560
|
* DEPRECATED* The Initial Number of People working in all Areas except Class 2 for this Hour
|
|
10311
10561
|
*/
|
|
10312
|
-
initialClass1Manning?: number;
|
|
10562
|
+
initialClass1Manning?: number | null;
|
|
10313
10563
|
/**
|
|
10314
10564
|
* DEPRECATED* The Initial Number of People working in the Class 2 Area for this Hour
|
|
10315
10565
|
*/
|
|
10316
|
-
initialClass2Manning?: number;
|
|
10566
|
+
initialClass2Manning?: number | null;
|
|
10317
10567
|
/**
|
|
10318
10568
|
* When this Shift was Ready for Packing
|
|
10319
10569
|
*/
|
|
10320
|
-
readyTimestamp?: Date;
|
|
10570
|
+
readyTimestamp?: Date | null;
|
|
10321
10571
|
/**
|
|
10322
10572
|
* When this Shift was Started
|
|
10323
10573
|
*/
|
|
10324
|
-
startTimestamp?: Date;
|
|
10574
|
+
startTimestamp?: Date | null;
|
|
10325
10575
|
/**
|
|
10326
10576
|
* When this Shift was Finished
|
|
10327
10577
|
*/
|
|
10328
|
-
finishTimestamp?: Date;
|
|
10578
|
+
finishTimestamp?: Date | null;
|
|
10329
10579
|
/**
|
|
10330
10580
|
* When this Shift was Published
|
|
10331
10581
|
*/
|
|
10332
|
-
publishTimestamp?: Date;
|
|
10582
|
+
publishTimestamp?: Date | null;
|
|
10333
10583
|
/**
|
|
10334
10584
|
* An Optional Rating between 1 and 10 on how Satisfied the Line Manager was with this Shift
|
|
10335
10585
|
*/
|
|
10336
|
-
satisfactionRating?: number;
|
|
10586
|
+
satisfactionRating?: number | null;
|
|
10337
10587
|
/**
|
|
10338
10588
|
* DEPRECATED* An Optional Array of Handover Notes for this Shift
|
|
10339
10589
|
*/
|
|
@@ -10347,6 +10597,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftController' {
|
|
|
10347
10597
|
*/
|
|
10348
10598
|
schedule?: ShiftSchedule;
|
|
10349
10599
|
};
|
|
10600
|
+
/**
|
|
10601
|
+
* A **UserAccount** Type
|
|
10602
|
+
*/
|
|
10603
|
+
export type UserAccount = {
|
|
10604
|
+
/**
|
|
10605
|
+
* The User Account ID
|
|
10606
|
+
*/
|
|
10607
|
+
id: string | null;
|
|
10608
|
+
/**
|
|
10609
|
+
* The User's First Name
|
|
10610
|
+
*/
|
|
10611
|
+
firstName: string | null;
|
|
10612
|
+
/**
|
|
10613
|
+
* The User's Last Name
|
|
10614
|
+
*/
|
|
10615
|
+
lastName: string | null;
|
|
10616
|
+
};
|
|
10350
10617
|
/**
|
|
10351
10618
|
* A **CommentItem** Type
|
|
10352
10619
|
*/
|
|
@@ -10355,18 +10622,19 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftController' {
|
|
|
10355
10622
|
* The Comment ID
|
|
10356
10623
|
*/
|
|
10357
10624
|
id: string;
|
|
10625
|
+
userAccount: UserAccount;
|
|
10358
10626
|
/**
|
|
10359
10627
|
* The Content of the Comment
|
|
10360
10628
|
*/
|
|
10361
|
-
content: string;
|
|
10629
|
+
content: string | null;
|
|
10362
10630
|
/**
|
|
10363
10631
|
* When the Comment was Created
|
|
10364
10632
|
*/
|
|
10365
|
-
createdTimestamp: Date;
|
|
10633
|
+
createdTimestamp: Date | null;
|
|
10366
10634
|
/**
|
|
10367
10635
|
* When the Comment was last Updated
|
|
10368
10636
|
*/
|
|
10369
|
-
updatedTimestamp: Date;
|
|
10637
|
+
updatedTimestamp: Date | null;
|
|
10370
10638
|
};
|
|
10371
10639
|
/**
|
|
10372
10640
|
* A **ShiftHandoverNote** Type
|
|
@@ -10545,7 +10813,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftFocusMeetingC
|
|
|
10545
10813
|
* @param {ShiftFocusMeetingController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
10546
10814
|
* @return {Promise<ShiftFocusMeetingModel[]>}
|
|
10547
10815
|
*/
|
|
10548
|
-
static getAll(siteId: number, queryParameters?: ShiftFocusMeetingController.GetAllQueryParameters): Promise<ShiftFocusMeetingModel[]>;
|
|
10816
|
+
static getAll(siteId: number, queryParameters?: ShiftFocusMeetingController.GetAllQueryParameters | undefined): Promise<ShiftFocusMeetingModel[]>;
|
|
10549
10817
|
/**
|
|
10550
10818
|
* Create a Shift Focus Meeting [POST /packhouse/sites/{siteId}/shift-focus-meetings]
|
|
10551
10819
|
*
|
|
@@ -10634,19 +10902,19 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftFocusMeetingC
|
|
|
10634
10902
|
/**
|
|
10635
10903
|
* When this Focus Meeting was Started
|
|
10636
10904
|
*/
|
|
10637
|
-
startTimestamp?: Date;
|
|
10905
|
+
startTimestamp?: Date | null;
|
|
10638
10906
|
/**
|
|
10639
10907
|
* When this Focus Meeting was Completed
|
|
10640
10908
|
*/
|
|
10641
|
-
finishTimestamp?: Date;
|
|
10909
|
+
finishTimestamp?: Date | null;
|
|
10642
10910
|
/**
|
|
10643
10911
|
* An Optional Key Focus until the Next Meeting
|
|
10644
10912
|
*/
|
|
10645
|
-
nextKeyFocus?: string;
|
|
10913
|
+
nextKeyFocus?: string | null;
|
|
10646
10914
|
/**
|
|
10647
10915
|
* An Optional Rating between 1 and 10 on how Successful the Focus Meeting was
|
|
10648
10916
|
*/
|
|
10649
|
-
successRating?: number;
|
|
10917
|
+
successRating?: number | null;
|
|
10650
10918
|
};
|
|
10651
10919
|
/**
|
|
10652
10920
|
* The Update Data for a Shift Focus Meeting
|
|
@@ -10667,19 +10935,36 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftFocusMeetingC
|
|
|
10667
10935
|
/**
|
|
10668
10936
|
* When this Focus Meeting was Started
|
|
10669
10937
|
*/
|
|
10670
|
-
startTimestamp?: Date;
|
|
10938
|
+
startTimestamp?: Date | null;
|
|
10671
10939
|
/**
|
|
10672
10940
|
* When this Focus Meeting was Completed
|
|
10673
10941
|
*/
|
|
10674
|
-
finishTimestamp?: Date;
|
|
10942
|
+
finishTimestamp?: Date | null;
|
|
10675
10943
|
/**
|
|
10676
10944
|
* An Optional Key Focus until the Next Meeting
|
|
10677
10945
|
*/
|
|
10678
|
-
nextKeyFocus?: string;
|
|
10946
|
+
nextKeyFocus?: string | null;
|
|
10679
10947
|
/**
|
|
10680
10948
|
* An Optional Rating between 1 and 10 on how Successful the Focus Meeting was
|
|
10681
10949
|
*/
|
|
10682
|
-
successRating?: number;
|
|
10950
|
+
successRating?: number | null;
|
|
10951
|
+
};
|
|
10952
|
+
/**
|
|
10953
|
+
* A **UserAccount** Type
|
|
10954
|
+
*/
|
|
10955
|
+
export type UserAccount = {
|
|
10956
|
+
/**
|
|
10957
|
+
* The User Account ID
|
|
10958
|
+
*/
|
|
10959
|
+
id: string | null;
|
|
10960
|
+
/**
|
|
10961
|
+
* The User's First Name
|
|
10962
|
+
*/
|
|
10963
|
+
firstName: string | null;
|
|
10964
|
+
/**
|
|
10965
|
+
* The User's Last Name
|
|
10966
|
+
*/
|
|
10967
|
+
lastName: string | null;
|
|
10683
10968
|
};
|
|
10684
10969
|
/**
|
|
10685
10970
|
* A **CommentItem** Type
|
|
@@ -10689,18 +10974,19 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftFocusMeetingC
|
|
|
10689
10974
|
* The Comment ID
|
|
10690
10975
|
*/
|
|
10691
10976
|
id: string;
|
|
10977
|
+
userAccount: UserAccount;
|
|
10692
10978
|
/**
|
|
10693
10979
|
* The Content of the Comment
|
|
10694
10980
|
*/
|
|
10695
|
-
content: string;
|
|
10981
|
+
content: string | null;
|
|
10696
10982
|
/**
|
|
10697
10983
|
* When the Comment was Created
|
|
10698
10984
|
*/
|
|
10699
|
-
createdTimestamp: Date;
|
|
10985
|
+
createdTimestamp: Date | null;
|
|
10700
10986
|
/**
|
|
10701
10987
|
* When the Comment was last Updated
|
|
10702
10988
|
*/
|
|
10703
|
-
updatedTimestamp: Date;
|
|
10989
|
+
updatedTimestamp: Date | null;
|
|
10704
10990
|
};
|
|
10705
10991
|
}
|
|
10706
10992
|
import ShiftFocusMeetingModel from "@ricado/api-client/Models/Packhouse/Site/ShiftFocusMeetingModel";
|
|
@@ -10819,7 +11105,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftHourlyEntryCo
|
|
|
10819
11105
|
* @param {ShiftHourlyEntryController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
10820
11106
|
* @return {Promise<ShiftHourlyEntryModel[]>}
|
|
10821
11107
|
*/
|
|
10822
|
-
static getAll(siteId: number, queryParameters?: ShiftHourlyEntryController.GetAllQueryParameters): Promise<ShiftHourlyEntryModel[]>;
|
|
11108
|
+
static getAll(siteId: number, queryParameters?: ShiftHourlyEntryController.GetAllQueryParameters | undefined): Promise<ShiftHourlyEntryModel[]>;
|
|
10823
11109
|
/**
|
|
10824
11110
|
* Create a Shift Hourly Entry [POST /packhouse/sites/{siteId}/shift-hourly-entries]
|
|
10825
11111
|
*
|
|
@@ -10847,19 +11133,19 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftHourlyEntryCo
|
|
|
10847
11133
|
/**
|
|
10848
11134
|
* The Primary Issue Category for this Hourly Entry
|
|
10849
11135
|
*/
|
|
10850
|
-
primaryIssueCategory?: string;
|
|
11136
|
+
primaryIssueCategory?: string | null;
|
|
10851
11137
|
/**
|
|
10852
11138
|
* The Primary Issue Tag for this Hourly Entry
|
|
10853
11139
|
*/
|
|
10854
|
-
primaryIssueTag?: string;
|
|
11140
|
+
primaryIssueTag?: string | null;
|
|
10855
11141
|
/**
|
|
10856
11142
|
* The Secondary Issue Category for this Hourly Entry
|
|
10857
11143
|
*/
|
|
10858
|
-
secondaryIssueCategory?: string;
|
|
11144
|
+
secondaryIssueCategory?: string | null;
|
|
10859
11145
|
/**
|
|
10860
11146
|
* The Secondary Issue Tag for this Hourly Entry
|
|
10861
11147
|
*/
|
|
10862
|
-
secondaryIssueTag?: string;
|
|
11148
|
+
secondaryIssueTag?: string | null;
|
|
10863
11149
|
/**
|
|
10864
11150
|
* The Status of this Hourly Entry
|
|
10865
11151
|
*/
|
|
@@ -10924,35 +11210,35 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftHourlyEntryCo
|
|
|
10924
11210
|
/**
|
|
10925
11211
|
* The Number of People working in all Areas except Class 2 for this Hour
|
|
10926
11212
|
*/
|
|
10927
|
-
class1Manning?: number;
|
|
11213
|
+
class1Manning?: number | null;
|
|
10928
11214
|
/**
|
|
10929
11215
|
* The Number of People working in the Class 2 Area for this Hour
|
|
10930
11216
|
*/
|
|
10931
|
-
class2Manning?: number;
|
|
11217
|
+
class2Manning?: number | null;
|
|
10932
11218
|
/**
|
|
10933
11219
|
* The Average Target Number of People that should be working for this Hour
|
|
10934
11220
|
*/
|
|
10935
|
-
averageManningTarget?: number;
|
|
11221
|
+
averageManningTarget?: number | null;
|
|
10936
11222
|
/**
|
|
10937
11223
|
* The Average Cost per Person working in all Areas for this Hour
|
|
10938
11224
|
*/
|
|
10939
|
-
averageCostPerManningUnit?: number;
|
|
11225
|
+
averageCostPerManningUnit?: number | null;
|
|
10940
11226
|
/**
|
|
10941
11227
|
* The Percentage of Total Tray Equivalents that are Layered for this Hour
|
|
10942
11228
|
*/
|
|
10943
|
-
layeredTrayPercentage?: number;
|
|
11229
|
+
layeredTrayPercentage?: number | null;
|
|
10944
11230
|
/**
|
|
10945
11231
|
* The Average Class 1 Percentage for this Hour
|
|
10946
11232
|
*/
|
|
10947
|
-
averageClass1Percentage?: number;
|
|
11233
|
+
averageClass1Percentage?: number | null;
|
|
10948
11234
|
/**
|
|
10949
11235
|
* The Number of Quality R600 Samples that were Ideal for this Hour
|
|
10950
11236
|
*/
|
|
10951
|
-
qualityR600IdealSamplesPercentage?: number;
|
|
11237
|
+
qualityR600IdealSamplesPercentage?: number | null;
|
|
10952
11238
|
/**
|
|
10953
11239
|
* The Average Target Number of Quality R600 Samples that should be Ideal for this Hour
|
|
10954
11240
|
*/
|
|
10955
|
-
averageQualityR600IdealSamplesTarget?: number;
|
|
11241
|
+
averageQualityR600IdealSamplesTarget?: number | null;
|
|
10956
11242
|
/**
|
|
10957
11243
|
* An Array of Custom Quality Data Items for this Hour
|
|
10958
11244
|
*/
|
|
@@ -10988,47 +11274,47 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftHourlyEntryCo
|
|
|
10988
11274
|
/**
|
|
10989
11275
|
* The Target Number of Class 1 Tray Equivalents that should be Packed after Adjustment (Manning %, Class 1 %, Soft-Sort %) for this Hour
|
|
10990
11276
|
*/
|
|
10991
|
-
averageClass1TraysPerHourAdjustedTarget?: number;
|
|
11277
|
+
averageClass1TraysPerHourAdjustedTarget?: number | null;
|
|
10992
11278
|
/**
|
|
10993
11279
|
* The Average Cost per Tray Equivalent for this Hour
|
|
10994
11280
|
*/
|
|
10995
|
-
averageCostPerTray?: number;
|
|
11281
|
+
averageCostPerTray?: number | null;
|
|
10996
11282
|
/**
|
|
10997
11283
|
* The Average Cost per Tray Equivalent Target for this Hour
|
|
10998
11284
|
*/
|
|
10999
|
-
averageCostPerTrayTarget?: number;
|
|
11285
|
+
averageCostPerTrayTarget?: number | null;
|
|
11000
11286
|
/**
|
|
11001
11287
|
* The Primary Issue Category for this Hourly Entry
|
|
11002
11288
|
*/
|
|
11003
|
-
primaryIssueCategory?: string;
|
|
11289
|
+
primaryIssueCategory?: string | null;
|
|
11004
11290
|
/**
|
|
11005
11291
|
* The Primary Issue Tag for this Hourly Entry
|
|
11006
11292
|
*/
|
|
11007
|
-
primaryIssueTag?: string;
|
|
11293
|
+
primaryIssueTag?: string | null;
|
|
11008
11294
|
/**
|
|
11009
11295
|
* A Percentage between 0% and 100% indicating how much the Primary Issue impacted Throughput for this Hourly Entry
|
|
11010
11296
|
*/
|
|
11011
|
-
primaryIssuePercentage?: number;
|
|
11297
|
+
primaryIssuePercentage?: number | null;
|
|
11012
11298
|
/**
|
|
11013
11299
|
* The Secondary Issue Category for this Hourly Entry
|
|
11014
11300
|
*/
|
|
11015
|
-
secondaryIssueCategory?: string;
|
|
11301
|
+
secondaryIssueCategory?: string | null;
|
|
11016
11302
|
/**
|
|
11017
11303
|
* The Secondary Issue Tag for this Hourly Entry
|
|
11018
11304
|
*/
|
|
11019
|
-
secondaryIssueTag?: string;
|
|
11305
|
+
secondaryIssueTag?: string | null;
|
|
11020
11306
|
/**
|
|
11021
11307
|
* A Percentage between 0% and 100% indicating how much the Secondary Issue impacted Throughput for this Hourly Entry
|
|
11022
11308
|
*/
|
|
11023
|
-
secondaryIssuePercentage?: number;
|
|
11309
|
+
secondaryIssuePercentage?: number | null;
|
|
11024
11310
|
/**
|
|
11025
11311
|
* An Optional Focus for the Next Hour
|
|
11026
11312
|
*/
|
|
11027
|
-
nextHourFocus?: string;
|
|
11313
|
+
nextHourFocus?: string | null;
|
|
11028
11314
|
/**
|
|
11029
11315
|
* An Optional Rating between 1 and 10 on how Satisfied the Line Manager was with this Hour
|
|
11030
11316
|
*/
|
|
11031
|
-
satisfactionRating?: number;
|
|
11317
|
+
satisfactionRating?: number | null;
|
|
11032
11318
|
/**
|
|
11033
11319
|
* The Status of this Hourly Entry
|
|
11034
11320
|
*/
|
|
@@ -11057,35 +11343,35 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftHourlyEntryCo
|
|
|
11057
11343
|
/**
|
|
11058
11344
|
* The Number of People working in all Areas except Class 2 for this Hour
|
|
11059
11345
|
*/
|
|
11060
|
-
class1Manning?: number;
|
|
11346
|
+
class1Manning?: number | null;
|
|
11061
11347
|
/**
|
|
11062
11348
|
* The Number of People working in the Class 2 Area for this Hour
|
|
11063
11349
|
*/
|
|
11064
|
-
class2Manning?: number;
|
|
11350
|
+
class2Manning?: number | null;
|
|
11065
11351
|
/**
|
|
11066
11352
|
* The Average Target Number of People that should be working for this Hour
|
|
11067
11353
|
*/
|
|
11068
|
-
averageManningTarget?: number;
|
|
11354
|
+
averageManningTarget?: number | null;
|
|
11069
11355
|
/**
|
|
11070
11356
|
* The Average Cost per Person working in all Areas for this Hour
|
|
11071
11357
|
*/
|
|
11072
|
-
averageCostPerManningUnit?: number;
|
|
11358
|
+
averageCostPerManningUnit?: number | null;
|
|
11073
11359
|
/**
|
|
11074
11360
|
* The Percentage of Total Tray Equivalents that are Layered for this Hour
|
|
11075
11361
|
*/
|
|
11076
|
-
layeredTrayPercentage?: number;
|
|
11362
|
+
layeredTrayPercentage?: number | null;
|
|
11077
11363
|
/**
|
|
11078
11364
|
* The Average Class 1 Percentage for this Hour
|
|
11079
11365
|
*/
|
|
11080
|
-
averageClass1Percentage?: number;
|
|
11366
|
+
averageClass1Percentage?: number | null;
|
|
11081
11367
|
/**
|
|
11082
11368
|
* The Number of Quality R600 Samples that were Ideal for this Hour
|
|
11083
11369
|
*/
|
|
11084
|
-
qualityR600IdealSamplesPercentage?: number;
|
|
11370
|
+
qualityR600IdealSamplesPercentage?: number | null;
|
|
11085
11371
|
/**
|
|
11086
11372
|
* The Average Target Number of Quality R600 Samples that should be Ideal for this Hour
|
|
11087
11373
|
*/
|
|
11088
|
-
averageQualityR600IdealSamplesTarget?: number;
|
|
11374
|
+
averageQualityR600IdealSamplesTarget?: number | null;
|
|
11089
11375
|
/**
|
|
11090
11376
|
* An Array of Custom Quality Data Items for this Hour
|
|
11091
11377
|
*/
|
|
@@ -11121,52 +11407,69 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftHourlyEntryCo
|
|
|
11121
11407
|
/**
|
|
11122
11408
|
* The Target Number of Class 1 Tray Equivalents that should be Packed after Adjustment (Manning %, Class 1 %, Soft-Sort %) for this Hour
|
|
11123
11409
|
*/
|
|
11124
|
-
averageClass1TraysPerHourAdjustedTarget?: number;
|
|
11410
|
+
averageClass1TraysPerHourAdjustedTarget?: number | null;
|
|
11125
11411
|
/**
|
|
11126
11412
|
* The Average Cost per Tray Equivalent for this Hour
|
|
11127
11413
|
*/
|
|
11128
|
-
averageCostPerTray?: number;
|
|
11414
|
+
averageCostPerTray?: number | null;
|
|
11129
11415
|
/**
|
|
11130
11416
|
* The Average Cost per Tray Equivalent Target for this Hour
|
|
11131
11417
|
*/
|
|
11132
|
-
averageCostPerTrayTarget?: number;
|
|
11418
|
+
averageCostPerTrayTarget?: number | null;
|
|
11133
11419
|
/**
|
|
11134
11420
|
* The Primary Issue Category for this Hourly Entry
|
|
11135
11421
|
*/
|
|
11136
|
-
primaryIssueCategory?: string;
|
|
11422
|
+
primaryIssueCategory?: string | null;
|
|
11137
11423
|
/**
|
|
11138
11424
|
* The Primary Issue Tag for this Hourly Entry
|
|
11139
11425
|
*/
|
|
11140
|
-
primaryIssueTag?: string;
|
|
11426
|
+
primaryIssueTag?: string | null;
|
|
11141
11427
|
/**
|
|
11142
11428
|
* A Percentage between 0% and 100% indicating how much the Primary Issue impacted Throughput for this Hourly Entry
|
|
11143
11429
|
*/
|
|
11144
|
-
primaryIssuePercentage?: number;
|
|
11430
|
+
primaryIssuePercentage?: number | null;
|
|
11145
11431
|
/**
|
|
11146
11432
|
* The Secondary Issue Category for this Hourly Entry
|
|
11147
11433
|
*/
|
|
11148
|
-
secondaryIssueCategory?: string;
|
|
11434
|
+
secondaryIssueCategory?: string | null;
|
|
11149
11435
|
/**
|
|
11150
11436
|
* The Secondary Issue Tag for this Hourly Entry
|
|
11151
11437
|
*/
|
|
11152
|
-
secondaryIssueTag?: string;
|
|
11438
|
+
secondaryIssueTag?: string | null;
|
|
11153
11439
|
/**
|
|
11154
11440
|
* A Percentage between 0% and 100% indicating how much the Secondary Issue impacted Throughput for this Hourly Entry
|
|
11155
11441
|
*/
|
|
11156
|
-
secondaryIssuePercentage?: number;
|
|
11442
|
+
secondaryIssuePercentage?: number | null;
|
|
11157
11443
|
/**
|
|
11158
11444
|
* An Optional Focus for the Next Hour
|
|
11159
11445
|
*/
|
|
11160
|
-
nextHourFocus?: string;
|
|
11446
|
+
nextHourFocus?: string | null;
|
|
11161
11447
|
/**
|
|
11162
11448
|
* An Optional Rating between 1 and 10 on how Satisfied the Line Manager was with this Hour
|
|
11163
11449
|
*/
|
|
11164
|
-
satisfactionRating?: number;
|
|
11450
|
+
satisfactionRating?: number | null;
|
|
11165
11451
|
/**
|
|
11166
11452
|
* The Status of this Hourly Entry
|
|
11167
11453
|
*/
|
|
11168
11454
|
status?: string;
|
|
11169
11455
|
};
|
|
11456
|
+
/**
|
|
11457
|
+
* A **UserAccount** Type
|
|
11458
|
+
*/
|
|
11459
|
+
export type UserAccount = {
|
|
11460
|
+
/**
|
|
11461
|
+
* The User Account ID
|
|
11462
|
+
*/
|
|
11463
|
+
id: string | null;
|
|
11464
|
+
/**
|
|
11465
|
+
* The User's First Name
|
|
11466
|
+
*/
|
|
11467
|
+
firstName: string | null;
|
|
11468
|
+
/**
|
|
11469
|
+
* The User's Last Name
|
|
11470
|
+
*/
|
|
11471
|
+
lastName: string | null;
|
|
11472
|
+
};
|
|
11170
11473
|
/**
|
|
11171
11474
|
* A **CommentItem** Type
|
|
11172
11475
|
*/
|
|
@@ -11175,18 +11478,19 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftHourlyEntryCo
|
|
|
11175
11478
|
* The Comment ID
|
|
11176
11479
|
*/
|
|
11177
11480
|
id: string;
|
|
11481
|
+
userAccount: UserAccount;
|
|
11178
11482
|
/**
|
|
11179
11483
|
* The Content of the Comment
|
|
11180
11484
|
*/
|
|
11181
|
-
content: string;
|
|
11485
|
+
content: string | null;
|
|
11182
11486
|
/**
|
|
11183
11487
|
* When the Comment was Created
|
|
11184
11488
|
*/
|
|
11185
|
-
createdTimestamp: Date;
|
|
11489
|
+
createdTimestamp: Date | null;
|
|
11186
11490
|
/**
|
|
11187
11491
|
* When the Comment was last Updated
|
|
11188
11492
|
*/
|
|
11189
|
-
updatedTimestamp: Date;
|
|
11493
|
+
updatedTimestamp: Date | null;
|
|
11190
11494
|
};
|
|
11191
11495
|
/**
|
|
11192
11496
|
* A **CustomQualityDataItem** Type
|
|
@@ -11330,7 +11634,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftQualitySummar
|
|
|
11330
11634
|
* @param {ShiftQualitySummaryController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
11331
11635
|
* @return {Promise<ShiftQualitySummaryModel[]>}
|
|
11332
11636
|
*/
|
|
11333
|
-
static getAll(siteId: number, queryParameters?: ShiftQualitySummaryController.GetAllQueryParameters): Promise<ShiftQualitySummaryModel[]>;
|
|
11637
|
+
static getAll(siteId: number, queryParameters?: ShiftQualitySummaryController.GetAllQueryParameters | undefined): Promise<ShiftQualitySummaryModel[]>;
|
|
11334
11638
|
/**
|
|
11335
11639
|
* Create a Shift Quality Summary [POST /packhouse/sites/{siteId}/shift-quality-summaries]
|
|
11336
11640
|
*
|
|
@@ -11358,7 +11662,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftQualitySummar
|
|
|
11358
11662
|
/**
|
|
11359
11663
|
* The User ID of the Quality Manager for this Summary
|
|
11360
11664
|
*/
|
|
11361
|
-
qualityManagerUserId?: string;
|
|
11665
|
+
qualityManagerUserId?: string | null;
|
|
11362
11666
|
/**
|
|
11363
11667
|
* The Name of the Quality Manager for this Summary
|
|
11364
11668
|
*/
|
|
@@ -11399,11 +11703,11 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftQualitySummar
|
|
|
11399
11703
|
/**
|
|
11400
11704
|
* When this Quality Summary was Published
|
|
11401
11705
|
*/
|
|
11402
|
-
publishTimestamp?: Date;
|
|
11706
|
+
publishTimestamp?: Date | null;
|
|
11403
11707
|
/**
|
|
11404
11708
|
* The User ID of the Quality Manager for this Summary
|
|
11405
11709
|
*/
|
|
11406
|
-
qualityManagerUserId?: string;
|
|
11710
|
+
qualityManagerUserId?: string | null;
|
|
11407
11711
|
/**
|
|
11408
11712
|
* The Name of the Quality Manager for this Summary
|
|
11409
11713
|
*/
|
|
@@ -11423,7 +11727,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftQualitySummar
|
|
|
11423
11727
|
/**
|
|
11424
11728
|
* An Optional Rating between 1 and 10 on how Satisfied the Quality Manager was with this Shift
|
|
11425
11729
|
*/
|
|
11426
|
-
satisfactionRating?: number;
|
|
11730
|
+
satisfactionRating?: number | null;
|
|
11427
11731
|
};
|
|
11428
11732
|
/**
|
|
11429
11733
|
* The Update Data for a Shift Quality Summary
|
|
@@ -11440,11 +11744,11 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftQualitySummar
|
|
|
11440
11744
|
/**
|
|
11441
11745
|
* When this Quality Summary was Published
|
|
11442
11746
|
*/
|
|
11443
|
-
publishTimestamp?: Date;
|
|
11747
|
+
publishTimestamp?: Date | null;
|
|
11444
11748
|
/**
|
|
11445
11749
|
* The User ID of the Quality Manager for this Summary
|
|
11446
11750
|
*/
|
|
11447
|
-
qualityManagerUserId?: string;
|
|
11751
|
+
qualityManagerUserId?: string | null;
|
|
11448
11752
|
/**
|
|
11449
11753
|
* The Name of the Quality Manager for this Summary
|
|
11450
11754
|
*/
|
|
@@ -11464,7 +11768,24 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftQualitySummar
|
|
|
11464
11768
|
/**
|
|
11465
11769
|
* An Optional Rating between 1 and 10 on how Satisfied the Quality Manager was with this Shift
|
|
11466
11770
|
*/
|
|
11467
|
-
satisfactionRating?: number;
|
|
11771
|
+
satisfactionRating?: number | null;
|
|
11772
|
+
};
|
|
11773
|
+
/**
|
|
11774
|
+
* A **UserAccount** Type
|
|
11775
|
+
*/
|
|
11776
|
+
export type UserAccount = {
|
|
11777
|
+
/**
|
|
11778
|
+
* The User Account ID
|
|
11779
|
+
*/
|
|
11780
|
+
id: string | null;
|
|
11781
|
+
/**
|
|
11782
|
+
* The User's First Name
|
|
11783
|
+
*/
|
|
11784
|
+
firstName: string | null;
|
|
11785
|
+
/**
|
|
11786
|
+
* The User's Last Name
|
|
11787
|
+
*/
|
|
11788
|
+
lastName: string | null;
|
|
11468
11789
|
};
|
|
11469
11790
|
/**
|
|
11470
11791
|
* A **CommentItem** Type
|
|
@@ -11474,18 +11795,19 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftQualitySummar
|
|
|
11474
11795
|
* The Comment ID
|
|
11475
11796
|
*/
|
|
11476
11797
|
id: string;
|
|
11798
|
+
userAccount: UserAccount;
|
|
11477
11799
|
/**
|
|
11478
11800
|
* The Content of the Comment
|
|
11479
11801
|
*/
|
|
11480
|
-
content: string;
|
|
11802
|
+
content: string | null;
|
|
11481
11803
|
/**
|
|
11482
11804
|
* When the Comment was Created
|
|
11483
11805
|
*/
|
|
11484
|
-
createdTimestamp: Date;
|
|
11806
|
+
createdTimestamp: Date | null;
|
|
11485
11807
|
/**
|
|
11486
11808
|
* When the Comment was last Updated
|
|
11487
11809
|
*/
|
|
11488
|
-
updatedTimestamp: Date;
|
|
11810
|
+
updatedTimestamp: Date | null;
|
|
11489
11811
|
};
|
|
11490
11812
|
/**
|
|
11491
11813
|
* A **AccuracyResult** Type
|
|
@@ -11548,23 +11870,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftQualitySummar
|
|
|
11548
11870
|
/**
|
|
11549
11871
|
* The Softs Line Average Sample Size
|
|
11550
11872
|
*/
|
|
11551
|
-
softsLineAverageSampleSize: number;
|
|
11873
|
+
softsLineAverageSampleSize: number | null;
|
|
11552
11874
|
/**
|
|
11553
11875
|
* The Softs Line Average Value
|
|
11554
11876
|
*/
|
|
11555
|
-
softsLineAverageValue: number;
|
|
11877
|
+
softsLineAverageValue: number | null;
|
|
11556
11878
|
/**
|
|
11557
11879
|
* The Percentage of Export (Class 1) Fruit found in Class 2
|
|
11558
11880
|
*/
|
|
11559
|
-
exportFruitInClass2: number;
|
|
11881
|
+
exportFruitInClass2: number | null;
|
|
11560
11882
|
/**
|
|
11561
11883
|
* The Percentage of Export (Class 1) Fruit found in Local Market
|
|
11562
11884
|
*/
|
|
11563
|
-
exportFruitInLocalMarket: number;
|
|
11885
|
+
exportFruitInLocalMarket: number | null;
|
|
11564
11886
|
/**
|
|
11565
11887
|
* The Percentage of Export (Class 1) Fruit found in Waste
|
|
11566
11888
|
*/
|
|
11567
|
-
exportFruitInWaste: number;
|
|
11889
|
+
exportFruitInWaste: number | null;
|
|
11568
11890
|
};
|
|
11569
11891
|
}
|
|
11570
11892
|
import ShiftQualitySummaryModel from "@ricado/api-client/Models/Packhouse/Site/ShiftQualitySummaryModel";
|
|
@@ -11683,7 +12005,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftTaskControlle
|
|
|
11683
12005
|
* @param {ShiftTaskController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
11684
12006
|
* @return {Promise<ShiftTaskModel[]>}
|
|
11685
12007
|
*/
|
|
11686
|
-
static getAll(siteId: number, queryParameters?: ShiftTaskController.GetAllQueryParameters): Promise<ShiftTaskModel[]>;
|
|
12008
|
+
static getAll(siteId: number, queryParameters?: ShiftTaskController.GetAllQueryParameters | undefined): Promise<ShiftTaskModel[]>;
|
|
11687
12009
|
/**
|
|
11688
12010
|
* Create a Shift Task [POST /packhouse/sites/{siteId}/shift-tasks]
|
|
11689
12011
|
*
|
|
@@ -11711,7 +12033,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftTaskControlle
|
|
|
11711
12033
|
/**
|
|
11712
12034
|
* The User ID of the Author for this Task
|
|
11713
12035
|
*/
|
|
11714
|
-
authorUserId?: string;
|
|
12036
|
+
authorUserId?: string | null;
|
|
11715
12037
|
/**
|
|
11716
12038
|
* The Name of the Author for this Task
|
|
11717
12039
|
*/
|
|
@@ -11768,11 +12090,11 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftTaskControlle
|
|
|
11768
12090
|
/**
|
|
11769
12091
|
* When this Task was Completed
|
|
11770
12092
|
*/
|
|
11771
|
-
completedTimestamp?: Date;
|
|
12093
|
+
completedTimestamp?: Date | null;
|
|
11772
12094
|
/**
|
|
11773
12095
|
* The User ID of the Author for this Task
|
|
11774
12096
|
*/
|
|
11775
|
-
authorUserId?: string;
|
|
12097
|
+
authorUserId?: string | null;
|
|
11776
12098
|
/**
|
|
11777
12099
|
* The Name of the Author for this Task
|
|
11778
12100
|
*/
|
|
@@ -11809,11 +12131,11 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftTaskControlle
|
|
|
11809
12131
|
/**
|
|
11810
12132
|
* When this Task was Completed
|
|
11811
12133
|
*/
|
|
11812
|
-
completedTimestamp?: Date;
|
|
12134
|
+
completedTimestamp?: Date | null;
|
|
11813
12135
|
/**
|
|
11814
12136
|
* The User ID of the Author for this Task
|
|
11815
12137
|
*/
|
|
11816
|
-
authorUserId?: string;
|
|
12138
|
+
authorUserId?: string | null;
|
|
11817
12139
|
/**
|
|
11818
12140
|
* The Name of the Author for this Task
|
|
11819
12141
|
*/
|
|
@@ -11835,6 +12157,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftTaskControlle
|
|
|
11835
12157
|
*/
|
|
11836
12158
|
content?: string;
|
|
11837
12159
|
};
|
|
12160
|
+
/**
|
|
12161
|
+
* A **UserAccount** Type
|
|
12162
|
+
*/
|
|
12163
|
+
export type UserAccount = {
|
|
12164
|
+
/**
|
|
12165
|
+
* The User Account ID
|
|
12166
|
+
*/
|
|
12167
|
+
id: string | null;
|
|
12168
|
+
/**
|
|
12169
|
+
* The User's First Name
|
|
12170
|
+
*/
|
|
12171
|
+
firstName: string | null;
|
|
12172
|
+
/**
|
|
12173
|
+
* The User's Last Name
|
|
12174
|
+
*/
|
|
12175
|
+
lastName: string | null;
|
|
12176
|
+
};
|
|
11838
12177
|
/**
|
|
11839
12178
|
* A **CommentItem** Type
|
|
11840
12179
|
*/
|
|
@@ -11843,18 +12182,19 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftTaskControlle
|
|
|
11843
12182
|
* The Comment ID
|
|
11844
12183
|
*/
|
|
11845
12184
|
id: string;
|
|
12185
|
+
userAccount: UserAccount;
|
|
11846
12186
|
/**
|
|
11847
12187
|
* The Content of the Comment
|
|
11848
12188
|
*/
|
|
11849
|
-
content: string;
|
|
12189
|
+
content: string | null;
|
|
11850
12190
|
/**
|
|
11851
12191
|
* When the Comment was Created
|
|
11852
12192
|
*/
|
|
11853
|
-
createdTimestamp: Date;
|
|
12193
|
+
createdTimestamp: Date | null;
|
|
11854
12194
|
/**
|
|
11855
12195
|
* When the Comment was last Updated
|
|
11856
12196
|
*/
|
|
11857
|
-
updatedTimestamp: Date;
|
|
12197
|
+
updatedTimestamp: Date | null;
|
|
11858
12198
|
};
|
|
11859
12199
|
}
|
|
11860
12200
|
import ShiftTaskModel from "@ricado/api-client/Models/Packhouse/Site/ShiftTaskModel";
|
|
@@ -11911,7 +12251,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/SoftSortBeltContro
|
|
|
11911
12251
|
* @param {SoftSortBeltController.GetOneEventsQueryParameters} [queryParameters] The Optional Query Parameters
|
|
11912
12252
|
* @return {Promise<Array<SoftSortBeltController.SoftSortEventItem>>}
|
|
11913
12253
|
*/
|
|
11914
|
-
static getOneEvents(siteId: number, id: string, queryParameters?: SoftSortBeltController.GetOneEventsQueryParameters): Promise<Array<SoftSortBeltController.SoftSortEventItem>>;
|
|
12254
|
+
static getOneEvents(siteId: number, id: string, queryParameters?: SoftSortBeltController.GetOneEventsQueryParameters | undefined): Promise<Array<SoftSortBeltController.SoftSortEventItem>>;
|
|
11915
12255
|
/**
|
|
11916
12256
|
* List all Soft Sort Belts [GET /packhouse/sites/{siteId}/soft-sort-belts]
|
|
11917
12257
|
*
|
|
@@ -11921,7 +12261,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/SoftSortBeltContro
|
|
|
11921
12261
|
* @param {SoftSortBeltController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
11922
12262
|
* @return {Promise<SoftSortBeltModel[]>}
|
|
11923
12263
|
*/
|
|
11924
|
-
static getAll(siteId: number, queryParameters?: SoftSortBeltController.GetAllQueryParameters): Promise<SoftSortBeltModel[]>;
|
|
12264
|
+
static getAll(siteId: number, queryParameters?: SoftSortBeltController.GetAllQueryParameters | undefined): Promise<SoftSortBeltModel[]>;
|
|
11925
12265
|
/**
|
|
11926
12266
|
* Create a Soft Sort Belt [POST /packhouse/sites/{siteId}/soft-sort-belts]
|
|
11927
12267
|
*
|
|
@@ -11943,7 +12283,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/SoftSortBeltContro
|
|
|
11943
12283
|
* @param {SoftSortBeltController.GetAllEventsQueryParameters} [queryParameters] The Optional Query Parameters
|
|
11944
12284
|
* @return {Promise<Array<SoftSortBeltController.SoftSortEventItem>>}
|
|
11945
12285
|
*/
|
|
11946
|
-
static getAllEvents(siteId: number, queryParameters?: SoftSortBeltController.GetAllEventsQueryParameters): Promise<Array<SoftSortBeltController.SoftSortEventItem>>;
|
|
12286
|
+
static getAllEvents(siteId: number, queryParameters?: SoftSortBeltController.GetAllEventsQueryParameters | undefined): Promise<Array<SoftSortBeltController.SoftSortEventItem>>;
|
|
11947
12287
|
}
|
|
11948
12288
|
namespace SoftSortBeltController {
|
|
11949
12289
|
/**
|
|
@@ -11966,7 +12306,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/SoftSortBeltContro
|
|
|
11966
12306
|
/**
|
|
11967
12307
|
* The RTU this Soft Sort Belt belongs to
|
|
11968
12308
|
*/
|
|
11969
|
-
rtuId?: number;
|
|
12309
|
+
rtuId?: number | null;
|
|
11970
12310
|
/**
|
|
11971
12311
|
* The Name of this Soft Sort Belt
|
|
11972
12312
|
*/
|
|
@@ -12000,7 +12340,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/SoftSortBeltContro
|
|
|
12000
12340
|
/**
|
|
12001
12341
|
* The RTU this Soft Sort Belt belongs to
|
|
12002
12342
|
*/
|
|
12003
|
-
rtuId?: number;
|
|
12343
|
+
rtuId?: number | null;
|
|
12004
12344
|
/**
|
|
12005
12345
|
* The Name of this Soft Sort Belt
|
|
12006
12346
|
*/
|
|
@@ -12112,7 +12452,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/VarietyController'
|
|
|
12112
12452
|
* @param {VarietyController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
12113
12453
|
* @return {Promise<VarietyModel[]>}
|
|
12114
12454
|
*/
|
|
12115
|
-
static getAll(siteId: number, queryParameters?: VarietyController.GetAllQueryParameters): Promise<VarietyModel[]>;
|
|
12455
|
+
static getAll(siteId: number, queryParameters?: VarietyController.GetAllQueryParameters | undefined): Promise<VarietyModel[]>;
|
|
12116
12456
|
/**
|
|
12117
12457
|
* Create a Variety [POST /packhouse/sites/{siteId}/varieties]
|
|
12118
12458
|
*
|
|
@@ -13817,7 +14157,21 @@ declare module '@ricado/api-client/Models/Packhouse/Site/PackingLineModel' {
|
|
|
13817
14157
|
deleted: boolean;
|
|
13818
14158
|
}[];
|
|
13819
14159
|
}[];
|
|
13820
|
-
};
|
|
14160
|
+
} | null;
|
|
14161
|
+
/**
|
|
14162
|
+
* The Advanced Packrun Management Configuration for this Packing Line
|
|
14163
|
+
*
|
|
14164
|
+
* @type {?Object}
|
|
14165
|
+
* @public
|
|
14166
|
+
*/
|
|
14167
|
+
advancedPackrunManagement: any | null;
|
|
14168
|
+
/**
|
|
14169
|
+
* The MAF Integration Configuration for this Packing Line
|
|
14170
|
+
*
|
|
14171
|
+
* @type {?Object}
|
|
14172
|
+
* @public
|
|
14173
|
+
*/
|
|
14174
|
+
mafIntegration: any | null;
|
|
13821
14175
|
/**
|
|
13822
14176
|
* The FreshPack Integration Configuration for this Packing Line
|
|
13823
14177
|
*
|
|
@@ -14219,7 +14573,7 @@ declare module '@ricado/api-client/Models/Packhouse/Site/RejectBinScaleModel' {
|
|
|
14219
14573
|
*/
|
|
14220
14574
|
autoPackrunChange: {
|
|
14221
14575
|
delay: number | null;
|
|
14222
|
-
};
|
|
14576
|
+
} | null;
|
|
14223
14577
|
/**
|
|
14224
14578
|
* Whether this Reject Bin Scale supports Live Weighing
|
|
14225
14579
|
*
|