@synnaxlabs/client 0.49.2 → 0.50.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 (268) hide show
  1. package/.turbo/turbo-build.log +10 -10
  2. package/CONTRIBUTING.md +1 -2
  3. package/README.md +1 -1
  4. package/dist/client.cjs +29 -29
  5. package/dist/client.js +3660 -3598
  6. package/dist/src/access/policy/client.d.ts +90 -76
  7. package/dist/src/access/policy/client.d.ts.map +1 -1
  8. package/dist/src/access/policy/payload.d.ts +17 -14
  9. package/dist/src/access/policy/payload.d.ts.map +1 -1
  10. package/dist/src/access/role/payload.d.ts +2 -2
  11. package/dist/src/arc/payload.d.ts +21 -20
  12. package/dist/src/arc/payload.d.ts.map +1 -1
  13. package/dist/src/channel/client.d.ts +5 -10
  14. package/dist/src/channel/client.d.ts.map +1 -1
  15. package/dist/src/channel/payload.d.ts +11 -9
  16. package/dist/src/channel/payload.d.ts.map +1 -1
  17. package/dist/src/channel/retriever.d.ts.map +1 -1
  18. package/dist/src/client.d.ts +2 -0
  19. package/dist/src/client.d.ts.map +1 -1
  20. package/dist/src/device/client.d.ts +2 -2
  21. package/dist/src/device/payload.d.ts +1 -1
  22. package/dist/src/framer/client.d.ts +2 -2
  23. package/dist/src/framer/external.d.ts +1 -0
  24. package/dist/src/framer/external.d.ts.map +1 -1
  25. package/dist/src/framer/iterator.d.ts +5 -0
  26. package/dist/src/framer/iterator.d.ts.map +1 -1
  27. package/dist/src/framer/reader.d.ts +3 -1
  28. package/dist/src/framer/reader.d.ts.map +1 -1
  29. package/dist/src/framer/streamer.d.ts +1 -11
  30. package/dist/src/framer/streamer.d.ts.map +1 -1
  31. package/dist/src/framer/writer.d.ts +0 -10
  32. package/dist/src/framer/writer.d.ts.map +1 -1
  33. package/dist/src/index.d.ts +1 -0
  34. package/dist/src/index.d.ts.map +1 -1
  35. package/dist/src/label/client.d.ts +11 -8
  36. package/dist/src/label/client.d.ts.map +1 -1
  37. package/dist/src/ontology/client.d.ts +6 -4
  38. package/dist/src/ontology/client.d.ts.map +1 -1
  39. package/dist/src/ontology/group/client.d.ts +3 -2
  40. package/dist/src/ontology/group/client.d.ts.map +1 -1
  41. package/dist/src/ontology/group/payload.d.ts +1 -1
  42. package/dist/src/ontology/group/payload.d.ts.map +1 -1
  43. package/dist/src/ontology/payload.d.ts +25 -20
  44. package/dist/src/ontology/payload.d.ts.map +1 -1
  45. package/dist/src/ontology/writer.d.ts +15 -10
  46. package/dist/src/ontology/writer.d.ts.map +1 -1
  47. package/dist/src/rack/client.d.ts +2 -2
  48. package/dist/src/ranger/client.d.ts +2 -2
  49. package/dist/src/ranger/writer.d.ts +3 -2
  50. package/dist/src/ranger/writer.d.ts.map +1 -1
  51. package/dist/src/status/payload.d.ts +2 -2
  52. package/dist/src/task/client.d.ts +2 -2
  53. package/dist/src/task/client.d.ts.map +1 -1
  54. package/dist/src/task/payload.d.ts +1 -0
  55. package/dist/src/task/payload.d.ts.map +1 -1
  56. package/dist/src/task/payload.spec.d.ts +2 -0
  57. package/dist/src/task/payload.spec.d.ts.map +1 -0
  58. package/dist/src/user/client.d.ts +2 -2
  59. package/dist/src/view/client.d.ts +43 -0
  60. package/dist/src/view/client.d.ts.map +1 -0
  61. package/dist/src/view/external.d.ts +3 -0
  62. package/dist/src/view/external.d.ts.map +1 -0
  63. package/dist/src/view/index.d.ts +2 -0
  64. package/dist/src/view/index.d.ts.map +1 -0
  65. package/dist/src/view/payload.d.ts +20 -0
  66. package/dist/src/view/payload.d.ts.map +1 -0
  67. package/dist/src/view/view.spec.d.ts +2 -0
  68. package/dist/src/view/view.spec.d.ts.map +1 -0
  69. package/dist/src/workspace/client.d.ts +3 -3
  70. package/dist/src/workspace/lineplot/client.d.ts +2 -2
  71. package/dist/src/workspace/lineplot/payload.d.ts +3 -3
  72. package/dist/src/workspace/log/client.d.ts +2 -2
  73. package/dist/src/workspace/log/payload.d.ts +3 -3
  74. package/dist/src/workspace/payload.d.ts +3 -3
  75. package/dist/src/workspace/schematic/client.d.ts +2 -2
  76. package/dist/src/workspace/schematic/payload.d.ts +3 -3
  77. package/dist/src/workspace/table/client.d.ts +2 -2
  78. package/dist/src/workspace/table/payload.d.ts +3 -3
  79. package/eslint.config.ts +1 -1
  80. package/examples/node/basicReadWrite.js +1 -1
  81. package/examples/node/createChannels.js +50 -0
  82. package/examples/node/createRange.js +67 -0
  83. package/examples/node/readLatest.js +76 -0
  84. package/examples/node/seriesAndFrames.js +2 -2
  85. package/examples/node/{liveStream.js → streamRead.js} +1 -1
  86. package/examples/node/streamWrite.js +1 -1
  87. package/package.json +10 -10
  88. package/src/access/client.ts +1 -1
  89. package/src/access/enforce.spec.ts +1 -1
  90. package/src/access/enforce.ts +1 -1
  91. package/src/access/external.ts +1 -1
  92. package/src/access/index.ts +1 -1
  93. package/src/access/payload.ts +1 -1
  94. package/src/access/policy/access.spec.ts +1 -1
  95. package/src/access/policy/client.ts +1 -1
  96. package/src/access/policy/external.ts +1 -1
  97. package/src/access/policy/index.ts +1 -1
  98. package/src/access/policy/payload.ts +1 -1
  99. package/src/access/role/client.ts +1 -1
  100. package/src/access/role/external.ts +1 -1
  101. package/src/access/role/index.ts +1 -1
  102. package/src/access/role/payload.ts +1 -1
  103. package/src/access/role/role.spec.ts +1 -1
  104. package/src/arc/access.spec.ts +1 -7
  105. package/src/arc/client.ts +1 -1
  106. package/src/arc/external.ts +1 -1
  107. package/src/arc/index.ts +1 -1
  108. package/src/arc/lsp.spec.ts +2 -5
  109. package/src/arc/payload.ts +7 -12
  110. package/src/auth/auth.spec.ts +1 -1
  111. package/src/auth/auth.ts +1 -1
  112. package/src/auth/index.ts +1 -1
  113. package/src/channel/access.spec.ts +1 -1
  114. package/src/channel/batchRetriever.spec.ts +1 -3
  115. package/src/channel/channel.spec.ts +13 -20
  116. package/src/channel/client.ts +5 -36
  117. package/src/channel/external.ts +1 -1
  118. package/src/channel/index.ts +1 -1
  119. package/src/channel/payload.spec.ts +1 -1
  120. package/src/channel/payload.ts +12 -5
  121. package/src/channel/retriever.ts +5 -3
  122. package/src/channel/writer.ts +1 -1
  123. package/src/client.ts +8 -3
  124. package/src/connection/checker.ts +2 -2
  125. package/src/connection/connection.spec.ts +1 -1
  126. package/src/connection/index.ts +1 -1
  127. package/src/connection.spec.ts +1 -1
  128. package/src/control/client.ts +1 -1
  129. package/src/control/external.ts +1 -1
  130. package/src/control/index.ts +1 -1
  131. package/src/control/state.spec.ts +1 -1
  132. package/src/control/state.ts +1 -1
  133. package/src/device/access.spec.ts +1 -1
  134. package/src/device/client.ts +1 -1
  135. package/src/device/device.spec.ts +1 -1
  136. package/src/device/external.ts +1 -1
  137. package/src/device/index.ts +1 -1
  138. package/src/device/payload.ts +1 -1
  139. package/src/errors.spec.ts +1 -1
  140. package/src/errors.ts +1 -1
  141. package/src/framer/adapter.spec.ts +1 -1
  142. package/src/framer/adapter.ts +1 -1
  143. package/src/framer/client.spec.ts +1 -1
  144. package/src/framer/client.ts +1 -1
  145. package/src/framer/codec.spec.ts +1 -1
  146. package/src/framer/codec.ts +1 -1
  147. package/src/framer/deleter.spec.ts +1 -1
  148. package/src/framer/deleter.ts +1 -1
  149. package/src/framer/external.ts +2 -1
  150. package/src/framer/frame.spec.ts +1 -1
  151. package/src/framer/frame.ts +1 -1
  152. package/src/framer/index.ts +1 -1
  153. package/src/framer/iterator.spec.ts +68 -1
  154. package/src/framer/iterator.ts +8 -1
  155. package/src/framer/payload.ts +1 -1
  156. package/src/framer/reader.spec.ts +213 -84
  157. package/src/framer/reader.ts +14 -7
  158. package/src/framer/streamProxy.ts +1 -1
  159. package/src/framer/streamer.spec.ts +1 -2
  160. package/src/framer/streamer.ts +4 -4
  161. package/src/framer/writer.spec.ts +1 -1
  162. package/src/framer/writer.ts +1 -1
  163. package/src/index.ts +2 -1
  164. package/src/label/access.spec.ts +1 -1
  165. package/src/label/client.ts +1 -1
  166. package/src/label/external.ts +1 -1
  167. package/src/label/index.ts +1 -1
  168. package/src/label/label.spec.ts +1 -1
  169. package/src/label/payload.ts +1 -1
  170. package/src/ontology/client.ts +6 -7
  171. package/src/ontology/external.ts +1 -1
  172. package/src/ontology/group/access.spec.ts +1 -1
  173. package/src/ontology/group/client.ts +1 -1
  174. package/src/ontology/group/external.ts +1 -1
  175. package/src/ontology/group/group.spec.ts +1 -1
  176. package/src/ontology/group/index.ts +1 -1
  177. package/src/ontology/group/payload.ts +1 -1
  178. package/src/ontology/index.ts +1 -1
  179. package/src/ontology/ontology.spec.ts +1 -1
  180. package/src/ontology/payload.ts +6 -3
  181. package/src/ontology/writer.ts +1 -1
  182. package/src/rack/access.spec.ts +1 -1
  183. package/src/rack/client.ts +1 -1
  184. package/src/rack/external.ts +1 -1
  185. package/src/rack/index.ts +1 -1
  186. package/src/rack/payload.ts +1 -1
  187. package/src/rack/rack.spec.ts +1 -1
  188. package/src/ranger/access.spec.ts +1 -1
  189. package/src/ranger/alias.ts +1 -1
  190. package/src/ranger/client.ts +1 -1
  191. package/src/ranger/external.ts +1 -1
  192. package/src/ranger/index.ts +1 -1
  193. package/src/ranger/kv.ts +1 -1
  194. package/src/ranger/payload.ts +1 -1
  195. package/src/ranger/ranger.spec.ts +1 -1
  196. package/src/ranger/writer.ts +1 -1
  197. package/src/status/access.spec.ts +1 -1
  198. package/src/status/client.ts +1 -1
  199. package/src/status/external.ts +1 -1
  200. package/src/status/index.ts +1 -1
  201. package/src/status/payload.ts +1 -1
  202. package/src/status/status.spec.ts +1 -1
  203. package/src/task/access.spec.ts +1 -1
  204. package/src/task/client.ts +11 -6
  205. package/src/task/external.ts +1 -1
  206. package/src/task/index.ts +1 -1
  207. package/src/task/payload.spec.ts +113 -0
  208. package/src/task/payload.ts +10 -5
  209. package/src/task/task.spec.ts +1 -1
  210. package/src/testutil/access.ts +1 -1
  211. package/src/testutil/channels.ts +1 -1
  212. package/src/testutil/client.ts +1 -1
  213. package/src/testutil/telem.ts +1 -1
  214. package/src/transport.ts +1 -1
  215. package/src/user/access.spec.ts +1 -1
  216. package/src/user/client.ts +1 -1
  217. package/src/user/external.ts +1 -1
  218. package/src/user/index.ts +1 -1
  219. package/src/user/payload.ts +1 -1
  220. package/src/user/user.spec.ts +1 -1
  221. package/src/util/decodeJSONString.ts +1 -1
  222. package/src/util/parseWithoutKeyConversion.ts +1 -1
  223. package/src/util/retrieve.spec.ts +1 -1
  224. package/src/util/retrieve.ts +1 -1
  225. package/src/util/telem.ts +1 -1
  226. package/src/view/client.ts +96 -0
  227. package/src/view/external.ts +11 -0
  228. package/src/view/index.ts +10 -0
  229. package/src/view/payload.ts +25 -0
  230. package/src/view/view.spec.ts +161 -0
  231. package/src/vite-env.d.ts +1 -1
  232. package/src/workspace/access.spec.ts +1 -1
  233. package/src/workspace/client.ts +1 -1
  234. package/src/workspace/external.ts +1 -1
  235. package/src/workspace/index.ts +1 -1
  236. package/src/workspace/lineplot/access.spec.ts +1 -1
  237. package/src/workspace/lineplot/client.ts +1 -1
  238. package/src/workspace/lineplot/external.ts +1 -1
  239. package/src/workspace/lineplot/index.ts +1 -1
  240. package/src/workspace/lineplot/lineplot.spec.ts +1 -1
  241. package/src/workspace/lineplot/payload.ts +1 -1
  242. package/src/workspace/log/access.spec.ts +1 -1
  243. package/src/workspace/log/client.ts +1 -1
  244. package/src/workspace/log/external.ts +1 -1
  245. package/src/workspace/log/index.ts +1 -1
  246. package/src/workspace/log/log.spec.ts +1 -1
  247. package/src/workspace/log/payload.ts +1 -1
  248. package/src/workspace/payload.ts +1 -1
  249. package/src/workspace/schematic/access.spec.ts +1 -1
  250. package/src/workspace/schematic/client.ts +1 -1
  251. package/src/workspace/schematic/external.ts +1 -1
  252. package/src/workspace/schematic/index.ts +1 -1
  253. package/src/workspace/schematic/payload.ts +1 -1
  254. package/src/workspace/schematic/schematic.spec.ts +1 -1
  255. package/src/workspace/schematic/symbol/access.spec.ts +1 -1
  256. package/src/workspace/schematic/symbol/client.spec.ts +1 -1
  257. package/src/workspace/schematic/symbol/client.ts +1 -1
  258. package/src/workspace/schematic/symbol/external.ts +1 -1
  259. package/src/workspace/schematic/symbol/index.ts +1 -1
  260. package/src/workspace/schematic/symbol/payload.ts +1 -1
  261. package/src/workspace/table/access.spec.ts +1 -1
  262. package/src/workspace/table/client.ts +1 -1
  263. package/src/workspace/table/external.ts +1 -1
  264. package/src/workspace/table/index.ts +1 -1
  265. package/src/workspace/table/payload.ts +1 -1
  266. package/src/workspace/table/table.spec.ts +1 -1
  267. package/src/workspace/workspace.spec.ts +1 -1
  268. package/vite.config.ts +1 -1
