@osdk/api 2.59.0 → 2.60.0-main-bbbeca8daa36d158648c037b93e496936d1f0730

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,15 @@
1
1
  # @osdk/api
2
2
 
3
+ ## 2.60.0-main-bbbeca8daa36d158648c037b93e496936d1f0730
4
+
5
+ ### Minor Changes
6
+
7
+ - bbbeca8: Bump the `@osdk/foundry.*` and `@osdk/internal.foundry.*` catalog entries to `2.75.0`, which reinstates the `streamingExecute` query endpoint as a Server-Sent Events (`text/event-stream`) stream. The experimental `executeStreamingFunction` helper is reimplemented on top of it and no longer throws: it yields each result as it arrives, flattening batched results so array-returning queries emit one element at a time.
8
+
9
+ ### Patch Changes
10
+
11
+ - e879ad7: Bump platform SDKs and add loadOntologyDefinedDerivedProperties flag, which defaults to true
12
+
3
13
  ## 2.59.0
4
14
 
5
15
  ### Minor Changes
@@ -17,9 +17,10 @@
17
17
  /**
18
18
  * @experimental This feature is experimental and might change in the future.
19
19
  *
20
- * Intended to execute a query as a streaming function, yielding results as
21
- * they arrive from the server. Streaming query execution is not currently
22
- * supported in the TypeScript OSDK.
20
+ * Executes a query as a streaming function, yielding results as they arrive
21
+ * from the server. Queries whose declared output is an array are delivered in
22
+ * batches and flattened, so the iterable yields one element at a time rather
23
+ * than one batch at a time.
23
24
  */
24
25
 
