@d19n/youfibre-odin-sdk 2.0.295 → 2.0.296
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.
|
@@ -1612,7 +1612,9 @@ export declare enum WorkOrderPropertyKeys {
|
|
|
1612
1612
|
/** Name of the most recent WorkOrderStatusUpdate created against this work order, e.g. "In Transit" or "Collected From Your Customer Service Point". Paired with LastStatusUpdateAt so the answer to "what happened last, and when" is on the record itself. */
|
|
1613
1613
|
LastStatusUpdateName = "LastStatusUpdateName",
|
|
1614
1614
|
/** Deprecated. replaced by native entity types (Field Operations - WorkOrder) */
|
|
1615
|
-
Type = "Type"
|
|
1615
|
+
Type = "Type",
|
|
1616
|
+
/** Total charge in GBP if the equipment on this collection is never returned, fixed at the moment the collection is raised from the devices on its linked order items: £100 per router, £50 per additional item (mesh / battery / TV / ATA). Snapshotted rather than derived because the same figure is quoted to the customer in the 3PL-C1 booking confirmation and charged from the 3PL-C7 non-return notice, and those are months apart — a device swapped or an item removed in between must not silently change what was quoted. Absent on collections raised before PORTAPP-3091 until the backfill runs, and absent by design on DISPATCH_AMCO, which recovers nothing. */
|
|
1617
|
+
EquipmentCharge = "EquipmentCharge"
|
|
1616
1618
|
}
|
|
1617
1619
|
/**
|
|
1618
1620
|
* Properties for WorkOrder records
|
|
@@ -2387,6 +2389,12 @@ export interface WorkOrderProperties {
|
|
|
2387
2389
|
* @hidden This field is hidden in the UI
|
|
2388
2390
|
*/
|
|
2389
2391
|
Type: string;
|
|
2392
|
+
/** Total charge in GBP if the equipment on this collection is never returned, fixed at the moment the collection is raised from the devices on its linked order items: £100 per router, £50 per additional item (mesh / battery / TV / ATA). Snapshotted rather than derived because the same figure is quoted to the customer in the 3PL-C1 booking confirmation and charged from the 3PL-C7 non-return notice, and those are months apart — a device swapped or an item removed in between must not silently change what was quoted. Absent on collections raised before PORTAPP-3091 until the backfill runs, and absent by design on DISPATCH_AMCO, which recovers nothing.
|
|
2393
|
+
*
|
|
2394
|
+
* @type {NUMBER}
|
|
2395
|
+
* @default
|
|
2396
|
+
*/
|
|
2397
|
+
EquipmentCharge: number;
|
|
2390
2398
|
}
|
|
2391
2399
|
/**
|
|
2392
2400
|
* Properties for COLLECTION WorkOrder records
|
|
@@ -3161,6 +3169,12 @@ export interface CollectionWorkOrderProperties {
|
|
|
3161
3169
|
* @hidden This field is hidden in the UI
|
|
3162
3170
|
*/
|
|
3163
3171
|
Type: string;
|
|
3172
|
+
/** Total charge in GBP if the equipment on this collection is never returned, fixed at the moment the collection is raised from the devices on its linked order items: £100 per router, £50 per additional item (mesh / battery / TV / ATA). Snapshotted rather than derived because the same figure is quoted to the customer in the 3PL-C1 booking confirmation and charged from the 3PL-C7 non-return notice, and those are months apart — a device swapped or an item removed in between must not silently change what was quoted. Absent on collections raised before PORTAPP-3091 until the backfill runs, and absent by design on DISPATCH_AMCO, which recovers nothing.
|
|
3173
|
+
*
|
|
3174
|
+
* @type {NUMBER}
|
|
3175
|
+
* @default
|
|
3176
|
+
*/
|
|
3177
|
+
EquipmentCharge: number;
|
|
3164
3178
|
}
|
|
3165
3179
|
/**
|
|
3166
3180
|
* Properties for COLLECTION_AMCO WorkOrder records
|
|
@@ -3935,6 +3949,12 @@ export interface CollectionAmcoWorkOrderProperties {
|
|
|
3935
3949
|
* @hidden This field is hidden in the UI
|
|
3936
3950
|
*/
|
|
3937
3951
|
Type: string;
|
|
3952
|
+
/** Total charge in GBP if the equipment on this collection is never returned, fixed at the moment the collection is raised from the devices on its linked order items: £100 per router, £50 per additional item (mesh / battery / TV / ATA). Snapshotted rather than derived because the same figure is quoted to the customer in the 3PL-C1 booking confirmation and charged from the 3PL-C7 non-return notice, and those are months apart — a device swapped or an item removed in between must not silently change what was quoted. Absent on collections raised before PORTAPP-3091 until the backfill runs, and absent by design on DISPATCH_AMCO, which recovers nothing.
|
|
3953
|
+
*
|
|
3954
|
+
* @type {NUMBER}
|
|
3955
|
+
* @default
|
|
3956
|
+
*/
|
|
3957
|
+
EquipmentCharge: number;
|
|
3938
3958
|
}
|
|
3939
3959
|
/**
|
|
3940
3960
|
* Properties for DISPATCH_AMCO WorkOrder records
|
|
@@ -4709,6 +4729,12 @@ export interface DispatchAmcoWorkOrderProperties {
|
|
|
4709
4729
|
* @hidden This field is hidden in the UI
|
|
4710
4730
|
*/
|
|
4711
4731
|
Type: string;
|
|
4732
|
+
/** Total charge in GBP if the equipment on this collection is never returned, fixed at the moment the collection is raised from the devices on its linked order items: £100 per router, £50 per additional item (mesh / battery / TV / ATA). Snapshotted rather than derived because the same figure is quoted to the customer in the 3PL-C1 booking confirmation and charged from the 3PL-C7 non-return notice, and those are months apart — a device swapped or an item removed in between must not silently change what was quoted. Absent on collections raised before PORTAPP-3091 until the backfill runs, and absent by design on DISPATCH_AMCO, which recovers nothing.
|
|
4733
|
+
*
|
|
4734
|
+
* @type {NUMBER}
|
|
4735
|
+
* @default
|
|
4736
|
+
*/
|
|
4737
|
+
EquipmentCharge: number;
|
|
4712
4738
|
}
|
|
4713
4739
|
/**
|
|
4714
4740
|
* Properties for FINANCE WorkOrder records
|
|
@@ -5483,6 +5509,12 @@ export interface FinanceWorkOrderProperties {
|
|
|
5483
5509
|
* @hidden This field is hidden in the UI
|
|
5484
5510
|
*/
|
|
5485
5511
|
Type: string;
|
|
5512
|
+
/** Total charge in GBP if the equipment on this collection is never returned, fixed at the moment the collection is raised from the devices on its linked order items: £100 per router, £50 per additional item (mesh / battery / TV / ATA). Snapshotted rather than derived because the same figure is quoted to the customer in the 3PL-C1 booking confirmation and charged from the 3PL-C7 non-return notice, and those are months apart — a device swapped or an item removed in between must not silently change what was quoted. Absent on collections raised before PORTAPP-3091 until the backfill runs, and absent by design on DISPATCH_AMCO, which recovers nothing.
|
|
5513
|
+
*
|
|
5514
|
+
* @type {NUMBER}
|
|
5515
|
+
* @default
|
|
5516
|
+
*/
|
|
5517
|
+
EquipmentCharge: number;
|
|
5486
5518
|
}
|
|
5487
5519
|
/**
|
|
5488
5520
|
* Properties for INSPECTION WorkOrder records
|
|
@@ -6257,6 +6289,12 @@ export interface InspectionWorkOrderProperties {
|
|
|
6257
6289
|
* @hidden This field is hidden in the UI
|
|
6258
6290
|
*/
|
|
6259
6291
|
Type: string;
|
|
6292
|
+
/** Total charge in GBP if the equipment on this collection is never returned, fixed at the moment the collection is raised from the devices on its linked order items: £100 per router, £50 per additional item (mesh / battery / TV / ATA). Snapshotted rather than derived because the same figure is quoted to the customer in the 3PL-C1 booking confirmation and charged from the 3PL-C7 non-return notice, and those are months apart — a device swapped or an item removed in between must not silently change what was quoted. Absent on collections raised before PORTAPP-3091 until the backfill runs, and absent by design on DISPATCH_AMCO, which recovers nothing.
|
|
6293
|
+
*
|
|
6294
|
+
* @type {NUMBER}
|
|
6295
|
+
* @default
|
|
6296
|
+
*/
|
|
6297
|
+
EquipmentCharge: number;
|
|
6260
6298
|
}
|
|
6261
6299
|
/**
|
|
6262
6300
|
* Properties for INSTALL WorkOrder records
|
|
@@ -7031,6 +7069,12 @@ export interface InstallWorkOrderProperties {
|
|
|
7031
7069
|
* @hidden This field is hidden in the UI
|
|
7032
7070
|
*/
|
|
7033
7071
|
Type: string;
|
|
7072
|
+
/** Total charge in GBP if the equipment on this collection is never returned, fixed at the moment the collection is raised from the devices on its linked order items: £100 per router, £50 per additional item (mesh / battery / TV / ATA). Snapshotted rather than derived because the same figure is quoted to the customer in the 3PL-C1 booking confirmation and charged from the 3PL-C7 non-return notice, and those are months apart — a device swapped or an item removed in between must not silently change what was quoted. Absent on collections raised before PORTAPP-3091 until the backfill runs, and absent by design on DISPATCH_AMCO, which recovers nothing.
|
|
7073
|
+
*
|
|
7074
|
+
* @type {NUMBER}
|
|
7075
|
+
* @default
|
|
7076
|
+
*/
|
|
7077
|
+
EquipmentCharge: number;
|
|
7034
7078
|
}
|
|
7035
7079
|
/**
|
|
7036
7080
|
* Properties for INSTALL_BUSINESS WorkOrder records
|
|
@@ -7805,6 +7849,12 @@ export interface InstallBusinessWorkOrderProperties {
|
|
|
7805
7849
|
* @hidden This field is hidden in the UI
|
|
7806
7850
|
*/
|
|
7807
7851
|
Type: string;
|
|
7852
|
+
/** Total charge in GBP if the equipment on this collection is never returned, fixed at the moment the collection is raised from the devices on its linked order items: £100 per router, £50 per additional item (mesh / battery / TV / ATA). Snapshotted rather than derived because the same figure is quoted to the customer in the 3PL-C1 booking confirmation and charged from the 3PL-C7 non-return notice, and those are months apart — a device swapped or an item removed in between must not silently change what was quoted. Absent on collections raised before PORTAPP-3091 until the backfill runs, and absent by design on DISPATCH_AMCO, which recovers nothing.
|
|
7853
|
+
*
|
|
7854
|
+
* @type {NUMBER}
|
|
7855
|
+
* @default
|
|
7856
|
+
*/
|
|
7857
|
+
EquipmentCharge: number;
|
|
7808
7858
|
}
|
|
7809
7859
|
/**
|
|
7810
7860
|
* Properties for INSTALL_SERVICE WorkOrder records
|
|
@@ -8579,6 +8629,12 @@ export interface InstallServiceWorkOrderProperties {
|
|
|
8579
8629
|
* @hidden This field is hidden in the UI
|
|
8580
8630
|
*/
|
|
8581
8631
|
Type: string;
|
|
8632
|
+
/** Total charge in GBP if the equipment on this collection is never returned, fixed at the moment the collection is raised from the devices on its linked order items: £100 per router, £50 per additional item (mesh / battery / TV / ATA). Snapshotted rather than derived because the same figure is quoted to the customer in the 3PL-C1 booking confirmation and charged from the 3PL-C7 non-return notice, and those are months apart — a device swapped or an item removed in between must not silently change what was quoted. Absent on collections raised before PORTAPP-3091 until the backfill runs, and absent by design on DISPATCH_AMCO, which recovers nothing.
|
|
8633
|
+
*
|
|
8634
|
+
* @type {NUMBER}
|
|
8635
|
+
* @default
|
|
8636
|
+
*/
|
|
8637
|
+
EquipmentCharge: number;
|
|
8582
8638
|
}
|
|
8583
8639
|
/**
|
|
8584
8640
|
* Properties for NETWORK_ADJUSTMENT WorkOrder records
|
|
@@ -9353,6 +9409,12 @@ export interface NetworkAdjustmentWorkOrderProperties {
|
|
|
9353
9409
|
* @hidden This field is hidden in the UI
|
|
9354
9410
|
*/
|
|
9355
9411
|
Type: string;
|
|
9412
|
+
/** Total charge in GBP if the equipment on this collection is never returned, fixed at the moment the collection is raised from the devices on its linked order items: £100 per router, £50 per additional item (mesh / battery / TV / ATA). Snapshotted rather than derived because the same figure is quoted to the customer in the 3PL-C1 booking confirmation and charged from the 3PL-C7 non-return notice, and those are months apart — a device swapped or an item removed in between must not silently change what was quoted. Absent on collections raised before PORTAPP-3091 until the backfill runs, and absent by design on DISPATCH_AMCO, which recovers nothing.
|
|
9413
|
+
*
|
|
9414
|
+
* @type {NUMBER}
|
|
9415
|
+
* @default
|
|
9416
|
+
*/
|
|
9417
|
+
EquipmentCharge: number;
|
|
9356
9418
|
}
|
|
9357
9419
|
/**
|
|
9358
9420
|
* Properties for PLANNING WorkOrder records
|
|
@@ -10127,6 +10189,12 @@ export interface PlanningWorkOrderProperties {
|
|
|
10127
10189
|
* @hidden This field is hidden in the UI
|
|
10128
10190
|
*/
|
|
10129
10191
|
Type: string;
|
|
10192
|
+
/** Total charge in GBP if the equipment on this collection is never returned, fixed at the moment the collection is raised from the devices on its linked order items: £100 per router, £50 per additional item (mesh / battery / TV / ATA). Snapshotted rather than derived because the same figure is quoted to the customer in the 3PL-C1 booking confirmation and charged from the 3PL-C7 non-return notice, and those are months apart — a device swapped or an item removed in between must not silently change what was quoted. Absent on collections raised before PORTAPP-3091 until the backfill runs, and absent by design on DISPATCH_AMCO, which recovers nothing.
|
|
10193
|
+
*
|
|
10194
|
+
* @type {NUMBER}
|
|
10195
|
+
* @default
|
|
10196
|
+
*/
|
|
10197
|
+
EquipmentCharge: number;
|
|
10130
10198
|
}
|
|
10131
10199
|
/**
|
|
10132
10200
|
* Properties for PRE_PULL WorkOrder records
|
|
@@ -10901,6 +10969,12 @@ export interface PrePullWorkOrderProperties {
|
|
|
10901
10969
|
* @hidden This field is hidden in the UI
|
|
10902
10970
|
*/
|
|
10903
10971
|
Type: string;
|
|
10972
|
+
/** Total charge in GBP if the equipment on this collection is never returned, fixed at the moment the collection is raised from the devices on its linked order items: £100 per router, £50 per additional item (mesh / battery / TV / ATA). Snapshotted rather than derived because the same figure is quoted to the customer in the 3PL-C1 booking confirmation and charged from the 3PL-C7 non-return notice, and those are months apart — a device swapped or an item removed in between must not silently change what was quoted. Absent on collections raised before PORTAPP-3091 until the backfill runs, and absent by design on DISPATCH_AMCO, which recovers nothing.
|
|
10973
|
+
*
|
|
10974
|
+
* @type {NUMBER}
|
|
10975
|
+
* @default
|
|
10976
|
+
*/
|
|
10977
|
+
EquipmentCharge: number;
|
|
10904
10978
|
}
|
|
10905
10979
|
/**
|
|
10906
10980
|
* Properties for REMEDIATION WorkOrder records
|
|
@@ -11675,6 +11749,12 @@ export interface RemediationWorkOrderProperties {
|
|
|
11675
11749
|
* @hidden This field is hidden in the UI
|
|
11676
11750
|
*/
|
|
11677
11751
|
Type: string;
|
|
11752
|
+
/** Total charge in GBP if the equipment on this collection is never returned, fixed at the moment the collection is raised from the devices on its linked order items: £100 per router, £50 per additional item (mesh / battery / TV / ATA). Snapshotted rather than derived because the same figure is quoted to the customer in the 3PL-C1 booking confirmation and charged from the 3PL-C7 non-return notice, and those are months apart — a device swapped or an item removed in between must not silently change what was quoted. Absent on collections raised before PORTAPP-3091 until the backfill runs, and absent by design on DISPATCH_AMCO, which recovers nothing.
|
|
11753
|
+
*
|
|
11754
|
+
* @type {NUMBER}
|
|
11755
|
+
* @default
|
|
11756
|
+
*/
|
|
11757
|
+
EquipmentCharge: number;
|
|
11678
11758
|
}
|
|
11679
11759
|
/**
|
|
11680
11760
|
* Properties for REPLACEMENT_AMCO WorkOrder records
|
|
@@ -12449,6 +12529,12 @@ export interface ReplacementAmcoWorkOrderProperties {
|
|
|
12449
12529
|
* @hidden This field is hidden in the UI
|
|
12450
12530
|
*/
|
|
12451
12531
|
Type: string;
|
|
12532
|
+
/** Total charge in GBP if the equipment on this collection is never returned, fixed at the moment the collection is raised from the devices on its linked order items: £100 per router, £50 per additional item (mesh / battery / TV / ATA). Snapshotted rather than derived because the same figure is quoted to the customer in the 3PL-C1 booking confirmation and charged from the 3PL-C7 non-return notice, and those are months apart — a device swapped or an item removed in between must not silently change what was quoted. Absent on collections raised before PORTAPP-3091 until the backfill runs, and absent by design on DISPATCH_AMCO, which recovers nothing.
|
|
12533
|
+
*
|
|
12534
|
+
* @type {NUMBER}
|
|
12535
|
+
* @default
|
|
12536
|
+
*/
|
|
12537
|
+
EquipmentCharge: number;
|
|
12452
12538
|
}
|
|
12453
12539
|
/**
|
|
12454
12540
|
* Properties for SERVICE WorkOrder records
|
|
@@ -13223,6 +13309,12 @@ export interface ServiceWorkOrderProperties {
|
|
|
13223
13309
|
* @hidden This field is hidden in the UI
|
|
13224
13310
|
*/
|
|
13225
13311
|
Type: string;
|
|
13312
|
+
/** Total charge in GBP if the equipment on this collection is never returned, fixed at the moment the collection is raised from the devices on its linked order items: £100 per router, £50 per additional item (mesh / battery / TV / ATA). Snapshotted rather than derived because the same figure is quoted to the customer in the 3PL-C1 booking confirmation and charged from the 3PL-C7 non-return notice, and those are months apart — a device swapped or an item removed in between must not silently change what was quoted. Absent on collections raised before PORTAPP-3091 until the backfill runs, and absent by design on DISPATCH_AMCO, which recovers nothing.
|
|
13313
|
+
*
|
|
13314
|
+
* @type {NUMBER}
|
|
13315
|
+
* @default
|
|
13316
|
+
*/
|
|
13317
|
+
EquipmentCharge: number;
|
|
13226
13318
|
}
|
|
13227
13319
|
/**
|
|
13228
13320
|
* Properties for WAYLEAVE WorkOrder records
|
|
@@ -13997,6 +14089,12 @@ export interface WayleaveWorkOrderProperties {
|
|
|
13997
14089
|
* @hidden This field is hidden in the UI
|
|
13998
14090
|
*/
|
|
13999
14091
|
Type: string;
|
|
14092
|
+
/** Total charge in GBP if the equipment on this collection is never returned, fixed at the moment the collection is raised from the devices on its linked order items: £100 per router, £50 per additional item (mesh / battery / TV / ATA). Snapshotted rather than derived because the same figure is quoted to the customer in the 3PL-C1 booking confirmation and charged from the 3PL-C7 non-return notice, and those are months apart — a device swapped or an item removed in between must not silently change what was quoted. Absent on collections raised before PORTAPP-3091 until the backfill runs, and absent by design on DISPATCH_AMCO, which recovers nothing.
|
|
14093
|
+
*
|
|
14094
|
+
* @type {NUMBER}
|
|
14095
|
+
* @default
|
|
14096
|
+
*/
|
|
14097
|
+
EquipmentCharge: number;
|
|
14000
14098
|
}
|
|
14001
14099
|
/**
|
|
14002
14100
|
* WorkOrder entity from FieldServiceModule
|
|
@@ -1614,6 +1614,8 @@ var WorkOrderPropertyKeys;
|
|
|
1614
1614
|
WorkOrderPropertyKeys["LastStatusUpdateName"] = "LastStatusUpdateName";
|
|
1615
1615
|
/** Deprecated. replaced by native entity types (Field Operations - WorkOrder) */
|
|
1616
1616
|
WorkOrderPropertyKeys["Type"] = "Type";
|
|
1617
|
+
/** Total charge in GBP if the equipment on this collection is never returned, fixed at the moment the collection is raised from the devices on its linked order items: £100 per router, £50 per additional item (mesh / battery / TV / ATA). Snapshotted rather than derived because the same figure is quoted to the customer in the 3PL-C1 booking confirmation and charged from the 3PL-C7 non-return notice, and those are months apart — a device swapped or an item removed in between must not silently change what was quoted. Absent on collections raised before PORTAPP-3091 until the backfill runs, and absent by design on DISPATCH_AMCO, which recovers nothing. */
|
|
1618
|
+
WorkOrderPropertyKeys["EquipmentCharge"] = "EquipmentCharge";
|
|
1617
1619
|
})(WorkOrderPropertyKeys = exports.WorkOrderPropertyKeys || (exports.WorkOrderPropertyKeys = {}));
|
|
1618
1620
|
/**
|
|
1619
1621
|
* WorkOrder entity from FieldServiceModule
|