@osdk/maker 0.9.1 → 0.9.3

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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @osdk/maker
2
2
 
3
+ ## 0.9.3
4
+
5
+ ### Patch Changes
6
+
7
+ - @osdk/api@2.1.3
8
+
9
+ ## 0.9.2
10
+
11
+ ### Patch Changes
12
+
13
+ - @osdk/api@2.1.2
14
+
3
15
  ## 0.9.1
4
16
 
5
17
  ### Patch Changes
@@ -26,7 +26,7 @@ import { defineOntology } from "../api/defineOntology.js";
26
26
  import { defineSharedPropertyType } from "../api/defineSpt.js";
27
27
  const apiNamespaceRegex = /^[a-z0-9-]+(\.[a-z0-9-]+)*\.$/;
28
28
  export default async function main(args = process.argv) {
29
- const commandLineOpts = await yargs(hideBin(args)).version("0.9.1" ?? "").wrap(Math.min(150, yargs().terminalWidth())).strict().help().options({
29
+ const commandLineOpts = await yargs(hideBin(args)).version("0.9.3" ?? "").wrap(Math.min(150, yargs().terminalWidth())).strict().help().options({
30
30
  input: {
31
31
  alias: "i",
32
32
  describe: "Input file",
@@ -507,7 +507,7 @@ function validateInterfaceImplProperty(spt, mappedObjectProp, object) {
507
507
  // src/cli/main.ts
508
508
  var apiNamespaceRegex = /^[a-z0-9-]+(\.[a-z0-9-]+)*\.$/;
509
509
  async function main(args = process.argv) {
510
- const commandLineOpts = await yargs__default.default(helpers.hideBin(args)).version("0.9.1").wrap(Math.min(150, yargs__default.default().terminalWidth())).strict().help().options({
510
+ const commandLineOpts = await yargs__default.default(helpers.hideBin(args)).version("0.9.3").wrap(Math.min(150, yargs__default.default().terminalWidth())).strict().help().options({
511
511
  input: {
512
512
  alias: "i",
513
513
  describe: "Input file",
@@ -26,7 +26,7 @@ import { defineOntology } from "../api/defineOntology.js";
26
26
  import { defineSharedPropertyType } from "../api/defineSpt.js";
27
27
  const apiNamespaceRegex = /^[a-z0-9-]+(\.[a-z0-9-]+)*\.$/;
28
28
  export default async function main(args = process.argv) {
29
- const commandLineOpts = await yargs(hideBin(args)).version("0.9.1" ?? "").wrap(Math.min(150, yargs().terminalWidth())).strict().help().options({
29
+ const commandLineOpts = await yargs(hideBin(args)).version("0.9.3" ?? "").wrap(Math.min(150, yargs().terminalWidth())).strict().help().options({
30
30
  input: {
31
31
  alias: "i",
32
32
  describe: "Input file",
@@ -0,0 +1,9 @@
1
+ import type { PropertyTypeType, SharedPropertyType } from "./types.js";
2
+ /**
3
+ * Defines a foreign shared property type you want to take as an input to your product. The typeHint field is used for OSDK generation
4
+ */
5
+ export declare function importSharedPropertyType(opts: {
6
+ apiName: string
7
+ packageName?: string
8
+ typeHint: PropertyTypeType
9
+ }): SharedPropertyType;
@@ -0,0 +1 @@
1
+ {"mappings":"AAkBA,cAAc,kBAAkB,0BAA0B,YAAa;;;;AAKvE,OAAO,iBAAS,yBACdA,MAAM;CACJ;CACA;CACA,UAAU;AACX,IACA","names":["opts: {\n apiName: string;\n packageName?: string;\n typeHint: PropertyTypeType;\n }"],"sources":["../../../src/api/defineImportSpt.ts"],"version":3,"file":"defineImportSpt.d.ts"}
@@ -0,0 +1,24 @@
1
+ import type { BlueprintIcon } from "./iconNames.js";
2
+ import type { InterfaceType, PropertyTypeType, SharedPropertyType } from "./types.js";
3
+ type SimplifiedInterfaceTypeStatus = {
4
+ type: "deprecated"
5
+ message: string
6
+ deadline: string
7
+ } | {
8
+ type: "active"
9
+ } | {
10
+ type: "experimental"
11
+ };
12
+ export declare function defineInterface(opts: {
13
+ apiName: string
14
+ displayName?: string
15
+ description?: string
16
+ icon?: {
17
+ locator: BlueprintIcon
18
+ color: string
19
+ }
20
+ status?: SimplifiedInterfaceTypeStatus
21
+ properties?: Record<string, SharedPropertyType | PropertyTypeType>
22
+ extends?: InterfaceType | InterfaceType[] | string | string[]
23
+ }): InterfaceType;
24
+ export {};
@@ -0,0 +1 @@
1
+ {"mappings":"AAmBA,cAAc,qBAAqB,gBAAiB;AACpD,cACE,eAEA,kBACA,0BACK,YAAa;KAEf,gCACD;CAAE,MAAM;CAAc;CAAiB;AAAkB,IACzD;CAAE,MAAM;AAAU,IAClB;CAAE,MAAM;AAAgB;AAE5B,OAAO,iBAAS,gBACdA,MAAM;CACJ;CACA;CACA;CACA,OAAO;EAAE,SAAS;EAAe;CAAe;CAChD,SAAS;CACT,aAAa,eAEX,qBAAqB;CAGvB,UAAU,gBAAgB;AAC3B,IACA","names":["opts: {\n apiName: string;\n displayName?: string;\n description?: string;\n icon?: { locator: BlueprintIcon; color: string };\n status?: SimplifiedInterfaceTypeStatus;\n properties?: Record<\n string,\n SharedPropertyType | PropertyTypeType\n >;\n\n extends?: InterfaceType | InterfaceType[] | string | string[];\n }"],"sources":["../../../src/api/defineInterface.ts"],"version":3,"file":"defineInterface.d.ts"}
@@ -0,0 +1,22 @@
1
+ import type { InterfaceType } from "./types.js";
2
+ type ApiNameOrInterfaceType = string | InterfaceType;
3
+ type Many = {
4
+ apiName: string
5
+ from: InterfaceType
6
+ toMany: ApiNameOrInterfaceType
7
+ toOne?: never
8
+ displayName?: string
9
+ description?: string
10
+ required?: boolean
11
+ };
12
+ type One = {
13
+ apiName: string
14
+ from: InterfaceType
15
+ toOne: ApiNameOrInterfaceType
16
+ toMany?: never
17
+ displayName?: string
18
+ description?: string
19
+ required?: boolean
20
+ };
21
+ export declare function defineInterfaceLinkConstraint(linkDef: One | Many): void;
22
+ export {};
@@ -0,0 +1 @@
1
+ {"mappings":"AAkBA,cAAc,qBAAqB,YAAa;KAG3C,kCAAkC;KAElC,OAAO;CACV;CACA,MAAM;CACN,QAAQ;CACR;CACA;CACA;CACA;AACD;KACI,MAAM;CACT;CACA,MAAM;CACN,OAAO;CACP;CACA;CACA;CACA;AACD;AAED,OAAO,iBAAS,8BACdA,SAAS,MAAM","names":["linkDef: One | Many"],"sources":["../../../src/api/defineInterfaceLinkConstraint.ts"],"version":3,"file":"defineInterfaceLinkConstraint.d.ts"}
@@ -0,0 +1,2 @@
1
+ import type { ObjectType } from "./types.js";
2
+ export declare function defineObject(objectDef: ObjectType): ObjectType;
@@ -0,0 +1 @@
1
+ {"mappings":"AAkBA,cAAc,kBAAsC,YAAa;AAEjE,OAAO,iBAAS,aAAaA,WAAW,aAAa","names":["objectDef: ObjectType"],"sources":["../../../src/api/defineObject.ts"],"version":3,"file":"defineObject.d.ts"}
@@ -0,0 +1,9 @@
1
+ import type { OntologyIr, OntologyIrValueTypeBlockData } from "@osdk/client.unstable";
2
+ type OntologyAndValueTypeIrs = {
3
+ ontology: OntologyIr
4
+ valueType: OntologyIrValueTypeBlockData
5
+ };
6
+ export declare function defineOntology(ns: string, body: () => void | Promise<void>): Promise<OntologyAndValueTypeIrs>;
7
+ export declare function dumpOntologyFullMetadata(): OntologyIr;
8
+ export declare function dumpValueTypeWireType(): OntologyIrValueTypeBlockData;
9
+ export {};
@@ -0,0 +1 @@
1
+ {"mappings":"AAgCA,cACE,YAUA,oCAGK,uBAAwB;KAgB1B,0BAA0B;CAC7B,UAAU;CACV,WAAW;AACZ;AAED,OAAO,iBAAe,eACpBA,YACAC,mBAAmB,gBAClB,QAAQ;AA2MX,OAAO,iBAAS,4BAA4B;AAI5C,OAAO,iBAAS,yBAAyB","names":["ns: string","body: () => void | Promise<void>"],"sources":["../../../src/api/defineOntology.ts"],"version":3,"file":"defineOntology.d.ts"}
@@ -0,0 +1,12 @@
1
+ import type { ApiNameValueTypeReference, SharedPropertyTypeGothamMapping } from "@osdk/client.unstable";
2
+ import type { PropertyTypeType, SharedPropertyType } from "./types.js";
3
+ export declare function defineSharedPropertyType(opts: {
4
+ apiName: string
5
+ type: PropertyTypeType
6
+ array?: boolean
7
+ description?: string
8
+ displayName?: string
9
+ valueType?: ApiNameValueTypeReference
10
+ typeClasses?: SharedPropertyType["typeClasses"]
11
+ gothamMapping?: SharedPropertyTypeGothamMapping
12
+ }): SharedPropertyType;
@@ -0,0 +1 @@
1
+ {"mappings":"AAgBA,cACE,2BACA,uCACK,uBAAwB;AAG/B,cAAc,kBAAkB,0BAA0B,YAAa;AAOvE,OAAO,iBAAS,yBACdA,MAAM;CACJ;CACA,MAAM;CACN;CACA;CACA;CACA,YAAY;CACZ,cAAc,mBAAmB;CACjC,gBAAgB;AACjB,IACA","names":["opts: {\n apiName: string;\n type: PropertyTypeType;\n array?: boolean;\n description?: string;\n displayName?: string;\n valueType?: ApiNameValueTypeReference;\n typeClasses?: SharedPropertyType[\"typeClasses\"];\n gothamMapping?: SharedPropertyTypeGothamMapping;\n }"],"sources":["../../../src/api/defineSpt.ts"],"version":3,"file":"defineSpt.d.ts"}
@@ -0,0 +1,14 @@
1
+ import type { ValueTypeDefinitionVersion, ValueTypeType } from "./types.js";
2
+ type NewValueTypeDefinitionBacking = { [Type in ValueTypeType as Type["type"]] : {
3
+ type: Type["value"]
4
+ constraints?: Type["constraints"]
5
+ } };
6
+ type NewValueTypeDefinition = NewValueTypeDefinitionBacking[keyof NewValueTypeDefinitionBacking];
7
+ export declare function defineValueType(opts: {
8
+ apiName: string
9
+ displayName: string
10
+ description?: string
11
+ type: NewValueTypeDefinition
12
+ version: string
13
+ }): ValueTypeDefinitionVersion;
14
+ export {};
@@ -0,0 +1 @@
1
+ {"mappings":"AAyBA,cAAc,4BAA4B,qBAAqB,YAAa;KAiCvE,mCACF,QAAQ,iBAAiB,KAAK,WAAU;CACvC,MAAM,KAAK;CACX,cAAc,KAAK;AACpB;KAEE,yBACH,oCAAoC;AA+CtC,OAAO,iBAAS,gBACdA,MAAM;CACJ;CACA;CACA;CACA,MAAM;CACN;AACD,IACA","names":["opts: {\n apiName: string;\n displayName: string;\n description?: string;\n type: NewValueTypeDefinition;\n version: string;\n }"],"sources":["../../../src/api/defineValueType.ts"],"version":3,"file":"defineValueType.d.ts"}
@@ -0,0 +1,2 @@
1
+ export type BlueprintIcon = "add-clip" | "add-column-left" | "add-column-right" | "add-location" | "add-row-bottom" | "add-row-top" | "add-to-artifact" | "add-to-folder" | "add" | "aimpoints-target" | "airplane" | "align-center" | "align-justify" | "align-left" | "align-right" | "alignment-bottom" | "alignment-horizontal-center" | "alignment-left" | "alignment-right" | "alignment-top" | "alignment-vertical-center" | "ammunition" | "anchor" | "annotation" | "antenna" | "app-header" | "application" | "applications" | "archive" | "area-of-interest" | "array-boolean" | "array-date" | "array-floating-point" | "array-numeric" | "array-string" | "array-timestamp" | "array" | "arrow-bottom-left" | "arrow-bottom-right" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-top-left" | "arrow-top-right" | "arrow-up" | "arrows-horizontal" | "arrows-vertical" | "asterisk" | "at" | "automatic-updates" | "axle" | "backlink" | "backward-ten" | "badge" | "ban-circle" | "bank-account" | "barcode" | "binary-number" | "blank" | "blocked-person" | "bold" | "book" | "bookmark" | "box" | "briefcase" | "bring-data" | "bring-forward" | "bug" | "buggy" | "build" | "bullseye" | "calculator" | "calendar" | "camera" | "caret-down" | "caret-left" | "caret-right" | "caret-up" | "cargo-ship" | "cell-tower" | "changes" | "chart" | "chat" | "chevron-backward" | "chevron-down" | "chevron-forward" | "chevron-left" | "chevron-right" | "chevron-up" | "circle-arrow-down" | "circle-arrow-left" | "circle-arrow-right" | "circle-arrow-up" | "circle" | "citation" | "clean" | "clip" | "clipboard-file" | "clipboard" | "cloud-download" | "cloud-server" | "cloud-tick" | "cloud-upload" | "cloud" | "code-block" | "code" | "cog" | "collapse-all" | "color-fill" | "column-layout" | "comment" | "comparison" | "compass" | "compressed" | "confirm" | "console" | "contrast" | "control" | "credit-card" | "crop" | "cross-circle" | "cross" | "crown" | "css-style" | "cube-add" | "cube-remove" | "cube" | "curly-braces" | "curved-range-chart" | "cut" | "cycle" | "dashboard" | "data-connection" | "data-lineage" | "data-search" | "data-sync" | "database" | "delete" | "delta" | "derive-column" | "desktop" | "detection" | "diagnosis" | "diagram-tree" | "direction-left" | "direction-right" | "disable" | "divide" | "document-open" | "document-share" | "document" | "dollar" | "dot" | "double-caret-horizontal" | "double-caret-vertical" | "double-chevron-down" | "double-chevron-left" | "double-chevron-right" | "double-chevron-up" | "doughnut-chart" | "download" | "drag-handle-horizontal" | "drag-handle-vertical" | "draw" | "drawer-left-filled" | "drawer-left" | "drawer-right-filled" | "drawer-right" | "drive-time" | "duplicate" | "edit" | "eject" | "emoji" | "endnote" | "endorsed" | "envelope" | "equals" | "eraser" | "error" | "euro" | "excavator" | "exchange" | "exclude-row" | "expand-all" | "explain" | "export" | "eye-off" | "eye-on" | "eye-open" | "fast-backward" | "fast-forward" | "feed-subscribed" | "feed" | "film" | "filter-keep" | "filter-list" | "filter-open" | "filter-remove" | "filter" | "flag" | "flame" | "flash" | "floating-point" | "floppy-disk" | "flow-branch" | "flow-end" | "flow-linear" | "flow-review-branch" | "flow-review" | "flows" | "folder-close" | "folder-new" | "folder-open" | "folder-shared-open" | "folder-shared" | "follower" | "following" | "font" | "fork" | "form" | "forward-ten" | "fuel" | "full-circle" | "full-stacked-chart" | "fullscreen" | "function" | "gantt-chart" | "generate" | "geofence" | "geolocation" | "geosearch" | "geotime" | "git-branch" | "git-commit" | "git-merge" | "git-new-branch" | "git-pull" | "git-push" | "git-repo" | "glass" | "globe-network" | "globe" | "graph-remove" | "graph" | "greater-than-or-equal-to" | "greater-than" | "grid-view" | "grid" | "group-item" | "group-objects" | "grouped-bar-chart" | "hand-down" | "hand-left" | "hand-right" | "hand-up" | "hand" | "hat" | "header-one" | "header-three" | "header-two" | "header" | "headset" | "heart-broken" | "heart" | "heat-grid" | "heatmap" | "helicopter" | "help" | "helper-management" | "high-priority" | "high-voltage-pole" | "highlight" | "history" | "home" | "horizontal-bar-chart-asc" | "horizontal-bar-chart-desc" | "horizontal-bar-chart" | "horizontal-distribution" | "horizontal-inbetween" | "hurricane" | "id-number" | "image-rotate-left" | "image-rotate-right" | "import" | "inbox-filtered" | "inbox-geo" | "inbox-search" | "inbox-update" | "inbox" | "info-sign" | "inheritance" | "inherited-group" | "inner-join" | "input" | "insert" | "intelligence" | "intersection" | "ip-address" | "issue-closed" | "issue-new" | "issue" | "italic" | "join-table" | "key-backspace" | "key-command" | "key-control" | "key-delete" | "key-enter" | "key-escape" | "key-option" | "key-shift" | "key-tab" | "key" | "known-vehicle" | "lab-test" | "label" | "layer-outline" | "layer" | "layers" | "layout-auto" | "layout-balloon" | "layout-bottom-row-three-tiles" | "layout-bottom-row-two-tiles" | "layout-circle" | "layout-grid" | "layout-group-by" | "layout-hierarchy" | "layout-left-column-three-tiles" | "layout-left-column-two-tiles" | "layout-linear" | "layout-right-column-three-tiles" | "layout-right-column-two-tiles" | "layout-skew-grid" | "layout-sorted-clusters" | "layout-three-columns" | "layout-three-rows" | "layout-top-row-three-tiles" | "layout-top-row-two-tiles" | "layout-two-columns" | "layout-two-rows" | "layout" | "learning" | "left-join" | "lengthen-text" | "less-than-or-equal-to" | "less-than" | "lifesaver" | "lightbulb" | "lightning" | "link" | "list-columns" | "list-detail-view" | "list" | "locate" | "lock" | "locomotive" | "log-in" | "log-out" | "low-voltage-pole" | "manual" | "manually-entered-data" | "many-to-many" | "many-to-one" | "map-create" | "map-marker" | "map" | "maximize" | "media" | "menu-closed" | "menu-open" | "menu" | "merge-columns" | "merge-links" | "microphone" | "minimize" | "minus" | "mobile-phone" | "mobile-video" | "modal-filled" | "modal" | "model" | "moon" | "more" | "mountain" | "move" | "mugshot" | "multi-select" | "music" | "nest" | "new-drawing" | "new-grid-item" | "new-layer" | "new-layers" | "new-link" | "new-object" | "new-person" | "new-prescription" | "new-shield" | "new-text-box" | "ninja" | "not-equal-to" | "notifications-snooze" | "notifications-updated" | "notifications" | "numbered-list" | "numerical" | "office" | "offline" | "oil-field" | "one-column" | "one-to-many" | "one-to-one" | "open-application" | "outdated" | "output" | "page-layout" | "panel-stats" | "panel-table" | "paperclip" | "paragraph" | "paste-variable" | "path-search" | "path" | "pause" | "people" | "percentage" | "person" | "phone-call" | "phone-forward" | "phone" | "pie-chart" | "pin" | "pivot-table" | "pivot" | "play" | "playbook" | "plus" | "polygon-filter" | "power" | "predictive-analysis" | "prescription" | "presentation" | "print" | "projects" | "properties" | "property" | "publish-function" | "pulse" | "rain" | "random" | "range-ring" | "record" | "rect-height" | "rect-width" | "rectangle" | "redo" | "refresh" | "regex" | "regression-chart" | "remove-column-left" | "remove-column-right" | "remove-column" | "remove-row-bottom" | "remove-row-top" | "remove" | "repeat" | "reset" | "resolve" | "rig" | "right-join" | "ring" | "rocket-slant" | "rocket" | "rotate-document" | "rotate-page" | "route" | "satellite" | "saved" | "scatter-plot" | "search-around" | "search-template" | "search-text" | "search" | "segmented-control" | "select" | "selection" | "send-backward" | "send-message" | "send-to-graph" | "send-to-map" | "send-to" | "sensor" | "series-add" | "series-configuration" | "series-derived" | "series-filtered" | "series-search" | "settings" | "shapes" | "share" | "shared-filter" | "shield" | "ship" | "shop" | "shopping-cart" | "shorten-text" | "signal-search" | "sim-card" | "slash" | "small-cross" | "small-info-sign" | "small-minus" | "small-plus" | "small-square" | "small-tick" | "snowflake" | "soccer-ball" | "social-media" | "sort-alphabetical-desc" | "sort-alphabetical" | "sort-asc" | "sort-desc" | "sort-numerical-desc" | "sort-numerical" | "sort" | "spell-check" | "split-columns" | "sports-stadium" | "square" | "stacked-chart" | "stadium-geometry" | "star-empty" | "star" | "step-backward" | "step-chart" | "step-forward" | "stop" | "stopwatch" | "strikethrough" | "style" | "subscript" | "superscript" | "swap-horizontal" | "swap-vertical" | "switch" | "symbol-circle" | "symbol-cross" | "symbol-diamond" | "symbol-rectangle" | "symbol-square" | "symbol-triangle-down" | "symbol-triangle-up" | "syringe" | "table-sync" | "tag" | "take-action" | "tank" | "target" | "taxi" | "team" | "temperature" | "text-highlight" | "th-derived" | "th-disconnect" | "th-filtered" | "th-list" | "th" | "third-party" | "thumbs-down" | "thumbs-up" | "tick-circle" | "tick" | "time" | "timeline-area-chart" | "timeline-bar-chart" | "timeline-events" | "timeline-line-chart" | "tint" | "torch" | "tractor" | "train" | "translate" | "trash" | "tree" | "trending-down" | "trending-up" | "trophy" | "truck" | "two-columns" | "unarchive" | "underline" | "undo" | "ungroup-objects" | "unknown-vehicle" | "unlink" | "unlock" | "unpin" | "unresolve" | "updated" | "upload" | "user" | "variable" | "vector" | "vertical-bar-chart-asc" | "vertical-bar-chart-desc" | "vertical-distribution" | "vertical-inbetween" | "video" | "virus" | "volume-down" | "volume-off" | "volume-up" | "walk" | "warning-sign" | "waterfall-chart" | "waves" | "widget-button" | "widget-footer" | "widget-header" | "widget" | "wind" | "wrench" | "zoom-in" | "zoom-out" | "zoom-to-fit";
2
+ export type BlueprintIcons_16Key = "AddClip" | "AddColumnLeft" | "AddColumnRight" | "AddLocation" | "AddRowBottom" | "AddRowTop" | "AddToArtifact" | "AddToFolder" | "Add" | "AimpointsTarget" | "Airplane" | "AlignCenter" | "AlignJustify" | "AlignLeft" | "AlignRight" | "AlignmentBottom" | "AlignmentHorizontalCenter" | "AlignmentLeft" | "AlignmentRight" | "AlignmentTop" | "AlignmentVerticalCenter" | "Ammunition" | "Anchor" | "Annotation" | "Antenna" | "AppHeader" | "Application" | "Applications" | "Archive" | "AreaOfInterest" | "ArrayBoolean" | "ArrayDate" | "ArrayFloatingPoint" | "ArrayNumeric" | "ArrayString" | "ArrayTimestamp" | "Array" | "ArrowBottomLeft" | "ArrowBottomRight" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowTopLeft" | "ArrowTopRight" | "ArrowUp" | "ArrowsHorizontal" | "ArrowsVertical" | "Asterisk" | "At" | "AutomaticUpdates" | "Axle" | "Backlink" | "BackwardTen" | "Badge" | "BanCircle" | "BankAccount" | "Barcode" | "BinaryNumber" | "Blank" | "BlockedPerson" | "Bold" | "Book" | "Bookmark" | "Box" | "Briefcase" | "BringData" | "BringForward" | "Bug" | "Buggy" | "Build" | "Bullseye" | "Calculator" | "Calendar" | "Camera" | "CaretDown" | "CaretLeft" | "CaretRight" | "CaretUp" | "CargoShip" | "CellTower" | "Changes" | "Chart" | "Chat" | "ChevronBackward" | "ChevronDown" | "ChevronForward" | "ChevronLeft" | "ChevronRight" | "ChevronUp" | "CircleArrowDown" | "CircleArrowLeft" | "CircleArrowRight" | "CircleArrowUp" | "Circle" | "Citation" | "Clean" | "Clip" | "ClipboardFile" | "Clipboard" | "CloudDownload" | "CloudServer" | "CloudTick" | "CloudUpload" | "Cloud" | "CodeBlock" | "Code" | "Cog" | "CollapseAll" | "ColorFill" | "ColumnLayout" | "Comment" | "Comparison" | "Compass" | "Compressed" | "Confirm" | "Console" | "Contrast" | "Control" | "CreditCard" | "Crop" | "CrossCircle" | "Cross" | "Crown" | "CssStyle" | "CubeAdd" | "CubeRemove" | "Cube" | "CurlyBraces" | "CurvedRangeChart" | "Cut" | "Cycle" | "Dashboard" | "DataConnection" | "DataLineage" | "DataSearch" | "DataSync" | "Database" | "Delete" | "Delta" | "DeriveColumn" | "Desktop" | "Detection" | "Diagnosis" | "DiagramTree" | "DirectionLeft" | "DirectionRight" | "Disable" | "Divide" | "DocumentOpen" | "DocumentShare" | "Document" | "Dollar" | "Dot" | "DoubleCaretHorizontal" | "DoubleCaretVertical" | "DoubleChevronDown" | "DoubleChevronLeft" | "DoubleChevronRight" | "DoubleChevronUp" | "DoughnutChart" | "Download" | "DragHandleHorizontal" | "DragHandleVertical" | "Draw" | "DrawerLeftFilled" | "DrawerLeft" | "DrawerRightFilled" | "DrawerRight" | "DriveTime" | "Duplicate" | "Edit" | "Eject" | "Emoji" | "Endnote" | "Endorsed" | "Envelope" | "Equals" | "Eraser" | "Error" | "Euro" | "Excavator" | "Exchange" | "ExcludeRow" | "ExpandAll" | "Explain" | "Export" | "EyeOff" | "EyeOn" | "EyeOpen" | "FastBackward" | "FastForward" | "FeedSubscribed" | "Feed" | "Film" | "FilterKeep" | "FilterList" | "FilterOpen" | "FilterRemove" | "Filter" | "Flag" | "Flame" | "Flash" | "FloatingPoint" | "FloppyDisk" | "FlowBranch" | "FlowEnd" | "FlowLinear" | "FlowReviewBranch" | "FlowReview" | "Flows" | "FolderClose" | "FolderNew" | "FolderOpen" | "FolderSharedOpen" | "FolderShared" | "Follower" | "Following" | "Font" | "Fork" | "Form" | "ForwardTen" | "Fuel" | "FullCircle" | "FullStackedChart" | "Fullscreen" | "Function" | "GanttChart" | "Generate" | "Geofence" | "Geolocation" | "Geosearch" | "Geotime" | "GitBranch" | "GitCommit" | "GitMerge" | "GitNewBranch" | "GitPull" | "GitPush" | "GitRepo" | "Glass" | "GlobeNetwork" | "Globe" | "GraphRemove" | "Graph" | "GreaterThanOrEqualTo" | "GreaterThan" | "GridView" | "Grid" | "GroupItem" | "GroupObjects" | "GroupedBarChart" | "HandDown" | "HandLeft" | "HandRight" | "HandUp" | "Hand" | "Hat" | "HeaderOne" | "HeaderThree" | "HeaderTwo" | "Header" | "Headset" | "HeartBroken" | "Heart" | "HeatGrid" | "Heatmap" | "Helicopter" | "Help" | "HelperManagement" | "HighPriority" | "HighVoltagePole" | "Highlight" | "History" | "Home" | "HorizontalBarChartAsc" | "HorizontalBarChartDesc" | "HorizontalBarChart" | "HorizontalDistribution" | "HorizontalInbetween" | "Hurricane" | "IdNumber" | "ImageRotateLeft" | "ImageRotateRight" | "Import" | "InboxFiltered" | "InboxGeo" | "InboxSearch" | "InboxUpdate" | "Inbox" | "InfoSign" | "Inheritance" | "InheritedGroup" | "InnerJoin" | "Input" | "Insert" | "Intelligence" | "Intersection" | "IpAddress" | "IssueClosed" | "IssueNew" | "Issue" | "Italic" | "JoinTable" | "KeyBackspace" | "KeyCommand" | "KeyControl" | "KeyDelete" | "KeyEnter" | "KeyEscape" | "KeyOption" | "KeyShift" | "KeyTab" | "Key" | "KnownVehicle" | "LabTest" | "Label" | "LayerOutline" | "Layer" | "Layers" | "LayoutAuto" | "LayoutBalloon" | "LayoutBottomRowThreeTiles" | "LayoutBottomRowTwoTiles" | "LayoutCircle" | "LayoutGrid" | "LayoutGroupBy" | "LayoutHierarchy" | "LayoutLeftColumnThreeTiles" | "LayoutLeftColumnTwoTiles" | "LayoutLinear" | "LayoutRightColumnThreeTiles" | "LayoutRightColumnTwoTiles" | "LayoutSkewGrid" | "LayoutSortedClusters" | "LayoutThreeColumns" | "LayoutThreeRows" | "LayoutTopRowThreeTiles" | "LayoutTopRowTwoTiles" | "LayoutTwoColumns" | "LayoutTwoRows" | "Layout" | "Learning" | "LeftJoin" | "LengthenText" | "LessThanOrEqualTo" | "LessThan" | "Lifesaver" | "Lightbulb" | "Lightning" | "Link" | "ListColumns" | "ListDetailView" | "List" | "Locate" | "Lock" | "Locomotive" | "LogIn" | "LogOut" | "LowVoltagePole" | "Manual" | "ManuallyEnteredData" | "ManyToMany" | "ManyToOne" | "MapCreate" | "MapMarker" | "Map" | "Maximize" | "Media" | "MenuClosed" | "MenuOpen" | "Menu" | "MergeColumns" | "MergeLinks" | "Microphone" | "Minimize" | "Minus" | "MobilePhone" | "MobileVideo" | "ModalFilled" | "Modal" | "Model" | "Moon" | "More" | "Mountain" | "Move" | "Mugshot" | "MultiSelect" | "Music" | "Nest" | "NewDrawing" | "NewGridItem" | "NewLayer" | "NewLayers" | "NewLink" | "NewObject" | "NewPerson" | "NewPrescription" | "NewShield" | "NewTextBox" | "Ninja" | "NotEqualTo" | "NotificationsSnooze" | "NotificationsUpdated" | "Notifications" | "NumberedList" | "Numerical" | "Office" | "Offline" | "OilField" | "OneColumn" | "OneToMany" | "OneToOne" | "OpenApplication" | "Outdated" | "Output" | "PageLayout" | "PanelStats" | "PanelTable" | "Paperclip" | "Paragraph" | "PasteVariable" | "PathSearch" | "Path" | "Pause" | "People" | "Percentage" | "Person" | "PhoneCall" | "PhoneForward" | "Phone" | "PieChart" | "Pin" | "PivotTable" | "Pivot" | "Play" | "Playbook" | "Plus" | "PolygonFilter" | "Power" | "PredictiveAnalysis" | "Prescription" | "Presentation" | "Print" | "Projects" | "Properties" | "Property" | "PublishFunction" | "Pulse" | "Rain" | "Random" | "RangeRing" | "Record" | "RectHeight" | "RectWidth" | "Rectangle" | "Redo" | "Refresh" | "Regex" | "RegressionChart" | "RemoveColumnLeft" | "RemoveColumnRight" | "RemoveColumn" | "RemoveRowBottom" | "RemoveRowTop" | "Remove" | "Repeat" | "Reset" | "Resolve" | "Rig" | "RightJoin" | "Ring" | "RocketSlant" | "Rocket" | "RotateDocument" | "RotatePage" | "Route" | "Satellite" | "Saved" | "ScatterPlot" | "SearchAround" | "SearchTemplate" | "SearchText" | "Search" | "SegmentedControl" | "Select" | "Selection" | "SendBackward" | "SendMessage" | "SendToGraph" | "SendToMap" | "SendTo" | "Sensor" | "SeriesAdd" | "SeriesConfiguration" | "SeriesDerived" | "SeriesFiltered" | "SeriesSearch" | "Settings" | "Shapes" | "Share" | "SharedFilter" | "Shield" | "Ship" | "Shop" | "ShoppingCart" | "ShortenText" | "SignalSearch" | "SimCard" | "Slash" | "SmallCross" | "SmallInfoSign" | "SmallMinus" | "SmallPlus" | "SmallSquare" | "SmallTick" | "Snowflake" | "SoccerBall" | "SocialMedia" | "SortAlphabeticalDesc" | "SortAlphabetical" | "SortAsc" | "SortDesc" | "SortNumericalDesc" | "SortNumerical" | "Sort" | "SpellCheck" | "SplitColumns" | "SportsStadium" | "Square" | "StackedChart" | "StadiumGeometry" | "StarEmpty" | "Star" | "StepBackward" | "StepChart" | "StepForward" | "Stop" | "Stopwatch" | "Strikethrough" | "Style" | "Subscript" | "Superscript" | "SwapHorizontal" | "SwapVertical" | "Switch" | "SymbolCircle" | "SymbolCross" | "SymbolDiamond" | "SymbolRectangle" | "SymbolSquare" | "SymbolTriangleDown" | "SymbolTriangleUp" | "Syringe" | "TableSync" | "Tag" | "TakeAction" | "Tank" | "Target" | "Taxi" | "Team" | "Temperature" | "TextHighlight" | "ThDerived" | "ThDisconnect" | "ThFiltered" | "ThList" | "Th" | "ThirdParty" | "ThumbsDown" | "ThumbsUp" | "TickCircle" | "Tick" | "Time" | "TimelineAreaChart" | "TimelineBarChart" | "TimelineEvents" | "TimelineLineChart" | "Tint" | "Torch" | "Tractor" | "Train" | "Translate" | "Trash" | "Tree" | "TrendingDown" | "TrendingUp" | "Trophy" | "Truck" | "TwoColumns" | "Unarchive" | "Underline" | "Undo" | "UngroupObjects" | "UnknownVehicle" | "Unlink" | "Unlock" | "Unpin" | "Unresolve" | "Updated" | "Upload" | "User" | "Variable" | "Vector" | "VerticalBarChartAsc" | "VerticalBarChartDesc" | "VerticalDistribution" | "VerticalInbetween" | "Video" | "Virus" | "VolumeDown" | "VolumeOff" | "VolumeUp" | "Walk" | "WarningSign" | "WaterfallChart" | "Waves" | "WidgetButton" | "WidgetFooter" | "WidgetHeader" | "Widget" | "Wind" | "Wrench" | "ZoomIn" | "ZoomOut" | "ZoomToFit";
@@ -0,0 +1 @@
1
+ {"mappings":"AAiBA,YAAY,gBACR,aACA,oBACA,qBACA,iBACA,mBACA,gBACA,oBACA,kBACA,QACA,qBACA,aACA,iBACA,kBACA,eACA,gBACA,qBACA,gCACA,mBACA,oBACA,kBACA,8BACA,eACA,WACA,eACA,YACA,eACA,gBACA,iBACA,YACA,qBACA,kBACA,eACA,yBACA,kBACA,iBACA,oBACA,UACA,sBACA,uBACA,eACA,eACA,gBACA,mBACA,oBACA,aACA,sBACA,oBACA,aACA,OACA,sBACA,SACA,aACA,iBACA,UACA,eACA,iBACA,YACA,kBACA,UACA,mBACA,SACA,SACA,aACA,QACA,cACA,eACA,kBACA,QACA,UACA,UACA,aACA,eACA,aACA,WACA,eACA,eACA,gBACA,aACA,eACA,eACA,YACA,UACA,SACA,qBACA,iBACA,oBACA,iBACA,kBACA,eACA,sBACA,sBACA,uBACA,oBACA,WACA,aACA,UACA,SACA,mBACA,cACA,mBACA,iBACA,eACA,iBACA,UACA,eACA,SACA,QACA,iBACA,eACA,kBACA,YACA,eACA,YACA,eACA,YACA,YACA,aACA,YACA,gBACA,SACA,iBACA,UACA,UACA,cACA,aACA,gBACA,SACA,iBACA,uBACA,QACA,UACA,cACA,oBACA,iBACA,gBACA,cACA,aACA,WACA,UACA,kBACA,YACA,cACA,cACA,iBACA,mBACA,oBACA,YACA,WACA,kBACA,mBACA,aACA,WACA,QACA,4BACA,0BACA,wBACA,wBACA,yBACA,sBACA,mBACA,aACA,2BACA,yBACA,SACA,uBACA,gBACA,wBACA,iBACA,eACA,cACA,SACA,UACA,UACA,YACA,aACA,aACA,WACA,WACA,UACA,SACA,cACA,aACA,gBACA,eACA,YACA,WACA,YACA,WACA,aACA,kBACA,iBACA,oBACA,SACA,SACA,gBACA,gBACA,gBACA,kBACA,WACA,SACA,UACA,UACA,mBACA,gBACA,gBACA,aACA,gBACA,uBACA,gBACA,UACA,iBACA,eACA,gBACA,uBACA,kBACA,aACA,cACA,SACA,SACA,SACA,gBACA,SACA,gBACA,uBACA,eACA,aACA,gBACA,aACA,aACA,gBACA,cACA,YACA,eACA,eACA,cACA,mBACA,aACA,aACA,aACA,UACA,kBACA,UACA,iBACA,UACA,6BACA,iBACA,cACA,SACA,eACA,kBACA,sBACA,cACA,cACA,eACA,YACA,SACA,QACA,eACA,iBACA,eACA,WACA,YACA,iBACA,UACA,cACA,YACA,eACA,SACA,sBACA,kBACA,sBACA,cACA,YACA,SACA,6BACA,8BACA,yBACA,4BACA,yBACA,cACA,cACA,sBACA,uBACA,WACA,mBACA,cACA,iBACA,iBACA,UACA,cACA,gBACA,oBACA,eACA,UACA,WACA,iBACA,iBACA,eACA,iBACA,cACA,UACA,WACA,eACA,kBACA,gBACA,gBACA,eACA,cACA,eACA,eACA,cACA,YACA,QACA,kBACA,aACA,UACA,kBACA,UACA,WACA,gBACA,mBACA,kCACA,gCACA,kBACA,gBACA,oBACA,qBACA,mCACA,iCACA,kBACA,oCACA,kCACA,qBACA,2BACA,yBACA,sBACA,+BACA,6BACA,uBACA,oBACA,WACA,aACA,cACA,kBACA,0BACA,cACA,cACA,cACA,cACA,SACA,iBACA,qBACA,SACA,WACA,SACA,eACA,WACA,YACA,qBACA,WACA,0BACA,iBACA,gBACA,eACA,eACA,QACA,aACA,UACA,gBACA,cACA,SACA,kBACA,gBACA,eACA,aACA,UACA,iBACA,iBACA,iBACA,UACA,UACA,SACA,SACA,aACA,SACA,YACA,iBACA,UACA,SACA,gBACA,kBACA,cACA,eACA,aACA,eACA,eACA,qBACA,eACA,iBACA,UACA,iBACA,yBACA,0BACA,kBACA,kBACA,cACA,WACA,YACA,cACA,eACA,gBACA,eACA,qBACA,aACA,WACA,gBACA,gBACA,gBACA,cACA,cACA,mBACA,gBACA,SACA,UACA,WACA,eACA,WACA,eACA,kBACA,UACA,cACA,QACA,gBACA,UACA,SACA,aACA,SACA,mBACA,UACA,wBACA,iBACA,iBACA,UACA,aACA,eACA,aACA,qBACA,UACA,SACA,WACA,eACA,WACA,gBACA,eACA,cACA,SACA,YACA,UACA,qBACA,uBACA,wBACA,kBACA,sBACA,mBACA,WACA,WACA,UACA,YACA,QACA,eACA,SACA,iBACA,WACA,oBACA,gBACA,UACA,cACA,UACA,iBACA,kBACA,oBACA,gBACA,WACA,sBACA,WACA,cACA,kBACA,iBACA,kBACA,gBACA,YACA,WACA,eACA,yBACA,mBACA,oBACA,kBACA,aACA,WACA,UACA,kBACA,WACA,SACA,SACA,kBACA,iBACA,kBACA,aACA,UACA,gBACA,oBACA,gBACA,eACA,iBACA,eACA,cACA,gBACA,iBACA,2BACA,sBACA,aACA,cACA,wBACA,mBACA,SACA,gBACA,kBACA,mBACA,WACA,kBACA,qBACA,eACA,SACA,kBACA,eACA,iBACA,SACA,cACA,kBACA,UACA,cACA,gBACA,oBACA,kBACA,WACA,kBACA,iBACA,mBACA,qBACA,kBACA,yBACA,uBACA,YACA,eACA,QACA,gBACA,SACA,WACA,SACA,SACA,gBACA,mBACA,eACA,kBACA,gBACA,YACA,OACA,gBACA,gBACA,cACA,gBACA,SACA,SACA,wBACA,uBACA,oBACA,wBACA,SACA,UACA,YACA,UACA,cACA,UACA,SACA,kBACA,gBACA,WACA,UACA,gBACA,cACA,cACA,SACA,oBACA,oBACA,WACA,WACA,UACA,cACA,YACA,WACA,SACA,aACA,WACA,2BACA,4BACA,0BACA,uBACA,UACA,UACA,gBACA,eACA,cACA,SACA,iBACA,oBACA,UACA,kBACA,kBACA,kBACA,WACA,SACA,WACA,YACA,aACA;AAEJ,YAAY,uBACR,YACA,kBACA,mBACA,gBACA,iBACA,cACA,kBACA,gBACA,QACA,oBACA,aACA,gBACA,iBACA,cACA,eACA,oBACA,8BACA,kBACA,mBACA,iBACA,4BACA,eACA,WACA,eACA,YACA,cACA,gBACA,iBACA,YACA,mBACA,iBACA,cACA,uBACA,iBACA,gBACA,mBACA,UACA,oBACA,qBACA,cACA,cACA,eACA,iBACA,kBACA,YACA,qBACA,mBACA,aACA,OACA,qBACA,SACA,aACA,gBACA,UACA,cACA,gBACA,YACA,iBACA,UACA,kBACA,SACA,SACA,aACA,QACA,cACA,cACA,iBACA,QACA,UACA,UACA,aACA,eACA,aACA,WACA,cACA,cACA,eACA,YACA,cACA,cACA,YACA,UACA,SACA,oBACA,gBACA,mBACA,gBACA,iBACA,cACA,oBACA,oBACA,qBACA,kBACA,WACA,aACA,UACA,SACA,kBACA,cACA,kBACA,gBACA,cACA,gBACA,UACA,cACA,SACA,QACA,gBACA,cACA,iBACA,YACA,eACA,YACA,eACA,YACA,YACA,aACA,YACA,eACA,SACA,gBACA,UACA,UACA,aACA,YACA,eACA,SACA,gBACA,qBACA,QACA,UACA,cACA,mBACA,gBACA,eACA,aACA,aACA,WACA,UACA,iBACA,YACA,cACA,cACA,gBACA,kBACA,mBACA,YACA,WACA,iBACA,kBACA,aACA,WACA,QACA,0BACA,wBACA,sBACA,sBACA,uBACA,oBACA,kBACA,aACA,yBACA,uBACA,SACA,qBACA,eACA,sBACA,gBACA,cACA,cACA,SACA,UACA,UACA,YACA,aACA,aACA,WACA,WACA,UACA,SACA,cACA,aACA,eACA,cACA,YACA,WACA,WACA,UACA,YACA,iBACA,gBACA,mBACA,SACA,SACA,eACA,eACA,eACA,iBACA,WACA,SACA,UACA,UACA,kBACA,eACA,eACA,YACA,eACA,qBACA,eACA,UACA,gBACA,cACA,eACA,qBACA,iBACA,aACA,cACA,SACA,SACA,SACA,eACA,SACA,eACA,qBACA,eACA,aACA,eACA,aACA,aACA,gBACA,cACA,YACA,cACA,cACA,aACA,iBACA,YACA,YACA,YACA,UACA,iBACA,UACA,gBACA,UACA,yBACA,gBACA,aACA,SACA,cACA,iBACA,oBACA,aACA,aACA,cACA,WACA,SACA,QACA,cACA,gBACA,cACA,WACA,YACA,gBACA,UACA,aACA,YACA,eACA,SACA,qBACA,iBACA,oBACA,cACA,YACA,SACA,0BACA,2BACA,uBACA,2BACA,wBACA,cACA,aACA,oBACA,qBACA,WACA,kBACA,aACA,gBACA,gBACA,UACA,aACA,gBACA,mBACA,cACA,UACA,WACA,iBACA,iBACA,cACA,gBACA,aACA,UACA,WACA,cACA,iBACA,eACA,eACA,cACA,aACA,cACA,cACA,aACA,WACA,QACA,iBACA,YACA,UACA,iBACA,UACA,WACA,eACA,kBACA,8BACA,4BACA,iBACA,eACA,kBACA,oBACA,+BACA,6BACA,iBACA,gCACA,8BACA,mBACA,yBACA,uBACA,oBACA,2BACA,yBACA,qBACA,kBACA,WACA,aACA,aACA,iBACA,sBACA,aACA,cACA,cACA,cACA,SACA,gBACA,mBACA,SACA,WACA,SACA,eACA,UACA,WACA,mBACA,WACA,wBACA,eACA,cACA,cACA,cACA,QACA,aACA,UACA,eACA,aACA,SACA,iBACA,eACA,eACA,aACA,UACA,gBACA,gBACA,gBACA,UACA,UACA,SACA,SACA,aACA,SACA,YACA,gBACA,UACA,SACA,eACA,gBACA,aACA,cACA,YACA,cACA,cACA,oBACA,cACA,eACA,UACA,eACA,wBACA,yBACA,kBACA,iBACA,cACA,WACA,YACA,aACA,cACA,cACA,aACA,oBACA,aACA,WACA,eACA,eACA,eACA,cACA,cACA,kBACA,eACA,SACA,UACA,WACA,eACA,WACA,cACA,iBACA,UACA,aACA,QACA,eACA,UACA,SACA,aACA,SACA,kBACA,UACA,uBACA,iBACA,iBACA,UACA,aACA,eACA,aACA,oBACA,UACA,SACA,WACA,cACA,WACA,eACA,cACA,cACA,SACA,YACA,UACA,oBACA,qBACA,sBACA,iBACA,oBACA,iBACA,WACA,WACA,UACA,YACA,QACA,cACA,SACA,gBACA,WACA,mBACA,eACA,UACA,cACA,UACA,gBACA,iBACA,mBACA,eACA,WACA,qBACA,WACA,cACA,iBACA,gBACA,gBACA,cACA,WACA,WACA,cACA,wBACA,kBACA,mBACA,iBACA,aACA,WACA,UACA,iBACA,WACA,SACA,SACA,iBACA,gBACA,iBACA,YACA,UACA,eACA,kBACA,eACA,cACA,gBACA,cACA,cACA,eACA,gBACA,yBACA,qBACA,YACA,aACA,sBACA,kBACA,SACA,eACA,iBACA,kBACA,WACA,iBACA,oBACA,cACA,SACA,iBACA,cACA,gBACA,SACA,cACA,kBACA,UACA,cACA,gBACA,mBACA,iBACA,WACA,iBACA,gBACA,kBACA,oBACA,iBACA,uBACA,qBACA,YACA,cACA,QACA,eACA,SACA,WACA,SACA,SACA,gBACA,kBACA,cACA,iBACA,eACA,WACA,OACA,eACA,eACA,aACA,eACA,SACA,SACA,sBACA,qBACA,mBACA,sBACA,SACA,UACA,YACA,UACA,cACA,UACA,SACA,iBACA,eACA,WACA,UACA,eACA,cACA,cACA,SACA,mBACA,mBACA,WACA,WACA,UACA,cACA,YACA,WACA,SACA,aACA,WACA,wBACA,yBACA,yBACA,sBACA,UACA,UACA,eACA,cACA,aACA,SACA,gBACA,mBACA,UACA,iBACA,iBACA,iBACA,WACA,SACA,WACA,WACA,YACA","names":[],"sources":["../../../src/api/iconNames.ts"],"version":3,"file":"iconNames.d.ts"}
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ {"mappings":"","names":[],"sources":["../../../src/api/overall.test.ts"],"version":3,"file":"overall.test.d.ts"}
@@ -0,0 +1,272 @@
1
+ import type { ApiNameValueTypeReference, BaseType, DataConstraint, ExampleValue, FailureMessage, ImportedTypes, InterfaceTypeStatus, InterfaceTypeStatus_active, InterfaceTypeStatus_deprecated, InterfaceTypeStatus_experimental, OntologyIrInterfaceType, OntologyIrObjectType, OntologyIrPropertyType, SharedPropertyTypeGothamMapping, StructFieldType, ValueTypeApiName, ValueTypeDataConstraint, ValueTypeDisplayMetadata, ValueTypeStatus, ValueTypeVersion, Visibility } from "@osdk/client.unstable";
2
+ import type { OntologyFullMetadata } from "@osdk/foundry.ontologies";
3
+ import type { BlueprintIcon } from "./iconNames.js";
4
+ export interface Ontology extends Omit<OntologyFullMetadata, "ontology" | "sharedPropertyTypes" | "interfaceTypes" | "objectTypes"> {
5
+ interfaceTypes: Record<string, InterfaceType>;
6
+ sharedPropertyTypes: Record<string, SharedPropertyType>;
7
+ objectTypes: Record<string, ObjectType>;
8
+ valueTypes: Record<string, ValueTypeDefinitionVersion[]>;
9
+ importedTypes: ImportedTypes;
10
+ }
11
+ export type { InterfaceTypeStatus, InterfaceTypeStatus_active, InterfaceTypeStatus_deprecated, InterfaceTypeStatus_experimental };
12
+ export type RequiredFields<
13
+ T,
14
+ K extends keyof T
15
+ > = T & Required<Pick<T, K>>;
16
+ export interface ObjectTypeInner extends Omit<OntologyIrObjectType, "titlePropertyTypeRid" | "propertyTypes" | "allImplementsInterfaces" | "implementsInterfaces2" | "displayMetadata"> {
17
+ properties: Array<ObjectPropertyType>;
18
+ titlePropertyApiName: string;
19
+ implementsInterfaces: Array<InterfaceImplementation>;
20
+ description: string | undefined;
21
+ icon: {
22
+ locator: BlueprintIcon
23
+ color: string
24
+ } | undefined;
25
+ displayName: string;
26
+ pluralDisplayName: string;
27
+ visibility: Visibility;
28
+ editsEnabled: boolean;
29
+ }
30
+ export type InterfaceImplementation = {
31
+ implements: InterfaceType
32
+ propertyMapping: {
33
+ interfaceProperty: string
34
+ mapsTo: string
35
+ }[]
36
+ };
37
+ export type ObjectType = RequiredFields<Partial<ObjectTypeInner>, "apiName" | "primaryKeys" | "displayName" | "pluralDisplayName" | "titlePropertyApiName">;
38
+ export interface ObjectPropertyTypeInner extends Omit<OntologyIrPropertyType, "sharedPropertyTypeApiName" | "type" | "inlineAction" | "sharedPropertyTypeRid" | "valueType" | "ruleSetBinding" | "displayMetadata"> {
39
+ type: PropertyTypeType;
40
+ array?: boolean;
41
+ valueType: string | ValueTypeDefinitionVersion;
42
+ sharedPropertyType: SharedPropertyType;
43
+ description: string | undefined;
44
+ displayName: string;
45
+ visibility: Visibility;
46
+ }
47
+ export type ObjectPropertyType = RequiredFields<Partial<ObjectPropertyTypeInner>, "apiName" | "type" | "displayName">;
48
+ export interface InterfaceType extends Omit<OntologyIrInterfaceType, "properties" | "allProperties" | "allLinks" | "allExtendsInterfaces"> {
49
+ properties: Record<string, SharedPropertyType>;
50
+ status: InterfaceTypeStatus;
51
+ }
52
+ export interface PropertyType {
53
+ type: PropertyTypeType;
54
+ array?: boolean;
55
+ description?: string;
56
+ displayName?: string;
57
+ valueType?: ApiNameValueTypeReference;
58
+ typeClasses?: TypeClass[];
59
+ }
60
+ type TypeClass = {
61
+ kind: string
62
+ name: string
63
+ };
64
+ export interface SharedPropertyType extends PropertyType {
65
+ apiName: string;
66
+ nonNameSpacedApiName: string;
67
+ gothamMapping?: SharedPropertyTypeGothamMapping;
68
+ }
69
+ export type PropertyTypeType = PropertyTypeTypesWithoutStruct | {
70
+ type: "struct"
71
+ structDefinition: {
72
+ [api_name: string]: StructPropertyType | Exclude<PropertyTypeTypesWithoutStruct, MarkingPropertyType>
73
+ }
74
+ };
75
+ export type PropertyTypeTypesWithoutStruct = "boolean" | "byte" | "date" | "decimal" | "double" | "float" | "geopoint" | "geoshape" | "integer" | "long" | MarkingPropertyType | "short" | "string" | "timestamp" | "mediaReference";
76
+ type MarkingPropertyType = {
77
+ type: "marking"
78
+ markingType: "MANDATORY" | "CBAC"
79
+ };
80
+ type Optional<
81
+ T,
82
+ K extends keyof T
83
+ > = Pick<Partial<T>, K> & Omit<T, K>;
84
+ export interface StructPropertyType extends Optional<Omit<StructFieldType, "fieldType" | "structFieldRid" | "apiName">, "typeClasses" | "aliases"> {
85
+ fieldType: PropertyTypeTypesWithoutStruct;
86
+ }
87
+ export interface ValueTypeType_array {
88
+ constraints: {
89
+ constraint: Extract<DataConstraint, {
90
+ type: "array"
91
+ }>["array"]
92
+ failureMessage?: FailureMessage
93
+ }[];
94
+ type: "array";
95
+ value: {
96
+ type: "array"
97
+ elementType: ValueTypeType["value"]
98
+ };
99
+ }
100
+ export interface ValueTypeType_boolean {
101
+ constraints: {
102
+ constraint: Extract<DataConstraint, {
103
+ type: "boolean"
104
+ }>["boolean"]
105
+ failureMessage?: FailureMessage
106
+ }[];
107
+ type: "boolean";
108
+ value: "boolean";
109
+ }
110
+ export interface ValueTypeType_binary {
111
+ constraints: {
112
+ constraint: Extract<DataConstraint, {
113
+ type: "binary"
114
+ }>["binary"]
115
+ failureMessage?: FailureMessage
116
+ }[];
117
+ type: "binary";
118
+ value: "binary";
119
+ }
120
+ export interface ValueTypeType_byte {
121
+ constraints: {
122
+ constraint: Extract<DataConstraint, {
123
+ type: "byte"
124
+ }>["byte"]
125
+ failureMessage?: FailureMessage
126
+ }[];
127
+ type: "byte";
128
+ value: "byte";
129
+ }
130
+ export interface ValueTypeType_date {
131
+ constraints: {
132
+ constraint: Extract<DataConstraint, {
133
+ type: "date"
134
+ }>["date"]
135
+ failureMessage?: FailureMessage
136
+ }[];
137
+ type: "date";
138
+ value: "date";
139
+ }
140
+ export interface ValueTypeType_decimal {
141
+ constraints: {
142
+ constraint: Extract<DataConstraint, {
143
+ type: "decimal"
144
+ }>["decimal"]
145
+ failureMessage?: FailureMessage
146
+ }[];
147
+ type: "decimal";
148
+ value: "decimal";
149
+ }
150
+ export interface ValueTypeType_double {
151
+ constraints: {
152
+ constraint: Extract<DataConstraint, {
153
+ type: "double"
154
+ }>["double"]
155
+ failureMessage?: FailureMessage
156
+ }[];
157
+ type: "double";
158
+ value: "double";
159
+ }
160
+ export interface ValueTypeType_float {
161
+ constraints: {
162
+ constraint: Extract<DataConstraint, {
163
+ type: "float"
164
+ }>["float"]
165
+ failureMessage?: FailureMessage
166
+ }[];
167
+ type: "float";
168
+ value: "float";
169
+ }
170
+ export interface ValueTypeType_integer {
171
+ constraints: {
172
+ constraint: Extract<DataConstraint, {
173
+ type: "integer"
174
+ }>["integer"]
175
+ failureMessage?: FailureMessage
176
+ }[];
177
+ type: "integer";
178
+ value: "integer";
179
+ }
180
+ export interface ValueTypeType_long {
181
+ constraints: {
182
+ constraint: Extract<DataConstraint, {
183
+ type: "long"
184
+ }>["long"]
185
+ failureMessage?: FailureMessage
186
+ }[];
187
+ type: "long";
188
+ value: "long";
189
+ }
190
+ export interface ValueTypeType_map {
191
+ constraints: {
192
+ constraint: Extract<DataConstraint, {
193
+ type: "map"
194
+ }>["map"]
195
+ failureMessage?: FailureMessage
196
+ }[];
197
+ type: "map";
198
+ value: {
199
+ type: "map"
200
+ keyType: ValueTypeType["value"]
201
+ valueType: ValueTypeType["value"]
202
+ };
203
+ }
204
+ export interface ValueTypeType_optional {
205
+ constraints: {
206
+ constraint: Extract<DataConstraint, {
207
+ type: "optional"
208
+ }>["optional"]
209
+ failureMessage?: FailureMessage
210
+ }[];
211
+ type: "optional";
212
+ value: {
213
+ type: "optional"
214
+ wrappedType: ValueTypeType["value"]
215
+ };
216
+ }
217
+ export interface ValueTypeType_short {
218
+ constraints: {
219
+ constraint: Extract<DataConstraint, {
220
+ type: "short"
221
+ }>["short"]
222
+ failureMessage?: FailureMessage
223
+ }[];
224
+ type: "short";
225
+ value: "short";
226
+ }
227
+ export interface ValueTypeType_string {
228
+ constraints: {
229
+ constraint: Extract<DataConstraint, {
230
+ type: "string"
231
+ }>["string"]
232
+ failureMessage?: FailureMessage
233
+ }[];
234
+ type: "string";
235
+ value: "string";
236
+ }
237
+ export interface ValueTypeType_structV2 {
238
+ constraints: {
239
+ constraint: Extract<DataConstraint, {
240
+ type: "structV2"
241
+ }>["structV2"]
242
+ failureMessage?: FailureMessage
243
+ }[];
244
+ type: "structV2";
245
+ value: {
246
+ type: "struct"
247
+ fields: Array<{
248
+ identifier: string
249
+ baseType: ValueTypeType["value"]
250
+ }>
251
+ };
252
+ }
253
+ export interface ValueTypeType_timestamp {
254
+ constraints: {
255
+ constraint: Extract<DataConstraint, {
256
+ type: "timestamp"
257
+ }>["timestamp"]
258
+ failureMessage?: FailureMessage
259
+ }[];
260
+ type: "timestamp";
261
+ value: "timestamp";
262
+ }
263
+ export type ValueTypeType = ValueTypeType_array | ValueTypeType_boolean | ValueTypeType_binary | ValueTypeType_byte | ValueTypeType_date | ValueTypeType_decimal | ValueTypeType_double | ValueTypeType_float | ValueTypeType_integer | ValueTypeType_long | ValueTypeType_map | ValueTypeType_optional | ValueTypeType_short | ValueTypeType_string | ValueTypeType_structV2 | ValueTypeType_timestamp;
264
+ export type ValueTypeDefinitionVersion = {
265
+ apiName: ValueTypeApiName
266
+ displayMetadata: ValueTypeDisplayMetadata
267
+ status: ValueTypeStatus
268
+ version: ValueTypeVersion
269
+ baseType: BaseType
270
+ constraints: ValueTypeDataConstraint[]
271
+ exampleValues: ExampleValue[]
272
+ };
@@ -0,0 +1 @@
1
+ {"mappings":"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","names":[],"sources":["../../../src/api/types.ts"],"version":3,"file":"types.d.ts"}
@@ -0,0 +1 @@
1
+ export default function main(args?: string[]): Promise<void>;
@@ -0,0 +1 @@
1
+ {"mappings":"AA6BA,eAAe,SAAe,KAC5BA,kBACC","names":["args: string[]"],"sources":["../../../src/cli/main.ts"],"version":3,"file":"main.d.ts"}
@@ -0,0 +1,7 @@
1
+ export { default } from "./cli/main.js";
2
+ export { importSharedPropertyType } from "./api/defineImportSpt.js";
3
+ export { defineInterface } from "./api/defineInterface.js";
4
+ export { defineInterfaceLinkConstraint } from "./api/defineInterfaceLinkConstraint.js";
5
+ export { defineObject } from "./api/defineObject.js";
6
+ export { defineSharedPropertyType } from "./api/defineSpt.js";
7
+ export { defineValueType } from "./api/defineValueType.js";
@@ -0,0 +1 @@
1
+ {"mappings":"AAgBA,SAAS,eAA0B;AAEnC,SAAS,gCAAgC;AACzC,SAAS,uBAAuB;AAChC,SAAS,qCAAqC;AAC9C,SAAS,oBAAoB;AAC7B,SAAS,gCAAgC;AACzC,SAAS,uBAAuB","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.9.1",
3
+ "version": "0.9.3",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -32,16 +32,16 @@
32
32
  "tiny-invariant": "^1.3.3",
33
33
  "ts-node": "^10.9.2",
34
34
  "yargs": "^17.7.2",
35
- "@osdk/api": "~2.1.1"
35
+ "@osdk/api": "~2.1.3"
36
36
  },
37
37
  "devDependencies": {
38
38
  "@osdk/foundry.ontologies": "2.13.0",
39
39
  "@types/yargs": "^17.0.32",
40
40
  "typescript": "~5.5.4",
41
41
  "vitest": "^3.0.5",
42
- "@osdk/monorepo.tsconfig": "~0.0.0",
42
+ "@osdk/client.unstable": "~2.1.3",
43
43
  "@osdk/monorepo.api-extractor": "~0.0.0",
44
- "@osdk/client.unstable": "~2.1.1"
44
+ "@osdk/monorepo.tsconfig": "~0.0.0"
45
45
  },
46
46
  "publishConfig": {
47
47
  "access": "public"