25
26
  export const __EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction = {
@@ -1 +1 @@
1
- {"version":3,"file":"executeStreamingFunction.js","names":["__EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction","name","type","version"],"sources":["executeStreamingFunction.ts"],"sourcesContent":["/*\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 type { CompileTimeMetadata } from \"../ontology/ObjectTypeDefinition.js\";\nimport type { QueryDefinition } from \"../ontology/QueryDefinition.js\";\nimport type { Experiment } from \"./Experiment.js\";\n\ntype StreamingArgs<QD extends QueryDefinition<any>> =\n CompileTimeMetadata<QD>[\"signature\"] extends (...args: infer A) => any\n ? A\n : never[];\n\ntype StreamingElement<QD extends QueryDefinition<any>> =\n CompileTimeMetadata<QD>[\"signature\"] extends (\n ...args: any[]\n ) => Promise<infer R>\n ? R extends ReadonlyArray<infer E>\n ? E\n : R\n : never;\n\n/**\n * @experimental This feature is experimental and might change in the future.\n *\n * Intended to execute a query as a streaming function, yielding results as\n * they arrive from the server. Streaming query execution is not currently\n * supported in the TypeScript OSDK.\n */\ntype executeStreamingFunctionFn = <QD extends QueryDefinition<any>>(\n query: QD,\n ...args: StreamingArgs<QD>\n) => AsyncIterable<StreamingElement<QD>>;\n\nexport const __EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction: Experiment<\n \"2.19.0\",\n \"__EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction\",\n { executeStreamingFunction: executeStreamingFunctionFn }\n> = {\n name: \"__EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction\",\n type: \"experiment\",\n version: \"2.19.0\",\n};\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAoBA;AACA;AACA;AACA;AACA;AACA;AACA;;AAMA,OAAO,MAAMA,2DAIZ,GAAG;EACFC,IAAI,EAAE,6DAA6D;EACnEC,IAAI,EAAE,YAAY;EAClBC,OAAO,EAAE;AACX,CAAC","ignoreList":[]}
1
+ {"version":3,"file":"executeStreamingFunction.js","names":["__EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction","name","type","version"],"sources":["executeStreamingFunction.ts"],"sourcesContent":["/*\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 type { CompileTimeMetadata } from \"../ontology/ObjectTypeDefinition.js\";\nimport type { QueryDefinition } from \"../ontology/QueryDefinition.js\";\nimport type { Experiment } from \"./Experiment.js\";\n\ntype StreamingArgs<QD extends QueryDefinition<any>> =\n CompileTimeMetadata<QD>[\"signature\"] extends (...args: infer A) => any\n ? A\n : never[];\n\ntype StreamingElement<QD extends QueryDefinition<any>> =\n CompileTimeMetadata<QD>[\"signature\"] extends (\n ...args: any[]\n ) => Promise<infer R>\n ? R extends ReadonlyArray<infer E>\n ? E\n : R\n : never;\n\n/**\n * @experimental This feature is experimental and might change in the future.\n *\n * Executes a query as a streaming function, yielding results as they arrive\n * from the server. Queries whose declared output is an array are delivered in\n * batches and flattened, so the iterable yields one element at a time rather\n * than one batch at a time.\n */\ntype executeStreamingFunctionFn = <QD extends QueryDefinition<any>>(\n query: QD,\n ...args: StreamingArgs<QD>\n) => AsyncIterable<StreamingElement<QD>>;\n\nexport const __EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction: Experiment<\n \"2.19.0\",\n \"__EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction\",\n { executeStreamingFunction: executeStreamingFunctionFn }\n> = {\n name: \"__EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction\",\n type: \"experiment\",\n version: \"2.19.0\",\n};\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAoBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAMA,OAAO,MAAMA,2DAIZ,GAAG;EACFC,IAAI,EAAE,6DAA6D;EACnEC,IAAI,EAAE,YAAY;EAClBC,OAAO,EAAE;AACX,CAAC","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"file":"FetchPageArgs.js","names":["NullabilityAdherence","ObjectSetArgs"],"sources":["FetchPageArgs.ts"],"sourcesContent":["/*\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 type {\n ObjectOrInterfaceDefinition,\n PropertyKeys,\n} from \"../ontology/ObjectOrInterface.js\";\nimport type { CompileTimeMetadata } from \"../ontology/ObjectTypeDefinition.js\";\nimport type {\n ApplyModifiersArg,\n PropertyModifierValue,\n} from \"../ontology/PropertyModifiers.js\";\n\nexport type NullabilityAdherence = false | \"throw\" | \"drop\";\nexport namespace NullabilityAdherence {\n export type Default = \"throw\";\n}\n\nexport namespace ObjectSetArgs {\n export interface Select<\n OBJECT_KEYS extends string = never,\n RDP_KEYS extends string = never,\n > {\n $select?: readonly (OBJECT_KEYS | RDP_KEYS)[];\n $includeRid?: boolean;\n }\n\n export type OrderByOptions<L extends string> =\n | {\n [K in L]?: \"asc\" | \"desc\";\n }\n | \"relevance\";\n\n export interface OrderBy<\n ORDER_BY_OPTIONS extends OrderByOptions<L>,\n L extends string = never,\n > {\n $orderBy?: ORDER_BY_OPTIONS;\n }\n\n export interface AsyncIter<\n Q extends ObjectOrInterfaceDefinition,\n K extends PropertyKeys<Q> = never,\n T extends boolean = false,\n RDP_KEYS extends string = never,\n ORDER_BY_OPTIONS extends ObjectSetArgs.OrderByOptions<K> = never,\n >\n extends Select<K, RDP_KEYS>, OrderBy<ORDER_BY_OPTIONS, K> {\n $includeAllBaseObjectProperties?: PropertyKeys<Q> extends K ? T : never;\n }\n\n export interface FetchPage<\n Q extends ObjectOrInterfaceDefinition,\n K extends PropertyKeys<Q> = never,\n T extends boolean = false,\n RDP_KEYS extends string = never,\n ORDER_BY_OPTIONS extends ObjectSetArgs.OrderByOptions<K> = never,\n > extends AsyncIter<Q, K, T, RDP_KEYS, ORDER_BY_OPTIONS> {\n $nextPageToken?: string;\n $pageSize?: number;\n }\n}\n\nexport interface SelectArg<\n Q extends ObjectOrInterfaceDefinition,\n L extends string = PropertyKeys<Q>,\n R extends boolean = false,\n S extends NullabilityAdherence = NullabilityAdherence.Default,\n RDP_KEYS extends string = never,\n PROPERTY_SECURITIES extends boolean = false,\n> {\n $select?: readonly L[];\n $includeRid?: R;\n $loadPropertySecurityMetadata?: PROPERTY_SECURITIES;\n}\n\nexport interface OrderByArg<\n Q extends ObjectOrInterfaceDefinition,\n L extends string = PropertyKeys<Q>,\n ORDER_BY_OPTIONS extends ObjectSetArgs.OrderByOptions<L> = never,\n> extends ObjectSetArgs.OrderBy<ORDER_BY_OPTIONS, L> {}\n\nexport type SelectArgToKeys<\n Q extends ObjectOrInterfaceDefinition,\n A extends SelectArg<Q, any, any>,\n> =\n A extends SelectArg<Q, never>\n ? PropertyKeys<Q>\n : A[\"$select\"] extends readonly string[]\n ? A[\"$select\"][number]\n : PropertyKeys<Q>;\n\nexport interface FetchPageArgs<\n Q extends ObjectOrInterfaceDefinition,\n K extends string = PropertyKeys<Q>,\n R extends boolean = false,\n A extends Augments = never,\n S extends NullabilityAdherence = NullabilityAdherence.Default,\n T extends boolean = false,\n RDP_KEYS extends string = never,\n ORDER_BY_OPTIONS extends ObjectSetArgs.OrderByOptions<K> = {},\n PROPERTY_SECURITIES extends boolean = false,\n MODIFIERS extends ApplyModifiersArg<Q> = {},\n DEFAULT_LOAD_LEVEL extends PropertyModifierValue | undefined =\n PropertyModifierValue,\n> extends AsyncIterArgs<\n Q,\n K,\n R,\n A,\n S,\n T,\n RDP_KEYS,\n ORDER_BY_OPTIONS,\n PROPERTY_SECURITIES,\n MODIFIERS\n> {\n $nextPageToken?: string;\n $pageSize?: number;\n $applyModifiers?: ApplyModifiersArg<Q> &\n MODIFIERS & { [P in Exclude<keyof MODIFIERS, PropertyKeys<Q>>]: never };\n /**\n * Best-effort load level applied to every property without listing them:\n * reducers and struct main values where defined, other properties unchanged.\n * A per-property `$applyModifiers` entry wins.\n *\n * @experimental\n */\n $EXPERIMENTAL_defaultLoadLevel?: DEFAULT_LOAD_LEVEL;\n /**\n * Ensures paging consistency by freezing the view at the time of query to prevent duplicate or missing items. Setting $snapshot to false ensures that you will always get the latest results.\n * @default false\n */\n $snapshot?: boolean;\n}\n\nexport interface AsyncIterArgs<\n Q extends ObjectOrInterfaceDefinition,\n K extends string = PropertyKeys<Q>,\n R extends boolean = false,\n A extends Augments = never,\n S extends NullabilityAdherence = NullabilityAdherence.Default,\n T extends boolean = false,\n RDP_KEYS extends string = never,\n ORDER_BY_OPTIONS extends ObjectSetArgs.OrderByOptions<K> = never,\n PROPERTY_SECURITIES extends boolean = false,\n MODIFIERS extends ApplyModifiersArg<Q> = {},\n>\n extends\n SelectArg<Q, K, R, S, RDP_KEYS, PROPERTY_SECURITIES>,\n OrderByArg<Q, PropertyKeys<Q> | RDP_KEYS, ORDER_BY_OPTIONS> {\n $includeAllBaseObjectProperties?: PropertyKeys<Q> extends K ? T : never;\n $applyModifiers?: ApplyModifiersArg<Q> &\n MODIFIERS & { [P in Exclude<keyof MODIFIERS, PropertyKeys<Q>>]: never };\n}\n\nexport type Augment<X extends ObjectOrInterfaceDefinition, T extends string> = {\n [K in CompileTimeMetadata<X>[\"apiName\"]]: T[];\n};\n\nexport type Augments = Record<string, string[]>;\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAdA,WA2BiBA,oBAAoB;AAAA,WAIpBC,aAAa","ignoreList":[]}
1
+ {"version":3,"file":"FetchPageArgs.js","names":["NullabilityAdherence","ObjectSetArgs"],"sources":["FetchPageArgs.ts"],"sourcesContent":["/*\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 type {\n ObjectOrInterfaceDefinition,\n PropertyKeys,\n} from \"../ontology/ObjectOrInterface.js\";\nimport type { CompileTimeMetadata } from \"../ontology/ObjectTypeDefinition.js\";\nimport type {\n ApplyModifiersArg,\n PropertyModifierValue,\n} from \"../ontology/PropertyModifiers.js\";\n\nexport type NullabilityAdherence = false | \"throw\" | \"drop\";\nexport namespace NullabilityAdherence {\n export type Default = \"throw\";\n}\n\nexport namespace ObjectSetArgs {\n export interface Select<\n OBJECT_KEYS extends string = never,\n RDP_KEYS extends string = never,\n > {\n $select?: readonly (OBJECT_KEYS | RDP_KEYS)[];\n $includeRid?: boolean;\n }\n\n export type OrderByOptions<L extends string> =\n | {\n [K in L]?: \"asc\" | \"desc\";\n }\n | \"relevance\";\n\n export interface OrderBy<\n ORDER_BY_OPTIONS extends OrderByOptions<L>,\n L extends string = never,\n > {\n $orderBy?: ORDER_BY_OPTIONS;\n }\n\n export interface AsyncIter<\n Q extends ObjectOrInterfaceDefinition,\n K extends PropertyKeys<Q> = never,\n T extends boolean = false,\n RDP_KEYS extends string = never,\n ORDER_BY_OPTIONS extends ObjectSetArgs.OrderByOptions<K> = never,\n >\n extends Select<K, RDP_KEYS>, OrderBy<ORDER_BY_OPTIONS, K> {\n $includeAllBaseObjectProperties?: PropertyKeys<Q> extends K ? T : never;\n }\n\n export interface FetchPage<\n Q extends ObjectOrInterfaceDefinition,\n K extends PropertyKeys<Q> = never,\n T extends boolean = false,\n RDP_KEYS extends string = never,\n ORDER_BY_OPTIONS extends ObjectSetArgs.OrderByOptions<K> = never,\n > extends AsyncIter<Q, K, T, RDP_KEYS, ORDER_BY_OPTIONS> {\n $nextPageToken?: string;\n $pageSize?: number;\n }\n}\n\nexport interface SelectArg<\n Q extends ObjectOrInterfaceDefinition,\n L extends string = PropertyKeys<Q>,\n R extends boolean = false,\n S extends NullabilityAdherence = NullabilityAdherence.Default,\n RDP_KEYS extends string = never,\n PROPERTY_SECURITIES extends boolean = false,\n> {\n $select?: readonly L[];\n $includeRid?: R;\n $loadPropertySecurityMetadata?: PROPERTY_SECURITIES;\n $UNSTABLE_loadOntologyDefinedDerivedProperties?: boolean;\n}\n\nexport interface OrderByArg<\n Q extends ObjectOrInterfaceDefinition,\n L extends string = PropertyKeys<Q>,\n ORDER_BY_OPTIONS extends ObjectSetArgs.OrderByOptions<L> = never,\n> extends ObjectSetArgs.OrderBy<ORDER_BY_OPTIONS, L> {}\n\nexport type SelectArgToKeys<\n Q extends ObjectOrInterfaceDefinition,\n A extends SelectArg<Q, any, any>,\n> =\n A extends SelectArg<Q, never>\n ? PropertyKeys<Q>\n : A[\"$select\"] extends readonly string[]\n ? A[\"$select\"][number]\n : PropertyKeys<Q>;\n\nexport interface FetchPageArgs<\n Q extends ObjectOrInterfaceDefinition,\n K extends string = PropertyKeys<Q>,\n R extends boolean = false,\n A extends Augments = never,\n S extends NullabilityAdherence = NullabilityAdherence.Default,\n T extends boolean = false,\n RDP_KEYS extends string = never,\n ORDER_BY_OPTIONS extends ObjectSetArgs.OrderByOptions<K> = {},\n PROPERTY_SECURITIES extends boolean = false,\n MODIFIERS extends ApplyModifiersArg<Q> = {},\n DEFAULT_LOAD_LEVEL extends PropertyModifierValue | undefined =\n PropertyModifierValue,\n> extends AsyncIterArgs<\n Q,\n K,\n R,\n A,\n S,\n T,\n RDP_KEYS,\n ORDER_BY_OPTIONS,\n PROPERTY_SECURITIES,\n MODIFIERS\n> {\n $nextPageToken?: string;\n $pageSize?: number;\n $applyModifiers?: ApplyModifiersArg<Q> &\n MODIFIERS & { [P in Exclude<keyof MODIFIERS, PropertyKeys<Q>>]: never };\n /**\n * Best-effort load level applied to every property without listing them:\n * reducers and struct main values where defined, other properties unchanged.\n * A per-property `$applyModifiers` entry wins.\n *\n * @experimental\n */\n $EXPERIMENTAL_defaultLoadLevel?: DEFAULT_LOAD_LEVEL;\n /**\n * Ensures paging consistency by freezing the view at the time of query to prevent duplicate or missing items. Setting $snapshot to false ensures that you will always get the latest results.\n * @default false\n */\n $snapshot?: boolean;\n}\n\nexport interface AsyncIterArgs<\n Q extends ObjectOrInterfaceDefinition,\n K extends string = PropertyKeys<Q>,\n R extends boolean = false,\n A extends Augments = never,\n S extends NullabilityAdherence = NullabilityAdherence.Default,\n T extends boolean = false,\n RDP_KEYS extends string = never,\n ORDER_BY_OPTIONS extends ObjectSetArgs.OrderByOptions<K> = never,\n PROPERTY_SECURITIES extends boolean = false,\n MODIFIERS extends ApplyModifiersArg<Q> = {},\n>\n extends\n SelectArg<Q, K, R, S, RDP_KEYS, PROPERTY_SECURITIES>,\n OrderByArg<Q, PropertyKeys<Q> | RDP_KEYS, ORDER_BY_OPTIONS> {\n $includeAllBaseObjectProperties?: PropertyKeys<Q> extends K ? T : never;\n $applyModifiers?: ApplyModifiersArg<Q> &\n MODIFIERS & { [P in Exclude<keyof MODIFIERS, PropertyKeys<Q>>]: never };\n}\n\nexport type Augment<X extends ObjectOrInterfaceDefinition, T extends string> = {\n [K in CompileTimeMetadata<X>[\"apiName\"]]: T[];\n};\n\nexport type Augments = Record<string, string[]>;\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAdA,WA2BiBA,oBAAoB;AAAA,WAIpBC,aAAa","ignoreList":[]}
@@ -1316,6 +1316,7 @@ interface SelectArg<Q extends ObjectOrInterfaceDefinition, L extends string = Pr
1316
1316
  $select?: readonly L[];
1317
1317
  $includeRid?: R;
1318
1318
  $loadPropertySecurityMetadata?: PROPERTY_SECURITIES;
1319
+ $UNSTABLE_loadOntologyDefinedDerivedProperties?: boolean;
1319
1320
  }
1320
1321
  interface OrderByArg<Q extends ObjectOrInterfaceDefinition, L extends string = PropertyKeys<Q>, ORDER_BY_OPTIONS extends ObjectSetArgs.OrderByOptions<L> = never> extends ObjectSetArgs.OrderBy<ORDER_BY_OPTIONS, L> {
1321
1322
  }
@@ -1,4 +1,4 @@
1
- import { O as ObjectOrInterfaceDefinition, a as OsdkMetadata, b as ObjectTypeDefinition } from './ObjectSet-Bx6q2zLk.cjs';
1
+ import { O as ObjectOrInterfaceDefinition, a as OsdkMetadata, b as ObjectTypeDefinition } from './ObjectSet-CbKKPty9.cjs';
2
2
 
3
3
  interface QueryMetadata {
4
4
  type: "query";
@@ -1,7 +1,7 @@
1
- import { A as AttachmentUpload, M as MediaReference, c as MediaUpload, d as Media, e as Attachment, b as ObjectTypeDefinition, f as ObjectIdentifiers, g as OsdkObjectPrimaryKeyType, h as ObjectSet, I as InterfaceDefinition, C as CompileTimeMetadata, a as OsdkMetadata, R as ReleaseStatus, P as PropertyValueWireToClient, i as PrimaryKeyTypes, O as ObjectOrInterfaceDefinition, j as OsdkBase } from './ObjectSet-Bx6q2zLk.cjs';
2
- export { k as AffineTransform, l as Affix, m as AggregateOpts, n as AggregateOptsThatErrorsAndDisallowsOrderingWithMultipleGroupBy, o as AggregationClause, p as AggregationResultsWithGroups, q as AggregationResultsWithoutGroups, r as AggregationsResults, s as AllGroupByValues, t as AndWhereClause, u as AsyncIterArgs, v as AttachmentMetadata, w as AudioDecodeFormat, x as AudioMediaItemMetadata, y as AudioSpecification, z as Augment, B as Augments, D as BandInfo, E as BaseObjectSet, F as BaseWirePropertyTypes, G as CipherText, H as ColorInterpretation, J as CommonDicomDataElements, K as ConvertProps, L as CoordinateReferenceSystem, N as DataType, Q as DatetimeFormat, S as DatetimeLocalizedFormat, T as DatetimeLocalizedFormatType, U as DatetimeStringFormat, V as DatetimeTimezone, W as DatetimeTimezoneStatic, X as DatetimeTimezoneUser, Y as DerivedProperty, Z as DicomDataElementKey, _ as DicomMediaItemMetadata, $ as DicomMediaType, a0 as DicomMetaInformation, a1 as DicomMetaInformationV1, a2 as Dimensions, a3 as DistanceUnitMapping, a4 as DocumentDecodeFormat, a5 as DocumentMediaItemMetadata, a6 as DurationBaseValue, a7 as DurationFormatStyle, a8 as DurationMapping, a9 as DurationPrecision, aa as EmailAttachment, ab as EmailDecodeFormat, ac as EmailMediaItemMetadata, ad as FetchLinksPageResult, ae as FetchPageArgs, af as FetchPageResult, ag as FlipAxis, ah as GcpList, ai as GeoFilterOptions, aj as GeoFilter_Intersects, ak as GeoFilter_Within, al as GeoMetadata, am as GeotimeSeriesProperty, an as GpsMetadata, ao as GroundControlPoint, ap as Group, aq as GroupByClause, ar as GroupByRange, as as GroupWrapper, at as HumanReadableFormat, au as ImageAttributeDomain, av as ImageAttributeKey, aw as ImageryDecodeFormat, ax as ImageryMediaItemMetadata, ay as InterfaceMetadata, az as IntervalRule, aA as KnownType, aB as LinkNames, aC as LinkTypeApiNamesFor, aD as LinkedType, aE as Mailbox, aF as MailboxOrGroup, aG as MailboxWrapper, aH as MaybeScore, aI as MediaFullMetadata, aJ as MediaItemMetadata, aK as MediaMetadata, aL as MediaPropertyLocation, aM as MinimalDirectedObjectLinkInstance, aN as Modality, aO as Model3dDecodeFormat, aP as Model3dMediaItemMetadata, aQ as Model3dType, aR as NotWhereClause, aS as NullabilityAdherence, aT as NumberFormatAffix, aU as NumberFormatCurrency, aV as NumberFormatCurrencyStyle, aW as NumberFormatCustomUnit, aX as NumberFormatDuration, aY as NumberFormatFixedValues, aZ as NumberFormatNotation, a_ as NumberFormatOptions, a$ as NumberFormatRatio, b0 as NumberFormatScale, b1 as NumberFormatStandard, b2 as NumberFormatStandardUnit, b3 as NumberRatioType, b4 as NumberRoundingMode, b5 as NumberScaleType, b6 as ObjectMetadata, b7 as ObjectSetArgs, b8 as ObjectSetSubscription, b9 as ObjectSpecifier, ba as OrWhereClause, bb as Orientation, bc as Osdk, bd as OsdkObjectCreatePropertyType, be as OsdkObjectLinksObject, bf as OsdkObjectPropertyType, bg as PageResult, bh as PaletteInterpretation, bi as PossibleWhereClauseFilters, bj as PrimaryKeyType, bk as PropertyBooleanFormattingRule, bl as PropertyDateFormattingRule, bm as PropertyDef, bn as PropertyKeys, bo as PropertyKnownTypeFormattingRule, bp as PropertyMarkings, bq as PropertyNumberFormattingRule, br as PropertyNumberFormattingRuleType, bs as PropertySecurity, bt as PropertyTimestampFormattingRule, bu as PropertyTypeReference, bv as PropertyTypeReferenceOrStringConstant, bw as PropertyValueFormattingRule, bx as Result, by as RotationAngle, bz as SelectArg, bA as SelectArgToKeys, bB as SimplePropertyDef, bC as SingleLinkAccessor, bD as SingleOsdkResult, bE as SpreadsheetDecodeFormat, bF as SpreadsheetMediaItemMetadata, bG as StringConstant, bH as TimeCodeFormat, bI as TimeSeriesPoint, bJ as TimeSeriesProperty, bK as TimeSeriesQuery, bL as TimeseriesDurationMapping, bM as UnitInterpretation, bN as UnknownMediaItemMetadata, bO as UntypedMediaItemMetadata, bP as ValidAggregationKeys, bQ as VersionBound, bR as VideoDecodeFormat, bS as VideoMediaItemMetadata, bT as VideoSpecification, bU as WhereClause, bV as WirePropertyTypes, bW as isOk } from './ObjectSet-Bx6q2zLk.cjs';
3
- import { A as AggregationKeyTypes, a as AggregationRangeKeyTypes, b as AggregationValueTypes } from './QueryDefinition-Cz4Vz0sb.cjs';
4
- export { I as InterfaceQueryDataType, O as ObjectQueryDataType, c as ObjectSetQueryDataType, Q as QueryDataTypeDefinition, d as QueryDefinition, e as QueryMetadata, f as QueryParameterDefinition, T as ThreeDimensionalQueryAggregationDefinition, g as TwoDimensionalQueryAggregationDefinition } from './QueryDefinition-Cz4Vz0sb.cjs';
1
+ import { A as AttachmentUpload, M as MediaReference, c as MediaUpload, d as Media, e as Attachment, b as ObjectTypeDefinition, f as ObjectIdentifiers, g as OsdkObjectPrimaryKeyType, h as ObjectSet, I as InterfaceDefinition, C as CompileTimeMetadata, a as OsdkMetadata, R as ReleaseStatus, P as PropertyValueWireToClient, i as PrimaryKeyTypes, O as ObjectOrInterfaceDefinition, j as OsdkBase } from './ObjectSet-CbKKPty9.cjs';
2
+ export { k as AffineTransform, l as Affix, m as AggregateOpts, n as AggregateOptsThatErrorsAndDisallowsOrderingWithMultipleGroupBy, o as AggregationClause, p as AggregationResultsWithGroups, q as AggregationResultsWithoutGroups, r as AggregationsResults, s as AllGroupByValues, t as AndWhereClause, u as AsyncIterArgs, v as AttachmentMetadata, w as AudioDecodeFormat, x as AudioMediaItemMetadata, y as AudioSpecification, z as Augment, B as Augments, D as BandInfo, E as BaseObjectSet, F as BaseWirePropertyTypes, G as CipherText, H as ColorInterpretation, J as CommonDicomDataElements, K as ConvertProps, L as CoordinateReferenceSystem, N as DataType, Q as DatetimeFormat, S as DatetimeLocalizedFormat, T as DatetimeLocalizedFormatType, U as DatetimeStringFormat, V as DatetimeTimezone, W as DatetimeTimezoneStatic, X as DatetimeTimezoneUser, Y as DerivedProperty, Z as DicomDataElementKey, _ as DicomMediaItemMetadata, $ as DicomMediaType, a0 as DicomMetaInformation, a1 as DicomMetaInformationV1, a2 as Dimensions, a3 as DistanceUnitMapping, a4 as DocumentDecodeFormat, a5 as DocumentMediaItemMetadata, a6 as DurationBaseValue, a7 as DurationFormatStyle, a8 as DurationMapping, a9 as DurationPrecision, aa as EmailAttachment, ab as EmailDecodeFormat, ac as EmailMediaItemMetadata, ad as FetchLinksPageResult, ae as FetchPageArgs, af as FetchPageResult, ag as FlipAxis, ah as GcpList, ai as GeoFilterOptions, aj as GeoFilter_Intersects, ak as GeoFilter_Within, al as GeoMetadata, am as GeotimeSeriesProperty, an as GpsMetadata, ao as GroundControlPoint, ap as Group, aq as GroupByClause, ar as GroupByRange, as as GroupWrapper, at as HumanReadableFormat, au as ImageAttributeDomain, av as ImageAttributeKey, aw as ImageryDecodeFormat, ax as ImageryMediaItemMetadata, ay as InterfaceMetadata, az as IntervalRule, aA as KnownType, aB as LinkNames, aC as LinkTypeApiNamesFor, aD as LinkedType, aE as Mailbox, aF as MailboxOrGroup, aG as MailboxWrapper, aH as MaybeScore, aI as MediaFullMetadata, aJ as MediaItemMetadata, aK as MediaMetadata, aL as MediaPropertyLocation, aM as MinimalDirectedObjectLinkInstance, aN as Modality, aO as Model3dDecodeFormat, aP as Model3dMediaItemMetadata, aQ as Model3dType, aR as NotWhereClause, aS as NullabilityAdherence, aT as NumberFormatAffix, aU as NumberFormatCurrency, aV as NumberFormatCurrencyStyle, aW as NumberFormatCustomUnit, aX as NumberFormatDuration, aY as NumberFormatFixedValues, aZ as NumberFormatNotation, a_ as NumberFormatOptions, a$ as NumberFormatRatio, b0 as NumberFormatScale, b1 as NumberFormatStandard, b2 as NumberFormatStandardUnit, b3 as NumberRatioType, b4 as NumberRoundingMode, b5 as NumberScaleType, b6 as ObjectMetadata, b7 as ObjectSetArgs, b8 as ObjectSetSubscription, b9 as ObjectSpecifier, ba as OrWhereClause, bb as Orientation, bc as Osdk, bd as OsdkObjectCreatePropertyType, be as OsdkObjectLinksObject, bf as OsdkObjectPropertyType, bg as PageResult, bh as PaletteInterpretation, bi as PossibleWhereClauseFilters, bj as PrimaryKeyType, bk as PropertyBooleanFormattingRule, bl as PropertyDateFormattingRule, bm as PropertyDef, bn as PropertyKeys, bo as PropertyKnownTypeFormattingRule, bp as PropertyMarkings, bq as PropertyNumberFormattingRule, br as PropertyNumberFormattingRuleType, bs as PropertySecurity, bt as PropertyTimestampFormattingRule, bu as PropertyTypeReference, bv as PropertyTypeReferenceOrStringConstant, bw as PropertyValueFormattingRule, bx as Result, by as RotationAngle, bz as SelectArg, bA as SelectArgToKeys, bB as SimplePropertyDef, bC as SingleLinkAccessor, bD as SingleOsdkResult, bE as SpreadsheetDecodeFormat, bF as SpreadsheetMediaItemMetadata, bG as StringConstant, bH as TimeCodeFormat, bI as TimeSeriesPoint, bJ as TimeSeriesProperty, bK as TimeSeriesQuery, bL as TimeseriesDurationMapping, bM as UnitInterpretation, bN as UnknownMediaItemMetadata, bO as UntypedMediaItemMetadata, bP as ValidAggregationKeys, bQ as VersionBound, bR as VideoDecodeFormat, bS as VideoMediaItemMetadata, bT as VideoSpecification, bU as WhereClause, bV as WirePropertyTypes, bW as isOk } from './ObjectSet-CbKKPty9.cjs';
3
+ import { A as AggregationKeyTypes, a as AggregationRangeKeyTypes, b as AggregationValueTypes } from './QueryDefinition-Bb6jK2IX.cjs';
4
+ export { I as InterfaceQueryDataType, O as ObjectQueryDataType, c as ObjectSetQueryDataType, Q as QueryDataTypeDefinition, d as QueryDefinition, e as QueryMetadata, f as QueryParameterDefinition, T as ThreeDimensionalQueryAggregationDefinition, g as TwoDimensionalQueryAggregationDefinition } from './QueryDefinition-Bb6jK2IX.cjs';
5
5
  import 'type-fest';
6
6
  import 'geojson';
7
7
 
@@ -1,4 +1,4 @@
1
- export { D as DerivedLinkConfig, k as NullabilityOp, l as ShapeDerivedLinkDef, m as ShapeLinkObjectSetDef, n as ShapeLinkOrderBy, o as ShapeLinkSegment, p as ShapeLinkSetOperation, q as ShapePropertyConfig } from '../shapes-internal-C-MIzX6H.cjs';
2
- import '../ObjectSet-Bx6q2zLk.cjs';
1
+ export { D as DerivedLinkConfig, k as NullabilityOp, l as ShapeDerivedLinkDef, m as ShapeLinkObjectSetDef, n as ShapeLinkOrderBy, o as ShapeLinkSegment, p as ShapeLinkSetOperation, q as ShapePropertyConfig } from '../shapes-internal-i4VGJkDh.cjs';
2
+ import '../ObjectSet-CbKKPty9.cjs';
3
3
  import 'type-fest';
4
4
  import 'geojson';
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/experimental/executeStreamingFunction.ts","../../../src/experimental/fetchOneByRid.ts","../../../src/experimental/fetchPageByRid.ts","../../../src/experimental/getBulkLinks.ts","../../../src/experimental/subscribeToNoTypeObjectSet.ts","../../../src/experimental/transformAndWait.ts","../../../src/object/MediaTransformationErrors.ts","../../../src/shapes/ShapeDefinition.ts","../../../src/shapes/computeShapeId.ts","../../../src/shapes/ShapeBuilder.ts","../../../src/shapes/configToShapeDefinition.ts"],"names":[],"mappings":"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","file":"unstable.cjs","sourcesContent":["/*\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\n/**\n * @experimental This feature is experimental and might change in the future.\n *\n * Intended to execute a query as a streaming function, yielding results as\n * they arrive from the server. Streaming query execution is not currently\n * supported in the TypeScript OSDK.\n */\n\nexport const __EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction = {\n name: \"__EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction\",\n type: \"experiment\",\n version: \"2.19.0\"\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\nexport const __EXPERIMENTAL__NOT_SUPPORTED_YET__fetchOneByRid = {\n name: \"__EXPERIMENTAL__NOT_SUPPORTED_YET__fetchOneByRid\",\n type: \"experiment\",\n version: \"2.1.0\"\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\nexport const __EXPERIMENTAL__NOT_SUPPORTED_YET__fetchPageByRid = {\n name: \"__EXPERIMENTAL__NOT_SUPPORTED_YET__fetchPageByRid\",\n type: \"experiment\",\n version: \"2.2.0\"\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\nexport const __EXPERIMENTAL__NOT_SUPPORTED_YET__getBulkLinks = {\n name: \"__EXPERIMENTAL__NOT_SUPPORTED_YET__getBulkLinks\",\n type: \"experiment\",\n version: \"2.0.8\"\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\nexport const __EXPERIMENTAL__NOT_SUPPORTED_YET__subscribeToNoTypeObjectSet = {\n name: \"__EXPERIMENTAL__NOT_SUPPORTED_YET__subscribeToNoTypeObjectSet\",\n type: \"experiment\",\n version: \"2.19.0\"\n};","/*\n * Copyright 2026 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\n/**\n * Options for polling a media transformation job.\n *\n * @experimental\n */\n\n/**\n * @experimental This feature is experimental and might change in the future.\n *\n * Submits a transformation job for a media item, polls until completion,\n * and returns the transformed content.\n *\n * @param args.media - The media item to transform\n * @param args.transformation - The {@link MediaTransformation} to apply\n * @param args.options - Polling options (interval and timeout)\n *\n * @returns The transformed media content as a Response\n */\n\nexport const transformAndWait = {\n name: \"transformAndWait\",\n type: \"experiment\",\n version: \"2.8.0\"\n};","/*\n * Copyright 2026 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\n/**\n * Base error for media transformation failures.\n * @beta\n */\nexport class MediaTransformationError extends Error {\n constructor(message) {\n super(message);\n this.name = \"MediaTransformationError\";\n }\n}\n\n/**\n * Thrown when a media transformation job exceeds the poll timeout.\n * @beta\n */\nexport class MediaTransformationTimeoutError extends MediaTransformationError {\n constructor(jobId) {\n super(`Transformation job ${jobId} timed out polling status`);\n this.name = \"MediaTransformationTimeoutError\";\n }\n}\n\n/**\n * Thrown when a media transformation job status is FAILED.\n * @beta\n */\nexport class MediaTransformationFailedError extends MediaTransformationError {\n constructor(jobId) {\n super(`Transformation job ${jobId} failed`);\n this.name = \"MediaTransformationFailedError\";\n }\n}","/*\n * Copyright 2025 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 const SourcePrimaryKeySymbol = Symbol.for(\"osdk.query.$sourcePk\");\nconst LegacyShapesSymbol = Symbol.for(\"osdk.shapes.$primaryKey\");\nexport function isSourcePkSymbol(value) {\n return typeof value === \"symbol\" && (value === SourcePrimaryKeySymbol || value === LegacyShapesSymbol);\n}\n\n/** Configuration for how a derived link is loaded at runtime. */\n\n/** The result of calling `ShapeLinkBuilder.as()`, binding a link traversal to a target shape. */\n\n/** A single link traversal step in a derived link's object set definition. */\n\n/** Sort clause for a derived link's result set. */\n\n/** A set operation (union/intersect/subtract) applied to a derived link's object set. */\n\n/** Serializable definition of a derived link's object set: link traversals, filters, ordering, and set operations. */\n\n/** How a shape handles null values for a selected property. */\n\n/** Per-property configuration stored in a shape's `__props` map. */\n\n/** A derived link definition stored in a shape's `__derivedLinks` array. */\n\n/**\n * Type projection from an OSDK type. `__props` is the single source of truth for property config.\n *\n * @typeParam BASE - The base ObjectTypeDefinition or InterfaceDefinition\n * @typeParam SELECTED_PROPS - Record of selected properties and their transformed types\n * @typeParam DERIVED_LINKS - Record of derived link names to their result types\n */\n\nexport class ShapeNullabilityError extends Error {\n constructor(shape, violations) {\n const props = violations.map(v => v.property).join(\", \");\n const shapeName = shape.__debugName ?? shape.__shapeId;\n super(`Shape \"${shapeName}\" requires these properties to be non-null: ${props}`);\n this.shape = shape;\n this.violations = violations;\n this.name = \"ShapeNullabilityError\";\n }\n}","/*\n * Copyright 2025 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\nfunction sortedStringify(obj) {\n return JSON.stringify(obj, (_, v) => v && typeof v === \"object\" && !Array.isArray(v) ? Object.fromEntries(Object.entries(v).sort(([a], [b]) => a.localeCompare(b))) : v);\n}\n\n/**\n * Computes a stable, deterministic identifier for a shape definition.\n * The ID uniquely represents the combination of base type, property\n * selections/nullability configs, and derived link definitions so\n * that identical shapes produce the same ID across calls.\n */\nexport function computeShapeId(input) {\n const canonical = canonicalizeShapeInput(input);\n return simpleHash(sortedStringify(canonical));\n}\nfunction canonicalizeShapeInput(input) {\n const sortedPropKeys = [...Object.keys(input.props)].sort();\n const canonicalProps = {};\n for (const key of sortedPropKeys) {\n const config = input.props[key];\n const op = config.nullabilityOp;\n canonicalProps[key] = op.type === \"withDefault\" ? {\n type: op.type,\n defaultValue: op.defaultValue\n } : op.type;\n }\n const canonicalLinks = input.derivedLinks.map(link => ({\n name: link.name,\n objectSetDef: canonicalizeObjectSetDef(link.objectSetDef),\n targetShapeId: link.targetShape.__shapeId\n }));\n canonicalLinks.sort((a, b) => a.name.localeCompare(b.name));\n return {\n baseType: input.baseTypeApiName,\n props: canonicalProps,\n links: canonicalLinks\n };\n}\nfunction canonicalizeObjectSetDef(def) {\n const result = {\n segments: def.segments.map(seg => ({\n type: seg.type,\n linkName: seg.linkName,\n sourceType: seg.sourceType\n }))\n };\n if (def.where) {\n result.where = JSON.parse(sortedStringify(def.where));\n }\n if (def.orderBy && def.orderBy.length > 0) {\n result.orderBy = def.orderBy.map(o => ({\n property: o.property,\n direction: o.direction\n }));\n }\n if (def.limit !== undefined) {\n result.limit = def.limit;\n }\n if (def.distinct) {\n result.distinct = true;\n }\n if (def.setOperations && def.setOperations.length > 0) {\n result.setOperations = def.setOperations.map(op => ({\n type: op.type,\n other: canonicalizeObjectSetDef(op.other)\n }));\n }\n return result;\n}\n\n// Shape IDs are used for cache keying and equality, not security,\n// so 32-bit is sufficient.\nfunction simpleHash(str) {\n let hash = 5381;\n for (let i = 0; i < str.length; i++) {\n const char = str.charCodeAt(i);\n hash = (hash << 5) + hash ^ char;\n }\n const positiveHash = hash >>> 0;\n return positiveHash.toString(16).padStart(8, \"0\");\n}","/*\n * Copyright 2025 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 { computeShapeId } from \"./computeShapeId.js\";\nimport { SourcePrimaryKeySymbol } from \"./ShapeDefinition.js\";\nclass ShapeBuilderImpl {\n #state;\n constructor(state) {\n this.#state = state;\n }\n #addProps(props, type) {\n const newProps = {\n ...this.#state.props\n };\n for (const prop of props) {\n newProps[prop] = {\n nullabilityOp: {\n type\n }\n };\n }\n return newProps;\n }\n select(...props) {\n return new ShapeBuilderImpl({\n ...this.#state,\n props: this.#addProps(props, \"select\")\n });\n }\n require(...props) {\n return new ShapeBuilderImpl({\n ...this.#state,\n props: this.#addProps(props, \"require\")\n });\n }\n dropIfNull(...props) {\n return new ShapeBuilderImpl({\n ...this.#state,\n props: this.#addProps(props, \"dropIfNull\")\n });\n }\n withDefault(prop, defaultValue) {\n return new ShapeBuilderImpl({\n ...this.#state,\n props: {\n ...this.#state.props,\n [prop]: {\n nullabilityOp: {\n type: \"withDefault\",\n defaultValue\n }\n }\n }\n });\n }\n withTransform(prop, transform) {\n return new ShapeBuilderImpl({\n ...this.#state,\n props: {\n ...this.#state.props,\n [prop]: {\n nullabilityOp: {\n type: \"withTransform\",\n transform\n }\n }\n }\n });\n }\n deriveLink(name, builder) {\n const linkBuilder = createShapeLinkBuilder(this.#state.baseTypeApiName);\n const linkResult = builder(linkBuilder);\n return new ShapeBuilderImpl({\n ...this.#state,\n props: {\n ...this.#state.props\n },\n derivedLinks: [...this.#state.derivedLinks, {\n name,\n objectSetDef: linkResult.objectSetDef,\n targetShape: linkResult.targetShape,\n config: linkResult.config\n }]\n });\n }\n build() {\n const shapeId = computeShapeId({\n baseTypeApiName: this.#state.baseTypeApiName,\n props: this.#state.props,\n derivedLinks: this.#state.derivedLinks\n });\n return {\n __shapeId: shapeId,\n __debugName: this.#state.debugName,\n __baseType: this.#state.baseType,\n __baseTypeApiName: this.#state.baseTypeApiName,\n __props: Object.freeze({\n ...this.#state.props\n }),\n __derivedLinks: Object.freeze([...this.#state.derivedLinks]),\n __selectedPropsType: {},\n __derivedLinksType: {}\n };\n }\n}\nclass ShapeLinkBuilderImpl {\n #state;\n $primaryKey = SourcePrimaryKeySymbol;\n constructor(state) {\n this.#state = state;\n }\n pivotTo(link) {\n const newSegments = [...this.#state.segments, {\n type: \"pivotTo\",\n linkName: link,\n sourceType: this.#state.currentTypeApiName\n // targetType is resolved at link execution time when link metadata is available\n }];\n return new ShapeLinkBuilderImpl({\n ...this.#state,\n segments: newSegments,\n // currentTypeApiName is a hint for debugging; actual type resolution happens at execution\n currentTypeApiName: `${this.#state.currentTypeApiName}.${link}`\n });\n }\n\n /** Sets the where filter for this link. Calling multiple times replaces the previous clause (last-write-wins). */\n where(clause) {\n return new ShapeLinkBuilderImpl({\n ...this.#state,\n where: clause\n });\n }\n #setOp(type, others) {\n return new ShapeLinkBuilderImpl({\n ...this.#state,\n setOperations: [...this.#state.setOperations, ...others.map(other => ({\n type,\n other: other.toObjectSetDef()\n }))]\n });\n }\n union(...others) {\n return this.#setOp(\"union\", others);\n }\n intersect(...others) {\n return this.#setOp(\"intersect\", others);\n }\n subtract(...others) {\n return this.#setOp(\"subtract\", others);\n }\n orderBy(property, direction = \"asc\") {\n return new ShapeLinkBuilderImpl({\n ...this.#state,\n orderBy: [...this.#state.orderBy, {\n property: property,\n direction\n }]\n });\n }\n limit(n) {\n if (!Number.isInteger(n) || n <= 0) {\n throw new Error(`ShapeLinkBuilder.limit() requires a positive integer, got: ${n}`);\n }\n return new ShapeLinkBuilderImpl({\n ...this.#state,\n limit: n\n });\n }\n distinct() {\n return new ShapeLinkBuilderImpl({\n ...this.#state,\n distinct: true\n });\n }\n as(shape, config = {}) {\n // The brand is a compile-time only marker, at runtime it's just undefined\n return {\n targetShape: shape,\n objectSetDef: this.toObjectSetDef(),\n config\n };\n }\n toObjectSetDef() {\n return {\n segments: Object.freeze([...this.#state.segments]),\n where: this.#state.where,\n orderBy: this.#state.orderBy.length > 0 ? Object.freeze([...this.#state.orderBy]) : undefined,\n limit: this.#state.limit,\n distinct: this.#state.distinct || undefined,\n setOperations: this.#state.setOperations.length > 0 ? Object.freeze([...this.#state.setOperations]) : undefined\n };\n }\n}\nexport function createShapeLinkBuilder(sourceTypeApiName) {\n return new ShapeLinkBuilderImpl({\n sourceTypeApiName,\n currentTypeApiName: sourceTypeApiName,\n segments: [],\n orderBy: [],\n distinct: false,\n setOperations: []\n });\n}\n\n/**\n * Creates a new ShapeBuilder for the given base type.\n *\n * @param baseType - The base ObjectTypeDefinition or InterfaceDefinition\n * @param debugName - Optional name for debugging in DevTools\n *\n * @example\n * ```typescript\n * const SlimPlayer = createShapeBuilder(Player, \"SlimPlayer\")\n * .require(\"name\", \"age\")\n * .withDefault(\"position\", \"Unknown\")\n * .build();\n * ```\n */\nexport function createShapeBuilder(baseType, debugName) {\n const state = {\n baseType,\n baseTypeApiName: baseType.apiName,\n debugName,\n props: {},\n derivedLinks: []\n };\n return new ShapeBuilderImpl(state);\n}","/*\n * Copyright 2025 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 { computeShapeId } from \"./computeShapeId.js\";\nimport { createShapeLinkBuilder } from \"./ShapeBuilder.js\";\nexport function configToShapeDefinition(baseType, config) {\n const baseTypeApiName = baseType.apiName;\n const props = {};\n const seen = new Set();\n function addProp(prop, config2) {\n if (seen.has(prop)) {\n throw new Error(`Property \"${prop}\" appears in multiple config arrays`);\n }\n seen.add(prop);\n props[prop] = config2;\n }\n if (config.require) {\n for (const prop of config.require) {\n addProp(prop, {\n nullabilityOp: {\n type: \"require\"\n }\n });\n }\n }\n if (config.select) {\n for (const prop of config.select) {\n addProp(prop, {\n nullabilityOp: {\n type: \"select\"\n }\n });\n }\n }\n if (config.dropIfNull) {\n for (const prop of config.dropIfNull) {\n addProp(prop, {\n nullabilityOp: {\n type: \"dropIfNull\"\n }\n });\n }\n }\n if (config.defaults) {\n for (const [prop, defaultValue] of Object.entries(config.defaults)) {\n addProp(prop, {\n nullabilityOp: {\n type: \"withDefault\",\n defaultValue\n }\n });\n }\n }\n if (config.transforms) {\n for (const [prop, transform] of Object.entries(config.transforms)) {\n if (typeof transform !== \"function\") {\n throw new Error(`transforms[\"${prop}\"] must be a function, got: ${typeof transform}`);\n }\n addProp(prop, {\n nullabilityOp: {\n type: \"withTransform\",\n transform\n }\n });\n }\n }\n const derivedLinks = [];\n if (config.links) {\n for (const [name, linkConfig] of Object.entries(config.links)) {\n const linkBuilder = createShapeLinkBuilder(baseTypeApiName);\n const traversed = linkConfig.via(linkBuilder);\n const objectSetDef = traversed.toObjectSetDef();\n const targetShape = linkConfig.target;\n derivedLinks.push({\n name,\n objectSetDef,\n targetShape,\n config: {\n defer: linkConfig.defer\n }\n });\n }\n }\n const shapeId = computeShapeId({\n baseTypeApiName,\n props,\n derivedLinks\n });\n return {\n __shapeId: shapeId,\n __debugName: undefined,\n __baseType: baseType,\n __baseTypeApiName: baseTypeApiName,\n __props: Object.freeze({\n ...props\n }),\n __derivedLinks: Object.freeze([...derivedLinks]),\n __selectedPropsType: {},\n __derivedLinksType: {}\n };\n}"]}
1
+ {"version":3,"sources":["../../../src/experimental/executeStreamingFunction.ts","../../../src/experimental/fetchOneByRid.ts","../../../src/experimental/fetchPageByRid.ts","../../../src/experimental/getBulkLinks.ts","../../../src/experimental/subscribeToNoTypeObjectSet.ts","../../../src/experimental/transformAndWait.ts","../../../src/object/MediaTransformationErrors.ts","../../../src/shapes/ShapeDefinition.ts","../../../src/shapes/computeShapeId.ts","../../../src/shapes/ShapeBuilder.ts","../../../src/shapes/configToShapeDefinition.ts"],"names":[],"mappings":"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","file":"unstable.cjs","sourcesContent":["/*\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\n/**\n * @experimental This feature is experimental and might change in the future.\n *\n * Executes a query as a streaming function, yielding results as they arrive\n * from the server. Queries whose declared output is an array are delivered in\n * batches and flattened, so the iterable yields one element at a time rather\n * than one batch at a time.\n */\n\nexport const __EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction = {\n name: \"__EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction\",\n type: \"experiment\",\n version: \"2.19.0\"\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\nexport const __EXPERIMENTAL__NOT_SUPPORTED_YET__fetchOneByRid = {\n name: \"__EXPERIMENTAL__NOT_SUPPORTED_YET__fetchOneByRid\",\n type: \"experiment\",\n version: \"2.1.0\"\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\nexport const __EXPERIMENTAL__NOT_SUPPORTED_YET__fetchPageByRid = {\n name: \"__EXPERIMENTAL__NOT_SUPPORTED_YET__fetchPageByRid\",\n type: \"experiment\",\n version: \"2.2.0\"\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\nexport const __EXPERIMENTAL__NOT_SUPPORTED_YET__getBulkLinks = {\n name: \"__EXPERIMENTAL__NOT_SUPPORTED_YET__getBulkLinks\",\n type: \"experiment\",\n version: \"2.0.8\"\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\nexport const __EXPERIMENTAL__NOT_SUPPORTED_YET__subscribeToNoTypeObjectSet = {\n name: \"__EXPERIMENTAL__NOT_SUPPORTED_YET__subscribeToNoTypeObjectSet\",\n type: \"experiment\",\n version: \"2.19.0\"\n};","/*\n * Copyright 2026 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\n/**\n * Options for polling a media transformation job.\n *\n * @experimental\n */\n\n/**\n * @experimental This feature is experimental and might change in the future.\n *\n * Submits a transformation job for a media item, polls until completion,\n * and returns the transformed content.\n *\n * @param args.media - The media item to transform\n * @param args.transformation - The {@link MediaTransformation} to apply\n * @param args.options - Polling options (interval and timeout)\n *\n * @returns The transformed media content as a Response\n */\n\nexport const transformAndWait = {\n name: \"transformAndWait\",\n type: \"experiment\",\n version: \"2.8.0\"\n};","/*\n * Copyright 2026 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\n/**\n * Base error for media transformation failures.\n * @beta\n */\nexport class MediaTransformationError extends Error {\n constructor(message) {\n super(message);\n this.name = \"MediaTransformationError\";\n }\n}\n\n/**\n * Thrown when a media transformation job exceeds the poll timeout.\n * @beta\n */\nexport class MediaTransformationTimeoutError extends MediaTransformationError {\n constructor(jobId) {\n super(`Transformation job ${jobId} timed out polling status`);\n this.name = \"MediaTransformationTimeoutError\";\n }\n}\n\n/**\n * Thrown when a media transformation job status is FAILED.\n * @beta\n */\nexport class MediaTransformationFailedError extends MediaTransformationError {\n constructor(jobId) {\n super(`Transformation job ${jobId} failed`);\n this.name = \"MediaTransformationFailedError\";\n }\n}","/*\n * Copyright 2025 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 const SourcePrimaryKeySymbol = Symbol.for(\"osdk.query.$sourcePk\");\nconst LegacyShapesSymbol = Symbol.for(\"osdk.shapes.$primaryKey\");\nexport function isSourcePkSymbol(value) {\n return typeof value === \"symbol\" && (value === SourcePrimaryKeySymbol || value === LegacyShapesSymbol);\n}\n\n/** Configuration for how a derived link is loaded at runtime. */\n\n/** The result of calling `ShapeLinkBuilder.as()`, binding a link traversal to a target shape. */\n\n/** A single link traversal step in a derived link's object set definition. */\n\n/** Sort clause for a derived link's result set. */\n\n/** A set operation (union/intersect/subtract) applied to a derived link's object set. */\n\n/** Serializable definition of a derived link's object set: link traversals, filters, ordering, and set operations. */\n\n/** How a shape handles null values for a selected property. */\n\n/** Per-property configuration stored in a shape's `__props` map. */\n\n/** A derived link definition stored in a shape's `__derivedLinks` array. */\n\n/**\n * Type projection from an OSDK type. `__props` is the single source of truth for property config.\n *\n * @typeParam BASE - The base ObjectTypeDefinition or InterfaceDefinition\n * @typeParam SELECTED_PROPS - Record of selected properties and their transformed types\n * @typeParam DERIVED_LINKS - Record of derived link names to their result types\n */\n\nexport class ShapeNullabilityError extends Error {\n constructor(shape, violations) {\n const props = violations.map(v => v.property).join(\", \");\n const shapeName = shape.__debugName ?? shape.__shapeId;\n super(`Shape \"${shapeName}\" requires these properties to be non-null: ${props}`);\n this.shape = shape;\n this.violations = violations;\n this.name = \"ShapeNullabilityError\";\n }\n}","/*\n * Copyright 2025 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\nfunction sortedStringify(obj) {\n return JSON.stringify(obj, (_, v) => v && typeof v === \"object\" && !Array.isArray(v) ? Object.fromEntries(Object.entries(v).sort(([a], [b]) => a.localeCompare(b))) : v);\n}\n\n/**\n * Computes a stable, deterministic identifier for a shape definition.\n * The ID uniquely represents the combination of base type, property\n * selections/nullability configs, and derived link definitions so\n * that identical shapes produce the same ID across calls.\n */\nexport function computeShapeId(input) {\n const canonical = canonicalizeShapeInput(input);\n return simpleHash(sortedStringify(canonical));\n}\nfunction canonicalizeShapeInput(input) {\n const sortedPropKeys = [...Object.keys(input.props)].sort();\n const canonicalProps = {};\n for (const key of sortedPropKeys) {\n const config = input.props[key];\n const op = config.nullabilityOp;\n canonicalProps[key] = op.type === \"withDefault\" ? {\n type: op.type,\n defaultValue: op.defaultValue\n } : op.type;\n }\n const canonicalLinks = input.derivedLinks.map(link => ({\n name: link.name,\n objectSetDef: canonicalizeObjectSetDef(link.objectSetDef),\n targetShapeId: link.targetShape.__shapeId\n }));\n canonicalLinks.sort((a, b) => a.name.localeCompare(b.name));\n return {\n baseType: input.baseTypeApiName,\n props: canonicalProps,\n links: canonicalLinks\n };\n}\nfunction canonicalizeObjectSetDef(def) {\n const result = {\n segments: def.segments.map(seg => ({\n type: seg.type,\n linkName: seg.linkName,\n sourceType: seg.sourceType\n }))\n };\n if (def.where) {\n result.where = JSON.parse(sortedStringify(def.where));\n }\n if (def.orderBy && def.orderBy.length > 0) {\n result.orderBy = def.orderBy.map(o => ({\n property: o.property,\n direction: o.direction\n }));\n }\n if (def.limit !== undefined) {\n result.limit = def.limit;\n }\n if (def.distinct) {\n result.distinct = true;\n }\n if (def.setOperations && def.setOperations.length > 0) {\n result.setOperations = def.setOperations.map(op => ({\n type: op.type,\n other: canonicalizeObjectSetDef(op.other)\n }));\n }\n return result;\n}\n\n// Shape IDs are used for cache keying and equality, not security,\n// so 32-bit is sufficient.\nfunction simpleHash(str) {\n let hash = 5381;\n for (let i = 0; i < str.length; i++) {\n const char = str.charCodeAt(i);\n hash = (hash << 5) + hash ^ char;\n }\n const positiveHash = hash >>> 0;\n return positiveHash.toString(16).padStart(8, \"0\");\n}","/*\n * Copyright 2025 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 { computeShapeId } from \"./computeShapeId.js\";\nimport { SourcePrimaryKeySymbol } from \"./ShapeDefinition.js\";\nclass ShapeBuilderImpl {\n #state;\n constructor(state) {\n this.#state = state;\n }\n #addProps(props, type) {\n const newProps = {\n ...this.#state.props\n };\n for (const prop of props) {\n newProps[prop] = {\n nullabilityOp: {\n type\n }\n };\n }\n return newProps;\n }\n select(...props) {\n return new ShapeBuilderImpl({\n ...this.#state,\n props: this.#addProps(props, \"select\")\n });\n }\n require(...props) {\n return new ShapeBuilderImpl({\n ...this.#state,\n props: this.#addProps(props, \"require\")\n });\n }\n dropIfNull(...props) {\n return new ShapeBuilderImpl({\n ...this.#state,\n props: this.#addProps(props, \"dropIfNull\")\n });\n }\n withDefault(prop, defaultValue) {\n return new ShapeBuilderImpl({\n ...this.#state,\n props: {\n ...this.#state.props,\n [prop]: {\n nullabilityOp: {\n type: \"withDefault\",\n defaultValue\n }\n }\n }\n });\n }\n withTransform(prop, transform) {\n return new ShapeBuilderImpl({\n ...this.#state,\n props: {\n ...this.#state.props,\n [prop]: {\n nullabilityOp: {\n type: \"withTransform\",\n transform\n }\n }\n }\n });\n }\n deriveLink(name, builder) {\n const linkBuilder = createShapeLinkBuilder(this.#state.baseTypeApiName);\n const linkResult = builder(linkBuilder);\n return new ShapeBuilderImpl({\n ...this.#state,\n props: {\n ...this.#state.props\n },\n derivedLinks: [...this.#state.derivedLinks, {\n name,\n objectSetDef: linkResult.objectSetDef,\n targetShape: linkResult.targetShape,\n config: linkResult.config\n }]\n });\n }\n build() {\n const shapeId = computeShapeId({\n baseTypeApiName: this.#state.baseTypeApiName,\n props: this.#state.props,\n derivedLinks: this.#state.derivedLinks\n });\n return {\n __shapeId: shapeId,\n __debugName: this.#state.debugName,\n __baseType: this.#state.baseType,\n __baseTypeApiName: this.#state.baseTypeApiName,\n __props: Object.freeze({\n ...this.#state.props\n }),\n __derivedLinks: Object.freeze([...this.#state.derivedLinks]),\n __selectedPropsType: {},\n __derivedLinksType: {}\n };\n }\n}\nclass ShapeLinkBuilderImpl {\n #state;\n $primaryKey = SourcePrimaryKeySymbol;\n constructor(state) {\n this.#state = state;\n }\n pivotTo(link) {\n const newSegments = [...this.#state.segments, {\n type: \"pivotTo\",\n linkName: link,\n sourceType: this.#state.currentTypeApiName\n // targetType is resolved at link execution time when link metadata is available\n }];\n return new ShapeLinkBuilderImpl({\n ...this.#state,\n segments: newSegments,\n // currentTypeApiName is a hint for debugging; actual type resolution happens at execution\n currentTypeApiName: `${this.#state.currentTypeApiName}.${link}`\n });\n }\n\n /** Sets the where filter for this link. Calling multiple times replaces the previous clause (last-write-wins). */\n where(clause) {\n return new ShapeLinkBuilderImpl({\n ...this.#state,\n where: clause\n });\n }\n #setOp(type, others) {\n return new ShapeLinkBuilderImpl({\n ...this.#state,\n setOperations: [...this.#state.setOperations, ...others.map(other => ({\n type,\n other: other.toObjectSetDef()\n }))]\n });\n }\n union(...others) {\n return this.#setOp(\"union\", others);\n }\n intersect(...others) {\n return this.#setOp(\"intersect\", others);\n }\n subtract(...others) {\n return this.#setOp(\"subtract\", others);\n }\n orderBy(property, direction = \"asc\") {\n return new ShapeLinkBuilderImpl({\n ...this.#state,\n orderBy: [...this.#state.orderBy, {\n property: property,\n direction\n }]\n });\n }\n limit(n) {\n if (!Number.isInteger(n) || n <= 0) {\n throw new Error(`ShapeLinkBuilder.limit() requires a positive integer, got: ${n}`);\n }\n return new ShapeLinkBuilderImpl({\n ...this.#state,\n limit: n\n });\n }\n distinct() {\n return new ShapeLinkBuilderImpl({\n ...this.#state,\n distinct: true\n });\n }\n as(shape, config = {}) {\n // The brand is a compile-time only marker, at runtime it's just undefined\n return {\n targetShape: shape,\n objectSetDef: this.toObjectSetDef(),\n config\n };\n }\n toObjectSetDef() {\n return {\n segments: Object.freeze([...this.#state.segments]),\n where: this.#state.where,\n orderBy: this.#state.orderBy.length > 0 ? Object.freeze([...this.#state.orderBy]) : undefined,\n limit: this.#state.limit,\n distinct: this.#state.distinct || undefined,\n setOperations: this.#state.setOperations.length > 0 ? Object.freeze([...this.#state.setOperations]) : undefined\n };\n }\n}\nexport function createShapeLinkBuilder(sourceTypeApiName) {\n return new ShapeLinkBuilderImpl({\n sourceTypeApiName,\n currentTypeApiName: sourceTypeApiName,\n segments: [],\n orderBy: [],\n distinct: false,\n setOperations: []\n });\n}\n\n/**\n * Creates a new ShapeBuilder for the given base type.\n *\n * @param baseType - The base ObjectTypeDefinition or InterfaceDefinition\n * @param debugName - Optional name for debugging in DevTools\n *\n * @example\n * ```typescript\n * const SlimPlayer = createShapeBuilder(Player, \"SlimPlayer\")\n * .require(\"name\", \"age\")\n * .withDefault(\"position\", \"Unknown\")\n * .build();\n * ```\n */\nexport function createShapeBuilder(baseType, debugName) {\n const state = {\n baseType,\n baseTypeApiName: baseType.apiName,\n debugName,\n props: {},\n derivedLinks: []\n };\n return new ShapeBuilderImpl(state);\n}","/*\n * Copyright 2025 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 { computeShapeId } from \"./computeShapeId.js\";\nimport { createShapeLinkBuilder } from \"./ShapeBuilder.js\";\nexport function configToShapeDefinition(baseType, config) {\n const baseTypeApiName = baseType.apiName;\n const props = {};\n const seen = new Set();\n function addProp(prop, config2) {\n if (seen.has(prop)) {\n throw new Error(`Property \"${prop}\" appears in multiple config arrays`);\n }\n seen.add(prop);\n props[prop] = config2;\n }\n if (config.require) {\n for (const prop of config.require) {\n addProp(prop, {\n nullabilityOp: {\n type: \"require\"\n }\n });\n }\n }\n if (config.select) {\n for (const prop of config.select) {\n addProp(prop, {\n nullabilityOp: {\n type: \"select\"\n }\n });\n }\n }\n if (config.dropIfNull) {\n for (const prop of config.dropIfNull) {\n addProp(prop, {\n nullabilityOp: {\n type: \"dropIfNull\"\n }\n });\n }\n }\n if (config.defaults) {\n for (const [prop, defaultValue] of Object.entries(config.defaults)) {\n addProp(prop, {\n nullabilityOp: {\n type: \"withDefault\",\n defaultValue\n }\n });\n }\n }\n if (config.transforms) {\n for (const [prop, transform] of Object.entries(config.transforms)) {\n if (typeof transform !== \"function\") {\n throw new Error(`transforms[\"${prop}\"] must be a function, got: ${typeof transform}`);\n }\n addProp(prop, {\n nullabilityOp: {\n type: \"withTransform\",\n transform\n }\n });\n }\n }\n const derivedLinks = [];\n if (config.links) {\n for (const [name, linkConfig] of Object.entries(config.links)) {\n const linkBuilder = createShapeLinkBuilder(baseTypeApiName);\n const traversed = linkConfig.via(linkBuilder);\n const objectSetDef = traversed.toObjectSetDef();\n const targetShape = linkConfig.target;\n derivedLinks.push({\n name,\n objectSetDef,\n targetShape,\n config: {\n defer: linkConfig.defer\n }\n });\n }\n }\n const shapeId = computeShapeId({\n baseTypeApiName,\n props,\n derivedLinks\n });\n return {\n __shapeId: shapeId,\n __debugName: undefined,\n __baseType: baseType,\n __baseTypeApiName: baseTypeApiName,\n __props: Object.freeze({\n ...props\n }),\n __derivedLinks: Object.freeze([...derivedLinks]),\n __selectedPropsType: {},\n __derivedLinksType: {}\n };\n}"]}
@@ -1,8 +1,8 @@
1
- import { C as CompileTimeMetadata, O as ObjectOrInterfaceDefinition, bn as PropertyKeys, aS as NullabilityAdherence, bz as SelectArg, bc as Osdk, bX as ExtractOptions, bY as ApplyModifiersArg, bZ as PropertyModifierValue, ae as FetchPageArgs, af as FetchPageResult, j as OsdkBase, b_ as Just, b8 as ObjectSetSubscription, d as Media } from '../ObjectSet-Bx6q2zLk.cjs';
2
- export { b$ as MinimalObjectSet } from '../ObjectSet-Bx6q2zLk.cjs';
3
- import { d as QueryDefinition } from '../QueryDefinition-Cz4Vz0sb.cjs';
4
- import { P as PropertyType, S as ShapeLinkBuilder, a as ShapeDefinition, R as RequiredProperty, b as ShapeBuilder } from '../shapes-internal-C-MIzX6H.cjs';
5
- export { L as LinkLoadConfig, c as LinkStatus, N as NullabilityViolation, d as ShapeBaseType, e as ShapeDerivedLinks, f as ShapeInstance, g as ShapeLinkResult, h as ShapeNullabilityError, i as SourcePrimaryKeySymbol, j as isSourcePkSymbol } from '../shapes-internal-C-MIzX6H.cjs';
1
+ import { C as CompileTimeMetadata, O as ObjectOrInterfaceDefinition, bn as PropertyKeys, aS as NullabilityAdherence, bz as SelectArg, bc as Osdk, bX as ExtractOptions, bY as ApplyModifiersArg, bZ as PropertyModifierValue, ae as FetchPageArgs, af as FetchPageResult, j as OsdkBase, b_ as Just, b8 as ObjectSetSubscription, d as Media } from '../ObjectSet-CbKKPty9.cjs';
2
+ export { b$ as MinimalObjectSet } from '../ObjectSet-CbKKPty9.cjs';
3
+ import { d as QueryDefinition } from '../QueryDefinition-Bb6jK2IX.cjs';
4
+ import { P as PropertyType, S as ShapeLinkBuilder, a as ShapeDefinition, R as RequiredProperty, b as ShapeBuilder } from '../shapes-internal-i4VGJkDh.cjs';
5
+ export { L as LinkLoadConfig, c as LinkStatus, N as NullabilityViolation, d as ShapeBaseType, e as ShapeDerivedLinks, f as ShapeInstance, g as ShapeLinkResult, h as ShapeNullabilityError, i as SourcePrimaryKeySymbol, j as isSourcePkSymbol } from '../shapes-internal-i4VGJkDh.cjs';
6
6
  import 'type-fest';
7
7
  import 'geojson';
8
8
 
@@ -19,9 +19,10 @@ type StreamingElement<QD extends QueryDefinition<any>> = CompileTimeMetadata<QD>
19
19
  /**
20
20
  * @experimental This feature is experimental and might change in the future.
21
21
  *
22
- * Intended to execute a query as a streaming function, yielding results as
23
- * they arrive from the server. Streaming query execution is not currently
24
- * supported in the TypeScript OSDK.
22
+ * Executes a query as a streaming function, yielding results as they arrive
23
+ * from the server. Queries whose declared output is an array are delivered in
24
+ * batches and flattened, so the iterable yields one element at a time rather
25
+ * than one batch at a time.
25
26
  */
26
27
  type executeStreamingFunctionFn = <QD extends QueryDefinition<any>>(query: QD, ...args: StreamingArgs<QD>) => AsyncIterable<StreamingElement<QD>>;
27
28
  declare const __EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction: Experiment<"2.19.0", "__EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction", {
@@ -1,4 +1,4 @@
1
- import { O as ObjectOrInterfaceDefinition, bU as WhereClause, bn as PropertyKeys, C as CompileTimeMetadata, aB as LinkNames, aD as LinkedType, j as OsdkBase } from './ObjectSet-Bx6q2zLk.cjs';
1
+ import { O as ObjectOrInterfaceDefinition, bU as WhereClause, bn as PropertyKeys, C as CompileTimeMetadata, aB as LinkNames, aD as LinkedType, j as OsdkBase } from './ObjectSet-CbKKPty9.cjs';
2
2
 
3
3
  declare const SourcePrimaryKeySymbol: unique symbol;
4
4
  declare function isSourcePkSymbol(value: unknown): value is symbol;
@@ -17,9 +17,10 @@
17
17
  /**
18
18
  * @experimental This feature is experimental and might change in the future.
19
19
  *
20
- * Intended to execute a query as a streaming function, yielding results as
21
- * they arrive from the server. Streaming query execution is not currently
22
- * supported in the TypeScript OSDK.
20
+ * Executes a query as a streaming function, yielding results as they arrive
21
+ * from the server. Queries whose declared output is an array are delivered in
22
+ * batches and flattened, so the iterable yields one element at a time rather
23
+ * than one batch at a time.
23
24
  */
24
25
 
25
26
  export const __EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction = {
@@ -1 +1 @@
1
- {"version":3,"file":"executeStreamingFunction.js","names":["__EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction","name","type","version"],"sources":["executeStreamingFunction.ts"],"sourcesContent":["/*\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 type { CompileTimeMetadata } from \"../ontology/ObjectTypeDefinition.js\";\nimport type { QueryDefinition } from \"../ontology/QueryDefinition.js\";\nimport type { Experiment } from \"./Experiment.js\";\n\ntype StreamingArgs<QD extends QueryDefinition<any>> =\n CompileTimeMetadata<QD>[\"signature\"] extends (...args: infer A) => any\n ? A\n : never[];\n\ntype StreamingElement<QD extends QueryDefinition<any>> =\n CompileTimeMetadata<QD>[\"signature\"] extends (\n ...args: any[]\n ) => Promise<infer R>\n ? R extends ReadonlyArray<infer E>\n ? E\n : R\n : never;\n\n/**\n * @experimental This feature is experimental and might change in the future.\n *\n * Intended to execute a query as a streaming function, yielding results as\n * they arrive from the server. Streaming query execution is not currently\n * supported in the TypeScript OSDK.\n */\ntype executeStreamingFunctionFn = <QD extends QueryDefinition<any>>(\n query: QD,\n ...args: StreamingArgs<QD>\n) => AsyncIterable<StreamingElement<QD>>;\n\nexport const __EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction: Experiment<\n \"2.19.0\",\n \"__EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction\",\n { executeStreamingFunction: executeStreamingFunctionFn }\n> = {\n name: \"__EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction\",\n type: \"experiment\",\n version: \"2.19.0\",\n};\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAoBA;AACA;AACA;AACA;AACA;AACA;AACA;;AAMA,OAAO,MAAMA,2DAIZ,GAAG;EACFC,IAAI,EAAE,6DAA6D;EACnEC,IAAI,EAAE,YAAY;EAClBC,OAAO,EAAE;AACX,CAAC","ignoreList":[]}
1
+ {"version":3,"file":"executeStreamingFunction.js","names":["__EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction","name","type","version"],"sources":["executeStreamingFunction.ts"],"sourcesContent":["/*\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 type { CompileTimeMetadata } from \"../ontology/ObjectTypeDefinition.js\";\nimport type { QueryDefinition } from \"../ontology/QueryDefinition.js\";\nimport type { Experiment } from \"./Experiment.js\";\n\ntype StreamingArgs<QD extends QueryDefinition<any>> =\n CompileTimeMetadata<QD>[\"signature\"] extends (...args: infer A) => any\n ? A\n : never[];\n\ntype StreamingElement<QD extends QueryDefinition<any>> =\n CompileTimeMetadata<QD>[\"signature\"] extends (\n ...args: any[]\n ) => Promise<infer R>\n ? R extends ReadonlyArray<infer E>\n ? E\n : R\n : never;\n\n/**\n * @experimental This feature is experimental and might change in the future.\n *\n * Executes a query as a streaming function, yielding results as they arrive\n * from the server. Queries whose declared output is an array are delivered in\n * batches and flattened, so the iterable yields one element at a time rather\n * than one batch at a time.\n */\ntype executeStreamingFunctionFn = <QD extends QueryDefinition<any>>(\n query: QD,\n ...args: StreamingArgs<QD>\n) => AsyncIterable<StreamingElement<QD>>;\n\nexport const __EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction: Experiment<\n \"2.19.0\",\n \"__EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction\",\n { executeStreamingFunction: executeStreamingFunctionFn }\n> = {\n name: \"__EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction\",\n type: \"experiment\",\n version: \"2.19.0\",\n};\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAoBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAMA,OAAO,MAAMA,2DAIZ,GAAG;EACFC,IAAI,EAAE,6DAA6D;EACnEC,IAAI,EAAE,YAAY;EAClBC,OAAO,EAAE;AACX,CAAC","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"file":"FetchPageArgs.js","names":["NullabilityAdherence","ObjectSetArgs"],"sources":["FetchPageArgs.ts"],"sourcesContent":["/*\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 type {\n ObjectOrInterfaceDefinition,\n PropertyKeys,\n} from \"../ontology/ObjectOrInterface.js\";\nimport type { CompileTimeMetadata } from \"../ontology/ObjectTypeDefinition.js\";\nimport type {\n ApplyModifiersArg,\n PropertyModifierValue,\n} from \"../ontology/PropertyModifiers.js\";\n\nexport type NullabilityAdherence = false | \"throw\" | \"drop\";\nexport namespace NullabilityAdherence {\n export type Default = \"throw\";\n}\n\nexport namespace ObjectSetArgs {\n export interface Select<\n OBJECT_KEYS extends string = never,\n RDP_KEYS extends string = never,\n > {\n $select?: readonly (OBJECT_KEYS | RDP_KEYS)[];\n $includeRid?: boolean;\n }\n\n export type OrderByOptions<L extends string> =\n | {\n [K in L]?: \"asc\" | \"desc\";\n }\n | \"relevance\";\n\n export interface OrderBy<\n ORDER_BY_OPTIONS extends OrderByOptions<L>,\n L extends string = never,\n > {\n $orderBy?: ORDER_BY_OPTIONS;\n }\n\n export interface AsyncIter<\n Q extends ObjectOrInterfaceDefinition,\n K extends PropertyKeys<Q> = never,\n T extends boolean = false,\n RDP_KEYS extends string = never,\n ORDER_BY_OPTIONS extends ObjectSetArgs.OrderByOptions<K> = never,\n >\n extends Select<K, RDP_KEYS>, OrderBy<ORDER_BY_OPTIONS, K> {\n $includeAllBaseObjectProperties?: PropertyKeys<Q> extends K ? T : never;\n }\n\n export interface FetchPage<\n Q extends ObjectOrInterfaceDefinition,\n K extends PropertyKeys<Q> = never,\n T extends boolean = false,\n RDP_KEYS extends string = never,\n ORDER_BY_OPTIONS extends ObjectSetArgs.OrderByOptions<K> = never,\n > extends AsyncIter<Q, K, T, RDP_KEYS, ORDER_BY_OPTIONS> {\n $nextPageToken?: string;\n $pageSize?: number;\n }\n}\n\nexport interface SelectArg<\n Q extends ObjectOrInterfaceDefinition,\n L extends string = PropertyKeys<Q>,\n R extends boolean = false,\n S extends NullabilityAdherence = NullabilityAdherence.Default,\n RDP_KEYS extends string = never,\n PROPERTY_SECURITIES extends boolean = false,\n> {\n $select?: readonly L[];\n $includeRid?: R;\n $loadPropertySecurityMetadata?: PROPERTY_SECURITIES;\n}\n\nexport interface OrderByArg<\n Q extends ObjectOrInterfaceDefinition,\n L extends string = PropertyKeys<Q>,\n ORDER_BY_OPTIONS extends ObjectSetArgs.OrderByOptions<L> = never,\n> extends ObjectSetArgs.OrderBy<ORDER_BY_OPTIONS, L> {}\n\nexport type SelectArgToKeys<\n Q extends ObjectOrInterfaceDefinition,\n A extends SelectArg<Q, any, any>,\n> =\n A extends SelectArg<Q, never>\n ? PropertyKeys<Q>\n : A[\"$select\"] extends readonly string[]\n ? A[\"$select\"][number]\n : PropertyKeys<Q>;\n\nexport interface FetchPageArgs<\n Q extends ObjectOrInterfaceDefinition,\n K extends string = PropertyKeys<Q>,\n R extends boolean = false,\n A extends Augments = never,\n S extends NullabilityAdherence = NullabilityAdherence.Default,\n T extends boolean = false,\n RDP_KEYS extends string = never,\n ORDER_BY_OPTIONS extends ObjectSetArgs.OrderByOptions<K> = {},\n PROPERTY_SECURITIES extends boolean = false,\n MODIFIERS extends ApplyModifiersArg<Q> = {},\n DEFAULT_LOAD_LEVEL extends PropertyModifierValue | undefined =\n PropertyModifierValue,\n> extends AsyncIterArgs<\n Q,\n K,\n R,\n A,\n S,\n T,\n RDP_KEYS,\n ORDER_BY_OPTIONS,\n PROPERTY_SECURITIES,\n MODIFIERS\n> {\n $nextPageToken?: string;\n $pageSize?: number;\n $applyModifiers?: ApplyModifiersArg<Q> &\n MODIFIERS & { [P in Exclude<keyof MODIFIERS, PropertyKeys<Q>>]: never };\n /**\n * Best-effort load level applied to every property without listing them:\n * reducers and struct main values where defined, other properties unchanged.\n * A per-property `$applyModifiers` entry wins.\n *\n * @experimental\n */\n $EXPERIMENTAL_defaultLoadLevel?: DEFAULT_LOAD_LEVEL;\n /**\n * Ensures paging consistency by freezing the view at the time of query to prevent duplicate or missing items. Setting $snapshot to false ensures that you will always get the latest results.\n * @default false\n */\n $snapshot?: boolean;\n}\n\nexport interface AsyncIterArgs<\n Q extends ObjectOrInterfaceDefinition,\n K extends string = PropertyKeys<Q>,\n R extends boolean = false,\n A extends Augments = never,\n S extends NullabilityAdherence = NullabilityAdherence.Default,\n T extends boolean = false,\n RDP_KEYS extends string = never,\n ORDER_BY_OPTIONS extends ObjectSetArgs.OrderByOptions<K> = never,\n PROPERTY_SECURITIES extends boolean = false,\n MODIFIERS extends ApplyModifiersArg<Q> = {},\n>\n extends\n SelectArg<Q, K, R, S, RDP_KEYS, PROPERTY_SECURITIES>,\n OrderByArg<Q, PropertyKeys<Q> | RDP_KEYS, ORDER_BY_OPTIONS> {\n $includeAllBaseObjectProperties?: PropertyKeys<Q> extends K ? T : never;\n $applyModifiers?: ApplyModifiersArg<Q> &\n MODIFIERS & { [P in Exclude<keyof MODIFIERS, PropertyKeys<Q>>]: never };\n}\n\nexport type Augment<X extends ObjectOrInterfaceDefinition, T extends string> = {\n [K in CompileTimeMetadata<X>[\"apiName\"]]: T[];\n};\n\nexport type Augments = Record<string, string[]>;\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAdA,WA2BiBA,oBAAoB;AAAA,WAIpBC,aAAa","ignoreList":[]}
1
+ {"version":3,"file":"FetchPageArgs.js","names":["NullabilityAdherence","ObjectSetArgs"],"sources":["FetchPageArgs.ts"],"sourcesContent":["/*\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 type {\n ObjectOrInterfaceDefinition,\n PropertyKeys,\n} from \"../ontology/ObjectOrInterface.js\";\nimport type { CompileTimeMetadata } from \"../ontology/ObjectTypeDefinition.js\";\nimport type {\n ApplyModifiersArg,\n PropertyModifierValue,\n} from \"../ontology/PropertyModifiers.js\";\n\nexport type NullabilityAdherence = false | \"throw\" | \"drop\";\nexport namespace NullabilityAdherence {\n export type Default = \"throw\";\n}\n\nexport namespace ObjectSetArgs {\n export interface Select<\n OBJECT_KEYS extends string = never,\n RDP_KEYS extends string = never,\n > {\n $select?: readonly (OBJECT_KEYS | RDP_KEYS)[];\n $includeRid?: boolean;\n }\n\n export type OrderByOptions<L extends string> =\n | {\n [K in L]?: \"asc\" | \"desc\";\n }\n | \"relevance\";\n\n export interface OrderBy<\n ORDER_BY_OPTIONS extends OrderByOptions<L>,\n L extends string = never,\n > {\n $orderBy?: ORDER_BY_OPTIONS;\n }\n\n export interface AsyncIter<\n Q extends ObjectOrInterfaceDefinition,\n K extends PropertyKeys<Q> = never,\n T extends boolean = false,\n RDP_KEYS extends string = never,\n ORDER_BY_OPTIONS extends ObjectSetArgs.OrderByOptions<K> = never,\n >\n extends Select<K, RDP_KEYS>, OrderBy<ORDER_BY_OPTIONS, K> {\n $includeAllBaseObjectProperties?: PropertyKeys<Q> extends K ? T : never;\n }\n\n export interface FetchPage<\n Q extends ObjectOrInterfaceDefinition,\n K extends PropertyKeys<Q> = never,\n T extends boolean = false,\n RDP_KEYS extends string = never,\n ORDER_BY_OPTIONS extends ObjectSetArgs.OrderByOptions<K> = never,\n > extends AsyncIter<Q, K, T, RDP_KEYS, ORDER_BY_OPTIONS> {\n $nextPageToken?: string;\n $pageSize?: number;\n }\n}\n\nexport interface SelectArg<\n Q extends ObjectOrInterfaceDefinition,\n L extends string = PropertyKeys<Q>,\n R extends boolean = false,\n S extends NullabilityAdherence = NullabilityAdherence.Default,\n RDP_KEYS extends string = never,\n PROPERTY_SECURITIES extends boolean = false,\n> {\n $select?: readonly L[];\n $includeRid?: R;\n $loadPropertySecurityMetadata?: PROPERTY_SECURITIES;\n $UNSTABLE_loadOntologyDefinedDerivedProperties?: boolean;\n}\n\nexport interface OrderByArg<\n Q extends ObjectOrInterfaceDefinition,\n L extends string = PropertyKeys<Q>,\n ORDER_BY_OPTIONS extends ObjectSetArgs.OrderByOptions<L> = never,\n> extends ObjectSetArgs.OrderBy<ORDER_BY_OPTIONS, L> {}\n\nexport type SelectArgToKeys<\n Q extends ObjectOrInterfaceDefinition,\n A extends SelectArg<Q, any, any>,\n> =\n A extends SelectArg<Q, never>\n ? PropertyKeys<Q>\n : A[\"$select\"] extends readonly string[]\n ? A[\"$select\"][number]\n : PropertyKeys<Q>;\n\nexport interface FetchPageArgs<\n Q extends ObjectOrInterfaceDefinition,\n K extends string = PropertyKeys<Q>,\n R extends boolean = false,\n A extends Augments = never,\n S extends NullabilityAdherence = NullabilityAdherence.Default,\n T extends boolean = false,\n RDP_KEYS extends string = never,\n ORDER_BY_OPTIONS extends ObjectSetArgs.OrderByOptions<K> = {},\n PROPERTY_SECURITIES extends boolean = false,\n MODIFIERS extends ApplyModifiersArg<Q> = {},\n DEFAULT_LOAD_LEVEL extends PropertyModifierValue | undefined =\n PropertyModifierValue,\n> extends AsyncIterArgs<\n Q,\n K,\n R,\n A,\n S,\n T,\n RDP_KEYS,\n ORDER_BY_OPTIONS,\n PROPERTY_SECURITIES,\n MODIFIERS\n> {\n $nextPageToken?: string;\n $pageSize?: number;\n $applyModifiers?: ApplyModifiersArg<Q> &\n MODIFIERS & { [P in Exclude<keyof MODIFIERS, PropertyKeys<Q>>]: never };\n /**\n * Best-effort load level applied to every property without listing them:\n * reducers and struct main values where defined, other properties unchanged.\n * A per-property `$applyModifiers` entry wins.\n *\n * @experimental\n */\n $EXPERIMENTAL_defaultLoadLevel?: DEFAULT_LOAD_LEVEL;\n /**\n * Ensures paging consistency by freezing the view at the time of query to prevent duplicate or missing items. Setting $snapshot to false ensures that you will always get the latest results.\n * @default false\n */\n $snapshot?: boolean;\n}\n\nexport interface AsyncIterArgs<\n Q extends ObjectOrInterfaceDefinition,\n K extends string = PropertyKeys<Q>,\n R extends boolean = false,\n A extends Augments = never,\n S extends NullabilityAdherence = NullabilityAdherence.Default,\n T extends boolean = false,\n RDP_KEYS extends string = never,\n ORDER_BY_OPTIONS extends ObjectSetArgs.OrderByOptions<K> = never,\n PROPERTY_SECURITIES extends boolean = false,\n MODIFIERS extends ApplyModifiersArg<Q> = {},\n>\n extends\n SelectArg<Q, K, R, S, RDP_KEYS, PROPERTY_SECURITIES>,\n OrderByArg<Q, PropertyKeys<Q> | RDP_KEYS, ORDER_BY_OPTIONS> {\n $includeAllBaseObjectProperties?: PropertyKeys<Q> extends K ? T : never;\n $applyModifiers?: ApplyModifiersArg<Q> &\n MODIFIERS & { [P in Exclude<keyof MODIFIERS, PropertyKeys<Q>>]: never };\n}\n\nexport type Augment<X extends ObjectOrInterfaceDefinition, T extends string> = {\n [K in CompileTimeMetadata<X>[\"apiName\"]]: T[];\n};\n\nexport type Augments = Record<string, string[]>;\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAdA,WA2BiBA,oBAAoB;AAAA,WAIpBC,aAAa","ignoreList":[]}
@@ -6,9 +6,10 @@ type StreamingElement<QD extends QueryDefinition<any>> = CompileTimeMetadata<QD>
6
6
  /**
7
7
  * @experimental This feature is experimental and might change in the future.
8
8
  *
9
- * Intended to execute a query as a streaming function, yielding results as
10
- * they arrive from the server. Streaming query execution is not currently
11
- * supported in the TypeScript OSDK.
9
+ * Executes a query as a streaming function, yielding results as they arrive
10
+ * from the server. Queries whose declared output is an array are delivered in
11
+ * batches and flattened, so the iterable yields one element at a time rather
12
+ * than one batch at a time.
12
13
  */
13
14
  type executeStreamingFunctionFn = <QD extends QueryDefinition<any>>(query: QD, ...args: StreamingArgs<QD>) => AsyncIterable<StreamingElement<QD>>;
14
15
  export declare const __EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction: Experiment<"2.19.0", "__EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction", {
@@ -1 +1 @@
1
- {"mappings":"AAgBA,cAAc,2BAA2B,qCAAsC;AAC/E,cAAc,uBAAuB,gCAAiC;AACtE,cAAc,kBAAkB,iBAAkB;KAE7C,cAAc,WAAW,wBAC5B,oBAAoB,IAAI,sBAAsB,GAAG,YAAY,YACzD;KAGD,iBAAiB,WAAW,wBAC/B,oBAAoB,IAAI,sBACtB,GAAG,gBACA,cAAc,KACf,UAAU,oBAAoB,KAC5B,IACA;;;;;;;;KAUH,8BAA8B,WAAW,sBAC5CA,OAAO,IACP,GAAG,MAAM,cAAc,QACpB,cAAc,iBAAiB;AAEpC,OAAO,cAAMC,6DAA6D,WACxE,UACA,+DACA;CAAE,0BAA0B;AAA4B","names":["query: QD","__EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction: Experiment<\n \"2.19.0\",\n \"__EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction\",\n { executeStreamingFunction: executeStreamingFunctionFn }\n>"],"sources":["../../../src/experimental/executeStreamingFunction.ts"],"version":3,"file":"executeStreamingFunction.d.ts"}
1
+ {"mappings":"AAgBA,cAAc,2BAA2B,qCAAsC;AAC/E,cAAc,uBAAuB,gCAAiC;AACtE,cAAc,kBAAkB,iBAAkB;KAE7C,cAAc,WAAW,wBAC5B,oBAAoB,IAAI,sBAAsB,GAAG,YAAY,YACzD;KAGD,iBAAiB,WAAW,wBAC/B,oBAAoB,IAAI,sBACtB,GAAG,gBACA,cAAc,KACf,UAAU,oBAAoB,KAC5B,IACA;;;;;;;;;KAWH,8BAA8B,WAAW,sBAC5CA,OAAO,IACP,GAAG,MAAM,cAAc,QACpB,cAAc,iBAAiB;AAEpC,OAAO,cAAMC,6DAA6D,WACxE,UACA,+DACA;CAAE,0BAA0B;AAA4B","names":["query: QD","__EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction: Experiment<\n \"2.19.0\",\n \"__EXPERIMENTAL__NOT_SUPPORTED_YET__executeStreamingFunction\",\n { executeStreamingFunction: executeStreamingFunctionFn }\n>"],"sources":["../../../src/experimental/executeStreamingFunction.ts"],"version":3,"file":"executeStreamingFunction.d.ts"}
@@ -51,6 +51,7 @@ export interface SelectArg<
51
51
  $select?: readonly L[];
52
52
  $includeRid?: R;
53
53
  $loadPropertySecurityMetadata?: PROPERTY_SECURITIES;
54
+ $UNSTABLE_loadOntologyDefinedDerivedProperties?: boolean;
54
55
  }
55
56
  export interface OrderByArg<
56
57
  Q extends ObjectOrInterfaceDefinition,
@@ -1 +1 @@
1
- {"mappings":"AAgBA,cACE,6BACA,oBACK,kCAAmC;AAC1C,cAAc,2BAA2B,qCAAsC;AAC/E,cACE,mBACA,6BACK,kCAAmC;AAE1C,YAAY,uBAAuB,QAAQ,UAAU;AACrD,yBAAiB;MACH,UAAU;;AAGxB,yBAAiB;WACE;EACf;EACA;GACA;EACA,oBAAoB,cAAc;EAClC;CACD;MAEW,eAAe,uBAEpB,KAAK,MAAK,QAAQ,WAErB;WAEa;EACf,yBAAyB,eAAe;EACxC;GACA;EACA,WAAW;CACZ;WAEgB;EACf,UAAU;EACV,UAAU,aAAa;EACvB,oBAAoB;EACpB;EACA,yBAAyB,cAAc,eAAe;WAE9C,OAAO,GAAG,WAAW,QAAQ,kBAAkB,GAAG;EAC1D,kCAAkC,aAAa,WAAW,IAAI;CAC/D;WAEgB;EACf,UAAU;EACV,UAAU,aAAa;EACvB,oBAAoB;EACpB;EACA,yBAAyB,cAAc,eAAe;WAC9C,UAAU,GAAG,GAAG,GAAG,UAAU,kBAAkB;EACvD;EACA;CACD;;AAGH,iBAAiB;CACf,UAAU;CACV,mBAAmB,aAAa;CAChC,oBAAoB;CACpB,UAAU,uBAAuB,qBAAqB;CACtD;CACA,sCAAsC;EACtC;CACA,mBAAmB;CACnB,cAAc;CACd,gCAAgC;AACjC;AAED,iBAAiB;CACf,UAAU;CACV,mBAAmB,aAAa;CAChC,yBAAyB,cAAc,eAAe;UAC9C,cAAc,QAAQ,kBAAkB,GAAG,CAAE;AAEvD,YAAY;CACV,UAAU;CACV,UAAU,UAAU;IAEpB,UAAU,UAAU,YAChB,aAAa,KACb,EAAE,uCACA,EAAE,qBACF,aAAa;AAErB,iBAAiB;CACf,UAAU;CACV,mBAAmB,aAAa;CAChC,oBAAoB;CACpB,UAAU;CACV,UAAU,uBAAuB,qBAAqB;CACtD,oBAAoB;CACpB;CACA,yBAAyB,cAAc,eAAe,KAAK,CAAE;CAC7D,sCAAsC;CACtC,kBAAkB,kBAAkB,KAAK,CAAE;CAC3C,2BAA2B,oCACzB;UACM,cACR,GACA,GACA,GACA,GACA,GACA,GACA,UACA,kBACA,qBACA,WACA;CACA;CACA;CACA,kBAAkB,kBAAkB,KAClC,eAAe,KAAK,cAAc,WAAW,aAAa;;;;;;;;CAQ5D,iCAAiC;;;;;CAKjC;AACD;AAED,iBAAiB;CACf,UAAU;CACV,mBAAmB,aAAa;CAChC,oBAAoB;CACpB,UAAU;CACV,UAAU,uBAAuB,qBAAqB;CACtD,oBAAoB;CACpB;CACA,yBAAyB,cAAc,eAAe;CACtD,sCAAsC;CACtC,kBAAkB,kBAAkB,KAAK,CAAE;UAGzC,UAAU,GAAG,GAAG,GAAG,GAAG,UAAU,sBAChC,WAAW,GAAG,aAAa,KAAK,UAAU,kBAAkB;CAC9D,kCAAkC,aAAa,WAAW,IAAI;CAC9D,kBAAkB,kBAAkB,KAClC,eAAe,KAAK,cAAc,WAAW,aAAa;AAC7D;AAED,YAAY;CAAQ,UAAU;CAA6B;OACxD,KAAK,oBAAoB,GAAG,cAAa;AAG5C,YAAY,WAAW","names":[],"sources":["../../../src/object/FetchPageArgs.ts"],"version":3,"file":"FetchPageArgs.d.ts"}
1
+ {"mappings":"AAgBA,cACE,6BACA,oBACK,kCAAmC;AAC1C,cAAc,2BAA2B,qCAAsC;AAC/E,cACE,mBACA,6BACK,kCAAmC;AAE1C,YAAY,uBAAuB,QAAQ,UAAU;AACrD,yBAAiB;MACH,UAAU;;AAGxB,yBAAiB;WACE;EACf;EACA;GACA;EACA,oBAAoB,cAAc;EAClC;CACD;MAEW,eAAe,uBAEpB,KAAK,MAAK,QAAQ,WAErB;WAEa;EACf,yBAAyB,eAAe;EACxC;GACA;EACA,WAAW;CACZ;WAEgB;EACf,UAAU;EACV,UAAU,aAAa;EACvB,oBAAoB;EACpB;EACA,yBAAyB,cAAc,eAAe;WAE9C,OAAO,GAAG,WAAW,QAAQ,kBAAkB,GAAG;EAC1D,kCAAkC,aAAa,WAAW,IAAI;CAC/D;WAEgB;EACf,UAAU;EACV,UAAU,aAAa;EACvB,oBAAoB;EACpB;EACA,yBAAyB,cAAc,eAAe;WAC9C,UAAU,GAAG,GAAG,GAAG,UAAU,kBAAkB;EACvD;EACA;CACD;;AAGH,iBAAiB;CACf,UAAU;CACV,mBAAmB,aAAa;CAChC,oBAAoB;CACpB,UAAU,uBAAuB,qBAAqB;CACtD;CACA,sCAAsC;EACtC;CACA,mBAAmB;CACnB,cAAc;CACd,gCAAgC;CAChC;AACD;AAED,iBAAiB;CACf,UAAU;CACV,mBAAmB,aAAa;CAChC,yBAAyB,cAAc,eAAe;UAC9C,cAAc,QAAQ,kBAAkB,GAAG,CAAE;AAEvD,YAAY;CACV,UAAU;CACV,UAAU,UAAU;IAEpB,UAAU,UAAU,YAChB,aAAa,KACb,EAAE,uCACA,EAAE,qBACF,aAAa;AAErB,iBAAiB;CACf,UAAU;CACV,mBAAmB,aAAa;CAChC,oBAAoB;CACpB,UAAU;CACV,UAAU,uBAAuB,qBAAqB;CACtD,oBAAoB;CACpB;CACA,yBAAyB,cAAc,eAAe,KAAK,CAAE;CAC7D,sCAAsC;CACtC,kBAAkB,kBAAkB,KAAK,CAAE;CAC3C,2BAA2B,oCACzB;UACM,cACR,GACA,GACA,GACA,GACA,GACA,GACA,UACA,kBACA,qBACA,WACA;CACA;CACA;CACA,kBAAkB,kBAAkB,KAClC,eAAe,KAAK,cAAc,WAAW,aAAa;;;;;;;;CAQ5D,iCAAiC;;;;;CAKjC;AACD;AAED,iBAAiB;CACf,UAAU;CACV,mBAAmB,aAAa;CAChC,oBAAoB;CACpB,UAAU;CACV,UAAU,uBAAuB,qBAAqB;CACtD,oBAAoB;CACpB;CACA,yBAAyB,cAAc,eAAe;CACtD,sCAAsC;CACtC,kBAAkB,kBAAkB,KAAK,CAAE;UAGzC,UAAU,GAAG,GAAG,GAAG,GAAG,UAAU,sBAChC,WAAW,GAAG,aAAa,KAAK,UAAU,kBAAkB;CAC9D,kCAAkC,aAAa,WAAW,IAAI;CAC9D,kBAAkB,kBAAkB,KAClC,eAAe,KAAK,cAAc,WAAW,aAAa;AAC7D;AAED,YAAY;CAAQ,UAAU;CAA6B;OACxD,KAAK,oBAAoB,GAAG,cAAa;AAG5C,YAAY,WAAW","names":[],"sources":["../../../src/object/FetchPageArgs.ts"],"version":3,"file":"FetchPageArgs.d.ts"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/api",
3
- "version": "2.59.0",
3
+ "version": "2.60.0-main-bbbeca8daa36d158648c037b93e496936d1f0730",
4
4
  "description": "",
5
5
  "access": "public",
6
6
  "license": "Apache-2.0",
@@ -57,8 +57,8 @@
57
57
  "@microsoft/api-extractor": "^7.52.11",
58
58
  "ts-expect": "^1.3.0",
59
59
  "typescript": "~5.5.4",
60
- "@osdk/monorepo.tsconfig": "~0.7.0",
61
- "@osdk/monorepo.api-extractor": "~0.7.0"
60
+ "@osdk/monorepo.api-extractor": "~0.7.0",
61
+ "@osdk/monorepo.tsconfig": "~0.7.0"
62
62
  },
63
63
  "publishConfig": {
64
64
  "access": "public"