@robosystems/client 0.2.49 → 0.3.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.
Files changed (190) hide show
  1. package/extensions/InvestorClient.d.ts +91 -0
  2. package/extensions/InvestorClient.js +223 -0
  3. package/extensions/InvestorClient.ts +501 -0
  4. package/extensions/LedgerClient.d.ts +183 -309
  5. package/extensions/LedgerClient.js +268 -587
  6. package/extensions/LedgerClient.ts +777 -903
  7. package/extensions/ReportClient.d.ts +77 -115
  8. package/extensions/ReportClient.js +124 -211
  9. package/extensions/ReportClient.ts +298 -358
  10. package/extensions/config.js +1 -1
  11. package/extensions/config.ts +1 -1
  12. package/extensions/graphql/client.d.ts +46 -0
  13. package/extensions/graphql/client.js +75 -0
  14. package/extensions/graphql/client.ts +82 -0
  15. package/extensions/graphql/generated/graphql.d.ts +1786 -0
  16. package/extensions/graphql/generated/graphql.js +2671 -0
  17. package/extensions/graphql/generated/graphql.ts +4491 -0
  18. package/extensions/graphql/queries/investor/holdings.d.ts +8 -0
  19. package/extensions/graphql/queries/investor/holdings.js +36 -0
  20. package/extensions/graphql/queries/investor/holdings.ts +34 -0
  21. package/extensions/graphql/queries/investor/portfolio.d.ts +4 -0
  22. package/extensions/graphql/queries/investor/portfolio.js +21 -0
  23. package/extensions/graphql/queries/investor/portfolio.ts +19 -0
  24. package/extensions/graphql/queries/investor/portfolios.d.ts +4 -0
  25. package/extensions/graphql/queries/investor/portfolios.js +29 -0
  26. package/extensions/graphql/queries/investor/portfolios.ts +27 -0
  27. package/extensions/graphql/queries/investor/position.d.ts +4 -0
  28. package/extensions/graphql/queries/investor/position.js +33 -0
  29. package/extensions/graphql/queries/investor/position.ts +31 -0
  30. package/extensions/graphql/queries/investor/positions.d.ts +8 -0
  31. package/extensions/graphql/queries/investor/positions.js +57 -0
  32. package/extensions/graphql/queries/investor/positions.ts +55 -0
  33. package/extensions/graphql/queries/investor/securities.d.ts +8 -0
  34. package/extensions/graphql/queries/investor/securities.js +50 -0
  35. package/extensions/graphql/queries/investor/securities.ts +48 -0
  36. package/extensions/graphql/queries/investor/security.d.ts +4 -0
  37. package/extensions/graphql/queries/investor/security.js +26 -0
  38. package/extensions/graphql/queries/investor/security.ts +24 -0
  39. package/extensions/graphql/queries/ledger/accountRollups.d.ts +7 -0
  40. package/extensions/graphql/queries/ledger/accountRollups.js +36 -0
  41. package/extensions/graphql/queries/ledger/accountRollups.ts +34 -0
  42. package/extensions/graphql/queries/ledger/accountTree.d.ts +11 -0
  43. package/extensions/graphql/queries/ledger/accountTree.js +61 -0
  44. package/extensions/graphql/queries/ledger/accountTree.ts +59 -0
  45. package/extensions/graphql/queries/ledger/accounts.d.ts +8 -0
  46. package/extensions/graphql/queries/ledger/accounts.js +45 -0
  47. package/extensions/graphql/queries/ledger/accounts.ts +43 -0
  48. package/extensions/graphql/queries/ledger/closingBookStructures.d.ts +6 -0
  49. package/extensions/graphql/queries/ledger/closingBookStructures.js +27 -0
  50. package/extensions/graphql/queries/ledger/closingBookStructures.ts +25 -0
  51. package/extensions/graphql/queries/ledger/elements.d.ts +6 -0
  52. package/extensions/graphql/queries/ledger/elements.js +56 -0
  53. package/extensions/graphql/queries/ledger/elements.ts +54 -0
  54. package/extensions/graphql/queries/ledger/entities.d.ts +7 -0
  55. package/extensions/graphql/queries/ledger/entities.js +31 -0
  56. package/extensions/graphql/queries/ledger/entities.ts +29 -0
  57. package/extensions/graphql/queries/ledger/entity.d.ts +14 -0
  58. package/extensions/graphql/queries/ledger/entity.js +55 -0
  59. package/extensions/graphql/queries/ledger/entity.ts +54 -0
  60. package/extensions/graphql/queries/ledger/fiscalCalendar.d.ts +8 -0
  61. package/extensions/graphql/queries/ledger/fiscalCalendar.js +35 -0
  62. package/extensions/graphql/queries/ledger/fiscalCalendar.ts +33 -0
  63. package/extensions/graphql/queries/ledger/mappedTrialBalance.d.ts +9 -0
  64. package/extensions/graphql/queries/ledger/mappedTrialBalance.js +29 -0
  65. package/extensions/graphql/queries/ledger/mappedTrialBalance.ts +27 -0
  66. package/extensions/graphql/queries/ledger/mapping.d.ts +5 -0
  67. package/extensions/graphql/queries/ledger/mapping.js +35 -0
  68. package/extensions/graphql/queries/ledger/mapping.ts +33 -0
  69. package/extensions/graphql/queries/ledger/mappingCoverage.d.ts +5 -0
  70. package/extensions/graphql/queries/ledger/mappingCoverage.js +22 -0
  71. package/extensions/graphql/queries/ledger/mappingCoverage.ts +20 -0
  72. package/extensions/graphql/queries/ledger/mappings.d.ts +6 -0
  73. package/extensions/graphql/queries/ledger/mappings.js +23 -0
  74. package/extensions/graphql/queries/ledger/mappings.ts +21 -0
  75. package/extensions/graphql/queries/ledger/periodCloseStatus.d.ts +6 -0
  76. package/extensions/graphql/queries/ledger/periodCloseStatus.js +29 -0
  77. package/extensions/graphql/queries/ledger/periodCloseStatus.ts +27 -0
  78. package/extensions/graphql/queries/ledger/periodDrafts.d.ts +8 -0
  79. package/extensions/graphql/queries/ledger/periodDrafts.js +45 -0
  80. package/extensions/graphql/queries/ledger/periodDrafts.ts +43 -0
  81. package/extensions/graphql/queries/ledger/publishList.d.ts +5 -0
  82. package/extensions/graphql/queries/ledger/publishList.js +29 -0
  83. package/extensions/graphql/queries/ledger/publishList.ts +27 -0
  84. package/extensions/graphql/queries/ledger/publishLists.d.ts +5 -0
  85. package/extensions/graphql/queries/ledger/publishLists.js +29 -0
  86. package/extensions/graphql/queries/ledger/publishLists.ts +27 -0
  87. package/extensions/graphql/queries/ledger/report.d.ts +5 -0
  88. package/extensions/graphql/queries/ledger/report.js +40 -0
  89. package/extensions/graphql/queries/ledger/report.ts +38 -0
  90. package/extensions/graphql/queries/ledger/reportingTaxonomy.d.ts +6 -0
  91. package/extensions/graphql/queries/ledger/reportingTaxonomy.js +27 -0
  92. package/extensions/graphql/queries/ledger/reportingTaxonomy.ts +25 -0
  93. package/extensions/graphql/queries/ledger/reports.d.ts +8 -0
  94. package/extensions/graphql/queries/ledger/reports.js +45 -0
  95. package/extensions/graphql/queries/ledger/reports.ts +43 -0
  96. package/extensions/graphql/queries/ledger/scheduleFacts.d.ts +7 -0
  97. package/extensions/graphql/queries/ledger/scheduleFacts.js +24 -0
  98. package/extensions/graphql/queries/ledger/scheduleFacts.ts +22 -0
  99. package/extensions/graphql/queries/ledger/schedules.d.ts +6 -0
  100. package/extensions/graphql/queries/ledger/schedules.js +24 -0
  101. package/extensions/graphql/queries/ledger/schedules.ts +22 -0
  102. package/extensions/graphql/queries/ledger/statement.d.ts +9 -0
  103. package/extensions/graphql/queries/ledger/statement.js +43 -0
  104. package/extensions/graphql/queries/ledger/statement.ts +41 -0
  105. package/extensions/graphql/queries/ledger/structures.d.ts +5 -0
  106. package/extensions/graphql/queries/ledger/structures.js +22 -0
  107. package/extensions/graphql/queries/ledger/structures.ts +20 -0
  108. package/extensions/graphql/queries/ledger/summary.d.ts +7 -0
  109. package/extensions/graphql/queries/ledger/summary.js +25 -0
  110. package/extensions/graphql/queries/ledger/summary.ts +23 -0
  111. package/extensions/graphql/queries/ledger/taxonomies.d.ts +5 -0
  112. package/extensions/graphql/queries/ledger/taxonomies.js +28 -0
  113. package/extensions/graphql/queries/ledger/taxonomies.ts +26 -0
  114. package/extensions/graphql/queries/ledger/transaction.d.ts +6 -0
  115. package/extensions/graphql/queries/ledger/transaction.js +49 -0
  116. package/extensions/graphql/queries/ledger/transaction.ts +47 -0
  117. package/extensions/graphql/queries/ledger/transactions.d.ts +7 -0
  118. package/extensions/graphql/queries/ledger/transactions.js +49 -0
  119. package/extensions/graphql/queries/ledger/transactions.ts +47 -0
  120. package/extensions/graphql/queries/ledger/trialBalance.d.ts +7 -0
  121. package/extensions/graphql/queries/ledger/trialBalance.js +28 -0
  122. package/extensions/graphql/queries/ledger/trialBalance.ts +26 -0
  123. package/extensions/graphql/queries/ledger/unmappedElements.d.ts +8 -0
  124. package/extensions/graphql/queries/ledger/unmappedElements.js +29 -0
  125. package/extensions/graphql/queries/ledger/unmappedElements.ts +27 -0
  126. package/extensions/hooks.d.ts +1 -1
  127. package/extensions/index.d.ts +5 -1
  128. package/extensions/index.js +13 -1
  129. package/extensions/index.ts +14 -0
  130. package/index.ts +2 -2
  131. package/package.json +14 -5
  132. package/sdk/index.d.ts +2 -2
  133. package/sdk/index.js +38 -73
  134. package/sdk/index.ts +2 -2
  135. package/sdk/sdk.gen.d.ts +100 -325
  136. package/sdk/sdk.gen.js +228 -592
  137. package/sdk/sdk.gen.ts +193 -556
  138. package/sdk/types.gen.d.ts +4522 -7708
  139. package/sdk/types.gen.ts +4569 -7983
  140. package/sdk.gen.d.ts +100 -325
  141. package/sdk.gen.js +228 -592
  142. package/sdk.gen.ts +193 -556
  143. package/types.gen.d.ts +4522 -7708
  144. package/types.gen.ts +4569 -7983
  145. package/extensions/AgentClient.test.ts +0 -403
  146. package/extensions/LedgerClient.test.ts +0 -1655
  147. package/extensions/OperationClient.test.ts +0 -365
  148. package/extensions/QueryClient.test.ts +0 -432
  149. package/extensions/ReportClient.test.ts +0 -828
  150. package/extensions/SSEClient.test.ts +0 -375
  151. package/extensions/config.test.ts +0 -199
  152. package/extensions/hooks.test.ts +0 -373
  153. package/extensions/index.test.ts +0 -420
  154. package/sdk-extensions/AgentClient.d.ts +0 -82
  155. package/sdk-extensions/AgentClient.js +0 -218
  156. package/sdk-extensions/AgentClient.test.ts +0 -403
  157. package/sdk-extensions/AgentClient.ts +0 -321
  158. package/sdk-extensions/LedgerClient.d.ts +0 -416
  159. package/sdk-extensions/LedgerClient.js +0 -737
  160. package/sdk-extensions/LedgerClient.test.ts +0 -1655
  161. package/sdk-extensions/LedgerClient.ts +0 -1249
  162. package/sdk-extensions/OperationClient.d.ts +0 -65
  163. package/sdk-extensions/OperationClient.js +0 -251
  164. package/sdk-extensions/OperationClient.test.ts +0 -365
  165. package/sdk-extensions/OperationClient.ts +0 -324
  166. package/sdk-extensions/QueryClient.d.ts +0 -52
  167. package/sdk-extensions/QueryClient.js +0 -313
  168. package/sdk-extensions/QueryClient.test.ts +0 -432
  169. package/sdk-extensions/QueryClient.ts +0 -420
  170. package/sdk-extensions/README.md +0 -901
  171. package/sdk-extensions/ReportClient.d.ts +0 -151
  172. package/sdk-extensions/ReportClient.js +0 -278
  173. package/sdk-extensions/ReportClient.test.ts +0 -828
  174. package/sdk-extensions/ReportClient.ts +0 -486
  175. package/sdk-extensions/SSEClient.d.ts +0 -62
  176. package/sdk-extensions/SSEClient.js +0 -154
  177. package/sdk-extensions/SSEClient.test.ts +0 -375
  178. package/sdk-extensions/SSEClient.ts +0 -210
  179. package/sdk-extensions/config.d.ts +0 -57
  180. package/sdk-extensions/config.js +0 -152
  181. package/sdk-extensions/config.test.ts +0 -199
  182. package/sdk-extensions/config.ts +0 -175
  183. package/sdk-extensions/hooks.d.ts +0 -110
  184. package/sdk-extensions/hooks.js +0 -384
  185. package/sdk-extensions/hooks.test.ts +0 -373
  186. package/sdk-extensions/hooks.ts +0 -459
  187. package/sdk-extensions/index.d.ts +0 -63
  188. package/sdk-extensions/index.js +0 -164
  189. package/sdk-extensions/index.test.ts +0 -420
  190. package/sdk-extensions/index.ts +0 -203
