@synnaxlabs/client 0.30.0 → 0.31.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 (115) hide show
  1. package/.turbo/turbo-build.log +6 -6
  2. package/api/client.api.md +615 -261
  3. package/dist/access/client.d.ts +2 -7
  4. package/dist/access/client.d.ts.map +1 -1
  5. package/dist/access/payload.d.ts +7 -102
  6. package/dist/access/payload.d.ts.map +1 -1
  7. package/dist/access/policy/client.d.ts +17 -0
  8. package/dist/access/policy/client.d.ts.map +1 -0
  9. package/dist/access/policy/external.d.ts +3 -0
  10. package/dist/access/policy/external.d.ts.map +1 -0
  11. package/dist/access/policy/index.d.ts +2 -0
  12. package/dist/access/policy/index.d.ts.map +1 -0
  13. package/dist/access/policy/payload.d.ts +163 -0
  14. package/dist/access/policy/payload.d.ts.map +1 -0
  15. package/dist/access/policy/policy.spec.d.ts +2 -0
  16. package/dist/access/policy/policy.spec.d.ts.map +1 -0
  17. package/dist/access/policy/retriever.d.ts +36 -0
  18. package/dist/access/policy/retriever.d.ts.map +1 -0
  19. package/dist/access/policy/writer.d.ts +9 -0
  20. package/dist/access/policy/writer.d.ts.map +1 -0
  21. package/dist/auth/auth.d.ts +6 -30
  22. package/dist/auth/auth.d.ts.map +1 -1
  23. package/dist/channel/payload.d.ts +17 -17
  24. package/dist/channel/payload.d.ts.map +1 -1
  25. package/dist/channel/retriever.d.ts +8 -8
  26. package/dist/client.cjs +31 -21
  27. package/dist/client.js +2962 -2233
  28. package/dist/framer/client.d.ts +4 -1
  29. package/dist/framer/client.d.ts.map +1 -1
  30. package/dist/framer/frame.d.ts +27 -80
  31. package/dist/framer/frame.d.ts.map +1 -1
  32. package/dist/framer/streamer.d.ts +3 -1
  33. package/dist/framer/streamer.d.ts.map +1 -1
  34. package/dist/framer/writer.d.ts +24 -16
  35. package/dist/framer/writer.d.ts.map +1 -1
  36. package/dist/hardware/device/client.d.ts +2 -2
  37. package/dist/hardware/device/payload.d.ts +1 -1
  38. package/dist/hardware/device/payload.d.ts.map +1 -1
  39. package/dist/hardware/rack/payload.d.ts +1 -1
  40. package/dist/hardware/rack/payload.d.ts.map +1 -1
  41. package/dist/hardware/task/client.d.ts +2 -2
  42. package/dist/hardware/task/ni/types.d.ts +16 -16
  43. package/dist/hardware/task/payload.d.ts +13 -13
  44. package/dist/hardware/task/payload.d.ts.map +1 -1
  45. package/dist/index.d.ts +6 -2
  46. package/dist/index.d.ts.map +1 -1
  47. package/dist/label/payload.d.ts +1 -1
  48. package/dist/label/payload.d.ts.map +1 -1
  49. package/dist/label/writer.d.ts +5 -5
  50. package/dist/ontology/client.d.ts +32 -30
  51. package/dist/ontology/client.d.ts.map +1 -1
  52. package/dist/ontology/payload.d.ts +62 -63
  53. package/dist/ontology/payload.d.ts.map +1 -1
  54. package/dist/ranger/payload.d.ts +2 -2
  55. package/dist/ranger/payload.d.ts.map +1 -1
  56. package/dist/ranger/writer.d.ts +5 -5
  57. package/dist/user/client.d.ts +13 -3
  58. package/dist/user/client.d.ts.map +1 -1
  59. package/dist/user/payload.d.ts +34 -3
  60. package/dist/user/payload.d.ts.map +1 -1
  61. package/dist/user/retriever.d.ts +21 -0
  62. package/dist/user/retriever.d.ts.map +1 -0
  63. package/dist/user/user.spec.d.ts +2 -0
  64. package/dist/user/user.spec.d.ts.map +1 -0
  65. package/dist/user/writer.d.ts +11 -0
  66. package/dist/user/writer.d.ts.map +1 -0
  67. package/dist/workspace/lineplot/payload.d.ts +1 -1
  68. package/dist/workspace/lineplot/payload.d.ts.map +1 -1
  69. package/dist/workspace/payload.d.ts +1 -1
  70. package/dist/workspace/payload.d.ts.map +1 -1
  71. package/dist/workspace/schematic/client.d.ts.map +1 -1
  72. package/dist/workspace/schematic/payload.d.ts +1 -1
  73. package/dist/workspace/schematic/payload.d.ts.map +1 -1
  74. package/examples/node/package-lock.json +963 -134
  75. package/examples/node/package.json +1 -1
  76. package/package.json +3 -3
  77. package/src/access/client.ts +4 -70
  78. package/src/access/payload.ts +14 -24
  79. package/src/access/policy/client.ts +65 -0
  80. package/src/access/policy/external.ts +11 -0
  81. package/src/access/policy/index.ts +10 -0
  82. package/src/access/policy/payload.ts +45 -0
  83. package/src/access/policy/policy.spec.ts +331 -0
  84. package/src/access/policy/retriever.ts +43 -0
  85. package/src/access/policy/writer.ts +65 -0
  86. package/src/auth/auth.ts +32 -10
  87. package/src/channel/payload.ts +2 -2
  88. package/src/framer/client.ts +7 -1
  89. package/src/framer/frame.spec.ts +21 -12
  90. package/src/framer/frame.ts +9 -24
  91. package/src/framer/streamer.spec.ts +48 -0
  92. package/src/framer/streamer.ts +7 -4
  93. package/src/framer/writer.ts +0 -2
  94. package/src/hardware/device/payload.ts +2 -2
  95. package/src/hardware/rack/payload.ts +2 -2
  96. package/src/hardware/task/payload.ts +2 -2
  97. package/src/index.ts +16 -13
  98. package/src/label/payload.ts +2 -2
  99. package/src/ontology/client.ts +35 -34
  100. package/src/ontology/payload.ts +28 -35
  101. package/src/ranger/payload.ts +5 -7
  102. package/src/setupspecs.ts +2 -2
  103. package/src/user/client.ts +63 -19
  104. package/src/user/payload.ts +14 -7
  105. package/src/user/retriever.ts +41 -0
  106. package/src/user/user.spec.ts +289 -0
  107. package/src/user/writer.ts +91 -0
  108. package/src/workspace/lineplot/payload.ts +2 -2
  109. package/src/workspace/payload.ts +2 -2
  110. package/src/workspace/schematic/client.ts +1 -1
  111. package/src/workspace/schematic/payload.ts +2 -2
  112. package/src/workspace/workspace.spec.ts +1 -1
  113. package/dist/access/access.spec.d.ts +0 -2
  114. package/dist/access/access.spec.d.ts.map +0 -1
  115. package/src/access/access.spec.ts +0 -276
