@vertesia/common 0.62.0 → 0.63.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 (39) hide show
  1. package/lib/types/Progress.d.ts +1 -0
  2. package/lib/types/access-control.d.ts +1 -0
  3. package/lib/types/analytics.d.ts +1 -0
  4. package/lib/types/apikey.d.ts +1 -0
  5. package/lib/types/common.d.ts +1 -0
  6. package/lib/types/environment.d.ts +1 -0
  7. package/lib/types/facets.d.ts +1 -0
  8. package/lib/types/index.d.ts +1 -0
  9. package/lib/types/integrations.d.ts +1 -0
  10. package/lib/types/interaction.d.ts +1 -0
  11. package/lib/types/json-schema.d.ts +1 -0
  12. package/lib/types/json.d.ts +1 -0
  13. package/lib/types/meters.d.ts +1 -0
  14. package/lib/types/payload.d.ts +1 -0
  15. package/lib/types/plugin.d.ts +1 -0
  16. package/lib/types/project.d.ts +1 -0
  17. package/lib/types/prompt.d.ts +1 -0
  18. package/lib/types/query.d.ts +1 -0
  19. package/lib/types/refs.d.ts +1 -0
  20. package/lib/types/runs.d.ts +1 -0
  21. package/lib/types/store/activity-catalog.d.ts +1 -0
  22. package/lib/types/store/agent.d.ts +1 -0
  23. package/lib/types/store/collections.d.ts +1 -0
  24. package/lib/types/store/common.d.ts +1 -0
  25. package/lib/types/store/doc-analyzer.d.ts +1 -0
  26. package/lib/types/store/dsl-workflow.d.ts +1 -0
  27. package/lib/types/store/index.d.ts +1 -0
  28. package/lib/types/store/object-types.d.ts +1 -0
  29. package/lib/types/store/signals.d.ts +1 -0
  30. package/lib/types/store/store.d.ts +1 -0
  31. package/lib/types/store/temporalio.d.ts +1 -0
  32. package/lib/types/store/workflow.d.ts +1 -0
  33. package/lib/types/tenant.d.ts +1 -0
  34. package/lib/types/training.d.ts +1 -0
  35. package/lib/types/transient-tokens.d.ts +1 -0
  36. package/lib/types/user.d.ts +1 -0
  37. package/lib/types/utils/auth.d.ts +1 -0
  38. package/lib/types/utils/schemas.d.ts +1 -0
  39. package/package.json +1 -1
@@ -19,3 +19,4 @@ export declare class Progress {
19
19
  span(units: number, spanUnits?: number): ProgressSpan;
20
20
  }
21
21
  export {};
22
+ //# sourceMappingURL=Progress.d.ts.map
@@ -54,3 +54,4 @@ export interface AcesQueryOptions {
54
54
  role?: string;
55
55
  type?: AccessControlledResource;
56
56
  }
57
+ //# sourceMappingURL=access-control.d.ts.map
@@ -34,3 +34,4 @@ export interface RunAnalyticsResult {
34
34
  max: number;
35
35
  };
36
36
  }
37
+ //# sourceMappingURL=analytics.d.ts.map
@@ -52,3 +52,4 @@ export declare enum PrincipalType {
52
52
  ApiKey = "apikey",
53
53
  ServiceAccount = "service_account"
54
54
  }
55
+ //# sourceMappingURL=apikey.d.ts.map
@@ -29,3 +29,4 @@ export interface BulkOperationPayload {
29
29
  export interface BulkOperationResult {
30
30
  status: "in_progress" | "completed" | "failed";
31
31
  }
32
+ //# sourceMappingURL=common.d.ts.map
@@ -78,3 +78,4 @@ export interface ExecutionEnvironmentCreatePayload extends Omit<ExecutionEnviron
78
78
  }
79
79
  export interface ExecutionEnvironmentUpdatePayload extends Partial<Omit<ExecutionEnvironment, 'id' | 'account' | 'created_at' | 'updated_at' | 'created_by' | 'updated_by'>> {
80
80
  }
