@osdk/generator-converters 0.1.0 → 0.2.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.
- package/build/js/index.cjs +51 -34
- package/build/js/index.cjs.map +1 -1
- package/build/js/index.mjs +51 -35
- package/build/js/index.mjs.map +1 -1
- package/build/types/__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition.d.ts +3 -0
- package/build/types/index.d.ts +1 -0
- package/build/types/wirePropertyV2ToSdkPrimaryKeyTypeDefinition.d.ts +1 -1
- package/build/types/wirePropertyV2ToSdkPropertyDefinition.d.ts +2 -2
- package/changelog/0.2.0/pr-101.v2.yml +5 -0
- package/changelog/0.2.0/pr-107.v2.yml +5 -0
- package/changelog/0.2.0/pr-113.v2.yml +5 -0
- package/changelog/0.2.0/pr-120.v2.yml +5 -0
- package/package.json +4 -4
package/build/js/index.cjs
CHANGED
|
@@ -1,38 +1,5 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
// src/wirePropertyV2ToSdkPrimaryKeyTypeDefinition.ts
|
|
4
|
-
function wirePropertyV2ToSdkPrimaryKeyTypeDefinition(input) {
|
|
5
|
-
switch (input.dataType.type) {
|
|
6
|
-
case "integer":
|
|
7
|
-
case "double":
|
|
8
|
-
case "string":
|
|
9
|
-
case "boolean":
|
|
10
|
-
case "attachment":
|
|
11
|
-
case "byte":
|
|
12
|
-
case "decimal":
|
|
13
|
-
case "float":
|
|
14
|
-
case "geopoint":
|
|
15
|
-
case "geoshape":
|
|
16
|
-
case "long":
|
|
17
|
-
case "short": {
|
|
18
|
-
return input.dataType.type;
|
|
19
|
-
}
|
|
20
|
-
case "date": {
|
|
21
|
-
return "datetime";
|
|
22
|
-
}
|
|
23
|
-
case "timestamp": {
|
|
24
|
-
return "timestamp";
|
|
25
|
-
}
|
|
26
|
-
case "timeseries":
|
|
27
|
-
case "array":
|
|
28
|
-
case "marking":
|
|
29
|
-
throw new Error(`Type not supported for primaryKey: ${input.dataType.type}`);
|
|
30
|
-
default:
|
|
31
|
-
input.dataType;
|
|
32
|
-
throw new Error(`Unknown type encountered for primaryKey: ${input.dataType}`);
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
|
|
36
3
|
// src/wirePropertyV2ToSdkPropertyDefinition.ts
|
|
37
4
|
function wirePropertyV2ToSdkPropertyDefinition(input, isNullable = true) {
|
|
38
5
|
switch (input.dataType.type) {
|
|
@@ -102,6 +69,52 @@ function objectPropertyTypeToSdkPropertyDefinition(propertyType) {
|
|
|
102
69
|
}
|
|
103
70
|
}
|
|
104
71
|
|
|
72
|
+
// src/__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition.ts
|
|
73
|
+
function __UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition(interfaceType, v2) {
|
|
74
|
+
return {
|
|
75
|
+
type: "interface",
|
|
76
|
+
apiName: interfaceType.apiName,
|
|
77
|
+
description: interfaceType.description,
|
|
78
|
+
properties: Object.fromEntries(Object.entries(interfaceType.properties).map(([key, value]) => {
|
|
79
|
+
return [key, wirePropertyV2ToSdkPropertyDefinition(value, true)];
|
|
80
|
+
})),
|
|
81
|
+
links: {}
|
|
82
|
+
};
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
// src/wirePropertyV2ToSdkPrimaryKeyTypeDefinition.ts
|
|
86
|
+
function wirePropertyV2ToSdkPrimaryKeyTypeDefinition(input) {
|
|
87
|
+
switch (input.dataType.type) {
|
|
88
|
+
case "integer":
|
|
89
|
+
case "double":
|
|
90
|
+
case "string":
|
|
91
|
+
case "boolean":
|
|
92
|
+
case "attachment":
|
|
93
|
+
case "byte":
|
|
94
|
+
case "decimal":
|
|
95
|
+
case "float":
|
|
96
|
+
case "geopoint":
|
|
97
|
+
case "geoshape":
|
|
98
|
+
case "long":
|
|
99
|
+
case "short": {
|
|
100
|
+
return input.dataType.type;
|
|
101
|
+
}
|
|
102
|
+
case "date": {
|
|
103
|
+
return "datetime";
|
|
104
|
+
}
|
|
105
|
+
case "timestamp": {
|
|
106
|
+
return "timestamp";
|
|
107
|
+
}
|
|
108
|
+
case "timeseries":
|
|
109
|
+
case "array":
|
|
110
|
+
case "marking":
|
|
111
|
+
throw new Error(`Type not supported for primaryKey: ${input.dataType.type}`);
|
|
112
|
+
default:
|
|
113
|
+
input.dataType;
|
|
114
|
+
throw new Error(`Unknown type encountered for primaryKey: ${input.dataType}`);
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
105
118
|
// src/wireObjectTypeFullMetadataToSdkObjectTypeDefinition.ts
|
|
106
119
|
function wireObjectTypeFullMetadataToSdkObjectTypeDefinition(objectTypeWithLink, v2) {
|
|
107
120
|
if (objectTypeWithLink.objectType.properties[objectTypeWithLink.objectType.primaryKey] === void 0) {
|
|
@@ -119,10 +132,14 @@ function wireObjectTypeFullMetadataToSdkObjectTypeDefinition(objectTypeWithLink,
|
|
|
119
132
|
targetType: linkType.objectTypeApiName
|
|
120
133
|
}];
|
|
121
134
|
})),
|
|
122
|
-
properties: Object.fromEntries(Object.entries(objectTypeWithLink.objectType.properties).map(([key, value]) => [key, wirePropertyV2ToSdkPropertyDefinition(value, !(v2 && objectTypeWithLink.objectType.primaryKey === key))]))
|
|
135
|
+
properties: Object.fromEntries(Object.entries(objectTypeWithLink.objectType.properties).map(([key, value]) => [key, wirePropertyV2ToSdkPropertyDefinition(value, !(v2 && objectTypeWithLink.objectType.primaryKey === key))])),
|
|
136
|
+
spts: objectTypeWithLink.sharedPropertyTypeMapping,
|
|
137
|
+
inverseSpts: objectTypeWithLink.sharedPropertyTypeMapping ? Object.fromEntries(Object.entries(objectTypeWithLink.sharedPropertyTypeMapping).map(([k, v]) => [v, k])) : void 0,
|
|
138
|
+
implements: objectTypeWithLink.implementsInterfaces
|
|
123
139
|
};
|
|
124
140
|
}
|
|
125
141
|
|
|
142
|
+
exports.__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition = __UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition;
|
|
126
143
|
exports.wireObjectTypeFullMetadataToSdkObjectTypeDefinition = wireObjectTypeFullMetadataToSdkObjectTypeDefinition;
|
|
127
144
|
exports.wirePropertyV2ToSdkPropertyDefinition = wirePropertyV2ToSdkPropertyDefinition;
|
|
128
145
|
//# sourceMappingURL=out.js.map
|
package/build/js/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/wirePropertyV2ToSdkPrimaryKeyTypeDefinition.ts","../../src/wirePropertyV2ToSdkPropertyDefinition.ts","../../src/wireObjectTypeFullMetadataToSdkObjectTypeDefinition.ts"],"names":[],"mappings":"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","sourcesContent":["/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport function wirePropertyV2ToSdkPrimaryKeyTypeDefinition(input) {\n switch (input.dataType.type) {\n case \"integer\":\n case \"double\":\n case \"string\":\n case \"boolean\":\n case \"attachment\":\n case \"byte\":\n case \"decimal\":\n case \"float\":\n case \"geopoint\":\n case \"geoshape\":\n case \"long\":\n case \"short\":\n {\n return input.dataType.type;\n }\n case \"date\":\n {\n return \"datetime\";\n }\n case \"timestamp\":\n {\n return \"timestamp\";\n }\n case \"timeseries\":\n case \"array\":\n case \"marking\":\n throw new Error(`Type not supported for primaryKey: ${input.dataType.type}`);\n default:\n const _ = input.dataType;\n throw new Error(`Unknown type encountered for primaryKey: ${input.dataType}`);\n }\n}","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport function wirePropertyV2ToSdkPropertyDefinition(input, isNullable = true) {\n switch (input.dataType.type) {\n case \"integer\":\n case \"string\":\n case \"byte\":\n case \"decimal\":\n case \"double\":\n case \"float\":\n case \"long\":\n case \"short\":\n case \"boolean\":\n case \"date\":\n case \"attachment\":\n case \"geopoint\":\n case \"geoshape\":\n case \"timestamp\":\n case \"timeseries\":\n case \"marking\":\n return {\n multiplicity: false,\n description: input.description,\n type: objectPropertyTypeToSdkPropertyDefinition(input.dataType),\n nullable: isNullable\n };\n case \"array\":\n {\n return {\n multiplicity: true,\n description: input.description,\n type: objectPropertyTypeToSdkPropertyDefinition(input.dataType),\n nullable: true\n };\n }\n default:\n const _ = input.dataType;\n throw new Error(`Unexpected data type ${JSON.stringify(input.dataType)}`);\n }\n}\nfunction objectPropertyTypeToSdkPropertyDefinition(propertyType) {\n switch (propertyType.type) {\n case \"integer\":\n case \"string\":\n case \"byte\":\n case \"decimal\":\n case \"double\":\n case \"float\":\n case \"long\":\n case \"short\":\n case \"boolean\":\n case \"attachment\":\n case \"geopoint\":\n case \"geoshape\":\n case \"timestamp\":\n case \"marking\":\n return propertyType.type;\n case \"date\":\n return \"datetime\";\n case \"array\":\n return objectPropertyTypeToSdkPropertyDefinition(propertyType.subType);\n case \"timeseries\":\n if (propertyType.itemType.type === \"string\") {\n return \"stringTimeseries\";\n }\n return \"numericTimeseries\";\n default:\n const _ = propertyType;\n throw new Error(`Unexecpected data type ${JSON.stringify(propertyType)}`);\n }\n}","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { wirePropertyV2ToSdkPrimaryKeyTypeDefinition } from \"./wirePropertyV2ToSdkPrimaryKeyTypeDefinition\";\nimport { wirePropertyV2ToSdkPropertyDefinition } from \"./wirePropertyV2ToSdkPropertyDefinition\";\nexport function wireObjectTypeFullMetadataToSdkObjectTypeDefinition(objectTypeWithLink, v2) {\n if (objectTypeWithLink.objectType.properties[objectTypeWithLink.objectType.primaryKey] === undefined) {\n throw new Error(`Primary key ${objectTypeWithLink.objectType.primaryKey} not found in ${objectTypeWithLink.objectType.apiName}`);\n }\n return {\n type: \"object\",\n apiName: objectTypeWithLink.objectType.apiName,\n description: objectTypeWithLink.objectType.description,\n primaryKeyApiName: objectTypeWithLink.objectType.primaryKey,\n primaryKeyType: wirePropertyV2ToSdkPrimaryKeyTypeDefinition(objectTypeWithLink.objectType.properties[objectTypeWithLink.objectType.primaryKey]),\n links: Object.fromEntries(objectTypeWithLink.linkTypes.map(linkType => {\n return [linkType.apiName, {\n multiplicity: linkType.cardinality === \"MANY\",\n targetType: linkType.objectTypeApiName\n }];\n })),\n properties: Object.fromEntries(Object.entries(objectTypeWithLink.objectType.properties).map(([key, value]) => [key, wirePropertyV2ToSdkPropertyDefinition(value, !(v2 && objectTypeWithLink.objectType.primaryKey === key))]))\n };\n}"]}
|
|
1
|
+
{"version":3,"sources":["../../src/wirePropertyV2ToSdkPropertyDefinition.ts","../../src/__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition.ts","../../src/wirePropertyV2ToSdkPrimaryKeyTypeDefinition.ts","../../src/wireObjectTypeFullMetadataToSdkObjectTypeDefinition.ts"],"names":[],"mappings":"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","sourcesContent":["/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport function wirePropertyV2ToSdkPropertyDefinition(input, isNullable = true) {\n switch (input.dataType.type) {\n case \"integer\":\n case \"string\":\n case \"byte\":\n case \"decimal\":\n case \"double\":\n case \"float\":\n case \"long\":\n case \"short\":\n case \"boolean\":\n case \"date\":\n case \"attachment\":\n case \"geopoint\":\n case \"geoshape\":\n case \"timestamp\":\n case \"timeseries\":\n case \"marking\":\n return {\n multiplicity: false,\n description: input.description,\n type: objectPropertyTypeToSdkPropertyDefinition(input.dataType),\n nullable: isNullable\n };\n case \"array\":\n {\n return {\n multiplicity: true,\n description: input.description,\n type: objectPropertyTypeToSdkPropertyDefinition(input.dataType),\n nullable: true\n };\n }\n default:\n const _ = input.dataType;\n throw new Error(`Unexpected data type ${JSON.stringify(input.dataType)}`);\n }\n}\nfunction objectPropertyTypeToSdkPropertyDefinition(propertyType) {\n switch (propertyType.type) {\n case \"integer\":\n case \"string\":\n case \"byte\":\n case \"decimal\":\n case \"double\":\n case \"float\":\n case \"long\":\n case \"short\":\n case \"boolean\":\n case \"attachment\":\n case \"geopoint\":\n case \"geoshape\":\n case \"timestamp\":\n case \"marking\":\n return propertyType.type;\n case \"date\":\n return \"datetime\";\n case \"array\":\n return objectPropertyTypeToSdkPropertyDefinition(propertyType.subType);\n case \"timeseries\":\n if (propertyType.itemType.type === \"string\") {\n return \"stringTimeseries\";\n }\n return \"numericTimeseries\";\n default:\n const _ = propertyType;\n throw new Error(`Unexecpected data type ${JSON.stringify(propertyType)}`);\n }\n}","/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { wirePropertyV2ToSdkPropertyDefinition } from \"./wirePropertyV2ToSdkPropertyDefinition\";\nexport function __UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition(interfaceType, v2) {\n return {\n type: \"interface\",\n apiName: interfaceType.apiName,\n description: interfaceType.description,\n properties: Object.fromEntries(Object.entries(interfaceType.properties).map(([key, value]) => {\n return [key, wirePropertyV2ToSdkPropertyDefinition(value, true)];\n })),\n links: {}\n };\n}","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport function wirePropertyV2ToSdkPrimaryKeyTypeDefinition(input) {\n switch (input.dataType.type) {\n case \"integer\":\n case \"double\":\n case \"string\":\n case \"boolean\":\n case \"attachment\":\n case \"byte\":\n case \"decimal\":\n case \"float\":\n case \"geopoint\":\n case \"geoshape\":\n case \"long\":\n case \"short\":\n {\n return input.dataType.type;\n }\n case \"date\":\n {\n return \"datetime\";\n }\n case \"timestamp\":\n {\n return \"timestamp\";\n }\n case \"timeseries\":\n case \"array\":\n case \"marking\":\n throw new Error(`Type not supported for primaryKey: ${input.dataType.type}`);\n default:\n const _ = input.dataType;\n throw new Error(`Unknown type encountered for primaryKey: ${input.dataType}`);\n }\n}","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { wirePropertyV2ToSdkPrimaryKeyTypeDefinition } from \"./wirePropertyV2ToSdkPrimaryKeyTypeDefinition\";\nimport { wirePropertyV2ToSdkPropertyDefinition } from \"./wirePropertyV2ToSdkPropertyDefinition\";\nexport function wireObjectTypeFullMetadataToSdkObjectTypeDefinition(objectTypeWithLink, v2) {\n if (objectTypeWithLink.objectType.properties[objectTypeWithLink.objectType.primaryKey] === undefined) {\n throw new Error(`Primary key ${objectTypeWithLink.objectType.primaryKey} not found in ${objectTypeWithLink.objectType.apiName}`);\n }\n return {\n type: \"object\",\n apiName: objectTypeWithLink.objectType.apiName,\n description: objectTypeWithLink.objectType.description,\n primaryKeyApiName: objectTypeWithLink.objectType.primaryKey,\n primaryKeyType: wirePropertyV2ToSdkPrimaryKeyTypeDefinition(objectTypeWithLink.objectType.properties[objectTypeWithLink.objectType.primaryKey]),\n links: Object.fromEntries(objectTypeWithLink.linkTypes.map(linkType => {\n return [linkType.apiName, {\n multiplicity: linkType.cardinality === \"MANY\",\n targetType: linkType.objectTypeApiName\n }];\n })),\n properties: Object.fromEntries(Object.entries(objectTypeWithLink.objectType.properties).map(([key, value]) => [key, wirePropertyV2ToSdkPropertyDefinition(value, !(v2 && objectTypeWithLink.objectType.primaryKey === key))])),\n spts: objectTypeWithLink.sharedPropertyTypeMapping,\n inverseSpts: objectTypeWithLink.sharedPropertyTypeMapping ? Object.fromEntries(Object.entries(objectTypeWithLink.sharedPropertyTypeMapping).map(([k, v]) => [v, k])) : undefined,\n implements: objectTypeWithLink.implementsInterfaces\n };\n}"]}
|
package/build/js/index.mjs
CHANGED
|
@@ -1,36 +1,3 @@
|
|
|
1
|
-
// src/wirePropertyV2ToSdkPrimaryKeyTypeDefinition.ts
|
|
2
|
-
function wirePropertyV2ToSdkPrimaryKeyTypeDefinition(input) {
|
|
3
|
-
switch (input.dataType.type) {
|
|
4
|
-
case "integer":
|
|
5
|
-
case "double":
|
|
6
|
-
case "string":
|
|
7
|
-
case "boolean":
|
|
8
|
-
case "attachment":
|
|
9
|
-
case "byte":
|
|
10
|
-
case "decimal":
|
|
11
|
-
case "float":
|
|
12
|
-
case "geopoint":
|
|
13
|
-
case "geoshape":
|
|
14
|
-
case "long":
|
|
15
|
-
case "short": {
|
|
16
|
-
return input.dataType.type;
|
|
17
|
-
}
|
|
18
|
-
case "date": {
|
|
19
|
-
return "datetime";
|
|
20
|
-
}
|
|
21
|
-
case "timestamp": {
|
|
22
|
-
return "timestamp";
|
|
23
|
-
}
|
|
24
|
-
case "timeseries":
|
|
25
|
-
case "array":
|
|
26
|
-
case "marking":
|
|
27
|
-
throw new Error(`Type not supported for primaryKey: ${input.dataType.type}`);
|
|
28
|
-
default:
|
|
29
|
-
input.dataType;
|
|
30
|
-
throw new Error(`Unknown type encountered for primaryKey: ${input.dataType}`);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
1
|
// src/wirePropertyV2ToSdkPropertyDefinition.ts
|
|
35
2
|
function wirePropertyV2ToSdkPropertyDefinition(input, isNullable = true) {
|
|
36
3
|
switch (input.dataType.type) {
|
|
@@ -100,6 +67,52 @@ function objectPropertyTypeToSdkPropertyDefinition(propertyType) {
|
|
|
100
67
|
}
|
|
101
68
|
}
|
|
102
69
|
|
|
70
|
+
// src/__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition.ts
|
|
71
|
+
function __UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition(interfaceType, v2) {
|
|
72
|
+
return {
|
|
73
|
+
type: "interface",
|
|
74
|
+
apiName: interfaceType.apiName,
|
|
75
|
+
description: interfaceType.description,
|
|
76
|
+
properties: Object.fromEntries(Object.entries(interfaceType.properties).map(([key, value]) => {
|
|
77
|
+
return [key, wirePropertyV2ToSdkPropertyDefinition(value, true)];
|
|
78
|
+
})),
|
|
79
|
+
links: {}
|
|
80
|
+
};
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
// src/wirePropertyV2ToSdkPrimaryKeyTypeDefinition.ts
|
|
84
|
+
function wirePropertyV2ToSdkPrimaryKeyTypeDefinition(input) {
|
|
85
|
+
switch (input.dataType.type) {
|
|
86
|
+
case "integer":
|
|
87
|
+
case "double":
|
|
88
|
+
case "string":
|
|
89
|
+
case "boolean":
|
|
90
|
+
case "attachment":
|
|
91
|
+
case "byte":
|
|
92
|
+
case "decimal":
|
|
93
|
+
case "float":
|
|
94
|
+
case "geopoint":
|
|
95
|
+
case "geoshape":
|
|
96
|
+
case "long":
|
|
97
|
+
case "short": {
|
|
98
|
+
return input.dataType.type;
|
|
99
|
+
}
|
|
100
|
+
case "date": {
|
|
101
|
+
return "datetime";
|
|
102
|
+
}
|
|
103
|
+
case "timestamp": {
|
|
104
|
+
return "timestamp";
|
|
105
|
+
}
|
|
106
|
+
case "timeseries":
|
|
107
|
+
case "array":
|
|
108
|
+
case "marking":
|
|
109
|
+
throw new Error(`Type not supported for primaryKey: ${input.dataType.type}`);
|
|
110
|
+
default:
|
|
111
|
+
input.dataType;
|
|
112
|
+
throw new Error(`Unknown type encountered for primaryKey: ${input.dataType}`);
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
103
116
|
// src/wireObjectTypeFullMetadataToSdkObjectTypeDefinition.ts
|
|
104
117
|
function wireObjectTypeFullMetadataToSdkObjectTypeDefinition(objectTypeWithLink, v2) {
|
|
105
118
|
if (objectTypeWithLink.objectType.properties[objectTypeWithLink.objectType.primaryKey] === void 0) {
|
|
@@ -117,10 +130,13 @@ function wireObjectTypeFullMetadataToSdkObjectTypeDefinition(objectTypeWithLink,
|
|
|
117
130
|
targetType: linkType.objectTypeApiName
|
|
118
131
|
}];
|
|
119
132
|
})),
|
|
120
|
-
properties: Object.fromEntries(Object.entries(objectTypeWithLink.objectType.properties).map(([key, value]) => [key, wirePropertyV2ToSdkPropertyDefinition(value, !(v2 && objectTypeWithLink.objectType.primaryKey === key))]))
|
|
133
|
+
properties: Object.fromEntries(Object.entries(objectTypeWithLink.objectType.properties).map(([key, value]) => [key, wirePropertyV2ToSdkPropertyDefinition(value, !(v2 && objectTypeWithLink.objectType.primaryKey === key))])),
|
|
134
|
+
spts: objectTypeWithLink.sharedPropertyTypeMapping,
|
|
135
|
+
inverseSpts: objectTypeWithLink.sharedPropertyTypeMapping ? Object.fromEntries(Object.entries(objectTypeWithLink.sharedPropertyTypeMapping).map(([k, v]) => [v, k])) : void 0,
|
|
136
|
+
implements: objectTypeWithLink.implementsInterfaces
|
|
121
137
|
};
|
|
122
138
|
}
|
|
123
139
|
|
|
124
|
-
export { wireObjectTypeFullMetadataToSdkObjectTypeDefinition, wirePropertyV2ToSdkPropertyDefinition };
|
|
140
|
+
export { __UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition, wireObjectTypeFullMetadataToSdkObjectTypeDefinition, wirePropertyV2ToSdkPropertyDefinition };
|
|
125
141
|
//# sourceMappingURL=out.js.map
|
|
126
142
|
//# sourceMappingURL=index.mjs.map
|
package/build/js/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/wirePropertyV2ToSdkPrimaryKeyTypeDefinition.ts","../../src/wirePropertyV2ToSdkPropertyDefinition.ts","../../src/wireObjectTypeFullMetadataToSdkObjectTypeDefinition.ts"],"names":[],"mappings":"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","sourcesContent":["/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport function wirePropertyV2ToSdkPrimaryKeyTypeDefinition(input) {\n switch (input.dataType.type) {\n case \"integer\":\n case \"double\":\n case \"string\":\n case \"boolean\":\n case \"attachment\":\n case \"byte\":\n case \"decimal\":\n case \"float\":\n case \"geopoint\":\n case \"geoshape\":\n case \"long\":\n case \"short\":\n {\n return input.dataType.type;\n }\n case \"date\":\n {\n return \"datetime\";\n }\n case \"timestamp\":\n {\n return \"timestamp\";\n }\n case \"timeseries\":\n case \"array\":\n case \"marking\":\n throw new Error(`Type not supported for primaryKey: ${input.dataType.type}`);\n default:\n const _ = input.dataType;\n throw new Error(`Unknown type encountered for primaryKey: ${input.dataType}`);\n }\n}","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport function wirePropertyV2ToSdkPropertyDefinition(input, isNullable = true) {\n switch (input.dataType.type) {\n case \"integer\":\n case \"string\":\n case \"byte\":\n case \"decimal\":\n case \"double\":\n case \"float\":\n case \"long\":\n case \"short\":\n case \"boolean\":\n case \"date\":\n case \"attachment\":\n case \"geopoint\":\n case \"geoshape\":\n case \"timestamp\":\n case \"timeseries\":\n case \"marking\":\n return {\n multiplicity: false,\n description: input.description,\n type: objectPropertyTypeToSdkPropertyDefinition(input.dataType),\n nullable: isNullable\n };\n case \"array\":\n {\n return {\n multiplicity: true,\n description: input.description,\n type: objectPropertyTypeToSdkPropertyDefinition(input.dataType),\n nullable: true\n };\n }\n default:\n const _ = input.dataType;\n throw new Error(`Unexpected data type ${JSON.stringify(input.dataType)}`);\n }\n}\nfunction objectPropertyTypeToSdkPropertyDefinition(propertyType) {\n switch (propertyType.type) {\n case \"integer\":\n case \"string\":\n case \"byte\":\n case \"decimal\":\n case \"double\":\n case \"float\":\n case \"long\":\n case \"short\":\n case \"boolean\":\n case \"attachment\":\n case \"geopoint\":\n case \"geoshape\":\n case \"timestamp\":\n case \"marking\":\n return propertyType.type;\n case \"date\":\n return \"datetime\";\n case \"array\":\n return objectPropertyTypeToSdkPropertyDefinition(propertyType.subType);\n case \"timeseries\":\n if (propertyType.itemType.type === \"string\") {\n return \"stringTimeseries\";\n }\n return \"numericTimeseries\";\n default:\n const _ = propertyType;\n throw new Error(`Unexecpected data type ${JSON.stringify(propertyType)}`);\n }\n}","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { wirePropertyV2ToSdkPrimaryKeyTypeDefinition } from \"./wirePropertyV2ToSdkPrimaryKeyTypeDefinition\";\nimport { wirePropertyV2ToSdkPropertyDefinition } from \"./wirePropertyV2ToSdkPropertyDefinition\";\nexport function wireObjectTypeFullMetadataToSdkObjectTypeDefinition(objectTypeWithLink, v2) {\n if (objectTypeWithLink.objectType.properties[objectTypeWithLink.objectType.primaryKey] === undefined) {\n throw new Error(`Primary key ${objectTypeWithLink.objectType.primaryKey} not found in ${objectTypeWithLink.objectType.apiName}`);\n }\n return {\n type: \"object\",\n apiName: objectTypeWithLink.objectType.apiName,\n description: objectTypeWithLink.objectType.description,\n primaryKeyApiName: objectTypeWithLink.objectType.primaryKey,\n primaryKeyType: wirePropertyV2ToSdkPrimaryKeyTypeDefinition(objectTypeWithLink.objectType.properties[objectTypeWithLink.objectType.primaryKey]),\n links: Object.fromEntries(objectTypeWithLink.linkTypes.map(linkType => {\n return [linkType.apiName, {\n multiplicity: linkType.cardinality === \"MANY\",\n targetType: linkType.objectTypeApiName\n }];\n })),\n properties: Object.fromEntries(Object.entries(objectTypeWithLink.objectType.properties).map(([key, value]) => [key, wirePropertyV2ToSdkPropertyDefinition(value, !(v2 && objectTypeWithLink.objectType.primaryKey === key))]))\n };\n}"]}
|
|
1
|
+
{"version":3,"sources":["../../src/wirePropertyV2ToSdkPropertyDefinition.ts","../../src/__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition.ts","../../src/wirePropertyV2ToSdkPrimaryKeyTypeDefinition.ts","../../src/wireObjectTypeFullMetadataToSdkObjectTypeDefinition.ts"],"names":[],"mappings":"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","sourcesContent":["/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport function wirePropertyV2ToSdkPropertyDefinition(input, isNullable = true) {\n switch (input.dataType.type) {\n case \"integer\":\n case \"string\":\n case \"byte\":\n case \"decimal\":\n case \"double\":\n case \"float\":\n case \"long\":\n case \"short\":\n case \"boolean\":\n case \"date\":\n case \"attachment\":\n case \"geopoint\":\n case \"geoshape\":\n case \"timestamp\":\n case \"timeseries\":\n case \"marking\":\n return {\n multiplicity: false,\n description: input.description,\n type: objectPropertyTypeToSdkPropertyDefinition(input.dataType),\n nullable: isNullable\n };\n case \"array\":\n {\n return {\n multiplicity: true,\n description: input.description,\n type: objectPropertyTypeToSdkPropertyDefinition(input.dataType),\n nullable: true\n };\n }\n default:\n const _ = input.dataType;\n throw new Error(`Unexpected data type ${JSON.stringify(input.dataType)}`);\n }\n}\nfunction objectPropertyTypeToSdkPropertyDefinition(propertyType) {\n switch (propertyType.type) {\n case \"integer\":\n case \"string\":\n case \"byte\":\n case \"decimal\":\n case \"double\":\n case \"float\":\n case \"long\":\n case \"short\":\n case \"boolean\":\n case \"attachment\":\n case \"geopoint\":\n case \"geoshape\":\n case \"timestamp\":\n case \"marking\":\n return propertyType.type;\n case \"date\":\n return \"datetime\";\n case \"array\":\n return objectPropertyTypeToSdkPropertyDefinition(propertyType.subType);\n case \"timeseries\":\n if (propertyType.itemType.type === \"string\") {\n return \"stringTimeseries\";\n }\n return \"numericTimeseries\";\n default:\n const _ = propertyType;\n throw new Error(`Unexecpected data type ${JSON.stringify(propertyType)}`);\n }\n}","/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { wirePropertyV2ToSdkPropertyDefinition } from \"./wirePropertyV2ToSdkPropertyDefinition\";\nexport function __UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition(interfaceType, v2) {\n return {\n type: \"interface\",\n apiName: interfaceType.apiName,\n description: interfaceType.description,\n properties: Object.fromEntries(Object.entries(interfaceType.properties).map(([key, value]) => {\n return [key, wirePropertyV2ToSdkPropertyDefinition(value, true)];\n })),\n links: {}\n };\n}","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport function wirePropertyV2ToSdkPrimaryKeyTypeDefinition(input) {\n switch (input.dataType.type) {\n case \"integer\":\n case \"double\":\n case \"string\":\n case \"boolean\":\n case \"attachment\":\n case \"byte\":\n case \"decimal\":\n case \"float\":\n case \"geopoint\":\n case \"geoshape\":\n case \"long\":\n case \"short\":\n {\n return input.dataType.type;\n }\n case \"date\":\n {\n return \"datetime\";\n }\n case \"timestamp\":\n {\n return \"timestamp\";\n }\n case \"timeseries\":\n case \"array\":\n case \"marking\":\n throw new Error(`Type not supported for primaryKey: ${input.dataType.type}`);\n default:\n const _ = input.dataType;\n throw new Error(`Unknown type encountered for primaryKey: ${input.dataType}`);\n }\n}","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { wirePropertyV2ToSdkPrimaryKeyTypeDefinition } from \"./wirePropertyV2ToSdkPrimaryKeyTypeDefinition\";\nimport { wirePropertyV2ToSdkPropertyDefinition } from \"./wirePropertyV2ToSdkPropertyDefinition\";\nexport function wireObjectTypeFullMetadataToSdkObjectTypeDefinition(objectTypeWithLink, v2) {\n if (objectTypeWithLink.objectType.properties[objectTypeWithLink.objectType.primaryKey] === undefined) {\n throw new Error(`Primary key ${objectTypeWithLink.objectType.primaryKey} not found in ${objectTypeWithLink.objectType.apiName}`);\n }\n return {\n type: \"object\",\n apiName: objectTypeWithLink.objectType.apiName,\n description: objectTypeWithLink.objectType.description,\n primaryKeyApiName: objectTypeWithLink.objectType.primaryKey,\n primaryKeyType: wirePropertyV2ToSdkPrimaryKeyTypeDefinition(objectTypeWithLink.objectType.properties[objectTypeWithLink.objectType.primaryKey]),\n links: Object.fromEntries(objectTypeWithLink.linkTypes.map(linkType => {\n return [linkType.apiName, {\n multiplicity: linkType.cardinality === \"MANY\",\n targetType: linkType.objectTypeApiName\n }];\n })),\n properties: Object.fromEntries(Object.entries(objectTypeWithLink.objectType.properties).map(([key, value]) => [key, wirePropertyV2ToSdkPropertyDefinition(value, !(v2 && objectTypeWithLink.objectType.primaryKey === key))])),\n spts: objectTypeWithLink.sharedPropertyTypeMapping,\n inverseSpts: objectTypeWithLink.sharedPropertyTypeMapping ? Object.fromEntries(Object.entries(objectTypeWithLink.sharedPropertyTypeMapping).map(([k, v]) => [v, k])) : undefined,\n implements: objectTypeWithLink.implementsInterfaces\n };\n}"]}
|
package/build/types/index.d.ts
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
export { __UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition } from "./__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition";
|
|
1
2
|
export { wireObjectTypeFullMetadataToSdkObjectTypeDefinition } from "./wireObjectTypeFullMetadataToSdkObjectTypeDefinition";
|
|
2
3
|
export { wirePropertyV2ToSdkPropertyDefinition } from "./wirePropertyV2ToSdkPropertyDefinition";
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { WirePropertyTypes } from "@osdk/api";
|
|
2
2
|
import type { PropertyV2 } from "@osdk/gateway/types";
|
|
3
|
-
export declare function wirePropertyV2ToSdkPrimaryKeyTypeDefinition(input: PropertyV2):
|
|
3
|
+
export declare function wirePropertyV2ToSdkPrimaryKeyTypeDefinition(input: PropertyV2): WirePropertyTypes;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { ObjectTypePropertyDefinition } from "@osdk/api";
|
|
2
|
-
import type { PropertyV2 } from "@osdk/gateway/types";
|
|
3
|
-
export declare function wirePropertyV2ToSdkPropertyDefinition(input: PropertyV2, isNullable?: boolean): ObjectTypePropertyDefinition;
|
|
2
|
+
import type { PropertyV2, SharedPropertyType } from "@osdk/gateway/types";
|
|
3
|
+
export declare function wirePropertyV2ToSdkPropertyDefinition(input: PropertyV2 | SharedPropertyType, isNullable?: boolean): ObjectTypePropertyDefinition;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osdk/generator-converters",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"access": "public",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -21,12 +21,12 @@
|
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@osdk/api": "1.
|
|
25
|
-
"@osdk/gateway": "
|
|
24
|
+
"@osdk/api": "1.4.0",
|
|
25
|
+
"@osdk/gateway": "2.0.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"ts-expect": "^1.3.0",
|
|
29
|
-
"typescript": "^5.
|
|
29
|
+
"typescript": "^5.4.2",
|
|
30
30
|
"vitest": "^1.2.2"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|