@@ -9,13 +9,13 @@ export declare const stateZ: z.ZodObject<{
9
9
  key: z.ZodOptional<z.ZodString>;
10
10
  details: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodEffects<z.ZodString, any, string>]>, z.ZodArray<z.ZodUnknown, "many">]>, z.ZodNull]>;
11
11
  }, "strip", z.ZodTypeAny, {
12
- variant: string;
13
12
  task: string;
13
+ variant: string;
14
14
  key?: string | undefined;
15
15
  details?: any;
16
16
  }, {
17
- variant: string;
18
17
  task: string | number | bigint;
18
+ variant: string;
19
19
  details: string | unknown[] | Record<string, unknown> | null;
20
20
  key?: string | undefined;
21
21
  }>;
@@ -34,13 +34,13 @@ export declare const taskZ: z.ZodObject<{
34
34
  key: z.ZodOptional<z.ZodString>;
35
35
  details: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodEffects<z.ZodString, any, string>]>, z.ZodArray<z.ZodUnknown, "many">]>, z.ZodNull]>;
36
36
  }, "strip", z.ZodTypeAny, {
37
- variant: string;
38
37
  task: string;
38
+ variant: string;
39
39
  key?: string | undefined;
40
40
  details?: any;
41
41
  }, {
42
- variant: string;
43
42
  task: string | number | bigint;
43
+ variant: string;
44
44
  details: string | unknown[] | Record<string, unknown> | null;
45
45
  key?: string | undefined;
46
46
  }>>>;
