@ricado/api-client 1.4.1 → 2.1.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/AccountPolicyController.js +1 -1
- package/lib/Controllers/ApiAccountController.js +2 -2
- package/lib/Controllers/CompanyController.js +1 -1
- package/lib/Controllers/FirebaseTokenController.js +1 -1
- package/lib/Controllers/Packhouse/Site/BinTipWeightController.js +2 -2
- package/lib/Controllers/Packhouse/Site/CompacSizerBatchController.js +2 -2
- package/lib/Controllers/Packhouse/Site/CompacSizerController.js +1 -1
- package/lib/Controllers/Packhouse/Site/CompacSizerOutletProductChangeController.js +2 -2
- package/lib/Controllers/Packhouse/Site/CompacSizerOutletTypeChangeController.js +2 -2
- package/lib/Controllers/Packhouse/Site/CompacSizerOutletTypeController.js +1 -1
- package/lib/Controllers/Packhouse/Site/CompacSizerPackrunSummaryController.js +2 -2
- package/lib/Controllers/Packhouse/Site/DowntimeEventController.js +2 -2
- package/lib/Controllers/Packhouse/Site/FreshPackPackrunSummaryController.js +2 -2
- package/lib/Controllers/Packhouse/Site/GrowingMethodController.js +1 -1
- package/lib/Controllers/Packhouse/Site/PackTypeController.js +1 -1
- package/lib/Controllers/Packhouse/Site/PackingLineController.js +1 -1
- package/lib/Controllers/Packhouse/Site/PackrunController.js +288 -2
- package/lib/Controllers/Packhouse/Site/RejectBinController.js +2 -2
- package/lib/Controllers/Packhouse/Site/RejectBinScaleController.js +1 -1
- package/lib/Controllers/Packhouse/Site/RejectBinWeightController.js +2 -2
- package/lib/Controllers/Packhouse/Site/ShiftController.js +2 -2
- package/lib/Controllers/Packhouse/Site/ShiftFocusMeetingController.js +2 -2
- package/lib/Controllers/Packhouse/Site/ShiftHourlyEntryController.js +2 -2
- package/lib/Controllers/Packhouse/Site/VarietyController.js +1 -1
- package/lib/Controllers/RTU/GlobalSettingsController.js +2 -2
- package/lib/Controllers/RTU/PluginSettingsController.js +2 -2
- package/lib/Controllers/RTUController.js +1 -1
- package/lib/Controllers/RTUPluginController.js +1 -1
- package/lib/Controllers/Site/AlarmController.js +2 -2
- package/lib/Controllers/Site/AlarmGroupController.js +1 -1
- package/lib/Controllers/Site/DefinitionController.js +1 -1
- package/lib/Controllers/Site/PermanentObjectController.js +1 -1
- package/lib/Controllers/Site/PermanentObjectDataController.js +2 -2
- package/lib/Controllers/Site/PointController.js +2 -2
- package/lib/Controllers/Site/TemporaryObjectController.js +1 -1
- package/lib/Controllers/SiteController.js +1 -1
- package/lib/Controllers/TokenController.js +2 -2
- package/lib/Controllers/ToolsController.js +1 -1
- package/lib/Controllers/UserAccountActionTokenController.js +2 -2
- package/lib/Controllers/UserAccountController.js +2 -2
- package/lib/DataItems/PointValueItem.js +2 -2
- package/lib/Errors/BadRequestError.js +7 -3
- package/lib/Errors/ForbiddenError.js +7 -3
- package/lib/Errors/NetworkError.js +7 -3
- package/lib/Errors/NotAllowedError.js +7 -3
- package/lib/Errors/NotFoundError.js +7 -3
- package/lib/Errors/ServerError.js +7 -3
- package/lib/Errors/UnauthorizedError.js +7 -3
- package/lib/Models/AccountPolicyModel.js +29 -133
- package/lib/Models/ApiAccountModel.js +29 -133
- package/lib/Models/BaseModel.js +6 -2
- package/lib/Models/CompanyModel.js +23 -101
- package/lib/Models/FirebaseTokenModel.js +32 -149
- package/lib/Models/Packhouse/Site/BinTipWeightModel.js +43 -185
- package/lib/Models/Packhouse/Site/CompacSizerBatchModel.js +40 -169
- package/lib/Models/Packhouse/Site/CompacSizerModel.js +58 -265
- package/lib/Models/Packhouse/Site/CompacSizerOutletProductChangeModel.js +46 -201
- package/lib/Models/Packhouse/Site/CompacSizerOutletTypeChangeModel.js +40 -169
- package/lib/Models/Packhouse/Site/CompacSizerOutletTypeModel.js +34 -137
- package/lib/Models/Packhouse/Site/CompacSizerPackrunSummaryModel.js +52 -233
- package/lib/Models/Packhouse/Site/DowntimeEventModel.js +58 -265
- package/lib/Models/Packhouse/Site/FreshPackPackrunSummaryModel.js +40 -169
- package/lib/Models/Packhouse/Site/GrowingMethodModel.js +34 -137
- package/lib/Models/Packhouse/Site/PackTypeModel.js +40 -169
- package/lib/Models/Packhouse/Site/PackingLineModel.js +61 -281
- package/lib/Models/Packhouse/Site/PackrunModel.js +61 -281
- package/lib/Models/Packhouse/Site/RejectBinModel.js +43 -185
- package/lib/Models/Packhouse/Site/RejectBinScaleModel.js +52 -233
- package/lib/Models/Packhouse/Site/RejectBinWeightModel.js +46 -201
- package/lib/Models/Packhouse/Site/ShiftFocusMeetingModel.js +52 -233
- package/lib/Models/Packhouse/Site/ShiftHourlyEntryModel.js +127 -633
- package/lib/Models/Packhouse/Site/ShiftModel.js +73 -345
- package/lib/Models/Packhouse/Site/VarietyModel.js +40 -169
- package/lib/Models/RTUModel.js +26 -117
- package/lib/Models/RTUPluginModel.js +23 -101
- package/lib/Models/Site/AlarmGroupModel.js +37 -153
- package/lib/Models/Site/AlarmModel.js +67 -313
- package/lib/Models/Site/DefinitionModel.js +34 -137
- package/lib/Models/Site/PermanentObjectDataModel.js +40 -169
- package/lib/Models/Site/PermanentObjectModel.js +37 -153
- package/lib/Models/Site/PointModel.js +49 -217
- package/lib/Models/Site/TemporaryObjectModel.js +34 -137
- package/lib/Models/Site/index.js +0 -3
- package/lib/Models/SiteModel.js +26 -117
- package/lib/Models/TokenModel.js +38 -181
- package/lib/Models/UserAccountActionTokenModel.js +41 -197
- package/lib/Models/UserAccountModel.js +38 -181
- package/lib/PackageVersion.js +1 -1
- package/lib/Points.js +1 -1
- package/lib/RequestHelper.js +2 -2
- package/lib/WebSocketHelper.js +1 -1
- package/lib/index.d.ts +945 -1206
- package/package.json +3 -3
- package/src/Controllers/Packhouse/Site/PackrunController.js +361 -0
- package/src/Models/AccountPolicyModel.js +21 -117
- package/src/Models/ApiAccountModel.js +21 -117
- package/src/Models/CompanyModel.js +15 -87
- package/src/Models/FirebaseTokenModel.js +24 -132
- package/src/Models/Packhouse/Site/BinTipWeightModel.js +32 -163
- package/src/Models/Packhouse/Site/CompacSizerBatchModel.js +29 -148
- package/src/Models/Packhouse/Site/CompacSizerModel.js +47 -238
- package/src/Models/Packhouse/Site/CompacSizerOutletProductChangeModel.js +35 -178
- package/src/Models/Packhouse/Site/CompacSizerOutletTypeChangeModel.js +29 -148
- package/src/Models/Packhouse/Site/CompacSizerOutletTypeModel.js +23 -118
- package/src/Models/Packhouse/Site/CompacSizerPackrunSummaryModel.js +41 -208
- package/src/Models/Packhouse/Site/DowntimeEventModel.js +47 -238
- package/src/Models/Packhouse/Site/FreshPackPackrunSummaryModel.js +29 -148
- package/src/Models/Packhouse/Site/GrowingMethodModel.js +23 -118
- package/src/Models/Packhouse/Site/PackTypeModel.js +29 -148
- package/src/Models/Packhouse/Site/PackingLineModel.js +50 -253
- package/src/Models/Packhouse/Site/PackrunModel.js +50 -253
- package/src/Models/Packhouse/Site/RejectBinModel.js +32 -163
- package/src/Models/Packhouse/Site/RejectBinScaleModel.js +41 -208
- package/src/Models/Packhouse/Site/RejectBinWeightModel.js +35 -178
- package/src/Models/Packhouse/Site/ShiftFocusMeetingModel.js +41 -208
- package/src/Models/Packhouse/Site/ShiftHourlyEntryModel.js +116 -583
- package/src/Models/Packhouse/Site/ShiftModel.js +62 -313
- package/src/Models/Packhouse/Site/VarietyModel.js +29 -148
- package/src/Models/RTUModel.js +18 -102
- package/src/Models/RTUPluginModel.js +15 -87
- package/src/Models/Site/AlarmGroupModel.js +26 -133
- package/src/Models/Site/AlarmModel.js +56 -283
- package/src/Models/Site/DefinitionModel.js +23 -118
- package/src/Models/Site/PermanentObjectDataModel.js +29 -148
- package/src/Models/Site/PermanentObjectModel.js +26 -133
- package/src/Models/Site/PointModel.js +38 -193
- package/src/Models/Site/TemporaryObjectModel.js +23 -118
- package/src/Models/Site/index.js +0 -2
- package/src/Models/SiteModel.js +18 -102
- package/src/Models/TokenModel.js +30 -162
- package/src/Models/UserAccountActionTokenModel.js +33 -177
- package/src/Models/UserAccountModel.js +30 -162
- package/src/PackageVersion.js +1 -1
- package/lib/Models/Site/BaseSiteModel.js +0 -58
- package/src/Models/Site/BaseSiteModel.js +0 -30
package/lib/index.d.ts
CHANGED
|
@@ -611,9 +611,9 @@ declare module '@ricado/api-client/Models/Site/PointModel' {
|
|
|
611
611
|
*
|
|
612
612
|
* @class
|
|
613
613
|
* @hideconstructor
|
|
614
|
-
* @extends
|
|
614
|
+
* @extends BaseModel
|
|
615
615
|
*/
|
|
616
|
-
class PointModel extends
|
|
616
|
+
class PointModel extends BaseModel {
|
|
617
617
|
/**
|
|
618
618
|
* Create a new **PointModel** from a JSON Object or JSON String
|
|
619
619
|
*
|
|
@@ -636,98 +636,89 @@ declare module '@ricado/api-client/Models/Site/PointModel' {
|
|
|
636
636
|
/**
|
|
637
637
|
* The Point ID
|
|
638
638
|
*
|
|
639
|
-
* @public
|
|
640
639
|
* @type {number}
|
|
640
|
+
* @public
|
|
641
641
|
*/
|
|
642
|
-
|
|
642
|
+
id: number;
|
|
643
643
|
/**
|
|
644
644
|
* The RTU this Point belongs to
|
|
645
645
|
*
|
|
646
|
-
* @public
|
|
647
646
|
* @type {?number}
|
|
647
|
+
* @public
|
|
648
648
|
*/
|
|
649
|
-
|
|
649
|
+
rtuId: number | null;
|
|
650
650
|
/**
|
|
651
651
|
* The Plugin ID
|
|
652
652
|
*
|
|
653
|
-
* @public
|
|
654
653
|
* @type {?number}
|
|
654
|
+
* @public
|
|
655
655
|
*/
|
|
656
|
-
|
|
656
|
+
pluginId: number | null;
|
|
657
657
|
/**
|
|
658
658
|
* The Point Name
|
|
659
659
|
*
|
|
660
|
-
* @public
|
|
661
660
|
* @type {string}
|
|
661
|
+
* @public
|
|
662
662
|
*/
|
|
663
|
-
|
|
663
|
+
name: string;
|
|
664
664
|
/**
|
|
665
665
|
* The Point Type
|
|
666
666
|
*
|
|
667
|
-
* @public
|
|
668
667
|
* @type {string}
|
|
668
|
+
* @public
|
|
669
669
|
*/
|
|
670
|
-
|
|
670
|
+
type: string;
|
|
671
671
|
/**
|
|
672
672
|
* The Point's Value Type
|
|
673
673
|
*
|
|
674
|
-
* @public
|
|
675
674
|
* @type {string}
|
|
675
|
+
* @public
|
|
676
676
|
*/
|
|
677
|
-
|
|
677
|
+
valueType: string;
|
|
678
678
|
/**
|
|
679
679
|
* The Permissions
|
|
680
680
|
*
|
|
681
|
-
* @public
|
|
682
681
|
* @type {string}
|
|
682
|
+
* @public
|
|
683
683
|
*/
|
|
684
|
-
|
|
684
|
+
permissions: string;
|
|
685
685
|
/**
|
|
686
686
|
* Whether the Point is Enabled
|
|
687
687
|
*
|
|
688
|
-
* @public
|
|
689
688
|
* @type {boolean}
|
|
689
|
+
* @public
|
|
690
690
|
*/
|
|
691
|
-
|
|
691
|
+
enabled: boolean;
|
|
692
692
|
/**
|
|
693
693
|
* The Point Settings
|
|
694
694
|
*
|
|
695
|
-
* @public
|
|
696
695
|
* @type {Object}
|
|
696
|
+
* @public
|
|
697
697
|
*/
|
|
698
|
-
|
|
698
|
+
settings: any;
|
|
699
699
|
/**
|
|
700
700
|
* Whether the Point has been deleted
|
|
701
701
|
*
|
|
702
|
-
* @public
|
|
703
702
|
* @type {boolean}
|
|
703
|
+
* @public
|
|
704
704
|
*/
|
|
705
|
-
|
|
705
|
+
deleted: boolean;
|
|
706
706
|
/**
|
|
707
707
|
* When the Point was last updated
|
|
708
708
|
*
|
|
709
|
-
* @public
|
|
710
709
|
* @type {Date}
|
|
710
|
+
* @public
|
|
711
711
|
*/
|
|
712
|
-
|
|
712
|
+
updateTimestamp: Date;
|
|
713
713
|
/**
|
|
714
714
|
* The Site ID associated with this Point
|
|
715
715
|
*
|
|
716
|
-
* @public
|
|
717
716
|
* @type {number}
|
|
718
|
-
*/
|
|
719
|
-
get siteId(): number;
|
|
720
|
-
/**
|
|
721
|
-
* Convert this **PointModel** to a JSON Object
|
|
722
|
-
*
|
|
723
717
|
* @public
|
|
724
|
-
* @return {Object<string, any>}
|
|
725
718
|
*/
|
|
726
|
-
|
|
727
|
-
[x: string]: any;
|
|
728
|
-
};
|
|
719
|
+
siteId: number;
|
|
729
720
|
}
|
|
730
|
-
import
|
|
721
|
+
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
731
722
|
}
|
|
732
723
|
|
|
733
724
|
declare module '@ricado/api-client/Controllers/AccountPolicyController' {
|
|
@@ -2340,31 +2331,31 @@ declare module '@ricado/api-client/Models/AccountPolicyModel' {
|
|
|
2340
2331
|
/**
|
|
2341
2332
|
* The Account Policy ID
|
|
2342
2333
|
*
|
|
2343
|
-
* @public
|
|
2344
2334
|
* @type {string}
|
|
2335
|
+
* @public
|
|
2345
2336
|
*/
|
|
2346
|
-
|
|
2337
|
+
id: string;
|
|
2347
2338
|
/**
|
|
2348
2339
|
* The Policy Name
|
|
2349
2340
|
*
|
|
2350
|
-
* @public
|
|
2351
2341
|
* @type {string}
|
|
2342
|
+
* @public
|
|
2352
2343
|
*/
|
|
2353
|
-
|
|
2344
|
+
name: string;
|
|
2354
2345
|
/**
|
|
2355
2346
|
* The Company this Policy belongs to
|
|
2356
2347
|
*
|
|
2357
|
-
* @public
|
|
2358
2348
|
* @type {string}
|
|
2349
|
+
* @public
|
|
2359
2350
|
*/
|
|
2360
|
-
|
|
2351
|
+
companyId: string;
|
|
2361
2352
|
/**
|
|
2362
2353
|
* The Resources this Policy provides
|
|
2363
2354
|
*
|
|
2364
|
-
* @public
|
|
2365
2355
|
* @type {Array<{id: any, type: string, actions: string[], permission: string}>}
|
|
2356
|
+
* @public
|
|
2366
2357
|
*/
|
|
2367
|
-
|
|
2358
|
+
resources: {
|
|
2368
2359
|
id: any;
|
|
2369
2360
|
type: string;
|
|
2370
2361
|
actions: string[];
|
|
@@ -2373,33 +2364,24 @@ declare module '@ricado/api-client/Models/AccountPolicyModel' {
|
|
|
2373
2364
|
/**
|
|
2374
2365
|
* The Rules this Policy provides
|
|
2375
2366
|
*
|
|
2376
|
-
* @public
|
|
2377
2367
|
* @type {Object[]}
|
|
2368
|
+
* @public
|
|
2378
2369
|
*/
|
|
2379
|
-
|
|
2370
|
+
rules: any[];
|
|
2380
2371
|
/**
|
|
2381
2372
|
* Whether the Account Policy has been deleted
|
|
2382
2373
|
*
|
|
2383
|
-
* @public
|
|
2384
2374
|
* @type {boolean}
|
|
2375
|
+
* @public
|
|
2385
2376
|
*/
|
|
2386
|
-
|
|
2377
|
+
deleted: boolean;
|
|
2387
2378
|
/**
|
|
2388
2379
|
* When the Account Policy was last updated
|
|
2389
2380
|
*
|
|
2390
|
-
* @public
|
|
2391
2381
|
* @type {Date}
|
|
2392
|
-
*/
|
|
2393
|
-
get updateTimestamp(): Date;
|
|
2394
|
-
/**
|
|
2395
|
-
* Convert this **AccountPolicyModel** to a JSON Object
|
|
2396
|
-
*
|
|
2397
2382
|
* @public
|
|
2398
|
-
* @return {Object<string, any>}
|
|
2399
2383
|
*/
|
|
2400
|
-
|
|
2401
|
-
[x: string]: any;
|
|
2402
|
-
};
|
|
2384
|
+
updateTimestamp: Date;
|
|
2403
2385
|
}
|
|
2404
2386
|
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
2405
2387
|
}
|
|
@@ -2428,61 +2410,52 @@ declare module '@ricado/api-client/Models/ApiAccountModel' {
|
|
|
2428
2410
|
/**
|
|
2429
2411
|
* The API Account ID
|
|
2430
2412
|
*
|
|
2431
|
-
* @public
|
|
2432
2413
|
* @type {string}
|
|
2414
|
+
* @public
|
|
2433
2415
|
*/
|
|
2434
|
-
|
|
2416
|
+
id: string;
|
|
2435
2417
|
/**
|
|
2436
2418
|
* API Key
|
|
2437
2419
|
*
|
|
2438
|
-
* @public
|
|
2439
2420
|
* @type {?string}
|
|
2421
|
+
* @public
|
|
2440
2422
|
*/
|
|
2441
|
-
|
|
2423
|
+
key: string | null;
|
|
2442
2424
|
/**
|
|
2443
2425
|
* The API Account Name
|
|
2444
2426
|
*
|
|
2445
|
-
* @public
|
|
2446
2427
|
* @type {string}
|
|
2428
|
+
* @public
|
|
2447
2429
|
*/
|
|
2448
|
-
|
|
2430
|
+
name: string;
|
|
2449
2431
|
/**
|
|
2450
2432
|
* The Company this API Account belongs to
|
|
2451
2433
|
*
|
|
2452
|
-
* @public
|
|
2453
2434
|
* @type {string}
|
|
2435
|
+
* @public
|
|
2454
2436
|
*/
|
|
2455
|
-
|
|
2437
|
+
companyId: string;
|
|
2456
2438
|
/**
|
|
2457
2439
|
* The Policies that apply to this API Account
|
|
2458
2440
|
*
|
|
2459
|
-
* @public
|
|
2460
2441
|
* @type {string[]}
|
|
2442
|
+
* @public
|
|
2461
2443
|
*/
|
|
2462
|
-
|
|
2444
|
+
policies: string[];
|
|
2463
2445
|
/**
|
|
2464
2446
|
* Whether the API Account has been deleted
|
|
2465
2447
|
*
|
|
2466
|
-
* @public
|
|
2467
2448
|
* @type {boolean}
|
|
2449
|
+
* @public
|
|
2468
2450
|
*/
|
|
2469
|
-
|
|
2451
|
+
deleted: boolean;
|
|
2470
2452
|
/**
|
|
2471
2453
|
* When the API Account was last updated
|
|
2472
2454
|
*
|
|
2473
|
-
* @public
|
|
2474
2455
|
* @type {Date}
|
|
2475
|
-
*/
|
|
2476
|
-
get updateTimestamp(): Date;
|
|
2477
|
-
/**
|
|
2478
|
-
* Convert this **ApiAccountModel** to a JSON Object
|
|
2479
|
-
*
|
|
2480
2456
|
* @public
|
|
2481
|
-
* @return {Object<string, any>}
|
|
2482
2457
|
*/
|
|
2483
|
-
|
|
2484
|
-
[x: string]: any;
|
|
2485
|
-
};
|
|
2458
|
+
updateTimestamp: Date;
|
|
2486
2459
|
}
|
|
2487
2460
|
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
2488
2461
|
}
|
|
@@ -2524,47 +2497,38 @@ declare module '@ricado/api-client/Models/CompanyModel' {
|
|
|
2524
2497
|
/**
|
|
2525
2498
|
* The Company ID
|
|
2526
2499
|
*
|
|
2527
|
-
* @public
|
|
2528
2500
|
* @type {string}
|
|
2501
|
+
* @public
|
|
2529
2502
|
*/
|
|
2530
|
-
|
|
2503
|
+
id: string;
|
|
2531
2504
|
/**
|
|
2532
2505
|
* The Company Display Name
|
|
2533
2506
|
*
|
|
2534
|
-
* @public
|
|
2535
2507
|
* @type {string}
|
|
2508
|
+
* @public
|
|
2536
2509
|
*/
|
|
2537
|
-
|
|
2510
|
+
displayName: string;
|
|
2538
2511
|
/**
|
|
2539
2512
|
* The Company Legal Name
|
|
2540
2513
|
*
|
|
2541
|
-
* @public
|
|
2542
2514
|
* @type {string}
|
|
2515
|
+
* @public
|
|
2543
2516
|
*/
|
|
2544
|
-
|
|
2517
|
+
legalName: string;
|
|
2545
2518
|
/**
|
|
2546
2519
|
* Whether the Company has been deleted
|
|
2547
2520
|
*
|
|
2548
|
-
* @public
|
|
2549
2521
|
* @type {boolean}
|
|
2522
|
+
* @public
|
|
2550
2523
|
*/
|
|
2551
|
-
|
|
2524
|
+
deleted: boolean;
|
|
2552
2525
|
/**
|
|
2553
2526
|
* When the Company was last updated
|
|
2554
2527
|
*
|
|
2555
|
-
* @public
|
|
2556
2528
|
* @type {Date}
|
|
2557
|
-
*/
|
|
2558
|
-
get updateTimestamp(): Date;
|
|
2559
|
-
/**
|
|
2560
|
-
* Convert this **CompanyModel** to a JSON Object
|
|
2561
|
-
*
|
|
2562
2529
|
* @public
|
|
2563
|
-
* @return {Object<string, any>}
|
|
2564
2530
|
*/
|
|
2565
|
-
|
|
2566
|
-
[x: string]: any;
|
|
2567
|
-
};
|
|
2531
|
+
updateTimestamp: Date;
|
|
2568
2532
|
}
|
|
2569
2533
|
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
2570
2534
|
}
|
|
@@ -2593,68 +2557,59 @@ declare module '@ricado/api-client/Models/FirebaseTokenModel' {
|
|
|
2593
2557
|
/**
|
|
2594
2558
|
* The Firebase Token ID
|
|
2595
2559
|
*
|
|
2596
|
-
* @public
|
|
2597
2560
|
* @type {string}
|
|
2561
|
+
* @public
|
|
2598
2562
|
*/
|
|
2599
|
-
|
|
2563
|
+
id: string;
|
|
2600
2564
|
/**
|
|
2601
2565
|
* The Account this Firebase Token belongs to
|
|
2602
2566
|
*
|
|
2603
|
-
* @public
|
|
2604
2567
|
* @type {string}
|
|
2568
|
+
* @public
|
|
2605
2569
|
*/
|
|
2606
|
-
|
|
2570
|
+
accountId: string;
|
|
2607
2571
|
/**
|
|
2608
2572
|
* The Firebase Token
|
|
2609
2573
|
*
|
|
2610
|
-
* @public
|
|
2611
2574
|
* @type {string}
|
|
2575
|
+
* @public
|
|
2612
2576
|
*/
|
|
2613
|
-
|
|
2577
|
+
token: string;
|
|
2614
2578
|
/**
|
|
2615
2579
|
* Whether the Firebase Token should receive Notifications
|
|
2616
2580
|
*
|
|
2617
|
-
* @public
|
|
2618
2581
|
* @type {boolean}
|
|
2582
|
+
* @public
|
|
2619
2583
|
*/
|
|
2620
|
-
|
|
2584
|
+
enabled: boolean;
|
|
2621
2585
|
/**
|
|
2622
2586
|
* The Device Name
|
|
2623
2587
|
*
|
|
2624
|
-
* @public
|
|
2625
2588
|
* @type {string}
|
|
2589
|
+
* @public
|
|
2626
2590
|
*/
|
|
2627
|
-
|
|
2591
|
+
deviceName: string;
|
|
2628
2592
|
/**
|
|
2629
2593
|
* The Device Platform
|
|
2630
2594
|
*
|
|
2631
|
-
* @public
|
|
2632
2595
|
* @type {string}
|
|
2596
|
+
* @public
|
|
2633
2597
|
*/
|
|
2634
|
-
|
|
2598
|
+
devicePlatform: string;
|
|
2635
2599
|
/**
|
|
2636
2600
|
* Whether the Firebase Token has been deleted
|
|
2637
2601
|
*
|
|
2638
|
-
* @public
|
|
2639
2602
|
* @type {boolean}
|
|
2603
|
+
* @public
|
|
2640
2604
|
*/
|
|
2641
|
-
|
|
2605
|
+
deleted: boolean;
|
|
2642
2606
|
/**
|
|
2643
2607
|
* When the Firebase Token was last updated
|
|
2644
2608
|
*
|
|
2645
|
-
* @public
|
|
2646
2609
|
* @type {Date}
|
|
2647
|
-
*/
|
|
2648
|
-
get updateTimestamp(): Date;
|
|
2649
|
-
/**
|
|
2650
|
-
* Convert this **FirebaseTokenModel** to a JSON Object
|
|
2651
|
-
*
|
|
2652
2610
|
* @public
|
|
2653
|
-
* @return {Object<string, any>}
|
|
2654
2611
|
*/
|
|
2655
|
-
|
|
2656
|
-
[x: string]: any;
|
|
2657
|
-
};
|
|
2612
|
+
updateTimestamp: Date;
|
|
2658
2613
|
}
|
|
2659
2614
|
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
2660
2615
|
}
|
|
@@ -2683,54 +2638,45 @@ declare module '@ricado/api-client/Models/RTUModel' {
|
|
|
2683
2638
|
/**
|
|
2684
2639
|
* The RTU ID
|
|
2685
2640
|
*
|
|
2686
|
-
* @public
|
|
2687
2641
|
* @type {number}
|
|
2642
|
+
* @public
|
|
2688
2643
|
*/
|
|
2689
|
-
|
|
2644
|
+
id: number;
|
|
2690
2645
|
/**
|
|
2691
2646
|
* The Site this RTU belongs to
|
|
2692
2647
|
*
|
|
2693
|
-
* @public
|
|
2694
2648
|
* @type {number}
|
|
2649
|
+
* @public
|
|
2695
2650
|
*/
|
|
2696
|
-
|
|
2651
|
+
siteId: number;
|
|
2697
2652
|
/**
|
|
2698
2653
|
* The RTU Name
|
|
2699
2654
|
*
|
|
2700
|
-
* @public
|
|
2701
2655
|
* @type {string}
|
|
2656
|
+
* @public
|
|
2702
2657
|
*/
|
|
2703
|
-
|
|
2658
|
+
name: string;
|
|
2704
2659
|
/**
|
|
2705
2660
|
* Whether the RTU is Enabled
|
|
2706
2661
|
*
|
|
2707
|
-
* @public
|
|
2708
2662
|
* @type {boolean}
|
|
2663
|
+
* @public
|
|
2709
2664
|
*/
|
|
2710
|
-
|
|
2665
|
+
enabled: boolean;
|
|
2711
2666
|
/**
|
|
2712
2667
|
* Whether the RTU has been deleted
|
|
2713
2668
|
*
|
|
2714
|
-
* @public
|
|
2715
2669
|
* @type {boolean}
|
|
2670
|
+
* @public
|
|
2716
2671
|
*/
|
|
2717
|
-
|
|
2672
|
+
deleted: boolean;
|
|
2718
2673
|
/**
|
|
2719
2674
|
* When the RTU was last updated
|
|
2720
2675
|
*
|
|
2721
|
-
* @public
|
|
2722
2676
|
* @type {Date}
|
|
2723
|
-
*/
|
|
2724
|
-
get updateTimestamp(): Date;
|
|
2725
|
-
/**
|
|
2726
|
-
* Convert this **RTUModel** to a JSON Object
|
|
2727
|
-
*
|
|
2728
2677
|
* @public
|
|
2729
|
-
* @return {Object<string, any>}
|
|
2730
2678
|
*/
|
|
2731
|
-
|
|
2732
|
-
[x: string]: any;
|
|
2733
|
-
};
|
|
2679
|
+
updateTimestamp: Date;
|
|
2734
2680
|
}
|
|
2735
2681
|
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
2736
2682
|
}
|
|
@@ -2759,47 +2705,38 @@ declare module '@ricado/api-client/Models/RTUPluginModel' {
|
|
|
2759
2705
|
/**
|
|
2760
2706
|
* The RTU Plugin ID
|
|
2761
2707
|
*
|
|
2762
|
-
* @public
|
|
2763
2708
|
* @type {number}
|
|
2709
|
+
* @public
|
|
2764
2710
|
*/
|
|
2765
|
-
|
|
2711
|
+
id: number;
|
|
2766
2712
|
/**
|
|
2767
2713
|
* The Plugin Name
|
|
2768
2714
|
*
|
|
2769
|
-
* @public
|
|
2770
2715
|
* @type {string}
|
|
2716
|
+
* @public
|
|
2771
2717
|
*/
|
|
2772
|
-
|
|
2718
|
+
name: string;
|
|
2773
2719
|
/**
|
|
2774
2720
|
* The Company this RTU Plugin belongs to
|
|
2775
2721
|
*
|
|
2776
|
-
* @public
|
|
2777
2722
|
* @type {string}
|
|
2723
|
+
* @public
|
|
2778
2724
|
*/
|
|
2779
|
-
|
|
2725
|
+
companyId: string;
|
|
2780
2726
|
/**
|
|
2781
2727
|
* Whether the RTU Plugin has been deleted
|
|
2782
2728
|
*
|
|
2783
|
-
* @public
|
|
2784
2729
|
* @type {boolean}
|
|
2730
|
+
* @public
|
|
2785
2731
|
*/
|
|
2786
|
-
|
|
2732
|
+
deleted: boolean;
|
|
2787
2733
|
/**
|
|
2788
2734
|
* When the RTU Plugin was last updated
|
|
2789
2735
|
*
|
|
2790
|
-
* @public
|
|
2791
2736
|
* @type {Date}
|
|
2792
|
-
*/
|
|
2793
|
-
get updateTimestamp(): Date;
|
|
2794
|
-
/**
|
|
2795
|
-
* Convert this **RTUPluginModel** to a JSON Object
|
|
2796
|
-
*
|
|
2797
2737
|
* @public
|
|
2798
|
-
* @return {Object<string, any>}
|
|
2799
2738
|
*/
|
|
2800
|
-
|
|
2801
|
-
[x: string]: any;
|
|
2802
|
-
};
|
|
2739
|
+
updateTimestamp: Date;
|
|
2803
2740
|
}
|
|
2804
2741
|
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
2805
2742
|
}
|
|
@@ -2828,54 +2765,45 @@ declare module '@ricado/api-client/Models/SiteModel' {
|
|
|
2828
2765
|
/**
|
|
2829
2766
|
* The Site ID
|
|
2830
2767
|
*
|
|
2831
|
-
* @public
|
|
2832
2768
|
* @type {number}
|
|
2769
|
+
* @public
|
|
2833
2770
|
*/
|
|
2834
|
-
|
|
2771
|
+
id: number;
|
|
2835
2772
|
/**
|
|
2836
2773
|
* The Site Name
|
|
2837
2774
|
*
|
|
2838
|
-
* @public
|
|
2839
2775
|
* @type {string}
|
|
2776
|
+
* @public
|
|
2840
2777
|
*/
|
|
2841
|
-
|
|
2778
|
+
name: string;
|
|
2842
2779
|
/**
|
|
2843
2780
|
* The Company this Site belongs to
|
|
2844
2781
|
*
|
|
2845
|
-
* @public
|
|
2846
2782
|
* @type {string}
|
|
2783
|
+
* @public
|
|
2847
2784
|
*/
|
|
2848
|
-
|
|
2785
|
+
companyId: string;
|
|
2849
2786
|
/**
|
|
2850
2787
|
* Whether the Site is Enabled
|
|
2851
2788
|
*
|
|
2852
|
-
* @public
|
|
2853
2789
|
* @type {boolean}
|
|
2790
|
+
* @public
|
|
2854
2791
|
*/
|
|
2855
|
-
|
|
2792
|
+
enabled: boolean;
|
|
2856
2793
|
/**
|
|
2857
2794
|
* Whether the Site has been deleted
|
|
2858
2795
|
*
|
|
2859
|
-
* @public
|
|
2860
2796
|
* @type {boolean}
|
|
2797
|
+
* @public
|
|
2861
2798
|
*/
|
|
2862
|
-
|
|
2799
|
+
deleted: boolean;
|
|
2863
2800
|
/**
|
|
2864
2801
|
* When the Site was last updated
|
|
2865
2802
|
*
|
|
2866
|
-
* @public
|
|
2867
2803
|
* @type {Date}
|
|
2868
|
-
*/
|
|
2869
|
-
get updateTimestamp(): Date;
|
|
2870
|
-
/**
|
|
2871
|
-
* Convert this **SiteModel** to a JSON Object
|
|
2872
|
-
*
|
|
2873
2804
|
* @public
|
|
2874
|
-
* @return {Object<string, any>}
|
|
2875
2805
|
*/
|
|
2876
|
-
|
|
2877
|
-
[x: string]: any;
|
|
2878
|
-
};
|
|
2806
|
+
updateTimestamp: Date;
|
|
2879
2807
|
}
|
|
2880
2808
|
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
2881
2809
|
}
|
|
@@ -2904,82 +2832,73 @@ declare module '@ricado/api-client/Models/TokenModel' {
|
|
|
2904
2832
|
/**
|
|
2905
2833
|
* The Token ID
|
|
2906
2834
|
*
|
|
2907
|
-
* @public
|
|
2908
2835
|
* @type {string}
|
|
2836
|
+
* @public
|
|
2909
2837
|
*/
|
|
2910
|
-
|
|
2838
|
+
id: string;
|
|
2911
2839
|
/**
|
|
2912
2840
|
* The Account this Token belongs to
|
|
2913
2841
|
*
|
|
2914
|
-
* @public
|
|
2915
2842
|
* @type {string}
|
|
2843
|
+
* @public
|
|
2916
2844
|
*/
|
|
2917
|
-
|
|
2845
|
+
accountId: string;
|
|
2918
2846
|
/**
|
|
2919
2847
|
* The Account Type
|
|
2920
2848
|
*
|
|
2921
|
-
* @public
|
|
2922
2849
|
* @type {string}
|
|
2850
|
+
* @public
|
|
2923
2851
|
*/
|
|
2924
|
-
|
|
2852
|
+
accountType: string;
|
|
2925
2853
|
/**
|
|
2926
2854
|
* When the Token was issued
|
|
2927
2855
|
*
|
|
2928
|
-
* @public
|
|
2929
2856
|
* @type {Date}
|
|
2857
|
+
* @public
|
|
2930
2858
|
*/
|
|
2931
|
-
|
|
2859
|
+
issueTimestamp: Date;
|
|
2932
2860
|
/**
|
|
2933
2861
|
* When the Token will expire
|
|
2934
2862
|
*
|
|
2935
|
-
* @public
|
|
2936
2863
|
* @type {Date}
|
|
2864
|
+
* @public
|
|
2937
2865
|
*/
|
|
2938
|
-
|
|
2866
|
+
expireTimestamp: Date;
|
|
2939
2867
|
/**
|
|
2940
2868
|
* When the last API call using this Token was made
|
|
2941
2869
|
*
|
|
2942
|
-
* @public
|
|
2943
2870
|
* @type {?Date}
|
|
2871
|
+
* @public
|
|
2944
2872
|
*/
|
|
2945
|
-
|
|
2873
|
+
activityTimestamp: Date | null;
|
|
2946
2874
|
/**
|
|
2947
2875
|
* When the Token was unlocked
|
|
2948
2876
|
*
|
|
2949
|
-
* @public
|
|
2950
2877
|
* @type {?Date}
|
|
2878
|
+
* @public
|
|
2951
2879
|
*/
|
|
2952
|
-
|
|
2880
|
+
unlockTimestamp: Date | null;
|
|
2953
2881
|
/**
|
|
2954
2882
|
* When the Token was locked
|
|
2955
2883
|
*
|
|
2956
|
-
* @public
|
|
2957
2884
|
* @type {?Date}
|
|
2885
|
+
* @public
|
|
2958
2886
|
*/
|
|
2959
|
-
|
|
2887
|
+
lockTimestamp: Date | null;
|
|
2960
2888
|
/**
|
|
2961
2889
|
* Whether the Token has been deleted
|
|
2962
2890
|
*
|
|
2963
|
-
* @public
|
|
2964
2891
|
* @type {boolean}
|
|
2892
|
+
* @public
|
|
2965
2893
|
*/
|
|
2966
|
-
|
|
2894
|
+
deleted: boolean;
|
|
2967
2895
|
/**
|
|
2968
2896
|
* When the Token was last updated
|
|
2969
2897
|
*
|
|
2970
|
-
* @public
|
|
2971
2898
|
* @type {Date}
|
|
2972
|
-
*/
|
|
2973
|
-
get updateTimestamp(): Date;
|
|
2974
|
-
/**
|
|
2975
|
-
* Convert this **TokenModel** to a JSON Object
|
|
2976
|
-
*
|
|
2977
2899
|
* @public
|
|
2978
|
-
* @return {Object<string, any>}
|
|
2979
2900
|
*/
|
|
2980
|
-
|
|
2981
|
-
[x: string]: any;
|
|
2982
|
-
};
|
|
2901
|
+
updateTimestamp: Date;
|
|
2983
2902
|
}
|
|
2984
2903
|
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
2985
2904
|
}
|
|
@@ -3008,89 +2927,80 @@ declare module '@ricado/api-client/Models/UserAccountActionTokenModel' {
|
|
|
3008
2927
|
/**
|
|
3009
2928
|
* The User Account Action Token ID
|
|
3010
2929
|
*
|
|
3011
|
-
* @public
|
|
3012
2930
|
* @type {string}
|
|
2931
|
+
* @public
|
|
3013
2932
|
*/
|
|
3014
|
-
|
|
2933
|
+
id: string;
|
|
3015
2934
|
/**
|
|
3016
2935
|
* The Account this Action Token belongs to
|
|
3017
2936
|
*
|
|
3018
|
-
* @public
|
|
3019
2937
|
* @type {string}
|
|
2938
|
+
* @public
|
|
3020
2939
|
*/
|
|
3021
|
-
|
|
2940
|
+
accountId: string;
|
|
3022
2941
|
/**
|
|
3023
2942
|
* The Company this Action Token belongs to
|
|
3024
2943
|
*
|
|
3025
|
-
* @public
|
|
3026
2944
|
* @type {string}
|
|
2945
|
+
* @public
|
|
3027
2946
|
*/
|
|
3028
|
-
|
|
2947
|
+
companyId: string;
|
|
3029
2948
|
/**
|
|
3030
2949
|
* The Action that can be Performed using this Action Token
|
|
3031
2950
|
*
|
|
3032
|
-
* @public
|
|
3033
2951
|
* @type {string}
|
|
2952
|
+
* @public
|
|
3034
2953
|
*/
|
|
3035
|
-
|
|
2954
|
+
action: string;
|
|
3036
2955
|
/**
|
|
3037
2956
|
* When the Action Token was issued
|
|
3038
2957
|
*
|
|
3039
|
-
* @public
|
|
3040
2958
|
* @type {Date}
|
|
2959
|
+
* @public
|
|
3041
2960
|
*/
|
|
3042
|
-
|
|
2961
|
+
issueTimestamp: Date;
|
|
3043
2962
|
/**
|
|
3044
2963
|
* When the Action Token will expire
|
|
3045
2964
|
*
|
|
3046
|
-
* @public
|
|
3047
2965
|
* @type {Date}
|
|
2966
|
+
* @public
|
|
3048
2967
|
*/
|
|
3049
|
-
|
|
2968
|
+
expireTimestamp: Date;
|
|
3050
2969
|
/**
|
|
3051
2970
|
* When the last API call using this Action Token was made
|
|
3052
2971
|
*
|
|
3053
|
-
* @public
|
|
3054
2972
|
* @type {?Date}
|
|
2973
|
+
* @public
|
|
3055
2974
|
*/
|
|
3056
|
-
|
|
2975
|
+
activityTimestamp: Date | null;
|
|
3057
2976
|
/**
|
|
3058
2977
|
* When the Action was Completed
|
|
3059
2978
|
*
|
|
3060
|
-
* @public
|
|
3061
2979
|
* @type {?Date}
|
|
2980
|
+
* @public
|
|
3062
2981
|
*/
|
|
3063
|
-
|
|
2982
|
+
completedTimestamp: Date | null;
|
|
3064
2983
|
/**
|
|
3065
2984
|
* When the Action Email was Sent
|
|
3066
2985
|
*
|
|
3067
|
-
* @public
|
|
3068
2986
|
* @type {?Date}
|
|
2987
|
+
* @public
|
|
3069
2988
|
*/
|
|
3070
|
-
|
|
2989
|
+
emailTimestamp: Date | null;
|
|
3071
2990
|
/**
|
|
3072
2991
|
* Whether the User Account Action Token has been deleted
|
|
3073
2992
|
*
|
|
3074
|
-
* @public
|
|
3075
2993
|
* @type {boolean}
|
|
2994
|
+
* @public
|
|
3076
2995
|
*/
|
|
3077
|
-
|
|
2996
|
+
deleted: boolean;
|
|
3078
2997
|
/**
|
|
3079
2998
|
* When the User Account Action Token was last updated
|
|
3080
2999
|
*
|
|
3081
|
-
* @public
|
|
3082
3000
|
* @type {Date}
|
|
3083
|
-
*/
|
|
3084
|
-
get updateTimestamp(): Date;
|
|
3085
|
-
/**
|
|
3086
|
-
* Convert this **UserAccountActionTokenModel** to a JSON Object
|
|
3087
|
-
*
|
|
3088
3001
|
* @public
|
|
3089
|
-
* @return {Object<string, any>}
|
|
3090
3002
|
*/
|
|
3091
|
-
|
|
3092
|
-
[x: string]: any;
|
|
3093
|
-
};
|
|
3003
|
+
updateTimestamp: Date;
|
|
3094
3004
|
}
|
|
3095
3005
|
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
3096
3006
|
}
|
|
@@ -3119,82 +3029,73 @@ declare module '@ricado/api-client/Models/UserAccountModel' {
|
|
|
3119
3029
|
/**
|
|
3120
3030
|
* The User Account ID
|
|
3121
3031
|
*
|
|
3122
|
-
* @public
|
|
3123
3032
|
* @type {string}
|
|
3033
|
+
* @public
|
|
3124
3034
|
*/
|
|
3125
|
-
|
|
3035
|
+
id: string;
|
|
3126
3036
|
/**
|
|
3127
3037
|
* The User's Email Address
|
|
3128
3038
|
*
|
|
3129
|
-
* @public
|
|
3130
3039
|
* @type {string}
|
|
3040
|
+
* @public
|
|
3131
3041
|
*/
|
|
3132
|
-
|
|
3042
|
+
email: string;
|
|
3133
3043
|
/**
|
|
3134
3044
|
* The User's First Name
|
|
3135
3045
|
*
|
|
3136
|
-
* @public
|
|
3137
3046
|
* @type {?string}
|
|
3047
|
+
* @public
|
|
3138
3048
|
*/
|
|
3139
|
-
|
|
3049
|
+
firstName: string | null;
|
|
3140
3050
|
/**
|
|
3141
3051
|
* The User's Last Name
|
|
3142
3052
|
*
|
|
3143
|
-
* @public
|
|
3144
3053
|
* @type {?string}
|
|
3054
|
+
* @public
|
|
3145
3055
|
*/
|
|
3146
|
-
|
|
3056
|
+
lastName: string | null;
|
|
3147
3057
|
/**
|
|
3148
3058
|
* The Company this User belongs to
|
|
3149
3059
|
*
|
|
3150
|
-
* @public
|
|
3151
3060
|
* @type {string}
|
|
3061
|
+
* @public
|
|
3152
3062
|
*/
|
|
3153
|
-
|
|
3063
|
+
companyId: string;
|
|
3154
3064
|
/**
|
|
3155
3065
|
* The Policies that apply to this User Account
|
|
3156
3066
|
*
|
|
3157
|
-
* @public
|
|
3158
3067
|
* @type {string[]}
|
|
3068
|
+
* @public
|
|
3159
3069
|
*/
|
|
3160
|
-
|
|
3070
|
+
policies: string[];
|
|
3161
3071
|
/**
|
|
3162
3072
|
* Whether a Password has been Set for the User Account
|
|
3163
3073
|
*
|
|
3164
|
-
* @public
|
|
3165
3074
|
* @type {boolean}
|
|
3075
|
+
* @public
|
|
3166
3076
|
*/
|
|
3167
|
-
|
|
3077
|
+
hasPassword: boolean;
|
|
3168
3078
|
/**
|
|
3169
3079
|
* Whether a Pin Code has been Set for the User Account
|
|
3170
3080
|
*
|
|
3171
|
-
* @public
|
|
3172
3081
|
* @type {boolean}
|
|
3082
|
+
* @public
|
|
3173
3083
|
*/
|
|
3174
|
-
|
|
3084
|
+
hasPinCode: boolean;
|
|
3175
3085
|
/**
|
|
3176
3086
|
* Whether the User Account has been deleted
|
|
3177
3087
|
*
|
|
3178
|
-
* @public
|
|
3179
3088
|
* @type {boolean}
|
|
3089
|
+
* @public
|
|
3180
3090
|
*/
|
|
3181
|
-
|
|
3091
|
+
deleted: boolean;
|
|
3182
3092
|
/**
|
|
3183
3093
|
* When the User Account was last updated
|
|
3184
3094
|
*
|
|
3185
|
-
* @public
|
|
3186
3095
|
* @type {Date}
|
|
3187
|
-
*/
|
|
3188
|
-
get updateTimestamp(): Date;
|
|
3189
|
-
/**
|
|
3190
|
-
* Convert this **UserAccountModel** to a JSON Object
|
|
3191
|
-
*
|
|
3192
3096
|
* @public
|
|
3193
|
-
* @return {Object<string, any>}
|
|
3194
3097
|
*/
|
|
3195
|
-
|
|
3196
|
-
[x: string]: any;
|
|
3197
|
-
};
|
|
3098
|
+
updateTimestamp: Date;
|
|
3198
3099
|
}
|
|
3199
3100
|
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
3200
3101
|
}
|
|
@@ -3212,7 +3113,6 @@ declare module '@ricado/api-client/Models/Site' {
|
|
|
3212
3113
|
namespace Site {
|
|
3213
3114
|
export { AlarmGroupModel };
|
|
3214
3115
|
export { AlarmModel };
|
|
3215
|
-
export { BaseSiteModel };
|
|
3216
3116
|
export { DefinitionModel };
|
|
3217
3117
|
export { PermanentObjectDataModel };
|
|
3218
3118
|
export { PermanentObjectModel };
|
|
@@ -3221,7 +3121,6 @@ declare module '@ricado/api-client/Models/Site' {
|
|
|
3221
3121
|
}
|
|
3222
3122
|
import AlarmGroupModel from "@ricado/api-client/Models/Site/AlarmGroupModel";
|
|
3223
3123
|
import AlarmModel from "@ricado/api-client/Models/Site/AlarmModel";
|
|
3224
|
-
import BaseSiteModel from "@ricado/api-client/Models/Site/BaseSiteModel";
|
|
3225
3124
|
import DefinitionModel from "@ricado/api-client/Models/Site/DefinitionModel";
|
|
3226
3125
|
import PermanentObjectDataModel from "@ricado/api-client/Models/Site/PermanentObjectDataModel";
|
|
3227
3126
|
import PermanentObjectModel from "@ricado/api-client/Models/Site/PermanentObjectModel";
|
|
@@ -3229,21 +3128,6 @@ declare module '@ricado/api-client/Models/Site' {
|
|
|
3229
3128
|
import TemporaryObjectModel from "@ricado/api-client/Models/Site/TemporaryObjectModel";
|
|
3230
3129
|
}
|
|
3231
3130
|
|
|
3232
|
-
declare module '@ricado/api-client/Models/Site/BaseSiteModel' {
|
|
3233
|
-
export default BaseSiteModel;
|
|
3234
|
-
/**
|
|
3235
|
-
* The Abstract **BaseSiteModel** Class
|
|
3236
|
-
*
|
|
3237
|
-
* @class
|
|
3238
|
-
* @abstract
|
|
3239
|
-
* @hideconstructor
|
|
3240
|
-
* @extends BaseModel
|
|
3241
|
-
*/
|
|
3242
|
-
class BaseSiteModel extends BaseModel {
|
|
3243
|
-
}
|
|
3244
|
-
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
3245
|
-
}
|
|
3246
|
-
|
|
3247
3131
|
declare module '@ricado/api-client/Controllers/Packhouse/Site' {
|
|
3248
3132
|
export default Site;
|
|
3249
3133
|
namespace Site {
|
|
@@ -4860,9 +4744,9 @@ declare module '@ricado/api-client/Models/Site/AlarmGroupModel' {
|
|
|
4860
4744
|
*
|
|
4861
4745
|
* @class
|
|
4862
4746
|
* @hideconstructor
|
|
4863
|
-
* @extends
|
|
4747
|
+
* @extends BaseModel
|
|
4864
4748
|
*/
|
|
4865
|
-
class AlarmGroupModel extends
|
|
4749
|
+
class AlarmGroupModel extends BaseModel {
|
|
4866
4750
|
/**
|
|
4867
4751
|
* Create a new **AlarmGroupModel** from a JSON Object or JSON String
|
|
4868
4752
|
*
|
|
@@ -4885,73 +4769,64 @@ declare module '@ricado/api-client/Models/Site/AlarmGroupModel' {
|
|
|
4885
4769
|
/**
|
|
4886
4770
|
* The Alarm Group ID
|
|
4887
4771
|
*
|
|
4888
|
-
* @public
|
|
4889
4772
|
* @type {string}
|
|
4773
|
+
* @public
|
|
4890
4774
|
*/
|
|
4891
|
-
|
|
4775
|
+
id: string;
|
|
4892
4776
|
/**
|
|
4893
4777
|
* The RTU this Alarm Group belongs to
|
|
4894
4778
|
*
|
|
4895
|
-
* @public
|
|
4896
4779
|
* @type {?number}
|
|
4780
|
+
* @public
|
|
4897
4781
|
*/
|
|
4898
|
-
|
|
4782
|
+
rtuId: number | null;
|
|
4899
4783
|
/**
|
|
4900
4784
|
* The Alarm Group Name
|
|
4901
4785
|
*
|
|
4902
|
-
* @public
|
|
4903
4786
|
* @type {string}
|
|
4787
|
+
* @public
|
|
4904
4788
|
*/
|
|
4905
|
-
|
|
4789
|
+
name: string;
|
|
4906
4790
|
/**
|
|
4907
4791
|
* The Boolean Point used to Reset this Alarm Group
|
|
4908
4792
|
*
|
|
4909
|
-
* @public
|
|
4910
4793
|
* @type {number}
|
|
4794
|
+
* @public
|
|
4911
4795
|
*/
|
|
4912
|
-
|
|
4796
|
+
resetPoint: number;
|
|
4913
4797
|
/**
|
|
4914
4798
|
* An Array of Points and the States to be Written when this Alarm Group is Reset
|
|
4915
4799
|
*
|
|
4916
|
-
* @public
|
|
4917
4800
|
* @type {Array<{point: number, value: boolean}>}
|
|
4801
|
+
* @public
|
|
4918
4802
|
*/
|
|
4919
|
-
|
|
4803
|
+
externalResetPoints: {
|
|
4920
4804
|
point: number;
|
|
4921
4805
|
value: boolean;
|
|
4922
4806
|
}[];
|
|
4923
4807
|
/**
|
|
4924
4808
|
* Whether the Alarm Group has been deleted
|
|
4925
4809
|
*
|
|
4926
|
-
* @public
|
|
4927
4810
|
* @type {boolean}
|
|
4811
|
+
* @public
|
|
4928
4812
|
*/
|
|
4929
|
-
|
|
4813
|
+
deleted: boolean;
|
|
4930
4814
|
/**
|
|
4931
4815
|
* When the Alarm Group was last updated
|
|
4932
4816
|
*
|
|
4933
|
-
* @public
|
|
4934
4817
|
* @type {Date}
|
|
4818
|
+
* @public
|
|
4935
4819
|
*/
|
|
4936
|
-
|
|
4820
|
+
updateTimestamp: Date;
|
|
4937
4821
|
/**
|
|
4938
4822
|
* The Site ID associated with this Alarm Group
|
|
4939
4823
|
*
|
|
4940
|
-
* @public
|
|
4941
4824
|
* @type {number}
|
|
4942
|
-
*/
|
|
4943
|
-
get siteId(): number;
|
|
4944
|
-
/**
|
|
4945
|
-
* Convert this **AlarmGroupModel** to a JSON Object
|
|
4946
|
-
*
|
|
4947
4825
|
* @public
|
|
4948
|
-
* @return {Object<string, any>}
|
|
4949
4826
|
*/
|
|
4950
|
-
|
|
4951
|
-
[x: string]: any;
|
|
4952
|
-
};
|
|
4827
|
+
siteId: number;
|
|
4953
4828
|
}
|
|
4954
|
-
import
|
|
4829
|
+
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
4955
4830
|
}
|
|
4956
4831
|
|
|
4957
4832
|
declare module '@ricado/api-client/Models/Site/AlarmModel' {
|
|
@@ -4961,9 +4836,9 @@ declare module '@ricado/api-client/Models/Site/AlarmModel' {
|
|
|
4961
4836
|
*
|
|
4962
4837
|
* @class
|
|
4963
4838
|
* @hideconstructor
|
|
4964
|
-
* @extends
|
|
4839
|
+
* @extends BaseModel
|
|
4965
4840
|
*/
|
|
4966
|
-
class AlarmModel extends
|
|
4841
|
+
class AlarmModel extends BaseModel {
|
|
4967
4842
|
/**
|
|
4968
4843
|
* Create a new **AlarmModel** from a JSON Object or JSON String
|
|
4969
4844
|
*
|
|
@@ -4986,140 +4861,131 @@ declare module '@ricado/api-client/Models/Site/AlarmModel' {
|
|
|
4986
4861
|
/**
|
|
4987
4862
|
* The Alarm ID
|
|
4988
4863
|
*
|
|
4989
|
-
* @public
|
|
4990
4864
|
* @type {string}
|
|
4865
|
+
* @public
|
|
4991
4866
|
*/
|
|
4992
|
-
|
|
4867
|
+
id: string;
|
|
4993
4868
|
/**
|
|
4994
4869
|
* The RTU this Alarm belongs to
|
|
4995
4870
|
*
|
|
4996
|
-
* @public
|
|
4997
4871
|
* @type {?number}
|
|
4872
|
+
* @public
|
|
4998
4873
|
*/
|
|
4999
|
-
|
|
4874
|
+
rtuId: number | null;
|
|
5000
4875
|
/**
|
|
5001
4876
|
* The Alarm Group this Alarm is a part of
|
|
5002
4877
|
*
|
|
5003
|
-
* @public
|
|
5004
4878
|
* @type {string}
|
|
4879
|
+
* @public
|
|
5005
4880
|
*/
|
|
5006
|
-
|
|
4881
|
+
groupId: string;
|
|
5007
4882
|
/**
|
|
5008
4883
|
* The Alarm Name
|
|
5009
4884
|
*
|
|
5010
|
-
* @public
|
|
5011
4885
|
* @type {string}
|
|
4886
|
+
* @public
|
|
5012
4887
|
*/
|
|
5013
|
-
|
|
4888
|
+
name: string;
|
|
5014
4889
|
/**
|
|
5015
4890
|
* Whether the Alarm is Critical or not
|
|
5016
4891
|
*
|
|
5017
|
-
* @public
|
|
5018
4892
|
* @type {boolean}
|
|
4893
|
+
* @public
|
|
5019
4894
|
*/
|
|
5020
|
-
|
|
4895
|
+
critical: boolean;
|
|
5021
4896
|
/**
|
|
5022
4897
|
* The Python Script with the Conditions to Trip this Alarm
|
|
5023
4898
|
*
|
|
5024
|
-
* @public
|
|
5025
4899
|
* @type {string}
|
|
4900
|
+
* @public
|
|
5026
4901
|
*/
|
|
5027
|
-
|
|
4902
|
+
tripScript: string;
|
|
5028
4903
|
/**
|
|
5029
4904
|
* The Python Script with the Conditions to Reset this Alarm
|
|
5030
4905
|
*
|
|
5031
|
-
* @public
|
|
5032
4906
|
* @type {?string}
|
|
4907
|
+
* @public
|
|
5033
4908
|
*/
|
|
5034
|
-
|
|
4909
|
+
resetScript: string | null;
|
|
5035
4910
|
/**
|
|
5036
4911
|
* The Delay before this Alarm will Trip in Milliseconds
|
|
5037
4912
|
*
|
|
5038
|
-
* @public
|
|
5039
4913
|
* @type {number}
|
|
4914
|
+
* @public
|
|
5040
4915
|
*/
|
|
5041
|
-
|
|
4916
|
+
tripDelay: number;
|
|
5042
4917
|
/**
|
|
5043
4918
|
* The Delay before this Alarm will Reset in Milliseconds
|
|
5044
4919
|
*
|
|
5045
|
-
* @public
|
|
5046
4920
|
* @type {number}
|
|
4921
|
+
* @public
|
|
5047
4922
|
*/
|
|
5048
|
-
|
|
4923
|
+
resetDelay: number;
|
|
5049
4924
|
/**
|
|
5050
4925
|
* Whether the Alarm should Automatically Reset
|
|
5051
4926
|
*
|
|
5052
|
-
* @public
|
|
5053
4927
|
* @type {boolean}
|
|
4928
|
+
* @public
|
|
5054
4929
|
*/
|
|
5055
|
-
|
|
4930
|
+
autoReset: boolean;
|
|
5056
4931
|
/**
|
|
5057
4932
|
* The Delay before this Alarm should Auto Reset in Milliseconds
|
|
5058
4933
|
*
|
|
5059
|
-
* @public
|
|
5060
4934
|
* @type {number}
|
|
4935
|
+
* @public
|
|
5061
4936
|
*/
|
|
5062
|
-
|
|
4937
|
+
autoResetDelay: number;
|
|
5063
4938
|
/**
|
|
5064
4939
|
* The Point used to store the Alarm Tripped State
|
|
5065
4940
|
*
|
|
5066
|
-
* @public
|
|
5067
4941
|
* @type {number}
|
|
4942
|
+
* @public
|
|
5068
4943
|
*/
|
|
5069
|
-
|
|
4944
|
+
trippedStatePoint: number;
|
|
5070
4945
|
/**
|
|
5071
4946
|
* The Point used to store the Alarm Tripped Timestamp
|
|
5072
4947
|
*
|
|
5073
|
-
* @public
|
|
5074
4948
|
* @type {number}
|
|
4949
|
+
* @public
|
|
5075
4950
|
*/
|
|
5076
|
-
|
|
4951
|
+
trippedTimestampPoint: number;
|
|
5077
4952
|
/**
|
|
5078
4953
|
* The Point used to store the Alarm's Internal Trip Start
|
|
5079
4954
|
*
|
|
5080
|
-
* @public
|
|
5081
4955
|
* @type {number}
|
|
4956
|
+
* @public
|
|
5082
4957
|
*/
|
|
5083
|
-
|
|
4958
|
+
internalTripStartPoint: number;
|
|
5084
4959
|
/**
|
|
5085
4960
|
* The Point used to store the Alarm's Internal Reset Start
|
|
5086
4961
|
*
|
|
5087
|
-
* @public
|
|
5088
4962
|
* @type {number}
|
|
4963
|
+
* @public
|
|
5089
4964
|
*/
|
|
5090
|
-
|
|
4965
|
+
internalResetStartPoint: number;
|
|
5091
4966
|
/**
|
|
5092
4967
|
* Whether the Alarm has been deleted
|
|
5093
4968
|
*
|
|
5094
|
-
* @public
|
|
5095
4969
|
* @type {boolean}
|
|
4970
|
+
* @public
|
|
5096
4971
|
*/
|
|
5097
|
-
|
|
4972
|
+
deleted: boolean;
|
|
5098
4973
|
/**
|
|
5099
4974
|
* When the Alarm was last updated
|
|
5100
4975
|
*
|
|
5101
|
-
* @public
|
|
5102
4976
|
* @type {Date}
|
|
4977
|
+
* @public
|
|
5103
4978
|
*/
|
|
5104
|
-
|
|
4979
|
+
updateTimestamp: Date;
|
|
5105
4980
|
/**
|
|
5106
4981
|
* The Site ID associated with this Alarm
|
|
5107
4982
|
*
|
|
5108
|
-
* @public
|
|
5109
4983
|
* @type {number}
|
|
5110
|
-
*/
|
|
5111
|
-
get siteId(): number;
|
|
5112
|
-
/**
|
|
5113
|
-
* Convert this **AlarmModel** to a JSON Object
|
|
5114
|
-
*
|
|
5115
4984
|
* @public
|
|
5116
|
-
* @return {Object<string, any>}
|
|
5117
4985
|
*/
|
|
5118
|
-
|
|
5119
|
-
[x: string]: any;
|
|
5120
|
-
};
|
|
4986
|
+
siteId: number;
|
|
5121
4987
|
}
|
|
5122
|
-
import
|
|
4988
|
+
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
5123
4989
|
}
|
|
5124
4990
|
|
|
5125
4991
|
declare module '@ricado/api-client/Models/Site/DefinitionModel' {
|
|
@@ -5129,9 +4995,9 @@ declare module '@ricado/api-client/Models/Site/DefinitionModel' {
|
|
|
5129
4995
|
*
|
|
5130
4996
|
* @class
|
|
5131
4997
|
* @hideconstructor
|
|
5132
|
-
* @extends
|
|
4998
|
+
* @extends BaseModel
|
|
5133
4999
|
*/
|
|
5134
|
-
class DefinitionModel extends
|
|
5000
|
+
class DefinitionModel extends BaseModel {
|
|
5135
5001
|
/**
|
|
5136
5002
|
* Create a new **DefinitionModel** from a JSON Object or JSON String
|
|
5137
5003
|
*
|
|
@@ -5154,63 +5020,54 @@ declare module '@ricado/api-client/Models/Site/DefinitionModel' {
|
|
|
5154
5020
|
/**
|
|
5155
5021
|
* The Definition ID
|
|
5156
5022
|
*
|
|
5157
|
-
* @public
|
|
5158
5023
|
* @type {string}
|
|
5024
|
+
* @public
|
|
5159
5025
|
*/
|
|
5160
|
-
|
|
5026
|
+
id: string;
|
|
5161
5027
|
/**
|
|
5162
5028
|
* The Definition Key Index
|
|
5163
5029
|
*
|
|
5164
|
-
* @public
|
|
5165
5030
|
* @type {string}
|
|
5031
|
+
* @public
|
|
5166
5032
|
*/
|
|
5167
|
-
|
|
5033
|
+
keyIndex: string;
|
|
5168
5034
|
/**
|
|
5169
5035
|
* The Definition Type
|
|
5170
5036
|
*
|
|
5171
|
-
* @public
|
|
5172
5037
|
* @type {string}
|
|
5038
|
+
* @public
|
|
5173
5039
|
*/
|
|
5174
|
-
|
|
5040
|
+
type: string;
|
|
5175
5041
|
/**
|
|
5176
5042
|
* The Definition Data
|
|
5177
5043
|
*
|
|
5178
|
-
* @public
|
|
5179
5044
|
* @type {Object}
|
|
5045
|
+
* @public
|
|
5180
5046
|
*/
|
|
5181
|
-
|
|
5047
|
+
data: any;
|
|
5182
5048
|
/**
|
|
5183
5049
|
* Whether the Definition has been deleted
|
|
5184
5050
|
*
|
|
5185
|
-
* @public
|
|
5186
5051
|
* @type {boolean}
|
|
5052
|
+
* @public
|
|
5187
5053
|
*/
|
|
5188
|
-
|
|
5054
|
+
deleted: boolean;
|
|
5189
5055
|
/**
|
|
5190
5056
|
* When the Definition was last updated
|
|
5191
5057
|
*
|
|
5192
|
-
* @public
|
|
5193
5058
|
* @type {Date}
|
|
5059
|
+
* @public
|
|
5194
5060
|
*/
|
|
5195
|
-
|
|
5061
|
+
updateTimestamp: Date;
|
|
5196
5062
|
/**
|
|
5197
5063
|
* The Site ID associated with this Definition
|
|
5198
5064
|
*
|
|
5199
|
-
* @public
|
|
5200
5065
|
* @type {number}
|
|
5201
|
-
*/
|
|
5202
|
-
get siteId(): number;
|
|
5203
|
-
/**
|
|
5204
|
-
* Convert this **DefinitionModel** to a JSON Object
|
|
5205
|
-
*
|
|
5206
5066
|
* @public
|
|
5207
|
-
* @return {Object<string, any>}
|
|
5208
5067
|
*/
|
|
5209
|
-
|
|
5210
|
-
[x: string]: any;
|
|
5211
|
-
};
|
|
5068
|
+
siteId: number;
|
|
5212
5069
|
}
|
|
5213
|
-
import
|
|
5070
|
+
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
5214
5071
|
}
|
|
5215
5072
|
|
|
5216
5073
|
declare module '@ricado/api-client/Models/Site/PermanentObjectDataModel' {
|
|
@@ -5220,9 +5077,9 @@ declare module '@ricado/api-client/Models/Site/PermanentObjectDataModel' {
|
|
|
5220
5077
|
*
|
|
5221
5078
|
* @class
|
|
5222
5079
|
* @hideconstructor
|
|
5223
|
-
* @extends
|
|
5080
|
+
* @extends BaseModel
|
|
5224
5081
|
*/
|
|
5225
|
-
class PermanentObjectDataModel extends
|
|
5082
|
+
class PermanentObjectDataModel extends BaseModel {
|
|
5226
5083
|
/**
|
|
5227
5084
|
* Create a new **PermanentObjectDataModel** from a JSON Object or JSON String
|
|
5228
5085
|
*
|
|
@@ -5245,77 +5102,68 @@ declare module '@ricado/api-client/Models/Site/PermanentObjectDataModel' {
|
|
|
5245
5102
|
/**
|
|
5246
5103
|
* The Permanent Object Data ID
|
|
5247
5104
|
*
|
|
5248
|
-
* @public
|
|
5249
5105
|
* @type {string}
|
|
5106
|
+
* @public
|
|
5250
5107
|
*/
|
|
5251
|
-
|
|
5108
|
+
id: string;
|
|
5252
5109
|
/**
|
|
5253
5110
|
* An Optional Key Index for this Data
|
|
5254
5111
|
*
|
|
5255
|
-
* @public
|
|
5256
5112
|
* @type {string}
|
|
5113
|
+
* @public
|
|
5257
5114
|
*/
|
|
5258
|
-
|
|
5115
|
+
keyIndex: string;
|
|
5259
5116
|
/**
|
|
5260
5117
|
* The Permanent Object this Data is related to
|
|
5261
5118
|
*
|
|
5262
|
-
* @public
|
|
5263
5119
|
* @type {string}
|
|
5120
|
+
* @public
|
|
5264
5121
|
*/
|
|
5265
|
-
|
|
5122
|
+
permanentObjectId: string;
|
|
5266
5123
|
/**
|
|
5267
5124
|
* The Permanent Object Data Type
|
|
5268
5125
|
*
|
|
5269
|
-
* @public
|
|
5270
5126
|
* @type {string}
|
|
5127
|
+
* @public
|
|
5271
5128
|
*/
|
|
5272
|
-
|
|
5129
|
+
type: string;
|
|
5273
5130
|
/**
|
|
5274
5131
|
* The Timestamp when this Data was Created
|
|
5275
5132
|
*
|
|
5276
|
-
* @public
|
|
5277
5133
|
* @type {Date}
|
|
5134
|
+
* @public
|
|
5278
5135
|
*/
|
|
5279
|
-
|
|
5136
|
+
timestamp: Date;
|
|
5280
5137
|
/**
|
|
5281
5138
|
* The Data Object specific to this Permanent Object Data Type
|
|
5282
5139
|
*
|
|
5283
|
-
* @public
|
|
5284
5140
|
* @type {Object}
|
|
5141
|
+
* @public
|
|
5285
5142
|
*/
|
|
5286
|
-
|
|
5143
|
+
data: any;
|
|
5287
5144
|
/**
|
|
5288
5145
|
* Whether the Permanent Object Data has been deleted
|
|
5289
5146
|
*
|
|
5290
|
-
* @public
|
|
5291
5147
|
* @type {boolean}
|
|
5148
|
+
* @public
|
|
5292
5149
|
*/
|
|
5293
|
-
|
|
5150
|
+
deleted: boolean;
|
|
5294
5151
|
/**
|
|
5295
5152
|
* When the Permanent Object Data was last updated
|
|
5296
5153
|
*
|
|
5297
|
-
* @public
|
|
5298
5154
|
* @type {Date}
|
|
5155
|
+
* @public
|
|
5299
5156
|
*/
|
|
5300
|
-
|
|
5157
|
+
updateTimestamp: Date;
|
|
5301
5158
|
/**
|
|
5302
5159
|
* The Site ID associated with this Permanent Object Data
|
|
5303
5160
|
*
|
|
5304
|
-
* @public
|
|
5305
5161
|
* @type {number}
|
|
5306
|
-
*/
|
|
5307
|
-
get siteId(): number;
|
|
5308
|
-
/**
|
|
5309
|
-
* Convert this **PermanentObjectDataModel** to a JSON Object
|
|
5310
|
-
*
|
|
5311
5162
|
* @public
|
|
5312
|
-
* @return {Object<string, any>}
|
|
5313
5163
|
*/
|
|
5314
|
-
|
|
5315
|
-
[x: string]: any;
|
|
5316
|
-
};
|
|
5164
|
+
siteId: number;
|
|
5317
5165
|
}
|
|
5318
|
-
import
|
|
5166
|
+
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
5319
5167
|
}
|
|
5320
5168
|
|
|
5321
5169
|
declare module '@ricado/api-client/Models/Site/PermanentObjectModel' {
|
|
@@ -5325,9 +5173,9 @@ declare module '@ricado/api-client/Models/Site/PermanentObjectModel' {
|
|
|
5325
5173
|
*
|
|
5326
5174
|
* @class
|
|
5327
5175
|
* @hideconstructor
|
|
5328
|
-
* @extends
|
|
5176
|
+
* @extends BaseModel
|
|
5329
5177
|
*/
|
|
5330
|
-
class PermanentObjectModel extends
|
|
5178
|
+
class PermanentObjectModel extends BaseModel {
|
|
5331
5179
|
/**
|
|
5332
5180
|
* Create a new **PermanentObjectModel** from a JSON Object or JSON String
|
|
5333
5181
|
*
|
|
@@ -5350,70 +5198,61 @@ declare module '@ricado/api-client/Models/Site/PermanentObjectModel' {
|
|
|
5350
5198
|
/**
|
|
5351
5199
|
* The Permanent Object ID
|
|
5352
5200
|
*
|
|
5353
|
-
* @public
|
|
5354
5201
|
* @type {string}
|
|
5202
|
+
* @public
|
|
5355
5203
|
*/
|
|
5356
|
-
|
|
5204
|
+
id: string;
|
|
5357
5205
|
/**
|
|
5358
5206
|
* The RTU this Permanent Object belongs to
|
|
5359
5207
|
*
|
|
5360
|
-
* @public
|
|
5361
5208
|
* @type {?number}
|
|
5209
|
+
* @public
|
|
5362
5210
|
*/
|
|
5363
|
-
|
|
5211
|
+
rtuId: number | null;
|
|
5364
5212
|
/**
|
|
5365
5213
|
* The Permanent Object Key Index
|
|
5366
5214
|
*
|
|
5367
|
-
* @public
|
|
5368
5215
|
* @type {string}
|
|
5216
|
+
* @public
|
|
5369
5217
|
*/
|
|
5370
|
-
|
|
5218
|
+
keyIndex: string;
|
|
5371
5219
|
/**
|
|
5372
5220
|
* The Permanent Object Type
|
|
5373
5221
|
*
|
|
5374
|
-
* @public
|
|
5375
5222
|
* @type {string}
|
|
5223
|
+
* @public
|
|
5376
5224
|
*/
|
|
5377
|
-
|
|
5225
|
+
type: string;
|
|
5378
5226
|
/**
|
|
5379
5227
|
* The Permanent Object Definition
|
|
5380
5228
|
*
|
|
5381
|
-
* @public
|
|
5382
5229
|
* @type {Object}
|
|
5230
|
+
* @public
|
|
5383
5231
|
*/
|
|
5384
|
-
|
|
5232
|
+
definition: any;
|
|
5385
5233
|
/**
|
|
5386
5234
|
* Whether the Permanent Object has been deleted
|
|
5387
5235
|
*
|
|
5388
|
-
* @public
|
|
5389
5236
|
* @type {boolean}
|
|
5237
|
+
* @public
|
|
5390
5238
|
*/
|
|
5391
|
-
|
|
5239
|
+
deleted: boolean;
|
|
5392
5240
|
/**
|
|
5393
5241
|
* When the Permanent Object was last updated
|
|
5394
5242
|
*
|
|
5395
|
-
* @public
|
|
5396
5243
|
* @type {Date}
|
|
5244
|
+
* @public
|
|
5397
5245
|
*/
|
|
5398
|
-
|
|
5246
|
+
updateTimestamp: Date;
|
|
5399
5247
|
/**
|
|
5400
5248
|
* The Site ID associated with this Permanent Object
|
|
5401
5249
|
*
|
|
5402
|
-
* @public
|
|
5403
5250
|
* @type {number}
|
|
5404
|
-
*/
|
|
5405
|
-
get siteId(): number;
|
|
5406
|
-
/**
|
|
5407
|
-
* Convert this **PermanentObjectModel** to a JSON Object
|
|
5408
|
-
*
|
|
5409
5251
|
* @public
|
|
5410
|
-
* @return {Object<string, any>}
|
|
5411
5252
|
*/
|
|
5412
|
-
|
|
5413
|
-
[x: string]: any;
|
|
5414
|
-
};
|
|
5253
|
+
siteId: number;
|
|
5415
5254
|
}
|
|
5416
|
-
import
|
|
5255
|
+
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
5417
5256
|
}
|
|
5418
5257
|
|
|
5419
5258
|
declare module '@ricado/api-client/Models/Site/TemporaryObjectModel' {
|
|
@@ -5423,9 +5262,9 @@ declare module '@ricado/api-client/Models/Site/TemporaryObjectModel' {
|
|
|
5423
5262
|
*
|
|
5424
5263
|
* @class
|
|
5425
5264
|
* @hideconstructor
|
|
5426
|
-
* @extends
|
|
5265
|
+
* @extends BaseModel
|
|
5427
5266
|
*/
|
|
5428
|
-
class TemporaryObjectModel extends
|
|
5267
|
+
class TemporaryObjectModel extends BaseModel {
|
|
5429
5268
|
/**
|
|
5430
5269
|
* Create a new **TemporaryObjectModel** from a JSON Object or JSON String
|
|
5431
5270
|
*
|
|
@@ -5448,63 +5287,54 @@ declare module '@ricado/api-client/Models/Site/TemporaryObjectModel' {
|
|
|
5448
5287
|
/**
|
|
5449
5288
|
* The Temporary Object ID
|
|
5450
5289
|
*
|
|
5451
|
-
* @public
|
|
5452
5290
|
* @type {string}
|
|
5291
|
+
* @public
|
|
5453
5292
|
*/
|
|
5454
|
-
|
|
5293
|
+
id: string;
|
|
5455
5294
|
/**
|
|
5456
5295
|
* The Temporary Object Key Index
|
|
5457
5296
|
*
|
|
5458
|
-
* @public
|
|
5459
5297
|
* @type {string}
|
|
5298
|
+
* @public
|
|
5460
5299
|
*/
|
|
5461
|
-
|
|
5300
|
+
keyIndex: string;
|
|
5462
5301
|
/**
|
|
5463
5302
|
* The Temporary Object Type
|
|
5464
5303
|
*
|
|
5465
|
-
* @public
|
|
5466
5304
|
* @type {string}
|
|
5305
|
+
* @public
|
|
5467
5306
|
*/
|
|
5468
|
-
|
|
5307
|
+
type: string;
|
|
5469
5308
|
/**
|
|
5470
5309
|
* The Temporary Object Definition
|
|
5471
5310
|
*
|
|
5472
|
-
* @public
|
|
5473
5311
|
* @type {Object}
|
|
5312
|
+
* @public
|
|
5474
5313
|
*/
|
|
5475
|
-
|
|
5314
|
+
definition: any;
|
|
5476
5315
|
/**
|
|
5477
5316
|
* Whether the Temporary Object has been deleted
|
|
5478
5317
|
*
|
|
5479
|
-
* @public
|
|
5480
5318
|
* @type {boolean}
|
|
5319
|
+
* @public
|
|
5481
5320
|
*/
|
|
5482
|
-
|
|
5321
|
+
deleted: boolean;
|
|
5483
5322
|
/**
|
|
5484
5323
|
* When the Temporary Object was last updated
|
|
5485
5324
|
*
|
|
5486
|
-
* @public
|
|
5487
5325
|
* @type {Date}
|
|
5326
|
+
* @public
|
|
5488
5327
|
*/
|
|
5489
|
-
|
|
5328
|
+
updateTimestamp: Date;
|
|
5490
5329
|
/**
|
|
5491
5330
|
* The Site ID associated with this Temporary Object
|
|
5492
5331
|
*
|
|
5493
|
-
* @public
|
|
5494
5332
|
* @type {number}
|
|
5495
|
-
*/
|
|
5496
|
-
get siteId(): number;
|
|
5497
|
-
/**
|
|
5498
|
-
* Convert this **TemporaryObjectModel** to a JSON Object
|
|
5499
|
-
*
|
|
5500
5333
|
* @public
|
|
5501
|
-
* @return {Object<string, any>}
|
|
5502
5334
|
*/
|
|
5503
|
-
|
|
5504
|
-
[x: string]: any;
|
|
5505
|
-
};
|
|
5335
|
+
siteId: number;
|
|
5506
5336
|
}
|
|
5507
|
-
import
|
|
5337
|
+
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
5508
5338
|
}
|
|
5509
5339
|
|
|
5510
5340
|
declare module '@ricado/api-client/Controllers/Packhouse/Site/BinTipWeightController' {
|
|
@@ -8203,6 +8033,18 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackrunController'
|
|
|
8203
8033
|
* @return {Promise<PackrunController.PackrunSummaryReport>}
|
|
8204
8034
|
*/
|
|
8205
8035
|
static getSummaryReport(siteId: number, id: string): Promise<PackrunController.PackrunSummaryReport>;
|
|
8036
|
+
/**
|
|
8037
|
+
* Retrieve a Packrun Infeed Report [GET /packhouse/sites/{siteId}/packruns/{id}/infeedReport]
|
|
8038
|
+
*
|
|
8039
|
+
* Retrieves an Infeed Report for a Packrun
|
|
8040
|
+
*
|
|
8041
|
+
* @static
|
|
8042
|
+
* @public
|
|
8043
|
+
* @param {number} siteId The Site ID
|
|
8044
|
+
* @param {string} id The Packrun ID
|
|
8045
|
+
* @return {Promise<PackrunController.PackrunInfeedReport>}
|
|
8046
|
+
*/
|
|
8047
|
+
static getInfeedReport(siteId: number, id: string): Promise<PackrunController.PackrunInfeedReport>;
|
|
8206
8048
|
/**
|
|
8207
8049
|
* List all Packruns [GET /packhouse/sites/{siteId}/packruns]
|
|
8208
8050
|
*
|
|
@@ -8661,6 +8503,83 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackrunController'
|
|
|
8661
8503
|
*/
|
|
8662
8504
|
class2FreshPackSummary: any[];
|
|
8663
8505
|
};
|
|
8506
|
+
/**
|
|
8507
|
+
* A **PackrunInfeedReport** Type
|
|
8508
|
+
*/
|
|
8509
|
+
export type PackrunInfeedReport = {
|
|
8510
|
+
/**
|
|
8511
|
+
* The Packrun ID
|
|
8512
|
+
*/
|
|
8513
|
+
id: string;
|
|
8514
|
+
/**
|
|
8515
|
+
* The Packrun Name
|
|
8516
|
+
*/
|
|
8517
|
+
name: string;
|
|
8518
|
+
/**
|
|
8519
|
+
* When the Packrun was Created
|
|
8520
|
+
*/
|
|
8521
|
+
createdTimestamp: Date;
|
|
8522
|
+
/**
|
|
8523
|
+
* When the Packrun was Started
|
|
8524
|
+
*/
|
|
8525
|
+
startTimestamp: Date;
|
|
8526
|
+
/**
|
|
8527
|
+
* When the Packrun was Finished
|
|
8528
|
+
*/
|
|
8529
|
+
finishTimestamp: Date;
|
|
8530
|
+
/**
|
|
8531
|
+
* The Packing Line ID
|
|
8532
|
+
*/
|
|
8533
|
+
packingLineId: string;
|
|
8534
|
+
/**
|
|
8535
|
+
* The Packing Line Name
|
|
8536
|
+
*/
|
|
8537
|
+
packingLineName: string;
|
|
8538
|
+
/**
|
|
8539
|
+
* The Grower Name
|
|
8540
|
+
*/
|
|
8541
|
+
growerName: string;
|
|
8542
|
+
/**
|
|
8543
|
+
* The Grower Code
|
|
8544
|
+
*/
|
|
8545
|
+
growerCode: string;
|
|
8546
|
+
/**
|
|
8547
|
+
* The Maturity Area
|
|
8548
|
+
*/
|
|
8549
|
+
maturityArea: string;
|
|
8550
|
+
/**
|
|
8551
|
+
* The Number of Bins Allocated for the Packrun
|
|
8552
|
+
*/
|
|
8553
|
+
allocatedBins: number;
|
|
8554
|
+
/**
|
|
8555
|
+
* The Number of Bins Tipped for the Packrun
|
|
8556
|
+
*/
|
|
8557
|
+
tippedBins: number;
|
|
8558
|
+
/**
|
|
8559
|
+
* The Total Reject Weight for the Soft-Sort category expressed in kilograms
|
|
8560
|
+
*/
|
|
8561
|
+
softSortRejectWeight: number;
|
|
8562
|
+
/**
|
|
8563
|
+
* The Percentage of Packrun Weight categorized as Soft-Sort
|
|
8564
|
+
*/
|
|
8565
|
+
softSortRejectPercentage: number;
|
|
8566
|
+
/**
|
|
8567
|
+
* The Number of Soft-Sort Events per Bin
|
|
8568
|
+
*/
|
|
8569
|
+
softSortEventsPerBin: number;
|
|
8570
|
+
/**
|
|
8571
|
+
* The Number of Soft-Sort Events that occurred for the Packrun
|
|
8572
|
+
*/
|
|
8573
|
+
totalSoftSortEventsCount: number;
|
|
8574
|
+
/**
|
|
8575
|
+
* The Average Duration of Soft-Sort Events for the Packrun expressed in Seconds
|
|
8576
|
+
*/
|
|
8577
|
+
averageSoftSortEventsDuration: number;
|
|
8578
|
+
/**
|
|
8579
|
+
* The Total Duration of all Soft-Sort Events for the Packrun expressed in Seconds
|
|
8580
|
+
*/
|
|
8581
|
+
totalSoftSortEventsDuration: number;
|
|
8582
|
+
};
|
|
8664
8583
|
}
|
|
8665
8584
|
import PackrunModel from "@ricado/api-client/Models/Packhouse/Site/PackrunModel";
|
|
8666
8585
|
}
|
|
@@ -10564,9 +10483,9 @@ declare module '@ricado/api-client/Models/Packhouse/Site/BinTipWeightModel' {
|
|
|
10564
10483
|
*
|
|
10565
10484
|
* @class
|
|
10566
10485
|
* @hideconstructor
|
|
10567
|
-
* @extends
|
|
10486
|
+
* @extends BaseModel
|
|
10568
10487
|
*/
|
|
10569
|
-
class BinTipWeightModel extends
|
|
10488
|
+
class BinTipWeightModel extends BaseModel {
|
|
10570
10489
|
/**
|
|
10571
10490
|
* Create a new **BinTipWeightModel** from a JSON Object or JSON String
|
|
10572
10491
|
*
|
|
@@ -10589,84 +10508,75 @@ declare module '@ricado/api-client/Models/Packhouse/Site/BinTipWeightModel' {
|
|
|
10589
10508
|
/**
|
|
10590
10509
|
* The Bin Tip Weight ID
|
|
10591
10510
|
*
|
|
10592
|
-
* @public
|
|
10593
10511
|
* @type {string}
|
|
10512
|
+
* @public
|
|
10594
10513
|
*/
|
|
10595
|
-
|
|
10514
|
+
id: string;
|
|
10596
10515
|
/**
|
|
10597
10516
|
* The Bin Tip ID associated with this Bin Weight
|
|
10598
10517
|
*
|
|
10599
|
-
* @public
|
|
10600
10518
|
* @type {string}
|
|
10519
|
+
* @public
|
|
10601
10520
|
*/
|
|
10602
|
-
|
|
10521
|
+
binTipId: string;
|
|
10603
10522
|
/**
|
|
10604
10523
|
* The Packrun ID associated with this Bin Weight
|
|
10605
10524
|
*
|
|
10606
|
-
* @public
|
|
10607
10525
|
* @type {string}
|
|
10526
|
+
* @public
|
|
10608
10527
|
*/
|
|
10609
|
-
|
|
10528
|
+
packrunId: string;
|
|
10610
10529
|
/**
|
|
10611
10530
|
* When this Bin Weight was Created
|
|
10612
10531
|
*
|
|
10613
|
-
* @public
|
|
10614
10532
|
* @type {Date}
|
|
10533
|
+
* @public
|
|
10615
10534
|
*/
|
|
10616
|
-
|
|
10535
|
+
createdTimestamp: Date;
|
|
10617
10536
|
/**
|
|
10618
10537
|
* The Bin Weight Type
|
|
10619
10538
|
*
|
|
10620
|
-
* @public
|
|
10621
10539
|
* @type {string}
|
|
10540
|
+
* @public
|
|
10622
10541
|
*/
|
|
10623
|
-
|
|
10542
|
+
weightType: string;
|
|
10624
10543
|
/**
|
|
10625
10544
|
* The Bin Weight
|
|
10626
10545
|
*
|
|
10627
|
-
* @public
|
|
10628
10546
|
* @type {number}
|
|
10547
|
+
* @public
|
|
10629
10548
|
*/
|
|
10630
|
-
|
|
10549
|
+
weight: number;
|
|
10631
10550
|
/**
|
|
10632
10551
|
* The Bin Scale ID associated with this Bin Weight
|
|
10633
10552
|
*
|
|
10634
|
-
* @public
|
|
10635
10553
|
* @type {?string}
|
|
10554
|
+
* @public
|
|
10636
10555
|
*/
|
|
10637
|
-
|
|
10556
|
+
binScaleId: string | null;
|
|
10638
10557
|
/**
|
|
10639
10558
|
* Whether the Bin Tip Weight has been deleted
|
|
10640
10559
|
*
|
|
10641
|
-
* @public
|
|
10642
10560
|
* @type {boolean}
|
|
10561
|
+
* @public
|
|
10643
10562
|
*/
|
|
10644
|
-
|
|
10563
|
+
deleted: boolean;
|
|
10645
10564
|
/**
|
|
10646
10565
|
* When the Bin Tip Weight was last updated
|
|
10647
10566
|
*
|
|
10648
|
-
* @public
|
|
10649
10567
|
* @type {Date}
|
|
10568
|
+
* @public
|
|
10650
10569
|
*/
|
|
10651
|
-
|
|
10570
|
+
updateTimestamp: Date;
|
|
10652
10571
|
/**
|
|
10653
10572
|
* The Site ID associated with this Bin Tip Weight
|
|
10654
10573
|
*
|
|
10655
|
-
* @public
|
|
10656
10574
|
* @type {number}
|
|
10657
|
-
*/
|
|
10658
|
-
get siteId(): number;
|
|
10659
|
-
/**
|
|
10660
|
-
* Convert this **BinTipWeightModel** to a JSON Object
|
|
10661
|
-
*
|
|
10662
10575
|
* @public
|
|
10663
|
-
* @return {Object<string, any>}
|
|
10664
10576
|
*/
|
|
10665
|
-
|
|
10666
|
-
[x: string]: any;
|
|
10667
|
-
};
|
|
10577
|
+
siteId: number;
|
|
10668
10578
|
}
|
|
10669
|
-
import
|
|
10579
|
+
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
10670
10580
|
}
|
|
10671
10581
|
|
|
10672
10582
|
declare module '@ricado/api-client/Models/Packhouse/Site/CompacSizerBatchModel' {
|
|
@@ -10676,9 +10586,9 @@ declare module '@ricado/api-client/Models/Packhouse/Site/CompacSizerBatchModel'
|
|
|
10676
10586
|
*
|
|
10677
10587
|
* @class
|
|
10678
10588
|
* @hideconstructor
|
|
10679
|
-
* @extends
|
|
10589
|
+
* @extends BaseModel
|
|
10680
10590
|
*/
|
|
10681
|
-
class CompacSizerBatchModel extends
|
|
10591
|
+
class CompacSizerBatchModel extends BaseModel {
|
|
10682
10592
|
/**
|
|
10683
10593
|
* Create a new **CompacSizerBatchModel** from a JSON Object or JSON String
|
|
10684
10594
|
*
|
|
@@ -10701,77 +10611,68 @@ declare module '@ricado/api-client/Models/Packhouse/Site/CompacSizerBatchModel'
|
|
|
10701
10611
|
/**
|
|
10702
10612
|
* The Compac Sizer Batch ID
|
|
10703
10613
|
*
|
|
10704
|
-
* @public
|
|
10705
10614
|
* @type {string}
|
|
10615
|
+
* @public
|
|
10706
10616
|
*/
|
|
10707
|
-
|
|
10617
|
+
id: string;
|
|
10708
10618
|
/**
|
|
10709
10619
|
* The Compac Sizer ID this Batch is associated with
|
|
10710
10620
|
*
|
|
10711
|
-
* @public
|
|
10712
10621
|
* @type {string}
|
|
10622
|
+
* @public
|
|
10713
10623
|
*/
|
|
10714
|
-
|
|
10624
|
+
compacSizerId: string;
|
|
10715
10625
|
/**
|
|
10716
10626
|
* The Numeric Compac Batch ID
|
|
10717
10627
|
*
|
|
10718
|
-
* @public
|
|
10719
10628
|
* @type {string}
|
|
10629
|
+
* @public
|
|
10720
10630
|
*/
|
|
10721
|
-
|
|
10631
|
+
batchId: string;
|
|
10722
10632
|
/**
|
|
10723
10633
|
* When this Batch was Created
|
|
10724
10634
|
*
|
|
10725
|
-
* @public
|
|
10726
10635
|
* @type {Date}
|
|
10636
|
+
* @public
|
|
10727
10637
|
*/
|
|
10728
|
-
|
|
10638
|
+
createdTimestamp: Date;
|
|
10729
10639
|
/**
|
|
10730
10640
|
* The Packrun ID associated with this Batch
|
|
10731
10641
|
*
|
|
10732
|
-
* @public
|
|
10733
10642
|
* @type {?string}
|
|
10643
|
+
* @public
|
|
10734
10644
|
*/
|
|
10735
|
-
|
|
10645
|
+
packrunId: string | null;
|
|
10736
10646
|
/**
|
|
10737
10647
|
* The Compac Sizer Batch Data
|
|
10738
10648
|
*
|
|
10739
|
-
* @public
|
|
10740
10649
|
* @type {Object}
|
|
10650
|
+
* @public
|
|
10741
10651
|
*/
|
|
10742
|
-
|
|
10652
|
+
batch: any;
|
|
10743
10653
|
/**
|
|
10744
10654
|
* Whether the Compac Sizer Batch has been deleted
|
|
10745
10655
|
*
|
|
10746
|
-
* @public
|
|
10747
10656
|
* @type {boolean}
|
|
10657
|
+
* @public
|
|
10748
10658
|
*/
|
|
10749
|
-
|
|
10659
|
+
deleted: boolean;
|
|
10750
10660
|
/**
|
|
10751
10661
|
* When the Compac Sizer Batch was last updated
|
|
10752
10662
|
*
|
|
10753
|
-
* @public
|
|
10754
10663
|
* @type {Date}
|
|
10664
|
+
* @public
|
|
10755
10665
|
*/
|
|
10756
|
-
|
|
10666
|
+
updateTimestamp: Date;
|
|
10757
10667
|
/**
|
|
10758
10668
|
* The Site ID associated with this Compac Sizer Batch
|
|
10759
10669
|
*
|
|
10760
|
-
* @public
|
|
10761
10670
|
* @type {number}
|
|
10762
|
-
*/
|
|
10763
|
-
get siteId(): number;
|
|
10764
|
-
/**
|
|
10765
|
-
* Convert this **CompacSizerBatchModel** to a JSON Object
|
|
10766
|
-
*
|
|
10767
10671
|
* @public
|
|
10768
|
-
* @return {Object<string, any>}
|
|
10769
10672
|
*/
|
|
10770
|
-
|
|
10771
|
-
[x: string]: any;
|
|
10772
|
-
};
|
|
10673
|
+
siteId: number;
|
|
10773
10674
|
}
|
|
10774
|
-
import
|
|
10675
|
+
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
10775
10676
|
}
|
|
10776
10677
|
|
|
10777
10678
|
declare module '@ricado/api-client/Models/Packhouse/Site/CompacSizerModel' {
|
|
@@ -10781,9 +10682,9 @@ declare module '@ricado/api-client/Models/Packhouse/Site/CompacSizerModel' {
|
|
|
10781
10682
|
*
|
|
10782
10683
|
* @class
|
|
10783
10684
|
* @hideconstructor
|
|
10784
|
-
* @extends
|
|
10685
|
+
* @extends BaseModel
|
|
10785
10686
|
*/
|
|
10786
|
-
class CompacSizerModel extends
|
|
10687
|
+
class CompacSizerModel extends BaseModel {
|
|
10787
10688
|
/**
|
|
10788
10689
|
* Create a new **CompacSizerModel** from a JSON Object or JSON String
|
|
10789
10690
|
*
|
|
@@ -10806,119 +10707,110 @@ declare module '@ricado/api-client/Models/Packhouse/Site/CompacSizerModel' {
|
|
|
10806
10707
|
/**
|
|
10807
10708
|
* The Compac Sizer ID
|
|
10808
10709
|
*
|
|
10809
|
-
* @public
|
|
10810
10710
|
* @type {string}
|
|
10711
|
+
* @public
|
|
10811
10712
|
*/
|
|
10812
|
-
|
|
10713
|
+
id: string;
|
|
10813
10714
|
/**
|
|
10814
10715
|
* The RTU this Compac Sizer belongs to
|
|
10815
10716
|
*
|
|
10816
|
-
* @public
|
|
10817
10717
|
* @type {?number}
|
|
10718
|
+
* @public
|
|
10818
10719
|
*/
|
|
10819
|
-
|
|
10720
|
+
rtuId: number | null;
|
|
10820
10721
|
/**
|
|
10821
10722
|
* The Compac Sizer Name
|
|
10822
10723
|
*
|
|
10823
|
-
* @public
|
|
10824
10724
|
* @type {string}
|
|
10725
|
+
* @public
|
|
10825
10726
|
*/
|
|
10826
|
-
|
|
10727
|
+
name: string;
|
|
10827
10728
|
/**
|
|
10828
10729
|
* The Lanes defined for this Compac Sizer
|
|
10829
10730
|
*
|
|
10830
|
-
* @public
|
|
10831
10731
|
* @type {Object[]}
|
|
10732
|
+
* @public
|
|
10832
10733
|
*/
|
|
10833
|
-
|
|
10734
|
+
lanes: any[];
|
|
10834
10735
|
/**
|
|
10835
10736
|
* The Points used by this Compac Sizer
|
|
10836
10737
|
*
|
|
10837
|
-
* @public
|
|
10838
10738
|
* @type {Object}
|
|
10739
|
+
* @public
|
|
10839
10740
|
*/
|
|
10840
|
-
|
|
10741
|
+
points: any;
|
|
10841
10742
|
/**
|
|
10842
10743
|
* The Outlets defined for this Compac Sizer
|
|
10843
10744
|
*
|
|
10844
|
-
* @public
|
|
10845
10745
|
* @type {Object[]}
|
|
10746
|
+
* @public
|
|
10846
10747
|
*/
|
|
10847
|
-
|
|
10748
|
+
outlets: any[];
|
|
10848
10749
|
/**
|
|
10849
10750
|
* The Sizer Type
|
|
10850
10751
|
*
|
|
10851
|
-
* @public
|
|
10852
10752
|
* @type {string}
|
|
10753
|
+
* @public
|
|
10853
10754
|
*/
|
|
10854
|
-
|
|
10755
|
+
sizerType: string;
|
|
10855
10756
|
/**
|
|
10856
10757
|
* The Auto Create Batch Delay in Seconds for this Compac Sizer
|
|
10857
10758
|
*
|
|
10858
|
-
* @public
|
|
10859
10759
|
* @type {number}
|
|
10760
|
+
* @public
|
|
10860
10761
|
*/
|
|
10861
|
-
|
|
10762
|
+
autoCreateBatchDelay: number;
|
|
10862
10763
|
/**
|
|
10863
10764
|
* The Fruit Sizes defined and handled by this Compac Sizer
|
|
10864
10765
|
*
|
|
10865
|
-
* @public
|
|
10866
10766
|
* @type {Object[]}
|
|
10767
|
+
* @public
|
|
10867
10768
|
*/
|
|
10868
|
-
|
|
10769
|
+
fruitSizes: any[];
|
|
10869
10770
|
/**
|
|
10870
10771
|
* The Packing Line ID this Compac Sizer belongs to
|
|
10871
10772
|
*
|
|
10872
|
-
* @public
|
|
10873
10773
|
* @type {string}
|
|
10774
|
+
* @public
|
|
10874
10775
|
*/
|
|
10875
|
-
|
|
10776
|
+
packingLineId: string;
|
|
10876
10777
|
/**
|
|
10877
10778
|
* The FreshPack Integration Configuration for this Compac Sizer
|
|
10878
10779
|
*
|
|
10879
|
-
* @public
|
|
10880
10780
|
* @type {?Object}
|
|
10781
|
+
* @public
|
|
10881
10782
|
*/
|
|
10882
|
-
|
|
10783
|
+
freshPackIntegration: any | null;
|
|
10883
10784
|
/**
|
|
10884
10785
|
* An Array of Sources that deliver Fruit to this Compac Sizer
|
|
10885
10786
|
*
|
|
10886
|
-
* @public
|
|
10887
10787
|
* @type {Object[]}
|
|
10788
|
+
* @public
|
|
10888
10789
|
*/
|
|
10889
|
-
|
|
10790
|
+
sources: any[];
|
|
10890
10791
|
/**
|
|
10891
10792
|
* Whether the Compac Sizer has been deleted
|
|
10892
10793
|
*
|
|
10893
|
-
* @public
|
|
10894
10794
|
* @type {boolean}
|
|
10795
|
+
* @public
|
|
10895
10796
|
*/
|
|
10896
|
-
|
|
10797
|
+
deleted: boolean;
|
|
10897
10798
|
/**
|
|
10898
10799
|
* When the Compac Sizer was last updated
|
|
10899
10800
|
*
|
|
10900
|
-
* @public
|
|
10901
10801
|
* @type {Date}
|
|
10802
|
+
* @public
|
|
10902
10803
|
*/
|
|
10903
|
-
|
|
10804
|
+
updateTimestamp: Date;
|
|
10904
10805
|
/**
|
|
10905
10806
|
* The Site ID associated with this Compac Sizer
|
|
10906
10807
|
*
|
|
10907
|
-
* @public
|
|
10908
10808
|
* @type {number}
|
|
10909
|
-
*/
|
|
10910
|
-
get siteId(): number;
|
|
10911
|
-
/**
|
|
10912
|
-
* Convert this **CompacSizerModel** to a JSON Object
|
|
10913
|
-
*
|
|
10914
10809
|
* @public
|
|
10915
|
-
* @return {Object<string, any>}
|
|
10916
10810
|
*/
|
|
10917
|
-
|
|
10918
|
-
[x: string]: any;
|
|
10919
|
-
};
|
|
10811
|
+
siteId: number;
|
|
10920
10812
|
}
|
|
10921
|
-
import
|
|
10813
|
+
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
10922
10814
|
}
|
|
10923
10815
|
|
|
10924
10816
|
declare module '@ricado/api-client/Models/Packhouse/Site/CompacSizerOutletProductChangeModel' {
|
|
@@ -10928,9 +10820,9 @@ declare module '@ricado/api-client/Models/Packhouse/Site/CompacSizerOutletProduc
|
|
|
10928
10820
|
*
|
|
10929
10821
|
* @class
|
|
10930
10822
|
* @hideconstructor
|
|
10931
|
-
* @extends
|
|
10823
|
+
* @extends BaseModel
|
|
10932
10824
|
*/
|
|
10933
|
-
class CompacSizerOutletProductChangeModel extends
|
|
10825
|
+
class CompacSizerOutletProductChangeModel extends BaseModel {
|
|
10934
10826
|
/**
|
|
10935
10827
|
* Create a new **CompacSizerOutletProductChangeModel** from a JSON Object or JSON String
|
|
10936
10828
|
*
|
|
@@ -10953,91 +10845,82 @@ declare module '@ricado/api-client/Models/Packhouse/Site/CompacSizerOutletProduc
|
|
|
10953
10845
|
/**
|
|
10954
10846
|
* The Compac Sizer Outlet Product Change ID
|
|
10955
10847
|
*
|
|
10956
|
-
* @public
|
|
10957
10848
|
* @type {string}
|
|
10849
|
+
* @public
|
|
10958
10850
|
*/
|
|
10959
|
-
|
|
10851
|
+
id: string;
|
|
10960
10852
|
/**
|
|
10961
10853
|
* The Compac Sizer ID this Outlet Change is associated with
|
|
10962
10854
|
*
|
|
10963
|
-
* @public
|
|
10964
10855
|
* @type {string}
|
|
10856
|
+
* @public
|
|
10965
10857
|
*/
|
|
10966
|
-
|
|
10858
|
+
compacSizerId: string;
|
|
10967
10859
|
/**
|
|
10968
10860
|
* The Sizer Outlet Number this Outlet Change is associated with
|
|
10969
10861
|
*
|
|
10970
|
-
* @public
|
|
10971
10862
|
* @type {string}
|
|
10863
|
+
* @public
|
|
10972
10864
|
*/
|
|
10973
|
-
|
|
10865
|
+
outletNumber: string;
|
|
10974
10866
|
/**
|
|
10975
10867
|
* When this Outlet Change occurred
|
|
10976
10868
|
*
|
|
10977
|
-
* @public
|
|
10978
10869
|
* @type {Date}
|
|
10870
|
+
* @public
|
|
10979
10871
|
*/
|
|
10980
|
-
|
|
10872
|
+
createdTimestamp: Date;
|
|
10981
10873
|
/**
|
|
10982
10874
|
* The ID of the Previous Product that was active on the Outlet
|
|
10983
10875
|
*
|
|
10984
|
-
* @public
|
|
10985
10876
|
* @type {?string}
|
|
10877
|
+
* @public
|
|
10986
10878
|
*/
|
|
10987
|
-
|
|
10879
|
+
previousProductId: string | null;
|
|
10988
10880
|
/**
|
|
10989
10881
|
* The Name of the Previous Product that was active on the Outlet
|
|
10990
10882
|
*
|
|
10991
|
-
* @public
|
|
10992
10883
|
* @type {?string}
|
|
10884
|
+
* @public
|
|
10993
10885
|
*/
|
|
10994
|
-
|
|
10886
|
+
previousProductName: string | null;
|
|
10995
10887
|
/**
|
|
10996
10888
|
* The ID of the New Product that is now active on the Outlet
|
|
10997
10889
|
*
|
|
10998
|
-
* @public
|
|
10999
10890
|
* @type {string}
|
|
10891
|
+
* @public
|
|
11000
10892
|
*/
|
|
11001
|
-
|
|
10893
|
+
newProductId: string;
|
|
11002
10894
|
/**
|
|
11003
10895
|
* The Name of the New Product that is now active on the Outlet
|
|
11004
10896
|
*
|
|
11005
|
-
* @public
|
|
11006
10897
|
* @type {string}
|
|
10898
|
+
* @public
|
|
11007
10899
|
*/
|
|
11008
|
-
|
|
10900
|
+
newProductName: string;
|
|
11009
10901
|
/**
|
|
11010
10902
|
* Whether the Compac Sizer Outlet Product Change has been deleted
|
|
11011
10903
|
*
|
|
11012
|
-
* @public
|
|
11013
10904
|
* @type {boolean}
|
|
10905
|
+
* @public
|
|
11014
10906
|
*/
|
|
11015
|
-
|
|
10907
|
+
deleted: boolean;
|
|
11016
10908
|
/**
|
|
11017
10909
|
* When the Compac Sizer Outlet Product Change was last updated
|
|
11018
10910
|
*
|
|
11019
|
-
* @public
|
|
11020
10911
|
* @type {Date}
|
|
10912
|
+
* @public
|
|
11021
10913
|
*/
|
|
11022
|
-
|
|
10914
|
+
updateTimestamp: Date;
|
|
11023
10915
|
/**
|
|
11024
10916
|
* The Site ID associated with this Compac Sizer Outlet Product Change
|
|
11025
10917
|
*
|
|
11026
|
-
* @public
|
|
11027
10918
|
* @type {number}
|
|
11028
|
-
*/
|
|
11029
|
-
get siteId(): number;
|
|
11030
|
-
/**
|
|
11031
|
-
* Convert this **CompacSizerOutletProductChangeModel** to a JSON Object
|
|
11032
|
-
*
|
|
11033
10919
|
* @public
|
|
11034
|
-
* @return {Object<string, any>}
|
|
11035
10920
|
*/
|
|
11036
|
-
|
|
11037
|
-
[x: string]: any;
|
|
11038
|
-
};
|
|
10921
|
+
siteId: number;
|
|
11039
10922
|
}
|
|
11040
|
-
import
|
|
10923
|
+
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
11041
10924
|
}
|
|
11042
10925
|
|
|
11043
10926
|
declare module '@ricado/api-client/Models/Packhouse/Site/CompacSizerOutletTypeChangeModel' {
|
|
@@ -11047,9 +10930,9 @@ declare module '@ricado/api-client/Models/Packhouse/Site/CompacSizerOutletTypeCh
|
|
|
11047
10930
|
*
|
|
11048
10931
|
* @class
|
|
11049
10932
|
* @hideconstructor
|
|
11050
|
-
* @extends
|
|
10933
|
+
* @extends BaseModel
|
|
11051
10934
|
*/
|
|
11052
|
-
class CompacSizerOutletTypeChangeModel extends
|
|
10935
|
+
class CompacSizerOutletTypeChangeModel extends BaseModel {
|
|
11053
10936
|
/**
|
|
11054
10937
|
* Create a new **CompacSizerOutletTypeChangeModel** from a JSON Object or JSON String
|
|
11055
10938
|
*
|
|
@@ -11072,77 +10955,68 @@ declare module '@ricado/api-client/Models/Packhouse/Site/CompacSizerOutletTypeCh
|
|
|
11072
10955
|
/**
|
|
11073
10956
|
* The Compac Sizer Outlet Type Change ID
|
|
11074
10957
|
*
|
|
11075
|
-
* @public
|
|
11076
10958
|
* @type {string}
|
|
10959
|
+
* @public
|
|
11077
10960
|
*/
|
|
11078
|
-
|
|
10961
|
+
id: string;
|
|
11079
10962
|
/**
|
|
11080
10963
|
* The Compac Sizer ID this Outlet Type Change is associated with
|
|
11081
10964
|
*
|
|
11082
|
-
* @public
|
|
11083
10965
|
* @type {string}
|
|
10966
|
+
* @public
|
|
11084
10967
|
*/
|
|
11085
|
-
|
|
10968
|
+
compacSizerId: string;
|
|
11086
10969
|
/**
|
|
11087
10970
|
* The Sizer Outlet Number this Outlet Type Change is associated with
|
|
11088
10971
|
*
|
|
11089
|
-
* @public
|
|
11090
10972
|
* @type {string}
|
|
10973
|
+
* @public
|
|
11091
10974
|
*/
|
|
11092
|
-
|
|
10975
|
+
outletNumber: string;
|
|
11093
10976
|
/**
|
|
11094
10977
|
* When this Outlet Type Change occurred
|
|
11095
10978
|
*
|
|
11096
|
-
* @public
|
|
11097
10979
|
* @type {Date}
|
|
10980
|
+
* @public
|
|
11098
10981
|
*/
|
|
11099
|
-
|
|
10982
|
+
createdTimestamp: Date;
|
|
11100
10983
|
/**
|
|
11101
10984
|
* The ID of the Previous Type that was active on the Outlet
|
|
11102
10985
|
*
|
|
11103
|
-
* @public
|
|
11104
10986
|
* @type {?string}
|
|
10987
|
+
* @public
|
|
11105
10988
|
*/
|
|
11106
|
-
|
|
10989
|
+
previousTypeId: string | null;
|
|
11107
10990
|
/**
|
|
11108
10991
|
* The ID of the New Type that is now active on the Outlet
|
|
11109
10992
|
*
|
|
11110
|
-
* @public
|
|
11111
10993
|
* @type {string}
|
|
10994
|
+
* @public
|
|
11112
10995
|
*/
|
|
11113
|
-
|
|
10996
|
+
newTypeId: string;
|
|
11114
10997
|
/**
|
|
11115
10998
|
* Whether the Compac Sizer Outlet Type Change has been deleted
|
|
11116
10999
|
*
|
|
11117
|
-
* @public
|
|
11118
11000
|
* @type {boolean}
|
|
11001
|
+
* @public
|
|
11119
11002
|
*/
|
|
11120
|
-
|
|
11003
|
+
deleted: boolean;
|
|
11121
11004
|
/**
|
|
11122
11005
|
* When the Compac Sizer Outlet Type Change was last updated
|
|
11123
11006
|
*
|
|
11124
|
-
* @public
|
|
11125
11007
|
* @type {Date}
|
|
11008
|
+
* @public
|
|
11126
11009
|
*/
|
|
11127
|
-
|
|
11010
|
+
updateTimestamp: Date;
|
|
11128
11011
|
/**
|
|
11129
11012
|
* The Site ID associated with this Compac Sizer Outlet Type Change
|
|
11130
11013
|
*
|
|
11131
|
-
* @public
|
|
11132
11014
|
* @type {number}
|
|
11133
|
-
*/
|
|
11134
|
-
get siteId(): number;
|
|
11135
|
-
/**
|
|
11136
|
-
* Convert this **CompacSizerOutletTypeChangeModel** to a JSON Object
|
|
11137
|
-
*
|
|
11138
11015
|
* @public
|
|
11139
|
-
* @return {Object<string, any>}
|
|
11140
11016
|
*/
|
|
11141
|
-
|
|
11142
|
-
[x: string]: any;
|
|
11143
|
-
};
|
|
11017
|
+
siteId: number;
|
|
11144
11018
|
}
|
|
11145
|
-
import
|
|
11019
|
+
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
11146
11020
|
}
|
|
11147
11021
|
|
|
11148
11022
|
declare module '@ricado/api-client/Models/Packhouse/Site/CompacSizerOutletTypeModel' {
|
|
@@ -11152,9 +11026,9 @@ declare module '@ricado/api-client/Models/Packhouse/Site/CompacSizerOutletTypeMo
|
|
|
11152
11026
|
*
|
|
11153
11027
|
* @class
|
|
11154
11028
|
* @hideconstructor
|
|
11155
|
-
* @extends
|
|
11029
|
+
* @extends BaseModel
|
|
11156
11030
|
*/
|
|
11157
|
-
class CompacSizerOutletTypeModel extends
|
|
11031
|
+
class CompacSizerOutletTypeModel extends BaseModel {
|
|
11158
11032
|
/**
|
|
11159
11033
|
* Create a new **CompacSizerOutletTypeModel** from a JSON Object or JSON String
|
|
11160
11034
|
*
|
|
@@ -11177,63 +11051,54 @@ declare module '@ricado/api-client/Models/Packhouse/Site/CompacSizerOutletTypeMo
|
|
|
11177
11051
|
/**
|
|
11178
11052
|
* The Compac Sizer Outlet Type ID
|
|
11179
11053
|
*
|
|
11180
|
-
* @public
|
|
11181
11054
|
* @type {string}
|
|
11055
|
+
* @public
|
|
11182
11056
|
*/
|
|
11183
|
-
|
|
11057
|
+
id: string;
|
|
11184
11058
|
/**
|
|
11185
11059
|
* The Name for this Dynamic Outlet Type
|
|
11186
11060
|
*
|
|
11187
|
-
* @public
|
|
11188
11061
|
* @type {string}
|
|
11062
|
+
* @public
|
|
11189
11063
|
*/
|
|
11190
|
-
|
|
11064
|
+
name: string;
|
|
11191
11065
|
/**
|
|
11192
11066
|
* The Generic Outlet Type
|
|
11193
11067
|
*
|
|
11194
|
-
* @public
|
|
11195
11068
|
* @type {string}
|
|
11069
|
+
* @public
|
|
11196
11070
|
*/
|
|
11197
|
-
|
|
11071
|
+
type: string;
|
|
11198
11072
|
/**
|
|
11199
11073
|
* An Optional Description for this Dynamic Outlet Type
|
|
11200
11074
|
*
|
|
11201
|
-
* @public
|
|
11202
11075
|
* @type {string}
|
|
11076
|
+
* @public
|
|
11203
11077
|
*/
|
|
11204
|
-
|
|
11078
|
+
description: string;
|
|
11205
11079
|
/**
|
|
11206
11080
|
* Whether the Compac Sizer Outlet Type has been deleted
|
|
11207
11081
|
*
|
|
11208
|
-
* @public
|
|
11209
11082
|
* @type {boolean}
|
|
11083
|
+
* @public
|
|
11210
11084
|
*/
|
|
11211
|
-
|
|
11085
|
+
deleted: boolean;
|
|
11212
11086
|
/**
|
|
11213
11087
|
* When the Compac Sizer Outlet Type was last updated
|
|
11214
11088
|
*
|
|
11215
|
-
* @public
|
|
11216
11089
|
* @type {Date}
|
|
11090
|
+
* @public
|
|
11217
11091
|
*/
|
|
11218
|
-
|
|
11092
|
+
updateTimestamp: Date;
|
|
11219
11093
|
/**
|
|
11220
11094
|
* The Site ID associated with this Compac Sizer Outlet Type
|
|
11221
11095
|
*
|
|
11222
|
-
* @public
|
|
11223
11096
|
* @type {number}
|
|
11224
|
-
*/
|
|
11225
|
-
get siteId(): number;
|
|
11226
|
-
/**
|
|
11227
|
-
* Convert this **CompacSizerOutletTypeModel** to a JSON Object
|
|
11228
|
-
*
|
|
11229
11097
|
* @public
|
|
11230
|
-
* @return {Object<string, any>}
|
|
11231
11098
|
*/
|
|
11232
|
-
|
|
11233
|
-
[x: string]: any;
|
|
11234
|
-
};
|
|
11099
|
+
siteId: number;
|
|
11235
11100
|
}
|
|
11236
|
-
import
|
|
11101
|
+
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
11237
11102
|
}
|
|
11238
11103
|
|
|
11239
11104
|
declare module '@ricado/api-client/Models/Packhouse/Site/CompacSizerPackrunSummaryModel' {
|
|
@@ -11243,9 +11108,9 @@ declare module '@ricado/api-client/Models/Packhouse/Site/CompacSizerPackrunSumma
|
|
|
11243
11108
|
*
|
|
11244
11109
|
* @class
|
|
11245
11110
|
* @hideconstructor
|
|
11246
|
-
* @extends
|
|
11111
|
+
* @extends BaseModel
|
|
11247
11112
|
*/
|
|
11248
|
-
class CompacSizerPackrunSummaryModel extends
|
|
11113
|
+
class CompacSizerPackrunSummaryModel extends BaseModel {
|
|
11249
11114
|
/**
|
|
11250
11115
|
* Create a new **CompacSizerPackrunSummaryModel** from a JSON Object or JSON String
|
|
11251
11116
|
*
|
|
@@ -11268,64 +11133,64 @@ declare module '@ricado/api-client/Models/Packhouse/Site/CompacSizerPackrunSumma
|
|
|
11268
11133
|
/**
|
|
11269
11134
|
* The Compac Sizer Packrun Summary ID
|
|
11270
11135
|
*
|
|
11271
|
-
* @public
|
|
11272
11136
|
* @type {string}
|
|
11137
|
+
* @public
|
|
11273
11138
|
*/
|
|
11274
|
-
|
|
11139
|
+
id: string;
|
|
11275
11140
|
/**
|
|
11276
11141
|
* The Compac Sizer ID this Summary is associated with
|
|
11277
11142
|
*
|
|
11278
|
-
* @public
|
|
11279
11143
|
* @type {string}
|
|
11144
|
+
* @public
|
|
11280
11145
|
*/
|
|
11281
|
-
|
|
11146
|
+
compacSizerId: string;
|
|
11282
11147
|
/**
|
|
11283
11148
|
* The Packrun ID this Summary is associated with
|
|
11284
11149
|
*
|
|
11285
|
-
* @public
|
|
11286
11150
|
* @type {string}
|
|
11151
|
+
* @public
|
|
11287
11152
|
*/
|
|
11288
|
-
|
|
11153
|
+
packrunId: string;
|
|
11289
11154
|
/**
|
|
11290
11155
|
* When this Summary was Created
|
|
11291
11156
|
*
|
|
11292
|
-
* @public
|
|
11293
11157
|
* @type {Date}
|
|
11158
|
+
* @public
|
|
11294
11159
|
*/
|
|
11295
|
-
|
|
11160
|
+
createdTimestamp: Date;
|
|
11296
11161
|
/**
|
|
11297
11162
|
* The Time Batch this Summary is associated with
|
|
11298
11163
|
*
|
|
11299
|
-
* @public
|
|
11300
11164
|
* @type {?string}
|
|
11165
|
+
* @public
|
|
11301
11166
|
*/
|
|
11302
|
-
|
|
11167
|
+
timeBatchId: string | null;
|
|
11303
11168
|
/**
|
|
11304
11169
|
* An Array of Packrun Summary Data Objects for each Outlet
|
|
11305
11170
|
*
|
|
11306
|
-
* @public
|
|
11307
11171
|
* @type {Array<{name: string, type: string, number: number, totals: Array<{classType: ?string, fruitSize: string, packType: ?string, weight: number, fruitCount: number, packCount: ?number}>}>}
|
|
11172
|
+
* @public
|
|
11308
11173
|
*/
|
|
11309
|
-
|
|
11174
|
+
outletSummaries: {
|
|
11310
11175
|
name: string;
|
|
11311
11176
|
type: string;
|
|
11312
11177
|
number: number;
|
|
11313
|
-
totals:
|
|
11178
|
+
totals: {
|
|
11314
11179
|
classType: string | null;
|
|
11315
11180
|
fruitSize: string;
|
|
11316
11181
|
packType: string | null;
|
|
11317
11182
|
weight: number;
|
|
11318
11183
|
fruitCount: number;
|
|
11319
11184
|
packCount: number | null;
|
|
11320
|
-
}
|
|
11185
|
+
}[];
|
|
11321
11186
|
}[];
|
|
11322
11187
|
/**
|
|
11323
11188
|
* An Array that contains the Products initially Assigned to each Outlet
|
|
11324
11189
|
*
|
|
11325
|
-
* @public
|
|
11326
11190
|
* @type {Array<{outletNumber: number, productId: string, productName: ?string}>}
|
|
11191
|
+
* @public
|
|
11327
11192
|
*/
|
|
11328
|
-
|
|
11193
|
+
initialOutletProducts: {
|
|
11329
11194
|
outletNumber: number;
|
|
11330
11195
|
productId: string;
|
|
11331
11196
|
productName: string | null;
|
|
@@ -11333,10 +11198,10 @@ declare module '@ricado/api-client/Models/Packhouse/Site/CompacSizerPackrunSumma
|
|
|
11333
11198
|
/**
|
|
11334
11199
|
* An Array of Outlet Product Changes
|
|
11335
11200
|
*
|
|
11336
|
-
* @public
|
|
11337
11201
|
* @type {Array<{timestamp: Date, outletNumber: number, productId: string, productName: ?string, outletProductChangeId: string}>}
|
|
11202
|
+
* @public
|
|
11338
11203
|
*/
|
|
11339
|
-
|
|
11204
|
+
outletProductChanges: {
|
|
11340
11205
|
timestamp: Date;
|
|
11341
11206
|
outletNumber: number;
|
|
11342
11207
|
productId: string;
|
|
@@ -11346,10 +11211,10 @@ declare module '@ricado/api-client/Models/Packhouse/Site/CompacSizerPackrunSumma
|
|
|
11346
11211
|
/**
|
|
11347
11212
|
* An Array that contains the Types initially configured for each Outlet
|
|
11348
11213
|
*
|
|
11349
|
-
* @public
|
|
11350
11214
|
* @type {Array<{outletNumber: number, type: string, typeId: ?string}>}
|
|
11215
|
+
* @public
|
|
11351
11216
|
*/
|
|
11352
|
-
|
|
11217
|
+
initialOutletTypes: {
|
|
11353
11218
|
outletNumber: number;
|
|
11354
11219
|
type: string;
|
|
11355
11220
|
typeId: string | null;
|
|
@@ -11357,10 +11222,10 @@ declare module '@ricado/api-client/Models/Packhouse/Site/CompacSizerPackrunSumma
|
|
|
11357
11222
|
/**
|
|
11358
11223
|
* An Array of Outlet Type Changes. Only applies to Outlets configured as *Dynamic*
|
|
11359
11224
|
*
|
|
11360
|
-
* @public
|
|
11361
11225
|
* @type {Array<{timestamp: Date, outletNumber: number, typeId: ?string}>}
|
|
11226
|
+
* @public
|
|
11362
11227
|
*/
|
|
11363
|
-
|
|
11228
|
+
outletTypeChanges: {
|
|
11364
11229
|
timestamp: Date;
|
|
11365
11230
|
outletNumber: number;
|
|
11366
11231
|
typeId: string | null;
|
|
@@ -11368,35 +11233,26 @@ declare module '@ricado/api-client/Models/Packhouse/Site/CompacSizerPackrunSumma
|
|
|
11368
11233
|
/**
|
|
11369
11234
|
* Whether the Compac Sizer Packrun Summary has been deleted
|
|
11370
11235
|
*
|
|
11371
|
-
* @public
|
|
11372
11236
|
* @type {boolean}
|
|
11237
|
+
* @public
|
|
11373
11238
|
*/
|
|
11374
|
-
|
|
11239
|
+
deleted: boolean;
|
|
11375
11240
|
/**
|
|
11376
11241
|
* When the Compac Sizer Packrun Summary was last updated
|
|
11377
11242
|
*
|
|
11378
|
-
* @public
|
|
11379
11243
|
* @type {Date}
|
|
11244
|
+
* @public
|
|
11380
11245
|
*/
|
|
11381
|
-
|
|
11246
|
+
updateTimestamp: Date;
|
|
11382
11247
|
/**
|
|
11383
11248
|
* The Site ID associated with this Compac Sizer Packrun Summary
|
|
11384
11249
|
*
|
|
11385
|
-
* @public
|
|
11386
11250
|
* @type {number}
|
|
11387
|
-
*/
|
|
11388
|
-
get siteId(): number;
|
|
11389
|
-
/**
|
|
11390
|
-
* Convert this **CompacSizerPackrunSummaryModel** to a JSON Object
|
|
11391
|
-
*
|
|
11392
11251
|
* @public
|
|
11393
|
-
* @return {Object<string, any>}
|
|
11394
11252
|
*/
|
|
11395
|
-
|
|
11396
|
-
[x: string]: any;
|
|
11397
|
-
};
|
|
11253
|
+
siteId: number;
|
|
11398
11254
|
}
|
|
11399
|
-
import
|
|
11255
|
+
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
11400
11256
|
}
|
|
11401
11257
|
|
|
11402
11258
|
declare module '@ricado/api-client/Models/Packhouse/Site/DowntimeEventModel' {
|
|
@@ -11406,9 +11262,9 @@ declare module '@ricado/api-client/Models/Packhouse/Site/DowntimeEventModel' {
|
|
|
11406
11262
|
*
|
|
11407
11263
|
* @class
|
|
11408
11264
|
* @hideconstructor
|
|
11409
|
-
* @extends
|
|
11265
|
+
* @extends BaseModel
|
|
11410
11266
|
*/
|
|
11411
|
-
class DowntimeEventModel extends
|
|
11267
|
+
class DowntimeEventModel extends BaseModel {
|
|
11412
11268
|
/**
|
|
11413
11269
|
* Create a new **DowntimeEventModel** from a JSON Object or JSON String
|
|
11414
11270
|
*
|
|
@@ -11431,119 +11287,110 @@ declare module '@ricado/api-client/Models/Packhouse/Site/DowntimeEventModel' {
|
|
|
11431
11287
|
/**
|
|
11432
11288
|
* The Downtime Event ID
|
|
11433
11289
|
*
|
|
11434
|
-
* @public
|
|
11435
11290
|
* @type {string}
|
|
11291
|
+
* @public
|
|
11436
11292
|
*/
|
|
11437
|
-
|
|
11293
|
+
id: string;
|
|
11438
11294
|
/**
|
|
11439
11295
|
* The Packing Line ID this Downtime Event is associated with
|
|
11440
11296
|
*
|
|
11441
|
-
* @public
|
|
11442
11297
|
* @type {string}
|
|
11298
|
+
* @public
|
|
11443
11299
|
*/
|
|
11444
|
-
|
|
11300
|
+
packingLineId: string;
|
|
11445
11301
|
/**
|
|
11446
11302
|
* The Shift ID this Downtime Event is asssociated with
|
|
11447
11303
|
*
|
|
11448
|
-
* @public
|
|
11449
11304
|
* @type {string}
|
|
11305
|
+
* @public
|
|
11450
11306
|
*/
|
|
11451
|
-
|
|
11307
|
+
shiftId: string;
|
|
11452
11308
|
/**
|
|
11453
11309
|
* When this Downtime Event was Created
|
|
11454
11310
|
*
|
|
11455
|
-
* @public
|
|
11456
11311
|
* @type {Date}
|
|
11312
|
+
* @public
|
|
11457
11313
|
*/
|
|
11458
|
-
|
|
11314
|
+
createdTimestamp: Date;
|
|
11459
11315
|
/**
|
|
11460
11316
|
* When this Downtime Event Started
|
|
11461
11317
|
*
|
|
11462
|
-
* @public
|
|
11463
11318
|
* @type {Date}
|
|
11319
|
+
* @public
|
|
11464
11320
|
*/
|
|
11465
|
-
|
|
11321
|
+
startTimestamp: Date;
|
|
11466
11322
|
/**
|
|
11467
11323
|
* When this Downtime Event Ended
|
|
11468
11324
|
*
|
|
11469
|
-
* @public
|
|
11470
11325
|
* @type {?Date}
|
|
11326
|
+
* @public
|
|
11471
11327
|
*/
|
|
11472
|
-
|
|
11328
|
+
endTimestamp: Date | null;
|
|
11473
11329
|
/**
|
|
11474
11330
|
* The Reason Category for this Downtime Event
|
|
11475
11331
|
*
|
|
11476
|
-
* @public
|
|
11477
11332
|
* @type {?string}
|
|
11333
|
+
* @public
|
|
11478
11334
|
*/
|
|
11479
|
-
|
|
11335
|
+
reasonCategory: string | null;
|
|
11480
11336
|
/**
|
|
11481
11337
|
* The Reason Tag for this Downtime Event
|
|
11482
11338
|
*
|
|
11483
|
-
* @public
|
|
11484
11339
|
* @type {?string}
|
|
11340
|
+
* @public
|
|
11485
11341
|
*/
|
|
11486
|
-
|
|
11342
|
+
reasonTag: string | null;
|
|
11487
11343
|
/**
|
|
11488
11344
|
* An Optional Summary of the Action taken to Remedy this Downtime Event
|
|
11489
11345
|
*
|
|
11490
|
-
* @public
|
|
11491
11346
|
* @type {?string}
|
|
11347
|
+
* @public
|
|
11492
11348
|
*/
|
|
11493
|
-
|
|
11349
|
+
remedyAction: string | null;
|
|
11494
11350
|
/**
|
|
11495
11351
|
* An Optional Rating between 1 and 10 on how likely this Downtime Event could have been Avoided
|
|
11496
11352
|
*
|
|
11497
|
-
* @public
|
|
11498
11353
|
* @type {?number}
|
|
11354
|
+
* @public
|
|
11499
11355
|
*/
|
|
11500
|
-
|
|
11356
|
+
avoidableRating: number | null;
|
|
11501
11357
|
/**
|
|
11502
11358
|
* The Source which Created this Downtime Event
|
|
11503
11359
|
*
|
|
11504
|
-
* @public
|
|
11505
11360
|
* @type {string}
|
|
11361
|
+
* @public
|
|
11506
11362
|
*/
|
|
11507
|
-
|
|
11363
|
+
source: string;
|
|
11508
11364
|
/**
|
|
11509
11365
|
* The Status of this Downtime Event
|
|
11510
11366
|
*
|
|
11511
|
-
* @public
|
|
11512
11367
|
* @type {string}
|
|
11368
|
+
* @public
|
|
11513
11369
|
*/
|
|
11514
|
-
|
|
11370
|
+
status: string;
|
|
11515
11371
|
/**
|
|
11516
11372
|
* Whether the Downtime Event has been deleted
|
|
11517
11373
|
*
|
|
11518
|
-
* @public
|
|
11519
11374
|
* @type {boolean}
|
|
11375
|
+
* @public
|
|
11520
11376
|
*/
|
|
11521
|
-
|
|
11377
|
+
deleted: boolean;
|
|
11522
11378
|
/**
|
|
11523
11379
|
* When the Downtime Event was last updated
|
|
11524
11380
|
*
|
|
11525
|
-
* @public
|
|
11526
11381
|
* @type {Date}
|
|
11382
|
+
* @public
|
|
11527
11383
|
*/
|
|
11528
|
-
|
|
11384
|
+
updateTimestamp: Date;
|
|
11529
11385
|
/**
|
|
11530
11386
|
* The Site ID associated with this Downtime Event
|
|
11531
11387
|
*
|
|
11532
|
-
* @public
|
|
11533
11388
|
* @type {number}
|
|
11534
|
-
*/
|
|
11535
|
-
get siteId(): number;
|
|
11536
|
-
/**
|
|
11537
|
-
* Convert this **DowntimeEventModel** to a JSON Object
|
|
11538
|
-
*
|
|
11539
11389
|
* @public
|
|
11540
|
-
* @return {Object<string, any>}
|
|
11541
11390
|
*/
|
|
11542
|
-
|
|
11543
|
-
[x: string]: any;
|
|
11544
|
-
};
|
|
11391
|
+
siteId: number;
|
|
11545
11392
|
}
|
|
11546
|
-
import
|
|
11393
|
+
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
11547
11394
|
}
|
|
11548
11395
|
|
|
11549
11396
|
declare module '@ricado/api-client/Models/Packhouse/Site/FreshPackPackrunSummaryModel' {
|
|
@@ -11553,9 +11400,9 @@ declare module '@ricado/api-client/Models/Packhouse/Site/FreshPackPackrunSummary
|
|
|
11553
11400
|
*
|
|
11554
11401
|
* @class
|
|
11555
11402
|
* @hideconstructor
|
|
11556
|
-
* @extends
|
|
11403
|
+
* @extends BaseModel
|
|
11557
11404
|
*/
|
|
11558
|
-
class FreshPackPackrunSummaryModel extends
|
|
11405
|
+
class FreshPackPackrunSummaryModel extends BaseModel {
|
|
11559
11406
|
/**
|
|
11560
11407
|
* Create a new **FreshPackPackrunSummaryModel** from a JSON Object or JSON String
|
|
11561
11408
|
*
|
|
@@ -11578,77 +11425,68 @@ declare module '@ricado/api-client/Models/Packhouse/Site/FreshPackPackrunSummary
|
|
|
11578
11425
|
/**
|
|
11579
11426
|
* The FreshPack Packrun Summary ID
|
|
11580
11427
|
*
|
|
11581
|
-
* @public
|
|
11582
11428
|
* @type {string}
|
|
11429
|
+
* @public
|
|
11583
11430
|
*/
|
|
11584
|
-
|
|
11431
|
+
id: string;
|
|
11585
11432
|
/**
|
|
11586
11433
|
* The Packing Line ID this Summary is associated with
|
|
11587
11434
|
*
|
|
11588
|
-
* @public
|
|
11589
11435
|
* @type {string}
|
|
11436
|
+
* @public
|
|
11590
11437
|
*/
|
|
11591
|
-
|
|
11438
|
+
packingLineId: string;
|
|
11592
11439
|
/**
|
|
11593
11440
|
* The Packrun ID this Summary is associated with
|
|
11594
11441
|
*
|
|
11595
|
-
* @public
|
|
11596
11442
|
* @type {string}
|
|
11443
|
+
* @public
|
|
11597
11444
|
*/
|
|
11598
|
-
|
|
11445
|
+
packrunId: string;
|
|
11599
11446
|
/**
|
|
11600
11447
|
* When this Summary was Created
|
|
11601
11448
|
*
|
|
11602
|
-
* @public
|
|
11603
11449
|
* @type {Date}
|
|
11450
|
+
* @public
|
|
11604
11451
|
*/
|
|
11605
|
-
|
|
11452
|
+
createdTimestamp: Date;
|
|
11606
11453
|
/**
|
|
11607
11454
|
* The Time Batch this Summary is associated with
|
|
11608
11455
|
*
|
|
11609
|
-
* @public
|
|
11610
11456
|
* @type {?string}
|
|
11457
|
+
* @public
|
|
11611
11458
|
*/
|
|
11612
|
-
|
|
11459
|
+
timeBatchId: string | null;
|
|
11613
11460
|
/**
|
|
11614
11461
|
* An Array of Tray Summary Data Objects for all Sizes and Class Types
|
|
11615
11462
|
*
|
|
11616
|
-
* @public
|
|
11617
11463
|
* @type {Object[]}
|
|
11464
|
+
* @public
|
|
11618
11465
|
*/
|
|
11619
|
-
|
|
11466
|
+
traySummaries: any[];
|
|
11620
11467
|
/**
|
|
11621
11468
|
* Whether the FreshPack Packrun Summary has been deleted
|
|
11622
11469
|
*
|
|
11623
|
-
* @public
|
|
11624
11470
|
* @type {boolean}
|
|
11471
|
+
* @public
|
|
11625
11472
|
*/
|
|
11626
|
-
|
|
11473
|
+
deleted: boolean;
|
|
11627
11474
|
/**
|
|
11628
11475
|
* When the FreshPack Packrun Summary was last updated
|
|
11629
11476
|
*
|
|
11630
|
-
* @public
|
|
11631
11477
|
* @type {Date}
|
|
11478
|
+
* @public
|
|
11632
11479
|
*/
|
|
11633
|
-
|
|
11480
|
+
updateTimestamp: Date;
|
|
11634
11481
|
/**
|
|
11635
11482
|
* The Site ID associated with this FreshPack Packrun Summary
|
|
11636
11483
|
*
|
|
11637
|
-
* @public
|
|
11638
11484
|
* @type {number}
|
|
11639
|
-
*/
|
|
11640
|
-
get siteId(): number;
|
|
11641
|
-
/**
|
|
11642
|
-
* Convert this **FreshPackPackrunSummaryModel** to a JSON Object
|
|
11643
|
-
*
|
|
11644
11485
|
* @public
|
|
11645
|
-
* @return {Object<string, any>}
|
|
11646
11486
|
*/
|
|
11647
|
-
|
|
11648
|
-
[x: string]: any;
|
|
11649
|
-
};
|
|
11487
|
+
siteId: number;
|
|
11650
11488
|
}
|
|
11651
|
-
import
|
|
11489
|
+
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
11652
11490
|
}
|
|
11653
11491
|
|
|
11654
11492
|
declare module '@ricado/api-client/Models/Packhouse/Site/GrowingMethodModel' {
|
|
@@ -11658,9 +11496,9 @@ declare module '@ricado/api-client/Models/Packhouse/Site/GrowingMethodModel' {
|
|
|
11658
11496
|
*
|
|
11659
11497
|
* @class
|
|
11660
11498
|
* @hideconstructor
|
|
11661
|
-
* @extends
|
|
11499
|
+
* @extends BaseModel
|
|
11662
11500
|
*/
|
|
11663
|
-
class GrowingMethodModel extends
|
|
11501
|
+
class GrowingMethodModel extends BaseModel {
|
|
11664
11502
|
/**
|
|
11665
11503
|
* Create a new **GrowingMethodModel** from a JSON Object or JSON String
|
|
11666
11504
|
*
|
|
@@ -11683,63 +11521,54 @@ declare module '@ricado/api-client/Models/Packhouse/Site/GrowingMethodModel' {
|
|
|
11683
11521
|
/**
|
|
11684
11522
|
* The Growing Method ID
|
|
11685
11523
|
*
|
|
11686
|
-
* @public
|
|
11687
11524
|
* @type {string}
|
|
11525
|
+
* @public
|
|
11688
11526
|
*/
|
|
11689
|
-
|
|
11527
|
+
id: string;
|
|
11690
11528
|
/**
|
|
11691
11529
|
* The Growing Method Code
|
|
11692
11530
|
*
|
|
11693
|
-
* @public
|
|
11694
11531
|
* @type {string}
|
|
11532
|
+
* @public
|
|
11695
11533
|
*/
|
|
11696
|
-
|
|
11534
|
+
code: string;
|
|
11697
11535
|
/**
|
|
11698
11536
|
* The Growing Method Name
|
|
11699
11537
|
*
|
|
11700
|
-
* @public
|
|
11701
11538
|
* @type {string}
|
|
11539
|
+
* @public
|
|
11702
11540
|
*/
|
|
11703
|
-
|
|
11541
|
+
name: string;
|
|
11704
11542
|
/**
|
|
11705
11543
|
* The Growing Method Description
|
|
11706
11544
|
*
|
|
11707
|
-
* @public
|
|
11708
11545
|
* @type {string}
|
|
11546
|
+
* @public
|
|
11709
11547
|
*/
|
|
11710
|
-
|
|
11548
|
+
description: string;
|
|
11711
11549
|
/**
|
|
11712
11550
|
* Whether the Growing Method has been deleted
|
|
11713
11551
|
*
|
|
11714
|
-
* @public
|
|
11715
11552
|
* @type {boolean}
|
|
11553
|
+
* @public
|
|
11716
11554
|
*/
|
|
11717
|
-
|
|
11555
|
+
deleted: boolean;
|
|
11718
11556
|
/**
|
|
11719
11557
|
* When the Growing Method was last updated
|
|
11720
11558
|
*
|
|
11721
|
-
* @public
|
|
11722
11559
|
* @type {Date}
|
|
11560
|
+
* @public
|
|
11723
11561
|
*/
|
|
11724
|
-
|
|
11562
|
+
updateTimestamp: Date;
|
|
11725
11563
|
/**
|
|
11726
11564
|
* The Site ID associated with this Growing Method
|
|
11727
11565
|
*
|
|
11728
|
-
* @public
|
|
11729
11566
|
* @type {number}
|
|
11730
|
-
*/
|
|
11731
|
-
get siteId(): number;
|
|
11732
|
-
/**
|
|
11733
|
-
* Convert this **GrowingMethodModel** to a JSON Object
|
|
11734
|
-
*
|
|
11735
11567
|
* @public
|
|
11736
|
-
* @return {Object<string, any>}
|
|
11737
11568
|
*/
|
|
11738
|
-
|
|
11739
|
-
[x: string]: any;
|
|
11740
|
-
};
|
|
11569
|
+
siteId: number;
|
|
11741
11570
|
}
|
|
11742
|
-
import
|
|
11571
|
+
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
11743
11572
|
}
|
|
11744
11573
|
|
|
11745
11574
|
declare module '@ricado/api-client/Models/Packhouse/Site/PackTypeModel' {
|
|
@@ -11749,9 +11578,9 @@ declare module '@ricado/api-client/Models/Packhouse/Site/PackTypeModel' {
|
|
|
11749
11578
|
*
|
|
11750
11579
|
* @class
|
|
11751
11580
|
* @hideconstructor
|
|
11752
|
-
* @extends
|
|
11581
|
+
* @extends BaseModel
|
|
11753
11582
|
*/
|
|
11754
|
-
class PackTypeModel extends
|
|
11583
|
+
class PackTypeModel extends BaseModel {
|
|
11755
11584
|
/**
|
|
11756
11585
|
* Create a new **PackTypeModel** from a JSON Object or JSON String
|
|
11757
11586
|
*
|
|
@@ -11774,80 +11603,71 @@ declare module '@ricado/api-client/Models/Packhouse/Site/PackTypeModel' {
|
|
|
11774
11603
|
/**
|
|
11775
11604
|
* The Pack Type ID
|
|
11776
11605
|
*
|
|
11777
|
-
* @public
|
|
11778
11606
|
* @type {string}
|
|
11607
|
+
* @public
|
|
11779
11608
|
*/
|
|
11780
|
-
|
|
11609
|
+
id: string;
|
|
11781
11610
|
/**
|
|
11782
11611
|
* The Code for this Pack Type
|
|
11783
11612
|
*
|
|
11784
|
-
* @public
|
|
11785
11613
|
* @type {string}
|
|
11614
|
+
* @public
|
|
11786
11615
|
*/
|
|
11787
|
-
|
|
11616
|
+
code: string;
|
|
11788
11617
|
/**
|
|
11789
11618
|
* The Name for this Pack Type
|
|
11790
11619
|
*
|
|
11791
|
-
* @public
|
|
11792
11620
|
* @type {string}
|
|
11621
|
+
* @public
|
|
11793
11622
|
*/
|
|
11794
|
-
|
|
11623
|
+
name: string;
|
|
11795
11624
|
/**
|
|
11796
11625
|
* An Optional Description for this Pack Type
|
|
11797
11626
|
*
|
|
11798
|
-
* @public
|
|
11799
11627
|
* @type {string}
|
|
11628
|
+
* @public
|
|
11800
11629
|
*/
|
|
11801
|
-
|
|
11630
|
+
description: string;
|
|
11802
11631
|
/**
|
|
11803
11632
|
* The Physical Form of this Pack Type
|
|
11804
11633
|
*
|
|
11805
|
-
* @public
|
|
11806
11634
|
* @type {string}
|
|
11635
|
+
* @public
|
|
11807
11636
|
*/
|
|
11808
|
-
|
|
11637
|
+
form: string;
|
|
11809
11638
|
/**
|
|
11810
11639
|
* An Array of Fruit Sizes Defined for this Pack Type
|
|
11811
11640
|
*
|
|
11812
|
-
* @public
|
|
11813
11641
|
* @type {Array<{size: string, count: number}>}
|
|
11642
|
+
* @public
|
|
11814
11643
|
*/
|
|
11815
|
-
|
|
11644
|
+
fruitSizes: {
|
|
11816
11645
|
size: string;
|
|
11817
11646
|
count: number;
|
|
11818
11647
|
}[];
|
|
11819
11648
|
/**
|
|
11820
11649
|
* Whether the Pack Type has been deleted
|
|
11821
11650
|
*
|
|
11822
|
-
* @public
|
|
11823
11651
|
* @type {boolean}
|
|
11652
|
+
* @public
|
|
11824
11653
|
*/
|
|
11825
|
-
|
|
11654
|
+
deleted: boolean;
|
|
11826
11655
|
/**
|
|
11827
11656
|
* When the Pack Type was last updated
|
|
11828
11657
|
*
|
|
11829
|
-
* @public
|
|
11830
11658
|
* @type {Date}
|
|
11659
|
+
* @public
|
|
11831
11660
|
*/
|
|
11832
|
-
|
|
11661
|
+
updateTimestamp: Date;
|
|
11833
11662
|
/**
|
|
11834
11663
|
* The Site ID associated with this Pack Type
|
|
11835
11664
|
*
|
|
11836
|
-
* @public
|
|
11837
11665
|
* @type {number}
|
|
11838
|
-
*/
|
|
11839
|
-
get siteId(): number;
|
|
11840
|
-
/**
|
|
11841
|
-
* Convert this **PackTypeModel** to a JSON Object
|
|
11842
|
-
*
|
|
11843
11666
|
* @public
|
|
11844
|
-
* @return {Object<string, any>}
|
|
11845
11667
|
*/
|
|
11846
|
-
|
|
11847
|
-
[x: string]: any;
|
|
11848
|
-
};
|
|
11668
|
+
siteId: number;
|
|
11849
11669
|
}
|
|
11850
|
-
import
|
|
11670
|
+
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
11851
11671
|
}
|
|
11852
11672
|
|
|
11853
11673
|
declare module '@ricado/api-client/Models/Packhouse/Site/PackingLineModel' {
|
|
@@ -11857,9 +11677,9 @@ declare module '@ricado/api-client/Models/Packhouse/Site/PackingLineModel' {
|
|
|
11857
11677
|
*
|
|
11858
11678
|
* @class
|
|
11859
11679
|
* @hideconstructor
|
|
11860
|
-
* @extends
|
|
11680
|
+
* @extends BaseModel
|
|
11861
11681
|
*/
|
|
11862
|
-
class PackingLineModel extends
|
|
11682
|
+
class PackingLineModel extends BaseModel {
|
|
11863
11683
|
/**
|
|
11864
11684
|
* Create a new **PackingLineModel** from a JSON Object or JSON String
|
|
11865
11685
|
*
|
|
@@ -11882,80 +11702,80 @@ declare module '@ricado/api-client/Models/Packhouse/Site/PackingLineModel' {
|
|
|
11882
11702
|
/**
|
|
11883
11703
|
* The Packing Line ID
|
|
11884
11704
|
*
|
|
11885
|
-
* @public
|
|
11886
11705
|
* @type {string}
|
|
11706
|
+
* @public
|
|
11887
11707
|
*/
|
|
11888
|
-
|
|
11708
|
+
id: string;
|
|
11889
11709
|
/**
|
|
11890
11710
|
* The RTU this Packing Line belongs to
|
|
11891
11711
|
*
|
|
11892
|
-
* @public
|
|
11893
11712
|
* @type {?number}
|
|
11713
|
+
* @public
|
|
11894
11714
|
*/
|
|
11895
|
-
|
|
11715
|
+
rtuId: number | null;
|
|
11896
11716
|
/**
|
|
11897
11717
|
* The Packing Line Name
|
|
11898
11718
|
*
|
|
11899
|
-
* @public
|
|
11900
11719
|
* @type {string}
|
|
11720
|
+
* @public
|
|
11901
11721
|
*/
|
|
11902
|
-
|
|
11722
|
+
name: string;
|
|
11903
11723
|
/**
|
|
11904
11724
|
* The Points used by this Packing Line
|
|
11905
11725
|
*
|
|
11906
|
-
* @public
|
|
11907
11726
|
* @type {Object}
|
|
11727
|
+
* @public
|
|
11908
11728
|
*/
|
|
11909
|
-
|
|
11729
|
+
points: any;
|
|
11910
11730
|
/**
|
|
11911
11731
|
* The Sizer Objects that belong to this Packing Line
|
|
11912
11732
|
*
|
|
11913
|
-
* @public
|
|
11914
11733
|
* @type {Object[]}
|
|
11734
|
+
* @public
|
|
11915
11735
|
*/
|
|
11916
|
-
|
|
11736
|
+
sizers: any[];
|
|
11917
11737
|
/**
|
|
11918
11738
|
* The Bin Tip Objects that belong to this this Packing Line
|
|
11919
11739
|
*
|
|
11920
|
-
* @public
|
|
11921
11740
|
* @type {Object[]}
|
|
11741
|
+
* @public
|
|
11922
11742
|
*/
|
|
11923
|
-
|
|
11743
|
+
binTips: any[];
|
|
11924
11744
|
/**
|
|
11925
11745
|
* The Reject Bin Scale Objects that belong to this Packing Line
|
|
11926
11746
|
*
|
|
11927
|
-
* @public
|
|
11928
11747
|
* @type {Object[]}
|
|
11748
|
+
* @public
|
|
11929
11749
|
*/
|
|
11930
|
-
|
|
11750
|
+
rejectBinScales: any[];
|
|
11931
11751
|
/**
|
|
11932
11752
|
* The Automation Object for this Packing Line
|
|
11933
11753
|
*
|
|
11934
|
-
* @public
|
|
11935
11754
|
* @type {?Object}
|
|
11755
|
+
* @public
|
|
11936
11756
|
*/
|
|
11937
|
-
|
|
11757
|
+
automation: any | null;
|
|
11938
11758
|
/**
|
|
11939
11759
|
* The Alarm Groups that are used by this Packing Line
|
|
11940
11760
|
*
|
|
11941
|
-
* @public
|
|
11942
11761
|
* @type {string[]}
|
|
11762
|
+
* @public
|
|
11943
11763
|
*/
|
|
11944
|
-
|
|
11764
|
+
alarmGroups: string[];
|
|
11945
11765
|
/**
|
|
11946
11766
|
* The Class Types that are defined for this Packing Line
|
|
11947
11767
|
*
|
|
11948
|
-
* @public
|
|
11949
11768
|
* @type {Object[]}
|
|
11769
|
+
* @public
|
|
11950
11770
|
*/
|
|
11951
|
-
|
|
11771
|
+
classTypes: any[];
|
|
11952
11772
|
/**
|
|
11953
11773
|
* The Optional Shift Management Object for this Packing Line
|
|
11954
11774
|
*
|
|
11955
|
-
* @public
|
|
11956
11775
|
* @type {?{points: {currentShiftId: number, createNewDayShiftRequest: number, createNewNightShiftRequest: number, startCurrentShiftRequest: number, finishCurrentShiftRequest: number, currentFocusMeetingId: number, startFocusMeetingRequest: number, finishFocusMeetingRequest: number, shiftSchedules: number}, enabled: boolean}}
|
|
11776
|
+
* @public
|
|
11957
11777
|
*/
|
|
11958
|
-
|
|
11778
|
+
shiftManagement: {
|
|
11959
11779
|
points: {
|
|
11960
11780
|
currentShiftId: number;
|
|
11961
11781
|
createNewDayShiftRequest: number;
|
|
@@ -11972,49 +11792,40 @@ declare module '@ricado/api-client/Models/Packhouse/Site/PackingLineModel' {
|
|
|
11972
11792
|
/**
|
|
11973
11793
|
* The FreshPack Integration Configuration for this Packing Line
|
|
11974
11794
|
*
|
|
11975
|
-
* @public
|
|
11976
11795
|
* @type {?Object}
|
|
11796
|
+
* @public
|
|
11977
11797
|
*/
|
|
11978
|
-
|
|
11798
|
+
freshPackIntegration: any | null;
|
|
11979
11799
|
/**
|
|
11980
11800
|
* The FreshQuality Integration Configuration for this Packing Line
|
|
11981
11801
|
*
|
|
11982
|
-
* @public
|
|
11983
11802
|
* @type {?Object}
|
|
11803
|
+
* @public
|
|
11984
11804
|
*/
|
|
11985
|
-
|
|
11805
|
+
freshQualityIntegration: any | null;
|
|
11986
11806
|
/**
|
|
11987
11807
|
* Whether the Packing Line has been deleted
|
|
11988
11808
|
*
|
|
11989
|
-
* @public
|
|
11990
11809
|
* @type {boolean}
|
|
11810
|
+
* @public
|
|
11991
11811
|
*/
|
|
11992
|
-
|
|
11812
|
+
deleted: boolean;
|
|
11993
11813
|
/**
|
|
11994
11814
|
* When the Packing Line was last updated
|
|
11995
11815
|
*
|
|
11996
|
-
* @public
|
|
11997
11816
|
* @type {Date}
|
|
11817
|
+
* @public
|
|
11998
11818
|
*/
|
|
11999
|
-
|
|
11819
|
+
updateTimestamp: Date;
|
|
12000
11820
|
/**
|
|
12001
11821
|
* The Site ID associated with this Packing Line
|
|
12002
11822
|
*
|
|
12003
|
-
* @public
|
|
12004
11823
|
* @type {number}
|
|
12005
|
-
*/
|
|
12006
|
-
get siteId(): number;
|
|
12007
|
-
/**
|
|
12008
|
-
* Convert this **PackingLineModel** to a JSON Object
|
|
12009
|
-
*
|
|
12010
11824
|
* @public
|
|
12011
|
-
* @return {Object<string, any>}
|
|
12012
11825
|
*/
|
|
12013
|
-
|
|
12014
|
-
[x: string]: any;
|
|
12015
|
-
};
|
|
11826
|
+
siteId: number;
|
|
12016
11827
|
}
|
|
12017
|
-
import
|
|
11828
|
+
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
12018
11829
|
}
|
|
12019
11830
|
|
|
12020
11831
|
declare module '@ricado/api-client/Models/Packhouse/Site/PackrunModel' {
|
|
@@ -12024,9 +11835,9 @@ declare module '@ricado/api-client/Models/Packhouse/Site/PackrunModel' {
|
|
|
12024
11835
|
*
|
|
12025
11836
|
* @class
|
|
12026
11837
|
* @hideconstructor
|
|
12027
|
-
* @extends
|
|
11838
|
+
* @extends BaseModel
|
|
12028
11839
|
*/
|
|
12029
|
-
class PackrunModel extends
|
|
11840
|
+
class PackrunModel extends BaseModel {
|
|
12030
11841
|
/**
|
|
12031
11842
|
* Create a new **PackrunModel** from a JSON Object or JSON String
|
|
12032
11843
|
*
|
|
@@ -12049,126 +11860,117 @@ declare module '@ricado/api-client/Models/Packhouse/Site/PackrunModel' {
|
|
|
12049
11860
|
/**
|
|
12050
11861
|
* The Packrun ID
|
|
12051
11862
|
*
|
|
12052
|
-
* @public
|
|
12053
11863
|
* @type {string}
|
|
11864
|
+
* @public
|
|
12054
11865
|
*/
|
|
12055
|
-
|
|
11866
|
+
id: string;
|
|
12056
11867
|
/**
|
|
12057
11868
|
* The Packing Line ID this Packrun is associated with
|
|
12058
11869
|
*
|
|
12059
|
-
* @public
|
|
12060
11870
|
* @type {string}
|
|
11871
|
+
* @public
|
|
12061
11872
|
*/
|
|
12062
|
-
|
|
11873
|
+
packingLineId: string;
|
|
12063
11874
|
/**
|
|
12064
11875
|
* The Packrun Name
|
|
12065
11876
|
*
|
|
12066
|
-
* @public
|
|
12067
11877
|
* @type {string}
|
|
11878
|
+
* @public
|
|
12068
11879
|
*/
|
|
12069
|
-
|
|
11880
|
+
name: string;
|
|
12070
11881
|
/**
|
|
12071
11882
|
* When this Packrun was Created
|
|
12072
11883
|
*
|
|
12073
|
-
* @public
|
|
12074
11884
|
* @type {Date}
|
|
11885
|
+
* @public
|
|
12075
11886
|
*/
|
|
12076
|
-
|
|
11887
|
+
createdTimestamp: Date;
|
|
12077
11888
|
/**
|
|
12078
11889
|
* The Grower Name for this Packrun
|
|
12079
11890
|
*
|
|
12080
|
-
* @public
|
|
12081
11891
|
* @type {string}
|
|
11892
|
+
* @public
|
|
12082
11893
|
*/
|
|
12083
|
-
|
|
11894
|
+
growerName: string;
|
|
12084
11895
|
/**
|
|
12085
11896
|
* The Grower Code for this Packrun
|
|
12086
11897
|
*
|
|
12087
|
-
* @public
|
|
12088
11898
|
* @type {string}
|
|
11899
|
+
* @public
|
|
12089
11900
|
*/
|
|
12090
|
-
|
|
11901
|
+
growerCode: string;
|
|
12091
11902
|
/**
|
|
12092
11903
|
* The Maturity Area for this Packrun
|
|
12093
11904
|
*
|
|
12094
|
-
* @public
|
|
12095
11905
|
* @type {string}
|
|
11906
|
+
* @public
|
|
12096
11907
|
*/
|
|
12097
|
-
|
|
11908
|
+
maturityArea: string;
|
|
12098
11909
|
/**
|
|
12099
11910
|
* When this Packrun was Started
|
|
12100
11911
|
*
|
|
12101
|
-
* @public
|
|
12102
11912
|
* @type {?Date}
|
|
11913
|
+
* @public
|
|
12103
11914
|
*/
|
|
12104
|
-
|
|
11915
|
+
startTimestamp: Date | null;
|
|
12105
11916
|
/**
|
|
12106
11917
|
* When this Packrun was Finished
|
|
12107
11918
|
*
|
|
12108
|
-
* @public
|
|
12109
11919
|
* @type {?Date}
|
|
11920
|
+
* @public
|
|
12110
11921
|
*/
|
|
12111
|
-
|
|
11922
|
+
finishTimestamp: Date | null;
|
|
12112
11923
|
/**
|
|
12113
11924
|
* The Variety for this Packrun
|
|
12114
11925
|
*
|
|
12115
|
-
* @public
|
|
12116
11926
|
* @type {string}
|
|
11927
|
+
* @public
|
|
12117
11928
|
*/
|
|
12118
|
-
|
|
11929
|
+
varietyId: string;
|
|
12119
11930
|
/**
|
|
12120
11931
|
* The Growing Method for this Packrun
|
|
12121
11932
|
*
|
|
12122
|
-
* @public
|
|
12123
11933
|
* @type {?string}
|
|
11934
|
+
* @public
|
|
12124
11935
|
*/
|
|
12125
|
-
|
|
11936
|
+
growingMethodId: string | null;
|
|
12126
11937
|
/**
|
|
12127
11938
|
* The Number of Allocated Bins for this Packrun
|
|
12128
11939
|
*
|
|
12129
|
-
* @public
|
|
12130
11940
|
* @type {number}
|
|
11941
|
+
* @public
|
|
12131
11942
|
*/
|
|
12132
|
-
|
|
11943
|
+
allocatedBins: number;
|
|
12133
11944
|
/**
|
|
12134
11945
|
* The Time Batches for this Packrun
|
|
12135
11946
|
*
|
|
12136
|
-
* @public
|
|
12137
11947
|
* @type {Object[]}
|
|
11948
|
+
* @public
|
|
12138
11949
|
*/
|
|
12139
|
-
|
|
11950
|
+
timeBatches: any[];
|
|
12140
11951
|
/**
|
|
12141
11952
|
* Whether the Packrun has been deleted
|
|
12142
11953
|
*
|
|
12143
|
-
* @public
|
|
12144
11954
|
* @type {boolean}
|
|
11955
|
+
* @public
|
|
12145
11956
|
*/
|
|
12146
|
-
|
|
11957
|
+
deleted: boolean;
|
|
12147
11958
|
/**
|
|
12148
11959
|
* When the Packrun was last updated
|
|
12149
11960
|
*
|
|
12150
|
-
* @public
|
|
12151
11961
|
* @type {Date}
|
|
11962
|
+
* @public
|
|
12152
11963
|
*/
|
|
12153
|
-
|
|
11964
|
+
updateTimestamp: Date;
|
|
12154
11965
|
/**
|
|
12155
11966
|
* The Site ID associated with this Packrun
|
|
12156
11967
|
*
|
|
12157
|
-
* @public
|
|
12158
11968
|
* @type {number}
|
|
12159
|
-
*/
|
|
12160
|
-
get siteId(): number;
|
|
12161
|
-
/**
|
|
12162
|
-
* Convert this **PackrunModel** to a JSON Object
|
|
12163
|
-
*
|
|
12164
11969
|
* @public
|
|
12165
|
-
* @return {Object<string, any>}
|
|
12166
11970
|
*/
|
|
12167
|
-
|
|
12168
|
-
[x: string]: any;
|
|
12169
|
-
};
|
|
11971
|
+
siteId: number;
|
|
12170
11972
|
}
|
|
12171
|
-
import
|
|
11973
|
+
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
12172
11974
|
}
|
|
12173
11975
|
|
|
12174
11976
|
declare module '@ricado/api-client/Models/Packhouse/Site/RejectBinModel' {
|
|
@@ -12178,9 +11980,9 @@ declare module '@ricado/api-client/Models/Packhouse/Site/RejectBinModel' {
|
|
|
12178
11980
|
*
|
|
12179
11981
|
* @class
|
|
12180
11982
|
* @hideconstructor
|
|
12181
|
-
* @extends
|
|
11983
|
+
* @extends BaseModel
|
|
12182
11984
|
*/
|
|
12183
|
-
class RejectBinModel extends
|
|
11985
|
+
class RejectBinModel extends BaseModel {
|
|
12184
11986
|
/**
|
|
12185
11987
|
* Create a new **RejectBinModel** from a JSON Object or JSON String
|
|
12186
11988
|
*
|
|
@@ -12203,84 +12005,75 @@ declare module '@ricado/api-client/Models/Packhouse/Site/RejectBinModel' {
|
|
|
12203
12005
|
/**
|
|
12204
12006
|
* The Reject Bin ID
|
|
12205
12007
|
*
|
|
12206
|
-
* @public
|
|
12207
12008
|
* @type {string}
|
|
12009
|
+
* @public
|
|
12208
12010
|
*/
|
|
12209
|
-
|
|
12011
|
+
id: string;
|
|
12210
12012
|
/**
|
|
12211
12013
|
* The Reject Bin Scale ID this Reject Bin is associated with
|
|
12212
12014
|
*
|
|
12213
|
-
* @public
|
|
12214
12015
|
* @type {string}
|
|
12016
|
+
* @public
|
|
12215
12017
|
*/
|
|
12216
|
-
|
|
12018
|
+
rejectBinScaleId: string;
|
|
12217
12019
|
/**
|
|
12218
12020
|
* When this Reject Bin was Created
|
|
12219
12021
|
*
|
|
12220
|
-
* @public
|
|
12221
12022
|
* @type {Date}
|
|
12023
|
+
* @public
|
|
12222
12024
|
*/
|
|
12223
|
-
|
|
12025
|
+
createdTimestamp: Date;
|
|
12224
12026
|
/**
|
|
12225
12027
|
* The Name of the Reject Bin Scale where this Bin was Created
|
|
12226
12028
|
*
|
|
12227
|
-
* @public
|
|
12228
12029
|
* @type {string}
|
|
12030
|
+
* @public
|
|
12229
12031
|
*/
|
|
12230
|
-
|
|
12032
|
+
rejectBinScaleName: string;
|
|
12231
12033
|
/**
|
|
12232
12034
|
* The Tare Weight Captured by the Reject Bin Scale
|
|
12233
12035
|
*
|
|
12234
|
-
* @public
|
|
12235
12036
|
* @type {?number}
|
|
12037
|
+
* @public
|
|
12236
12038
|
*/
|
|
12237
|
-
|
|
12039
|
+
tareWeight: number | null;
|
|
12238
12040
|
/**
|
|
12239
12041
|
* When this Reject Bin was Finalized (No new Weights)
|
|
12240
12042
|
*
|
|
12241
|
-
* @public
|
|
12242
12043
|
* @type {?Date}
|
|
12044
|
+
* @public
|
|
12243
12045
|
*/
|
|
12244
|
-
|
|
12046
|
+
finalizedTimestamp: Date | null;
|
|
12245
12047
|
/**
|
|
12246
12048
|
* The Multi-Grower Bins that will be submitted to FreshPack
|
|
12247
12049
|
*
|
|
12248
|
-
* @public
|
|
12249
12050
|
* @type {Object[]}
|
|
12051
|
+
* @public
|
|
12250
12052
|
*/
|
|
12251
|
-
|
|
12053
|
+
freshPackMultiGrowerBins: any[];
|
|
12252
12054
|
/**
|
|
12253
12055
|
* Whether the Reject Bin has been deleted
|
|
12254
12056
|
*
|
|
12255
|
-
* @public
|
|
12256
12057
|
* @type {boolean}
|
|
12058
|
+
* @public
|
|
12257
12059
|
*/
|
|
12258
|
-
|
|
12060
|
+
deleted: boolean;
|
|
12259
12061
|
/**
|
|
12260
12062
|
* When the Reject Bin was last updated
|
|
12261
12063
|
*
|
|
12262
|
-
* @public
|
|
12263
12064
|
* @type {Date}
|
|
12065
|
+
* @public
|
|
12264
12066
|
*/
|
|
12265
|
-
|
|
12067
|
+
updateTimestamp: Date;
|
|
12266
12068
|
/**
|
|
12267
12069
|
* The Site ID associated with this Reject Bin
|
|
12268
12070
|
*
|
|
12269
|
-
* @public
|
|
12270
12071
|
* @type {number}
|
|
12271
|
-
*/
|
|
12272
|
-
get siteId(): number;
|
|
12273
|
-
/**
|
|
12274
|
-
* Convert this **RejectBinModel** to a JSON Object
|
|
12275
|
-
*
|
|
12276
12072
|
* @public
|
|
12277
|
-
* @return {Object<string, any>}
|
|
12278
12073
|
*/
|
|
12279
|
-
|
|
12280
|
-
[x: string]: any;
|
|
12281
|
-
};
|
|
12074
|
+
siteId: number;
|
|
12282
12075
|
}
|
|
12283
|
-
import
|
|
12076
|
+
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
12284
12077
|
}
|
|
12285
12078
|
|
|
12286
12079
|
declare module '@ricado/api-client/Models/Packhouse/Site/RejectBinScaleModel' {
|
|
@@ -12290,9 +12083,9 @@ declare module '@ricado/api-client/Models/Packhouse/Site/RejectBinScaleModel' {
|
|
|
12290
12083
|
*
|
|
12291
12084
|
* @class
|
|
12292
12085
|
* @hideconstructor
|
|
12293
|
-
* @extends
|
|
12086
|
+
* @extends BaseModel
|
|
12294
12087
|
*/
|
|
12295
|
-
class RejectBinScaleModel extends
|
|
12088
|
+
class RejectBinScaleModel extends BaseModel {
|
|
12296
12089
|
/**
|
|
12297
12090
|
* Create a new **RejectBinScaleModel** from a JSON Object or JSON String
|
|
12298
12091
|
*
|
|
@@ -12315,105 +12108,96 @@ declare module '@ricado/api-client/Models/Packhouse/Site/RejectBinScaleModel' {
|
|
|
12315
12108
|
/**
|
|
12316
12109
|
* The Reject Bin Scale ID
|
|
12317
12110
|
*
|
|
12318
|
-
* @public
|
|
12319
12111
|
* @type {string}
|
|
12112
|
+
* @public
|
|
12320
12113
|
*/
|
|
12321
|
-
|
|
12114
|
+
id: string;
|
|
12322
12115
|
/**
|
|
12323
12116
|
* The RTU this Reject Bin Scale belongs to
|
|
12324
12117
|
*
|
|
12325
|
-
* @public
|
|
12326
12118
|
* @type {?number}
|
|
12119
|
+
* @public
|
|
12327
12120
|
*/
|
|
12328
|
-
|
|
12121
|
+
rtuId: number | null;
|
|
12329
12122
|
/**
|
|
12330
12123
|
* The Name of this Reject Bin Scale
|
|
12331
12124
|
*
|
|
12332
|
-
* @public
|
|
12333
12125
|
* @type {string}
|
|
12126
|
+
* @public
|
|
12334
12127
|
*/
|
|
12335
|
-
|
|
12128
|
+
name: string;
|
|
12336
12129
|
/**
|
|
12337
12130
|
* The Points used by this Reject Bin Scale
|
|
12338
12131
|
*
|
|
12339
|
-
* @public
|
|
12340
12132
|
* @type {Object}
|
|
12133
|
+
* @public
|
|
12341
12134
|
*/
|
|
12342
|
-
|
|
12135
|
+
points: any;
|
|
12343
12136
|
/**
|
|
12344
12137
|
* The Packing Line that owns this Reject Bin Scale
|
|
12345
12138
|
*
|
|
12346
|
-
* @public
|
|
12347
12139
|
* @type {string}
|
|
12140
|
+
* @public
|
|
12348
12141
|
*/
|
|
12349
|
-
|
|
12142
|
+
packingLineId: string;
|
|
12350
12143
|
/**
|
|
12351
12144
|
* The Permanent Object that provides the Next Packrun for this Reject Bin Scale
|
|
12352
12145
|
*
|
|
12353
|
-
* @public
|
|
12354
12146
|
* @type {?string}
|
|
12147
|
+
* @public
|
|
12355
12148
|
*/
|
|
12356
|
-
|
|
12149
|
+
packrunSourceId: string | null;
|
|
12357
12150
|
/**
|
|
12358
12151
|
* The Packrun Group this Reject Bin Scale is a part of
|
|
12359
12152
|
*
|
|
12360
|
-
* @public
|
|
12361
12153
|
* @type {?number}
|
|
12154
|
+
* @public
|
|
12362
12155
|
*/
|
|
12363
|
-
|
|
12156
|
+
packrunGroup: number | null;
|
|
12364
12157
|
/**
|
|
12365
12158
|
* An Array of Sources that deliver Fruit to this Reject Bin Scale
|
|
12366
12159
|
*
|
|
12367
|
-
* @public
|
|
12368
12160
|
* @type {Object[]}
|
|
12161
|
+
* @public
|
|
12369
12162
|
*/
|
|
12370
|
-
|
|
12163
|
+
sources: any[];
|
|
12371
12164
|
/**
|
|
12372
12165
|
* The Auto Packrun Change Configuration for this Reject Bin Scale
|
|
12373
12166
|
*
|
|
12374
|
-
* @public
|
|
12375
12167
|
* @type {?number}
|
|
12168
|
+
* @public
|
|
12376
12169
|
*/
|
|
12377
|
-
|
|
12170
|
+
autoPackrunChange: number | null;
|
|
12378
12171
|
/**
|
|
12379
12172
|
* The FreshPack Integration Configuration for this Reject Bin Scale
|
|
12380
12173
|
*
|
|
12381
|
-
* @public
|
|
12382
12174
|
* @type {?Object}
|
|
12175
|
+
* @public
|
|
12383
12176
|
*/
|
|
12384
|
-
|
|
12177
|
+
freshPackIntegration: any | null;
|
|
12385
12178
|
/**
|
|
12386
12179
|
* Whether the Reject Bin Scale has been deleted
|
|
12387
12180
|
*
|
|
12388
|
-
* @public
|
|
12389
12181
|
* @type {boolean}
|
|
12182
|
+
* @public
|
|
12390
12183
|
*/
|
|
12391
|
-
|
|
12184
|
+
deleted: boolean;
|
|
12392
12185
|
/**
|
|
12393
12186
|
* When the Reject Bin Scale was last updated
|
|
12394
12187
|
*
|
|
12395
|
-
* @public
|
|
12396
12188
|
* @type {Date}
|
|
12189
|
+
* @public
|
|
12397
12190
|
*/
|
|
12398
|
-
|
|
12191
|
+
updateTimestamp: Date;
|
|
12399
12192
|
/**
|
|
12400
12193
|
* The Site ID associated with this Reject Bin Scale
|
|
12401
12194
|
*
|
|
12402
|
-
* @public
|
|
12403
12195
|
* @type {number}
|
|
12404
|
-
*/
|
|
12405
|
-
get siteId(): number;
|
|
12406
|
-
/**
|
|
12407
|
-
* Convert this **RejectBinScaleModel** to a JSON Object
|
|
12408
|
-
*
|
|
12409
12196
|
* @public
|
|
12410
|
-
* @return {Object<string, any>}
|
|
12411
12197
|
*/
|
|
12412
|
-
|
|
12413
|
-
[x: string]: any;
|
|
12414
|
-
};
|
|
12198
|
+
siteId: number;
|
|
12415
12199
|
}
|
|
12416
|
-
import
|
|
12200
|
+
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
12417
12201
|
}
|
|
12418
12202
|
|
|
12419
12203
|
declare module '@ricado/api-client/Models/Packhouse/Site/RejectBinWeightModel' {
|
|
@@ -12423,9 +12207,9 @@ declare module '@ricado/api-client/Models/Packhouse/Site/RejectBinWeightModel' {
|
|
|
12423
12207
|
*
|
|
12424
12208
|
* @class
|
|
12425
12209
|
* @hideconstructor
|
|
12426
|
-
* @extends
|
|
12210
|
+
* @extends BaseModel
|
|
12427
12211
|
*/
|
|
12428
|
-
class RejectBinWeightModel extends
|
|
12212
|
+
class RejectBinWeightModel extends BaseModel {
|
|
12429
12213
|
/**
|
|
12430
12214
|
* Create a new **RejectBinWeightModel** from a JSON Object or JSON String
|
|
12431
12215
|
*
|
|
@@ -12448,91 +12232,82 @@ declare module '@ricado/api-client/Models/Packhouse/Site/RejectBinWeightModel' {
|
|
|
12448
12232
|
/**
|
|
12449
12233
|
* The Reject Bin Weight ID
|
|
12450
12234
|
*
|
|
12451
|
-
* @public
|
|
12452
12235
|
* @type {string}
|
|
12236
|
+
* @public
|
|
12453
12237
|
*/
|
|
12454
|
-
|
|
12238
|
+
id: string;
|
|
12455
12239
|
/**
|
|
12456
12240
|
* The Reject Bin Scale ID this Reject Weight is associated with
|
|
12457
12241
|
*
|
|
12458
|
-
* @public
|
|
12459
12242
|
* @type {string}
|
|
12243
|
+
* @public
|
|
12460
12244
|
*/
|
|
12461
|
-
|
|
12245
|
+
rejectBinScaleId: string;
|
|
12462
12246
|
/**
|
|
12463
12247
|
* The Reject Bin ID this Reject Weight is associated with
|
|
12464
12248
|
*
|
|
12465
|
-
* @public
|
|
12466
12249
|
* @type {string}
|
|
12250
|
+
* @public
|
|
12467
12251
|
*/
|
|
12468
|
-
|
|
12252
|
+
rejectBinId: string;
|
|
12469
12253
|
/**
|
|
12470
12254
|
* When this Reject Bin Weight was Created
|
|
12471
12255
|
*
|
|
12472
|
-
* @public
|
|
12473
12256
|
* @type {Date}
|
|
12257
|
+
* @public
|
|
12474
12258
|
*/
|
|
12475
|
-
|
|
12259
|
+
createdTimestamp: Date;
|
|
12476
12260
|
/**
|
|
12477
12261
|
* The Packrun this Reject Weight is associated with
|
|
12478
12262
|
*
|
|
12479
|
-
* @public
|
|
12480
12263
|
* @type {?string}
|
|
12264
|
+
* @public
|
|
12481
12265
|
*/
|
|
12482
|
-
|
|
12266
|
+
packrunId: string | null;
|
|
12483
12267
|
/**
|
|
12484
12268
|
* The Net Weight Captured by the Reject Bin Scale
|
|
12485
12269
|
*
|
|
12486
|
-
* @public
|
|
12487
12270
|
* @type {number}
|
|
12271
|
+
* @public
|
|
12488
12272
|
*/
|
|
12489
|
-
|
|
12273
|
+
netWeight: number;
|
|
12490
12274
|
/**
|
|
12491
12275
|
* The Source Weights that make up the Net Weight
|
|
12492
12276
|
*
|
|
12493
|
-
* @public
|
|
12494
12277
|
* @type {Object[]}
|
|
12278
|
+
* @public
|
|
12495
12279
|
*/
|
|
12496
|
-
|
|
12280
|
+
sources: any[];
|
|
12497
12281
|
/**
|
|
12498
12282
|
* The Multi-Grower Bin Weights that will be submitted to FreshPack
|
|
12499
12283
|
*
|
|
12500
|
-
* @public
|
|
12501
12284
|
* @type {Object[]}
|
|
12285
|
+
* @public
|
|
12502
12286
|
*/
|
|
12503
|
-
|
|
12287
|
+
freshPackMultiGrowerBinWeights: any[];
|
|
12504
12288
|
/**
|
|
12505
12289
|
* Whether the Reject Bin Weight has been deleted
|
|
12506
12290
|
*
|
|
12507
|
-
* @public
|
|
12508
12291
|
* @type {boolean}
|
|
12292
|
+
* @public
|
|
12509
12293
|
*/
|
|
12510
|
-
|
|
12294
|
+
deleted: boolean;
|
|
12511
12295
|
/**
|
|
12512
12296
|
* When the Reject Bin Weight was last updated
|
|
12513
12297
|
*
|
|
12514
|
-
* @public
|
|
12515
12298
|
* @type {Date}
|
|
12299
|
+
* @public
|
|
12516
12300
|
*/
|
|
12517
|
-
|
|
12301
|
+
updateTimestamp: Date;
|
|
12518
12302
|
/**
|
|
12519
12303
|
* The Site ID associated with this Reject Bin Weight
|
|
12520
12304
|
*
|
|
12521
|
-
* @public
|
|
12522
12305
|
* @type {number}
|
|
12523
|
-
*/
|
|
12524
|
-
get siteId(): number;
|
|
12525
|
-
/**
|
|
12526
|
-
* Convert this **RejectBinWeightModel** to a JSON Object
|
|
12527
|
-
*
|
|
12528
12306
|
* @public
|
|
12529
|
-
* @return {Object<string, any>}
|
|
12530
12307
|
*/
|
|
12531
|
-
|
|
12532
|
-
[x: string]: any;
|
|
12533
|
-
};
|
|
12308
|
+
siteId: number;
|
|
12534
12309
|
}
|
|
12535
|
-
import
|
|
12310
|
+
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
12536
12311
|
}
|
|
12537
12312
|
|
|
12538
12313
|
declare module '@ricado/api-client/Models/Packhouse/Site/ShiftFocusMeetingModel' {
|
|
@@ -12542,9 +12317,9 @@ declare module '@ricado/api-client/Models/Packhouse/Site/ShiftFocusMeetingModel'
|
|
|
12542
12317
|
*
|
|
12543
12318
|
* @class
|
|
12544
12319
|
* @hideconstructor
|
|
12545
|
-
* @extends
|
|
12320
|
+
* @extends BaseModel
|
|
12546
12321
|
*/
|
|
12547
|
-
class ShiftFocusMeetingModel extends
|
|
12322
|
+
class ShiftFocusMeetingModel extends BaseModel {
|
|
12548
12323
|
/**
|
|
12549
12324
|
* Create a new **ShiftFocusMeetingModel** from a JSON Object or JSON String
|
|
12550
12325
|
*
|
|
@@ -12567,105 +12342,96 @@ declare module '@ricado/api-client/Models/Packhouse/Site/ShiftFocusMeetingModel'
|
|
|
12567
12342
|
/**
|
|
12568
12343
|
* The Shift Focus Meeting ID
|
|
12569
12344
|
*
|
|
12570
|
-
* @public
|
|
12571
12345
|
* @type {string}
|
|
12346
|
+
* @public
|
|
12572
12347
|
*/
|
|
12573
|
-
|
|
12348
|
+
id: string;
|
|
12574
12349
|
/**
|
|
12575
12350
|
* The Packing Line ID this Focus Meeting is associated with
|
|
12576
12351
|
*
|
|
12577
|
-
* @public
|
|
12578
12352
|
* @type {string}
|
|
12353
|
+
* @public
|
|
12579
12354
|
*/
|
|
12580
|
-
|
|
12355
|
+
packingLineId: string;
|
|
12581
12356
|
/**
|
|
12582
12357
|
* The Shift ID this Focus Meeting is asssociated with
|
|
12583
12358
|
*
|
|
12584
|
-
* @public
|
|
12585
12359
|
* @type {string}
|
|
12360
|
+
* @public
|
|
12586
12361
|
*/
|
|
12587
|
-
|
|
12362
|
+
shiftId: string;
|
|
12588
12363
|
/**
|
|
12589
12364
|
* When this Focus Meeting was Created
|
|
12590
12365
|
*
|
|
12591
|
-
* @public
|
|
12592
12366
|
* @type {Date}
|
|
12367
|
+
* @public
|
|
12593
12368
|
*/
|
|
12594
|
-
|
|
12369
|
+
createdTimestamp: Date;
|
|
12595
12370
|
/**
|
|
12596
12371
|
* When this Focus Meeting is Scheduled to Begin
|
|
12597
12372
|
*
|
|
12598
|
-
* @public
|
|
12599
12373
|
* @type {Date}
|
|
12374
|
+
* @public
|
|
12600
12375
|
*/
|
|
12601
|
-
|
|
12376
|
+
scheduledTimestamp: Date;
|
|
12602
12377
|
/**
|
|
12603
12378
|
* When this Focus Meeting was Started
|
|
12604
12379
|
*
|
|
12605
|
-
* @public
|
|
12606
12380
|
* @type {?Date}
|
|
12381
|
+
* @public
|
|
12607
12382
|
*/
|
|
12608
|
-
|
|
12383
|
+
startTimestamp: Date | null;
|
|
12609
12384
|
/**
|
|
12610
12385
|
* When this Focus Meeting was Completed
|
|
12611
12386
|
*
|
|
12612
|
-
* @public
|
|
12613
12387
|
* @type {?Date}
|
|
12388
|
+
* @public
|
|
12614
12389
|
*/
|
|
12615
|
-
|
|
12390
|
+
finishTimestamp: Date | null;
|
|
12616
12391
|
/**
|
|
12617
12392
|
* An Optional Key Focus until the Next Meeting
|
|
12618
12393
|
*
|
|
12619
|
-
* @public
|
|
12620
12394
|
* @type {?string}
|
|
12395
|
+
* @public
|
|
12621
12396
|
*/
|
|
12622
|
-
|
|
12397
|
+
nextKeyFocus: string | null;
|
|
12623
12398
|
/**
|
|
12624
12399
|
* An Optional Rating between 1 and 10 on how Successful the Focus Meeting was
|
|
12625
12400
|
*
|
|
12626
|
-
* @public
|
|
12627
12401
|
* @type {?number}
|
|
12402
|
+
* @public
|
|
12628
12403
|
*/
|
|
12629
|
-
|
|
12404
|
+
successRating: number | null;
|
|
12630
12405
|
/**
|
|
12631
12406
|
* The Status of this Focus Meeting
|
|
12632
12407
|
*
|
|
12633
|
-
* @public
|
|
12634
12408
|
* @type {string}
|
|
12409
|
+
* @public
|
|
12635
12410
|
*/
|
|
12636
|
-
|
|
12411
|
+
status: string;
|
|
12637
12412
|
/**
|
|
12638
12413
|
* Whether the Shift Focus Meeting has been deleted
|
|
12639
12414
|
*
|
|
12640
|
-
* @public
|
|
12641
12415
|
* @type {boolean}
|
|
12416
|
+
* @public
|
|
12642
12417
|
*/
|
|
12643
|
-
|
|
12418
|
+
deleted: boolean;
|
|
12644
12419
|
/**
|
|
12645
12420
|
* When the Shift Focus Meeting was last updated
|
|
12646
12421
|
*
|
|
12647
|
-
* @public
|
|
12648
12422
|
* @type {Date}
|
|
12423
|
+
* @public
|
|
12649
12424
|
*/
|
|
12650
|
-
|
|
12425
|
+
updateTimestamp: Date;
|
|
12651
12426
|
/**
|
|
12652
12427
|
* The Site ID associated with this Shift Focus Meeting
|
|
12653
12428
|
*
|
|
12654
|
-
* @public
|
|
12655
12429
|
* @type {number}
|
|
12656
|
-
*/
|
|
12657
|
-
get siteId(): number;
|
|
12658
|
-
/**
|
|
12659
|
-
* Convert this **ShiftFocusMeetingModel** to a JSON Object
|
|
12660
|
-
*
|
|
12661
12430
|
* @public
|
|
12662
|
-
* @return {Object<string, any>}
|
|
12663
12431
|
*/
|
|
12664
|
-
|
|
12665
|
-
[x: string]: any;
|
|
12666
|
-
};
|
|
12432
|
+
siteId: number;
|
|
12667
12433
|
}
|
|
12668
|
-
import
|
|
12434
|
+
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
12669
12435
|
}
|
|
12670
12436
|
|
|
12671
12437
|
declare module '@ricado/api-client/Models/Packhouse/Site/ShiftHourlyEntryModel' {
|
|
@@ -12675,9 +12441,9 @@ declare module '@ricado/api-client/Models/Packhouse/Site/ShiftHourlyEntryModel'
|
|
|
12675
12441
|
*
|
|
12676
12442
|
* @class
|
|
12677
12443
|
* @hideconstructor
|
|
12678
|
-
* @extends
|
|
12444
|
+
* @extends BaseModel
|
|
12679
12445
|
*/
|
|
12680
|
-
class ShiftHourlyEntryModel extends
|
|
12446
|
+
class ShiftHourlyEntryModel extends BaseModel {
|
|
12681
12447
|
/**
|
|
12682
12448
|
* Create a new **ShiftHourlyEntryModel** from a JSON Object or JSON String
|
|
12683
12449
|
*
|
|
@@ -12700,94 +12466,94 @@ declare module '@ricado/api-client/Models/Packhouse/Site/ShiftHourlyEntryModel'
|
|
|
12700
12466
|
/**
|
|
12701
12467
|
* The Shift Hourly Entry ID
|
|
12702
12468
|
*
|
|
12703
|
-
* @public
|
|
12704
12469
|
* @type {string}
|
|
12470
|
+
* @public
|
|
12705
12471
|
*/
|
|
12706
|
-
|
|
12472
|
+
id: string;
|
|
12707
12473
|
/**
|
|
12708
12474
|
* The Packing Line ID this Hourly Entry is associated with
|
|
12709
12475
|
*
|
|
12710
|
-
* @public
|
|
12711
12476
|
* @type {string}
|
|
12477
|
+
* @public
|
|
12712
12478
|
*/
|
|
12713
|
-
|
|
12479
|
+
packingLineId: string;
|
|
12714
12480
|
/**
|
|
12715
12481
|
* The Shift ID this Hourly Entry is asssociated with
|
|
12716
12482
|
*
|
|
12717
|
-
* @public
|
|
12718
12483
|
* @type {string}
|
|
12484
|
+
* @public
|
|
12719
12485
|
*/
|
|
12720
|
-
|
|
12486
|
+
shiftId: string;
|
|
12721
12487
|
/**
|
|
12722
12488
|
* When this Hourly Entry was Created
|
|
12723
12489
|
*
|
|
12724
|
-
* @public
|
|
12725
12490
|
* @type {Date}
|
|
12491
|
+
* @public
|
|
12726
12492
|
*/
|
|
12727
|
-
|
|
12493
|
+
createdTimestamp: Date;
|
|
12728
12494
|
/**
|
|
12729
12495
|
* The Start Timestamp of this Hourly Entry
|
|
12730
12496
|
*
|
|
12731
|
-
* @public
|
|
12732
12497
|
* @type {Date}
|
|
12498
|
+
* @public
|
|
12733
12499
|
*/
|
|
12734
|
-
|
|
12500
|
+
startTimestamp: Date;
|
|
12735
12501
|
/**
|
|
12736
12502
|
* The End Timestamp of this Hourly Entry
|
|
12737
12503
|
*
|
|
12738
|
-
* @public
|
|
12739
12504
|
* @type {Date}
|
|
12505
|
+
* @public
|
|
12740
12506
|
*/
|
|
12741
|
-
|
|
12507
|
+
endTimestamp: Date;
|
|
12742
12508
|
/**
|
|
12743
12509
|
* The Number of People working in all Areas except Class 2 for this Hour
|
|
12744
12510
|
*
|
|
12745
|
-
* @public
|
|
12746
12511
|
* @type {?number}
|
|
12512
|
+
* @public
|
|
12747
12513
|
*/
|
|
12748
|
-
|
|
12514
|
+
class1Manning: number | null;
|
|
12749
12515
|
/**
|
|
12750
12516
|
* The Number of People working in the Class 2 Area for this Hour
|
|
12751
12517
|
*
|
|
12752
|
-
* @public
|
|
12753
12518
|
* @type {?number}
|
|
12519
|
+
* @public
|
|
12754
12520
|
*/
|
|
12755
|
-
|
|
12521
|
+
class2Manning: number | null;
|
|
12756
12522
|
/**
|
|
12757
12523
|
* The Average Target Number of People that should be working for this Hour
|
|
12758
12524
|
*
|
|
12759
|
-
* @public
|
|
12760
12525
|
* @type {?number}
|
|
12526
|
+
* @public
|
|
12761
12527
|
*/
|
|
12762
|
-
|
|
12528
|
+
averageManningTarget: number | null;
|
|
12763
12529
|
/**
|
|
12764
12530
|
* The Percentage of Total Tray Equivalents that are Layered for this Hour
|
|
12765
12531
|
*
|
|
12766
|
-
* @public
|
|
12767
12532
|
* @type {?number}
|
|
12533
|
+
* @public
|
|
12768
12534
|
*/
|
|
12769
|
-
|
|
12535
|
+
layeredTrayPercentage: number | null;
|
|
12770
12536
|
/**
|
|
12771
12537
|
* The Average Class 1 Percentage for this Hour
|
|
12772
12538
|
*
|
|
12773
|
-
* @public
|
|
12774
12539
|
* @type {?number}
|
|
12540
|
+
* @public
|
|
12775
12541
|
*/
|
|
12776
|
-
|
|
12542
|
+
averageClass1Percentage: number | null;
|
|
12777
12543
|
/**
|
|
12778
12544
|
* The Number of Quality R600 Samples that were Ideal for this Hour
|
|
12779
12545
|
*
|
|
12780
|
-
* @public
|
|
12781
12546
|
* @type {?number}
|
|
12547
|
+
* @public
|
|
12782
12548
|
*/
|
|
12783
|
-
|
|
12549
|
+
qualityR600IdealSamplesPercentage: number | null;
|
|
12784
12550
|
/**
|
|
12785
12551
|
* An Array of Custom Quality Data Items for this Hour
|
|
12786
12552
|
*
|
|
12787
|
-
* @public
|
|
12788
12553
|
* @type {Array<{id: string, name: string, type: string, value: number}>}
|
|
12554
|
+
* @public
|
|
12789
12555
|
*/
|
|
12790
|
-
|
|
12556
|
+
customQualityData: {
|
|
12791
12557
|
id: string;
|
|
12792
12558
|
name: string;
|
|
12793
12559
|
type: string;
|
|
@@ -12796,189 +12562,180 @@ declare module '@ricado/api-client/Models/Packhouse/Site/ShiftHourlyEntryModel'
|
|
|
12796
12562
|
/**
|
|
12797
12563
|
* The Total Number of Bins Tipped for this Hour
|
|
12798
12564
|
*
|
|
12799
|
-
* @public
|
|
12800
12565
|
* @type {number}
|
|
12566
|
+
* @public
|
|
12801
12567
|
*/
|
|
12802
|
-
|
|
12568
|
+
totalBinsTipped: number;
|
|
12803
12569
|
/**
|
|
12804
12570
|
* The Target Number of Bins to Tip for this Hour
|
|
12805
12571
|
*
|
|
12806
|
-
* @public
|
|
12807
12572
|
* @type {number}
|
|
12573
|
+
* @public
|
|
12808
12574
|
*/
|
|
12809
|
-
|
|
12575
|
+
binsTippedTarget: number;
|
|
12810
12576
|
/**
|
|
12811
12577
|
* The Total Downtime for this Hour expressed in Seconds
|
|
12812
12578
|
*
|
|
12813
|
-
* @public
|
|
12814
12579
|
* @type {number}
|
|
12580
|
+
* @public
|
|
12815
12581
|
*/
|
|
12816
|
-
|
|
12582
|
+
totalDowntime: number;
|
|
12817
12583
|
/**
|
|
12818
12584
|
* The Total Time that could be Utilized for Packing Fruit (excludes Planned Downtime such as Smoko Breaks) for this Hour expressed in Seconds
|
|
12819
12585
|
*
|
|
12820
|
-
* @public
|
|
12821
12586
|
* @type {number}
|
|
12587
|
+
* @public
|
|
12822
12588
|
*/
|
|
12823
|
-
|
|
12589
|
+
totalProductionTime: number;
|
|
12824
12590
|
/**
|
|
12825
12591
|
* The Total Number of Class 1 Tray Equivalents Packed for this Hour
|
|
12826
12592
|
*
|
|
12827
|
-
* @public
|
|
12828
12593
|
* @type {number}
|
|
12594
|
+
* @public
|
|
12829
12595
|
*/
|
|
12830
|
-
|
|
12596
|
+
totalClass1Trays: number;
|
|
12831
12597
|
/**
|
|
12832
12598
|
* The Total Number of Class 2 Tray Equivalents Packed for this Hour
|
|
12833
12599
|
*
|
|
12834
|
-
* @public
|
|
12835
12600
|
* @type {number}
|
|
12601
|
+
* @public
|
|
12836
12602
|
*/
|
|
12837
|
-
|
|
12603
|
+
totalClass2Trays: number;
|
|
12838
12604
|
/**
|
|
12839
12605
|
* The Target Number of Class 1 Tray Equivalents that should be Packed excluding all Downtime for this Hour
|
|
12840
12606
|
*
|
|
12841
|
-
* @public
|
|
12842
12607
|
* @type {number}
|
|
12608
|
+
* @public
|
|
12843
12609
|
*/
|
|
12844
|
-
|
|
12610
|
+
class1TraysPerHourExcludingDowntimeTarget: number;
|
|
12845
12611
|
/**
|
|
12846
12612
|
* The Primary Issue Category for this Hourly Entry
|
|
12847
12613
|
*
|
|
12848
|
-
* @public
|
|
12849
12614
|
* @type {?string}
|
|
12615
|
+
* @public
|
|
12850
12616
|
*/
|
|
12851
|
-
|
|
12617
|
+
primaryIssueCategory: string | null;
|
|
12852
12618
|
/**
|
|
12853
12619
|
* The Primary Issue Tag for this Hourly Entry
|
|
12854
12620
|
*
|
|
12855
|
-
* @public
|
|
12856
12621
|
* @type {?string}
|
|
12622
|
+
* @public
|
|
12857
12623
|
*/
|
|
12858
|
-
|
|
12624
|
+
primaryIssueTag: string | null;
|
|
12859
12625
|
/**
|
|
12860
12626
|
* The Secondary Issue Category for this Hourly Entry
|
|
12861
12627
|
*
|
|
12862
|
-
* @public
|
|
12863
12628
|
* @type {?string}
|
|
12629
|
+
* @public
|
|
12864
12630
|
*/
|
|
12865
|
-
|
|
12631
|
+
secondaryIssueCategory: string | null;
|
|
12866
12632
|
/**
|
|
12867
12633
|
* The Secondary Issue Tag for this Hourly Entry
|
|
12868
12634
|
*
|
|
12869
|
-
* @public
|
|
12870
12635
|
* @type {?string}
|
|
12636
|
+
* @public
|
|
12871
12637
|
*/
|
|
12872
|
-
|
|
12638
|
+
secondaryIssueTag: string | null;
|
|
12873
12639
|
/**
|
|
12874
12640
|
* An Optional Focus for the Next Hour
|
|
12875
12641
|
*
|
|
12876
|
-
* @public
|
|
12877
12642
|
* @type {?string}
|
|
12643
|
+
* @public
|
|
12878
12644
|
*/
|
|
12879
|
-
|
|
12645
|
+
nextHourFocus: string | null;
|
|
12880
12646
|
/**
|
|
12881
12647
|
* An Optional Rating between 1 and 10 on how Satisfied the Line Manager was with this Hour
|
|
12882
12648
|
*
|
|
12883
|
-
* @public
|
|
12884
12649
|
* @type {?number}
|
|
12650
|
+
* @public
|
|
12885
12651
|
*/
|
|
12886
|
-
|
|
12652
|
+
satisfactionRating: number | null;
|
|
12887
12653
|
/**
|
|
12888
12654
|
* The Status of this Hourly Entry
|
|
12889
12655
|
*
|
|
12890
|
-
* @public
|
|
12891
12656
|
* @type {string}
|
|
12657
|
+
* @public
|
|
12892
12658
|
*/
|
|
12893
|
-
|
|
12659
|
+
status: string;
|
|
12894
12660
|
/**
|
|
12895
12661
|
* The Number of Class 1 Tray Equivalents that would have been Packed this Hour without Planned Downtime (e.g. Smoko Breaks)
|
|
12896
12662
|
*
|
|
12897
|
-
* @public
|
|
12898
12663
|
* @type {number}
|
|
12664
|
+
* @public
|
|
12899
12665
|
*/
|
|
12900
|
-
|
|
12666
|
+
class1TraysPerHourPotential: number;
|
|
12901
12667
|
/**
|
|
12902
12668
|
* The Number of Class 1 Tray Equivalents that would have been Packed this Hour with Zero Downtime
|
|
12903
12669
|
*
|
|
12904
|
-
* @public
|
|
12905
12670
|
* @type {number}
|
|
12671
|
+
* @public
|
|
12906
12672
|
*/
|
|
12907
|
-
|
|
12673
|
+
class1TraysPerHourExcludingDowntime: number;
|
|
12908
12674
|
/**
|
|
12909
12675
|
* The Number of Class 1 Tray Equivalents that would have been Packed per Person this Hour without Planned Downtime (e.g. Smoko Breaks)
|
|
12910
12676
|
*
|
|
12911
|
-
* @public
|
|
12912
12677
|
* @type {?number}
|
|
12678
|
+
* @public
|
|
12913
12679
|
*/
|
|
12914
|
-
|
|
12680
|
+
class1TraysPerManHourPotential: number | null;
|
|
12915
12681
|
/**
|
|
12916
12682
|
* The Number of Class 1 Tray Equivalents that would have been Packed per Person this Hour with Zero Downtime
|
|
12917
12683
|
*
|
|
12918
|
-
* @public
|
|
12919
12684
|
* @type {?number}
|
|
12685
|
+
* @public
|
|
12920
12686
|
*/
|
|
12921
|
-
|
|
12687
|
+
class1TraysPerManHourExcludingDowntime: number | null;
|
|
12922
12688
|
/**
|
|
12923
12689
|
* The Manning Percentage based on the Average Target for this Hour
|
|
12924
12690
|
*
|
|
12925
|
-
* @public
|
|
12926
12691
|
* @type {?number}
|
|
12692
|
+
* @public
|
|
12927
12693
|
*/
|
|
12928
|
-
|
|
12694
|
+
manningPercentage: number | null;
|
|
12929
12695
|
/**
|
|
12930
12696
|
* The Total Number of People working for this Hour
|
|
12931
12697
|
*
|
|
12932
|
-
* @public
|
|
12933
12698
|
* @type {?number}
|
|
12699
|
+
* @public
|
|
12934
12700
|
*/
|
|
12935
|
-
|
|
12701
|
+
totalManning: number | null;
|
|
12936
12702
|
/**
|
|
12937
12703
|
* The Percentage of Production Time without Downtime for this Hour
|
|
12938
12704
|
*
|
|
12939
|
-
* @public
|
|
12940
12705
|
* @type {number}
|
|
12706
|
+
* @public
|
|
12941
12707
|
*/
|
|
12942
|
-
|
|
12708
|
+
uptimePercentage: number;
|
|
12943
12709
|
/**
|
|
12944
12710
|
* The Percentage of Downtime for this Hour
|
|
12945
12711
|
*
|
|
12946
|
-
* @public
|
|
12947
12712
|
* @type {number}
|
|
12713
|
+
* @public
|
|
12948
12714
|
*/
|
|
12949
|
-
|
|
12715
|
+
downtimePercentage: number;
|
|
12950
12716
|
/**
|
|
12951
12717
|
* Whether the Shift Hourly Entry has been deleted
|
|
12952
12718
|
*
|
|
12953
|
-
* @public
|
|
12954
12719
|
* @type {boolean}
|
|
12720
|
+
* @public
|
|
12955
12721
|
*/
|
|
12956
|
-
|
|
12722
|
+
deleted: boolean;
|
|
12957
12723
|
/**
|
|
12958
12724
|
* When the Shift Hourly Entry was last updated
|
|
12959
12725
|
*
|
|
12960
|
-
* @public
|
|
12961
12726
|
* @type {Date}
|
|
12727
|
+
* @public
|
|
12962
12728
|
*/
|
|
12963
|
-
|
|
12729
|
+
updateTimestamp: Date;
|
|
12964
12730
|
/**
|
|
12965
12731
|
* The Site ID associated with this Shift Hourly Entry
|
|
12966
12732
|
*
|
|
12967
|
-
* @public
|
|
12968
12733
|
* @type {number}
|
|
12969
|
-
*/
|
|
12970
|
-
get siteId(): number;
|
|
12971
|
-
/**
|
|
12972
|
-
* Convert this **ShiftHourlyEntryModel** to a JSON Object
|
|
12973
|
-
*
|
|
12974
12734
|
* @public
|
|
12975
|
-
* @return {Object<string, any>}
|
|
12976
12735
|
*/
|
|
12977
|
-
|
|
12978
|
-
[x: string]: any;
|
|
12979
|
-
};
|
|
12736
|
+
siteId: number;
|
|
12980
12737
|
}
|
|
12981
|
-
import
|
|
12738
|
+
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
12982
12739
|
}
|
|
12983
12740
|
|
|
12984
12741
|
declare module '@ricado/api-client/Models/Packhouse/Site/ShiftModel' {
|
|
@@ -12988,9 +12745,9 @@ declare module '@ricado/api-client/Models/Packhouse/Site/ShiftModel' {
|
|
|
12988
12745
|
*
|
|
12989
12746
|
* @class
|
|
12990
12747
|
* @hideconstructor
|
|
12991
|
-
* @extends
|
|
12748
|
+
* @extends BaseModel
|
|
12992
12749
|
*/
|
|
12993
|
-
class ShiftModel extends
|
|
12750
|
+
class ShiftModel extends BaseModel {
|
|
12994
12751
|
/**
|
|
12995
12752
|
* Create a new **ShiftModel** from a JSON Object or JSON String
|
|
12996
12753
|
*
|
|
@@ -13013,111 +12770,111 @@ declare module '@ricado/api-client/Models/Packhouse/Site/ShiftModel' {
|
|
|
13013
12770
|
/**
|
|
13014
12771
|
* The Shift ID
|
|
13015
12772
|
*
|
|
13016
|
-
* @public
|
|
13017
12773
|
* @type {string}
|
|
12774
|
+
* @public
|
|
13018
12775
|
*/
|
|
13019
|
-
|
|
12776
|
+
id: string;
|
|
13020
12777
|
/**
|
|
13021
12778
|
* The Packing Line ID this Shift is associated with
|
|
13022
12779
|
*
|
|
13023
|
-
* @public
|
|
13024
12780
|
* @type {string}
|
|
12781
|
+
* @public
|
|
13025
12782
|
*/
|
|
13026
|
-
|
|
12783
|
+
packingLineId: string;
|
|
13027
12784
|
/**
|
|
13028
12785
|
* When this Shift was Created
|
|
13029
12786
|
*
|
|
13030
|
-
* @public
|
|
13031
12787
|
* @type {Date}
|
|
12788
|
+
* @public
|
|
13032
12789
|
*/
|
|
13033
|
-
|
|
12790
|
+
createdTimestamp: Date;
|
|
13034
12791
|
/**
|
|
13035
12792
|
* The Type of Shift
|
|
13036
12793
|
*
|
|
13037
|
-
* @public
|
|
13038
12794
|
* @type {string}
|
|
12795
|
+
* @public
|
|
13039
12796
|
*/
|
|
13040
|
-
|
|
12797
|
+
type: string;
|
|
13041
12798
|
/**
|
|
13042
12799
|
* The Name of the Line Manager for this Shift
|
|
13043
12800
|
*
|
|
13044
|
-
* @public
|
|
13045
12801
|
* @type {?string}
|
|
12802
|
+
* @public
|
|
13046
12803
|
*/
|
|
13047
|
-
|
|
12804
|
+
lineManagerName: string | null;
|
|
13048
12805
|
/**
|
|
13049
12806
|
* The Target Number of Bins to Tip for this Shift
|
|
13050
12807
|
*
|
|
13051
|
-
* @public
|
|
13052
12808
|
* @type {?number}
|
|
12809
|
+
* @public
|
|
13053
12810
|
*/
|
|
13054
|
-
|
|
12811
|
+
binsTippedTarget: number | null;
|
|
13055
12812
|
/**
|
|
13056
12813
|
* *DEPRECATED* The Initial Number of People working in all Areas except Class 2 for this Hour
|
|
13057
12814
|
*
|
|
13058
|
-
* @public
|
|
13059
12815
|
* @type {?number}
|
|
12816
|
+
* @public
|
|
13060
12817
|
*/
|
|
13061
|
-
|
|
12818
|
+
initialClass1Manning: number | null;
|
|
13062
12819
|
/**
|
|
13063
12820
|
* *DEPRECATED* The Initial Number of People working in the Class 2 Area for this Hour
|
|
13064
12821
|
*
|
|
13065
|
-
* @public
|
|
13066
12822
|
* @type {?number}
|
|
12823
|
+
* @public
|
|
13067
12824
|
*/
|
|
13068
|
-
|
|
12825
|
+
initialClass2Manning: number | null;
|
|
13069
12826
|
/**
|
|
13070
12827
|
* When this Shift was Ready for Packing
|
|
13071
12828
|
*
|
|
13072
|
-
* @public
|
|
13073
12829
|
* @type {?Date}
|
|
12830
|
+
* @public
|
|
13074
12831
|
*/
|
|
13075
|
-
|
|
12832
|
+
readyTimestamp: Date | null;
|
|
13076
12833
|
/**
|
|
13077
12834
|
* When this Shift was Started
|
|
13078
12835
|
*
|
|
13079
|
-
* @public
|
|
13080
12836
|
* @type {?Date}
|
|
12837
|
+
* @public
|
|
13081
12838
|
*/
|
|
13082
|
-
|
|
12839
|
+
startTimestamp: Date | null;
|
|
13083
12840
|
/**
|
|
13084
12841
|
* When this Shift was Finished
|
|
13085
12842
|
*
|
|
13086
|
-
* @public
|
|
13087
12843
|
* @type {?Date}
|
|
12844
|
+
* @public
|
|
13088
12845
|
*/
|
|
13089
|
-
|
|
12846
|
+
finishTimestamp: Date | null;
|
|
13090
12847
|
/**
|
|
13091
12848
|
* When this Shift was Published
|
|
13092
12849
|
*
|
|
13093
|
-
* @public
|
|
13094
12850
|
* @type {?Date}
|
|
12851
|
+
* @public
|
|
13095
12852
|
*/
|
|
13096
|
-
|
|
12853
|
+
publishTimestamp: Date | null;
|
|
13097
12854
|
/**
|
|
13098
12855
|
* An Optional Rating between 1 and 10 on how Satisfied the Line Manager was with this Shift
|
|
13099
12856
|
*
|
|
13100
|
-
* @public
|
|
13101
12857
|
* @type {?number}
|
|
12858
|
+
* @public
|
|
13102
12859
|
*/
|
|
13103
|
-
|
|
12860
|
+
satisfactionRating: number | null;
|
|
13104
12861
|
/**
|
|
13105
12862
|
* *DEPRECATED* An Optional Array of Handover Notes for this Shift
|
|
13106
12863
|
*
|
|
13107
|
-
* @public
|
|
13108
12864
|
* @type {Array<{area: string, noteContent: string}>}
|
|
12865
|
+
* @public
|
|
13109
12866
|
*/
|
|
13110
|
-
|
|
12867
|
+
handoverNotes: {
|
|
13111
12868
|
area: string;
|
|
13112
12869
|
noteContent: string;
|
|
13113
12870
|
}[];
|
|
13114
12871
|
/**
|
|
13115
12872
|
* An Optional Array of Notes for this Shift
|
|
13116
12873
|
*
|
|
13117
|
-
* @public
|
|
13118
12874
|
* @type {Array<{area: string, timestamp: Date, content: string}>}
|
|
12875
|
+
* @public
|
|
13119
12876
|
*/
|
|
13120
|
-
|
|
12877
|
+
areaNotes: {
|
|
13121
12878
|
area: string;
|
|
13122
12879
|
timestamp: Date;
|
|
13123
12880
|
content: string;
|
|
@@ -13125,56 +12882,47 @@ declare module '@ricado/api-client/Models/Packhouse/Site/ShiftModel' {
|
|
|
13125
12882
|
/**
|
|
13126
12883
|
* The Schedule for this Shift
|
|
13127
12884
|
*
|
|
13128
|
-
* @public
|
|
13129
12885
|
* @type {{startTime: string, endTime: string, breaks: Array<{startTime: string, endTime: string}>}}
|
|
12886
|
+
* @public
|
|
13130
12887
|
*/
|
|
13131
|
-
|
|
12888
|
+
schedule: {
|
|
13132
12889
|
startTime: string;
|
|
13133
12890
|
endTime: string;
|
|
13134
|
-
breaks:
|
|
12891
|
+
breaks: {
|
|
13135
12892
|
startTime: string;
|
|
13136
12893
|
endTime: string;
|
|
13137
|
-
}
|
|
12894
|
+
}[];
|
|
13138
12895
|
};
|
|
13139
12896
|
/**
|
|
13140
12897
|
* The Status of this Shift
|
|
13141
12898
|
*
|
|
13142
|
-
* @public
|
|
13143
12899
|
* @type {string}
|
|
12900
|
+
* @public
|
|
13144
12901
|
*/
|
|
13145
|
-
|
|
12902
|
+
status: string;
|
|
13146
12903
|
/**
|
|
13147
12904
|
* Whether the Shift has been deleted
|
|
13148
12905
|
*
|
|
13149
|
-
* @public
|
|
13150
12906
|
* @type {boolean}
|
|
12907
|
+
* @public
|
|
13151
12908
|
*/
|
|
13152
|
-
|
|
12909
|
+
deleted: boolean;
|
|
13153
12910
|
/**
|
|
13154
12911
|
* When the Shift was last updated
|
|
13155
12912
|
*
|
|
13156
|
-
* @public
|
|
13157
12913
|
* @type {Date}
|
|
12914
|
+
* @public
|
|
13158
12915
|
*/
|
|
13159
|
-
|
|
12916
|
+
updateTimestamp: Date;
|
|
13160
12917
|
/**
|
|
13161
12918
|
* The Site ID associated with this Shift
|
|
13162
12919
|
*
|
|
13163
|
-
* @public
|
|
13164
12920
|
* @type {number}
|
|
13165
|
-
*/
|
|
13166
|
-
get siteId(): number;
|
|
13167
|
-
/**
|
|
13168
|
-
* Convert this **ShiftModel** to a JSON Object
|
|
13169
|
-
*
|
|
13170
12921
|
* @public
|
|
13171
|
-
* @return {Object<string, any>}
|
|
13172
12922
|
*/
|
|
13173
|
-
|
|
13174
|
-
[x: string]: any;
|
|
13175
|
-
};
|
|
12923
|
+
siteId: number;
|
|
13176
12924
|
}
|
|
13177
|
-
import
|
|
12925
|
+
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
13178
12926
|
}
|
|
13179
12927
|
|
|
13180
12928
|
declare module '@ricado/api-client/Models/Packhouse/Site/VarietyModel' {
|
|
@@ -13184,9 +12932,9 @@ declare module '@ricado/api-client/Models/Packhouse/Site/VarietyModel' {
|
|
|
13184
12932
|
*
|
|
13185
12933
|
* @class
|
|
13186
12934
|
* @hideconstructor
|
|
13187
|
-
* @extends
|
|
12935
|
+
* @extends BaseModel
|
|
13188
12936
|
*/
|
|
13189
|
-
class VarietyModel extends
|
|
12937
|
+
class VarietyModel extends BaseModel {
|
|
13190
12938
|
/**
|
|
13191
12939
|
* Create a new **VarietyModel** from a JSON Object or JSON String
|
|
13192
12940
|
*
|
|
@@ -13209,78 +12957,69 @@ declare module '@ricado/api-client/Models/Packhouse/Site/VarietyModel' {
|
|
|
13209
12957
|
/**
|
|
13210
12958
|
* The Variety ID
|
|
13211
12959
|
*
|
|
13212
|
-
* @public
|
|
13213
12960
|
* @type {string}
|
|
12961
|
+
* @public
|
|
13214
12962
|
*/
|
|
13215
|
-
|
|
12963
|
+
id: string;
|
|
13216
12964
|
/**
|
|
13217
12965
|
* The Variety Code
|
|
13218
12966
|
*
|
|
13219
|
-
* @public
|
|
13220
12967
|
* @type {string}
|
|
12968
|
+
* @public
|
|
13221
12969
|
*/
|
|
13222
|
-
|
|
12970
|
+
code: string;
|
|
13223
12971
|
/**
|
|
13224
12972
|
* The Variety Name
|
|
13225
12973
|
*
|
|
13226
|
-
* @public
|
|
13227
12974
|
* @type {string}
|
|
12975
|
+
* @public
|
|
13228
12976
|
*/
|
|
13229
|
-
|
|
12977
|
+
name: string;
|
|
13230
12978
|
/**
|
|
13231
12979
|
* The Variety Description
|
|
13232
12980
|
*
|
|
13233
|
-
* @public
|
|
13234
12981
|
* @type {string}
|
|
12982
|
+
* @public
|
|
13235
12983
|
*/
|
|
13236
|
-
|
|
12984
|
+
description: string;
|
|
13237
12985
|
/**
|
|
13238
12986
|
* The Variety Image Source
|
|
13239
12987
|
*
|
|
13240
|
-
* @public
|
|
13241
12988
|
* @type {string}
|
|
12989
|
+
* @public
|
|
13242
12990
|
*/
|
|
13243
|
-
|
|
12991
|
+
image: string;
|
|
13244
12992
|
/**
|
|
13245
12993
|
* An Array of Fruit Sizes Defined for this Variety
|
|
13246
12994
|
*
|
|
13247
|
-
* @public
|
|
13248
12995
|
* @type {Array<{size: string}>}
|
|
12996
|
+
* @public
|
|
13249
12997
|
*/
|
|
13250
|
-
|
|
12998
|
+
fruitSizes: {
|
|
13251
12999
|
size: string;
|
|
13252
13000
|
}[];
|
|
13253
13001
|
/**
|
|
13254
13002
|
* Whether the Variety has been deleted
|
|
13255
13003
|
*
|
|
13256
|
-
* @public
|
|
13257
13004
|
* @type {boolean}
|
|
13005
|
+
* @public
|
|
13258
13006
|
*/
|
|
13259
|
-
|
|
13007
|
+
deleted: boolean;
|
|
13260
13008
|
/**
|
|
13261
13009
|
* When the Variety was last updated
|
|
13262
13010
|
*
|
|
13263
|
-
* @public
|
|
13264
13011
|
* @type {Date}
|
|
13012
|
+
* @public
|
|
13265
13013
|
*/
|
|
13266
|
-
|
|
13014
|
+
updateTimestamp: Date;
|
|
13267
13015
|
/**
|
|
13268
13016
|
* The Site ID associated with this Variety
|
|
13269
13017
|
*
|
|
13270
|
-
* @public
|
|
13271
13018
|
* @type {number}
|
|
13272
|
-
*/
|
|
13273
|
-
get siteId(): number;
|
|
13274
|
-
/**
|
|
13275
|
-
* Convert this **VarietyModel** to a JSON Object
|
|
13276
|
-
*
|
|
13277
13019
|
* @public
|
|
13278
|
-
* @return {Object<string, any>}
|
|
13279
13020
|
*/
|
|
13280
|
-
|
|
13281
|
-
[x: string]: any;
|
|
13282
|
-
};
|
|
13021
|
+
siteId: number;
|
|
13283
13022
|
}
|
|
13284
|
-
import
|
|
13023
|
+
import BaseModel from "@ricado/api-client/Models/BaseModel";
|
|
13285
13024
|
}
|
|
13286
13025
|
|