@uniformdev/mesh-edgehancer-sdk 19.134.3-alpha.28 → 19.135.1-alpha.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -215,16 +215,19 @@ type RequestEdgehancerContext = {
215
215
  declare const requestEdgehancerDataResourceResolutionResultSchema: z.ZodObject<{
216
216
  errors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
217
217
  warnings: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
218
+ infos: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
218
219
  surrogateKeys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
219
220
  result: z.ZodUnion<[z.ZodString, z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>, z.ZodNumber, z.ZodBoolean, z.ZodArray<z.ZodUnknown, "many">, z.ZodUndefined]>;
220
221
  }, "strict", z.ZodTypeAny, {
221
222
  errors?: string[] | undefined;
222
223
  warnings?: string[] | undefined;
224
+ infos?: string[] | undefined;
223
225
  surrogateKeys?: string[] | undefined;
224
226
  result?: string | number | boolean | unknown[] | z.objectOutputType<{}, z.ZodUnknown, "strip"> | undefined;
225
227
  }, {
226
228
  errors?: string[] | undefined;
227
229
  warnings?: string[] | undefined;
230
+ infos?: string[] | undefined;
228
231
  surrogateKeys?: string[] | undefined;
229
232
  result?: string | number | boolean | unknown[] | z.objectInputType<{}, z.ZodUnknown, "strip"> | undefined;
230
233
  }>;
@@ -232,16 +235,19 @@ declare const requestEdgehancerResultSchema: z.ZodObject<{
232
235
  results: z.ZodArray<z.ZodObject<{
233
236
  errors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
234
237
  warnings: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
238
+ infos: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
235
239
  surrogateKeys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
236
240
  result: z.ZodUnion<[z.ZodString, z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>, z.ZodNumber, z.ZodBoolean, z.ZodArray<z.ZodUnknown, "many">, z.ZodUndefined]>;
237
241
  }, "strict", z.ZodTypeAny, {
238
242
  errors?: string[] | undefined;
239
243
  warnings?: string[] | undefined;
244
+ infos?: string[] | undefined;
240
245
  surrogateKeys?: string[] | undefined;
241
246
  result?: string | number | boolean | unknown[] | z.objectOutputType<{}, z.ZodUnknown, "strip"> | undefined;
242
247
  }, {
243
248
  errors?: string[] | undefined;
244
249
  warnings?: string[] | undefined;
250
+ infos?: string[] | undefined;
245
251
  surrogateKeys?: string[] | undefined;
246
252
  result?: string | number | boolean | unknown[] | z.objectInputType<{}, z.ZodUnknown, "strip"> | undefined;
247
253
  }>, "many">;
@@ -249,6 +255,7 @@ declare const requestEdgehancerResultSchema: z.ZodObject<{
249
255
  results: {
250
256
  errors?: string[] | undefined;
251
257
  warnings?: string[] | undefined;
258
+ infos?: string[] | undefined;
252
259
  surrogateKeys?: string[] | undefined;
253
260
  result?: string | number | boolean | unknown[] | z.objectOutputType<{}, z.ZodUnknown, "strip"> | undefined;
254
261
  }[];
@@ -256,6 +263,7 @@ declare const requestEdgehancerResultSchema: z.ZodObject<{
256
263
  results: {
257
264
  errors?: string[] | undefined;
258
265
  warnings?: string[] | undefined;
266
+ infos?: string[] | undefined;
259
267
  surrogateKeys?: string[] | undefined;
260
268
  result?: string | number | boolean | unknown[] | z.objectInputType<{}, z.ZodUnknown, "strip"> | undefined;
261
269
  }[];
@@ -278,6 +286,7 @@ type ConvertBatchResultsToEdgehancerResultOptions<TID, TResultItem extends DataR
278
286
  declare function convertBatchResultsToEdgehancerResult<TID, TResultItem extends DataResource>({ batch, batchFetchIds: { invalidBatchIndices, validIdToOriginalIndexMap }, batchResults, resolveIdFromBatchResultFn, knownInvalidErrorMessage, missingBatchResultErrorMessage, }: ConvertBatchResultsToEdgehancerResultOptions<TID, TResultItem>): {
279
287
  errors?: string[] | undefined;
280
288
  warnings?: string[] | undefined;
289
+ infos?: string[] | undefined;
281
290
  surrogateKeys?: string[] | undefined;
282
291
  result?: string | number | boolean | unknown[] | zod.objectOutputType<{}, zod.ZodUnknown, "strip"> | undefined;
283
292
  }[];
@@ -430,6 +439,7 @@ type PreRequestEdgehancerContext = {
430
439
  declare const preRequestEdgehancerDataResourceResultSchema: z.ZodObject<{
431
440
  errors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
432
441
  warnings: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
442
+ infos: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
433
443
  dataResource: z.ZodObject<Omit<{
434
444
  id: z.ZodString;
435
445
  displayName: z.ZodString;
@@ -572,6 +582,7 @@ declare const preRequestEdgehancerDataResourceResultSchema: z.ZodObject<{
572
582
  };
573
583
  errors?: string[] | undefined;
574
584
  warnings?: string[] | undefined;
585
+ infos?: string[] | undefined;
575
586
  }, {
576
587
  dataResource: {
577
588
  connectorType: string;
@@ -597,11 +608,13 @@ declare const preRequestEdgehancerDataResourceResultSchema: z.ZodObject<{
597
608
  };
598
609
  errors?: string[] | undefined;
599
610
  warnings?: string[] | undefined;
611
+ infos?: string[] | undefined;
600
612
  }>;
601
613
  declare const preRequestEdgehancerResultSchema: z.ZodObject<{
602
614
  dataResources: z.ZodArray<z.ZodObject<{
603
615
  errors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
604
616
  warnings: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
617
+ infos: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
605
618
  dataResource: z.ZodObject<Omit<{
606
619
  id: z.ZodString;
607
620
  displayName: z.ZodString;
@@ -744,6 +757,7 @@ declare const preRequestEdgehancerResultSchema: z.ZodObject<{
744
757
  };
745
758
  errors?: string[] | undefined;
746
759
  warnings?: string[] | undefined;
760
+ infos?: string[] | undefined;
747
761
  }, {
748
762
  dataResource: {
749
763
  connectorType: string;
@@ -769,6 +783,7 @@ declare const preRequestEdgehancerResultSchema: z.ZodObject<{
769
783
  };
770
784
  errors?: string[] | undefined;
771
785
  warnings?: string[] | undefined;
786
+ infos?: string[] | undefined;
772
787
  }>, "many">;
773
788
  }, "strict", z.ZodTypeAny, {
774
789
  dataResources: {
@@ -796,6 +811,7 @@ declare const preRequestEdgehancerResultSchema: z.ZodObject<{
796
811
  };
797
812
  errors?: string[] | undefined;
798
813
  warnings?: string[] | undefined;
814
+ infos?: string[] | undefined;
799
815
  }[];
800
816
  }, {
801
817
  dataResources: {
@@ -823,6 +839,7 @@ declare const preRequestEdgehancerResultSchema: z.ZodObject<{
823
839
  };
824
840
  errors?: string[] | undefined;
825
841
  warnings?: string[] | undefined;
842
+ infos?: string[] | undefined;
826
843
  }[];
827
844
  }>;
828
845
  type PreRequestEdgehancerResult = z.infer<typeof preRequestEdgehancerResultSchema>;
package/dist/index.d.ts CHANGED
@@ -215,16 +215,19 @@ type RequestEdgehancerContext = {
215
215
  declare const requestEdgehancerDataResourceResolutionResultSchema: z.ZodObject<{
216
216
  errors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
217
217
  warnings: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
218
+ infos: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
218
219
  surrogateKeys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
219
220
  result: z.ZodUnion<[z.ZodString, z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>, z.ZodNumber, z.ZodBoolean, z.ZodArray<z.ZodUnknown, "many">, z.ZodUndefined]>;
220
221
  }, "strict", z.ZodTypeAny, {
221
222
  errors?: string[] | undefined;
222
223
  warnings?: string[] | undefined;
224
+ infos?: string[] | undefined;
223
225
  surrogateKeys?: string[] | undefined;
224
226
  result?: string | number | boolean | unknown[] | z.objectOutputType<{}, z.ZodUnknown, "strip"> | undefined;
225
227
  }, {
226
228
  errors?: string[] | undefined;
227
229
  warnings?: string[] | undefined;
230
+ infos?: string[] | undefined;
228
231
  surrogateKeys?: string[] | undefined;
229
232
  result?: string | number | boolean | unknown[] | z.objectInputType<{}, z.ZodUnknown, "strip"> | undefined;
230
233
  }>;
@@ -232,16 +235,19 @@ declare const requestEdgehancerResultSchema: z.ZodObject<{
232
235
  results: z.ZodArray<z.ZodObject<{
233
236
  errors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
234
237
  warnings: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
238
+ infos: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
235
239
  surrogateKeys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
236
240
  result: z.ZodUnion<[z.ZodString, z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>, z.ZodNumber, z.ZodBoolean, z.ZodArray<z.ZodUnknown, "many">, z.ZodUndefined]>;
237
241
  }, "strict", z.ZodTypeAny, {
238
242
  errors?: string[] | undefined;
239
243
  warnings?: string[] | undefined;
244
+ infos?: string[] | undefined;
240
245
  surrogateKeys?: string[] | undefined;
241
246
  result?: string | number | boolean | unknown[] | z.objectOutputType<{}, z.ZodUnknown, "strip"> | undefined;
242
247
  }, {
243
248
  errors?: string[] | undefined;
244
249
  warnings?: string[] | undefined;
250
+ infos?: string[] | undefined;
245
251
  surrogateKeys?: string[] | undefined;
246
252
  result?: string | number | boolean | unknown[] | z.objectInputType<{}, z.ZodUnknown, "strip"> | undefined;
247
253
  }>, "many">;
@@ -249,6 +255,7 @@ declare const requestEdgehancerResultSchema: z.ZodObject<{
249
255
  results: {
250
256
  errors?: string[] | undefined;
251
257
  warnings?: string[] | undefined;
258
+ infos?: string[] | undefined;
252
259
  surrogateKeys?: string[] | undefined;
253
260
  result?: string | number | boolean | unknown[] | z.objectOutputType<{}, z.ZodUnknown, "strip"> | undefined;
254
261
  }[];
@@ -256,6 +263,7 @@ declare const requestEdgehancerResultSchema: z.ZodObject<{
256
263
  results: {
257
264
  errors?: string[] | undefined;
258
265
  warnings?: string[] | undefined;
266
+ infos?: string[] | undefined;
259
267
  surrogateKeys?: string[] | undefined;
260
268
  result?: string | number | boolean | unknown[] | z.objectInputType<{}, z.ZodUnknown, "strip"> | undefined;
261
269
  }[];
@@ -278,6 +286,7 @@ type ConvertBatchResultsToEdgehancerResultOptions<TID, TResultItem extends DataR
278
286
  declare function convertBatchResultsToEdgehancerResult<TID, TResultItem extends DataResource>({ batch, batchFetchIds: { invalidBatchIndices, validIdToOriginalIndexMap }, batchResults, resolveIdFromBatchResultFn, knownInvalidErrorMessage, missingBatchResultErrorMessage, }: ConvertBatchResultsToEdgehancerResultOptions<TID, TResultItem>): {
279
287
  errors?: string[] | undefined;
280
288
  warnings?: string[] | undefined;
289
+ infos?: string[] | undefined;
281
290
  surrogateKeys?: string[] | undefined;
282
291
  result?: string | number | boolean | unknown[] | zod.objectOutputType<{}, zod.ZodUnknown, "strip"> | undefined;
283
292
  }[];
@@ -430,6 +439,7 @@ type PreRequestEdgehancerContext = {
430
439
  declare const preRequestEdgehancerDataResourceResultSchema: z.ZodObject<{
431
440
  errors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
432
441
  warnings: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
442
+ infos: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
433
443
  dataResource: z.ZodObject<Omit<{
434
444
  id: z.ZodString;
435
445
  displayName: z.ZodString;
@@ -572,6 +582,7 @@ declare const preRequestEdgehancerDataResourceResultSchema: z.ZodObject<{
572
582
  };
573
583
  errors?: string[] | undefined;
574
584
  warnings?: string[] | undefined;
585
+ infos?: string[] | undefined;
575
586
  }, {
576
587
  dataResource: {
577
588
  connectorType: string;
@@ -597,11 +608,13 @@ declare const preRequestEdgehancerDataResourceResultSchema: z.ZodObject<{
597
608
  };
598
609
  errors?: string[] | undefined;
599
610
  warnings?: string[] | undefined;
611
+ infos?: string[] | undefined;
600
612
  }>;
601
613
  declare const preRequestEdgehancerResultSchema: z.ZodObject<{
602
614
  dataResources: z.ZodArray<z.ZodObject<{
603
615
  errors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
604
616
  warnings: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
617
+ infos: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
605
618
  dataResource: z.ZodObject<Omit<{
606
619
  id: z.ZodString;
607
620
  displayName: z.ZodString;
@@ -744,6 +757,7 @@ declare const preRequestEdgehancerResultSchema: z.ZodObject<{
744
757
  };
745
758
  errors?: string[] | undefined;
746
759
  warnings?: string[] | undefined;
760
+ infos?: string[] | undefined;
747
761
  }, {
748
762
  dataResource: {
749
763
  connectorType: string;
@@ -769,6 +783,7 @@ declare const preRequestEdgehancerResultSchema: z.ZodObject<{
769
783
  };
770
784
  errors?: string[] | undefined;
771
785
  warnings?: string[] | undefined;
786
+ infos?: string[] | undefined;
772
787
  }>, "many">;
773
788
  }, "strict", z.ZodTypeAny, {
774
789
  dataResources: {
@@ -796,6 +811,7 @@ declare const preRequestEdgehancerResultSchema: z.ZodObject<{
796
811
  };
797
812
  errors?: string[] | undefined;
798
813
  warnings?: string[] | undefined;
814
+ infos?: string[] | undefined;
799
815
  }[];
800
816
  }, {
801
817
  dataResources: {
@@ -823,6 +839,7 @@ declare const preRequestEdgehancerResultSchema: z.ZodObject<{
823
839
  };
824
840
  errors?: string[] | undefined;
825
841
  warnings?: string[] | undefined;
842
+ infos?: string[] | undefined;
826
843
  }[];
827
844
  }>;
828
845
  type PreRequestEdgehancerResult = z.infer<typeof preRequestEdgehancerResultSchema>;
package/dist/index.esm.js CHANGED
@@ -157,6 +157,7 @@ var edgehancerMergedDataTypeSchema = mergedDataTypeSchema.omit({
157
157
  var preRequestEdgehancerDataResourceResultSchema = z2.strictObject({
158
158
  errors: z2.array(z2.string()).optional(),
159
159
  warnings: z2.array(z2.string()).optional(),
160
+ infos: z2.array(z2.string()).optional(),
160
161
  dataResource: edgehancerMergedDataTypeSchema
161
162
  });
162
163
  var preRequestEdgehancerResultSchema = z2.strictObject({
@@ -170,6 +171,9 @@ var requestEdgehancerDataResourceResolutionResultSchema = z3.strictObject({
170
171
  "Errors that occurred while running your code to return with the API response, if any. Unhandled exceptions will be captured automatically."
171
172
  ),
172
173
  warnings: z3.array(z3.string()).optional().describe("Warnings that occurred while running your code to return with the API response, if any."),
174
+ infos: z3.array(z3.string()).optional().describe(
175
+ "Informational messages that occurred while running your code to return with the API response, if any."
176
+ ),
173
177
  surrogateKeys: z3.array(z3.string()).optional().describe(
174
178
  "Extra surrogate keys for the data that was fetched. These act as auxiliary cache keys that can allow granular purging of cached data."
175
179
  ),
package/dist/index.js CHANGED
@@ -195,6 +195,7 @@ var edgehancerMergedDataTypeSchema = mergedDataTypeSchema.omit({
195
195
  var preRequestEdgehancerDataResourceResultSchema = import_zod2.z.strictObject({
196
196
  errors: import_zod2.z.array(import_zod2.z.string()).optional(),
197
197
  warnings: import_zod2.z.array(import_zod2.z.string()).optional(),
198
+ infos: import_zod2.z.array(import_zod2.z.string()).optional(),
198
199
  dataResource: edgehancerMergedDataTypeSchema
199
200
  });
200
201
  var preRequestEdgehancerResultSchema = import_zod2.z.strictObject({
@@ -208,6 +209,9 @@ var requestEdgehancerDataResourceResolutionResultSchema = import_zod3.z.strictOb
208
209
  "Errors that occurred while running your code to return with the API response, if any. Unhandled exceptions will be captured automatically."
209
210
  ),
210
211
  warnings: import_zod3.z.array(import_zod3.z.string()).optional().describe("Warnings that occurred while running your code to return with the API response, if any."),
212
+ infos: import_zod3.z.array(import_zod3.z.string()).optional().describe(
213
+ "Informational messages that occurred while running your code to return with the API response, if any."
214
+ ),
211
215
  surrogateKeys: import_zod3.z.array(import_zod3.z.string()).optional().describe(
212
216
  "Extra surrogate keys for the data that was fetched. These act as auxiliary cache keys that can allow granular purging of cached data."
213
217
  ),
package/dist/index.mjs CHANGED
@@ -157,6 +157,7 @@ var edgehancerMergedDataTypeSchema = mergedDataTypeSchema.omit({
157
157
  var preRequestEdgehancerDataResourceResultSchema = z2.strictObject({
158
158
  errors: z2.array(z2.string()).optional(),
159
159
  warnings: z2.array(z2.string()).optional(),
160
+ infos: z2.array(z2.string()).optional(),
160
161
  dataResource: edgehancerMergedDataTypeSchema
161
162
  });
162
163
  var preRequestEdgehancerResultSchema = z2.strictObject({
@@ -170,6 +171,9 @@ var requestEdgehancerDataResourceResolutionResultSchema = z3.strictObject({
170
171
  "Errors that occurred while running your code to return with the API response, if any. Unhandled exceptions will be captured automatically."
171
172
  ),
172
173
  warnings: z3.array(z3.string()).optional().describe("Warnings that occurred while running your code to return with the API response, if any."),
174
+ infos: z3.array(z3.string()).optional().describe(
175
+ "Informational messages that occurred while running your code to return with the API response, if any."
176
+ ),
173
177
  surrogateKeys: z3.array(z3.string()).optional().describe(
174
178
  "Extra surrogate keys for the data that was fetched. These act as auxiliary cache keys that can allow granular purging of cached data."
175
179
  ),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/mesh-edgehancer-sdk",
3
- "version": "19.134.3-alpha.28+506233b832",
3
+ "version": "19.135.1-alpha.9+6715fce92a",
4
4
  "description": "Uniform Mesh Edgehancer SDK",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -48,7 +48,7 @@
48
48
  "/dist"
49
49
  ],
50
50
  "dependencies": {
51
- "@uniformdev/canvas": "19.134.3-alpha.28+506233b832",
51
+ "@uniformdev/canvas": "19.135.1-alpha.9+6715fce92a",
52
52
  "tsafe": "1.6.6",
53
53
  "zod": "3.22.4"
54
54
  },
@@ -61,5 +61,5 @@
61
61
  "publishConfig": {
62
62
  "access": "public"
63
63
  },
64
- "gitHead": "506233b8324cbb3d7d6a0ef97b8d5e01b36bfb08"
64
+ "gitHead": "6715fce92a09242316f5a218cc3d94b39e58cc05"
65
65
  }