@transai/connector-runner-pdf 0.8.0 → 0.8.1

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/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.8.0 (2026-03-06)
2
+
3
+ This was a version bump only for connector-runner-pdf to align it with other projects, there were no code changes.
4
+
1
5
  ## 0.7.1 (2026-03-05)
2
6
 
3
7
  This was a version bump only for connector-runner-pdf to align it with other projects, there were no code changes.
@@ -0,0 +1,11 @@
1
+ import { z } from 'zod';
2
+ export interface AuthorInterface {
3
+ name: string;
4
+ email?: string;
5
+ website?: string;
6
+ }
7
+ export declare const AuthorSchema: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
8
+ name: z.ZodString;
9
+ email: z.ZodOptional<z.ZodEmail>;
10
+ website: z.ZodOptional<z.ZodURL>;
11
+ }, z.core.$strip>]>;
@@ -1,6 +1,7 @@
1
1
  export * from './type-enums';
2
2
  export * from './action-definition.interface';
3
3
  export * from './tenant.interface';
4
+ export * from './author.interface';
4
5
  export * from './cube-dataset.interface';
5
6
  export * from './event-origin.interface';
6
7
  export * from './workflow';
@@ -1,4 +1,5 @@
1
1
  import { z } from 'zod';
2
+ import { AuthorInterface } from './author.interface';
2
3
  import { DatasetsInterface, SemanticTriggersInterface, ConnectorsInterface } from './index';
3
4
  export declare const TemplateSchema: z.ZodObject<{
4
5
  identifier: z.ZodString;
@@ -6,6 +7,13 @@ export declare const TemplateSchema: z.ZodObject<{
6
7
  name: z.ZodString;
7
8
  prefix: z.ZodString;
8
9
  description: z.ZodString;
10
+ logo: z.ZodOptional<z.ZodString>;
11
+ author: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
12
+ name: z.ZodString;
13
+ email: z.ZodOptional<z.ZodEmail>;
14
+ website: z.ZodOptional<z.ZodURL>;
15
+ }, z.core.$strip>]>>;
16
+ tenantIdentifier: z.ZodOptional<z.ZodString>;
9
17
  datasets: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
10
18
  name: z.ZodString;
11
19
  description: z.ZodString;
@@ -155,6 +163,9 @@ export interface TemplateInterface {
155
163
  name: string;
156
164
  prefix: string;
157
165
  description: string;
166
+ logo?: string;
167
+ author?: string | AuthorInterface;
168
+ tenantIdentifier?: string;
158
169
  datasets: DatasetsInterface;
159
170
  semanticTriggers: SemanticTriggersInterface;
160
171
  connectors?: ConnectorsInterface;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@transai/connector-runner-pdf",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },