@empressaio/atom-contract 1.7.0 → 1.8.0
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/CHANGELOG.md +55 -0
- package/dist/actor-record.d.ts +208 -0
- package/dist/actor-record.d.ts.map +1 -0
- package/dist/actor-record.js +98 -0
- package/dist/actor-record.js.map +1 -0
- package/dist/conformance/common.d.ts +6 -0
- package/dist/conformance/common.d.ts.map +1 -1
- package/dist/conformance/common.js +5 -0
- package/dist/conformance/common.js.map +1 -1
- package/dist/conformance/index.d.ts +1 -1
- package/dist/conformance/index.d.ts.map +1 -1
- package/dist/conformance/index.js +1 -1
- package/dist/conformance/index.js.map +1 -1
- package/dist/encumbrances/administrative-rule.d.ts +2 -2
- package/dist/encumbrances/restriction-clause.d.ts +2 -2
- package/dist/encumbrances/restriction-corpus.d.ts +2 -2
- package/dist/index.d.ts +5 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/obligation.d.ts +54 -6
- package/dist/obligation.d.ts.map +1 -1
- package/dist/obligation.js +14 -0
- package/dist/obligation.js.map +1 -1
- package/dist/og/common.d.ts +2 -2
- package/dist/og/mineral-lease.d.ts +6 -6
- package/dist/og/ownership-interest.d.ts +8 -8
- package/dist/og/pad.d.ts +6 -6
- package/dist/og/production-timeseries.d.ts +4 -4
- package/dist/og/rrc-lease.d.ts +4 -4
- package/dist/og/well.d.ts +4 -4
- package/dist/og/zone.d.ts +2 -2
- package/dist/read-contract/index.d.ts +1 -0
- package/dist/read-contract/index.d.ts.map +1 -1
- package/dist/read-contract/index.js +1 -0
- package/dist/read-contract/index.js.map +1 -1
- package/dist/read-contract/reasoning-axes.d.ts +475 -0
- package/dist/read-contract/reasoning-axes.d.ts.map +1 -0
- package/dist/read-contract/reasoning-axes.js +75 -0
- package/dist/read-contract/reasoning-axes.js.map +1 -0
- package/dist/reasoning/fixtures.d.ts +63 -0
- package/dist/reasoning/fixtures.d.ts.map +1 -0
- package/dist/reasoning/fixtures.js +127 -0
- package/dist/reasoning/fixtures.js.map +1 -0
- package/dist/reasoning/index.d.ts +9 -0
- package/dist/reasoning/index.d.ts.map +1 -0
- package/dist/reasoning/index.js +9 -0
- package/dist/reasoning/index.js.map +1 -0
- package/dist/reasoning-chain.d.ts +177 -0
- package/dist/reasoning-chain.d.ts.map +1 -0
- package/dist/reasoning-chain.js +63 -0
- package/dist/reasoning-chain.js.map +1 -0
- package/dist/workspace/property-workspace.d.ts +6 -6
- package/package.json +5 -1
package/dist/obligation.d.ts
CHANGED
|
@@ -14,8 +14,10 @@ import { type WidthedConfidence } from "./read-contract/common.js";
|
|
|
14
14
|
* Obligation type discriminator. ADR-025 specifies O&G obligation types;
|
|
15
15
|
* additively extensible for other verticals (Mox facility obligations, etc.).
|
|
16
16
|
*/
|
|
17
|
-
export type ObligationType = "delay-rental" | "shut-in-royalty" | "minimum-royalty" | "bonus" | "rental" | "lease-expiration" | "continuous-development" | "pugh-release" | "other";
|
|
17
|
+
export type ObligationType = "delay-rental" | "shut-in-royalty" | "minimum-royalty" | "bonus" | "rental" | "lease-expiration" | "continuous-development" | "pugh-release" | "license-reference-royalty" | "license-revenue-share" | "other";
|
|
18
18
|
export declare const OBLIGATION_TYPES: ReadonlyArray<ObligationType>;
|
|
19
|
+
/** License royalty types require owedToActorDid; O&G types keep it optional. */
|
|
20
|
+
export declare const LICENSE_OBLIGATION_TYPES: ReadonlyArray<Extract<ObligationType, "license-reference-royalty" | "license-revenue-share">>;
|
|
19
21
|
/**
|
|
20
22
|
* Obligation status. Derived, never hand-asserted. Each status derivation is
|
|
21
23
|
* recorded as a procedure-execution atom (ADR-013).
|
|
@@ -48,7 +50,7 @@ export interface ObligationAtomInstance {
|
|
|
48
50
|
asOf?: string;
|
|
49
51
|
accessPolicy: AccessPolicy;
|
|
50
52
|
}
|
|
51
|
-
export declare const OBLIGATION_SCHEMA: z.ZodObject<{
|
|
53
|
+
export declare const OBLIGATION_SCHEMA: z.ZodEffects<z.ZodObject<{
|
|
52
54
|
entityType: z.ZodLiteral<"obligation">;
|
|
53
55
|
obligationDid: z.ZodEffects<z.ZodString, string, string>;
|
|
54
56
|
obligationType: z.ZodEnum<[ObligationType, ...ObligationType[]]>;
|
|
@@ -83,20 +85,20 @@ export declare const OBLIGATION_SCHEMA: z.ZodObject<{
|
|
|
83
85
|
accessPolicy: z.ZodEnum<["public-free", "public-paid", "platform-internal", "tenant-private", "tenant-shared"]>;
|
|
84
86
|
}, "strip", z.ZodTypeAny, {
|
|
85
87
|
accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
|
|
86
|
-
entityType: "obligation";
|
|
87
88
|
status: ObligationStatus;
|
|
89
|
+
entityType: "obligation";
|
|
90
|
+
sourceCitation: string;
|
|
91
|
+
extractedAt: string;
|
|
88
92
|
confidence: Readonly<{
|
|
89
93
|
estimate: number;
|
|
90
94
|
n: number;
|
|
91
95
|
intervalWidth: number;
|
|
92
96
|
provenance: "asserted" | "backtest" | "seed" | "live";
|
|
93
97
|
}>;
|
|
94
|
-
sourceCitation: string;
|
|
95
98
|
obligationDid: string;
|
|
96
99
|
obligationType: ObligationType;
|
|
97
100
|
anchorDid: string;
|
|
98
101
|
dueDate: string;
|
|
99
|
-
extractedAt: string;
|
|
100
102
|
anchorKind?: string | undefined;
|
|
101
103
|
owedToActorDid?: string | undefined;
|
|
102
104
|
owedToInterestDid?: string | undefined;
|
|
@@ -106,20 +108,66 @@ export declare const OBLIGATION_SCHEMA: z.ZodObject<{
|
|
|
106
108
|
asOf?: string | undefined;
|
|
107
109
|
}, {
|
|
108
110
|
accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
|
|
109
|
-
entityType: "obligation";
|
|
110
111
|
status: ObligationStatus;
|
|
112
|
+
entityType: "obligation";
|
|
113
|
+
sourceCitation: string;
|
|
114
|
+
extractedAt: string;
|
|
111
115
|
confidence: Readonly<{
|
|
112
116
|
estimate: number;
|
|
113
117
|
n: number;
|
|
114
118
|
intervalWidth: number;
|
|
115
119
|
provenance: "asserted" | "backtest" | "seed" | "live";
|
|
116
120
|
}>;
|
|
121
|
+
obligationDid: string;
|
|
122
|
+
obligationType: ObligationType;
|
|
123
|
+
anchorDid: string;
|
|
124
|
+
dueDate: string;
|
|
125
|
+
anchorKind?: string | undefined;
|
|
126
|
+
owedToActorDid?: string | undefined;
|
|
127
|
+
owedToInterestDid?: string | undefined;
|
|
128
|
+
recurrence?: string | undefined;
|
|
129
|
+
amount?: number | undefined;
|
|
130
|
+
graceTerms?: string | undefined;
|
|
131
|
+
asOf?: string | undefined;
|
|
132
|
+
}>, {
|
|
133
|
+
accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
|
|
134
|
+
status: ObligationStatus;
|
|
135
|
+
entityType: "obligation";
|
|
117
136
|
sourceCitation: string;
|
|
137
|
+
extractedAt: string;
|
|
138
|
+
confidence: Readonly<{
|
|
139
|
+
estimate: number;
|
|
140
|
+
n: number;
|
|
141
|
+
intervalWidth: number;
|
|
142
|
+
provenance: "asserted" | "backtest" | "seed" | "live";
|
|
143
|
+
}>;
|
|
118
144
|
obligationDid: string;
|
|
119
145
|
obligationType: ObligationType;
|
|
120
146
|
anchorDid: string;
|
|
121
147
|
dueDate: string;
|
|
148
|
+
anchorKind?: string | undefined;
|
|
149
|
+
owedToActorDid?: string | undefined;
|
|
150
|
+
owedToInterestDid?: string | undefined;
|
|
151
|
+
recurrence?: string | undefined;
|
|
152
|
+
amount?: number | undefined;
|
|
153
|
+
graceTerms?: string | undefined;
|
|
154
|
+
asOf?: string | undefined;
|
|
155
|
+
}, {
|
|
156
|
+
accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
|
|
157
|
+
status: ObligationStatus;
|
|
158
|
+
entityType: "obligation";
|
|
159
|
+
sourceCitation: string;
|
|
122
160
|
extractedAt: string;
|
|
161
|
+
confidence: Readonly<{
|
|
162
|
+
estimate: number;
|
|
163
|
+
n: number;
|
|
164
|
+
intervalWidth: number;
|
|
165
|
+
provenance: "asserted" | "backtest" | "seed" | "live";
|
|
166
|
+
}>;
|
|
167
|
+
obligationDid: string;
|
|
168
|
+
obligationType: ObligationType;
|
|
169
|
+
anchorDid: string;
|
|
170
|
+
dueDate: string;
|
|
123
171
|
anchorKind?: string | undefined;
|
|
124
172
|
owedToActorDid?: string | undefined;
|
|
125
173
|
owedToInterestDid?: string | undefined;
|
package/dist/obligation.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"obligation.d.ts","sourceRoot":"","sources":["../src/obligation.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACtD,OAAO,EAA6B,KAAK,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAG9F;;;GAGG;AACH,MAAM,MAAM,cAAc,GACtB,cAAc,GACd,iBAAiB,GACjB,iBAAiB,GACjB,OAAO,GACP,QAAQ,GACR,kBAAkB,GAClB,wBAAwB,GACxB,cAAc,
|
|
1
|
+
{"version":3,"file":"obligation.d.ts","sourceRoot":"","sources":["../src/obligation.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACtD,OAAO,EAA6B,KAAK,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAG9F;;;GAGG;AACH,MAAM,MAAM,cAAc,GACtB,cAAc,GACd,iBAAiB,GACjB,iBAAiB,GACjB,OAAO,GACP,QAAQ,GACR,kBAAkB,GAClB,wBAAwB,GACxB,cAAc,GAEd,2BAA2B,GAC3B,uBAAuB,GACvB,OAAO,CAAC;AAEZ,eAAO,MAAM,gBAAgB,EAAE,aAAa,CAAC,cAAc,CAY1D,CAAC;AAEF,gFAAgF;AAChF,eAAO,MAAM,wBAAwB,EAAE,aAAa,CAClD,OAAO,CAAC,cAAc,EAAE,2BAA2B,GAAG,uBAAuB,CAAC,CACtB,CAAC;AAE3D;;;GAGG;AACH,MAAM,MAAM,gBAAgB,GACxB,UAAU,GACV,KAAK,GACL,WAAW,GACX,YAAY,GACZ,UAAU,CAAC;AAEf,eAAO,MAAM,mBAAmB,EAAE,aAAa,CAAC,gBAAgB,CAM/D,CAAC;AAEF;;;;;;GAMG;AACH,MAAM,WAAW,sBAAsB;IACrC,UAAU,EAAE,YAAY,CAAC;IACzB,aAAa,EAAE,MAAM,CAAC;IACtB,cAAc,EAAE,cAAc,CAAC;IAC/B,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,gBAAgB,CAAC;IACzB,UAAU,EAAE,iBAAiB,CAAC;IAC9B,cAAc,EAAE,MAAM,CAAC;IACvB,WAAW,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,YAAY,EAAE,YAAY,CAAC;CAC5B;AAED,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqC5B,CAAC"}
|
package/dist/obligation.js
CHANGED
|
@@ -19,8 +19,12 @@ export const OBLIGATION_TYPES = [
|
|
|
19
19
|
"lease-expiration",
|
|
20
20
|
"continuous-development",
|
|
21
21
|
"pugh-release",
|
|
22
|
+
"license-reference-royalty",
|
|
23
|
+
"license-revenue-share",
|
|
22
24
|
"other",
|
|
23
25
|
];
|
|
26
|
+
/** License royalty types require owedToActorDid; O&G types keep it optional. */
|
|
27
|
+
export const LICENSE_OBLIGATION_TYPES = ["license-reference-royalty", "license-revenue-share"];
|
|
24
28
|
export const OBLIGATION_STATUSES = [
|
|
25
29
|
"upcoming",
|
|
26
30
|
"due",
|
|
@@ -51,5 +55,15 @@ export const OBLIGATION_SCHEMA = z.object({
|
|
|
51
55
|
extractedAt: z.string().min(1),
|
|
52
56
|
asOf: z.string().min(1).optional(),
|
|
53
57
|
accessPolicy: OG_ACCESS_POLICY_SCHEMA,
|
|
58
|
+
}).superRefine((data, ctx) => {
|
|
59
|
+
if (LICENSE_OBLIGATION_TYPES.includes(data.obligationType)) {
|
|
60
|
+
if (data.owedToActorDid === undefined || data.owedToActorDid.trim().length === 0) {
|
|
61
|
+
ctx.addIssue({
|
|
62
|
+
code: z.ZodIssueCode.custom,
|
|
63
|
+
message: "License obligation types require a non-empty owedToActorDid",
|
|
64
|
+
path: ["owedToActorDid"],
|
|
65
|
+
});
|
|
66
|
+
}
|
|
67
|
+
}
|
|
54
68
|
});
|
|
55
69
|
//# sourceMappingURL=obligation.js.map
|
package/dist/obligation.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"obligation.js","sourceRoot":"","sources":["../src/obligation.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,OAAO,EAAE,yBAAyB,EAA0B,MAAM,2BAA2B,CAAC;AAC9F,OAAO,EAAE,uBAAuB,EAAE,MAAM,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"obligation.js","sourceRoot":"","sources":["../src/obligation.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,OAAO,EAAE,yBAAyB,EAA0B,MAAM,2BAA2B,CAAC;AAC9F,OAAO,EAAE,uBAAuB,EAAE,MAAM,gBAAgB,CAAC;AAoBzD,MAAM,CAAC,MAAM,gBAAgB,GAAkC;IAC7D,cAAc;IACd,iBAAiB;IACjB,iBAAiB;IACjB,OAAO;IACP,QAAQ;IACR,kBAAkB;IAClB,wBAAwB;IACxB,cAAc;IACd,2BAA2B;IAC3B,uBAAuB;IACvB,OAAO;CACR,CAAC;AAEF,gFAAgF;AAChF,MAAM,CAAC,MAAM,wBAAwB,GAEjC,CAAC,2BAA2B,EAAE,uBAAuB,CAAC,CAAC;AAa3D,MAAM,CAAC,MAAM,mBAAmB,GAAoC;IAClE,UAAU;IACV,KAAK;IACL,WAAW;IACX,YAAY;IACZ,UAAU;CACX,CAAC;AA6BF,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,CAAC,MAAM,CAAC;IACxC,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,YAAY,CAAC;IACnC,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,GAAG,CAAC,CAAC,CAAC;SACN,MAAM,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,qBAAqB,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE;QAChD,OAAO,EAAE,qDAAqD;KAC/D,CAAC;IACJ,cAAc,EAAE,CAAC,CAAC,IAAI,CAAC,gBAAyD,CAAC;IACjF,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC5B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IACxC,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IAC5C,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IAC/C,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC1B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IACxC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IACxC,MAAM,EAAE,CAAC,CAAC,IAAI,CAAC,mBAAgE,CAAC;IAChF,UAAU,EAAE,yBAAyB;IACrC,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IACjC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC9B,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IAClC,YAAY,EAAE,uBAAuB;CACtC,CAAC,CAAC,WAAW,CAAC,CAAC,IAAI,EAAE,GAAG,EAAE,EAAE;IAC3B,IACE,wBAAwB,CAAC,QAAQ,CAC/B,IAAI,CAAC,cAA2D,CACjE,EACD,CAAC;QACD,IAAI,IAAI,CAAC,cAAc,KAAK,SAAS,IAAI,IAAI,CAAC,cAAc,CAAC,IAAI,EAAE,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;YACjF,GAAG,CAAC,QAAQ,CAAC;gBACX,IAAI,EAAE,CAAC,CAAC,YAAY,CAAC,MAAM;gBAC3B,OAAO,EAAE,6DAA6D;gBACtE,IAAI,EAAE,CAAC,gBAAgB,CAAC;aACzB,CAAC,CAAC;QACL,CAAC;IACH,CAAC;AACH,CAAC,CAAC,CAAC"}
|
package/dist/og/common.d.ts
CHANGED
|
@@ -159,6 +159,7 @@ export declare const CLAUSE_EXTRACT_SCHEMA: z.ZodObject<{
|
|
|
159
159
|
sourceInstrumentDid: z.ZodString;
|
|
160
160
|
pageRef: z.ZodOptional<z.ZodString>;
|
|
161
161
|
}, "strip", z.ZodTypeAny, {
|
|
162
|
+
sourceCitation: string;
|
|
162
163
|
clauseType: "shut-in" | "pugh" | "continuous-development" | "depth-severance";
|
|
163
164
|
extractedText: string;
|
|
164
165
|
confidence: Readonly<{
|
|
@@ -167,10 +168,10 @@ export declare const CLAUSE_EXTRACT_SCHEMA: z.ZodObject<{
|
|
|
167
168
|
intervalWidth: number;
|
|
168
169
|
provenance: "asserted" | "backtest" | "seed" | "live";
|
|
169
170
|
}>;
|
|
170
|
-
sourceCitation: string;
|
|
171
171
|
sourceInstrumentDid: string;
|
|
172
172
|
pageRef?: string | undefined;
|
|
173
173
|
}, {
|
|
174
|
+
sourceCitation: string;
|
|
174
175
|
clauseType: "shut-in" | "pugh" | "continuous-development" | "depth-severance";
|
|
175
176
|
extractedText: string;
|
|
176
177
|
confidence: Readonly<{
|
|
@@ -179,7 +180,6 @@ export declare const CLAUSE_EXTRACT_SCHEMA: z.ZodObject<{
|
|
|
179
180
|
intervalWidth: number;
|
|
180
181
|
provenance: "asserted" | "backtest" | "seed" | "live";
|
|
181
182
|
}>;
|
|
182
|
-
sourceCitation: string;
|
|
183
183
|
sourceInstrumentDid: string;
|
|
184
184
|
pageRef?: string | undefined;
|
|
185
185
|
}>;
|
|
@@ -62,6 +62,7 @@ export declare const MINERAL_LEASE_SCHEMA: z.ZodObject<{
|
|
|
62
62
|
sourceInstrumentDid: z.ZodString;
|
|
63
63
|
pageRef: z.ZodOptional<z.ZodString>;
|
|
64
64
|
}, "strip", z.ZodTypeAny, {
|
|
65
|
+
sourceCitation: string;
|
|
65
66
|
clauseType: "shut-in" | "pugh" | "continuous-development" | "depth-severance";
|
|
66
67
|
extractedText: string;
|
|
67
68
|
confidence: Readonly<{
|
|
@@ -70,10 +71,10 @@ export declare const MINERAL_LEASE_SCHEMA: z.ZodObject<{
|
|
|
70
71
|
intervalWidth: number;
|
|
71
72
|
provenance: "asserted" | "backtest" | "seed" | "live";
|
|
72
73
|
}>;
|
|
73
|
-
sourceCitation: string;
|
|
74
74
|
sourceInstrumentDid: string;
|
|
75
75
|
pageRef?: string | undefined;
|
|
76
76
|
}, {
|
|
77
|
+
sourceCitation: string;
|
|
77
78
|
clauseType: "shut-in" | "pugh" | "continuous-development" | "depth-severance";
|
|
78
79
|
extractedText: string;
|
|
79
80
|
confidence: Readonly<{
|
|
@@ -82,7 +83,6 @@ export declare const MINERAL_LEASE_SCHEMA: z.ZodObject<{
|
|
|
82
83
|
intervalWidth: number;
|
|
83
84
|
provenance: "asserted" | "backtest" | "seed" | "live";
|
|
84
85
|
}>;
|
|
85
|
-
sourceCitation: string;
|
|
86
86
|
sourceInstrumentDid: string;
|
|
87
87
|
pageRef?: string | undefined;
|
|
88
88
|
}>, "many">>;
|
|
@@ -90,8 +90,8 @@ export declare const MINERAL_LEASE_SCHEMA: z.ZodObject<{
|
|
|
90
90
|
status: z.ZodEnum<[MineralLeaseStatus, ...MineralLeaseStatus[]]>;
|
|
91
91
|
}, "strip", z.ZodTypeAny, {
|
|
92
92
|
accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
|
|
93
|
-
entityType: "mineral-lease";
|
|
94
93
|
status: MineralLeaseStatus;
|
|
94
|
+
entityType: "mineral-lease";
|
|
95
95
|
sourceCitation: string;
|
|
96
96
|
extractedAt: string;
|
|
97
97
|
leaseDid: string;
|
|
@@ -105,6 +105,7 @@ export declare const MINERAL_LEASE_SCHEMA: z.ZodObject<{
|
|
|
105
105
|
asOf?: string | undefined;
|
|
106
106
|
bonusPerAcre?: number | undefined;
|
|
107
107
|
clauseExtracts?: {
|
|
108
|
+
sourceCitation: string;
|
|
108
109
|
clauseType: "shut-in" | "pugh" | "continuous-development" | "depth-severance";
|
|
109
110
|
extractedText: string;
|
|
110
111
|
confidence: Readonly<{
|
|
@@ -113,14 +114,13 @@ export declare const MINERAL_LEASE_SCHEMA: z.ZodObject<{
|
|
|
113
114
|
intervalWidth: number;
|
|
114
115
|
provenance: "asserted" | "backtest" | "seed" | "live";
|
|
115
116
|
}>;
|
|
116
|
-
sourceCitation: string;
|
|
117
117
|
sourceInstrumentDid: string;
|
|
118
118
|
pageRef?: string | undefined;
|
|
119
119
|
}[] | undefined;
|
|
120
120
|
}, {
|
|
121
121
|
accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
|
|
122
|
-
entityType: "mineral-lease";
|
|
123
122
|
status: MineralLeaseStatus;
|
|
123
|
+
entityType: "mineral-lease";
|
|
124
124
|
sourceCitation: string;
|
|
125
125
|
extractedAt: string;
|
|
126
126
|
leaseDid: string;
|
|
@@ -134,6 +134,7 @@ export declare const MINERAL_LEASE_SCHEMA: z.ZodObject<{
|
|
|
134
134
|
asOf?: string | undefined;
|
|
135
135
|
bonusPerAcre?: number | undefined;
|
|
136
136
|
clauseExtracts?: {
|
|
137
|
+
sourceCitation: string;
|
|
137
138
|
clauseType: "shut-in" | "pugh" | "continuous-development" | "depth-severance";
|
|
138
139
|
extractedText: string;
|
|
139
140
|
confidence: Readonly<{
|
|
@@ -142,7 +143,6 @@ export declare const MINERAL_LEASE_SCHEMA: z.ZodObject<{
|
|
|
142
143
|
intervalWidth: number;
|
|
143
144
|
provenance: "asserted" | "backtest" | "seed" | "live";
|
|
144
145
|
}>;
|
|
145
|
-
sourceCitation: string;
|
|
146
146
|
sourceInstrumentDid: string;
|
|
147
147
|
pageRef?: string | undefined;
|
|
148
148
|
}[] | undefined;
|
|
@@ -66,14 +66,14 @@ export declare const OWNERSHIP_INTEREST_SCHEMA: z.ZodEffects<z.ZodObject<{
|
|
|
66
66
|
}, "strip", z.ZodTypeAny, {
|
|
67
67
|
accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
|
|
68
68
|
entityType: "ownership-interest";
|
|
69
|
+
sourceCitation: string;
|
|
70
|
+
extractedAt: string;
|
|
69
71
|
confidence: Readonly<{
|
|
70
72
|
estimate: number;
|
|
71
73
|
n: number;
|
|
72
74
|
intervalWidth: number;
|
|
73
75
|
provenance: "asserted" | "backtest" | "seed" | "live";
|
|
74
76
|
}>;
|
|
75
|
-
sourceCitation: string;
|
|
76
|
-
extractedAt: string;
|
|
77
77
|
interestDid: string;
|
|
78
78
|
interestType: InterestType;
|
|
79
79
|
ownerActorDid: string;
|
|
@@ -90,14 +90,14 @@ export declare const OWNERSHIP_INTEREST_SCHEMA: z.ZodEffects<z.ZodObject<{
|
|
|
90
90
|
}, {
|
|
91
91
|
accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
|
|
92
92
|
entityType: "ownership-interest";
|
|
93
|
+
sourceCitation: string;
|
|
94
|
+
extractedAt: string;
|
|
93
95
|
confidence: Readonly<{
|
|
94
96
|
estimate: number;
|
|
95
97
|
n: number;
|
|
96
98
|
intervalWidth: number;
|
|
97
99
|
provenance: "asserted" | "backtest" | "seed" | "live";
|
|
98
100
|
}>;
|
|
99
|
-
sourceCitation: string;
|
|
100
|
-
extractedAt: string;
|
|
101
101
|
interestDid: string;
|
|
102
102
|
interestType: InterestType;
|
|
103
103
|
ownerActorDid: string;
|
|
@@ -114,14 +114,14 @@ export declare const OWNERSHIP_INTEREST_SCHEMA: z.ZodEffects<z.ZodObject<{
|
|
|
114
114
|
}>, {
|
|
115
115
|
accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
|
|
116
116
|
entityType: "ownership-interest";
|
|
117
|
+
sourceCitation: string;
|
|
118
|
+
extractedAt: string;
|
|
117
119
|
confidence: Readonly<{
|
|
118
120
|
estimate: number;
|
|
119
121
|
n: number;
|
|
120
122
|
intervalWidth: number;
|
|
121
123
|
provenance: "asserted" | "backtest" | "seed" | "live";
|
|
122
124
|
}>;
|
|
123
|
-
sourceCitation: string;
|
|
124
|
-
extractedAt: string;
|
|
125
125
|
interestDid: string;
|
|
126
126
|
interestType: InterestType;
|
|
127
127
|
ownerActorDid: string;
|
|
@@ -138,14 +138,14 @@ export declare const OWNERSHIP_INTEREST_SCHEMA: z.ZodEffects<z.ZodObject<{
|
|
|
138
138
|
}, {
|
|
139
139
|
accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
|
|
140
140
|
entityType: "ownership-interest";
|
|
141
|
+
sourceCitation: string;
|
|
142
|
+
extractedAt: string;
|
|
141
143
|
confidence: Readonly<{
|
|
142
144
|
estimate: number;
|
|
143
145
|
n: number;
|
|
144
146
|
intervalWidth: number;
|
|
145
147
|
provenance: "asserted" | "backtest" | "seed" | "live";
|
|
146
148
|
}>;
|
|
147
|
-
sourceCitation: string;
|
|
148
|
-
extractedAt: string;
|
|
149
149
|
interestDid: string;
|
|
150
150
|
interestType: InterestType;
|
|
151
151
|
ownerActorDid: string;
|
package/dist/og/pad.d.ts
CHANGED
|
@@ -60,14 +60,15 @@ export declare const PAD_SCHEMA: z.ZodObject<{
|
|
|
60
60
|
}, "strip", z.ZodTypeAny, {
|
|
61
61
|
accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
|
|
62
62
|
entityType: "pad";
|
|
63
|
+
sourceCitation: string;
|
|
64
|
+
extractedAt: string;
|
|
63
65
|
confidence: Readonly<{
|
|
64
66
|
estimate: number;
|
|
65
67
|
n: number;
|
|
66
68
|
intervalWidth: number;
|
|
67
69
|
provenance: "asserted" | "backtest" | "seed" | "live";
|
|
68
70
|
}>;
|
|
69
|
-
|
|
70
|
-
extractedAt: string;
|
|
71
|
+
derivationMethod: string;
|
|
71
72
|
surfaceLocation: {
|
|
72
73
|
latitude: number;
|
|
73
74
|
longitude: number;
|
|
@@ -75,19 +76,19 @@ export declare const PAD_SCHEMA: z.ZodObject<{
|
|
|
75
76
|
};
|
|
76
77
|
padDid: string;
|
|
77
78
|
wellDids: string[];
|
|
78
|
-
derivationMethod: string;
|
|
79
79
|
asOf?: string | undefined;
|
|
80
80
|
}, {
|
|
81
81
|
accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
|
|
82
82
|
entityType: "pad";
|
|
83
|
+
sourceCitation: string;
|
|
84
|
+
extractedAt: string;
|
|
83
85
|
confidence: Readonly<{
|
|
84
86
|
estimate: number;
|
|
85
87
|
n: number;
|
|
86
88
|
intervalWidth: number;
|
|
87
89
|
provenance: "asserted" | "backtest" | "seed" | "live";
|
|
88
90
|
}>;
|
|
89
|
-
|
|
90
|
-
extractedAt: string;
|
|
91
|
+
derivationMethod: string;
|
|
91
92
|
surfaceLocation: {
|
|
92
93
|
latitude: number;
|
|
93
94
|
longitude: number;
|
|
@@ -95,7 +96,6 @@ export declare const PAD_SCHEMA: z.ZodObject<{
|
|
|
95
96
|
};
|
|
96
97
|
padDid: string;
|
|
97
98
|
wellDids: string[];
|
|
98
|
-
derivationMethod: string;
|
|
99
99
|
asOf?: string | undefined;
|
|
100
100
|
}>;
|
|
101
101
|
//# sourceMappingURL=pad.d.ts.map
|
|
@@ -70,9 +70,9 @@ export declare const PRODUCTION_TIMESERIES_SCHEMA: z.ZodEffects<z.ZodObject<{
|
|
|
70
70
|
accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
|
|
71
71
|
entityType: "production-timeseries";
|
|
72
72
|
sourceCitation: string;
|
|
73
|
+
extractedAt: string;
|
|
73
74
|
anchorDid: string;
|
|
74
75
|
anchorKind: AnchorKind;
|
|
75
|
-
extractedAt: string;
|
|
76
76
|
sourceAdapter: string;
|
|
77
77
|
streamDid: string;
|
|
78
78
|
streamKind: StreamKind;
|
|
@@ -91,9 +91,9 @@ export declare const PRODUCTION_TIMESERIES_SCHEMA: z.ZodEffects<z.ZodObject<{
|
|
|
91
91
|
accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
|
|
92
92
|
entityType: "production-timeseries";
|
|
93
93
|
sourceCitation: string;
|
|
94
|
+
extractedAt: string;
|
|
94
95
|
anchorDid: string;
|
|
95
96
|
anchorKind: AnchorKind;
|
|
96
|
-
extractedAt: string;
|
|
97
97
|
sourceAdapter: string;
|
|
98
98
|
streamDid: string;
|
|
99
99
|
streamKind: StreamKind;
|
|
@@ -112,9 +112,9 @@ export declare const PRODUCTION_TIMESERIES_SCHEMA: z.ZodEffects<z.ZodObject<{
|
|
|
112
112
|
accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
|
|
113
113
|
entityType: "production-timeseries";
|
|
114
114
|
sourceCitation: string;
|
|
115
|
+
extractedAt: string;
|
|
115
116
|
anchorDid: string;
|
|
116
117
|
anchorKind: AnchorKind;
|
|
117
|
-
extractedAt: string;
|
|
118
118
|
sourceAdapter: string;
|
|
119
119
|
streamDid: string;
|
|
120
120
|
streamKind: StreamKind;
|
|
@@ -133,9 +133,9 @@ export declare const PRODUCTION_TIMESERIES_SCHEMA: z.ZodEffects<z.ZodObject<{
|
|
|
133
133
|
accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
|
|
134
134
|
entityType: "production-timeseries";
|
|
135
135
|
sourceCitation: string;
|
|
136
|
+
extractedAt: string;
|
|
136
137
|
anchorDid: string;
|
|
137
138
|
anchorKind: AnchorKind;
|
|
138
|
-
extractedAt: string;
|
|
139
139
|
sourceAdapter: string;
|
|
140
140
|
streamDid: string;
|
|
141
141
|
streamKind: StreamKind;
|
package/dist/og/rrc-lease.d.ts
CHANGED
|
@@ -50,8 +50,8 @@ export declare const RRC_LEASE_SCHEMA: z.ZodEffects<z.ZodObject<{
|
|
|
50
50
|
acreage: z.ZodOptional<z.ZodNumber>;
|
|
51
51
|
}, "strip", z.ZodTypeAny, {
|
|
52
52
|
accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
|
|
53
|
-
entityType: "rrc-lease";
|
|
54
53
|
status: string;
|
|
54
|
+
entityType: "rrc-lease";
|
|
55
55
|
sourceCitation: string;
|
|
56
56
|
extractedAt: string;
|
|
57
57
|
district: string;
|
|
@@ -68,8 +68,8 @@ export declare const RRC_LEASE_SCHEMA: z.ZodEffects<z.ZodObject<{
|
|
|
68
68
|
acreage?: number | undefined;
|
|
69
69
|
}, {
|
|
70
70
|
accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
|
|
71
|
-
entityType: "rrc-lease";
|
|
72
71
|
status: string;
|
|
72
|
+
entityType: "rrc-lease";
|
|
73
73
|
sourceCitation: string;
|
|
74
74
|
extractedAt: string;
|
|
75
75
|
district: string;
|
|
@@ -86,8 +86,8 @@ export declare const RRC_LEASE_SCHEMA: z.ZodEffects<z.ZodObject<{
|
|
|
86
86
|
acreage?: number | undefined;
|
|
87
87
|
}>, {
|
|
88
88
|
accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
|
|
89
|
-
entityType: "rrc-lease";
|
|
90
89
|
status: string;
|
|
90
|
+
entityType: "rrc-lease";
|
|
91
91
|
sourceCitation: string;
|
|
92
92
|
extractedAt: string;
|
|
93
93
|
district: string;
|
|
@@ -104,8 +104,8 @@ export declare const RRC_LEASE_SCHEMA: z.ZodEffects<z.ZodObject<{
|
|
|
104
104
|
acreage?: number | undefined;
|
|
105
105
|
}, {
|
|
106
106
|
accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
|
|
107
|
-
entityType: "rrc-lease";
|
|
108
107
|
status: string;
|
|
108
|
+
entityType: "rrc-lease";
|
|
109
109
|
sourceCitation: string;
|
|
110
110
|
extractedAt: string;
|
|
111
111
|
district: string;
|
package/dist/og/well.d.ts
CHANGED
|
@@ -79,8 +79,8 @@ export declare const WELL_SCHEMA: z.ZodEffects<z.ZodObject<{
|
|
|
79
79
|
district: z.ZodString;
|
|
80
80
|
}, "strip", z.ZodTypeAny, {
|
|
81
81
|
accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
|
|
82
|
-
entityType: "well";
|
|
83
82
|
status: string;
|
|
83
|
+
entityType: "well";
|
|
84
84
|
sourceCitation: string;
|
|
85
85
|
extractedAt: string;
|
|
86
86
|
wellDid: string;
|
|
@@ -109,8 +109,8 @@ export declare const WELL_SCHEMA: z.ZodEffects<z.ZodObject<{
|
|
|
109
109
|
} | undefined;
|
|
110
110
|
}, {
|
|
111
111
|
accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
|
|
112
|
-
entityType: "well";
|
|
113
112
|
status: string;
|
|
113
|
+
entityType: "well";
|
|
114
114
|
sourceCitation: string;
|
|
115
115
|
extractedAt: string;
|
|
116
116
|
wellDid: string;
|
|
@@ -139,8 +139,8 @@ export declare const WELL_SCHEMA: z.ZodEffects<z.ZodObject<{
|
|
|
139
139
|
} | undefined;
|
|
140
140
|
}>, {
|
|
141
141
|
accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
|
|
142
|
-
entityType: "well";
|
|
143
142
|
status: string;
|
|
143
|
+
entityType: "well";
|
|
144
144
|
sourceCitation: string;
|
|
145
145
|
extractedAt: string;
|
|
146
146
|
wellDid: string;
|
|
@@ -169,8 +169,8 @@ export declare const WELL_SCHEMA: z.ZodEffects<z.ZodObject<{
|
|
|
169
169
|
} | undefined;
|
|
170
170
|
}, {
|
|
171
171
|
accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
|
|
172
|
-
entityType: "well";
|
|
173
172
|
status: string;
|
|
173
|
+
entityType: "well";
|
|
174
174
|
sourceCitation: string;
|
|
175
175
|
extractedAt: string;
|
|
176
176
|
wellDid: string;
|
package/dist/og/zone.d.ts
CHANGED
|
@@ -26,18 +26,18 @@ export declare const ZONE_SCHEMA: z.ZodObject<{
|
|
|
26
26
|
}, "strip", z.ZodTypeAny, {
|
|
27
27
|
accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
|
|
28
28
|
entityType: "zone";
|
|
29
|
-
zoneDid: string;
|
|
30
29
|
sourceCitation: string;
|
|
31
30
|
extractedAt: string;
|
|
31
|
+
zoneDid: string;
|
|
32
32
|
formationName: string;
|
|
33
33
|
asOf?: string | undefined;
|
|
34
34
|
tops?: number | undefined;
|
|
35
35
|
}, {
|
|
36
36
|
accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
|
|
37
37
|
entityType: "zone";
|
|
38
|
-
zoneDid: string;
|
|
39
38
|
sourceCitation: string;
|
|
40
39
|
extractedAt: string;
|
|
40
|
+
zoneDid: string;
|
|
41
41
|
formationName: string;
|
|
42
42
|
asOf?: string | undefined;
|
|
43
43
|
tops?: number | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/read-contract/index.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/read-contract/index.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,qBAAqB,CAAC;AACpC,cAAc,eAAe,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/read-contract/index.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/read-contract/index.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,qBAAqB,CAAC;AACpC,cAAc,eAAe,CAAC"}
|