@@ -52,8 +52,8 @@ export declare const taskZ: z.ZodObject<{
52
52
  config: UnknownRecord;
53
53
  internal?: boolean | undefined;
54
54
  state?: {
55
- variant: string;
56
55
  task: string;
56
+ variant: string;
57
57
  key?: string | undefined;
58
58
  details?: any;
59
59
  } | null | undefined;
@@ -65,8 +65,8 @@ export declare const taskZ: z.ZodObject<{
65
65
  config: UnknownRecord;
66
66
  internal?: boolean | undefined;
67
67
  state?: {
68
- variant: string;
69
68
  task: string | number | bigint;
69
+ variant: string;
70
70
  details: string | unknown[] | Record<string, unknown> | null;
71
71
  key?: string | undefined;
72
72
  } | null | undefined;
@@ -84,13 +84,13 @@ export declare const newTaskZ: z.ZodObject<z.objectUtil.extendShape<Omit<{
84
84
  key: z.ZodOptional<z.ZodString>;
85
85
  details: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodEffects<z.ZodString, any, string>]>, z.ZodArray<z.ZodUnknown, "many">]>, z.ZodNull]>;
86
86
  }, "strip", z.ZodTypeAny, {
87
- variant: string;
88
87
  task: string;
88
+ variant: string;
89
89
  key?: string | undefined;
90
90
  details?: any;
91
91
  }, {
92
- variant: string;
93
92
  task: string | number | bigint;
93
+ variant: string;
94
94
  details: string | unknown[] | Record<string, unknown> | null;
95
95
  key?: string | undefined;
96
96
  }>>>;
