@arrirpc/codegen-utils 0.63.3 → 0.64.0

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- import { SchemaFormProperties, SchemaFormDiscriminator } from 'jtd-utils';
1
+ import { Schema, SchemaFormProperties, SchemaFormDiscriminator } from 'jtd-utils';
2
2
  export * from 'jtd-utils';
3
3
  export * from 'scule';
4
4
 
@@ -21,7 +21,7 @@ interface AppDefinition {
21
21
  url: string;
22
22
  };
23
23
  procedures: Record<string, RpcDefinition<string>>;
24
- definitions: Record<string, SchemaFormProperties | SchemaFormDiscriminator>;
24
+ definitions: Record<string, Schema>;
25
25
  }
26
26
  declare function isAppDefinition(input: unknown): input is AppDefinition;
27
27
  interface RpcDefinitionBase<T = string> {
package/dist/index.d.mts CHANGED
@@ -1,4 +1,4 @@
1
- import { SchemaFormProperties, SchemaFormDiscriminator } from 'jtd-utils';
1
+ import { Schema, SchemaFormProperties, SchemaFormDiscriminator } from 'jtd-utils';
2
2
  export * from 'jtd-utils';
3
3
  export * from 'scule';
4
4
 
@@ -21,7 +21,7 @@ interface AppDefinition {
21
21
  url: string;
22
22
  };
23
23
  procedures: Record<string, RpcDefinition<string>>;
24
- definitions: Record<string, SchemaFormProperties | SchemaFormDiscriminator>;
24
+ definitions: Record<string, Schema>;
25
25
  }
26
26
  declare function isAppDefinition(input: unknown): input is AppDefinition;
27
27
  interface RpcDefinitionBase<T = string> {
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { SchemaFormProperties, SchemaFormDiscriminator } from 'jtd-utils';
1
+ import { Schema, SchemaFormProperties, SchemaFormDiscriminator } from 'jtd-utils';
2
2
  export * from 'jtd-utils';
3
3
  export * from 'scule';
4
4
 
@@ -21,7 +21,7 @@ interface AppDefinition {
21
21
  url: string;
22
22
  };
23
23
  procedures: Record<string, RpcDefinition<string>>;
24
- definitions: Record<string, SchemaFormProperties | SchemaFormDiscriminator>;
24
+ definitions: Record<string, Schema>;
25
25
  }
26
26
  declare function isAppDefinition(input: unknown): input is AppDefinition;
27
27
  interface RpcDefinitionBase<T = string> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arrirpc/codegen-utils",
3
- "version": "0.63.3",
3
+ "version": "0.64.0",
4
4
  "license": "MIT",
5
5
  "author": {
6
6
  "name": "joshmossas",
@@ -23,7 +23,7 @@
23
23
  ],
24
24
  "dependencies": {
25
25
  "scule": "^1.3.0",
26
- "jtd-utils": "0.63.3"
26
+ "jtd-utils": "0.64.0"
27
27
  },
28
28
  "devDependencies": {}
29
29
  }