@ricado/api-client 2.3.0 → 2.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ricado.api.client.js +1 -1
- package/lib/Controllers/Packhouse/Site/BinTipBinController.js +267 -0
- package/lib/Controllers/Packhouse/Site/BinTipWeightController.js +267 -0
- package/lib/Controllers/Packhouse/Site/CompacSizerBatchController.js +267 -0
- package/lib/Controllers/Packhouse/Site/CompacSizerOutletProductChangeController.js +267 -0
- package/lib/Controllers/Packhouse/Site/CompacSizerOutletTypeChangeController.js +267 -0
- package/lib/Controllers/Packhouse/Site/CompacSizerPackrunSummaryController.js +267 -0
- package/lib/Controllers/Packhouse/Site/DowntimeEventController.js +267 -0
- package/lib/Controllers/Packhouse/Site/FreshPackPackrunSummaryController.js +267 -0
- package/lib/Controllers/Packhouse/Site/FreshQualityPackrunSummaryController.js +267 -0
- package/lib/Controllers/Packhouse/Site/PackingLineController.js +4 -0
- package/lib/Controllers/Packhouse/Site/PackrunController.js +269 -0
- package/lib/Controllers/Packhouse/Site/RejectBinController.js +267 -0
- package/lib/Controllers/Packhouse/Site/RejectBinWeightController.js +267 -0
- package/lib/Controllers/Packhouse/Site/ShiftController.js +271 -0
- package/lib/Controllers/Packhouse/Site/ShiftFocusMeetingController.js +267 -0
- package/lib/Controllers/Packhouse/Site/ShiftHourlyEntryController.js +267 -0
- package/lib/Controllers/Packhouse/Site/ShiftQualitySummaryController.js +267 -0
- package/lib/Controllers/Packhouse/Site/ShiftTaskController.js +268 -0
- package/lib/Controllers/Site/PermanentObjectDataController.js +267 -0
- package/lib/Models/Packhouse/Site/PackingLineModel.js +44 -0
- package/lib/Models/Packhouse/Site/ShiftModel.js +44 -0
- package/lib/PackageVersion.js +1 -1
- package/lib/index.d.ts +396 -0
- package/package.json +1 -1
- package/src/Controllers/Packhouse/Site/BinTipBinController.js +355 -0
- package/src/Controllers/Packhouse/Site/BinTipWeightController.js +355 -0
- package/src/Controllers/Packhouse/Site/CompacSizerBatchController.js +355 -0
- package/src/Controllers/Packhouse/Site/CompacSizerOutletProductChangeController.js +355 -0
- package/src/Controllers/Packhouse/Site/CompacSizerOutletTypeChangeController.js +355 -0
- package/src/Controllers/Packhouse/Site/CompacSizerPackrunSummaryController.js +355 -0
- package/src/Controllers/Packhouse/Site/DowntimeEventController.js +355 -0
- package/src/Controllers/Packhouse/Site/FreshPackPackrunSummaryController.js +355 -0
- package/src/Controllers/Packhouse/Site/FreshQualityPackrunSummaryController.js +355 -0
- package/src/Controllers/Packhouse/Site/PackingLineController.js +4 -0
- package/src/Controllers/Packhouse/Site/PackrunController.js +357 -0
- package/src/Controllers/Packhouse/Site/RejectBinController.js +355 -0
- package/src/Controllers/Packhouse/Site/RejectBinWeightController.js +355 -0
- package/src/Controllers/Packhouse/Site/ShiftController.js +359 -0
- package/src/Controllers/Packhouse/Site/ShiftFocusMeetingController.js +355 -0
- package/src/Controllers/Packhouse/Site/ShiftHourlyEntryController.js +355 -0
- package/src/Controllers/Packhouse/Site/ShiftQualitySummaryController.js +355 -0
- package/src/Controllers/Packhouse/Site/ShiftTaskController.js +356 -0
- package/src/Controllers/Site/PermanentObjectDataController.js +355 -0
- package/src/Models/Packhouse/Site/PackingLineModel.js +50 -0
- package/src/Models/Packhouse/Site/ShiftModel.js +50 -0
- package/src/PackageVersion.js +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -4173,6 +4173,23 @@ declare module '@ricado/api-client/Controllers/Site/PermanentObjectDataControlle
|
|
|
4173
4173
|
*/
|
|
4174
4174
|
data?: any;
|
|
4175
4175
|
};
|
|
4176
|
+
/**
|
|
4177
|
+
* A **UserAccount** Type
|
|
4178
|
+
*/
|
|
4179
|
+
export type UserAccount = {
|
|
4180
|
+
/**
|
|
4181
|
+
* The User Account ID
|
|
4182
|
+
*/
|
|
4183
|
+
id: string | null;
|
|
4184
|
+
/**
|
|
4185
|
+
* The User's First Name
|
|
4186
|
+
*/
|
|
4187
|
+
firstName: string | null;
|
|
4188
|
+
/**
|
|
4189
|
+
* The User's Last Name
|
|
4190
|
+
*/
|
|
4191
|
+
lastName: string | null;
|
|
4192
|
+
};
|
|
4176
4193
|
/**
|
|
4177
4194
|
* A **CommentItem** Type
|
|
4178
4195
|
*/
|
|
@@ -4181,6 +4198,7 @@ declare module '@ricado/api-client/Controllers/Site/PermanentObjectDataControlle
|
|
|
4181
4198
|
* The Comment ID
|
|
4182
4199
|
*/
|
|
4183
4200
|
id: string;
|
|
4201
|
+
userAccount: UserAccount;
|
|
4184
4202
|
/**
|
|
4185
4203
|
* The Content of the Comment
|
|
4186
4204
|
*/
|
|
@@ -5598,6 +5616,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/BinTipBinControlle
|
|
|
5598
5616
|
*/
|
|
5599
5617
|
freshPackFieldBinWeightApi?: any;
|
|
5600
5618
|
};
|
|
5619
|
+
/**
|
|
5620
|
+
* A **UserAccount** Type
|
|
5621
|
+
*/
|
|
5622
|
+
export type UserAccount = {
|
|
5623
|
+
/**
|
|
5624
|
+
* The User Account ID
|
|
5625
|
+
*/
|
|
5626
|
+
id: string | null;
|
|
5627
|
+
/**
|
|
5628
|
+
* The User's First Name
|
|
5629
|
+
*/
|
|
5630
|
+
firstName: string | null;
|
|
5631
|
+
/**
|
|
5632
|
+
* The User's Last Name
|
|
5633
|
+
*/
|
|
5634
|
+
lastName: string | null;
|
|
5635
|
+
};
|
|
5601
5636
|
/**
|
|
5602
5637
|
* A **CommentItem** Type
|
|
5603
5638
|
*/
|
|
@@ -5606,6 +5641,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/BinTipBinControlle
|
|
|
5606
5641
|
* The Comment ID
|
|
5607
5642
|
*/
|
|
5608
5643
|
id: string;
|
|
5644
|
+
userAccount: UserAccount;
|
|
5609
5645
|
/**
|
|
5610
5646
|
* The Content of the Comment
|
|
5611
5647
|
*/
|
|
@@ -5832,6 +5868,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/BinTipWeightContro
|
|
|
5832
5868
|
*/
|
|
5833
5869
|
binScaleId?: string | null;
|
|
5834
5870
|
};
|
|
5871
|
+
/**
|
|
5872
|
+
* A **UserAccount** Type
|
|
5873
|
+
*/
|
|
5874
|
+
export type UserAccount = {
|
|
5875
|
+
/**
|
|
5876
|
+
* The User Account ID
|
|
5877
|
+
*/
|
|
5878
|
+
id: string | null;
|
|
5879
|
+
/**
|
|
5880
|
+
* The User's First Name
|
|
5881
|
+
*/
|
|
5882
|
+
firstName: string | null;
|
|
5883
|
+
/**
|
|
5884
|
+
* The User's Last Name
|
|
5885
|
+
*/
|
|
5886
|
+
lastName: string | null;
|
|
5887
|
+
};
|
|
5835
5888
|
/**
|
|
5836
5889
|
* A **CommentItem** Type
|
|
5837
5890
|
*/
|
|
@@ -5840,6 +5893,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/BinTipWeightContro
|
|
|
5840
5893
|
* The Comment ID
|
|
5841
5894
|
*/
|
|
5842
5895
|
id: string;
|
|
5896
|
+
userAccount: UserAccount;
|
|
5843
5897
|
/**
|
|
5844
5898
|
* The Content of the Comment
|
|
5845
5899
|
*/
|
|
@@ -6058,6 +6112,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerBatchCo
|
|
|
6058
6112
|
*/
|
|
6059
6113
|
batch?: any;
|
|
6060
6114
|
};
|
|
6115
|
+
/**
|
|
6116
|
+
* A **UserAccount** Type
|
|
6117
|
+
*/
|
|
6118
|
+
export type UserAccount = {
|
|
6119
|
+
/**
|
|
6120
|
+
* The User Account ID
|
|
6121
|
+
*/
|
|
6122
|
+
id: string | null;
|
|
6123
|
+
/**
|
|
6124
|
+
* The User's First Name
|
|
6125
|
+
*/
|
|
6126
|
+
firstName: string | null;
|
|
6127
|
+
/**
|
|
6128
|
+
* The User's Last Name
|
|
6129
|
+
*/
|
|
6130
|
+
lastName: string | null;
|
|
6131
|
+
};
|
|
6061
6132
|
/**
|
|
6062
6133
|
* A **CommentItem** Type
|
|
6063
6134
|
*/
|
|
@@ -6066,6 +6137,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerBatchCo
|
|
|
6066
6137
|
* The Comment ID
|
|
6067
6138
|
*/
|
|
6068
6139
|
id: string;
|
|
6140
|
+
userAccount: UserAccount;
|
|
6069
6141
|
/**
|
|
6070
6142
|
* The Content of the Comment
|
|
6071
6143
|
*/
|
|
@@ -6488,6 +6560,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerOutletP
|
|
|
6488
6560
|
*/
|
|
6489
6561
|
newProductName?: string;
|
|
6490
6562
|
};
|
|
6563
|
+
/**
|
|
6564
|
+
* A **UserAccount** Type
|
|
6565
|
+
*/
|
|
6566
|
+
export type UserAccount = {
|
|
6567
|
+
/**
|
|
6568
|
+
* The User Account ID
|
|
6569
|
+
*/
|
|
6570
|
+
id: string | null;
|
|
6571
|
+
/**
|
|
6572
|
+
* The User's First Name
|
|
6573
|
+
*/
|
|
6574
|
+
firstName: string | null;
|
|
6575
|
+
/**
|
|
6576
|
+
* The User's Last Name
|
|
6577
|
+
*/
|
|
6578
|
+
lastName: string | null;
|
|
6579
|
+
};
|
|
6491
6580
|
/**
|
|
6492
6581
|
* A **CommentItem** Type
|
|
6493
6582
|
*/
|
|
@@ -6496,6 +6585,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerOutletP
|
|
|
6496
6585
|
* The Comment ID
|
|
6497
6586
|
*/
|
|
6498
6587
|
id: string;
|
|
6588
|
+
userAccount: UserAccount;
|
|
6499
6589
|
/**
|
|
6500
6590
|
* The Content of the Comment
|
|
6501
6591
|
*/
|
|
@@ -6714,6 +6804,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerOutletT
|
|
|
6714
6804
|
*/
|
|
6715
6805
|
newTypeId?: string;
|
|
6716
6806
|
};
|
|
6807
|
+
/**
|
|
6808
|
+
* A **UserAccount** Type
|
|
6809
|
+
*/
|
|
6810
|
+
export type UserAccount = {
|
|
6811
|
+
/**
|
|
6812
|
+
* The User Account ID
|
|
6813
|
+
*/
|
|
6814
|
+
id: string | null;
|
|
6815
|
+
/**
|
|
6816
|
+
* The User's First Name
|
|
6817
|
+
*/
|
|
6818
|
+
firstName: string | null;
|
|
6819
|
+
/**
|
|
6820
|
+
* The User's Last Name
|
|
6821
|
+
*/
|
|
6822
|
+
lastName: string | null;
|
|
6823
|
+
};
|
|
6717
6824
|
/**
|
|
6718
6825
|
* A **CommentItem** Type
|
|
6719
6826
|
*/
|
|
@@ -6722,6 +6829,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerOutletT
|
|
|
6722
6829
|
* The Comment ID
|
|
6723
6830
|
*/
|
|
6724
6831
|
id: string;
|
|
6832
|
+
userAccount: UserAccount;
|
|
6725
6833
|
/**
|
|
6726
6834
|
* The Content of the Comment
|
|
6727
6835
|
*/
|
|
@@ -7076,6 +7184,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerPackrun
|
|
|
7076
7184
|
*/
|
|
7077
7185
|
outletTypeChanges?: OutletTypeChange[];
|
|
7078
7186
|
};
|
|
7187
|
+
/**
|
|
7188
|
+
* A **UserAccount** Type
|
|
7189
|
+
*/
|
|
7190
|
+
export type UserAccount = {
|
|
7191
|
+
/**
|
|
7192
|
+
* The User Account ID
|
|
7193
|
+
*/
|
|
7194
|
+
id: string | null;
|
|
7195
|
+
/**
|
|
7196
|
+
* The User's First Name
|
|
7197
|
+
*/
|
|
7198
|
+
firstName: string | null;
|
|
7199
|
+
/**
|
|
7200
|
+
* The User's Last Name
|
|
7201
|
+
*/
|
|
7202
|
+
lastName: string | null;
|
|
7203
|
+
};
|
|
7079
7204
|
/**
|
|
7080
7205
|
* A **CommentItem** Type
|
|
7081
7206
|
*/
|
|
@@ -7084,6 +7209,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/CompacSizerPackrun
|
|
|
7084
7209
|
* The Comment ID
|
|
7085
7210
|
*/
|
|
7086
7211
|
id: string;
|
|
7212
|
+
userAccount: UserAccount;
|
|
7087
7213
|
/**
|
|
7088
7214
|
* The Content of the Comment
|
|
7089
7215
|
*/
|
|
@@ -7508,6 +7634,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/DowntimeEventContr
|
|
|
7508
7634
|
*/
|
|
7509
7635
|
status?: string;
|
|
7510
7636
|
};
|
|
7637
|
+
/**
|
|
7638
|
+
* A **UserAccount** Type
|
|
7639
|
+
*/
|
|
7640
|
+
export type UserAccount = {
|
|
7641
|
+
/**
|
|
7642
|
+
* The User Account ID
|
|
7643
|
+
*/
|
|
7644
|
+
id: string | null;
|
|
7645
|
+
/**
|
|
7646
|
+
* The User's First Name
|
|
7647
|
+
*/
|
|
7648
|
+
firstName: string | null;
|
|
7649
|
+
/**
|
|
7650
|
+
* The User's Last Name
|
|
7651
|
+
*/
|
|
7652
|
+
lastName: string | null;
|
|
7653
|
+
};
|
|
7511
7654
|
/**
|
|
7512
7655
|
* A **CommentItem** Type
|
|
7513
7656
|
*/
|
|
@@ -7516,6 +7659,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/DowntimeEventContr
|
|
|
7516
7659
|
* The Comment ID
|
|
7517
7660
|
*/
|
|
7518
7661
|
id: string;
|
|
7662
|
+
userAccount: UserAccount;
|
|
7519
7663
|
/**
|
|
7520
7664
|
* The Content of the Comment
|
|
7521
7665
|
*/
|
|
@@ -7730,6 +7874,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/FreshPackPackrunSu
|
|
|
7730
7874
|
*/
|
|
7731
7875
|
traySummaries?: any[];
|
|
7732
7876
|
};
|
|
7877
|
+
/**
|
|
7878
|
+
* A **UserAccount** Type
|
|
7879
|
+
*/
|
|
7880
|
+
export type UserAccount = {
|
|
7881
|
+
/**
|
|
7882
|
+
* The User Account ID
|
|
7883
|
+
*/
|
|
7884
|
+
id: string | null;
|
|
7885
|
+
/**
|
|
7886
|
+
* The User's First Name
|
|
7887
|
+
*/
|
|
7888
|
+
firstName: string | null;
|
|
7889
|
+
/**
|
|
7890
|
+
* The User's Last Name
|
|
7891
|
+
*/
|
|
7892
|
+
lastName: string | null;
|
|
7893
|
+
};
|
|
7733
7894
|
/**
|
|
7734
7895
|
* A **CommentItem** Type
|
|
7735
7896
|
*/
|
|
@@ -7738,6 +7899,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/FreshPackPackrunSu
|
|
|
7738
7899
|
* The Comment ID
|
|
7739
7900
|
*/
|
|
7740
7901
|
id: string;
|
|
7902
|
+
userAccount: UserAccount;
|
|
7741
7903
|
/**
|
|
7742
7904
|
* The Content of the Comment
|
|
7743
7905
|
*/
|
|
@@ -7968,6 +8130,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/FreshQualityPackru
|
|
|
7968
8130
|
*/
|
|
7969
8131
|
totalFruitSampled?: number;
|
|
7970
8132
|
};
|
|
8133
|
+
/**
|
|
8134
|
+
* A **UserAccount** Type
|
|
8135
|
+
*/
|
|
8136
|
+
export type UserAccount = {
|
|
8137
|
+
/**
|
|
8138
|
+
* The User Account ID
|
|
8139
|
+
*/
|
|
8140
|
+
id: string | null;
|
|
8141
|
+
/**
|
|
8142
|
+
* The User's First Name
|
|
8143
|
+
*/
|
|
8144
|
+
firstName: string | null;
|
|
8145
|
+
/**
|
|
8146
|
+
* The User's Last Name
|
|
8147
|
+
*/
|
|
8148
|
+
lastName: string | null;
|
|
8149
|
+
};
|
|
7971
8150
|
/**
|
|
7972
8151
|
* A **CommentItem** Type
|
|
7973
8152
|
*/
|
|
@@ -7976,6 +8155,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/FreshQualityPackru
|
|
|
7976
8155
|
* The Comment ID
|
|
7977
8156
|
*/
|
|
7978
8157
|
id: string;
|
|
8158
|
+
userAccount: UserAccount;
|
|
7979
8159
|
/**
|
|
7980
8160
|
* The Content of the Comment
|
|
7981
8161
|
*/
|
|
@@ -8436,6 +8616,14 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackingLineControl
|
|
|
8436
8616
|
* The Optional Shift Management Object for this Packing Line
|
|
8437
8617
|
*/
|
|
8438
8618
|
shiftManagement?: ShiftManagement | null;
|
|
8619
|
+
/**
|
|
8620
|
+
* The Advanced Packrun Management Configuration for this Packing Line
|
|
8621
|
+
*/
|
|
8622
|
+
advancedPackrunManagement?: any;
|
|
8623
|
+
/**
|
|
8624
|
+
* The MAF Integration Configuration for this Packing Line
|
|
8625
|
+
*/
|
|
8626
|
+
mafIntegration?: any;
|
|
8439
8627
|
/**
|
|
8440
8628
|
* The FreshPack Integration Configuration for this Packing Line
|
|
8441
8629
|
*/
|
|
@@ -8489,6 +8677,14 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackingLineControl
|
|
|
8489
8677
|
* The Optional Shift Management Object for this Packing Line
|
|
8490
8678
|
*/
|
|
8491
8679
|
shiftManagement?: ShiftManagement | null;
|
|
8680
|
+
/**
|
|
8681
|
+
* The Advanced Packrun Management Configuration for this Packing Line
|
|
8682
|
+
*/
|
|
8683
|
+
advancedPackrunManagement?: any;
|
|
8684
|
+
/**
|
|
8685
|
+
* The MAF Integration Configuration for this Packing Line
|
|
8686
|
+
*/
|
|
8687
|
+
mafIntegration?: any;
|
|
8492
8688
|
/**
|
|
8493
8689
|
* The FreshPack Integration Configuration for this Packing Line
|
|
8494
8690
|
*/
|
|
@@ -8773,6 +8969,14 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackrunController'
|
|
|
8773
8969
|
* The Maturity Area for this Packrun
|
|
8774
8970
|
*/
|
|
8775
8971
|
maturityArea?: string;
|
|
8972
|
+
/**
|
|
8973
|
+
* When this Packrun was Started
|
|
8974
|
+
*/
|
|
8975
|
+
startTimestamp?: Date | null;
|
|
8976
|
+
/**
|
|
8977
|
+
* When this Packrun was Finished
|
|
8978
|
+
*/
|
|
8979
|
+
finishTimestamp?: Date | null;
|
|
8776
8980
|
/**
|
|
8777
8981
|
* The Variety for this Packrun
|
|
8778
8982
|
*/
|
|
@@ -8940,6 +9144,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackrunController'
|
|
|
8940
9144
|
*/
|
|
8941
9145
|
freshPackProduceCode?: string | null;
|
|
8942
9146
|
};
|
|
9147
|
+
/**
|
|
9148
|
+
* A **UserAccount** Type
|
|
9149
|
+
*/
|
|
9150
|
+
export type UserAccount = {
|
|
9151
|
+
/**
|
|
9152
|
+
* The User Account ID
|
|
9153
|
+
*/
|
|
9154
|
+
id: string | null;
|
|
9155
|
+
/**
|
|
9156
|
+
* The User's First Name
|
|
9157
|
+
*/
|
|
9158
|
+
firstName: string | null;
|
|
9159
|
+
/**
|
|
9160
|
+
* The User's Last Name
|
|
9161
|
+
*/
|
|
9162
|
+
lastName: string | null;
|
|
9163
|
+
};
|
|
8943
9164
|
/**
|
|
8944
9165
|
* A **CommentItem** Type
|
|
8945
9166
|
*/
|
|
@@ -8948,6 +9169,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackrunController'
|
|
|
8948
9169
|
* The Comment ID
|
|
8949
9170
|
*/
|
|
8950
9171
|
id: string;
|
|
9172
|
+
userAccount: UserAccount;
|
|
8951
9173
|
/**
|
|
8952
9174
|
* The Content of the Comment
|
|
8953
9175
|
*/
|
|
@@ -9519,6 +9741,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinControlle
|
|
|
9519
9741
|
*/
|
|
9520
9742
|
freshPackMultiGrowerBins?: any[];
|
|
9521
9743
|
};
|
|
9744
|
+
/**
|
|
9745
|
+
* A **UserAccount** Type
|
|
9746
|
+
*/
|
|
9747
|
+
export type UserAccount = {
|
|
9748
|
+
/**
|
|
9749
|
+
* The User Account ID
|
|
9750
|
+
*/
|
|
9751
|
+
id: string | null;
|
|
9752
|
+
/**
|
|
9753
|
+
* The User's First Name
|
|
9754
|
+
*/
|
|
9755
|
+
firstName: string | null;
|
|
9756
|
+
/**
|
|
9757
|
+
* The User's Last Name
|
|
9758
|
+
*/
|
|
9759
|
+
lastName: string | null;
|
|
9760
|
+
};
|
|
9522
9761
|
/**
|
|
9523
9762
|
* A **CommentItem** Type
|
|
9524
9763
|
*/
|
|
@@ -9527,6 +9766,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinControlle
|
|
|
9527
9766
|
* The Comment ID
|
|
9528
9767
|
*/
|
|
9529
9768
|
id: string;
|
|
9769
|
+
userAccount: UserAccount;
|
|
9530
9770
|
/**
|
|
9531
9771
|
* The Content of the Comment
|
|
9532
9772
|
*/
|
|
@@ -10017,6 +10257,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinWeightCon
|
|
|
10017
10257
|
*/
|
|
10018
10258
|
freshPackMultiGrowerBinWeights?: any[];
|
|
10019
10259
|
};
|
|
10260
|
+
/**
|
|
10261
|
+
* A **UserAccount** Type
|
|
10262
|
+
*/
|
|
10263
|
+
export type UserAccount = {
|
|
10264
|
+
/**
|
|
10265
|
+
* The User Account ID
|
|
10266
|
+
*/
|
|
10267
|
+
id: string | null;
|
|
10268
|
+
/**
|
|
10269
|
+
* The User's First Name
|
|
10270
|
+
*/
|
|
10271
|
+
firstName: string | null;
|
|
10272
|
+
/**
|
|
10273
|
+
* The User's Last Name
|
|
10274
|
+
*/
|
|
10275
|
+
lastName: string | null;
|
|
10276
|
+
};
|
|
10020
10277
|
/**
|
|
10021
10278
|
* A **CommentItem** Type
|
|
10022
10279
|
*/
|
|
@@ -10025,6 +10282,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinWeightCon
|
|
|
10025
10282
|
* The Comment ID
|
|
10026
10283
|
*/
|
|
10027
10284
|
id: string;
|
|
10285
|
+
userAccount: UserAccount;
|
|
10028
10286
|
/**
|
|
10029
10287
|
* The Content of the Comment
|
|
10030
10288
|
*/
|
|
@@ -10269,6 +10527,14 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftController' {
|
|
|
10269
10527
|
* An Optional Rating between 1 and 10 on how Satisfied the Line Manager was with this Shift
|
|
10270
10528
|
*/
|
|
10271
10529
|
satisfactionRating?: number | null;
|
|
10530
|
+
/**
|
|
10531
|
+
* An Optional Key Celebration the Line Manager and Team experienced during this Shift
|
|
10532
|
+
*/
|
|
10533
|
+
keyCelebration?: number | null;
|
|
10534
|
+
/**
|
|
10535
|
+
* An Optional Key Challenge the Line Manager and Team experienced during this Shift
|
|
10536
|
+
*/
|
|
10537
|
+
keyChallenge?: string | null;
|
|
10272
10538
|
/**
|
|
10273
10539
|
* DEPRECATED* An Optional Array of Handover Notes for this Shift
|
|
10274
10540
|
*/
|
|
@@ -10334,6 +10600,14 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftController' {
|
|
|
10334
10600
|
* An Optional Rating between 1 and 10 on how Satisfied the Line Manager was with this Shift
|
|
10335
10601
|
*/
|
|
10336
10602
|
satisfactionRating?: number | null;
|
|
10603
|
+
/**
|
|
10604
|
+
* An Optional Key Celebration the Line Manager and Team experienced during this Shift
|
|
10605
|
+
*/
|
|
10606
|
+
keyCelebration?: number | null;
|
|
10607
|
+
/**
|
|
10608
|
+
* An Optional Key Challenge the Line Manager and Team experienced during this Shift
|
|
10609
|
+
*/
|
|
10610
|
+
keyChallenge?: string | null;
|
|
10337
10611
|
/**
|
|
10338
10612
|
* DEPRECATED* An Optional Array of Handover Notes for this Shift
|
|
10339
10613
|
*/
|
|
@@ -10347,6 +10621,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftController' {
|
|
|
10347
10621
|
*/
|
|
10348
10622
|
schedule?: ShiftSchedule;
|
|
10349
10623
|
};
|
|
10624
|
+
/**
|
|
10625
|
+
* A **UserAccount** Type
|
|
10626
|
+
*/
|
|
10627
|
+
export type UserAccount = {
|
|
10628
|
+
/**
|
|
10629
|
+
* The User Account ID
|
|
10630
|
+
*/
|
|
10631
|
+
id: string | null;
|
|
10632
|
+
/**
|
|
10633
|
+
* The User's First Name
|
|
10634
|
+
*/
|
|
10635
|
+
firstName: string | null;
|
|
10636
|
+
/**
|
|
10637
|
+
* The User's Last Name
|
|
10638
|
+
*/
|
|
10639
|
+
lastName: string | null;
|
|
10640
|
+
};
|
|
10350
10641
|
/**
|
|
10351
10642
|
* A **CommentItem** Type
|
|
10352
10643
|
*/
|
|
@@ -10355,6 +10646,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftController' {
|
|
|
10355
10646
|
* The Comment ID
|
|
10356
10647
|
*/
|
|
10357
10648
|
id: string;
|
|
10649
|
+
userAccount: UserAccount;
|
|
10358
10650
|
/**
|
|
10359
10651
|
* The Content of the Comment
|
|
10360
10652
|
*/
|
|
@@ -10681,6 +10973,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftFocusMeetingC
|
|
|
10681
10973
|
*/
|
|
10682
10974
|
successRating?: number | null;
|
|
10683
10975
|
};
|
|
10976
|
+
/**
|
|
10977
|
+
* A **UserAccount** Type
|
|
10978
|
+
*/
|
|
10979
|
+
export type UserAccount = {
|
|
10980
|
+
/**
|
|
10981
|
+
* The User Account ID
|
|
10982
|
+
*/
|
|
10983
|
+
id: string | null;
|
|
10984
|
+
/**
|
|
10985
|
+
* The User's First Name
|
|
10986
|
+
*/
|
|
10987
|
+
firstName: string | null;
|
|
10988
|
+
/**
|
|
10989
|
+
* The User's Last Name
|
|
10990
|
+
*/
|
|
10991
|
+
lastName: string | null;
|
|
10992
|
+
};
|
|
10684
10993
|
/**
|
|
10685
10994
|
* A **CommentItem** Type
|
|
10686
10995
|
*/
|
|
@@ -10689,6 +10998,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftFocusMeetingC
|
|
|
10689
10998
|
* The Comment ID
|
|
10690
10999
|
*/
|
|
10691
11000
|
id: string;
|
|
11001
|
+
userAccount: UserAccount;
|
|
10692
11002
|
/**
|
|
10693
11003
|
* The Content of the Comment
|
|
10694
11004
|
*/
|
|
@@ -11167,6 +11477,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftHourlyEntryCo
|
|
|
11167
11477
|
*/
|
|
11168
11478
|
status?: string;
|
|
11169
11479
|
};
|
|
11480
|
+
/**
|
|
11481
|
+
* A **UserAccount** Type
|
|
11482
|
+
*/
|
|
11483
|
+
export type UserAccount = {
|
|
11484
|
+
/**
|
|
11485
|
+
* The User Account ID
|
|
11486
|
+
*/
|
|
11487
|
+
id: string | null;
|
|
11488
|
+
/**
|
|
11489
|
+
* The User's First Name
|
|
11490
|
+
*/
|
|
11491
|
+
firstName: string | null;
|
|
11492
|
+
/**
|
|
11493
|
+
* The User's Last Name
|
|
11494
|
+
*/
|
|
11495
|
+
lastName: string | null;
|
|
11496
|
+
};
|
|
11170
11497
|
/**
|
|
11171
11498
|
* A **CommentItem** Type
|
|
11172
11499
|
*/
|
|
@@ -11175,6 +11502,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftHourlyEntryCo
|
|
|
11175
11502
|
* The Comment ID
|
|
11176
11503
|
*/
|
|
11177
11504
|
id: string;
|
|
11505
|
+
userAccount: UserAccount;
|
|
11178
11506
|
/**
|
|
11179
11507
|
* The Content of the Comment
|
|
11180
11508
|
*/
|
|
@@ -11466,6 +11794,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftQualitySummar
|
|
|
11466
11794
|
*/
|
|
11467
11795
|
satisfactionRating?: number | null;
|
|
11468
11796
|
};
|
|
11797
|
+
/**
|
|
11798
|
+
* A **UserAccount** Type
|
|
11799
|
+
*/
|
|
11800
|
+
export type UserAccount = {
|
|
11801
|
+
/**
|
|
11802
|
+
* The User Account ID
|
|
11803
|
+
*/
|
|
11804
|
+
id: string | null;
|
|
11805
|
+
/**
|
|
11806
|
+
* The User's First Name
|
|
11807
|
+
*/
|
|
11808
|
+
firstName: string | null;
|
|
11809
|
+
/**
|
|
11810
|
+
* The User's Last Name
|
|
11811
|
+
*/
|
|
11812
|
+
lastName: string | null;
|
|
11813
|
+
};
|
|
11469
11814
|
/**
|
|
11470
11815
|
* A **CommentItem** Type
|
|
11471
11816
|
*/
|
|
@@ -11474,6 +11819,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftQualitySummar
|
|
|
11474
11819
|
* The Comment ID
|
|
11475
11820
|
*/
|
|
11476
11821
|
id: string;
|
|
11822
|
+
userAccount: UserAccount;
|
|
11477
11823
|
/**
|
|
11478
11824
|
* The Content of the Comment
|
|
11479
11825
|
*/
|
|
@@ -11708,6 +12054,10 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftTaskControlle
|
|
|
11708
12054
|
* The Shift ID this Task is asssociated with
|
|
11709
12055
|
*/
|
|
11710
12056
|
shiftId?: string;
|
|
12057
|
+
/**
|
|
12058
|
+
* When this Task was Completed
|
|
12059
|
+
*/
|
|
12060
|
+
completedTimestamp?: Date | null;
|
|
11711
12061
|
/**
|
|
11712
12062
|
* The User ID of the Author for this Task
|
|
11713
12063
|
*/
|
|
@@ -11835,6 +12185,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftTaskControlle
|
|
|
11835
12185
|
*/
|
|
11836
12186
|
content?: string;
|
|
11837
12187
|
};
|
|
12188
|
+
/**
|
|
12189
|
+
* A **UserAccount** Type
|
|
12190
|
+
*/
|
|
12191
|
+
export type UserAccount = {
|
|
12192
|
+
/**
|
|
12193
|
+
* The User Account ID
|
|
12194
|
+
*/
|
|
12195
|
+
id: string | null;
|
|
12196
|
+
/**
|
|
12197
|
+
* The User's First Name
|
|
12198
|
+
*/
|
|
12199
|
+
firstName: string | null;
|
|
12200
|
+
/**
|
|
12201
|
+
* The User's Last Name
|
|
12202
|
+
*/
|
|
12203
|
+
lastName: string | null;
|
|
12204
|
+
};
|
|
11838
12205
|
/**
|
|
11839
12206
|
* A **CommentItem** Type
|
|
11840
12207
|
*/
|
|
@@ -11843,6 +12210,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftTaskControlle
|
|
|
11843
12210
|
* The Comment ID
|
|
11844
12211
|
*/
|
|
11845
12212
|
id: string;
|
|
12213
|
+
userAccount: UserAccount;
|
|
11846
12214
|
/**
|
|
11847
12215
|
* The Content of the Comment
|
|
11848
12216
|
*/
|
|
@@ -13818,6 +14186,20 @@ declare module '@ricado/api-client/Models/Packhouse/Site/PackingLineModel' {
|
|
|
13818
14186
|
}[];
|
|
13819
14187
|
}[];
|
|
13820
14188
|
} | null;
|
|
14189
|
+
/**
|
|
14190
|
+
* The Advanced Packrun Management Configuration for this Packing Line
|
|
14191
|
+
*
|
|
14192
|
+
* @type {?Object}
|
|
14193
|
+
* @public
|
|
14194
|
+
*/
|
|
14195
|
+
advancedPackrunManagement: any | null;
|
|
14196
|
+
/**
|
|
14197
|
+
* The MAF Integration Configuration for this Packing Line
|
|
14198
|
+
*
|
|
14199
|
+
* @type {?Object}
|
|
14200
|
+
* @public
|
|
14201
|
+
*/
|
|
14202
|
+
mafIntegration: any | null;
|
|
13821
14203
|
/**
|
|
13822
14204
|
* The FreshPack Integration Configuration for this Packing Line
|
|
13823
14205
|
*
|
|
@@ -15037,6 +15419,20 @@ declare module '@ricado/api-client/Models/Packhouse/Site/ShiftModel' {
|
|
|
15037
15419
|
* @public
|
|
15038
15420
|
*/
|
|
15039
15421
|
satisfactionRating: number | null;
|
|
15422
|
+
/**
|
|
15423
|
+
* An Optional Key Celebration the Line Manager and Team experienced during this Shift
|
|
15424
|
+
*
|
|
15425
|
+
* @type {?number}
|
|
15426
|
+
* @public
|
|
15427
|
+
*/
|
|
15428
|
+
keyCelebration: number | null;
|
|
15429
|
+
/**
|
|
15430
|
+
* An Optional Key Challenge the Line Manager and Team experienced during this Shift
|
|
15431
|
+
*
|
|
15432
|
+
* @type {?string}
|
|
15433
|
+
* @public
|
|
15434
|
+
*/
|
|
15435
|
+
keyChallenge: string | null;
|
|
15040
15436
|
/**
|
|
15041
15437
|
* *DEPRECATED* An Optional Array of Handover Notes for this Shift
|
|
15042
15438
|
*
|