@ricado/api-client 2.5.16 → 2.6.0
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/Lab/Site/FruitProfileController.js +16 -0
- package/lib/Controllers/Lab/Site/SampleController.js +8 -0
- package/lib/Controllers/Packhouse/Site/MAFSizerBatchController.js +46 -1
- package/lib/Controllers/Packhouse/Site/MAFSizerPackrunSummaryController.js +26 -0
- package/lib/Controllers/Packhouse/Site/PackrunController.js +73 -0
- package/lib/Models/Lab/Site/FruitProfileModel.js +144 -0
- package/lib/Models/Lab/Site/SampleModel.js +88 -0
- package/lib/Models/Packhouse/Site/MAFSizerBatchModel.js +321 -15
- package/lib/Models/Packhouse/Site/MAFSizerPackrunSummaryModel.js +162 -0
- package/lib/PackageVersion.js +1 -1
- package/lib/index.d.ts +441 -6
- package/package.json +1 -1
- package/src/Controllers/Lab/Site/FruitProfileController.js +16 -0
- package/src/Controllers/Lab/Site/SampleController.js +8 -0
- package/src/Controllers/Packhouse/Site/MAFSizerBatchController.js +46 -1
- package/src/Controllers/Packhouse/Site/MAFSizerPackrunSummaryController.js +26 -0
- package/src/Controllers/Packhouse/Site/PackrunController.js +94 -0
- package/src/Models/Lab/Site/FruitProfileModel.js +160 -0
- package/src/Models/Lab/Site/SampleModel.js +100 -0
- package/src/Models/Packhouse/Site/MAFSizerBatchModel.js +397 -15
- package/src/Models/Packhouse/Site/MAFSizerPackrunSummaryModel.js +207 -0
- package/src/PackageVersion.js +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -6984,6 +6984,38 @@ declare module '@ricado/api-client/Controllers/Lab/Site/FruitProfileController'
|
|
|
6984
6984
|
* The Maximum Target Temperature for a Sample to be Compliant
|
|
6985
6985
|
*/
|
|
6986
6986
|
maximumTargetTemperature: number;
|
|
6987
|
+
/**
|
|
6988
|
+
* The Warm-Up Temperature for starting the Warm Up alerts
|
|
6989
|
+
*/
|
|
6990
|
+
warmUpStartExpectedTemperature: number;
|
|
6991
|
+
/**
|
|
6992
|
+
* The Warm-Up Start Expected Rate of Change
|
|
6993
|
+
*/
|
|
6994
|
+
warmUpStartExpectedRateOfChange: number;
|
|
6995
|
+
/**
|
|
6996
|
+
* The Warm-Up Stage Two Expected Temperature
|
|
6997
|
+
*/
|
|
6998
|
+
warmUpStageTwoExpectedTemperature: number;
|
|
6999
|
+
/**
|
|
7000
|
+
* The Warm-Up Stage Two Expected Rate of Change
|
|
7001
|
+
*/
|
|
7002
|
+
warmUpStageTwoExpectedRateOfChange: number;
|
|
7003
|
+
/**
|
|
7004
|
+
* The Warm-Up Stage Three Expected Temperature
|
|
7005
|
+
*/
|
|
7006
|
+
warmUpStageThreeExpectedTemperature: number;
|
|
7007
|
+
/**
|
|
7008
|
+
* The Warm-Up Stage Three Expected Rate of Change
|
|
7009
|
+
*/
|
|
7010
|
+
warmUpStageThreeExpectedRateOfChange: number;
|
|
7011
|
+
/**
|
|
7012
|
+
* The Warm-Up End Expected Temperature
|
|
7013
|
+
*/
|
|
7014
|
+
warmUpEndExpectedTemperature: number;
|
|
7015
|
+
/**
|
|
7016
|
+
* The Warm-Up End Expected Rate of Change
|
|
7017
|
+
*/
|
|
7018
|
+
warmUpEndExpectedRateOfChange: number;
|
|
6987
7019
|
};
|
|
6988
7020
|
/**
|
|
6989
7021
|
* The Update Data for a Fruit Profile
|
|
@@ -7025,6 +7057,38 @@ declare module '@ricado/api-client/Controllers/Lab/Site/FruitProfileController'
|
|
|
7025
7057
|
* The Maximum Target Temperature for a Sample to be Compliant
|
|
7026
7058
|
*/
|
|
7027
7059
|
maximumTargetTemperature?: number | undefined;
|
|
7060
|
+
/**
|
|
7061
|
+
* The Warm-Up Temperature for starting the Warm Up alerts
|
|
7062
|
+
*/
|
|
7063
|
+
warmUpStartExpectedTemperature?: number | undefined;
|
|
7064
|
+
/**
|
|
7065
|
+
* The Warm-Up Start Expected Rate of Change
|
|
7066
|
+
*/
|
|
7067
|
+
warmUpStartExpectedRateOfChange?: number | undefined;
|
|
7068
|
+
/**
|
|
7069
|
+
* The Warm-Up Stage Two Expected Temperature
|
|
7070
|
+
*/
|
|
7071
|
+
warmUpStageTwoExpectedTemperature?: number | undefined;
|
|
7072
|
+
/**
|
|
7073
|
+
* The Warm-Up Stage Two Expected Rate of Change
|
|
7074
|
+
*/
|
|
7075
|
+
warmUpStageTwoExpectedRateOfChange?: number | undefined;
|
|
7076
|
+
/**
|
|
7077
|
+
* The Warm-Up Stage Three Expected Temperature
|
|
7078
|
+
*/
|
|
7079
|
+
warmUpStageThreeExpectedTemperature?: number | undefined;
|
|
7080
|
+
/**
|
|
7081
|
+
* The Warm-Up Stage Three Expected Rate of Change
|
|
7082
|
+
*/
|
|
7083
|
+
warmUpStageThreeExpectedRateOfChange?: number | undefined;
|
|
7084
|
+
/**
|
|
7085
|
+
* The Warm-Up End Expected Temperature
|
|
7086
|
+
*/
|
|
7087
|
+
warmUpEndExpectedTemperature?: number | undefined;
|
|
7088
|
+
/**
|
|
7089
|
+
* The Warm-Up End Expected Rate of Change
|
|
7090
|
+
*/
|
|
7091
|
+
warmUpEndExpectedRateOfChange?: number | undefined;
|
|
7028
7092
|
};
|
|
7029
7093
|
}
|
|
7030
7094
|
import FruitProfileModel from "@ricado/api-client/Models/Lab/Site/FruitProfileModel";
|
|
@@ -8176,6 +8240,10 @@ declare module '@ricado/api-client/Controllers/Lab/Site/SampleController' {
|
|
|
8176
8240
|
* Optional Scheduled Timestamp when this Sample should Begin
|
|
8177
8241
|
*/
|
|
8178
8242
|
scheduledTimestamp?: Date | null | undefined;
|
|
8243
|
+
/**
|
|
8244
|
+
* Optional When the Schedule was received from Inspect
|
|
8245
|
+
*/
|
|
8246
|
+
scheduleReceivedTimestamp?: Date | null | undefined;
|
|
8179
8247
|
/**
|
|
8180
8248
|
* When this Sample was Loaded into the Dehydrator
|
|
8181
8249
|
*/
|
|
@@ -8220,6 +8288,18 @@ declare module '@ricado/api-client/Controllers/Lab/Site/SampleController' {
|
|
|
8220
8288
|
* The Sample Result ID asociated with this Sample
|
|
8221
8289
|
*/
|
|
8222
8290
|
resultId?: string | null | undefined;
|
|
8291
|
+
/**
|
|
8292
|
+
* Optional the BlindedSampleID Reference defined in RadfordsInspect
|
|
8293
|
+
*/
|
|
8294
|
+
blindedSampleID?: string | null | undefined;
|
|
8295
|
+
/**
|
|
8296
|
+
* Optional the Sample Short Description defined in RadfordsInspect
|
|
8297
|
+
*/
|
|
8298
|
+
shortDescription?: string | null | undefined;
|
|
8299
|
+
/**
|
|
8300
|
+
* Optional the Sample Description defined in RadfordsInspect
|
|
8301
|
+
*/
|
|
8302
|
+
sampleDescription?: string | null | undefined;
|
|
8223
8303
|
};
|
|
8224
8304
|
/**
|
|
8225
8305
|
* The Update Data for a Sample
|
|
@@ -8245,6 +8325,10 @@ declare module '@ricado/api-client/Controllers/Lab/Site/SampleController' {
|
|
|
8245
8325
|
* Optional Scheduled Timestamp when this Sample should Begin
|
|
8246
8326
|
*/
|
|
8247
8327
|
scheduledTimestamp?: Date | null | undefined;
|
|
8328
|
+
/**
|
|
8329
|
+
* Optional When the Schedule was received from Inspect
|
|
8330
|
+
*/
|
|
8331
|
+
scheduleReceivedTimestamp?: Date | null | undefined;
|
|
8248
8332
|
/**
|
|
8249
8333
|
* When this Sample was Loaded into the Dehydrator
|
|
8250
8334
|
*/
|
|
@@ -8289,6 +8373,18 @@ declare module '@ricado/api-client/Controllers/Lab/Site/SampleController' {
|
|
|
8289
8373
|
* The Sample Result ID asociated with this Sample
|
|
8290
8374
|
*/
|
|
8291
8375
|
resultId?: string | null | undefined;
|
|
8376
|
+
/**
|
|
8377
|
+
* Optional the BlindedSampleID Reference defined in RadfordsInspect
|
|
8378
|
+
*/
|
|
8379
|
+
blindedSampleID?: string | null | undefined;
|
|
8380
|
+
/**
|
|
8381
|
+
* Optional the Sample Short Description defined in RadfordsInspect
|
|
8382
|
+
*/
|
|
8383
|
+
shortDescription?: string | null | undefined;
|
|
8384
|
+
/**
|
|
8385
|
+
* Optional the Sample Description defined in RadfordsInspect
|
|
8386
|
+
*/
|
|
8387
|
+
sampleDescription?: string | null | undefined;
|
|
8292
8388
|
};
|
|
8293
8389
|
/**
|
|
8294
8390
|
* A **UserAccount** Type
|
|
@@ -14194,6 +14290,10 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/MAFSizerBatchContr
|
|
|
14194
14290
|
* The Packrun ID associated with this Batch
|
|
14195
14291
|
*/
|
|
14196
14292
|
packrunId?: string | null | undefined;
|
|
14293
|
+
/**
|
|
14294
|
+
* When the Final Update from the MAF Sizer Orphea Database has been Received
|
|
14295
|
+
*/
|
|
14296
|
+
finalOrpheaUpdate?: Date | null | undefined;
|
|
14197
14297
|
/**
|
|
14198
14298
|
* An Array of Summary Data Objects for each Article
|
|
14199
14299
|
*/
|
|
@@ -14206,6 +14306,18 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/MAFSizerBatchContr
|
|
|
14206
14306
|
* An Array of Summary Data Objects for each Fruit Size and Article
|
|
14207
14307
|
*/
|
|
14208
14308
|
fruitSummaries?: FruitSummary[] | undefined;
|
|
14309
|
+
/**
|
|
14310
|
+
* An Array of Summary Data Objects for each Outlet by Fruit Size and Article
|
|
14311
|
+
*/
|
|
14312
|
+
outletFruitSummaries?: OutletFruitSummary[] | undefined;
|
|
14313
|
+
/**
|
|
14314
|
+
* An Array of Size Names and Indexes
|
|
14315
|
+
*/
|
|
14316
|
+
sizeNames?: SizeNameLookup[] | undefined;
|
|
14317
|
+
/**
|
|
14318
|
+
* An Array of Article Names and Indexes
|
|
14319
|
+
*/
|
|
14320
|
+
articleNames?: ArticleNameLookup[] | undefined;
|
|
14209
14321
|
};
|
|
14210
14322
|
/**
|
|
14211
14323
|
* The Update Data for a MAF Sizer Batch
|
|
@@ -14247,6 +14359,10 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/MAFSizerBatchContr
|
|
|
14247
14359
|
* The Packrun ID associated with this Batch
|
|
14248
14360
|
*/
|
|
14249
14361
|
packrunId?: string | null | undefined;
|
|
14362
|
+
/**
|
|
14363
|
+
* When the Final Update from the MAF Sizer Orphea Database has been Received
|
|
14364
|
+
*/
|
|
14365
|
+
finalOrpheaUpdate?: Date | null | undefined;
|
|
14250
14366
|
/**
|
|
14251
14367
|
* An Array of Summary Data Objects for each Article
|
|
14252
14368
|
*/
|
|
@@ -14259,6 +14375,18 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/MAFSizerBatchContr
|
|
|
14259
14375
|
* An Array of Summary Data Objects for each Fruit Size and Article
|
|
14260
14376
|
*/
|
|
14261
14377
|
fruitSummaries?: FruitSummary[] | undefined;
|
|
14378
|
+
/**
|
|
14379
|
+
* An Array of Summary Data Objects for each Outlet by Fruit Size and Article
|
|
14380
|
+
*/
|
|
14381
|
+
outletFruitSummaries?: OutletFruitSummary[] | undefined;
|
|
14382
|
+
/**
|
|
14383
|
+
* An Array of Size Names and Indexes
|
|
14384
|
+
*/
|
|
14385
|
+
sizeNames?: SizeNameLookup[] | undefined;
|
|
14386
|
+
/**
|
|
14387
|
+
* An Array of Article Names and Indexes
|
|
14388
|
+
*/
|
|
14389
|
+
articleNames?: ArticleNameLookup[] | undefined;
|
|
14262
14390
|
};
|
|
14263
14391
|
/**
|
|
14264
14392
|
* A **UserAccount** Type
|
|
@@ -14303,6 +14431,10 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/MAFSizerBatchContr
|
|
|
14303
14431
|
* A **ArticleSummary** Type
|
|
14304
14432
|
*/
|
|
14305
14433
|
type ArticleSummary = {
|
|
14434
|
+
/**
|
|
14435
|
+
* The Article Index
|
|
14436
|
+
*/
|
|
14437
|
+
index: number | null;
|
|
14306
14438
|
/**
|
|
14307
14439
|
* The Article Name
|
|
14308
14440
|
*/
|
|
@@ -14332,19 +14464,68 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/MAFSizerBatchContr
|
|
|
14332
14464
|
* The Fruit Weight expressed in Kilograms
|
|
14333
14465
|
*/
|
|
14334
14466
|
fruitWeight: number;
|
|
14467
|
+
/**
|
|
14468
|
+
* An Array of Article Indexes that have been Seen assigned to the Outlet
|
|
14469
|
+
*/
|
|
14470
|
+
seenArticles: number[];
|
|
14471
|
+
/**
|
|
14472
|
+
* An Array of Article Indexes that have are Actively assigned to the Outlet
|
|
14473
|
+
*/
|
|
14474
|
+
activeArticles: number[];
|
|
14335
14475
|
};
|
|
14336
14476
|
/**
|
|
14337
14477
|
* A **FruitSummary** Type
|
|
14338
14478
|
*/
|
|
14339
14479
|
type FruitSummary = {
|
|
14480
|
+
/**
|
|
14481
|
+
* The Size Index
|
|
14482
|
+
*/
|
|
14483
|
+
sizeIndex: number;
|
|
14484
|
+
/**
|
|
14485
|
+
* The Size Name
|
|
14486
|
+
*/
|
|
14487
|
+
sizeName: string;
|
|
14488
|
+
/**
|
|
14489
|
+
* The Article Index
|
|
14490
|
+
*/
|
|
14491
|
+
articleIndex: number;
|
|
14340
14492
|
/**
|
|
14341
14493
|
* The Article Name
|
|
14342
14494
|
*/
|
|
14343
14495
|
articleName: string;
|
|
14344
14496
|
/**
|
|
14345
|
-
* The Fruit
|
|
14497
|
+
* The Fruit Count
|
|
14346
14498
|
*/
|
|
14347
|
-
|
|
14499
|
+
fruitCount: number;
|
|
14500
|
+
/**
|
|
14501
|
+
* The Fruit Weight expressed in Kilograms
|
|
14502
|
+
*/
|
|
14503
|
+
fruitWeight: number;
|
|
14504
|
+
};
|
|
14505
|
+
/**
|
|
14506
|
+
* A **OutletFruitSummary** Type
|
|
14507
|
+
*/
|
|
14508
|
+
type OutletFruitSummary = {
|
|
14509
|
+
/**
|
|
14510
|
+
* The Outlet Number
|
|
14511
|
+
*/
|
|
14512
|
+
outletNumber: number;
|
|
14513
|
+
/**
|
|
14514
|
+
* The Size Index
|
|
14515
|
+
*/
|
|
14516
|
+
sizeIndex: number;
|
|
14517
|
+
/**
|
|
14518
|
+
* The Size Name
|
|
14519
|
+
*/
|
|
14520
|
+
sizeName: string;
|
|
14521
|
+
/**
|
|
14522
|
+
* The Article Index
|
|
14523
|
+
*/
|
|
14524
|
+
articleIndex: number;
|
|
14525
|
+
/**
|
|
14526
|
+
* The Article Name
|
|
14527
|
+
*/
|
|
14528
|
+
articleName: string;
|
|
14348
14529
|
/**
|
|
14349
14530
|
* The Fruit Count
|
|
14350
14531
|
*/
|
|
@@ -14354,6 +14535,32 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/MAFSizerBatchContr
|
|
|
14354
14535
|
*/
|
|
14355
14536
|
fruitWeight: number;
|
|
14356
14537
|
};
|
|
14538
|
+
/**
|
|
14539
|
+
* A **SizeNameLookup** Type
|
|
14540
|
+
*/
|
|
14541
|
+
type SizeNameLookup = {
|
|
14542
|
+
/**
|
|
14543
|
+
* The Size Index
|
|
14544
|
+
*/
|
|
14545
|
+
index: number;
|
|
14546
|
+
/**
|
|
14547
|
+
* The Size Name
|
|
14548
|
+
*/
|
|
14549
|
+
name: string;
|
|
14550
|
+
};
|
|
14551
|
+
/**
|
|
14552
|
+
* A **ArticleNameLookup** Type
|
|
14553
|
+
*/
|
|
14554
|
+
type ArticleNameLookup = {
|
|
14555
|
+
/**
|
|
14556
|
+
* The Article Index
|
|
14557
|
+
*/
|
|
14558
|
+
index: number;
|
|
14559
|
+
/**
|
|
14560
|
+
* The Article Name
|
|
14561
|
+
*/
|
|
14562
|
+
name: string;
|
|
14563
|
+
};
|
|
14357
14564
|
}
|
|
14358
14565
|
import MAFSizerBatchModel from "@ricado/api-client/Models/Packhouse/Site/MAFSizerBatchModel";
|
|
14359
14566
|
}
|
|
@@ -15178,6 +15385,10 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/MAFSizerPackrunSum
|
|
|
15178
15385
|
* An Array of Packrun Summary Data Objects for each Class Type
|
|
15179
15386
|
*/
|
|
15180
15387
|
classTypeSummaries?: ClassTypeSummary[] | undefined;
|
|
15388
|
+
/**
|
|
15389
|
+
* An Array of Packrun Summary Data Objects for each Outlet
|
|
15390
|
+
*/
|
|
15391
|
+
outletSummaries?: OutletSummary[] | undefined;
|
|
15181
15392
|
/**
|
|
15182
15393
|
* An Array that contains the Articles initially Assigned to each Outlet
|
|
15183
15394
|
*/
|
|
@@ -15207,6 +15418,10 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/MAFSizerPackrunSum
|
|
|
15207
15418
|
* An Array of Packrun Summary Data Objects for each Class Type
|
|
15208
15419
|
*/
|
|
15209
15420
|
classTypeSummaries?: ClassTypeSummary[] | undefined;
|
|
15421
|
+
/**
|
|
15422
|
+
* An Array of Packrun Summary Data Objects for each Outlet
|
|
15423
|
+
*/
|
|
15424
|
+
outletSummaries?: OutletSummary[] | undefined;
|
|
15210
15425
|
/**
|
|
15211
15426
|
* An Array that contains the Articles initially Assigned to each Outlet
|
|
15212
15427
|
*/
|
|
@@ -15293,6 +15508,56 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/MAFSizerPackrunSum
|
|
|
15293
15508
|
*/
|
|
15294
15509
|
totals: ClassTypeTotal[];
|
|
15295
15510
|
};
|
|
15511
|
+
/**
|
|
15512
|
+
* A **OutletTotal** Type
|
|
15513
|
+
*/
|
|
15514
|
+
type OutletTotal = {
|
|
15515
|
+
/**
|
|
15516
|
+
* The Class Type
|
|
15517
|
+
*/
|
|
15518
|
+
classType: string | null;
|
|
15519
|
+
/**
|
|
15520
|
+
* The Fruit Size
|
|
15521
|
+
*/
|
|
15522
|
+
fruitSize: string;
|
|
15523
|
+
/**
|
|
15524
|
+
* The Pack Type
|
|
15525
|
+
*/
|
|
15526
|
+
packType: string | null;
|
|
15527
|
+
/**
|
|
15528
|
+
* The Weight expressed in Kilograms
|
|
15529
|
+
*/
|
|
15530
|
+
weight: number;
|
|
15531
|
+
/**
|
|
15532
|
+
* The Fruit Count
|
|
15533
|
+
*/
|
|
15534
|
+
fruitCount: number;
|
|
15535
|
+
/**
|
|
15536
|
+
* The Number of Packs
|
|
15537
|
+
*/
|
|
15538
|
+
packCount: number | null;
|
|
15539
|
+
};
|
|
15540
|
+
/**
|
|
15541
|
+
* A **OutletSummary** Type
|
|
15542
|
+
*/
|
|
15543
|
+
type OutletSummary = {
|
|
15544
|
+
/**
|
|
15545
|
+
* The Outlet Name
|
|
15546
|
+
*/
|
|
15547
|
+
name: string;
|
|
15548
|
+
/**
|
|
15549
|
+
* The Generic Outlet Type
|
|
15550
|
+
*/
|
|
15551
|
+
type: string;
|
|
15552
|
+
/**
|
|
15553
|
+
* The Outlet Number
|
|
15554
|
+
*/
|
|
15555
|
+
number: number;
|
|
15556
|
+
/**
|
|
15557
|
+
* An Array of Totals for the Outlet
|
|
15558
|
+
*/
|
|
15559
|
+
totals: OutletTotal[];
|
|
15560
|
+
};
|
|
15296
15561
|
/**
|
|
15297
15562
|
* A **InitialOutletArticle** Type
|
|
15298
15563
|
*/
|
|
@@ -17349,6 +17614,14 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackrunController'
|
|
|
17349
17614
|
* The Percentage of Total Fruit that was Recycled for the Batch
|
|
17350
17615
|
*/
|
|
17351
17616
|
recyclePercentage: number;
|
|
17617
|
+
/**
|
|
17618
|
+
* The Incoming Fruit Count for the Batch
|
|
17619
|
+
*/
|
|
17620
|
+
incomingFruitCount: number;
|
|
17621
|
+
/**
|
|
17622
|
+
* The Incoming Fruit Weight (kg) for the Batch
|
|
17623
|
+
*/
|
|
17624
|
+
incomingFruitWeight: number;
|
|
17352
17625
|
};
|
|
17353
17626
|
/**
|
|
17354
17627
|
* A **SizerItem** Type
|
|
@@ -17436,6 +17709,18 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackrunController'
|
|
|
17436
17709
|
*/
|
|
17437
17710
|
compacSizers: any[];
|
|
17438
17711
|
sizers: SizerItem[];
|
|
17712
|
+
/**
|
|
17713
|
+
* The IDs of the Sizers that directly receive Fruit from the Infeed
|
|
17714
|
+
*/
|
|
17715
|
+
incomingSizerIds: string[];
|
|
17716
|
+
/**
|
|
17717
|
+
* The Incoming Fruit Count of all Incoming Sizers
|
|
17718
|
+
*/
|
|
17719
|
+
incomingSizersFruitCount: number;
|
|
17720
|
+
/**
|
|
17721
|
+
* The Incoming Fruit Weight of all Incoming Sizers
|
|
17722
|
+
*/
|
|
17723
|
+
incomingSizersFruitWeight: number;
|
|
17439
17724
|
/**
|
|
17440
17725
|
* The Reject Bin Summary for the Packrun
|
|
17441
17726
|
*/
|
|
@@ -23188,6 +23473,62 @@ declare module '@ricado/api-client/Models/Lab/Site/FruitProfileModel' {
|
|
|
23188
23473
|
* @public
|
|
23189
23474
|
*/
|
|
23190
23475
|
maximumTargetTemperature: number;
|
|
23476
|
+
/**
|
|
23477
|
+
* The Warm-Up Temperature for starting the Warm Up alerts
|
|
23478
|
+
*
|
|
23479
|
+
* @type {number}
|
|
23480
|
+
* @public
|
|
23481
|
+
*/
|
|
23482
|
+
warmUpStartExpectedTemperature: number;
|
|
23483
|
+
/**
|
|
23484
|
+
* The Warm-Up Start Expected Rate of Change
|
|
23485
|
+
*
|
|
23486
|
+
* @type {number}
|
|
23487
|
+
* @public
|
|
23488
|
+
*/
|
|
23489
|
+
warmUpStartExpectedRateOfChange: number;
|
|
23490
|
+
/**
|
|
23491
|
+
* The Warm-Up Stage Two Expected Temperature
|
|
23492
|
+
*
|
|
23493
|
+
* @type {number}
|
|
23494
|
+
* @public
|
|
23495
|
+
*/
|
|
23496
|
+
warmUpStageTwoExpectedTemperature: number;
|
|
23497
|
+
/**
|
|
23498
|
+
* The Warm-Up Stage Two Expected Rate of Change
|
|
23499
|
+
*
|
|
23500
|
+
* @type {number}
|
|
23501
|
+
* @public
|
|
23502
|
+
*/
|
|
23503
|
+
warmUpStageTwoExpectedRateOfChange: number;
|
|
23504
|
+
/**
|
|
23505
|
+
* The Warm-Up Stage Three Expected Temperature
|
|
23506
|
+
*
|
|
23507
|
+
* @type {number}
|
|
23508
|
+
* @public
|
|
23509
|
+
*/
|
|
23510
|
+
warmUpStageThreeExpectedTemperature: number;
|
|
23511
|
+
/**
|
|
23512
|
+
* The Warm-Up Stage Three Expected Rate of Change
|
|
23513
|
+
*
|
|
23514
|
+
* @type {number}
|
|
23515
|
+
* @public
|
|
23516
|
+
*/
|
|
23517
|
+
warmUpStageThreeExpectedRateOfChange: number;
|
|
23518
|
+
/**
|
|
23519
|
+
* The Warm-Up End Expected Temperature
|
|
23520
|
+
*
|
|
23521
|
+
* @type {number}
|
|
23522
|
+
* @public
|
|
23523
|
+
*/
|
|
23524
|
+
warmUpEndExpectedTemperature: number;
|
|
23525
|
+
/**
|
|
23526
|
+
* The Warm-Up End Expected Rate of Change
|
|
23527
|
+
*
|
|
23528
|
+
* @type {number}
|
|
23529
|
+
* @public
|
|
23530
|
+
*/
|
|
23531
|
+
warmUpEndExpectedRateOfChange: number;
|
|
23191
23532
|
/**
|
|
23192
23533
|
* Whether the Fruit Profile has been deleted
|
|
23193
23534
|
*
|
|
@@ -23792,6 +24133,13 @@ declare module '@ricado/api-client/Models/Lab/Site/SampleModel' {
|
|
|
23792
24133
|
* @public
|
|
23793
24134
|
*/
|
|
23794
24135
|
scheduledTimestamp: Date | null;
|
|
24136
|
+
/**
|
|
24137
|
+
* Optional When the Schedule was received from Inspect
|
|
24138
|
+
*
|
|
24139
|
+
* @type {?Date}
|
|
24140
|
+
* @public
|
|
24141
|
+
*/
|
|
24142
|
+
scheduleReceivedTimestamp: Date | null;
|
|
23795
24143
|
/**
|
|
23796
24144
|
* When this Sample was Loaded into the Dehydrator
|
|
23797
24145
|
*
|
|
@@ -23869,6 +24217,27 @@ declare module '@ricado/api-client/Models/Lab/Site/SampleModel' {
|
|
|
23869
24217
|
* @public
|
|
23870
24218
|
*/
|
|
23871
24219
|
resultId: string | null;
|
|
24220
|
+
/**
|
|
24221
|
+
* Optional the BlindedSampleID Reference defined in RadfordsInspect
|
|
24222
|
+
*
|
|
24223
|
+
* @type {?string}
|
|
24224
|
+
* @public
|
|
24225
|
+
*/
|
|
24226
|
+
blindedSampleID: string | null;
|
|
24227
|
+
/**
|
|
24228
|
+
* Optional the Sample Short Description defined in RadfordsInspect
|
|
24229
|
+
*
|
|
24230
|
+
* @type {?string}
|
|
24231
|
+
* @public
|
|
24232
|
+
*/
|
|
24233
|
+
shortDescription: string | null;
|
|
24234
|
+
/**
|
|
24235
|
+
* Optional the Sample Description defined in RadfordsInspect
|
|
24236
|
+
*
|
|
24237
|
+
* @type {?string}
|
|
24238
|
+
* @public
|
|
24239
|
+
*/
|
|
24240
|
+
sampleDescription: string | null;
|
|
23872
24241
|
/**
|
|
23873
24242
|
* The Status of this Sample
|
|
23874
24243
|
*
|
|
@@ -26474,13 +26843,21 @@ declare module '@ricado/api-client/Models/Packhouse/Site/MAFSizerBatchModel' {
|
|
|
26474
26843
|
* @public
|
|
26475
26844
|
*/
|
|
26476
26845
|
packrunId: string | null;
|
|
26846
|
+
/**
|
|
26847
|
+
* When the Final Update from the MAF Sizer Orphea Database has been Received
|
|
26848
|
+
*
|
|
26849
|
+
* @type {?Date}
|
|
26850
|
+
* @public
|
|
26851
|
+
*/
|
|
26852
|
+
finalOrpheaUpdate: Date | null;
|
|
26477
26853
|
/**
|
|
26478
26854
|
* An Array of Summary Data Objects for each Article
|
|
26479
26855
|
*
|
|
26480
|
-
* @type {Array<{name: string, fruitCount: number, fruitWeight: number}>}
|
|
26856
|
+
* @type {Array<{index: ?number, name: string, fruitCount: number, fruitWeight: number}>}
|
|
26481
26857
|
* @public
|
|
26482
26858
|
*/
|
|
26483
26859
|
articleSummaries: {
|
|
26860
|
+
index: number | null;
|
|
26484
26861
|
name: string;
|
|
26485
26862
|
fruitCount: number;
|
|
26486
26863
|
fruitWeight: number;
|
|
@@ -26488,26 +26865,65 @@ declare module '@ricado/api-client/Models/Packhouse/Site/MAFSizerBatchModel' {
|
|
|
26488
26865
|
/**
|
|
26489
26866
|
* An Array of Summary Data Objects for each Outlet
|
|
26490
26867
|
*
|
|
26491
|
-
* @type {Array<{number: number, fruitCount: number, fruitWeight: number}>}
|
|
26868
|
+
* @type {Array<{number: number, fruitCount: number, fruitWeight: number, seenArticles: number[], activeArticles: number[]}>}
|
|
26492
26869
|
* @public
|
|
26493
26870
|
*/
|
|
26494
26871
|
outletSummaries: {
|
|
26495
26872
|
number: number;
|
|
26496
26873
|
fruitCount: number;
|
|
26497
26874
|
fruitWeight: number;
|
|
26875
|
+
seenArticles: number[];
|
|
26876
|
+
activeArticles: number[];
|
|
26498
26877
|
}[];
|
|
26499
26878
|
/**
|
|
26500
26879
|
* An Array of Summary Data Objects for each Fruit Size and Article
|
|
26501
26880
|
*
|
|
26502
|
-
* @type {Array<{
|
|
26881
|
+
* @type {Array<{sizeIndex: number, sizeName: string, articleIndex: number, articleName: string, fruitCount: number, fruitWeight: number}>}
|
|
26503
26882
|
* @public
|
|
26504
26883
|
*/
|
|
26505
26884
|
fruitSummaries: {
|
|
26885
|
+
sizeIndex: number;
|
|
26886
|
+
sizeName: string;
|
|
26887
|
+
articleIndex: number;
|
|
26506
26888
|
articleName: string;
|
|
26507
|
-
fruitSize: string;
|
|
26508
26889
|
fruitCount: number;
|
|
26509
26890
|
fruitWeight: number;
|
|
26510
26891
|
}[];
|
|
26892
|
+
/**
|
|
26893
|
+
* An Array of Summary Data Objects for each Outlet by Fruit Size and Article
|
|
26894
|
+
*
|
|
26895
|
+
* @type {Array<{outletNumber: number, sizeIndex: number, sizeName: string, articleIndex: number, articleName: string, fruitCount: number, fruitWeight: number}>}
|
|
26896
|
+
* @public
|
|
26897
|
+
*/
|
|
26898
|
+
outletFruitSummaries: {
|
|
26899
|
+
outletNumber: number;
|
|
26900
|
+
sizeIndex: number;
|
|
26901
|
+
sizeName: string;
|
|
26902
|
+
articleIndex: number;
|
|
26903
|
+
articleName: string;
|
|
26904
|
+
fruitCount: number;
|
|
26905
|
+
fruitWeight: number;
|
|
26906
|
+
}[];
|
|
26907
|
+
/**
|
|
26908
|
+
* An Array of Size Names and Indexes
|
|
26909
|
+
*
|
|
26910
|
+
* @type {Array<{index: number, name: string}>}
|
|
26911
|
+
* @public
|
|
26912
|
+
*/
|
|
26913
|
+
sizeNames: {
|
|
26914
|
+
index: number;
|
|
26915
|
+
name: string;
|
|
26916
|
+
}[];
|
|
26917
|
+
/**
|
|
26918
|
+
* An Array of Article Names and Indexes
|
|
26919
|
+
*
|
|
26920
|
+
* @type {Array<{index: number, name: string}>}
|
|
26921
|
+
* @public
|
|
26922
|
+
*/
|
|
26923
|
+
articleNames: {
|
|
26924
|
+
index: number;
|
|
26925
|
+
name: string;
|
|
26926
|
+
}[];
|
|
26511
26927
|
/**
|
|
26512
26928
|
* Whether the MAF Sizer Batch has been deleted
|
|
26513
26929
|
*
|
|
@@ -26932,6 +27348,25 @@ declare module '@ricado/api-client/Models/Packhouse/Site/MAFSizerPackrunSummaryM
|
|
|
26932
27348
|
packCount: number | null;
|
|
26933
27349
|
}[];
|
|
26934
27350
|
}[];
|
|
27351
|
+
/**
|
|
27352
|
+
* An Array of Packrun Summary Data Objects for each Outlet
|
|
27353
|
+
*
|
|
27354
|
+
* @type {Array<{name: string, type: string, number: number, totals: Array<{classType: ?string, fruitSize: string, packType: ?string, weight: number, fruitCount: number, packCount: ?number}>}>}
|
|
27355
|
+
* @public
|
|
27356
|
+
*/
|
|
27357
|
+
outletSummaries: {
|
|
27358
|
+
name: string;
|
|
27359
|
+
type: string;
|
|
27360
|
+
number: number;
|
|
27361
|
+
totals: {
|
|
27362
|
+
classType: string | null;
|
|
27363
|
+
fruitSize: string;
|
|
27364
|
+
packType: string | null;
|
|
27365
|
+
weight: number;
|
|
27366
|
+
fruitCount: number;
|
|
27367
|
+
packCount: number | null;
|
|
27368
|
+
}[];
|
|
27369
|
+
}[];
|
|
26935
27370
|
/**
|
|
26936
27371
|
* An Array that contains the Articles initially Assigned to each Outlet
|
|
26937
27372
|
*
|
package/package.json
CHANGED
|
@@ -164,6 +164,14 @@ export default FruitProfileController;
|
|
|
164
164
|
* @property {number} maximumTotalDuration The Maximum Duration (in seconds) that a Sample can be Dehydrated for before it is Considered Non-Compliant
|
|
165
165
|
* @property {number} minimumTargetTemperature The Minimum Target Temperature for a Sample to be Compliant
|
|
166
166
|
* @property {number} maximumTargetTemperature The Maximum Target Temperature for a Sample to be Compliant
|
|
167
|
+
* @property {number} warmUpStartExpectedTemperature The Warm-Up Temperature for starting the Warm Up alerts
|
|
168
|
+
* @property {number} warmUpStartExpectedRateOfChange The Warm-Up Start Expected Rate of Change
|
|
169
|
+
* @property {number} warmUpStageTwoExpectedTemperature The Warm-Up Stage Two Expected Temperature
|
|
170
|
+
* @property {number} warmUpStageTwoExpectedRateOfChange The Warm-Up Stage Two Expected Rate of Change
|
|
171
|
+
* @property {number} warmUpStageThreeExpectedTemperature The Warm-Up Stage Three Expected Temperature
|
|
172
|
+
* @property {number} warmUpStageThreeExpectedRateOfChange The Warm-Up Stage Three Expected Rate of Change
|
|
173
|
+
* @property {number} warmUpEndExpectedTemperature The Warm-Up End Expected Temperature
|
|
174
|
+
* @property {number} warmUpEndExpectedRateOfChange The Warm-Up End Expected Rate of Change
|
|
167
175
|
* @memberof Controllers.Lab.Site
|
|
168
176
|
*/
|
|
169
177
|
|
|
@@ -180,5 +188,13 @@ export default FruitProfileController;
|
|
|
180
188
|
* @property {number} [maximumTotalDuration] The Maximum Duration (in seconds) that a Sample can be Dehydrated for before it is Considered Non-Compliant
|
|
181
189
|
* @property {number} [minimumTargetTemperature] The Minimum Target Temperature for a Sample to be Compliant
|
|
182
190
|
* @property {number} [maximumTargetTemperature] The Maximum Target Temperature for a Sample to be Compliant
|
|
191
|
+
* @property {number} [warmUpStartExpectedTemperature] The Warm-Up Temperature for starting the Warm Up alerts
|
|
192
|
+
* @property {number} [warmUpStartExpectedRateOfChange] The Warm-Up Start Expected Rate of Change
|
|
193
|
+
* @property {number} [warmUpStageTwoExpectedTemperature] The Warm-Up Stage Two Expected Temperature
|
|
194
|
+
* @property {number} [warmUpStageTwoExpectedRateOfChange] The Warm-Up Stage Two Expected Rate of Change
|
|
195
|
+
* @property {number} [warmUpStageThreeExpectedTemperature] The Warm-Up Stage Three Expected Temperature
|
|
196
|
+
* @property {number} [warmUpStageThreeExpectedRateOfChange] The Warm-Up Stage Three Expected Rate of Change
|
|
197
|
+
* @property {number} [warmUpEndExpectedTemperature] The Warm-Up End Expected Temperature
|
|
198
|
+
* @property {number} [warmUpEndExpectedRateOfChange] The Warm-Up End Expected Rate of Change
|
|
183
199
|
* @memberof Controllers.Lab.Site
|
|
184
200
|
*/
|