@robosystems/client 0.3.8 → 0.3.9

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.
@@ -1,24 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.LIST_SCHEDULES = void 0;
4
- const graphql_request_1 = require("graphql-request");
5
- /**
6
- * All active schedule structures (depreciation, amortization, accrual)
7
- * with entry template + metadata. `entryTemplate` and `scheduleMetadata`
8
- * are JSON scalars — consume as untyped dicts in the facade.
9
- */
10
- exports.LIST_SCHEDULES = (0, graphql_request_1.gql) `
11
- query ListLedgerSchedules {
12
- schedules {
13
- schedules {
14
- structureId
15
- name
16
- taxonomyName
17
- entryTemplate
18
- scheduleMetadata
19
- totalPeriods
20
- periodsWithEntries
21
- }
22
- }
23
- }
24
- `;
@@ -1,22 +0,0 @@
1
- import { gql } from 'graphql-request'
2
-
3
- /**
4
- * All active schedule structures (depreciation, amortization, accrual)
5
- * with entry template + metadata. `entryTemplate` and `scheduleMetadata`
6
- * are JSON scalars — consume as untyped dicts in the facade.
7
- */
8
- export const LIST_SCHEDULES = gql`
9
- query ListLedgerSchedules {
10
- schedules {
11
- schedules {
12
- structureId
13
- name
14
- taxonomyName
15
- entryTemplate
16
- scheduleMetadata
17
- totalPeriods
18
- periodsWithEntries
19
- }
20
- }
21
- }
22
- `