@openeld/openeld 0.1.0 → 0.1.1
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/README.md +166 -24
- package/dist/index.d.ts +8045 -0
- package/dist/index.js +2072 -0
- package/docs/README.md +71 -0
- package/docs/architecture/README.md +4 -0
- package/docs/concepts/schema-and-generated-bindings.md +74 -0
- package/docs/decisions/README.md +4 -0
- package/docs/getting-started/quickstart.md +62 -0
- package/docs/guides/normalization.md +106 -0
- package/docs/guides/query-and-sync.md +59 -0
- package/docs/guides/transports-and-remote-services.md +79 -0
- package/docs/protobuf/README.md +15 -11
- package/docs/providers/README.md +35 -54
- package/docs/providers/capability-matrix.md +2 -0
- package/docs/providers/geotab.md +55 -23
- package/docs/providers/keeptruckin.md +32 -22
- package/docs/providers/motive.md +52 -21
- package/docs/providers/provider-template.md +2 -0
- package/docs/providers/samsara.md +57 -25
- package/docs/providers/verification-matrix.md +2 -0
- package/docs/services/README.md +4 -0
- package/examples/ts/README.md +67 -1
- package/gen/README.md +8 -0
- package/gen/ts/common/metadata/audit_pb.d.ts +84 -0
- package/gen/ts/common/metadata/audit_pb.js +27 -0
- package/gen/ts/common/metadata/source_pb.d.ts +128 -0
- package/gen/ts/common/metadata/source_pb.js +34 -0
- package/gen/ts/common/primitives/ids_pb.d.ts +81 -0
- package/gen/ts/common/primitives/ids_pb.js +33 -0
- package/gen/ts/common/primitives/location_pb.d.ts +91 -0
- package/gen/ts/common/primitives/location_pb.js +33 -0
- package/gen/ts/common/primitives/time_pb.d.ts +82 -0
- package/gen/ts/common/primitives/time_pb.js +34 -0
- package/gen/ts/common/units/measurements_pb.d.ts +102 -0
- package/gen/ts/common/units/measurements_pb.js +47 -0
- package/gen/ts/logistics/asset_location_pb.d.ts +64 -0
- package/gen/ts/logistics/asset_location_pb.js +23 -0
- package/gen/ts/logistics/asset_pb.d.ts +93 -0
- package/gen/ts/logistics/asset_pb.js +22 -0
- package/gen/ts/logistics/carrier_pb.d.ts +67 -0
- package/gen/ts/logistics/carrier_pb.js +21 -0
- package/gen/ts/logistics/data_consent_pb.d.ts +89 -0
- package/gen/ts/logistics/data_consent_pb.js +23 -0
- package/gen/ts/logistics/driver_pb.d.ts +109 -0
- package/gen/ts/logistics/driver_pb.js +23 -0
- package/gen/ts/logistics/dvir_pb.d.ts +132 -0
- package/gen/ts/logistics/dvir_pb.js +30 -0
- package/gen/ts/logistics/enums_pb.d.ts +837 -0
- package/gen/ts/logistics/enums_pb.js +264 -0
- package/gen/ts/logistics/gps_location_pb.d.ts +85 -0
- package/gen/ts/logistics/gps_location_pb.js +24 -0
- package/gen/ts/logistics/hos_daily_summary_pb.d.ts +139 -0
- package/gen/ts/logistics/hos_daily_summary_pb.js +32 -0
- package/gen/ts/logistics/hos_event_pb.d.ts +159 -0
- package/gen/ts/logistics/hos_event_pb.js +32 -0
- package/gen/ts/logistics/ifta_trip_pb.d.ts +85 -0
- package/gen/ts/logistics/ifta_trip_pb.js +24 -0
- package/gen/ts/logistics/safety_event_pb.d.ts +96 -0
- package/gen/ts/logistics/safety_event_pb.js +25 -0
- package/gen/ts/logistics/vehicle_assignment_pb.d.ts +91 -0
- package/gen/ts/logistics/vehicle_assignment_pb.js +29 -0
- package/gen/ts/logistics/vehicle_pb.d.ts +98 -0
- package/gen/ts/logistics/vehicle_pb.js +22 -0
- package/gen/ts/providers/eld/geotab/contracts_pb.d.ts +453 -0
- package/gen/ts/providers/eld/geotab/contracts_pb.js +70 -0
- package/gen/ts/providers/eld/keeptruckin/contracts_pb.d.ts +443 -0
- package/gen/ts/providers/eld/keeptruckin/contracts_pb.js +70 -0
- package/gen/ts/providers/eld/motive/contracts_pb.d.ts +468 -0
- package/gen/ts/providers/eld/motive/contracts_pb.js +70 -0
- package/gen/ts/providers/eld/samsara/contracts_pb.d.ts +474 -0
- package/gen/ts/providers/eld/samsara/contracts_pb.js +71 -0
- package/gen/ts/providers/eld/shared/common_pb.d.ts +752 -0
- package/gen/ts/providers/eld/shared/common_pb.js +113 -0
- package/gen/ts/providers/telematics/fleet_complete/contracts_pb.d.ts +46 -0
- package/gen/ts/providers/telematics/fleet_complete/contracts_pb.js +20 -0
- package/gen/ts/providers/telematics/fourkites/contracts_pb.d.ts +46 -0
- package/gen/ts/providers/telematics/fourkites/contracts_pb.js +20 -0
- package/gen/ts/providers/telematics/project44/contracts_pb.d.ts +46 -0
- package/gen/ts/providers/telematics/project44/contracts_pb.js +20 -0
- package/gen/ts/providers/telematics/shared/common_pb.d.ts +192 -0
- package/gen/ts/providers/telematics/shared/common_pb.js +43 -0
- package/gen/ts/providers/telematics/verizon_connect/contracts_pb.d.ts +46 -0
- package/gen/ts/providers/telematics/verizon_connect/contracts_pb.js +20 -0
- package/gen/ts/services/ingestion/service_pb.d.ts +128 -0
- package/gen/ts/services/ingestion/service_pb.js +40 -0
- package/gen/ts/services/normalization/service_pb.d.ts +201 -0
- package/gen/ts/services/normalization/service_pb.js +53 -0
- package/gen/ts/services/query/service_pb.d.ts +1018 -0
- package/gen/ts/services/query/service_pb.js +278 -0
- package/gen/ts/services/sync/service_pb.d.ts +361 -0
- package/gen/ts/services/sync/service_pb.js +97 -0
- package/gen/ts/v1/openeld_pb.d.ts +11 -0
- package/gen/ts/v1/openeld_pb.js +46 -0
- package/package.json +45 -11
- package/src/clients/.gitkeep +0 -0
- package/src/fixture-normalization.ts +0 -471
- package/src/generated/README.md +0 -3
- package/src/generated/ts/.gitkeep +0 -0
- package/src/index.ts +0 -1
- package/src/mappers/.gitkeep +0 -0
- package/src/registry/.gitkeep +0 -0
- /package/{src/adapters/providers → gen/ts}/.gitkeep +0 -0
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.11.0
|
|
2
|
+
// @generated from file logistics/asset_location.proto (package openeld.logistics.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
7
|
+
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
8
|
+
import type { GeoPoint } from "../common/primitives/location_pb";
|
|
9
|
+
import type { SourceRecord } from "../common/metadata/source_pb";
|
|
10
|
+
import type { AuditMetadata } from "../common/metadata/audit_pb";
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Describes the file logistics/asset_location.proto.
|
|
14
|
+
*/
|
|
15
|
+
export declare const file_logistics_asset_location: GenFile;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* * Represents a time-stamped asset location and optional linkage to a powered vehicle.
|
|
19
|
+
*
|
|
20
|
+
* @generated from message openeld.logistics.v1.AssetLocation
|
|
21
|
+
*/
|
|
22
|
+
export declare type AssetLocation = Message<"openeld.logistics.v1.AssetLocation"> & {
|
|
23
|
+
/**
|
|
24
|
+
* @generated from field: string asset_location_id = 1;
|
|
25
|
+
*/
|
|
26
|
+
assetLocationId: string;
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* @generated from field: string asset_id = 2;
|
|
30
|
+
*/
|
|
31
|
+
assetId: string;
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* @generated from field: google.protobuf.Timestamp timestamp = 3;
|
|
35
|
+
*/
|
|
36
|
+
timestamp?: Timestamp;
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* @generated from field: openeld.common.primitives.v1.GeoPoint position = 4;
|
|
40
|
+
*/
|
|
41
|
+
position?: GeoPoint;
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* @generated from field: optional string linked_vehicle_id = 5;
|
|
45
|
+
*/
|
|
46
|
+
linkedVehicleId?: string;
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* @generated from field: optional openeld.common.metadata.v1.SourceRecord source = 20;
|
|
50
|
+
*/
|
|
51
|
+
source?: SourceRecord;
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* @generated from field: optional openeld.common.metadata.v1.AuditMetadata audit = 21;
|
|
55
|
+
*/
|
|
56
|
+
audit?: AuditMetadata;
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Describes the message openeld.logistics.v1.AssetLocation.
|
|
61
|
+
* Use `create(AssetLocationSchema)` to create a new message.
|
|
62
|
+
*/
|
|
63
|
+
export declare const AssetLocationSchema: GenMessage<AssetLocation>;
|
|
64
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.11.0
|
|
2
|
+
// @generated from file logistics/asset_location.proto (package openeld.logistics.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import { file_common_metadata_audit } from "../common/metadata/audit_pb";
|
|
7
|
+
import { file_common_metadata_source } from "../common/metadata/source_pb";
|
|
8
|
+
import { file_common_primitives_location } from "../common/primitives/location_pb";
|
|
9
|
+
import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* Describes the file logistics/asset_location.proto.
|
|
13
|
+
*/
|
|
14
|
+
export const file_logistics_asset_location = /*@__PURE__*/
|
|
15
|
+
fileDesc("Ch5sb2dpc3RpY3MvYXNzZXRfbG9jYXRpb24ucHJvdG8SFG9wZW5lbGQubG9naXN0aWNzLnYxIu4CCg1Bc3NldExvY2F0aW9uEhkKEWFzc2V0X2xvY2F0aW9uX2lkGAEgASgJEhAKCGFzc2V0X2lkGAIgASgJEi0KCXRpbWVzdGFtcBgDIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASOAoIcG9zaXRpb24YBCABKAsyJi5vcGVuZWxkLmNvbW1vbi5wcmltaXRpdmVzLnYxLkdlb1BvaW50Eh4KEWxpbmtlZF92ZWhpY2xlX2lkGAUgASgJSACIAQESPQoGc291cmNlGBQgASgLMigub3BlbmVsZC5jb21tb24ubWV0YWRhdGEudjEuU291cmNlUmVjb3JkSAGIAQESPQoFYXVkaXQYFSABKAsyKS5vcGVuZWxkLmNvbW1vbi5tZXRhZGF0YS52MS5BdWRpdE1ldGFkYXRhSAKIAQFCFAoSX2xpbmtlZF92ZWhpY2xlX2lkQgkKB19zb3VyY2VCCAoGX2F1ZGl0YgZwcm90bzM", [file_common_metadata_audit, file_common_metadata_source, file_common_primitives_location, file_google_protobuf_timestamp]);
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Describes the message openeld.logistics.v1.AssetLocation.
|
|
19
|
+
* Use `create(AssetLocationSchema)` to create a new message.
|
|
20
|
+
*/
|
|
21
|
+
export const AssetLocationSchema = /*@__PURE__*/
|
|
22
|
+
messageDesc(file_logistics_asset_location, 0);
|
|
23
|
+
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.11.0
|
|
2
|
+
// @generated from file logistics/asset.proto (package openeld.logistics.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
7
|
+
import type { AssetStatus, AssetType } from "./enums_pb";
|
|
8
|
+
import type { SourceRecord } from "../common/metadata/source_pb";
|
|
9
|
+
import type { AuditMetadata } from "../common/metadata/audit_pb";
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* Describes the file logistics/asset.proto.
|
|
13
|
+
*/
|
|
14
|
+
export declare const file_logistics_asset: GenFile;
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* * Represents a non-powered or auxiliary asset such as a trailer or chassis.
|
|
18
|
+
*
|
|
19
|
+
* @generated from message openeld.logistics.v1.Asset
|
|
20
|
+
*/
|
|
21
|
+
export declare type Asset = Message<"openeld.logistics.v1.Asset"> & {
|
|
22
|
+
/**
|
|
23
|
+
* @generated from field: string asset_id = 1;
|
|
24
|
+
*/
|
|
25
|
+
assetId: string;
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* @generated from field: string carrier_id = 2;
|
|
29
|
+
*/
|
|
30
|
+
carrierId: string;
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* @generated from field: openeld.logistics.v1.AssetType asset_type = 3;
|
|
34
|
+
*/
|
|
35
|
+
assetType: AssetType;
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* @generated from field: string asset_number = 4;
|
|
39
|
+
*/
|
|
40
|
+
assetNumber: string;
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* @generated from field: optional string vin = 5;
|
|
44
|
+
*/
|
|
45
|
+
vin?: string;
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* @generated from field: optional string make = 6;
|
|
49
|
+
*/
|
|
50
|
+
make?: string;
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* @generated from field: optional string model = 7;
|
|
54
|
+
*/
|
|
55
|
+
model?: string;
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* @generated from field: optional int32 year = 8;
|
|
59
|
+
*/
|
|
60
|
+
year?: number;
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* @generated from field: optional string license_plate = 9;
|
|
64
|
+
*/
|
|
65
|
+
licensePlate?: string;
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* @generated from field: optional string license_state = 10;
|
|
69
|
+
*/
|
|
70
|
+
licenseState?: string;
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* @generated from field: openeld.logistics.v1.AssetStatus status = 11;
|
|
74
|
+
*/
|
|
75
|
+
status: AssetStatus;
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* @generated from field: optional openeld.common.metadata.v1.SourceRecord source = 20;
|
|
79
|
+
*/
|
|
80
|
+
source?: SourceRecord;
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* @generated from field: optional openeld.common.metadata.v1.AuditMetadata audit = 21;
|
|
84
|
+
*/
|
|
85
|
+
audit?: AuditMetadata;
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* Describes the message openeld.logistics.v1.Asset.
|
|
90
|
+
* Use `create(AssetSchema)` to create a new message.
|
|
91
|
+
*/
|
|
92
|
+
export declare const AssetSchema: GenMessage<Asset>;
|
|
93
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.11.0
|
|
2
|
+
// @generated from file logistics/asset.proto (package openeld.logistics.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import { file_common_metadata_audit } from "../common/metadata/audit_pb";
|
|
7
|
+
import { file_common_metadata_source } from "../common/metadata/source_pb";
|
|
8
|
+
import { file_logistics_enums } from "./enums_pb";
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Describes the file logistics/asset.proto.
|
|
12
|
+
*/
|
|
13
|
+
export const file_logistics_asset = /*@__PURE__*/
|
|
14
|
+
fileDesc("ChVsb2dpc3RpY3MvYXNzZXQucHJvdG8SFG9wZW5lbGQubG9naXN0aWNzLnYxIooECgVBc3NldBIQCghhc3NldF9pZBgBIAEoCRISCgpjYXJyaWVyX2lkGAIgASgJEjMKCmFzc2V0X3R5cGUYAyABKA4yHy5vcGVuZWxkLmxvZ2lzdGljcy52MS5Bc3NldFR5cGUSFAoMYXNzZXRfbnVtYmVyGAQgASgJEhAKA3ZpbhgFIAEoCUgAiAEBEhEKBG1ha2UYBiABKAlIAYgBARISCgVtb2RlbBgHIAEoCUgCiAEBEhEKBHllYXIYCCABKAVIA4gBARIaCg1saWNlbnNlX3BsYXRlGAkgASgJSASIAQESGgoNbGljZW5zZV9zdGF0ZRgKIAEoCUgFiAEBEjEKBnN0YXR1cxgLIAEoDjIhLm9wZW5lbGQubG9naXN0aWNzLnYxLkFzc2V0U3RhdHVzEj0KBnNvdXJjZRgUIAEoCzIoLm9wZW5lbGQuY29tbW9uLm1ldGFkYXRhLnYxLlNvdXJjZVJlY29yZEgGiAEBEj0KBWF1ZGl0GBUgASgLMikub3BlbmVsZC5jb21tb24ubWV0YWRhdGEudjEuQXVkaXRNZXRhZGF0YUgHiAEBQgYKBF92aW5CBwoFX21ha2VCCAoGX21vZGVsQgcKBV95ZWFyQhAKDl9saWNlbnNlX3BsYXRlQhAKDl9saWNlbnNlX3N0YXRlQgkKB19zb3VyY2VCCAoGX2F1ZGl0YgZwcm90bzM", [file_common_metadata_audit, file_common_metadata_source, file_logistics_enums]);
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Describes the message openeld.logistics.v1.Asset.
|
|
18
|
+
* Use `create(AssetSchema)` to create a new message.
|
|
19
|
+
*/
|
|
20
|
+
export const AssetSchema = /*@__PURE__*/
|
|
21
|
+
messageDesc(file_logistics_asset, 0);
|
|
22
|
+
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.11.0
|
|
2
|
+
// @generated from file logistics/carrier.proto (package openeld.logistics.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
7
|
+
import type { SourceRecord } from "../common/metadata/source_pb";
|
|
8
|
+
import type { AuditMetadata } from "../common/metadata/audit_pb";
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Describes the file logistics/carrier.proto.
|
|
12
|
+
*/
|
|
13
|
+
export declare const file_logistics_carrier: GenFile;
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* * Represents a motor carrier in the normalized logistics model.
|
|
17
|
+
*
|
|
18
|
+
* @generated from message openeld.logistics.v1.Carrier
|
|
19
|
+
*/
|
|
20
|
+
export declare type Carrier = Message<"openeld.logistics.v1.Carrier"> & {
|
|
21
|
+
/**
|
|
22
|
+
* @generated from field: string carrier_id = 1;
|
|
23
|
+
*/
|
|
24
|
+
carrierId: string;
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* @generated from field: string usdot_number = 2;
|
|
28
|
+
*/
|
|
29
|
+
usdotNumber: string;
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* @generated from field: optional string mc_number = 3;
|
|
33
|
+
*/
|
|
34
|
+
mcNumber?: string;
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* @generated from field: string name = 4;
|
|
38
|
+
*/
|
|
39
|
+
name: string;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* @generated from field: optional string main_office_address = 5;
|
|
43
|
+
*/
|
|
44
|
+
mainOfficeAddress?: string;
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* @generated from field: string home_terminal_timezone = 6;
|
|
48
|
+
*/
|
|
49
|
+
homeTerminalTimezone: string;
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* @generated from field: optional openeld.common.metadata.v1.SourceRecord source = 20;
|
|
53
|
+
*/
|
|
54
|
+
source?: SourceRecord;
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* @generated from field: optional openeld.common.metadata.v1.AuditMetadata audit = 21;
|
|
58
|
+
*/
|
|
59
|
+
audit?: AuditMetadata;
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* Describes the message openeld.logistics.v1.Carrier.
|
|
64
|
+
* Use `create(CarrierSchema)` to create a new message.
|
|
65
|
+
*/
|
|
66
|
+
export declare const CarrierSchema: GenMessage<Carrier>;
|
|
67
|
+
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.11.0
|
|
2
|
+
// @generated from file logistics/carrier.proto (package openeld.logistics.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import { file_common_metadata_audit } from "../common/metadata/audit_pb";
|
|
7
|
+
import { file_common_metadata_source } from "../common/metadata/source_pb";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Describes the file logistics/carrier.proto.
|
|
11
|
+
*/
|
|
12
|
+
export const file_logistics_carrier = /*@__PURE__*/
|
|
13
|
+
fileDesc("Chdsb2dpc3RpY3MvY2Fycmllci5wcm90bxIUb3BlbmVsZC5sb2dpc3RpY3MudjEi1AIKB0NhcnJpZXISEgoKY2Fycmllcl9pZBgBIAEoCRIUCgx1c2RvdF9udW1iZXIYAiABKAkSFgoJbWNfbnVtYmVyGAMgASgJSACIAQESDAoEbmFtZRgEIAEoCRIgChNtYWluX29mZmljZV9hZGRyZXNzGAUgASgJSAGIAQESHgoWaG9tZV90ZXJtaW5hbF90aW1lem9uZRgGIAEoCRI9CgZzb3VyY2UYFCABKAsyKC5vcGVuZWxkLmNvbW1vbi5tZXRhZGF0YS52MS5Tb3VyY2VSZWNvcmRIAogBARI9CgVhdWRpdBgVIAEoCzIpLm9wZW5lbGQuY29tbW9uLm1ldGFkYXRhLnYxLkF1ZGl0TWV0YWRhdGFIA4gBAUIMCgpfbWNfbnVtYmVyQhYKFF9tYWluX29mZmljZV9hZGRyZXNzQgkKB19zb3VyY2VCCAoGX2F1ZGl0YgZwcm90bzM", [file_common_metadata_audit, file_common_metadata_source]);
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Describes the message openeld.logistics.v1.Carrier.
|
|
17
|
+
* Use `create(CarrierSchema)` to create a new message.
|
|
18
|
+
*/
|
|
19
|
+
export const CarrierSchema = /*@__PURE__*/
|
|
20
|
+
messageDesc(file_logistics_carrier, 0);
|
|
21
|
+
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.11.0
|
|
2
|
+
// @generated from file logistics/data_consent.proto (package openeld.logistics.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
7
|
+
import type { ConsentMethod, ConsentStatus, DataAccessScope } from "./enums_pb";
|
|
8
|
+
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
9
|
+
import type { SourceRecord } from "../common/metadata/source_pb";
|
|
10
|
+
import type { AuditMetadata } from "../common/metadata/audit_pb";
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Describes the file logistics/data_consent.proto.
|
|
14
|
+
*/
|
|
15
|
+
export declare const file_logistics_data_consent: GenFile;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* * Represents a carrier-granted consent for a platform to access specific data scopes.
|
|
19
|
+
*
|
|
20
|
+
* @generated from message openeld.logistics.v1.DataConsent
|
|
21
|
+
*/
|
|
22
|
+
export declare type DataConsent = Message<"openeld.logistics.v1.DataConsent"> & {
|
|
23
|
+
/**
|
|
24
|
+
* @generated from field: string consent_id = 1;
|
|
25
|
+
*/
|
|
26
|
+
consentId: string;
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* @generated from field: string carrier_id = 2;
|
|
30
|
+
*/
|
|
31
|
+
carrierId: string;
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* @generated from field: string platform_id = 3;
|
|
35
|
+
*/
|
|
36
|
+
platformId: string;
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* @generated from field: repeated openeld.logistics.v1.DataAccessScope granted_scopes = 4;
|
|
40
|
+
*/
|
|
41
|
+
grantedScopes: DataAccessScope[];
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* @generated from field: google.protobuf.Timestamp granted_at = 5;
|
|
45
|
+
*/
|
|
46
|
+
grantedAt?: Timestamp;
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* @generated from field: optional google.protobuf.Timestamp revoked_at = 6;
|
|
50
|
+
*/
|
|
51
|
+
revokedAt?: Timestamp;
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* @generated from field: optional google.protobuf.Timestamp expires_at = 7;
|
|
55
|
+
*/
|
|
56
|
+
expiresAt?: Timestamp;
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* @generated from field: openeld.logistics.v1.ConsentStatus status = 8;
|
|
60
|
+
*/
|
|
61
|
+
status: ConsentStatus;
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* @generated from field: openeld.logistics.v1.ConsentMethod consent_method = 9;
|
|
65
|
+
*/
|
|
66
|
+
consentMethod: ConsentMethod;
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* @generated from field: optional string external_consent_reference = 10;
|
|
70
|
+
*/
|
|
71
|
+
externalConsentReference?: string;
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* @generated from field: optional openeld.common.metadata.v1.SourceRecord source = 20;
|
|
75
|
+
*/
|
|
76
|
+
source?: SourceRecord;
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* @generated from field: optional openeld.common.metadata.v1.AuditMetadata audit = 21;
|
|
80
|
+
*/
|
|
81
|
+
audit?: AuditMetadata;
|
|
82
|
+
};
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* Describes the message openeld.logistics.v1.DataConsent.
|
|
86
|
+
* Use `create(DataConsentSchema)` to create a new message.
|
|
87
|
+
*/
|
|
88
|
+
export declare const DataConsentSchema: GenMessage<DataConsent>;
|
|
89
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.11.0
|
|
2
|
+
// @generated from file logistics/data_consent.proto (package openeld.logistics.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import { file_common_metadata_audit } from "../common/metadata/audit_pb";
|
|
7
|
+
import { file_common_metadata_source } from "../common/metadata/source_pb";
|
|
8
|
+
import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
9
|
+
import { file_logistics_enums } from "./enums_pb";
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* Describes the file logistics/data_consent.proto.
|
|
13
|
+
*/
|
|
14
|
+
export const file_logistics_data_consent = /*@__PURE__*/
|
|
15
|
+
fileDesc("Chxsb2dpc3RpY3MvZGF0YV9jb25zZW50LnByb3RvEhRvcGVuZWxkLmxvZ2lzdGljcy52MSKOBQoLRGF0YUNvbnNlbnQSEgoKY29uc2VudF9pZBgBIAEoCRISCgpjYXJyaWVyX2lkGAIgASgJEhMKC3BsYXRmb3JtX2lkGAMgASgJEj0KDmdyYW50ZWRfc2NvcGVzGAQgAygOMiUub3BlbmVsZC5sb2dpc3RpY3MudjEuRGF0YUFjY2Vzc1Njb3BlEi4KCmdyYW50ZWRfYXQYBSABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEjMKCnJldm9rZWRfYXQYBiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wSACIAQESMwoKZXhwaXJlc19hdBgHIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXBIAYgBARIzCgZzdGF0dXMYCCABKA4yIy5vcGVuZWxkLmxvZ2lzdGljcy52MS5Db25zZW50U3RhdHVzEjsKDmNvbnNlbnRfbWV0aG9kGAkgASgOMiMub3BlbmVsZC5sb2dpc3RpY3MudjEuQ29uc2VudE1ldGhvZBInChpleHRlcm5hbF9jb25zZW50X3JlZmVyZW5jZRgKIAEoCUgCiAEBEj0KBnNvdXJjZRgUIAEoCzIoLm9wZW5lbGQuY29tbW9uLm1ldGFkYXRhLnYxLlNvdXJjZVJlY29yZEgDiAEBEj0KBWF1ZGl0GBUgASgLMikub3BlbmVsZC5jb21tb24ubWV0YWRhdGEudjEuQXVkaXRNZXRhZGF0YUgEiAEBQg0KC19yZXZva2VkX2F0Qg0KC19leHBpcmVzX2F0Qh0KG19leHRlcm5hbF9jb25zZW50X3JlZmVyZW5jZUIJCgdfc291cmNlQggKBl9hdWRpdGIGcHJvdG8z", [file_common_metadata_audit, file_common_metadata_source, file_google_protobuf_timestamp, file_logistics_enums]);
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Describes the message openeld.logistics.v1.DataConsent.
|
|
19
|
+
* Use `create(DataConsentSchema)` to create a new message.
|
|
20
|
+
*/
|
|
21
|
+
export const DataConsentSchema = /*@__PURE__*/
|
|
22
|
+
messageDesc(file_logistics_data_consent, 0);
|
|
23
|
+
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.11.0
|
|
2
|
+
// @generated from file logistics/driver.proto (package openeld.logistics.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
7
|
+
import type { DriverStatus, HosRuleset } from "./enums_pb";
|
|
8
|
+
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
9
|
+
import type { SourceRecord } from "../common/metadata/source_pb";
|
|
10
|
+
import type { AuditMetadata } from "../common/metadata/audit_pb";
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Describes the file logistics/driver.proto.
|
|
14
|
+
*/
|
|
15
|
+
export declare const file_logistics_driver: GenFile;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* * Represents an individual operating under a carrier.
|
|
19
|
+
*
|
|
20
|
+
* @generated from message openeld.logistics.v1.Driver
|
|
21
|
+
*/
|
|
22
|
+
export declare type Driver = Message<"openeld.logistics.v1.Driver"> & {
|
|
23
|
+
/**
|
|
24
|
+
* @generated from field: string driver_id = 1;
|
|
25
|
+
*/
|
|
26
|
+
driverId: string;
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* @generated from field: string carrier_id = 2;
|
|
30
|
+
*/
|
|
31
|
+
carrierId: string;
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* @generated from field: string first_name = 3;
|
|
35
|
+
*/
|
|
36
|
+
firstName: string;
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* @generated from field: string last_name = 4;
|
|
40
|
+
*/
|
|
41
|
+
lastName: string;
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* @generated from field: optional string license_number = 5;
|
|
45
|
+
*/
|
|
46
|
+
licenseNumber?: string;
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* @generated from field: optional string license_state = 6;
|
|
50
|
+
*/
|
|
51
|
+
licenseState?: string;
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* @generated from field: bool eld_exempt = 7;
|
|
55
|
+
*/
|
|
56
|
+
eldExempt: boolean;
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* @generated from field: openeld.logistics.v1.HosRuleset hos_ruleset = 8;
|
|
60
|
+
*/
|
|
61
|
+
hosRuleset: HosRuleset;
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* @generated from field: openeld.logistics.v1.DriverStatus status = 9;
|
|
65
|
+
*/
|
|
66
|
+
status: DriverStatus;
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* @generated from field: optional string email = 10;
|
|
70
|
+
*/
|
|
71
|
+
email?: string;
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* @generated from field: optional string phone = 11;
|
|
75
|
+
*/
|
|
76
|
+
phone?: string;
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* @generated from field: optional string username = 12;
|
|
80
|
+
*/
|
|
81
|
+
username?: string;
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* @generated from field: optional google.protobuf.Timestamp created_at = 13;
|
|
85
|
+
*/
|
|
86
|
+
createdAt?: Timestamp;
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* @generated from field: optional google.protobuf.Timestamp updated_at = 14;
|
|
90
|
+
*/
|
|
91
|
+
updatedAt?: Timestamp;
|
|
92
|
+
|
|
93
|
+
/**
|
|
94
|
+
* @generated from field: optional openeld.common.metadata.v1.SourceRecord source = 20;
|
|
95
|
+
*/
|
|
96
|
+
source?: SourceRecord;
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* @generated from field: optional openeld.common.metadata.v1.AuditMetadata audit = 21;
|
|
100
|
+
*/
|
|
101
|
+
audit?: AuditMetadata;
|
|
102
|
+
};
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* Describes the message openeld.logistics.v1.Driver.
|
|
106
|
+
* Use `create(DriverSchema)` to create a new message.
|
|
107
|
+
*/
|
|
108
|
+
export declare const DriverSchema: GenMessage<Driver>;
|
|
109
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.11.0
|
|
2
|
+
// @generated from file logistics/driver.proto (package openeld.logistics.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import { file_common_metadata_audit } from "../common/metadata/audit_pb";
|
|
7
|
+
import { file_common_metadata_source } from "../common/metadata/source_pb";
|
|
8
|
+
import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
9
|
+
import { file_logistics_enums } from "./enums_pb";
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* Describes the file logistics/driver.proto.
|
|
13
|
+
*/
|
|
14
|
+
export const file_logistics_driver = /*@__PURE__*/
|
|
15
|
+
fileDesc("ChZsb2dpc3RpY3MvZHJpdmVyLnByb3RvEhRvcGVuZWxkLmxvZ2lzdGljcy52MSKuBQoGRHJpdmVyEhEKCWRyaXZlcl9pZBgBIAEoCRISCgpjYXJyaWVyX2lkGAIgASgJEhIKCmZpcnN0X25hbWUYAyABKAkSEQoJbGFzdF9uYW1lGAQgASgJEhsKDmxpY2Vuc2VfbnVtYmVyGAUgASgJSACIAQESGgoNbGljZW5zZV9zdGF0ZRgGIAEoCUgBiAEBEhIKCmVsZF9leGVtcHQYByABKAgSNQoLaG9zX3J1bGVzZXQYCCABKA4yIC5vcGVuZWxkLmxvZ2lzdGljcy52MS5Ib3NSdWxlc2V0EjIKBnN0YXR1cxgJIAEoDjIiLm9wZW5lbGQubG9naXN0aWNzLnYxLkRyaXZlclN0YXR1cxISCgVlbWFpbBgKIAEoCUgCiAEBEhIKBXBob25lGAsgASgJSAOIAQESFQoIdXNlcm5hbWUYDCABKAlIBIgBARIzCgpjcmVhdGVkX2F0GA0gASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcEgFiAEBEjMKCnVwZGF0ZWRfYXQYDiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wSAaIAQESPQoGc291cmNlGBQgASgLMigub3BlbmVsZC5jb21tb24ubWV0YWRhdGEudjEuU291cmNlUmVjb3JkSAeIAQESPQoFYXVkaXQYFSABKAsyKS5vcGVuZWxkLmNvbW1vbi5tZXRhZGF0YS52MS5BdWRpdE1ldGFkYXRhSAiIAQFCEQoPX2xpY2Vuc2VfbnVtYmVyQhAKDl9saWNlbnNlX3N0YXRlQggKBl9lbWFpbEIICgZfcGhvbmVCCwoJX3VzZXJuYW1lQg0KC19jcmVhdGVkX2F0Qg0KC191cGRhdGVkX2F0QgkKB19zb3VyY2VCCAoGX2F1ZGl0YgZwcm90bzM", [file_common_metadata_audit, file_common_metadata_source, file_google_protobuf_timestamp, file_logistics_enums]);
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Describes the message openeld.logistics.v1.Driver.
|
|
19
|
+
* Use `create(DriverSchema)` to create a new message.
|
|
20
|
+
*/
|
|
21
|
+
export const DriverSchema = /*@__PURE__*/
|
|
22
|
+
messageDesc(file_logistics_driver, 0);
|
|
23
|
+
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.11.0
|
|
2
|
+
// @generated from file logistics/dvir.proto (package openeld.logistics.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
7
|
+
import type { InspectionType } from "./enums_pb";
|
|
8
|
+
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
9
|
+
import type { SourceRecord } from "../common/metadata/source_pb";
|
|
10
|
+
import type { AuditMetadata } from "../common/metadata/audit_pb";
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Describes the file logistics/dvir.proto.
|
|
14
|
+
*/
|
|
15
|
+
export declare const file_logistics_dvir: GenFile;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* * Represents a DVIR defect or inspection issue.
|
|
19
|
+
*
|
|
20
|
+
* @generated from message openeld.logistics.v1.DvirDefect
|
|
21
|
+
*/
|
|
22
|
+
export declare type DvirDefect = Message<"openeld.logistics.v1.DvirDefect"> & {
|
|
23
|
+
/**
|
|
24
|
+
* @generated from field: string defect_id = 1;
|
|
25
|
+
*/
|
|
26
|
+
defectId: string;
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* @generated from field: optional string code = 2;
|
|
30
|
+
*/
|
|
31
|
+
code?: string;
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* @generated from field: string title = 3;
|
|
35
|
+
*/
|
|
36
|
+
title: string;
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* @generated from field: optional string description = 4;
|
|
40
|
+
*/
|
|
41
|
+
description?: string;
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* @generated from field: bool repaired = 5;
|
|
45
|
+
*/
|
|
46
|
+
repaired: boolean;
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* @generated from field: bool repaired_verified = 6;
|
|
50
|
+
*/
|
|
51
|
+
repairedVerified: boolean;
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* @generated from field: optional string mechanic_notes = 7;
|
|
55
|
+
*/
|
|
56
|
+
mechanicNotes?: string;
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Describes the message openeld.logistics.v1.DvirDefect.
|
|
61
|
+
* Use `create(DvirDefectSchema)` to create a new message.
|
|
62
|
+
*/
|
|
63
|
+
export declare const DvirDefectSchema: GenMessage<DvirDefect>;
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* * Represents a normalized driver vehicle inspection report.
|
|
67
|
+
*
|
|
68
|
+
* @generated from message openeld.logistics.v1.Dvir
|
|
69
|
+
*/
|
|
70
|
+
export declare type Dvir = Message<"openeld.logistics.v1.Dvir"> & {
|
|
71
|
+
/**
|
|
72
|
+
* @generated from field: string dvir_id = 1;
|
|
73
|
+
*/
|
|
74
|
+
dvirId: string;
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* @generated from field: string driver_id = 2;
|
|
78
|
+
*/
|
|
79
|
+
driverId: string;
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* @generated from field: string vehicle_id = 3;
|
|
83
|
+
*/
|
|
84
|
+
vehicleId: string;
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
* @generated from field: openeld.logistics.v1.InspectionType inspection_type = 4;
|
|
88
|
+
*/
|
|
89
|
+
inspectionType: InspectionType;
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* @generated from field: google.protobuf.Timestamp inspection_time = 5;
|
|
93
|
+
*/
|
|
94
|
+
inspectionTime?: Timestamp;
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* @generated from field: bool is_safe_to_drive = 6;
|
|
98
|
+
*/
|
|
99
|
+
isSafeToDrive: boolean;
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* @generated from field: repeated openeld.logistics.v1.DvirDefect defects = 7;
|
|
103
|
+
*/
|
|
104
|
+
defects: DvirDefect[];
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
* @generated from field: optional string signature_driver = 8;
|
|
108
|
+
*/
|
|
109
|
+
signatureDriver?: string;
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* @generated from field: optional string mechanic_notes = 9;
|
|
113
|
+
*/
|
|
114
|
+
mechanicNotes?: string;
|
|
115
|
+
|
|
116
|
+
/**
|
|
117
|
+
* @generated from field: optional openeld.common.metadata.v1.SourceRecord source = 20;
|
|
118
|
+
*/
|
|
119
|
+
source?: SourceRecord;
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* @generated from field: optional openeld.common.metadata.v1.AuditMetadata audit = 21;
|
|
123
|
+
*/
|
|
124
|
+
audit?: AuditMetadata;
|
|
125
|
+
};
|
|
126
|
+
|
|
127
|
+
/**
|
|
128
|
+
* Describes the message openeld.logistics.v1.Dvir.
|
|
129
|
+
* Use `create(DvirSchema)` to create a new message.
|
|
130
|
+
*/
|
|
131
|
+
export declare const DvirSchema: GenMessage<Dvir>;
|
|
132
|
+
|