@robosystems/client 0.3.13 → 0.3.15

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 (35) hide show
  1. package/artifacts/InvestorClient.d.ts +35 -20
  2. package/artifacts/InvestorClient.js +78 -71
  3. package/artifacts/InvestorClient.ts +164 -141
  4. package/artifacts/LedgerClient.d.ts +22 -1
  5. package/artifacts/LedgerClient.js +40 -0
  6. package/artifacts/LedgerClient.ts +67 -0
  7. package/artifacts/graphql/generated/graphql.d.ts +401 -6
  8. package/artifacts/graphql/generated/graphql.js +633 -4
  9. package/artifacts/graphql/generated/graphql.ts +1058 -41
  10. package/artifacts/graphql/queries/investor/portfolio_block.d.ts +10 -0
  11. package/artifacts/graphql/queries/investor/portfolio_block.js +60 -0
  12. package/artifacts/graphql/queries/investor/portfolio_block.ts +58 -0
  13. package/artifacts/graphql/queries/ledger/informationBlock.js +110 -0
  14. package/artifacts/graphql/queries/ledger/informationBlock.ts +110 -0
  15. package/artifacts/graphql/queries/ledger/reportPackage.d.ts +11 -0
  16. package/artifacts/graphql/queries/ledger/reportPackage.js +151 -0
  17. package/artifacts/graphql/queries/ledger/reportPackage.ts +149 -0
  18. package/index.ts +2 -2
  19. package/package.json +1 -1
  20. package/sdk/index.d.ts +2 -2
  21. package/sdk/index.js +8 -9
  22. package/sdk/index.ts +2 -2
  23. package/sdk/sdk.gen.d.ts +26 -34
  24. package/sdk/sdk.gen.js +51 -68
  25. package/sdk/sdk.gen.ts +47 -64
  26. package/sdk/types.gen.d.ts +409 -365
  27. package/sdk/types.gen.ts +411 -367
  28. package/sdk.gen.d.ts +26 -34
  29. package/sdk.gen.js +51 -68
  30. package/sdk.gen.ts +47 -64
  31. package/types.gen.d.ts +409 -365
  32. package/types.gen.ts +411 -367
  33. package/artifacts/graphql/queries/investor/portfolio.d.ts +0 -4
  34. package/artifacts/graphql/queries/investor/portfolio.js +0 -21
  35. package/artifacts/graphql/queries/investor/portfolio.ts +0 -19
@@ -1,4 +0,0 @@
1
- /**
2
- * Single portfolio by id. Returns null if it doesn't exist.
3
- */
4
- export declare const GET_PORTFOLIO: string;
@@ -1,21 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GET_PORTFOLIO = void 0;
4
- const graphql_request_1 = require("graphql-request");
5
- /**
6
- * Single portfolio by id. Returns null if it doesn't exist.
7
- */
8
- exports.GET_PORTFOLIO = (0, graphql_request_1.gql) `
9
- query GetInvestorPortfolio($portfolioId: String!) {
10
- portfolio(portfolioId: $portfolioId) {
11
- id
12
- name
13
- description
14
- strategy
15
- inceptionDate
16
- baseCurrency
17
- createdAt
18
- updatedAt
19
- }
20
- }
21
- `;
@@ -1,19 +0,0 @@
1
- import { gql } from 'graphql-request'
2
-
3
- /**
4
- * Single portfolio by id. Returns null if it doesn't exist.
5
- */
6
- export const GET_PORTFOLIO = gql`
7
- query GetInvestorPortfolio($portfolioId: String!) {
8
- portfolio(portfolioId: $portfolioId) {
9
- id
10
- name
11
- description
12
- strategy
13
- inceptionDate
14
- baseCurrency
15
- createdAt
16
- updatedAt
17
- }
18
- }
19
- `