@ricado/api-client 2.3.1 → 2.3.4
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/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/ShiftModel.js +44 -0
- package/lib/PackageVersion.js +1 -1
- package/lib/index.d.ts +366 -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/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/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
|
*/
|
|
@@ -8789,6 +8969,14 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackrunController'
|
|
|
8789
8969
|
* The Maturity Area for this Packrun
|
|
8790
8970
|
*/
|
|
8791
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;
|
|
8792
8980
|
/**
|
|
8793
8981
|
* The Variety for this Packrun
|
|
8794
8982
|
*/
|
|
@@ -8956,6 +9144,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackrunController'
|
|
|
8956
9144
|
*/
|
|
8957
9145
|
freshPackProduceCode?: string | null;
|
|
8958
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
|
+
};
|
|
8959
9164
|
/**
|
|
8960
9165
|
* A **CommentItem** Type
|
|
8961
9166
|
*/
|
|
@@ -8964,6 +9169,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackrunController'
|
|
|
8964
9169
|
* The Comment ID
|
|
8965
9170
|
*/
|
|
8966
9171
|
id: string;
|
|
9172
|
+
userAccount: UserAccount;
|
|
8967
9173
|
/**
|
|
8968
9174
|
* The Content of the Comment
|
|
8969
9175
|
*/
|
|
@@ -9535,6 +9741,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinControlle
|
|
|
9535
9741
|
*/
|
|
9536
9742
|
freshPackMultiGrowerBins?: any[];
|
|
9537
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
|
+
};
|
|
9538
9761
|
/**
|
|
9539
9762
|
* A **CommentItem** Type
|
|
9540
9763
|
*/
|
|
@@ -9543,6 +9766,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinControlle
|
|
|
9543
9766
|
* The Comment ID
|
|
9544
9767
|
*/
|
|
9545
9768
|
id: string;
|
|
9769
|
+
userAccount: UserAccount;
|
|
9546
9770
|
/**
|
|
9547
9771
|
* The Content of the Comment
|
|
9548
9772
|
*/
|
|
@@ -10033,6 +10257,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinWeightCon
|
|
|
10033
10257
|
*/
|
|
10034
10258
|
freshPackMultiGrowerBinWeights?: any[];
|
|
10035
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
|
+
};
|
|
10036
10277
|
/**
|
|
10037
10278
|
* A **CommentItem** Type
|
|
10038
10279
|
*/
|
|
@@ -10041,6 +10282,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinWeightCon
|
|
|
10041
10282
|
* The Comment ID
|
|
10042
10283
|
*/
|
|
10043
10284
|
id: string;
|
|
10285
|
+
userAccount: UserAccount;
|
|
10044
10286
|
/**
|
|
10045
10287
|
* The Content of the Comment
|
|
10046
10288
|
*/
|
|
@@ -10285,6 +10527,14 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftController' {
|
|
|
10285
10527
|
* An Optional Rating between 1 and 10 on how Satisfied the Line Manager was with this Shift
|
|
10286
10528
|
*/
|
|
10287
10529
|
satisfactionRating?: number | null;
|
|
10530
|
+
/**
|
|
10531
|
+
* An Optional Key Celebration the Line Manager and Team experienced during this Shift
|
|
10532
|
+
*/
|
|
10533
|
+
keyCelebration?: string | null;
|
|
10534
|
+
/**
|
|
10535
|
+
* An Optional Key Challenge the Line Manager and Team experienced during this Shift
|
|
10536
|
+
*/
|
|
10537
|
+
keyChallenge?: string | null;
|
|
10288
10538
|
/**
|
|
10289
10539
|
* DEPRECATED* An Optional Array of Handover Notes for this Shift
|
|
10290
10540
|
*/
|
|
@@ -10350,6 +10600,14 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftController' {
|
|
|
10350
10600
|
* An Optional Rating between 1 and 10 on how Satisfied the Line Manager was with this Shift
|
|
10351
10601
|
*/
|
|
10352
10602
|
satisfactionRating?: number | null;
|
|
10603
|
+
/**
|
|
10604
|
+
* An Optional Key Celebration the Line Manager and Team experienced during this Shift
|
|
10605
|
+
*/
|
|
10606
|
+
keyCelebration?: string | null;
|
|
10607
|
+
/**
|
|
10608
|
+
* An Optional Key Challenge the Line Manager and Team experienced during this Shift
|
|
10609
|
+
*/
|
|
10610
|
+
keyChallenge?: string | null;
|
|
10353
10611
|
/**
|
|
10354
10612
|
* DEPRECATED* An Optional Array of Handover Notes for this Shift
|
|
10355
10613
|
*/
|
|
@@ -10363,6 +10621,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftController' {
|
|
|
10363
10621
|
*/
|
|
10364
10622
|
schedule?: ShiftSchedule;
|
|
10365
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
|
+
};
|
|
10366
10641
|
/**
|
|
10367
10642
|
* A **CommentItem** Type
|
|
10368
10643
|
*/
|
|
@@ -10371,6 +10646,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftController' {
|
|
|
10371
10646
|
* The Comment ID
|
|
10372
10647
|
*/
|
|
10373
10648
|
id: string;
|
|
10649
|
+
userAccount: UserAccount;
|
|
10374
10650
|
/**
|
|
10375
10651
|
* The Content of the Comment
|
|
10376
10652
|
*/
|
|
@@ -10697,6 +10973,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftFocusMeetingC
|
|
|
10697
10973
|
*/
|
|
10698
10974
|
successRating?: number | null;
|
|
10699
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
|
+
};
|
|
10700
10993
|
/**
|
|
10701
10994
|
* A **CommentItem** Type
|
|
10702
10995
|
*/
|
|
@@ -10705,6 +10998,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftFocusMeetingC
|
|
|
10705
10998
|
* The Comment ID
|
|
10706
10999
|
*/
|
|
10707
11000
|
id: string;
|
|
11001
|
+
userAccount: UserAccount;
|
|
10708
11002
|
/**
|
|
10709
11003
|
* The Content of the Comment
|
|
10710
11004
|
*/
|
|
@@ -11183,6 +11477,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftHourlyEntryCo
|
|
|
11183
11477
|
*/
|
|
11184
11478
|
status?: string;
|
|
11185
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
|
+
};
|
|
11186
11497
|
/**
|
|
11187
11498
|
* A **CommentItem** Type
|
|
11188
11499
|
*/
|
|
@@ -11191,6 +11502,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftHourlyEntryCo
|
|
|
11191
11502
|
* The Comment ID
|
|
11192
11503
|
*/
|
|
11193
11504
|
id: string;
|
|
11505
|
+
userAccount: UserAccount;
|
|
11194
11506
|
/**
|
|
11195
11507
|
* The Content of the Comment
|
|
11196
11508
|
*/
|
|
@@ -11482,6 +11794,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftQualitySummar
|
|
|
11482
11794
|
*/
|
|
11483
11795
|
satisfactionRating?: number | null;
|
|
11484
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
|
+
};
|
|
11485
11814
|
/**
|
|
11486
11815
|
* A **CommentItem** Type
|
|
11487
11816
|
*/
|
|
@@ -11490,6 +11819,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftQualitySummar
|
|
|
11490
11819
|
* The Comment ID
|
|
11491
11820
|
*/
|
|
11492
11821
|
id: string;
|
|
11822
|
+
userAccount: UserAccount;
|
|
11493
11823
|
/**
|
|
11494
11824
|
* The Content of the Comment
|
|
11495
11825
|
*/
|
|
@@ -11724,6 +12054,10 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftTaskControlle
|
|
|
11724
12054
|
* The Shift ID this Task is asssociated with
|
|
11725
12055
|
*/
|
|
11726
12056
|
shiftId?: string;
|
|
12057
|
+
/**
|
|
12058
|
+
* When this Task was Completed
|
|
12059
|
+
*/
|
|
12060
|
+
completedTimestamp?: Date | null;
|
|
11727
12061
|
/**
|
|
11728
12062
|
* The User ID of the Author for this Task
|
|
11729
12063
|
*/
|
|
@@ -11851,6 +12185,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftTaskControlle
|
|
|
11851
12185
|
*/
|
|
11852
12186
|
content?: string;
|
|
11853
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
|
+
};
|
|
11854
12205
|
/**
|
|
11855
12206
|
* A **CommentItem** Type
|
|
11856
12207
|
*/
|
|
@@ -11859,6 +12210,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftTaskControlle
|
|
|
11859
12210
|
* The Comment ID
|
|
11860
12211
|
*/
|
|
11861
12212
|
id: string;
|
|
12213
|
+
userAccount: UserAccount;
|
|
11862
12214
|
/**
|
|
11863
12215
|
* The Content of the Comment
|
|
11864
12216
|
*/
|
|
@@ -15067,6 +15419,20 @@ declare module '@ricado/api-client/Models/Packhouse/Site/ShiftModel' {
|
|
|
15067
15419
|
* @public
|
|
15068
15420
|
*/
|
|
15069
15421
|
satisfactionRating: number | null;
|
|
15422
|
+
/**
|
|
15423
|
+
* An Optional Key Celebration the Line Manager and Team experienced during this Shift
|
|
15424
|
+
*
|
|
15425
|
+
* @type {?string}
|
|
15426
|
+
* @public
|
|
15427
|
+
*/
|
|
15428
|
+
keyCelebration: string | 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;
|
|
15070
15436
|
/**
|
|
15071
15437
|
* *DEPRECATED* An Optional Array of Handover Notes for this Shift
|
|
15072
15438
|
*
|