@@ -1,416 +0,0 @@
1
- import type { AccountListResponse, AccountRollupsResponse, AccountTreeResponse, ClosingBookStructuresResponse, LedgerSummaryResponse, LedgerTransactionDetailResponse, LedgerTransactionListResponse, MappingDetailResponse, TrialBalanceResponse } from '../sdk/types.gen';
2
- export interface LedgerEntity {
3
- id: string;
4
- name: string;
5
- legalName: string | null;
6
- entityType: string | null;
7
- industry: string | null;
8
- status: string | null;
9
- }
10
- export interface MappingInfo {
11
- id: string;
12
- name: string;
13
- description: string | null;
14
- structureType: string;
15
- taxonomyId: string;
16
- isActive: boolean;
17
- }
18
- export interface MappingCoverage {
19
- totalCoaElements: number;
20
- mappedCount: number;
21
- unmappedCount: number;
22
- coveragePercent: number;
23
- highConfidence: number;
24
- mediumConfidence: number;
25
- lowConfidence: number;
26
- }
27
- export interface Structure {
28
- id: string;
29
- name: string;
30
- structureType: string;
31
- }
32
- export interface Schedule {
33
- structureId: string;
34
- name: string;
35
- taxonomyName: string;
36
- entryTemplate: Record<string, unknown> | null;
37
- scheduleMetadata: Record<string, unknown> | null;
38
- totalPeriods: number;
39
- periodsWithEntries: number;
40
- }
41
- export interface ScheduleCreated {
42
- structureId: string;
43
- name: string;
44
- taxonomyId: string;
45
- totalPeriods: number;
46
- totalFacts: number;
47
- }
48
- export interface ScheduleFact {
49
- elementId: string;
50
- elementName: string;
51
- value: number;
52
- periodStart: string;
53
- periodEnd: string;
54
- }
55
- export interface PeriodCloseItem {
56
- structureId: string;
57
- structureName: string;
58
- amount: number;
59
- status: string;
60
- entryId: string | null;
61
- }
62
- export interface PeriodCloseStatus {
63
- fiscalPeriodStart: string;
64
- fiscalPeriodEnd: string;
65
- periodStatus: string;
66
- schedules: PeriodCloseItem[];
67
- totalDraft: number;
68
- totalPosted: number;
69
- }
70
- /**
71
- * Outcome of an idempotent `createClosingEntry` call.
72
- *
73
- * - `created` — no prior draft, new draft created
74
- * - `unchanged` — prior draft matches current schedule fact, no-op
75
- * - `regenerated` — prior draft was stale, replaced with a fresh one
76
- * - `removed` — prior draft existed but schedule no longer covers this period
77
- * - `skipped` — no prior draft and no in-scope fact; nothing to do
78
- */
79
- export type ClosingEntryOutcome = 'created' | 'unchanged' | 'regenerated' | 'removed' | 'skipped';
80
- /**
81
- * Result of an idempotent closing-entry call. `entry_id`, `amount`, and
82
- * related fields are null for `removed` and `skipped` outcomes.
83
- */
84
- export interface ClosingEntry {
85
- outcome: ClosingEntryOutcome;
86
- entryId: string | null;
87
- status: string | null;
88
- postingDate: string | null;
89
- memo: string | null;
90
- debitElementId: string | null;
91
- creditElementId: string | null;
92
- amount: number | null;
93
- reason: string | null;
94
- }
95
- export type LedgerEntryType = 'standard' | 'adjusting' | 'closing' | 'reversing';
96
- export interface FiscalPeriodSummary {
97
- name: string;
98
- startDate: string;
99
- endDate: string;
100
- status: string;
101
- closedAt: string | null;
102
- }
103
- export interface FiscalCalendarState {
104
- graphId: string;
105
- fiscalYearStartMonth: number;
106
- closedThrough: string | null;
107
- closeTarget: string | null;
108
- gapPeriods: number;
109
- catchUpSequence: string[];
110
- closeableNow: boolean;
111
- blockers: string[];
112
- lastCloseAt: string | null;
113
- initializedAt: string | null;
114
- lastSyncAt: string | null;
115
- periods: FiscalPeriodSummary[];
116
- }
117
- export interface InitializeLedgerOptions {
118
- closedThrough?: string | null;
119
- fiscalYearStartMonth?: number;
120
- earliestDataPeriod?: string | null;
121
- autoSeedSchedules?: boolean;
122
- note?: string | null;
123
- }
124
- export interface InitializeLedgerResult {
125
- fiscalCalendar: FiscalCalendarState;
126
- periodsCreated: number;
127
- warnings: string[];
128
- }
129
- export interface ClosePeriodOptions {
130
- note?: string | null;
131
- allowStaleSync?: boolean;
132
- }
133
- export interface ClosePeriodResult {
134
- period: string;
135
- entriesPosted: number;
136
- targetAutoAdvanced: boolean;
137
- fiscalCalendar: FiscalCalendarState;
138
- }
139
- export interface DraftLineItemView {
140
- lineItemId: string;
141
- elementId: string;
142
- elementCode: string | null;
143
- elementName: string;
144
- debitAmount: number;
145
- creditAmount: number;
146
- description: string | null;
147
- }
148
- export interface DraftEntryView {
149
- entryId: string;
150
- postingDate: string;
151
- type: string;
152
- memo: string | null;
153
- provenance: string | null;
154
- sourceStructureId: string | null;
155
- sourceStructureName: string | null;
156
- lineItems: DraftLineItemView[];
157
- totalDebit: number;
158
- totalCredit: number;
159
- balanced: boolean;
160
- }
161
- export interface PeriodDraftsView {
162
- period: string;
163
- periodStart: string;
164
- periodEnd: string;
165
- draftCount: number;
166
- totalDebit: number;
167
- totalCredit: number;
168
- allBalanced: boolean;
169
- drafts: DraftEntryView[];
170
- }
171
- export interface ManualClosingLineItem {
172
- elementId: string;
173
- debitAmount?: number;
174
- creditAmount?: number;
175
- description?: string | null;
176
- }
177
- export interface CreateManualClosingEntryOptions {
178
- postingDate: string;
179
- memo: string;
180
- lineItems: ManualClosingLineItem[];
181
- entryType?: LedgerEntryType;
182
- }
183
- export interface TruncateScheduleOptions {
184
- newEndDate: string;
185
- reason: string;
186
- }
187
- export interface TruncateScheduleResult {
188
- structureId: string;
189
- newEndDate: string;
190
- factsDeleted: number;
191
- reason: string;
192
- }
193
- export interface CreateScheduleOptions {
194
- name: string;
195
- elementIds: string[];
196
- periodStart: string;
197
- periodEnd: string;
198
- monthlyAmount: number;
199
- entryTemplate: {
200
- debitElementId: string;
201
- creditElementId: string;
202
- entryType?: LedgerEntryType;
203
- memoTemplate?: string;
204
- };
205
- taxonomyId?: string;
206
- scheduleMetadata?: {
207
- method?: string;
208
- originalAmount?: number;
209
- residualValue?: number;
210
- usefulLifeMonths?: number;
211
- assetElementId?: string;
212
- };
213
- }
214
- export declare class LedgerClient {
215
- private config;
216
- constructor(config: {
217
- baseUrl: string;
218
- credentials?: 'include' | 'same-origin' | 'omit';
219
- headers?: Record<string, string>;
220
- token?: string;
221
- });
222
- /**
223
- * Get the entity (company/organization) for this graph.
224
- */
225
- getEntity(graphId: string): Promise<LedgerEntity | null>;
226
- /**
227
- * List accounts (flat).
228
- */
229
- listAccounts(graphId: string): Promise<AccountListResponse>;
230
- /**
231
- * Get the account tree (hierarchical).
232
- */
233
- getAccountTree(graphId: string): Promise<AccountTreeResponse>;
234
- /**
235
- * List transactions with optional date filters.
236
- */
237
- listTransactions(graphId: string, options?: {
238
- startDate?: string;
239
- endDate?: string;
240
- limit?: number;
241
- offset?: number;
242
- }): Promise<LedgerTransactionListResponse>;
243
- /**
244
- * Get transaction detail with entries and line items.
245
- */
246
- getTransaction(graphId: string, transactionId: string): Promise<LedgerTransactionDetailResponse>;
247
- /**
248
- * Get trial balance (CoA-level debits/credits).
249
- */
250
- getTrialBalance(graphId: string, options?: {
251
- startDate?: string;
252
- endDate?: string;
253
- }): Promise<TrialBalanceResponse>;
254
- /**
255
- * Get mapped trial balance (CoA rolled up to GAAP concepts).
256
- */
257
- getMappedTrialBalance(graphId: string, options?: {
258
- mappingId?: string;
259
- startDate?: string;
260
- endDate?: string;
261
- }): Promise<unknown>;
262
- /**
263
- * Get ledger summary (account count, transaction count, date range).
264
- */
265
- getSummary(graphId: string): Promise<LedgerSummaryResponse>;
266
- /**
267
- * Get the reporting taxonomy (US GAAP seed).
268
- */
269
- getReportingTaxonomy(graphId: string): Promise<unknown>;
270
- /**
271
- * List reporting structures (IS, BS, CF) for a taxonomy.
272
- */
273
- listStructures(graphId: string, taxonomyId?: string): Promise<Structure[]>;
274
- /**
275
- * List elements (CoA accounts, GAAP concepts, etc.).
276
- */
277
- listElements(graphId: string, options?: {
278
- taxonomyId?: string;
279
- source?: string;
280
- classification?: string;
281
- isAbstract?: boolean;
282
- limit?: number;
283
- offset?: number;
284
- }): Promise<unknown>;
285
- /**
286
- * Create a new CoA→GAAP mapping structure.
287
- * Returns the created mapping info.
288
- */
289
- createMappingStructure(graphId: string, options?: {
290
- name?: string;
291
- description?: string;
292
- taxonomyId?: string;
293
- }): Promise<MappingInfo>;
294
- /**
295
- * List available CoA→GAAP mapping structures.
296
- */
297
- listMappings(graphId: string): Promise<MappingInfo[]>;
298
- /**
299
- * Get mapping detail — all associations with element names.
300
- */
301
- getMappingDetail(graphId: string, mappingId: string): Promise<MappingDetailResponse>;
302
- /**
303
- * Get mapping coverage — how many CoA elements are mapped.
304
- */
305
- getMappingCoverage(graphId: string, mappingId: string): Promise<MappingCoverage>;
306
- /**
307
- * Create a manual mapping association (CoA element → GAAP element).
308
- */
309
- createMapping(graphId: string, mappingId: string, fromElementId: string, toElementId: string, confidence?: number): Promise<void>;
310
- /**
311
- * Delete a mapping association.
312
- */
313
- deleteMapping(graphId: string, mappingId: string, associationId: string): Promise<void>;
314
- /**
315
- * Trigger AI auto-mapping (MappingAgent).
316
- * Returns immediately — the agent runs in the background.
317
- */
318
- autoMap(graphId: string, mappingId: string): Promise<{
319
- operationId?: string;
320
- }>;
321
- /**
322
- * Create a schedule with pre-generated monthly facts.
323
- */
324
- createSchedule(graphId: string, options: CreateScheduleOptions): Promise<ScheduleCreated>;
325
- /**
326
- * List all schedules for a graph.
327
- */
328
- listSchedules(graphId: string): Promise<Schedule[]>;
329
- /**
330
- * Get facts for a schedule, optionally filtered by period.
331
- */
332
- getScheduleFacts(graphId: string, structureId: string, periodStart?: string, periodEnd?: string): Promise<ScheduleFact[]>;
333
- /**
334
- * Get close status for all schedules in a fiscal period.
335
- */
336
- getPeriodCloseStatus(graphId: string, periodStart: string, periodEnd: string): Promise<PeriodCloseStatus>;
337
- /**
338
- * Idempotently create (or refresh) a draft closing entry from a schedule's
339
- * facts for a period. The `outcome` field describes what actually happened:
340
- *
341
- * - `created` — new draft
342
- * - `unchanged` — existing draft still matches the schedule; no-op
343
- * - `regenerated` — existing draft was stale; replaced
344
- * - `removed` — schedule no longer covers this period; stale draft deleted
345
- * - `skipped` — no existing draft and no in-scope fact; nothing to do
346
- */
347
- createClosingEntry(graphId: string, structureId: string, postingDate: string, periodStart: string, periodEnd: string, memo?: string): Promise<ClosingEntry>;
348
- /**
349
- * Get all closing book structure categories for the sidebar.
350
- * Returns statements, account rollups, schedules, trial balance,
351
- * and period close grouped into categories.
352
- */
353
- getClosingBookStructures(graphId: string): Promise<ClosingBookStructuresResponse>;
354
- /**
355
- * Get account rollups — CoA accounts grouped by reporting element with balances.
356
- * Shows how company-specific accounts roll up to standardized reporting lines.
357
- */
358
- getAccountRollups(graphId: string, options?: {
359
- mappingId?: string;
360
- startDate?: string;
361
- endDate?: string;
362
- }): Promise<AccountRollupsResponse>;
363
- /**
364
- * Initialize the fiscal calendar for a graph. Creates FiscalPeriod rows
365
- * for the data window, sets `closed_through` / `close_target`, and emits
366
- * an `initialized` audit event. Fails with 409 if already initialized.
367
- */
368
- initializeLedger(graphId: string, options?: InitializeLedgerOptions): Promise<InitializeLedgerResult>;
369
- /**
370
- * Get the current fiscal calendar state — pointers, gap, closeable status.
371
- */
372
- getFiscalCalendar(graphId: string): Promise<FiscalCalendarState>;
373
- /**
374
- * Set the close target for a graph. Validates that the target is not in
375
- * the future and not before `closed_through`.
376
- */
377
- setCloseTarget(graphId: string, period: string, note?: string | null): Promise<FiscalCalendarState>;
378
- /**
379
- * Close a fiscal period — the final commit action.
380
- *
381
- * Validates closeable gates, transitions all draft entries in the period
382
- * to `posted`, marks the FiscalPeriod closed, and advances `closed_through`
383
- * (auto-advancing `close_target` when reached).
384
- */
385
- closePeriod(graphId: string, period: string, options?: ClosePeriodOptions): Promise<ClosePeriodResult>;
386
- /**
387
- * Reopen a closed fiscal period. Requires a non-empty `reason` for the
388
- * audit log. Posted entries stay posted; the period transitions to
389
- * `closing` so the user can post adjustments and re-close.
390
- */
391
- reopenPeriod(graphId: string, period: string, reason: string, note?: string | null): Promise<FiscalCalendarState>;
392
- /**
393
- * List all draft entries in a fiscal period for review before close.
394
- * Fully expanded with line items, element metadata, and per-entry balance.
395
- *
396
- * Pure read — call repeatedly without side effects.
397
- */
398
- listPeriodDrafts(graphId: string, period: string): Promise<PeriodDraftsView>;
399
- /**
400
- * Truncate a schedule — end it early by deleting facts with
401
- * `period_start > new_end_date`, along with any stale draft entries they
402
- * produced. Historical posted facts are preserved.
403
- *
404
- * `new_end_date` must be a month-end date (service enforces this).
405
- */
406
- truncateSchedule(graphId: string, structureId: string, options: TruncateScheduleOptions): Promise<TruncateScheduleResult>;
407
- /**
408
- * Create a manual draft closing entry with arbitrary balanced line items.
409
- * Not tied to a schedule — used for disposals, adjustments, and other
410
- * one-off closing events.
411
- *
412
- * Line items must sum to balanced debits/credits. Rejects entries
413
- * targeting an already-closed period.
414
- */
415
- createManualClosingEntry(graphId: string, options: CreateManualClosingEntryOptions): Promise<ClosingEntry>;
416
- }