@0xmonaco/types 0.8.7-develop.0e951a5 → 0.8.7-develop.5d0e403

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 (41) hide show
  1. package/dist/api/index.d.ts +7 -0
  2. package/dist/applications/index.d.ts +47 -5
  3. package/dist/applications/index.js +2 -1
  4. package/dist/applications/requests.d.ts +78 -0
  5. package/dist/applications/requests.js +7 -0
  6. package/dist/applications/responses.d.ts +211 -1
  7. package/dist/applications/responses.js +3 -1
  8. package/dist/auth/index.d.ts +6 -12
  9. package/dist/auth/index.js +2 -2
  10. package/dist/auth/responses.d.ts +0 -11
  11. package/dist/delegated-agents/index.d.ts +17 -1
  12. package/dist/faucet/index.d.ts +54 -0
  13. package/dist/faucet/index.js +10 -0
  14. package/dist/index.d.ts +4 -0
  15. package/dist/index.js +4 -0
  16. package/dist/margin-accounts/index.d.ts +3 -3
  17. package/dist/market/index.d.ts +83 -0
  18. package/dist/positions/index.d.ts +1 -0
  19. package/dist/profile/index.d.ts +11 -5
  20. package/dist/sdk/index.d.ts +12 -0
  21. package/dist/sub-accounts/index.d.ts +145 -0
  22. package/dist/sub-accounts/index.js +9 -0
  23. package/dist/trading/index.d.ts +4 -0
  24. package/dist/trading/responses.d.ts +8 -2
  25. package/dist/validation/margin-accounts.d.ts +1 -1
  26. package/dist/validation/margin-accounts.js +1 -1
  27. package/dist/validation/trading.d.ts +8 -0
  28. package/dist/validation/trading.js +42 -0
  29. package/dist/whitelist/index.d.ts +44 -0
  30. package/dist/whitelist/index.js +10 -0
  31. package/dist/wire/assert.d.ts +54 -0
  32. package/dist/wire/assert.js +0 -0
  33. package/dist/wire/coverage.d.ts +1 -0
  34. package/dist/wire/coverage.js +0 -0
  35. package/dist/wire/index.d.ts +14 -0
  36. package/dist/wire/index.js +0 -0
  37. package/dist/wire/schema.d.ts +8419 -0
  38. package/dist/wire/schema.js +4 -0
  39. package/dist/withdrawals/index.d.ts +43 -0
  40. package/dist/withdrawals/index.js +0 -0
  41. package/package.json +6 -2
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Generated wire-types layer (MON-1476 drift tripwire).
3
+ *
4
+ * `schema.ts` is generated from `docs/src/proto-openapi/api/openapi.yaml` by
5
+ * `make ts-wire-gen` — do not edit it by hand. This barrel re-exports the
6
+ * generated `paths` / `components` / `operations` interfaces plus the
7
+ * {@link WireSchema} / {@link WireCovered} helpers the ergonomic types use to
8
+ * stay in sync with the spec.
9
+ *
10
+ * Consumers import the raw spec types from the `@0xmonaco/types/wire` subpath;
11
+ * the ergonomic types in the rest of the package are the supported surface.
12
+ */
13
+ export type { Expect, MissingWireFields, WireCovered, WireSchema, WireSchemas } from "./assert";
14
+ export type { components, operations, paths } from "./schema";
File without changes