@@ -13,12 +13,12 @@ declare const keyRetrieveRequestZ: z.ZodPipe<z.ZodObject<{
13
13
  declare const listRetrieveArgsZ: z.ZodUnion<readonly [z.ZodPipe<z.ZodObject<{
14
14
  for: z.ZodUnion<[z.ZodObject<{
15
15
  type: z.ZodEnum<{
16
+ channel: "channel";
16
17
  status: "status";
17
18
  label: "label";
18
19
  log: "log";
19
20
  builtin: "builtin";
20
21
  cluster: "cluster";
21
- channel: "channel";
22
22
  node: "node";
23
23
  group: "group";
24
24
  range: "range";
@@ -36,37 +36,38 @@ declare const listRetrieveArgsZ: z.ZodUnion<readonly [z.ZodPipe<z.ZodObject<{
36
36
  table: "table";
37
37
  arc: "arc";
38
38
  schematic_symbol: "schematic_symbol";
39
+ view: "view";
39
40
  }>;
40
41
  key: z.ZodString;
41
42
  }, z.core.$strip>, z.ZodPipe<z.ZodString, z.ZodTransform<{
42
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
43
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
43
44
  key: string;
44
45
  }, string>>]>;
45
46
  }, z.core.$strip>, z.ZodTransform<{
46
47
  subjects: ({
47
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
48
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
48
49
  key: string;
49
50
  } | {
50
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
51
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
51
52
  key: string;
52
53
  })[];
53
54
  }, {
54
55
  for: {
55
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
56
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
56
57
  key: string;
57
58
  } | {
58
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
59
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
59
60
  key: string;
60
61
  };
61
62
  }>>, z.ZodPipe<z.ZodObject<{
62
63
  for: z.ZodArray<z.ZodUnion<[z.ZodObject<{
63
64
  type: z.ZodEnum<{
65
+ channel: "channel";
64
66
  status: "status";
65
67
  label: "label";
66
68
  log: "log";
67
69
  builtin: "builtin";
68
70
  cluster: "cluster";
69
- channel: "channel";
70
71
  node: "node";
71
72
  group: "group";
72
73
  range: "range";
@@ -84,38 +85,39 @@ declare const listRetrieveArgsZ: z.ZodUnion<readonly [z.ZodPipe<z.ZodObject<{
84
85
  table: "table";
85
86
  arc: "arc";
86
87
  schematic_symbol: "schematic_symbol";
88
+ view: "view";
87
89
  }>;
88
90
  key: z.ZodString;
89
91
  }, z.core.$strip>, z.ZodPipe<z.ZodString, z.ZodTransform<{
90
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
92
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
91
93
  key: string;
92
94
  }, string>>]>>;
93
95
  }, z.core.$strip>, z.ZodTransform<{
94
96
  subjects: ({
95
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
97
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
96
98
  key: string;
97
99
  } | {
98
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
100
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
99
101
  key: string;
100
102
  })[];
101
103
  }, {
102
104
  for: ({
103
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
105
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
104
106
  key: string;
105
107
  } | {
106
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
108
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
107
109
  key: string;
108
110
  })[];
109
111
  }>>, z.ZodObject<{
110
112
  keys: z.ZodOptional<z.ZodArray<z.ZodUUID>>;
111
113
  subjects: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
112
114
  type: z.ZodEnum<{
115
+ channel: "channel";
113
116
  status: "status";
114
117
  label: "label";
115
118
  log: "log";
116
119
  builtin: "builtin";
117
120
  cluster: "cluster";
118
- channel: "channel";
119
121
  node: "node";
120
122
  group: "group";
121
123
  range: "range";
@@ -133,10 +135,11 @@ declare const listRetrieveArgsZ: z.ZodUnion<readonly [z.ZodPipe<z.ZodObject<{
133
135
  table: "table";
134
136
  arc: "arc";
135
137
  schematic_symbol: "schematic_symbol";
138
+ view: "view";
136
139
  }>;
137
140
  key: z.ZodString;
138
141
  }, z.core.$strip>, z.ZodPipe<z.ZodString, z.ZodTransform<{
139
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
142
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
140
143
  key: string;
141
144
  }, string>>]>>>;
142
145
  limit: z.ZodOptional<z.ZodNumber>;
@@ -154,12 +157,12 @@ declare const retrieveArgsZ: z.ZodUnion<readonly [z.ZodPipe<z.ZodObject<{
154
157
  }>>, z.ZodUnion<readonly [z.ZodPipe<z.ZodObject<{
155
158
  for: z.ZodUnion<[z.ZodObject<{
156
159
  type: z.ZodEnum<{
160
+ channel: "channel";
157
161
  status: "status";
158
162
  label: "label";
159
163
  log: "log";
160
164
  builtin: "builtin";
161
165
  cluster: "cluster";
162
- channel: "channel";
163
166
  node: "node";
164
167
  group: "group";
165
168
  range: "range";
@@ -177,37 +180,38 @@ declare const retrieveArgsZ: z.ZodUnion<readonly [z.ZodPipe<z.ZodObject<{
177
180
  table: "table";
178
181
  arc: "arc";
179
182
  schematic_symbol: "schematic_symbol";
183
+ view: "view";
180
184
  }>;
181
185
  key: z.ZodString;
182
186
  }, z.core.$strip>, z.ZodPipe<z.ZodString, z.ZodTransform<{
183
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
187
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
184
188
  key: string;
185
189
  }, string>>]>;
186
190
  }, z.core.$strip>, z.ZodTransform<{
187
191
  subjects: ({
188
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
192
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
189
193
  key: string;
190
194
  } | {
191
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
195
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
192
196
  key: string;
193
197
  })[];
194
198
  }, {
195
199
  for: {
196
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
200
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
197
201
  key: string;
198
202
  } | {
199
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
203
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
200
204
  key: string;
201
205
  };
202
206
  }>>, z.ZodPipe<z.ZodObject<{
203
207
  for: z.ZodArray<z.ZodUnion<[z.ZodObject<{
204
208
  type: z.ZodEnum<{
209
+ channel: "channel";
205
210
  status: "status";
206
211
  label: "label";
207
212
  log: "log";
208
213
  builtin: "builtin";
209
214
  cluster: "cluster";
210
- channel: "channel";
211
215
  node: "node";
212
216
  group: "group";
213
217
  range: "range";
@@ -225,38 +229,39 @@ declare const retrieveArgsZ: z.ZodUnion<readonly [z.ZodPipe<z.ZodObject<{
225
229
  table: "table";
226
230
  arc: "arc";
227
231
  schematic_symbol: "schematic_symbol";
232
+ view: "view";
228
233
  }>;
229
234
  key: z.ZodString;
230
235
  }, z.core.$strip>, z.ZodPipe<z.ZodString, z.ZodTransform<{
231
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
236
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
232
237
  key: string;
233
238
  }, string>>]>>;
234
239
  }, z.core.$strip>, z.ZodTransform<{
235
240
  subjects: ({
236
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
241
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
237
242
  key: string;
238
243
  } | {
239
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
244
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
240
245
  key: string;
241
246
  })[];
242
247
  }, {
243
248
  for: ({
244
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
249
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
245
250
  key: string;
246
251
  } | {
247
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
252
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
248
253
  key: string;
249
254
  })[];
250
255
  }>>, z.ZodObject<{
251
256
  keys: z.ZodOptional<z.ZodArray<z.ZodUUID>>;
252
257
  subjects: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
253
258
  type: z.ZodEnum<{
259
+ channel: "channel";
254
260
  status: "status";
255
261
  label: "label";
256
262
  log: "log";
257
263
  builtin: "builtin";
258
264
  cluster: "cluster";
259
- channel: "channel";
260
265
  node: "node";
261
266
  group: "group";
262
267
  range: "range";
@@ -274,10 +279,11 @@ declare const retrieveArgsZ: z.ZodUnion<readonly [z.ZodPipe<z.ZodObject<{
274
279
  table: "table";
275
280
  arc: "arc";
276
281
  schematic_symbol: "schematic_symbol";
282
+ view: "view";
277
283
  }>;
278
284
  key: z.ZodString;
279
285
  }, z.core.$strip>, z.ZodPipe<z.ZodString, z.ZodTransform<{
280
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
286
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
281
287
  key: string;
282
288
  }, string>>]>>>;
283
289
  limit: z.ZodOptional<z.ZodNumber>;
@@ -290,12 +296,12 @@ declare const singleCreateArgsZ: z.ZodPipe<z.ZodObject<{
290
296
  name: z.ZodString;
291
297
  objects: z.ZodUnion<[z.ZodArray<z.ZodUnion<[z.ZodObject<{
292
298
  type: z.ZodEnum<{
299
+ channel: "channel";
293
300
  status: "status";
294
301
  label: "label";
295
302
  log: "log";
296
303
  builtin: "builtin";
297
304
  cluster: "cluster";
298
- channel: "channel";
299
305
  node: "node";
300
306
  group: "group";
301
307
  range: "range";
@@ -313,19 +319,20 @@ declare const singleCreateArgsZ: z.ZodPipe<z.ZodObject<{
313
319
  table: "table";
314
320
  arc: "arc";
315
321
  schematic_symbol: "schematic_symbol";
322
+ view: "view";
316
323
  }>;
317
324
  key: z.ZodString;
318
325
  }, z.core.$strip>, z.ZodPipe<z.ZodString, z.ZodTransform<{
319
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
326
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
320
327
  key: string;
321
328
  }, string>>]>>, z.ZodPipe<z.ZodUnion<[z.ZodObject<{
322
329
  type: z.ZodEnum<{
330
+ channel: "channel";
323
331
  status: "status";
324
332
  label: "label";
325
333
  log: "log";
326
334
  builtin: "builtin";
327
335
  cluster: "cluster";
328
- channel: "channel";
329
336
  node: "node";
330
337
  group: "group";
331
338
  range: "range";
@@ -343,22 +350,23 @@ declare const singleCreateArgsZ: z.ZodPipe<z.ZodObject<{
343
350
  table: "table";
344
351
  arc: "arc";
345
352
  schematic_symbol: "schematic_symbol";
353
+ view: "view";
346
354
  }>;
347
355
  key: z.ZodString;
348
356
  }, z.core.$strip>, z.ZodPipe<z.ZodString, z.ZodTransform<{
349
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
357
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
350
358
  key: string;
351
359
  }, string>>]>, z.ZodTransform<({
352
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
360
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
353
361
  key: string;
354
362
  } | {
355
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
363
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
356
364
  key: string;
357
365
  })[], {
358
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
366
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
359
367
  key: string;
360
368
  } | {
361
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
369
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
362
370
  key: string;
363
371
  }>>]>;
364
372
  actions: z.ZodUnion<[z.ZodArray<z.ZodEnum<{
@@ -376,10 +384,10 @@ declare const singleCreateArgsZ: z.ZodPipe<z.ZodObject<{
376
384
  policies: {
377
385
  name: string;
378
386
  objects: ({
379
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
387
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
380
388
  key: string;
381
389
  } | {
382
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
390
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
383
391
  key: string;
384
392
  })[];
385
393
  actions: ("create" | "delete" | "retrieve" | "update")[];
@@ -388,10 +396,10 @@ declare const singleCreateArgsZ: z.ZodPipe<z.ZodObject<{
388
396
  }, {
389
397
  name: string;
390
398
  objects: ({
391
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
399
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
392
400
  key: string;
393
401
  } | {
394
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
402
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
395
403
  key: string;
396
404
  })[];
397
405
  actions: ("create" | "delete" | "retrieve" | "update")[];
@@ -403,12 +411,12 @@ export declare const multipleCreateArgsZ: z.ZodPipe<z.ZodArray<z.ZodObject<{
403
411
  name: z.ZodString;
404
412
  objects: z.ZodUnion<[z.ZodArray<z.ZodUnion<[z.ZodObject<{
405
413
  type: z.ZodEnum<{
414
+ channel: "channel";
406
415
  status: "status";
407
416
  label: "label";
408
417
  log: "log";
409
418
  builtin: "builtin";
410
419
  cluster: "cluster";
411
- channel: "channel";
412
420
  node: "node";
413
421
  group: "group";
414
422
  range: "range";
@@ -426,19 +434,20 @@ export declare const multipleCreateArgsZ: z.ZodPipe<z.ZodArray<z.ZodObject<{
426
434
  table: "table";
427
435
  arc: "arc";
428
436
  schematic_symbol: "schematic_symbol";
437
+ view: "view";
429
438
  }>;
430
439
  key: z.ZodString;
431
440
  }, z.core.$strip>, z.ZodPipe<z.ZodString, z.ZodTransform<{
432
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
441
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
433
442
  key: string;
434
443
  }, string>>]>>, z.ZodPipe<z.ZodUnion<[z.ZodObject<{
435
444
  type: z.ZodEnum<{
445
+ channel: "channel";
436
446
  status: "status";
437
447
  label: "label";
438
448
  log: "log";
439
449
  builtin: "builtin";
440
450
  cluster: "cluster";
441
- channel: "channel";
442
451
  node: "node";
443
452
  group: "group";
444
453
  range: "range";
@@ -456,22 +465,23 @@ export declare const multipleCreateArgsZ: z.ZodPipe<z.ZodArray<z.ZodObject<{
456
465
  table: "table";
457
466
  arc: "arc";
458
467
  schematic_symbol: "schematic_symbol";
468
+ view: "view";
459
469
  }>;
460
470
  key: z.ZodString;
461
471
  }, z.core.$strip>, z.ZodPipe<z.ZodString, z.ZodTransform<{
462
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
472
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
463
473
  key: string;
464
474
  }, string>>]>, z.ZodTransform<({
465
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
475
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
466
476
  key: string;
467
477
  } | {
468
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
478
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
469
479
  key: string;
470
480
  })[], {
471
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
481
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
472
482
  key: string;
473
483
  } | {
474
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
484
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
475
485
  key: string;
476
486
  }>>]>;
477
487
  actions: z.ZodUnion<[z.ZodArray<z.ZodEnum<{
@@ -489,10 +499,10 @@ export declare const multipleCreateArgsZ: z.ZodPipe<z.ZodArray<z.ZodObject<{
489
499
  policies: {
490
500
  name: string;
491
501
  objects: ({
492
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
502
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
493
503
  key: string;
494
504
  } | {
495
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
505
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
496
506
  key: string;
497
507
  })[];
498
508
  actions: ("create" | "delete" | "retrieve" | "update")[];
@@ -501,10 +511,10 @@ export declare const multipleCreateArgsZ: z.ZodPipe<z.ZodArray<z.ZodObject<{
501
511
  }, {
502
512
  name: string;
503
513
  objects: ({
504
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
514
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
505
515
  key: string;
506
516
  } | {
507
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
517
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
508
518
  key: string;
509
519
  })[];
510
520
  actions: ("create" | "delete" | "retrieve" | "update")[];
@@ -515,12 +525,12 @@ export declare const createArgsZ: z.ZodUnion<readonly [z.ZodPipe<z.ZodObject<{
515
525
  name: z.ZodString;
516
526
  objects: z.ZodUnion<[z.ZodArray<z.ZodUnion<[z.ZodObject<{
517
527
  type: z.ZodEnum<{
528
+ channel: "channel";
518
529
  status: "status";
519
530
  label: "label";
520
531
  log: "log";
521
532
  builtin: "builtin";
522
533
  cluster: "cluster";
523
- channel: "channel";
524
534
  node: "node";
525
535
  group: "group";
526
536
  range: "range";
@@ -538,19 +548,20 @@ export declare const createArgsZ: z.ZodUnion<readonly [z.ZodPipe<z.ZodObject<{
538
548
  table: "table";
539
549
  arc: "arc";
540
550
  schematic_symbol: "schematic_symbol";
551
+ view: "view";
541
552
  }>;
542
553
  key: z.ZodString;
543
554
  }, z.core.$strip>, z.ZodPipe<z.ZodString, z.ZodTransform<{
544
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
555
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
545
556
  key: string;
546
557
  }, string>>]>>, z.ZodPipe<z.ZodUnion<[z.ZodObject<{
547
558
  type: z.ZodEnum<{
559
+ channel: "channel";
548
560
  status: "status";
549
561
  label: "label";
550
562
  log: "log";
551
563
  builtin: "builtin";
552
564
  cluster: "cluster";
553
- channel: "channel";
554
565
  node: "node";
555
566
  group: "group";
556
567
  range: "range";
@@ -568,22 +579,23 @@ export declare const createArgsZ: z.ZodUnion<readonly [z.ZodPipe<z.ZodObject<{
568
579
  table: "table";
569
580
  arc: "arc";
570
581
  schematic_symbol: "schematic_symbol";
582
+ view: "view";
571
583
  }>;
572
584
  key: z.ZodString;
573
585
  }, z.core.$strip>, z.ZodPipe<z.ZodString, z.ZodTransform<{
574
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
586
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
575
587
  key: string;
576
588
  }, string>>]>, z.ZodTransform<({
577
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
589
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
578
590
  key: string;
579
591
  } | {
580
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
592
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
581
593
  key: string;
582
594
  })[], {
583
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
595
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
584
596
  key: string;
585
597
  } | {
586
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
598
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
587
599
  key: string;
588
600
  }>>]>;
589
601
  actions: z.ZodUnion<[z.ZodArray<z.ZodEnum<{
@@ -601,10 +613,10 @@ export declare const createArgsZ: z.ZodUnion<readonly [z.ZodPipe<z.ZodObject<{
601
613
  policies: {
602
614
  name: string;
603
615
  objects: ({
604
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
616
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
605
617
  key: string;
606
618
  } | {
607
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
619
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
608
620
  key: string;
609
621
  })[];
610
622
  actions: ("create" | "delete" | "retrieve" | "update")[];
@@ -613,10 +625,10 @@ export declare const createArgsZ: z.ZodUnion<readonly [z.ZodPipe<z.ZodObject<{
613
625
  }, {
614
626
  name: string;
615
627
  objects: ({
616
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
628
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
617
629
  key: string;
618
630
  } | {
619
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
631
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
620
632
  key: string;
621
633
  })[];
622
634
  actions: ("create" | "delete" | "retrieve" | "update")[];
@@ -626,12 +638,12 @@ export declare const createArgsZ: z.ZodUnion<readonly [z.ZodPipe<z.ZodObject<{
626
638
  name: z.ZodString;
627
639
  objects: z.ZodUnion<[z.ZodArray<z.ZodUnion<[z.ZodObject<{
628
640
  type: z.ZodEnum<{
641
+ channel: "channel";
629
642
  status: "status";
630
643
  label: "label";
631
644
  log: "log";
632
645
  builtin: "builtin";
633
646
  cluster: "cluster";
634
- channel: "channel";
635
647
  node: "node";
636
648
  group: "group";
637
649
  range: "range";
@@ -649,19 +661,20 @@ export declare const createArgsZ: z.ZodUnion<readonly [z.ZodPipe<z.ZodObject<{
649
661
  table: "table";
650
662
  arc: "arc";
651
663
  schematic_symbol: "schematic_symbol";
664
+ view: "view";
652
665
  }>;
653
666
  key: z.ZodString;
654
667
  }, z.core.$strip>, z.ZodPipe<z.ZodString, z.ZodTransform<{
655
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
668
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
656
669
  key: string;
657
670
  }, string>>]>>, z.ZodPipe<z.ZodUnion<[z.ZodObject<{
658
671
  type: z.ZodEnum<{
672
+ channel: "channel";
659
673
  status: "status";
660
674
  label: "label";
661
675
  log: "log";
662
676
  builtin: "builtin";
663
677
  cluster: "cluster";
664
- channel: "channel";
665
678
  node: "node";
666
679
  group: "group";
667
680
  range: "range";
@@ -679,22 +692,23 @@ export declare const createArgsZ: z.ZodUnion<readonly [z.ZodPipe<z.ZodObject<{
679
692
  table: "table";
680
693
  arc: "arc";
681
694
  schematic_symbol: "schematic_symbol";
695
+ view: "view";
682
696
  }>;
683
697
  key: z.ZodString;
684
698
  }, z.core.$strip>, z.ZodPipe<z.ZodString, z.ZodTransform<{
685
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
699
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
686
700
  key: string;
687
701
  }, string>>]>, z.ZodTransform<({
688
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
702
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
689
703
  key: string;
690
704
  } | {
691
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
705
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
692
706
  key: string;
693
707
  })[], {
694
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
708
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
695
709
  key: string;
696
710
  } | {
697
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
711
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
698
712
  key: string;
699
713
  }>>]>;
700
714
  actions: z.ZodUnion<[z.ZodArray<z.ZodEnum<{
@@ -712,10 +726,10 @@ export declare const createArgsZ: z.ZodUnion<readonly [z.ZodPipe<z.ZodObject<{
712
726
  policies: {
713
727
  name: string;
714
728
  objects: ({
715
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
729
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
716
730
  key: string;
717
731
  } | {
718
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
732
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
719
733
  key: string;
720
734
  })[];
721
735
  actions: ("create" | "delete" | "retrieve" | "update")[];
@@ -724,10 +738,10 @@ export declare const createArgsZ: z.ZodUnion<readonly [z.ZodPipe<z.ZodObject<{
724
738
  }, {
725
739
  name: string;
726
740
  objects: ({
727
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
741
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
728
742
  key: string;
729
743
  } | {
730
- type: "status" | "label" | "log" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol";
744
+ type: "channel" | "status" | "label" | "log" | "builtin" | "cluster" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy" | "role" | "table" | "arc" | "schematic_symbol" | "view";
731
745
  key: string;
732
746
  })[];
733
747
  actions: ("create" | "delete" | "retrieve" | "update")[];