@ricado/api-client 2.3.1 → 2.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ricado.api.client.js +1 -1
- package/lib/Controllers/Packhouse/Site/BinTipBinController.js +267 -0
- package/lib/Controllers/Packhouse/Site/BinTipWeightController.js +267 -0
- package/lib/Controllers/Packhouse/Site/CompacSizerBatchController.js +267 -0
- package/lib/Controllers/Packhouse/Site/CompacSizerOutletProductChangeController.js +267 -0
- package/lib/Controllers/Packhouse/Site/CompacSizerOutletTypeChangeController.js +267 -0
- package/lib/Controllers/Packhouse/Site/CompacSizerPackrunSummaryController.js +267 -0
- package/lib/Controllers/Packhouse/Site/DowntimeEventController.js +267 -0
- package/lib/Controllers/Packhouse/Site/FreshPackPackrunSummaryController.js +267 -0
- package/lib/Controllers/Packhouse/Site/FreshQualityPackrunSummaryController.js +267 -0
- package/lib/Controllers/Packhouse/Site/PackrunController.js +267 -0
- package/lib/Controllers/Packhouse/Site/RejectBinController.js +267 -0
- package/lib/Controllers/Packhouse/Site/RejectBinWeightController.js +267 -0
- package/lib/Controllers/Packhouse/Site/ShiftController.js +267 -0
- package/lib/Controllers/Packhouse/Site/ShiftFocusMeetingController.js +267 -0
- package/lib/Controllers/Packhouse/Site/ShiftHourlyEntryController.js +267 -0
- package/lib/Controllers/Packhouse/Site/ShiftQualitySummaryController.js +267 -0
- package/lib/Controllers/Packhouse/Site/ShiftTaskController.js +267 -0
- package/lib/Controllers/Site/PermanentObjectDataController.js +267 -0
- package/lib/PackageVersion.js +1 -1
- package/lib/index.d.ts +324 -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 +355 -0
- package/src/Controllers/Packhouse/Site/RejectBinController.js +355 -0
- package/src/Controllers/Packhouse/Site/RejectBinWeightController.js +355 -0
- package/src/Controllers/Packhouse/Site/ShiftController.js +355 -0
- package/src/Controllers/Packhouse/Site/ShiftFocusMeetingController.js +355 -0
- package/src/Controllers/Packhouse/Site/ShiftHourlyEntryController.js +355 -0
- package/src/Controllers/Packhouse/Site/ShiftQualitySummaryController.js +355 -0
- package/src/Controllers/Packhouse/Site/ShiftTaskController.js +355 -0
- package/src/Controllers/Site/PermanentObjectDataController.js +355 -0
- package/src/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
|
*/
|
|
@@ -8956,6 +9136,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackrunController'
|
|
|
8956
9136
|
*/
|
|
8957
9137
|
freshPackProduceCode?: string | null;
|
|
8958
9138
|
};
|
|
9139
|
+
/**
|
|
9140
|
+
* A **UserAccount** Type
|
|
9141
|
+
*/
|
|
9142
|
+
export type UserAccount = {
|
|
9143
|
+
/**
|
|
9144
|
+
* The User Account ID
|
|
9145
|
+
*/
|
|
9146
|
+
id: string | null;
|
|
9147
|
+
/**
|
|
9148
|
+
* The User's First Name
|
|
9149
|
+
*/
|
|
9150
|
+
firstName: string | null;
|
|
9151
|
+
/**
|
|
9152
|
+
* The User's Last Name
|
|
9153
|
+
*/
|
|
9154
|
+
lastName: string | null;
|
|
9155
|
+
};
|
|
8959
9156
|
/**
|
|
8960
9157
|
* A **CommentItem** Type
|
|
8961
9158
|
*/
|
|
@@ -8964,6 +9161,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackrunController'
|
|
|
8964
9161
|
* The Comment ID
|
|
8965
9162
|
*/
|
|
8966
9163
|
id: string;
|
|
9164
|
+
userAccount: UserAccount;
|
|
8967
9165
|
/**
|
|
8968
9166
|
* The Content of the Comment
|
|
8969
9167
|
*/
|
|
@@ -9535,6 +9733,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinControlle
|
|
|
9535
9733
|
*/
|
|
9536
9734
|
freshPackMultiGrowerBins?: any[];
|
|
9537
9735
|
};
|
|
9736
|
+
/**
|
|
9737
|
+
* A **UserAccount** Type
|
|
9738
|
+
*/
|
|
9739
|
+
export type UserAccount = {
|
|
9740
|
+
/**
|
|
9741
|
+
* The User Account ID
|
|
9742
|
+
*/
|
|
9743
|
+
id: string | null;
|
|
9744
|
+
/**
|
|
9745
|
+
* The User's First Name
|
|
9746
|
+
*/
|
|
9747
|
+
firstName: string | null;
|
|
9748
|
+
/**
|
|
9749
|
+
* The User's Last Name
|
|
9750
|
+
*/
|
|
9751
|
+
lastName: string | null;
|
|
9752
|
+
};
|
|
9538
9753
|
/**
|
|
9539
9754
|
* A **CommentItem** Type
|
|
9540
9755
|
*/
|
|
@@ -9543,6 +9758,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinControlle
|
|
|
9543
9758
|
* The Comment ID
|
|
9544
9759
|
*/
|
|
9545
9760
|
id: string;
|
|
9761
|
+
userAccount: UserAccount;
|
|
9546
9762
|
/**
|
|
9547
9763
|
* The Content of the Comment
|
|
9548
9764
|
*/
|
|
@@ -10033,6 +10249,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinWeightCon
|
|
|
10033
10249
|
*/
|
|
10034
10250
|
freshPackMultiGrowerBinWeights?: any[];
|
|
10035
10251
|
};
|
|
10252
|
+
/**
|
|
10253
|
+
* A **UserAccount** Type
|
|
10254
|
+
*/
|
|
10255
|
+
export type UserAccount = {
|
|
10256
|
+
/**
|
|
10257
|
+
* The User Account ID
|
|
10258
|
+
*/
|
|
10259
|
+
id: string | null;
|
|
10260
|
+
/**
|
|
10261
|
+
* The User's First Name
|
|
10262
|
+
*/
|
|
10263
|
+
firstName: string | null;
|
|
10264
|
+
/**
|
|
10265
|
+
* The User's Last Name
|
|
10266
|
+
*/
|
|
10267
|
+
lastName: string | null;
|
|
10268
|
+
};
|
|
10036
10269
|
/**
|
|
10037
10270
|
* A **CommentItem** Type
|
|
10038
10271
|
*/
|
|
@@ -10041,6 +10274,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/RejectBinWeightCon
|
|
|
10041
10274
|
* The Comment ID
|
|
10042
10275
|
*/
|
|
10043
10276
|
id: string;
|
|
10277
|
+
userAccount: UserAccount;
|
|
10044
10278
|
/**
|
|
10045
10279
|
* The Content of the Comment
|
|
10046
10280
|
*/
|
|
@@ -10363,6 +10597,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftController' {
|
|
|
10363
10597
|
*/
|
|
10364
10598
|
schedule?: ShiftSchedule;
|
|
10365
10599
|
};
|
|
10600
|
+
/**
|
|
10601
|
+
* A **UserAccount** Type
|
|
10602
|
+
*/
|
|
10603
|
+
export type UserAccount = {
|
|
10604
|
+
/**
|
|
10605
|
+
* The User Account ID
|
|
10606
|
+
*/
|
|
10607
|
+
id: string | null;
|
|
10608
|
+
/**
|
|
10609
|
+
* The User's First Name
|
|
10610
|
+
*/
|
|
10611
|
+
firstName: string | null;
|
|
10612
|
+
/**
|
|
10613
|
+
* The User's Last Name
|
|
10614
|
+
*/
|
|
10615
|
+
lastName: string | null;
|
|
10616
|
+
};
|
|
10366
10617
|
/**
|
|
10367
10618
|
* A **CommentItem** Type
|
|
10368
10619
|
*/
|
|
@@ -10371,6 +10622,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftController' {
|
|
|
10371
10622
|
* The Comment ID
|
|
10372
10623
|
*/
|
|
10373
10624
|
id: string;
|
|
10625
|
+
userAccount: UserAccount;
|
|
10374
10626
|
/**
|
|
10375
10627
|
* The Content of the Comment
|
|
10376
10628
|
*/
|
|
@@ -10697,6 +10949,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftFocusMeetingC
|
|
|
10697
10949
|
*/
|
|
10698
10950
|
successRating?: number | null;
|
|
10699
10951
|
};
|
|
10952
|
+
/**
|
|
10953
|
+
* A **UserAccount** Type
|
|
10954
|
+
*/
|
|
10955
|
+
export type UserAccount = {
|
|
10956
|
+
/**
|
|
10957
|
+
* The User Account ID
|
|
10958
|
+
*/
|
|
10959
|
+
id: string | null;
|
|
10960
|
+
/**
|
|
10961
|
+
* The User's First Name
|
|
10962
|
+
*/
|
|
10963
|
+
firstName: string | null;
|
|
10964
|
+
/**
|
|
10965
|
+
* The User's Last Name
|
|
10966
|
+
*/
|
|
10967
|
+
lastName: string | null;
|
|
10968
|
+
};
|
|
10700
10969
|
/**
|
|
10701
10970
|
* A **CommentItem** Type
|
|
10702
10971
|
*/
|
|
@@ -10705,6 +10974,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftFocusMeetingC
|
|
|
10705
10974
|
* The Comment ID
|
|
10706
10975
|
*/
|
|
10707
10976
|
id: string;
|
|
10977
|
+
userAccount: UserAccount;
|
|
10708
10978
|
/**
|
|
10709
10979
|
* The Content of the Comment
|
|
10710
10980
|
*/
|
|
@@ -11183,6 +11453,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftHourlyEntryCo
|
|
|
11183
11453
|
*/
|
|
11184
11454
|
status?: string;
|
|
11185
11455
|
};
|
|
11456
|
+
/**
|
|
11457
|
+
* A **UserAccount** Type
|
|
11458
|
+
*/
|
|
11459
|
+
export type UserAccount = {
|
|
11460
|
+
/**
|
|
11461
|
+
* The User Account ID
|
|
11462
|
+
*/
|
|
11463
|
+
id: string | null;
|
|
11464
|
+
/**
|
|
11465
|
+
* The User's First Name
|
|
11466
|
+
*/
|
|
11467
|
+
firstName: string | null;
|
|
11468
|
+
/**
|
|
11469
|
+
* The User's Last Name
|
|
11470
|
+
*/
|
|
11471
|
+
lastName: string | null;
|
|
11472
|
+
};
|
|
11186
11473
|
/**
|
|
11187
11474
|
* A **CommentItem** Type
|
|
11188
11475
|
*/
|
|
@@ -11191,6 +11478,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftHourlyEntryCo
|
|
|
11191
11478
|
* The Comment ID
|
|
11192
11479
|
*/
|
|
11193
11480
|
id: string;
|
|
11481
|
+
userAccount: UserAccount;
|
|
11194
11482
|
/**
|
|
11195
11483
|
* The Content of the Comment
|
|
11196
11484
|
*/
|
|
@@ -11482,6 +11770,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftQualitySummar
|
|
|
11482
11770
|
*/
|
|
11483
11771
|
satisfactionRating?: number | null;
|
|
11484
11772
|
};
|
|
11773
|
+
/**
|
|
11774
|
+
* A **UserAccount** Type
|
|
11775
|
+
*/
|
|
11776
|
+
export type UserAccount = {
|
|
11777
|
+
/**
|
|
11778
|
+
* The User Account ID
|
|
11779
|
+
*/
|
|
11780
|
+
id: string | null;
|
|
11781
|
+
/**
|
|
11782
|
+
* The User's First Name
|
|
11783
|
+
*/
|
|
11784
|
+
firstName: string | null;
|
|
11785
|
+
/**
|
|
11786
|
+
* The User's Last Name
|
|
11787
|
+
*/
|
|
11788
|
+
lastName: string | null;
|
|
11789
|
+
};
|
|
11485
11790
|
/**
|
|
11486
11791
|
* A **CommentItem** Type
|
|
11487
11792
|
*/
|
|
@@ -11490,6 +11795,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftQualitySummar
|
|
|
11490
11795
|
* The Comment ID
|
|
11491
11796
|
*/
|
|
11492
11797
|
id: string;
|
|
11798
|
+
userAccount: UserAccount;
|
|
11493
11799
|
/**
|
|
11494
11800
|
* The Content of the Comment
|
|
11495
11801
|
*/
|
|
@@ -11851,6 +12157,23 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftTaskControlle
|
|
|
11851
12157
|
*/
|
|
11852
12158
|
content?: string;
|
|
11853
12159
|
};
|
|
12160
|
+
/**
|
|
12161
|
+
* A **UserAccount** Type
|
|
12162
|
+
*/
|
|
12163
|
+
export type UserAccount = {
|
|
12164
|
+
/**
|
|
12165
|
+
* The User Account ID
|
|
12166
|
+
*/
|
|
12167
|
+
id: string | null;
|
|
12168
|
+
/**
|
|
12169
|
+
* The User's First Name
|
|
12170
|
+
*/
|
|
12171
|
+
firstName: string | null;
|
|
12172
|
+
/**
|
|
12173
|
+
* The User's Last Name
|
|
12174
|
+
*/
|
|
12175
|
+
lastName: string | null;
|
|
12176
|
+
};
|
|
11854
12177
|
/**
|
|
11855
12178
|
* A **CommentItem** Type
|
|
11856
12179
|
*/
|
|
@@ -11859,6 +12182,7 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/ShiftTaskControlle
|
|
|
11859
12182
|
* The Comment ID
|
|
11860
12183
|
*/
|
|
11861
12184
|
id: string;
|
|
12185
|
+
userAccount: UserAccount;
|
|
11862
12186
|
/**
|
|
11863
12187
|
* The Content of the Comment
|
|
11864
12188
|
*/
|