import { CasingAssembly } from "src/model/casingAssembly"; import { CasingIngestionItems } from "src/model/casingIngestionItems"; import { PhaseEnum } from "../../model/phaseEnum"; const ca1: CasingAssembly = { minInsideDiameter: { value: 8.625, unit: "inch" }, minOutsideDiameter: { value: 9.625, unit: "inch" }, maxOutsideDiameter: { value: 10.625, unit: "inch" }, topMeasuredDepth: { value: 0.0, unit: "foot" }, baseMeasuredDepth: { value: 0.0, unit: "foot" }, }; const ca2: CasingAssembly = { minInsideDiameter: { value: 11.625, unit: "inch" }, minOutsideDiameter: { value: 12.625, unit: "inch" }, maxOutsideDiameter: { value: 13.625, unit: "inch" }, topMeasuredDepth: { value: 14.0, unit: "foot" }, baseMeasuredDepth: { value: 15.0, unit: "foot" }, components: [ { topMeasuredDepth: { value: 14.0, unit: "meter" }, baseMeasuredDepth: { value: 15.0, unit: "meter" }, grade: "J-55", }, ], }; export const exampleCasingIngestionItems: CasingIngestionItems = { items: [ { wellboreAssetExternalId: "VOLVE:15/9-F-15 A", source: { sequenceExternalId: "some-sequence-1", sourceName: "VOLVE" }, phase: PhaseEnum.Planned, casingAssemblies: [ca1, ca2], }, { wellboreAssetExternalId: "VOLVE:15/9-F-15 A", source: { sequenceExternalId: "some-sequence-2", sourceName: "VOLVE" }, phase: PhaseEnum.Planned, casingAssemblies: [ca1, ca2], }, ], };