81
+ //# sourceMappingURL=environment.d.ts.map
@@ -32,3 +32,4 @@ export interface FacetNameBucket {
32
32
  export interface FacetResult {
33
33
  buckets: FacetBucket[];
34
34
  }
35
+ //# sourceMappingURL=facets.d.ts.map
@@ -24,3 +24,4 @@ export * from './utils/auth.js';
24
24
  export * from './utils/schemas.js';
25
25
  export * from './json-schema.js';
26
26
  export * from './json.js';
27
+ //# sourceMappingURL=index.d.ts.map
@@ -26,3 +26,4 @@ export declare enum SupportedIntegrations {
26
26
  magic_pdf = "magic_pdf",
27
27
  serper = "serper"
28
28
  }
29
+ //# sourceMappingURL=integrations.d.ts.map
@@ -437,3 +437,4 @@ export interface ImprovePromptPayload {
437
437
  config: InteractionExecutionConfiguration;
438
438
  }
439
439
  export {};
440
+ //# sourceMappingURL=interaction.d.ts.map
@@ -1 +1,2 @@
1
1
  export type { JSONSchema, JSONSchemaArray, JSONSchemaObject, JSONSchemaType, JSONSchemaTypeName, } from "@llumiverse/common";
2
+ //# sourceMappingURL=json-schema.d.ts.map
@@ -1 +1,2 @@
1
1
  export type { JSONArray, JSONComposite, JSONObject, JSONPrimitive, JSONValue } from "@llumiverse/common";
2
+ //# sourceMappingURL=json.d.ts.map
@@ -21,3 +21,4 @@ export interface StripeBillingStatusResponse {
21
21
  portal_url?: string;
22
22
  reason?: string;
23
23
  }
24
+ //# sourceMappingURL=meters.d.ts.map
@@ -50,3 +50,4 @@ export interface ExportPropertiesResponse {
50
50
  name: string;
51
51
  data: Blob;
52
52
  }
53
+ //# sourceMappingURL=payload.d.ts.map
@@ -52,3 +52,4 @@ export interface PluginToolContext<ParamsT = JSONObject> {
52
52
  tool_use: ToolUse<ParamsT>;
53
53
  plugin: string;
54
54
  }
55
+ //# sourceMappingURL=plugin.d.ts.map
@@ -101,3 +101,4 @@ export interface ProjectIntegrationListEntry {
101
101
  id: SupportedIntegrations;
102
102
  enabled: boolean;
103
103
  }
104
+ //# sourceMappingURL=project.d.ts.map
@@ -68,3 +68,4 @@ export interface PromptTemplateCreatePayload extends Omit<PromptTemplate, "id" |
68
68
  }
69
69
  export interface PromptTemplateUpdatePayload extends Partial<Omit<PromptTemplate, "id" | "created_at" | "updated_at" | "created_by" | "updated_by" | "project">> {
70
70
  }
71
+ //# sourceMappingURL=prompt.d.ts.map
@@ -76,3 +76,4 @@ export interface ComplexSearchQuery extends ObjectSearchQuery {
76
76
  vector?: VectorSearchQuery;
77
77
  match?: Record<string, any>;
78
78
  }
79
+ //# sourceMappingURL=query.d.ts.map
@@ -17,3 +17,4 @@ export interface ResourceRef {
17
17
  name: string;
18
18
  type: string;
19
19
  }
20
+ //# sourceMappingURL=refs.d.ts.map
@@ -30,3 +30,4 @@ export interface RunSearchMetaResponse {
30
30
  };
31
31
  facet: Record<string, FacetResult>;
32
32
  }
