@uniformdev/mesh-edgehancer-sdk 20.61.2-alpha.4 → 20.63.1-alpha.12
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 +225 -2725
- package/dist/index.d.ts +225 -2725
- package/dist/index.esm.js +181 -142
- package/dist/index.js +181 -142
- package/dist/index.mjs +181 -142
- package/package.json +5 -5
package/dist/index.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// ../../lib/ai-sdk/src/InvocationContexts.ts
|
|
2
|
-
import * as z from "zod
|
|
2
|
+
import * as z from "zod";
|
|
3
3
|
var invocationContextsSchema = z.enum([
|
|
4
4
|
"composition",
|
|
5
5
|
"compositionPattern",
|
|
@@ -9,14 +9,46 @@ var invocationContextsSchema = z.enum([
|
|
|
9
9
|
"general"
|
|
10
10
|
]);
|
|
11
11
|
var invocationContextInfoSchema = z.object({
|
|
12
|
-
context
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
/** The invocation context type ('composition', 'entry', 'general', etc.) */
|
|
13
|
+
context: invocationContextsSchema.optional(),
|
|
14
|
+
/** Entity ID being edited */
|
|
15
|
+
entityId: z.string().optional(),
|
|
16
|
+
/** Display name of the entity */
|
|
17
|
+
entityName: z.string().optional(),
|
|
18
|
+
/** Project map path of the entity (e.g., "/", "/about", "/products/shoes"). Only for compositions attached to project map. */
|
|
19
|
+
entityPath: z.string().optional(),
|
|
20
|
+
/** Edition ID if editing a non-default edition */
|
|
21
|
+
editionId: z.string().optional(),
|
|
22
|
+
/** Component node ID selected by the user within the entity's component tree.
|
|
23
|
+
* Only applicable when context is 'composition', 'compositionPattern', or 'componentPattern'. */
|
|
24
|
+
entitySelectedNodeId: z.string().optional(),
|
|
25
|
+
/** Parameter or field ID the user has focused within the selected node.
|
|
26
|
+
* Applicable to all entity types. */
|
|
27
|
+
entitySelectedPropertyId: z.string().optional(),
|
|
28
|
+
/** Current locale */
|
|
29
|
+
locale: z.string().optional(),
|
|
30
|
+
/** Release ID if working within a release context; null means editing base content (not in a release) */
|
|
31
|
+
releaseId: z.string().nullable().optional(),
|
|
32
|
+
/** Display name of the release */
|
|
33
|
+
releaseName: z.string().optional(),
|
|
34
|
+
/** Project display name */
|
|
35
|
+
projectName: z.string().optional(),
|
|
36
|
+
/** User display name */
|
|
37
|
+
userDisplayName: z.string().optional(),
|
|
38
|
+
/** Username (e.g. for creator/author filters in search); prefer identity name from member profile */
|
|
39
|
+
username: z.string().optional(),
|
|
40
|
+
/** Current date (ISO string for reliable parsing). Only updated when >5min apart. */
|
|
41
|
+
currentDate: z.string().optional(),
|
|
42
|
+
/** Current date in user's locale format with timezone */
|
|
43
|
+
currentLocaleDate: z.string().optional(),
|
|
44
|
+
/** Agent-readable description of how entity mutations behave in the current context */
|
|
45
|
+
editBehavior: z.string().optional(),
|
|
46
|
+
/** Summary of pending changes applied/discarded since the last turn */
|
|
47
|
+
pendingChangesUpdates: z.string().optional()
|
|
16
48
|
});
|
|
17
49
|
|
|
18
50
|
// src/afterAIDataResourceEdit.ts
|
|
19
|
-
import * as z2 from "zod
|
|
51
|
+
import * as z2 from "zod";
|
|
20
52
|
var afterAIDataResourceEditResultSchema = z2.strictObject({
|
|
21
53
|
newValue: z2.record(z2.string(), z2.string()),
|
|
22
54
|
success: z2.boolean(),
|
|
@@ -54,63 +86,70 @@ var afterAIDataResourceEditContextSchema = z2.strictObject({
|
|
|
54
86
|
});
|
|
55
87
|
|
|
56
88
|
// ../../lib/ai-sdk/src/toolDefinitions/editing/createPropertyEdit.ts
|
|
57
|
-
import * as
|
|
89
|
+
import * as z4 from "zod";
|
|
90
|
+
|
|
91
|
+
// ../../lib/ai-sdk/src/utils/normalizeOptionalAIString.ts
|
|
92
|
+
import * as z3 from "zod";
|
|
93
|
+
var optionalAIStringSchema = z3.string().optional();
|
|
94
|
+
|
|
95
|
+
// ../../lib/ai-sdk/src/toolDefinitions/editing/createPropertyEdit.ts
|
|
58
96
|
var createPropertyEdit = {
|
|
59
|
-
displayName: "Create
|
|
97
|
+
displayName: "Create property edit",
|
|
60
98
|
description: "Edits a property on a composition, entry, or pattern with AI. This is a callable tool NOT FOR AGENT USE - agents use applyPropertyEdit to broker client-side application of the edit.",
|
|
61
|
-
inputSchema:
|
|
62
|
-
edit:
|
|
63
|
-
currentValue:
|
|
64
|
-
projectGuidance:
|
|
65
|
-
componentGuidance:
|
|
66
|
-
audienceGuidance:
|
|
99
|
+
inputSchema: z4.object({
|
|
100
|
+
edit: z4.string().describe("Describe the edit to be made to the property"),
|
|
101
|
+
currentValue: z4.unknown().describe("Current value of the property (if any exists)").optional(),
|
|
102
|
+
projectGuidance: z4.string().describe("Guidance prompt for the project (if any exists)").optional(),
|
|
103
|
+
componentGuidance: z4.string().describe("Guidance prompt for the parent component").optional(),
|
|
104
|
+
audienceGuidance: z4.string().describe(
|
|
67
105
|
"Guidance prompt for the target audience of a personalized variation. Omit for non-variation edits."
|
|
68
106
|
).optional(),
|
|
69
|
-
propertyDefinition:
|
|
70
|
-
id:
|
|
71
|
-
name:
|
|
72
|
-
type:
|
|
73
|
-
guidance:
|
|
74
|
-
typeConfig:
|
|
107
|
+
propertyDefinition: z4.object({
|
|
108
|
+
id: z4.string(),
|
|
109
|
+
name: z4.string(),
|
|
110
|
+
type: z4.string(),
|
|
111
|
+
guidance: z4.string().describe("Guidance prompt from the property definition (if any exists)").optional(),
|
|
112
|
+
typeConfig: z4.unknown().optional().describe("Type-specific configuration for the property")
|
|
75
113
|
}),
|
|
76
|
-
outputLocale:
|
|
77
|
-
|
|
114
|
+
outputLocale: optionalAIStringSchema.describe(
|
|
115
|
+
"The locale to use when writing the edited value. Use an empty string for locale-independent values."
|
|
116
|
+
),
|
|
117
|
+
documentContext: z4.string().describe("Content of the surrounding document the property is part of").optional()
|
|
78
118
|
}),
|
|
79
|
-
outputSchema:
|
|
80
|
-
newValue:
|
|
81
|
-
"The new value of the property. When the action is
|
|
119
|
+
outputSchema: z4.object({
|
|
120
|
+
newValue: z4.string().describe(
|
|
121
|
+
"The new value of the property. When the action is clearValue, resetOverride, or nothing, this should be empty."
|
|
82
122
|
),
|
|
83
|
-
treatNewValueAsJson:
|
|
84
|
-
summary:
|
|
85
|
-
|
|
86
|
-
)
|
|
87
|
-
action:
|
|
88
|
-
"setValue = update the value, clearValue = remove the value/set to empty, resetOverride = remove a pattern override and inherit the pattern value. Only use resetOverride if the prompt asks for it. If the prompt is specifically talking about asset parameter title/description overrides, use setValue instead."
|
|
123
|
+
treatNewValueAsJson: z4.boolean().describe("Whether the newValue is a JSON string"),
|
|
124
|
+
summary: z4.string().describe(
|
|
125
|
+
'A completion message to the user that summarizes the action taken. One sentence, in English. Use e.g. "Done." when no detail is needed.'
|
|
126
|
+
),
|
|
127
|
+
action: z4.enum(["setValue", "clearValue", "resetOverride", "nothing"]).describe(
|
|
128
|
+
"setValue = update the value, clearValue = remove the value/set to empty, resetOverride = remove a pattern override and inherit the pattern value, nothing = leave the value unchanged (use when instructed to keep existing value, make no changes, or leave unchanged). Only use resetOverride if the prompt asks for it. If the prompt is specifically talking about asset parameter title/description overrides, use setValue instead."
|
|
89
129
|
),
|
|
90
|
-
success:
|
|
130
|
+
success: z4.boolean().describe("Whether the edit could be completed successfully")
|
|
91
131
|
}),
|
|
92
|
-
runsAt: "server",
|
|
93
132
|
timeout: 100,
|
|
94
|
-
|
|
133
|
+
toolClass: "edit"
|
|
95
134
|
};
|
|
96
135
|
|
|
97
136
|
// src/afterAIEdit.ts
|
|
98
|
-
import * as
|
|
99
|
-
var afterAIEditResultSchema =
|
|
100
|
-
newValue:
|
|
101
|
-
success:
|
|
102
|
-
summary:
|
|
137
|
+
import * as z5 from "zod";
|
|
138
|
+
var afterAIEditResultSchema = z5.strictObject({
|
|
139
|
+
newValue: z5.unknown().optional(),
|
|
140
|
+
success: z5.boolean(),
|
|
141
|
+
summary: z5.string().optional()
|
|
103
142
|
});
|
|
104
|
-
var afterAIEditContextSchema =
|
|
143
|
+
var afterAIEditContextSchema = z5.strictObject({
|
|
105
144
|
editRequest: createPropertyEdit.inputSchema,
|
|
106
145
|
invocationContext: invocationContextsSchema,
|
|
107
|
-
userId:
|
|
108
|
-
currentLocale:
|
|
109
|
-
projectId:
|
|
110
|
-
newValue:
|
|
111
|
-
result:
|
|
112
|
-
success:
|
|
113
|
-
summary:
|
|
146
|
+
userId: z5.string(),
|
|
147
|
+
currentLocale: z5.string().optional(),
|
|
148
|
+
projectId: z5.string(),
|
|
149
|
+
newValue: z5.unknown(),
|
|
150
|
+
result: z5.object({
|
|
151
|
+
success: z5.boolean(),
|
|
152
|
+
summary: z5.string().optional()
|
|
114
153
|
})
|
|
115
154
|
});
|
|
116
155
|
|
|
@@ -174,49 +213,49 @@ var COLLECTION_MAX_LIMIT = 50;
|
|
|
174
213
|
var COLLECTION_DEFAULT_OFFSET = 0;
|
|
175
214
|
|
|
176
215
|
// src/createAIDataResourceEdit.ts
|
|
177
|
-
import * as
|
|
178
|
-
var createAIDataResourceEditContextSchema =
|
|
216
|
+
import * as z6 from "zod";
|
|
217
|
+
var createAIDataResourceEditContextSchema = z6.strictObject({
|
|
179
218
|
/**
|
|
180
219
|
* The the data type of the data resource being edited (merged with its data source)
|
|
181
220
|
* NOTE: this can contain secrets, API keys, etc. Do not directly expose it to the AI agent!
|
|
182
221
|
* NOTE: this does not include the current value's variables, if any
|
|
183
222
|
*/
|
|
184
|
-
mergedDataType:
|
|
223
|
+
mergedDataType: z6.custom(),
|
|
185
224
|
/** Which data source variant is currently active (undefined = published data) */
|
|
186
|
-
dataSourceVariant:
|
|
225
|
+
dataSourceVariant: z6.custom().optional(),
|
|
187
226
|
/** The edit request details */
|
|
188
|
-
editRequest:
|
|
227
|
+
editRequest: z6.object({
|
|
189
228
|
/** The edit instruction from the AI agent */
|
|
190
|
-
edit:
|
|
229
|
+
edit: z6.string(),
|
|
191
230
|
/** Current value of the data resource's variables (if any) */
|
|
192
|
-
currentValue:
|
|
231
|
+
currentValue: z6.record(z6.string(), z6.string()).optional()
|
|
193
232
|
}),
|
|
194
233
|
/** AI invocation context */
|
|
195
234
|
invocationContext: invocationContextsSchema,
|
|
196
235
|
/** User ID making the edit */
|
|
197
|
-
userId:
|
|
236
|
+
userId: z6.string(),
|
|
198
237
|
/** Project ID */
|
|
199
|
-
projectId:
|
|
238
|
+
projectId: z6.string()
|
|
200
239
|
});
|
|
201
|
-
var createAIDataResourceEditResultSchema =
|
|
202
|
-
outputJsonSchema:
|
|
203
|
-
instructions:
|
|
240
|
+
var createAIDataResourceEditResultSchema = z6.strictObject({
|
|
241
|
+
outputJsonSchema: z6.record(z6.string(), z6.any()).describe("JSON schema (draft-07) for the edited data resource result"),
|
|
242
|
+
instructions: z6.string().describe(
|
|
204
243
|
"Instructions for the AI editor LLM to follow when editing this data resource (e.g. conventions/rules, allowed values, data format expectations, etc). Describe how to transform or edit the data resource content."
|
|
205
244
|
)
|
|
206
245
|
});
|
|
207
246
|
|
|
208
247
|
// src/createAIEdit.ts
|
|
209
|
-
import * as
|
|
210
|
-
var createAIEditContextSchema =
|
|
248
|
+
import * as z7 from "zod";
|
|
249
|
+
var createAIEditContextSchema = z7.strictObject({
|
|
211
250
|
editRequest: createPropertyEdit.inputSchema,
|
|
212
251
|
invocationContext: invocationContextsSchema,
|
|
213
|
-
userId:
|
|
214
|
-
currentLocale:
|
|
215
|
-
projectId:
|
|
252
|
+
userId: z7.string(),
|
|
253
|
+
currentLocale: z7.string().optional(),
|
|
254
|
+
projectId: z7.string()
|
|
216
255
|
});
|
|
217
|
-
var createAIEditResultSchema =
|
|
218
|
-
outputJsonSchema:
|
|
219
|
-
instructions:
|
|
256
|
+
var createAIEditResultSchema = z7.strictObject({
|
|
257
|
+
outputJsonSchema: z7.record(z7.string(), z7.any()).describe("JSON schema (draft-07) for the edited content result"),
|
|
258
|
+
instructions: z7.string().describe(
|
|
220
259
|
"Instructions for the AI editor LLM to follow (e.g. conventions/rules, allowed values, etc). Just describe your value type, do not give guiding instructions. There is no need to worry about clearing or resetting values, that is automatically handled."
|
|
221
260
|
)
|
|
222
261
|
});
|
|
@@ -260,81 +299,81 @@ function copyKeyValuePairs(source, target) {
|
|
|
260
299
|
}
|
|
261
300
|
|
|
262
301
|
// src/preRequest.ts
|
|
263
|
-
import * as
|
|
302
|
+
import * as z9 from "zod";
|
|
264
303
|
|
|
265
304
|
// src/shared.ts
|
|
266
305
|
import { assert } from "tsafe";
|
|
267
|
-
import * as
|
|
268
|
-
var parameterDefinitionSchema =
|
|
269
|
-
key:
|
|
270
|
-
value:
|
|
271
|
-
omitIfEmpty:
|
|
306
|
+
import * as z8 from "zod";
|
|
307
|
+
var parameterDefinitionSchema = z8.object({
|
|
308
|
+
key: z8.string(),
|
|
309
|
+
value: z8.string(),
|
|
310
|
+
omitIfEmpty: z8.boolean().optional()
|
|
272
311
|
});
|
|
273
|
-
var resolvingIssueSchema =
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
message:
|
|
277
|
-
subType:
|
|
278
|
-
issueReference:
|
|
279
|
-
deepLink:
|
|
280
|
-
statusCode:
|
|
312
|
+
var resolvingIssueSchema = z8.union([
|
|
313
|
+
z8.string(),
|
|
314
|
+
z8.object({
|
|
315
|
+
message: z8.string(),
|
|
316
|
+
subType: z8.enum(["unpublishedData", "configuration"]).optional(),
|
|
317
|
+
issueReference: z8.string().optional(),
|
|
318
|
+
deepLink: z8.string().optional(),
|
|
319
|
+
statusCode: z8.number().int().optional()
|
|
281
320
|
})
|
|
282
321
|
]);
|
|
283
|
-
var variableDefinitionSchema =
|
|
284
|
-
displayName:
|
|
285
|
-
type:
|
|
286
|
-
default:
|
|
287
|
-
helpText:
|
|
288
|
-
order:
|
|
289
|
-
source:
|
|
322
|
+
var variableDefinitionSchema = z8.object({
|
|
323
|
+
displayName: z8.string().optional(),
|
|
324
|
+
type: z8.string().optional(),
|
|
325
|
+
default: z8.string(),
|
|
326
|
+
helpText: z8.string().optional(),
|
|
327
|
+
order: z8.number().optional(),
|
|
328
|
+
source: z8.string().optional()
|
|
290
329
|
});
|
|
291
|
-
var customEdgehancerDefinitionSchema =
|
|
292
|
-
preRequest:
|
|
293
|
-
request:
|
|
294
|
-
createAIDataResourceEdit:
|
|
295
|
-
afterAIDataResourceEdit:
|
|
330
|
+
var customEdgehancerDefinitionSchema = z8.object({
|
|
331
|
+
preRequest: z8.string().optional(),
|
|
332
|
+
request: z8.string().optional(),
|
|
333
|
+
createAIDataResourceEdit: z8.string().optional(),
|
|
334
|
+
afterAIDataResourceEdit: z8.string().optional()
|
|
296
335
|
});
|
|
297
|
-
var dataSourceVariantSchema =
|
|
298
|
-
|
|
299
|
-
headers:
|
|
300
|
-
parameters:
|
|
301
|
-
variables:
|
|
336
|
+
var dataSourceVariantSchema = z8.intersection(
|
|
337
|
+
z8.object({
|
|
338
|
+
headers: z8.array(parameterDefinitionSchema).optional(),
|
|
339
|
+
parameters: z8.array(parameterDefinitionSchema).optional(),
|
|
340
|
+
variables: z8.record(z8.string(), variableDefinitionSchema).optional()
|
|
302
341
|
}),
|
|
303
|
-
|
|
342
|
+
z8.object({ url: z8.string() })
|
|
304
343
|
);
|
|
305
|
-
var mergedDataTypeSchema =
|
|
306
|
-
id:
|
|
307
|
-
displayName:
|
|
308
|
-
archetype:
|
|
309
|
-
allowedOnComponents:
|
|
310
|
-
badgeIconUrl:
|
|
311
|
-
connectorType:
|
|
312
|
-
url:
|
|
313
|
-
headers:
|
|
314
|
-
parameters:
|
|
315
|
-
body:
|
|
316
|
-
method:
|
|
317
|
-
variables:
|
|
318
|
-
custom:
|
|
319
|
-
customPublic:
|
|
320
|
-
ttl:
|
|
321
|
-
purgeKey:
|
|
322
|
-
localeMapping:
|
|
344
|
+
var mergedDataTypeSchema = z8.object({
|
|
345
|
+
id: z8.string(),
|
|
346
|
+
displayName: z8.string(),
|
|
347
|
+
archetype: z8.string().optional(),
|
|
348
|
+
allowedOnComponents: z8.array(z8.string()).optional(),
|
|
349
|
+
badgeIconUrl: z8.string().optional(),
|
|
350
|
+
connectorType: z8.string(),
|
|
351
|
+
url: z8.string(),
|
|
352
|
+
headers: z8.array(parameterDefinitionSchema).optional(),
|
|
353
|
+
parameters: z8.array(parameterDefinitionSchema).optional(),
|
|
354
|
+
body: z8.string().optional(),
|
|
355
|
+
method: z8.enum(["GET", "POST", "HEAD"]),
|
|
356
|
+
variables: z8.record(z8.string(), variableDefinitionSchema).optional(),
|
|
357
|
+
custom: z8.record(z8.string(), z8.unknown()).optional(),
|
|
358
|
+
customPublic: z8.record(z8.string(), z8.unknown()).optional(),
|
|
359
|
+
ttl: z8.number().optional(),
|
|
360
|
+
purgeKey: z8.string().optional(),
|
|
361
|
+
localeMapping: z8.record(z8.string(), z8.string()).optional(),
|
|
323
362
|
edgehancer: customEdgehancerDefinitionSchema.optional(),
|
|
324
|
-
uiBadgeText:
|
|
325
|
-
variants:
|
|
363
|
+
uiBadgeText: z8.string().max(12).optional(),
|
|
364
|
+
variants: z8.object({
|
|
326
365
|
unpublished: dataSourceVariantSchema.optional()
|
|
327
366
|
}).optional(),
|
|
328
|
-
enableUnpublishedMode:
|
|
367
|
+
enableUnpublishedMode: z8.boolean().optional()
|
|
329
368
|
});
|
|
330
369
|
assert();
|
|
331
|
-
var dataResourceSchema =
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
370
|
+
var dataResourceSchema = z8.union([
|
|
371
|
+
z8.string(),
|
|
372
|
+
z8.object({}).catchall(z8.unknown()),
|
|
373
|
+
z8.number(),
|
|
374
|
+
z8.boolean(),
|
|
375
|
+
z8.array(z8.unknown()),
|
|
376
|
+
z8.undefined()
|
|
338
377
|
]);
|
|
339
378
|
|
|
340
379
|
// src/preRequest.ts
|
|
@@ -346,33 +385,33 @@ var edgehancerMergedDataTypeSchema = mergedDataTypeSchema.omit({
|
|
|
346
385
|
id: true,
|
|
347
386
|
purgeKey: true
|
|
348
387
|
});
|
|
349
|
-
var preRequestEdgehancerDataResourceResultSchema =
|
|
350
|
-
errors:
|
|
351
|
-
warnings:
|
|
352
|
-
infos:
|
|
388
|
+
var preRequestEdgehancerDataResourceResultSchema = z9.strictObject({
|
|
389
|
+
errors: z9.array(resolvingIssueSchema).optional(),
|
|
390
|
+
warnings: z9.array(resolvingIssueSchema).optional(),
|
|
391
|
+
infos: z9.array(resolvingIssueSchema).optional(),
|
|
353
392
|
dataResource: edgehancerMergedDataTypeSchema
|
|
354
393
|
});
|
|
355
|
-
var preRequestEdgehancerResultSchema =
|
|
356
|
-
dataResources:
|
|
394
|
+
var preRequestEdgehancerResultSchema = z9.strictObject({
|
|
395
|
+
dataResources: z9.array(preRequestEdgehancerDataResourceResultSchema)
|
|
357
396
|
});
|
|
358
397
|
|
|
359
398
|
// src/request.ts
|
|
360
|
-
import * as
|
|
361
|
-
var requestEdgehancerDataResourceResolutionResultSchema =
|
|
362
|
-
errors:
|
|
399
|
+
import * as z10 from "zod";
|
|
400
|
+
var requestEdgehancerDataResourceResolutionResultSchema = z10.strictObject({
|
|
401
|
+
errors: z10.array(resolvingIssueSchema).optional().describe(
|
|
363
402
|
"Errors that occurred while running your code to return with the API response, if any. Unhandled exceptions will be captured automatically."
|
|
364
403
|
),
|
|
365
|
-
warnings:
|
|
366
|
-
infos:
|
|
404
|
+
warnings: z10.array(resolvingIssueSchema).optional().describe("Warnings that occurred while running your code to return with the API response, if any."),
|
|
405
|
+
infos: z10.array(resolvingIssueSchema).optional().describe(
|
|
367
406
|
"Informational messages that occurred while running your code to return with the API response, if any."
|
|
368
407
|
),
|
|
369
|
-
surrogateKeys:
|
|
408
|
+
surrogateKeys: z10.array(z10.string()).optional().describe(
|
|
370
409
|
"Extra surrogate keys for the data that was fetched. These act as auxiliary cache keys that can allow granular purging of cached data."
|
|
371
410
|
),
|
|
372
|
-
result: dataResourceSchema.describe("The result of fetching the data resource")
|
|
411
|
+
result: dataResourceSchema.describe("The result of fetching the data resource").optional()
|
|
373
412
|
});
|
|
374
|
-
var requestEdgehancerResultSchema =
|
|
375
|
-
results:
|
|
413
|
+
var requestEdgehancerResultSchema = z10.strictObject({
|
|
414
|
+
results: z10.array(requestEdgehancerDataResourceResolutionResultSchema)
|
|
376
415
|
});
|
|
377
416
|
export {
|
|
378
417
|
COLLECTION_DEFAULT_LIMIT,
|