@datapos/datapos-development 0.3.388 → 0.3.390

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.
@@ -1,3 +1,6 @@
1
+ /**
2
+ * Created by asking Copilot to generate a 'valibot' schema for the 'ConnectorConfig' interface.
3
+ */
1
4
  export declare const connectorConfigSchema: import('valibot').ObjectSchema<{
2
5
  readonly id: import('valibot').StringSchema<undefined>;
3
6
  readonly label: import('valibot').ObjectSchema<{
@@ -18,19 +21,19 @@ export declare const connectorConfigSchema: import('valibot').ObjectSchema<{
18
21
  readonly lastUpdatedAt: import('valibot').NullableSchema<import('valibot').NumberSchema<undefined>, undefined>;
19
22
  readonly status: import('valibot').NullableSchema<import('valibot').ObjectSchema<{
20
23
  readonly id: import('valibot').StringSchema<undefined>;
21
- readonly color: import('valibot').UnionSchema<import('valibot').LiteralSchema<string, undefined>[], undefined>;
24
+ readonly color: import('valibot').UnionSchema<import('valibot').UnionOptions, import('valibot').ErrorMessage<import('valibot').UnionIssue<import('valibot').BaseIssue<unknown>>> | undefined>;
22
25
  readonly label: import('valibot').StringSchema<undefined>;
23
26
  }, undefined>, undefined>;
24
- readonly statusId: import('valibot').UnionSchema<import('valibot').LiteralSchema<string, undefined>[], undefined>;
27
+ readonly statusId: import('valibot').UnionSchema<import('valibot').UnionOptions, import('valibot').ErrorMessage<import('valibot').UnionIssue<import('valibot').BaseIssue<unknown>>> | undefined>;
25
28
  readonly typeId: import('valibot').LiteralSchema<"connector", undefined>;
26
29
  readonly version: import('valibot').StringSchema<undefined>;
27
30
  readonly category: import('valibot').NullableSchema<import('valibot').ObjectSchema<{
28
31
  readonly id: import('valibot').StringSchema<undefined>;
29
32
  readonly label: import('valibot').StringSchema<undefined>;
30
33
  }, undefined>, undefined>;
31
- readonly categoryId: import('valibot').UnionSchema<import('valibot').LiteralSchema<string, undefined>[], undefined>;
34
+ readonly categoryId: import('valibot').UnionSchema<import('valibot').UnionOptions, import('valibot').ErrorMessage<import('valibot').UnionIssue<import('valibot').BaseIssue<unknown>>> | undefined>;
32
35
  readonly implementations: import('valibot').RecordSchema<import('valibot').StringSchema<undefined>, import('valibot').ObjectSchema<{
33
- readonly authMethodId: import('valibot').UnionSchema<import('valibot').LiteralSchema<string, undefined>[], undefined>;
36
+ readonly authMethodId: import('valibot').UnionSchema<import('valibot').UnionOptions, import('valibot').ErrorMessage<import('valibot').UnionIssue<import('valibot').BaseIssue<unknown>>> | undefined>;
34
37
  readonly activeConnectionCount: import('valibot').OptionalSchema<import('valibot').NumberSchema<undefined>, undefined>;
35
38
  readonly canDescribe: import('valibot').OptionalSchema<import('valibot').BooleanSchema<undefined>, undefined>;
36
39
  readonly id: import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
@@ -43,8 +46,8 @@ export declare const connectorConfigSchema: import('valibot').ObjectSchema<{
43
46
  readonly maxConnectionCount: import('valibot').OptionalSchema<import('valibot').NumberSchema<undefined>, undefined>;
44
47
  readonly params: import('valibot').OptionalSchema<import('valibot').ArraySchema<import('valibot').RecordSchema<import('valibot').StringSchema<undefined>, import('valibot').StringSchema<undefined>, undefined>, undefined>, undefined>;
45
48
  }, undefined>, undefined>;
46
- readonly operations: import('valibot').ArraySchema<import('valibot').UnionSchema<import('valibot').LiteralSchema<string, undefined>[], undefined>, undefined>;
47
- readonly usageId: import('valibot').UnionSchema<import('valibot').LiteralSchema<string, undefined>[], undefined>;
49
+ readonly operations: import('valibot').ArraySchema<import('valibot').UnionSchema<import('valibot').UnionOptions, import('valibot').ErrorMessage<import('valibot').UnionIssue<import('valibot').BaseIssue<unknown>>> | undefined>, undefined>;
50
+ readonly usageId: import('valibot').UnionSchema<import('valibot').UnionOptions, import('valibot').ErrorMessage<import('valibot').UnionIssue<import('valibot').BaseIssue<unknown>>> | undefined>;
48
51
  readonly vendorAccountURL: import('valibot').NullableSchema<import('valibot').StringSchema<undefined>, undefined>;
49
52
  readonly vendorDocumentationURL: import('valibot').NullableSchema<import('valibot').StringSchema<undefined>, undefined>;
50
53
  readonly vendorHomeURL: import('valibot').NullableSchema<import('valibot').StringSchema<undefined>, undefined>;
@@ -1,45 +1,77 @@
1
- import { z } from 'zod';
2
- export declare const contextConfigSchema: z.ZodObject<{
3
- id: z.ZodString;
4
- label: z.ZodRecord<z.ZodString, z.ZodString>;
5
- description: z.ZodRecord<z.ZodString, z.ZodString>;
6
- firstCreatedAt: z.ZodOptional<z.ZodNumber>;
7
- icon: z.ZodOptional<z.ZodString>;
8
- iconDark: z.ZodOptional<z.ZodString>;
9
- lastUpdatedAt: z.ZodOptional<z.ZodNumber>;
10
- status: z.ZodOptional<z.ZodObject<{
11
- id: z.ZodString;
12
- color: z.ZodUnion<readonly [z.ZodLiteral<"amber">, z.ZodLiteral<"green">, z.ZodLiteral<"red">, z.ZodLiteral<"other">]>;
13
- label: z.ZodString;
14
- }, z.core.$strip>>;
15
- statusId: z.ZodUnion<readonly [z.ZodLiteral<"alpha">, z.ZodLiteral<"beta">, z.ZodLiteral<"generalAvailability">, z.ZodLiteral<"notApplicable">, z.ZodLiteral<"preAlpha">, z.ZodLiteral<"proposed">, z.ZodLiteral<"releaseCandidate">, z.ZodLiteral<"unavailable">, z.ZodLiteral<"underReview">]>;
16
- version: z.ZodString;
17
- models: z.ZodArray<z.ZodObject<{
18
- id: z.ZodString;
19
- label: z.ZodRecord<z.ZodString, z.ZodString>;
20
- description: z.ZodRecord<z.ZodString, z.ZodString>;
21
- firstCreatedAt: z.ZodOptional<z.ZodNumber>;
22
- icon: z.ZodOptional<z.ZodString>;
23
- iconDark: z.ZodOptional<z.ZodString>;
24
- lastUpdatedAt: z.ZodOptional<z.ZodNumber>;
25
- status: z.ZodOptional<z.ZodObject<{
26
- id: z.ZodString;
27
- color: z.ZodUnion<readonly [z.ZodLiteral<"amber">, z.ZodLiteral<"green">, z.ZodLiteral<"red">, z.ZodLiteral<"other">]>;
28
- label: z.ZodString;
29
- }, z.core.$strip>>;
30
- statusId: z.ZodUnion<readonly [z.ZodLiteral<"alpha">, z.ZodLiteral<"beta">, z.ZodLiteral<"generalAvailability">, z.ZodLiteral<"notApplicable">, z.ZodLiteral<"preAlpha">, z.ZodLiteral<"proposed">, z.ZodLiteral<"releaseCandidate">, z.ZodLiteral<"unavailable">, z.ZodLiteral<"underReview">]>;
31
- typeId: z.ZodUnion<readonly [z.ZodLiteral<"app">, z.ZodLiteral<"connector">, z.ZodLiteral<"connectorConnection">, z.ZodLiteral<"context">, z.ZodLiteral<"contextModelGroup">, z.ZodLiteral<"contextModel">, z.ZodLiteral<"contextModelDimensionGroup">, z.ZodLiteral<"contextModelDimension">, z.ZodLiteral<"contextModelDimensionHierarchy">, z.ZodLiteral<"contextModelEntityGroup">, z.ZodLiteral<"contextModelEntity">, z.ZodLiteral<"contextModelEntityDataItem">, z.ZodLiteral<"contextModelEntityEvent">, z.ZodLiteral<"contextModelEntityPrimaryMeasure">, z.ZodLiteral<"contextModelSecondaryMeasureGroup">, z.ZodLiteral<"contextModelSecondaryMeasure">, z.ZodLiteral<"dataView">, z.ZodLiteral<"dimension">, z.ZodLiteral<"engine">, z.ZodLiteral<"eventQuery">, z.ZodLiteral<"presenter">, z.ZodLiteral<"presenterPresentation">, z.ZodLiteral<"tool">]>;
32
- modelRefs: z.ZodArray<z.ZodObject<{
33
- id: z.ZodString;
34
- label: z.ZodRecord<z.ZodString, z.ZodString>;
35
- description: z.ZodRecord<z.ZodString, z.ZodString>;
36
- icon: z.ZodOptional<z.ZodString>;
37
- iconDark: z.ZodOptional<z.ZodString>;
38
- order: z.ZodNumber;
39
- path: z.ZodString;
40
- }, z.core.$strip>>;
41
- order: z.ZodNumber;
42
- }, z.core.$strip>>;
43
- operations: z.ZodArray<z.ZodLiteral<"list">>;
44
- typeId: z.ZodLiteral<"context">;
45
- }, z.core.$strip>;
1
+ /**
2
+ * Created by asking Copilot to generate a 'valibot' schema for the 'ContextConfig' interface.
3
+ */
4
+ export declare const contextConfigSchema: import('valibot').ObjectSchema<{
5
+ readonly typeId: import('valibot').LiteralSchema<"context", undefined>;
6
+ readonly version: import('valibot').StringSchema<undefined>;
7
+ readonly models: import('valibot').ArraySchema<import('valibot').ObjectSchema<{
8
+ readonly typeId: import('valibot').LiteralSchema<"contextModelGroup", undefined>;
9
+ readonly modelRefs: import('valibot').ArraySchema<import('valibot').ObjectSchema<{
10
+ readonly id: import('valibot').StringSchema<undefined>;
11
+ readonly label: import('valibot').ObjectSchema<{
12
+ readonly 'en-au': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
13
+ readonly 'en-gb': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
14
+ readonly 'en-us': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
15
+ readonly 'es-es': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
16
+ }, undefined>;
17
+ readonly description: import('valibot').ObjectSchema<{
18
+ readonly 'en-au': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
19
+ readonly 'en-gb': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
20
+ readonly 'en-us': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
21
+ readonly 'es-es': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
22
+ }, undefined>;
23
+ readonly icon: import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
24
+ readonly iconDark: import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
25
+ readonly order: import('valibot').NumberSchema<undefined>;
26
+ readonly path: import('valibot').StringSchema<undefined>;
27
+ }, undefined>, undefined>;
28
+ readonly order: import('valibot').NumberSchema<undefined>;
29
+ readonly id: import('valibot').StringSchema<undefined>;
30
+ readonly label: import('valibot').ObjectSchema<{
31
+ readonly 'en-au': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
32
+ readonly 'en-gb': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
33
+ readonly 'en-us': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
34
+ readonly 'es-es': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
35
+ }, undefined>;
36
+ readonly description: import('valibot').ObjectSchema<{
37
+ readonly 'en-au': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
38
+ readonly 'en-gb': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
39
+ readonly 'en-us': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
40
+ readonly 'es-es': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
41
+ }, undefined>;
42
+ readonly firstCreatedAt: import('valibot').OptionalSchema<import('valibot').NumberSchema<undefined>, undefined>;
43
+ readonly icon: import('valibot').NullableSchema<import('valibot').StringSchema<undefined>, undefined>;
44
+ readonly iconDark: import('valibot').NullableSchema<import('valibot').StringSchema<undefined>, undefined>;
45
+ readonly lastUpdatedAt: import('valibot').NullableSchema<import('valibot').NumberSchema<undefined>, undefined>;
46
+ readonly status: import('valibot').NullableSchema<import('valibot').ObjectSchema<{
47
+ readonly id: import('valibot').StringSchema<undefined>;
48
+ readonly color: import('valibot').UnionSchema<import('valibot').UnionOptions, import('valibot').ErrorMessage<import('valibot').UnionIssue<import('valibot').BaseIssue<unknown>>> | undefined>;
49
+ readonly label: import('valibot').StringSchema<undefined>;
50
+ }, undefined>, undefined>;
51
+ readonly statusId: import('valibot').UnionSchema<import('valibot').UnionOptions, import('valibot').ErrorMessage<import('valibot').UnionIssue<import('valibot').BaseIssue<unknown>>> | undefined>;
52
+ }, undefined>, undefined>;
53
+ readonly operations: import('valibot').ArraySchema<import('valibot').UnionSchema<import('valibot').UnionOptions, import('valibot').ErrorMessage<import('valibot').UnionIssue<import('valibot').BaseIssue<unknown>>> | undefined>, undefined>;
54
+ readonly id: import('valibot').StringSchema<undefined>;
55
+ readonly label: import('valibot').ObjectSchema<{
56
+ readonly 'en-au': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
57
+ readonly 'en-gb': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
58
+ readonly 'en-us': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
59
+ readonly 'es-es': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
60
+ }, undefined>;
61
+ readonly description: import('valibot').ObjectSchema<{
62
+ readonly 'en-au': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
63
+ readonly 'en-gb': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
64
+ readonly 'en-us': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
65
+ readonly 'es-es': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
66
+ }, undefined>;
67
+ readonly firstCreatedAt: import('valibot').OptionalSchema<import('valibot').NumberSchema<undefined>, undefined>;
68
+ readonly icon: import('valibot').NullableSchema<import('valibot').StringSchema<undefined>, undefined>;
69
+ readonly iconDark: import('valibot').NullableSchema<import('valibot').StringSchema<undefined>, undefined>;
70
+ readonly lastUpdatedAt: import('valibot').NullableSchema<import('valibot').NumberSchema<undefined>, undefined>;
71
+ readonly status: import('valibot').NullableSchema<import('valibot').ObjectSchema<{
72
+ readonly id: import('valibot').StringSchema<undefined>;
73
+ readonly color: import('valibot').UnionSchema<import('valibot').UnionOptions, import('valibot').ErrorMessage<import('valibot').UnionIssue<import('valibot').BaseIssue<unknown>>> | undefined>;
74
+ readonly label: import('valibot').StringSchema<undefined>;
75
+ }, undefined>, undefined>;
76
+ readonly statusId: import('valibot').UnionSchema<import('valibot').UnionOptions, import('valibot').ErrorMessage<import('valibot').UnionIssue<import('valibot').BaseIssue<unknown>>> | undefined>;
77
+ }, undefined>;
@@ -1,28 +1,50 @@
1
- import { z } from 'zod';
2
- export declare const presenterConfigSchema: z.ZodObject<{
3
- id: z.ZodString;
4
- label: z.ZodRecord<z.ZodString, z.ZodString>;
5
- description: z.ZodRecord<z.ZodString, z.ZodString>;
6
- firstCreatedAt: z.ZodOptional<z.ZodNumber>;
7
- icon: z.ZodOptional<z.ZodString>;
8
- iconDark: z.ZodOptional<z.ZodString>;
9
- lastUpdatedAt: z.ZodOptional<z.ZodNumber>;
10
- status: z.ZodOptional<z.ZodObject<{
11
- id: z.ZodString;
12
- color: z.ZodUnion<readonly [z.ZodLiteral<"amber">, z.ZodLiteral<"green">, z.ZodLiteral<"red">, z.ZodLiteral<"other">]>;
13
- label: z.ZodString;
14
- }, z.core.$strip>>;
15
- statusId: z.ZodUnion<readonly [z.ZodLiteral<"alpha">, z.ZodLiteral<"beta">, z.ZodLiteral<"generalAvailability">, z.ZodLiteral<"notApplicable">, z.ZodLiteral<"preAlpha">, z.ZodLiteral<"proposed">, z.ZodLiteral<"releaseCandidate">, z.ZodLiteral<"unavailable">, z.ZodLiteral<"underReview">]>;
16
- version: z.ZodString;
17
- presentations: z.ZodArray<z.ZodObject<{
18
- id: z.ZodString;
19
- label: z.ZodRecord<z.ZodString, z.ZodString>;
20
- description: z.ZodRecord<z.ZodString, z.ZodString>;
21
- icon: z.ZodOptional<z.ZodString>;
22
- iconDark: z.ZodOptional<z.ZodString>;
23
- order: z.ZodNumber;
24
- path: z.ZodString;
25
- }, z.core.$strip>>;
26
- operations: z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"list">, z.ZodLiteral<"render">, z.ZodLiteral<"setColorMode">]>>;
27
- typeId: z.ZodLiteral<"presenter">;
28
- }, z.core.$strip>;
1
+ /**
2
+ * Created by asking Copilot to generate a 'valibot' schema for the 'PresenterConfig' interface.
3
+ */
4
+ export declare const presenterConfigSchema: import('valibot').ObjectSchema<{
5
+ readonly typeId: import('valibot').LiteralSchema<"presenter", undefined>;
6
+ readonly version: import('valibot').StringSchema<undefined>;
7
+ readonly presentations: import('valibot').ArraySchema<import('valibot').ObjectSchema<{
8
+ readonly id: import('valibot').StringSchema<undefined>;
9
+ readonly label: import('valibot').ObjectSchema<{
10
+ readonly 'en-au': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
11
+ readonly 'en-gb': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
12
+ readonly 'en-us': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
13
+ readonly 'es-es': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
14
+ }, undefined>;
15
+ readonly description: import('valibot').ObjectSchema<{
16
+ readonly 'en-au': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
17
+ readonly 'en-gb': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
18
+ readonly 'en-us': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
19
+ readonly 'es-es': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
20
+ }, undefined>;
21
+ readonly icon: import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
22
+ readonly iconDark: import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
23
+ readonly order: import('valibot').NumberSchema<undefined>;
24
+ readonly path: import('valibot').StringSchema<undefined>;
25
+ }, undefined>, undefined>;
26
+ readonly operations: import('valibot').ArraySchema<import('valibot').UnionSchema<import('valibot').UnionOptions, import('valibot').ErrorMessage<import('valibot').UnionIssue<import('valibot').BaseIssue<unknown>>> | undefined>, undefined>;
27
+ readonly id: import('valibot').StringSchema<undefined>;
28
+ readonly label: import('valibot').ObjectSchema<{
29
+ readonly 'en-au': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
30
+ readonly 'en-gb': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
31
+ readonly 'en-us': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
32
+ readonly 'es-es': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
33
+ }, undefined>;
34
+ readonly description: import('valibot').ObjectSchema<{
35
+ readonly 'en-au': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
36
+ readonly 'en-gb': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
37
+ readonly 'en-us': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
38
+ readonly 'es-es': import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
39
+ }, undefined>;
40
+ readonly firstCreatedAt: import('valibot').OptionalSchema<import('valibot').NumberSchema<undefined>, undefined>;
41
+ readonly icon: import('valibot').NullableSchema<import('valibot').StringSchema<undefined>, undefined>;
42
+ readonly iconDark: import('valibot').NullableSchema<import('valibot').StringSchema<undefined>, undefined>;
43
+ readonly lastUpdatedAt: import('valibot').NullableSchema<import('valibot').NumberSchema<undefined>, undefined>;
44
+ readonly status: import('valibot').NullableSchema<import('valibot').ObjectSchema<{
45
+ readonly id: import('valibot').StringSchema<undefined>;
46
+ readonly color: import('valibot').UnionSchema<import('valibot').UnionOptions, import('valibot').ErrorMessage<import('valibot').UnionIssue<import('valibot').BaseIssue<unknown>>> | undefined>;
47
+ readonly label: import('valibot').StringSchema<undefined>;
48
+ }, undefined>, undefined>;
49
+ readonly statusId: import('valibot').UnionSchema<import('valibot').UnionOptions, import('valibot').ErrorMessage<import('valibot').UnionIssue<import('valibot').BaseIssue<unknown>>> | undefined>;
50
+ }, undefined>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datapos/datapos-development",
3
- "version": "0.3.388",
3
+ "version": "0.3.390",
4
4
  "description": "A collection of utilities for managing Data Positioning projects.",
5
5
  "license": "MIT",
6
6
  "author": "Jonathan Terrell <terrell.jm@gmail.com>",
@@ -40,8 +40,7 @@
40
40
  "acorn-walk": "^8.3.4",
41
41
  "dotenv": "^17.2.3",
42
42
  "nanoid": "^5.1.6",
43
- "valibot": "^1.2.0",
44
- "zod": "^4.1.13"
43
+ "valibot": "^1.2.0"
45
44
  },
46
45
  "devDependencies": {
47
46
  "@datapos/eslint-config-datapos": "^1.0.18",
@@ -65,7 +64,6 @@
65
64
  "prettier": "^3.7.4",
66
65
  "rollup-plugin-visualizer": "^6.0.5",
67
66
  "sonda": "^0.10.1",
68
- "ts-to-zod": "^5.1.0",
69
67
  "type-fest": "^5.3.1",
70
68
  "typescript": "^5.9.3",
71
69
  "vite": "^7.2.7",
@@ -1,45 +0,0 @@
1
- export declare const connectorImplementationSchema: import('valibot').ObjectSchema<{
2
- readonly activeConnectionCount: import('valibot').OptionalSchema<import('valibot').NumberSchema<undefined>, undefined>;
3
- readonly canDescribe: import('valibot').OptionalSchema<import('valibot').BooleanSchema<undefined>, undefined>;
4
- readonly id: import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
5
- readonly authMethodId: import('valibot').PicklistSchema<readonly ["apiKey", "disabled", "oAuth2", "none"], undefined>;
6
- readonly label: import('valibot').OptionalSchema<import('valibot').RecordSchema<import('valibot').PicklistSchema<readonly ["en-au", "en-gb", "en-us", "es-es"], undefined>, import('valibot').StringSchema<undefined>, undefined>, undefined>;
7
- readonly maxConnectionCount: import('valibot').OptionalSchema<import('valibot').NumberSchema<undefined>, undefined>;
8
- readonly params: import('valibot').OptionalSchema<import('valibot').ArraySchema<import('valibot').RecordSchema<import('valibot').StringSchema<undefined>, import('valibot').StringSchema<undefined>, undefined>, undefined>, undefined>;
9
- }, undefined>;
10
- export declare const connectorConfigSchema: import('valibot').ObjectSchema<{
11
- readonly category: import('valibot').OptionalSchema<import('valibot').NullableSchema<import('valibot').ObjectSchema<{
12
- readonly id: import('valibot').StringSchema<undefined>;
13
- readonly label: import('valibot').StringSchema<undefined>;
14
- }, undefined>, undefined>, undefined>;
15
- readonly categoryId: import('valibot').PicklistSchema<readonly ["application", "curatedDataset", "database", "fileStore"], undefined>;
16
- readonly implementations: import('valibot').RecordSchema<import('valibot').StringSchema<undefined>, import('valibot').ObjectSchema<{
17
- readonly activeConnectionCount: import('valibot').OptionalSchema<import('valibot').NumberSchema<undefined>, undefined>;
18
- readonly canDescribe: import('valibot').OptionalSchema<import('valibot').BooleanSchema<undefined>, undefined>;
19
- readonly id: import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
20
- readonly authMethodId: import('valibot').PicklistSchema<readonly ["apiKey", "disabled", "oAuth2", "none"], undefined>;
21
- readonly label: import('valibot').OptionalSchema<import('valibot').RecordSchema<import('valibot').PicklistSchema<readonly ["en-au", "en-gb", "en-us", "es-es"], undefined>, import('valibot').StringSchema<undefined>, undefined>, undefined>;
22
- readonly maxConnectionCount: import('valibot').OptionalSchema<import('valibot').NumberSchema<undefined>, undefined>;
23
- readonly params: import('valibot').OptionalSchema<import('valibot').ArraySchema<import('valibot').RecordSchema<import('valibot').StringSchema<undefined>, import('valibot').StringSchema<undefined>, undefined>, undefined>, undefined>;
24
- }, undefined>, undefined>;
25
- readonly operations: import('valibot').ArraySchema<import('valibot').PicklistSchema<readonly ["abortOperation", "authenticateConnection", "createObject", "describeConnection", "dropObject", "findObject", "getRecord", "listNodes", "previewObject", "removeRecords", "retrieveRecords", "upsertRecords"], undefined>, undefined>;
26
- readonly typeId: import('valibot').LiteralSchema<"connector", undefined>;
27
- readonly usageId: import('valibot').PicklistSchema<readonly ["bidirectional", "destination", "source", "unknown"], undefined>;
28
- readonly vendorAccountURL: import('valibot').OptionalSchema<import('valibot').NullableSchema<import('valibot').StringSchema<undefined>, undefined>, undefined>;
29
- readonly vendorDocumentationURL: import('valibot').OptionalSchema<import('valibot').NullableSchema<import('valibot').StringSchema<undefined>, undefined>, undefined>;
30
- readonly vendorHomeURL: import('valibot').OptionalSchema<import('valibot').NullableSchema<import('valibot').StringSchema<undefined>, undefined>, undefined>;
31
- readonly version: import('valibot').StringSchema<undefined>;
32
- readonly id: import('valibot').StringSchema<undefined>;
33
- readonly label: import('valibot').RecordSchema<import('valibot').StringSchema<undefined>, import('valibot').StringSchema<undefined>, undefined>;
34
- readonly description: import('valibot').RecordSchema<import('valibot').StringSchema<undefined>, import('valibot').StringSchema<undefined>, undefined>;
35
- readonly firstCreatedAt: import('valibot').OptionalSchema<import('valibot').NumberSchema<undefined>, undefined>;
36
- readonly icon: import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
37
- readonly iconDark: import('valibot').OptionalSchema<import('valibot').StringSchema<undefined>, undefined>;
38
- readonly lastUpdatedAt: import('valibot').OptionalSchema<import('valibot').NullableSchema<import('valibot').NumberSchema<undefined>, undefined>, undefined>;
39
- readonly status: import('valibot').OptionalSchema<import('valibot').NullableSchema<import('valibot').ObjectSchema<{
40
- readonly id: import('valibot').StringSchema<undefined>;
41
- readonly color: import('valibot').PicklistSchema<readonly ["amber", "green", "red", "other"], undefined>;
42
- readonly label: import('valibot').StringSchema<undefined>;
43
- }, undefined>, undefined>, undefined>;
44
- readonly statusId: import('valibot').PicklistSchema<readonly ["alpha", "beta", "generalAvailability", "notApplicable", "preAlpha", "proposed", "releaseCandidate", "unavailable", "underReview"], undefined>;
45
- }, undefined>;