@@ -102,11 +102,11 @@ export declare const newTaskZ: z.ZodObject<z.objectUtil.extendShape<Omit<{
102
102
  type: string;
103
103
  name: string;
104
104
  config: string;
105
- internal?: boolean | undefined;
106
105
  key?: string | undefined;
106
+ internal?: boolean | undefined;
107
107
  state?: {
108
- variant: string;
109
108
  task: string;
109
+ variant: string;
110
110
  key?: string | undefined;
111
111
  details?: any;
112
112
  } | null | undefined;
@@ -114,12 +114,12 @@ export declare const newTaskZ: z.ZodObject<z.objectUtil.extendShape<Omit<{
114
114
  }, {
115
115
  type: string;
116
116
  name: string;
117
- internal?: boolean | undefined;
118
117
  key?: string | number | bigint | undefined;
118
+ internal?: boolean | undefined;
119
119
  config?: unknown;
120
120
  state?: {
121
- variant: string;
122
121
  task: string | number | bigint;
122
+ variant: string;
123
123
  details: string | unknown[] | Record<string, unknown> | null;
124
124
  key?: string | undefined;
125
125
  } | null | undefined;
@@ -151,6 +151,6 @@ export declare const commandZ: z.ZodObject<{
151
151
  args: UnknownRecord;
152
152
  }>;
153
153
  export type StateObservable<D extends UnknownRecord = UnknownRecord> = observe.ObservableAsyncCloseable<State<D>>;
154
- export declare const DeviceOntologyType: ontology.ResourceType;
154
+ export declare const ONTOLOGY_TYPE: ontology.ResourceType;
155
155
  export declare const ontologyID: (key: TaskKey) => ontology.ID;
156
156
  //# sourceMappingURL=payload.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"payload.d.ts","sourceRoot":"","sources":["../../../src/hardware/task/payload.ts"],"names":[],"mappings":"AASA,OAAO,EAAU,OAAO,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAC/D,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEtC,eAAO,MAAM,QAAQ,iHAInB,CAAC;AAEH,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,QAAQ,CAAC,CAAC;AAE/C,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;EAcjB,CAAC;AAEH,MAAM,MAAM,KAAK,CAAC,CAAC,SAAS,EAAE,GAAG,aAAa,IAAI,IAAI,CACpD,CAAC,CAAC,KAAK,CAAC,OAAO,MAAM,CAAC,EACtB,SAAS,CACV,GAAG;IACF,OAAO,CAAC,EAAE,CAAC,CAAC;CACb,CAAC;AAEF,eAAO,MAAM,KAAK;;;;;YAUX,CAAC,CAAC,OAAO,CAAC,aAAa,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG7B,CAAC;AAEH,eAAO,MAAM,QAAQ;;;;;YALd,CAAC,CAAC,OAAO,CAAC,aAAa,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQ7B,CAAC;AAEH,MAAM,MAAM,OAAO,CACjB,CAAC,SAAS,aAAa,GAAG,aAAa,EACvC,CAAC,SAAS,MAAM,GAAG,MAAM,IACvB,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,QAAQ,CAAC,EAAE,QAAQ,GAAG,OAAO,CAAC,GAAG;IACvD,IAAI,EAAE,CAAC,CAAC;IACR,MAAM,EAAE,CAAC,CAAC;CACX,CAAC;AAEF,MAAM,MAAM,OAAO,CACjB,CAAC,SAAS,aAAa,GAAG,aAAa,EACvC,CAAC,SAAS,EAAE,GAAG,aAAa,EAC5B,CAAC,SAAS,MAAM,GAAG,MAAM,IACvB,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,KAAK,CAAC,EAAE,QAAQ,GAAG,MAAM,GAAG,OAAO,CAAC,GAAG;IAC9D,IAAI,EAAE,CAAC,CAAC;IACR,MAAM,EAAE,CAAC,CAAC;IACV,KAAK,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;CACzB,CAAC;AAEF,eAAO,MAAM,QAAQ;;;;UASd,CAAC,CAAC,OAAO,CAAC,aAAa,CAAC;;;;;;;;;;;EAC7B,CAAC;AAEH,MAAM,MAAM,eAAe,CAAC,CAAC,SAAS,aAAa,GAAG,aAAa,IACjE,OAAO,CAAC,wBAAwB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;AAE7C,eAAO,MAAM,kBAAkB,EAAa,QAAQ,CAAC,YAAY,CAAC;AAElE,eAAO,MAAM,UAAU,QAAS,OAAO,KAAG,QAAQ,CAAC,EACiB,CAAC"}
1
+ {"version":3,"file":"payload.d.ts","sourceRoot":"","sources":["../../../src/hardware/task/payload.ts"],"names":[],"mappings":"AASA,OAAO,EAAU,OAAO,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAC/D,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEtC,eAAO,MAAM,QAAQ,iHAInB,CAAC;AAEH,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,QAAQ,CAAC,CAAC;AAE/C,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;EAcjB,CAAC;AAEH,MAAM,MAAM,KAAK,CAAC,CAAC,SAAS,EAAE,GAAG,aAAa,IAAI,IAAI,CACpD,CAAC,CAAC,KAAK,CAAC,OAAO,MAAM,CAAC,EACtB,SAAS,CACV,GAAG;IACF,OAAO,CAAC,EAAE,CAAC,CAAC;CACb,CAAC;AAEF,eAAO,MAAM,KAAK;;;;;YAUX,CAAC,CAAC,OAAO,CAAC,aAAa,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG7B,CAAC;AAEH,eAAO,MAAM,QAAQ;;;;;YALd,CAAC,CAAC,OAAO,CAAC,aAAa,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQ7B,CAAC;AAEH,MAAM,MAAM,OAAO,CACjB,CAAC,SAAS,aAAa,GAAG,aAAa,EACvC,CAAC,SAAS,MAAM,GAAG,MAAM,IACvB,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,QAAQ,CAAC,EAAE,QAAQ,GAAG,OAAO,CAAC,GAAG;IACvD,IAAI,EAAE,CAAC,CAAC;IACR,MAAM,EAAE,CAAC,CAAC;CACX,CAAC;AAEF,MAAM,MAAM,OAAO,CACjB,CAAC,SAAS,aAAa,GAAG,aAAa,EACvC,CAAC,SAAS,EAAE,GAAG,aAAa,EAC5B,CAAC,SAAS,MAAM,GAAG,MAAM,IACvB,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,KAAK,CAAC,EAAE,QAAQ,GAAG,MAAM,GAAG,OAAO,CAAC,GAAG;IAC9D,IAAI,EAAE,CAAC,CAAC;IACR,MAAM,EAAE,CAAC,CAAC;IACV,KAAK,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;CACzB,CAAC;AAEF,eAAO,MAAM,QAAQ;;;;UASd,CAAC,CAAC,OAAO,CAAC,aAAa,CAAC;;;;;;;;;;;EAC7B,CAAC;AAEH,MAAM,MAAM,eAAe,CAAC,CAAC,SAAS,aAAa,GAAG,aAAa,IACjE,OAAO,CAAC,wBAAwB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;AAE7C,eAAO,MAAM,aAAa,EAAE,QAAQ,CAAC,YAAqB,CAAC;AAE3D,eAAO,MAAM,UAAU,QAAS,OAAO,KAAG,QAAQ,CAAC,EACY,CAAC"}
package/dist/index.d.ts CHANGED
@@ -1,4 +1,6 @@
1
1
  import { control } from '@synnaxlabs/x';
2
+ export { access } from './access';
3
+ export { policy } from './access/policy';
2
4
  export * from './channel';
3
5
  export { Channel } from './channel/client';
4
6
  export { default as Synnax, type SynnaxProps, synnaxPropsZ } from './client';
@@ -15,8 +17,10 @@ export { label } from './label';
15
17
  export { ontology } from './ontology';
16
18
  export { ranger } from './ranger';
17
19
  export { signals } from './signals';
20
+ export { user } from './user';
18
21
  export { workspace } from './workspace';
19
- export type { CrudeDataType, CrudeDensity, CrudeRate, CrudeSize, CrudeTimeSpan, CrudeTimeStamp, NumericTelemValue, TelemValue, TimeStampStringFormat, TypedArray, TZInfo, } from '@synnaxlabs/x/telem';
20
- export { DataType, Density, MultiSeries, Rate, Series, TimeRange, TimeSpan, TimeStamp, } from '@synnaxlabs/x/telem';
22
+ export { linePlot } from './workspace/lineplot';
23
+ export { schematic } from './workspace/schematic';
24
+ export { type CrudeDataType, type CrudeDensity, type CrudeRate, type CrudeSize, type CrudeTimeSpan, type CrudeTimeStamp, DataType, Density, MultiSeries, type NumericTelemValue, Rate, Series, type TelemValue, TimeRange, TimeSpan, TimeStamp, type TimeStampStringFormat, type TypedArray, type TZInfo, } from '@synnaxlabs/x/telem';
21
25
  export declare const Authority: typeof control.Authority;
22
26
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AASA,cAAc,WAAW,CAAC;AAC1B,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAC3C,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,KAAK,WAAW,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAC7E,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EACL,SAAS,EACT,eAAe,EACf,kBAAkB,EAClB,aAAa,EACb,UAAU,EACV,UAAU,EACV,eAAe,EACf,eAAe,GAChB,MAAM,UAAU,CAAC;AAClB,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAC;AACvC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAC3C,OAAO,EAAE,IAAI,EAAE,MAAM,iBAAiB,CAAC;AACvC,OAAO,EAAE,IAAI,EAAE,MAAM,iBAAiB,CAAC;AACvC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,YAAY,EACV,aAAa,EACb,YAAY,EACZ,SAAS,EACT,SAAS,EACT,aAAa,EACb,cAAc,EACd,iBAAiB,EACjB,UAAU,EACV,qBAAqB,EACrB,UAAU,EACV,MAAM,GACP,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EACL,QAAQ,EACR,OAAO,EACP,WAAW,EACX,IAAI,EACJ,MAAM,EACN,SAAS,EACT,QAAQ,EACR,SAAS,GACV,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AACxC,eAAO,MAAM,SAAS,0BAAoB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,cAAc,WAAW,CAAC;AAC1B,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAC3C,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,KAAK,WAAW,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAC7E,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EACL,SAAS,EACT,eAAe,EACf,kBAAkB,EAClB,aAAa,EACb,UAAU,EACV,UAAU,EACV,eAAe,EACf,eAAe,GAChB,MAAM,UAAU,CAAC;AAClB,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAC;AACvC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAC3C,OAAO,EAAE,IAAI,EAAE,MAAM,iBAAiB,CAAC;AACvC,OAAO,EAAE,IAAI,EAAE,MAAM,iBAAiB,CAAC;AACvC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAC9B,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAChD,OAAO,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAC;AAClD,OAAO,EACL,KAAK,aAAa,EAClB,KAAK,YAAY,EACjB,KAAK,SAAS,EACd,KAAK,SAAS,EACd,KAAK,aAAa,EAClB,KAAK,cAAc,EACnB,QAAQ,EACR,OAAO,EACP,WAAW,EACX,KAAK,iBAAiB,EACtB,IAAI,EACJ,MAAM,EACN,KAAK,UAAU,EACf,SAAS,EACT,QAAQ,EACR,SAAS,EACT,KAAK,qBAAqB,EAC1B,KAAK,UAAU,EACf,KAAK,MAAM,GACZ,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AACxC,eAAO,MAAM,SAAS,0BAAoB,CAAC"}
@@ -17,6 +17,6 @@ export declare const labelZ: z.ZodObject<{
17
17
  color: string;
18
18
  }>;
19
19
  export type Label = z.infer<typeof labelZ>;
20
- export declare const LabelOntologyType: ontology.ResourceType;
20
+ export declare const ONTOLOGY_TYPE: ontology.ResourceType;
21
21
  export declare const ontologyID: (key: Key) => ontology.ID;
22
22
  //# sourceMappingURL=payload.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"payload.d.ts","sourceRoot":"","sources":["../../src/label/payload.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEtC,eAAO,MAAM,IAAI,aAAoB,CAAC;AAEtC,MAAM,MAAM,GAAG,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,IAAI,CAAC,CAAC;AAEvC,MAAM,MAAM,MAAM,GAAG,GAAG,GAAG,GAAG,EAAE,CAAC;AAEjC,eAAO,MAAM,MAAM;;;;;;;;;;;;EAIjB,CAAC;AAEH,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,MAAM,CAAC,CAAC;AAE3C,eAAO,MAAM,iBAAiB,EAAc,QAAQ,CAAC,YAAY,CAAC;AAElE,eAAO,MAAM,UAAU,QAAS,GAAG,KAAG,QAAQ,CAAC,EACI,CAAC"}
1
+ {"version":3,"file":"payload.d.ts","sourceRoot":"","sources":["../../src/label/payload.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEtC,eAAO,MAAM,IAAI,aAAoB,CAAC;AAEtC,MAAM,MAAM,GAAG,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,IAAI,CAAC,CAAC;AAEvC,MAAM,MAAM,MAAM,GAAG,GAAG,GAAG,GAAG,EAAE,CAAC;AAEjC,eAAO,MAAM,MAAM;;;;;;;;;;;;EAIjB,CAAC;AAEH,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,MAAM,CAAC,CAAC;AAE3C,eAAO,MAAM,aAAa,EAAE,QAAQ,CAAC,YAAsB,CAAC;AAE5D,eAAO,MAAM,UAAU,QAAS,GAAG,KAAG,QAAQ,CAAC,EACA,CAAC"}
@@ -20,27 +20,27 @@ export declare const newLabelPayloadZ: z.ZodObject<z.objectUtil.extendShape<{
20
20
  export type NewLabelPayload = z.infer<typeof newLabelPayloadZ>;
21
21
  declare const setReqZ: z.ZodObject<{
22
22
  id: z.ZodObject<{
23
- type: z.ZodUnion<[z.ZodLiteral<"label">, z.ZodLiteral<"builtin">, z.ZodLiteral<"cluster">, z.ZodLiteral<"channel">, z.ZodLiteral<"node">, z.ZodLiteral<"group">, z.ZodLiteral<"range">, z.ZodLiteral<"range-alias">, z.ZodLiteral<"user">, z.ZodLiteral<"workspace">, z.ZodLiteral<"schematic">, z.ZodLiteral<"lineplot">, z.ZodLiteral<"rack">, z.ZodLiteral<"device">, z.ZodLiteral<"task">, z.ZodLiteral<"policy">]>;
23
+ type: z.ZodUnion<[z.ZodLiteral<"label">, z.ZodLiteral<"allow_all">, z.ZodLiteral<"builtin">, z.ZodLiteral<"cluster">, z.ZodLiteral<"channel">, z.ZodLiteral<"node">, z.ZodLiteral<"group">, z.ZodLiteral<"range">, z.ZodLiteral<"framer">, z.ZodLiteral<"range-alias">, z.ZodLiteral<"user">, z.ZodLiteral<"workspace">, z.ZodLiteral<"schematic">, z.ZodLiteral<"lineplot">, z.ZodLiteral<"rack">, z.ZodLiteral<"device">, z.ZodLiteral<"task">, z.ZodLiteral<"policy">]>;
24
24
  key: z.ZodString;
25
25
  }, "strip", z.ZodTypeAny, {
26
- type: "label" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy";
26
+ type: "label" | "allow_all" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy";
27
27
  key: string;
28
28
  }, {
29
- type: "label" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy";
29
+ type: "label" | "allow_all" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy";
30
30
  key: string;
31
31
  }>;
32
32
  labels: z.ZodArray<z.ZodString, "many">;
33
33
  replace: z.ZodOptional<z.ZodBoolean>;
34
34
  }, "strip", z.ZodTypeAny, {
35
35
  id: {
36
- type: "label" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy";
36
+ type: "label" | "allow_all" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy";
37
37
  key: string;
38
38
  };
39
39
  labels: string[];
40
40
  replace?: boolean | undefined;
41
41
  }, {
42
42
  id: {
43
- type: "label" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy";
43
+ type: "label" | "allow_all" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy";
44
44
  key: string;
45
45
  };
46
46
  labels: string[];
@@ -7,13 +7,13 @@ import { group } from './group';
7
7
  import { CrudeID, ID, IDPayload, RelationshipChange, RelationshipDirection, Resource, ResourceChange } from './payload';
8
8
  declare const retrieveReqZ: z.ZodObject<{
9
9
  ids: z.ZodOptional<z.ZodArray<z.ZodObject<{
10
- type: z.ZodUnion<[z.ZodLiteral<"label">, z.ZodLiteral<"builtin">, z.ZodLiteral<"cluster">, z.ZodLiteral<"channel">, z.ZodLiteral<"node">, z.ZodLiteral<"group">, z.ZodLiteral<"range">, z.ZodLiteral<"range-alias">, z.ZodLiteral<"user">, z.ZodLiteral<"workspace">, z.ZodLiteral<"schematic">, z.ZodLiteral<"lineplot">, z.ZodLiteral<"rack">, z.ZodLiteral<"device">, z.ZodLiteral<"task">, z.ZodLiteral<"policy">]>;
10
+ type: z.ZodUnion<[z.ZodLiteral<"label">, z.ZodLiteral<"allow_all">, z.ZodLiteral<"builtin">, z.ZodLiteral<"cluster">, z.ZodLiteral<"channel">, z.ZodLiteral<"node">, z.ZodLiteral<"group">, z.ZodLiteral<"range">, z.ZodLiteral<"framer">, z.ZodLiteral<"range-alias">, z.ZodLiteral<"user">, z.ZodLiteral<"workspace">, z.ZodLiteral<"schematic">, z.ZodLiteral<"lineplot">, z.ZodLiteral<"rack">, z.ZodLiteral<"device">, z.ZodLiteral<"task">, z.ZodLiteral<"policy">]>;
11
11
  key: z.ZodString;
12
12
  }, "strip", z.ZodTypeAny, {
13
- type: "label" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy";
13
+ type: "label" | "allow_all" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy";
14
14
  key: string;
15
15
  }, {
16
- type: "label" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy";
16
+ type: "label" | "allow_all" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy";
17
17
  key: string;
18
18
  }>, "many">>;
19
19
  children: z.ZodOptional<z.ZodBoolean>;
@@ -23,33 +23,33 @@ declare const retrieveReqZ: z.ZodObject<{
23
23
  term: z.ZodOptional<z.ZodString>;
24
24
  limit: z.ZodOptional<z.ZodNumber>;
25
25
  offset: z.ZodOptional<z.ZodNumber>;
26
- types: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodLiteral<"label">, z.ZodLiteral<"builtin">, z.ZodLiteral<"cluster">, z.ZodLiteral<"channel">, z.ZodLiteral<"node">, z.ZodLiteral<"group">, z.ZodLiteral<"range">, z.ZodLiteral<"range-alias">, z.ZodLiteral<"user">, z.ZodLiteral<"workspace">, z.ZodLiteral<"schematic">, z.ZodLiteral<"lineplot">, z.ZodLiteral<"rack">, z.ZodLiteral<"device">, z.ZodLiteral<"task">, z.ZodLiteral<"policy">]>, "many">>;
26
+ types: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodLiteral<"label">, z.ZodLiteral<"allow_all">, z.ZodLiteral<"builtin">, z.ZodLiteral<"cluster">, z.ZodLiteral<"channel">, z.ZodLiteral<"node">, z.ZodLiteral<"group">, z.ZodLiteral<"range">, z.ZodLiteral<"framer">, z.ZodLiteral<"range-alias">, z.ZodLiteral<"user">, z.ZodLiteral<"workspace">, z.ZodLiteral<"schematic">, z.ZodLiteral<"lineplot">, z.ZodLiteral<"rack">, z.ZodLiteral<"device">, z.ZodLiteral<"task">, z.ZodLiteral<"policy">]>, "many">>;
27
27
  }, "strip", z.ZodTypeAny, {
28
28
  limit?: number | undefined;
29
29
  offset?: number | undefined;
30
30
  children?: boolean | undefined;
31
31
  ids?: {
32
- type: "label" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy";
32
+ type: "label" | "allow_all" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy";
33
33
  key: string;
34
34
  }[] | undefined;
35
35
  parents?: boolean | undefined;
36
36
  includeSchema?: boolean | undefined;
37
37
  excludeFieldData?: boolean | undefined;
38
38
  term?: string | undefined;
39
- types?: ("label" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy")[] | undefined;
39
+ types?: ("label" | "allow_all" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy")[] | undefined;
40
40
  }, {
41
41
  limit?: number | undefined;
42
42
  offset?: number | undefined;
43
43
  children?: boolean | undefined;
44
44
  ids?: {
45
- type: "label" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy";
45
+ type: "label" | "allow_all" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy";
46
46
  key: string;
47
47
  }[] | undefined;
48
48
  parents?: boolean | undefined;
49
49
  includeSchema?: boolean | undefined;
50
50
  excludeFieldData?: boolean | undefined;
51
51
  term?: string | undefined;
52
- types?: ("label" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy")[] | undefined;
52
+ types?: ("label" | "allow_all" | "builtin" | "cluster" | "channel" | "node" | "group" | "range" | "framer" | "range-alias" | "user" | "workspace" | "schematic" | "lineplot" | "rack" | "device" | "task" | "policy")[] | undefined;
53
53
  }>;
54
54
  type RetrieveRequest = z.infer<typeof retrieveReqZ>;
55
55
  export type RetrieveOptions = Pick<RetrieveRequest, "includeSchema" | "excludeFieldData" | "types">;
@@ -77,24 +77,25 @@ export declare class Client implements AsyncTermSearcher<string, string, Resourc
77
77
  search(term: string, options?: RetrieveOptions): Promise<Resource[]>;
78
78
  /**
79
79
  * Retrieves the resource in the ontology with the given ID.
80
- * @param id The ID of the resource to retrieve.
81
- * @param options Additional options for the retrieval.
82
- * @param options.includeSchema Whether to include the schema of the resource in the
80
+ * @param id - The ID of the resource to retrieve.
81
+ * @param options - Additional options for the retrieval.
82
+ * @param options.includeSchema - Whether to include the schema of the resource in the
83
83
  * results.
84
- * @param options.excludeFieldData Whether to exclude the field data of the resource in
85
- * the results.
84
+ * @param options.excludeFieldData - Whether to exclude the field data of the resource
85
+ * in the results.
86
86
  * @returns The resource with the given ID.
87
87
  * @throws {QueryError} If no resource is found with the given ID.
88
88
  */
89
89
  retrieve(id: CrudeID, options?: RetrieveOptions): Promise<Resource>;
90
90
  /**
91
91
  * Retrieves the resources in the ontology with the given IDs.
92
- * @param ids The IDs of the resources to retrieve.
93
- * @param options Additional options for the retrieval.
94
- * @param options.includeSchema Whether to include the schema of the resources in the
95
- * results.
96
- * @param options.excludeFieldData Whether to exclude the field data of the resources in
92
+ *
93
+ * @param ids - The IDs of the resources to retrieve.
94
+ * @param options - Additional options for the retrieval.
95
+ * @param options.includeSchema - Whether to include the schema of the resources in
97
96
  * the results.
97
+ * @param options.excludeFieldData - Whether to exclude the field data of the
98
+ * resources in the results.
98
99
  * @returns The resources with the given IDs.
99
100
  * @throws {QueryError} If no resource is found with any of the given IDs.
100
101
  */
@@ -123,31 +124,32 @@ export declare class Client implements AsyncTermSearcher<string, string, Resourc
123
124
  /**
124
125
  * Retrieves the parents of the resources with the given IDs.
125
126
  *
126
- * @param ids the IDs of the resources whose parents to retrieve
127
- * @param options additional options for the retrieval
128
- * @param options.includeSchema whether to include the schema of the parents in the results
129
- * @param options.excludeFieldData whether to exclude the field data of the parents in the results
127
+ * @param ids - the IDs of the resources whose parents to retrieve
128
+ * @param options - additional options for the retrieval
129
+ * @param options.includeSchema - whether to include the schema of the parents in the
130
+ * results
131
+ * @param options.excludeFieldData - whether to exclude the field data of the parents
132
+ * in the results
130
133
  * @returns the parents of the resources with the given IDs
131
134
  */
132
135
  retrieveParents(ids: CrudeID | CrudeID[], options?: RetrieveOptions): Promise<Resource[]>;
133
136
  /**
134
137
  * Adds children to a resource in the ontology.
135
- * @param id The ID of the resource to add children to.
136
- * @param children The IDs of the children to add.
138
+ * @param id - The ID of the resource to add children to.
139
+ * @param children - The IDs of the children to add.
137
140
  */
138
141
  addChildren(id: CrudeID, ...children: CrudeID[]): Promise<void>;
139
142
  /**
140
143
  * Removes children from a resource in the ontology.
141
- * @param id The ID of the resource to remove children from.
142
- * @param children The IDs of the children
143
- * to remove.
144
+ * @param id - The ID of the resource to remove children from.
145
+ * @param children - The IDs of the children to remove.
144
146
  */
145
147
  removeChildren(id: CrudeID, ...children: CrudeID[]): Promise<void>;
146
148
  /**
147
149
  * Moves children from one resource to another in the ontology.
148
- * @param from The ID of the resource to move children from.
149
- * @param to The ID of the resource to move children to.
150
- * @param children The IDs of the children to move.
150
+ * @param from - The ID of the resource to move children from.
151
+ * @param to - The ID of the resource to move children to.
152
+ * @param children - The IDs of the children to move.
151
153
  */
152
154
  moveChildren(from: CrudeID, to: CrudeID, ...children: CrudeID[]): Promise<void>;
153
155
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/ontology/client.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/ontology/client.ts"],"names":[],"mappings":"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"}