@osdk/maker 0.12.0-beta.8 → 0.12.0-rc.23
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 +138 -0
- package/README.md +88 -62
- package/build/browser/api/defineAction.js +403 -106
- package/build/browser/api/defineAction.js.map +1 -1
- package/build/browser/api/defineLink.js +2 -2
- package/build/browser/api/defineLink.js.map +1 -1
- package/build/browser/api/defineObject.js +6 -2
- package/build/browser/api/defineObject.js.map +1 -1
- package/build/browser/api/defineOntology.js +80 -35
- package/build/browser/api/defineOntology.js.map +1 -1
- package/build/browser/api/defineSpt.js.map +1 -1
- package/build/browser/api/ontologyUtils.js +80 -0
- package/build/browser/api/ontologyUtils.js.map +1 -1
- package/build/browser/api/overall.test.js +4741 -2358
- package/build/browser/api/overall.test.js.map +1 -1
- package/build/browser/api/types.js +2 -0
- package/build/browser/api/types.js.map +1 -1
- package/build/browser/cli/main.js +2 -10
- package/build/browser/cli/main.js.map +1 -1
- package/build/browser/index.js +5 -4
- package/build/browser/index.js.map +1 -1
- package/build/cjs/index.cjs +575 -153
- package/build/cjs/index.cjs.map +1 -1
- package/build/cjs/index.d.cts +98 -20
- package/build/esm/api/defineAction.js +403 -106
- package/build/esm/api/defineAction.js.map +1 -1
- package/build/esm/api/defineLink.js +2 -2
- package/build/esm/api/defineLink.js.map +1 -1
- package/build/esm/api/defineObject.js +6 -2
- package/build/esm/api/defineObject.js.map +1 -1
- package/build/esm/api/defineOntology.js +80 -35
- package/build/esm/api/defineOntology.js.map +1 -1
- package/build/esm/api/defineSpt.js.map +1 -1
- package/build/esm/api/ontologyUtils.js +80 -0
- package/build/esm/api/ontologyUtils.js.map +1 -1
- package/build/esm/api/overall.test.js +4741 -2358
- package/build/esm/api/overall.test.js.map +1 -1
- package/build/esm/api/types.js +2 -0
- package/build/esm/api/types.js.map +1 -1
- package/build/esm/cli/main.js +2 -10
- package/build/esm/cli/main.js.map +1 -1
- package/build/esm/index.js +5 -4
- package/build/esm/index.js.map +1 -1
- package/build/types/api/defineAction.d.ts +7 -6
- package/build/types/api/defineAction.d.ts.map +1 -1
- package/build/types/api/defineObject.d.ts +2 -2
- package/build/types/api/defineObject.d.ts.map +1 -1
- package/build/types/api/defineOntology.d.ts +3 -2
- package/build/types/api/defineOntology.d.ts.map +1 -1
- package/build/types/api/defineSpt.d.ts +2 -2
- package/build/types/api/defineSpt.d.ts.map +1 -1
- package/build/types/api/ontologyUtils.d.ts +5 -2
- package/build/types/api/ontologyUtils.d.ts.map +1 -1
- package/build/types/api/types.d.ts +83 -12
- package/build/types/api/types.d.ts.map +1 -1
- package/build/types/cli/main.d.ts.map +1 -1
- package/build/types/index.d.ts +6 -5
- package/build/types/index.d.ts.map +1 -1
- package/package.json +4 -4
|
@@ -1 +1 @@
|
|
|
1
|
-
{"mappings":"
|
|
1
|
+
{"mappings":"eA0Be,SAAe,KAC5BA,kBACC","names":["args: string[]"],"sources":["../../../src/cli/main.ts"],"version":3,"file":"main.d.ts"}
|
package/build/types/index.d.ts
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
export { default } from "./cli/main.js";
|
|
2
2
|
export { addDependency } from "./api/addDependency.js";
|
|
3
|
-
export { defineAction, defineCreateInterfaceObjectAction, defineCreateObjectAction, defineDeleteObjectAction, defineModifyInterfaceObjectAction, defineModifyObjectAction } from "./api/defineAction.js";
|
|
3
|
+
export { defineAction, defineCreateInterfaceObjectAction, defineCreateObjectAction, defineCreateOrModifyObjectAction, defineDeleteObjectAction, defineModifyInterfaceObjectAction, defineModifyObjectAction } from "./api/defineAction.js";
|
|
4
4
|
export { importSharedPropertyType } from "./api/defineImportSpt.js";
|
|
5
5
|
export { defineInterface } from "./api/defineInterface.js";
|
|
6
6
|
export { defineInterfaceLinkConstraint } from "./api/defineInterfaceLinkConstraint.js";
|
|
7
7
|
export { defineLink } from "./api/defineLink.js";
|
|
8
|
-
export { defineObject } from "./api/defineObject.js";
|
|
9
|
-
export { defineOntology } from "./api/defineOntology.js";
|
|
8
|
+
export { convertToDisplayName, convertToPluralDisplayName, defineObject } from "./api/defineObject.js";
|
|
9
|
+
export { addNamespaceIfNone, defineOntology, dumpOntologyFullMetadata } from "./api/defineOntology.js";
|
|
10
10
|
export { defineSharedPropertyType } from "./api/defineSpt.js";
|
|
11
11
|
export { defineValueType } from "./api/defineValueType.js";
|
|
12
12
|
export { importOntologyEntity } from "./api/importOntologyEntity.js";
|
|
13
|
-
export
|
|
14
|
-
export {
|
|
13
|
+
export { convertType } from "./api/propertyConversionUtils.js";
|
|
14
|
+
export type { ActionParameterAllowedValues, ActionParameterConditionalOverride, ActionParameterConfiguration, ActionParameterValidation, ActionSection, ActionType, ConditionDefinition, CurrentTimeMappingValue, CurrentUserMappingValue, CustomMapping, InterfaceType, LinkType, MappingValue, ObjectPropertyType, ObjectType, PropertyTypeType, SectionConditionalOverride, SharedPropertyType, SubmissionMetadata, UuidMappingValue, ValueTypeDefinitionVersion } from "./api/types.js";
|
|
15
|
+
export { CREATE_OR_MODIFY_OBJECT_PARAMETER, MODIFY_OBJECT_PARAMETER, OntologyEntityTypeEnum } from "./api/types.js";
|
|
15
16
|
export { wrapWithProxy } from "./api/wrapWithProxy.js";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"mappings":"AAgBA,SAAS,eAA0B;AAEnC,SAAS,qBAAqB;AAC9B,SACE,cACA,mCACA,0BACA,0BACA,mCACA,gCACK;AACP,SAAS,gCAAgC;AACzC,SAAS,uBAAuB;AAChC,SAAS,qCAAqC;AAC9C,SAAS,kBAAkB;AAC3B,
|
|
1
|
+
{"mappings":"AAgBA,SAAS,eAA0B;AAEnC,SAAS,qBAAqB;AAC9B,SACE,cACA,mCACA,0BACA,kCACA,0BACA,mCACA,gCACK;AACP,SAAS,gCAAgC;AACzC,SAAS,uBAAuB;AAChC,SAAS,qCAAqC;AAC9C,SAAS,kBAAkB;AAC3B,SACE,sBACA,4BACA,oBACK;AACP,SACE,oBACA,gBACA,gCACK;AACP,SAAS,gCAAgC;AACzC,SAAS,uBAAuB;AAChC,SAAS,4BAA4B;AACrC,SAAS,mBAAmB;AAC5B,cACE,8BACA,oCACA,8BACA,2BACA,eACA,YACA,qBACA,yBACA,yBACA,eACA,eACA,UACA,cACA,oBACA,YACA,kBACA,4BACA,oBACA,oBACA,kBACA,kCACK;AACP,SACE,mCACA,yBACA,8BACK;AACP,SAAS,qBAAqB","names":[],"sources":["../../src/index.ts"],"version":3,"file":"index.d.ts"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osdk/maker",
|
|
3
|
-
"version": "0.12.0-
|
|
3
|
+
"version": "0.12.0-rc.23",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -33,17 +33,17 @@
|
|
|
33
33
|
"tiny-invariant": "^1.3.3",
|
|
34
34
|
"ts-node": "^10.9.2",
|
|
35
35
|
"yargs": "^17.7.2",
|
|
36
|
-
"@osdk/api": "~2.4.0-
|
|
36
|
+
"@osdk/api": "~2.4.0-rc.19"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@osdk/foundry.ontologies": "2.
|
|
39
|
+
"@osdk/foundry.ontologies": "2.25.0",
|
|
40
40
|
"@types/node": "^20.0.0",
|
|
41
41
|
"@types/yargs": "^17.0.32",
|
|
42
42
|
"typescript": "~5.5.4",
|
|
43
43
|
"vitest": "^3.0.5",
|
|
44
44
|
"@osdk/monorepo.api-extractor": "~0.3.0-beta.1",
|
|
45
45
|
"@osdk/monorepo.tsconfig": "~0.3.0-beta.1",
|
|
46
|
-
"@osdk/client.unstable": "~2.4.0-
|
|
46
|
+
"@osdk/client.unstable": "~2.4.0-rc.19"
|
|
47
47
|
},
|
|
48
48
|
"publishConfig": {
|
|
49
49
|
"access": "public"
|