@osdk/generator 1.6.0 → 1.7.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.
@@ -1,3 +1,3 @@
1
1
  import type { InterfaceType } from "@osdk/gateway/types";
2
2
  /** @internal */
3
- export declare function __UNSTABLE_wireInterfaceTypeV2ToSdkObjectConst(interfaceType: InterfaceType, v2?: boolean): string;
3
+ export declare function __UNSTABLE_wireInterfaceTypeV2ToSdkObjectConst(interfaceDef: InterfaceType, v2?: boolean): string;
@@ -35,6 +35,7 @@ export declare const TodoWireOntology: {
35
35
  primaryKey: string;
36
36
  displayName: string;
37
37
  description: string;
38
+ titleProperty: string;
38
39
  properties: {
39
40
  id: {
40
41
  dataType: {
@@ -74,6 +75,7 @@ export declare const TodoWireOntology: {
74
75
  primaryKey: string;
75
76
  displayName: string;
76
77
  description: string;
78
+ titleProperty: string;
77
79
  properties: {
78
80
  email: {
79
81
  dataType: {
@@ -0,0 +1,5 @@
1
+ type: improvement
2
+ improvement:
3
+ description: Initial Interfaces Support
4
+ links:
5
+ - https://github.com/palantir/osdk-ts/pull/101
@@ -0,0 +1,5 @@
1
+ type: improvement
2
+ improvement:
3
+ description: Tweak openapi gen
4
+ links:
5
+ - https://github.com/palantir/osdk-ts/pull/102
@@ -0,0 +1,5 @@
1
+ type: fix
2
+ fix:
3
+ description: Fix long and decimal types to correctly be strings in legacy-client
4
+ links:
5
+ - https://github.com/palantir/osdk-ts/pull/113
@@ -0,0 +1,5 @@
1
+ type: improvement
2
+ improvement:
3
+ description: Bump TS and make writing test network mocks easier
4
+ links:
5
+ - https://github.com/palantir/osdk-ts/pull/120
@@ -0,0 +1,5 @@
1
+ type: fix
2
+ fix:
3
+ description: Defend against empty action or object needing an export
4
+ links:
5
+ - https://github.com/palantir/osdk-ts/pull/121
@@ -0,0 +1,5 @@
1
+ type: improvement
2
+ improvement:
3
+ description: Sort keys in generated files for smaller (future) diffs
4
+ links:
5
+ - https://github.com/palantir/osdk-ts/pull/124
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/generator",
3
- "version": "1.6.0",
3
+ "version": "1.7.0",
4
4
  "description": "",
5
5
  "access": "public",
6
6
  "license": "Apache-2.0",
@@ -25,14 +25,14 @@
25
25
  "prettier": "^3.0.3",
26
26
  "prettier-plugin-organize-imports": "^3.2.3",
27
27
  "tiny-invariant": "^1.3.1",
28
- "@osdk/api": "1.3.0",
29
- "@osdk/gateway": "1.2.0",
30
- "@osdk/generator-converters": "0.1.0"
28
+ "@osdk/api": "1.4.0",
29
+ "@osdk/gateway": "2.0.0",
30
+ "@osdk/generator-converters": "0.2.0"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@types/node": "^18.0.0",
34
34
  "ts-expect": "^1.3.0",
35
- "typescript": "^5.2.2",
35
+ "typescript": "^5.4.2",
36
36
  "vitest": "^1.2.2"
37
37
  },
38
38
  "publishConfig": {