33
+ //# sourceMappingURL=runs.d.ts.map
@@ -24,3 +24,4 @@ export interface ActivityDefinition {
24
24
  export interface ActivityCatalog {
25
25
  activities: ActivityDefinition[];
26
26
  }
27
+ //# sourceMappingURL=activity-catalog.d.ts.map
@@ -16,3 +16,4 @@ export interface CreateAgentDeploymentRequest {
16
16
  */
17
17
  version: string;
18
18
  }
19
+ //# sourceMappingURL=agent.d.ts.map
@@ -58,3 +58,4 @@ export interface CollectionSearchPayload {
58
58
  offset?: number;
59
59
  name?: string;
60
60
  }
61
+ //# sourceMappingURL=collections.d.ts.map
@@ -20,3 +20,4 @@ export interface BaseObject {
20
20
  /** ISO timestamp of when the object was last updated */
21
21
  updated_at: string;
22
22
  }
23
+ //# sourceMappingURL=common.d.ts.map
@@ -130,3 +130,4 @@ export interface AdaptedTable {
130
130
  data: Record<string, any>[];
131
131
  }
132
132
  export {};
133
+ //# sourceMappingURL=doc-analyzer.d.ts.map
@@ -236,3 +236,4 @@ export interface WorkflowDefinitionRef {
236
236
  updated_at: Date;
237
237
  }
238
238
  export declare const WorkflowDefinitionRefPopulate = "id name description tags created_at updated_at";
239
+ //# sourceMappingURL=dsl-workflow.d.ts.map
@@ -9,3 +9,4 @@ export * from "./store.js";
9
9
  export * from "./temporalio.js";
10
10
  export * from "./workflow.js";
11
11
  export * from "./signals.js";
12
+ //# sourceMappingURL=index.d.ts.map
@@ -21,3 +21,4 @@ export interface DocumentPartProperties {
21
21
  width?: number;
22
22
  }
23
23
  export declare const DocumentPartSchema: JSONSchemaType<DocumentPartProperties>;
24
+ //# sourceMappingURL=object-types.d.ts.map
@@ -3,3 +3,4 @@ export interface UserInputSignal {
3
3
  metadata?: Record<string, any>;
4
4
  auth_token?: string;
5
5
  }
6
+ //# sourceMappingURL=signals.d.ts.map
@@ -281,3 +281,4 @@ export interface GetFileUrlResponse {
281
281
  mime_type: string;
282
282
  path: string;
283
283
  }
284
+ //# sourceMappingURL=store.d.ts.map
@@ -14,3 +14,4 @@ interface ParentClosePolicyI {
14
14
  }
15
15
  export declare const ParentClosePolicy: ParentClosePolicyI;
16
16
  export {};
17
+ //# sourceMappingURL=temporalio.d.ts.map
@@ -262,3 +262,4 @@ export interface Plan {
262
262
  comment?: string;
263
263
  }
264
264
  export {};
265
+ //# sourceMappingURL=workflow.d.ts.map
@@ -8,3 +8,4 @@ export interface UIResolvedTenant {
8
8
  provider?: string;
9
9
  name?: string;
10
10
  }
11
+ //# sourceMappingURL=tenant.d.ts.map
@@ -36,3 +36,4 @@ export interface ListTrainingSessionsQuery {
36
36
  offset?: number;
37
37
  status?: TrainingSessionStatus;
38
38
  }
39
+ //# sourceMappingURL=training.d.ts.map
@@ -25,3 +25,4 @@ export interface UserInviteTokenData {
25
25
  email: string;
26
26
  };
27
27
  }
28
+ //# sourceMappingURL=transient-tokens.d.ts.map
@@ -111,3 +111,4 @@ export interface SignupPayload {
111
111
  signupData: SignupData;
112
112
  }
113
113
  export {};
114
+ //# sourceMappingURL=user.d.ts.map
@@ -1,3 +1,4 @@
1
1
  import { ProjectRef } from "../project.js";
2
2
  export declare function getTenantId(accountId: string, projectId: string): string;
3
3
  export declare function getTenantIdFromProject(project: ProjectRef): string;
4
+ //# sourceMappingURL=auth.d.ts.map
@@ -5,3 +5,4 @@ import { PopulatedPromptSegmentDef, PromptSegmentDef, PromptTemplateRefWithSchem
5
5
  export declare function mergeJSONSchemas(schemas: JSONSchema[]): JSONSchema | null;
6
6
  export declare function _mergePromptsSchema(prompts: PromptSegmentDef<PromptTemplateRefWithSchema>[] | PopulatedPromptSegmentDef[]): JSONSchema4 | null;
7
7
  export declare function mergePromptsSchema(interaction: InteractionRefWithSchema | PopulatedInteraction): JSONSchema4 | null;
8
+ //# sourceMappingURL=schemas.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertesia/common",
3
- "version": "0.62.0",
3
+ "version": "0.63.0",
4
4
  "type": "module",
5
5
  "types": "./lib/types/index.d.ts",
6
6
  "files": [