@osdk/api 2.58.0 → 2.58.1-main-1aff7f421d982948f08eb265462b4b4cd8ce3cd4

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,11 @@
1
1
  # @osdk/api
2
2
 
3
+ ## 2.58.1-main-1aff7f421d982948f08eb265462b4b4cd8ce3cd4
4
+
5
+ ### Patch Changes
6
+
7
+ - 1aff7f4: Allow interfaces w/ no properties to filter on pk+title
8
+
3
9
  ## 2.58.0
4
10
 
5
11
  ## 2.57.0
@@ -1 +1 @@
1
- {"version":3,"file":"WhereClause.js","names":["DistanceUnitMapping","centimeter","centimeters","cm","meter","meters","m","kilometer","kilometers","km","inch","inches","foot","feet","yard","yards","mile","miles","nautical_mile","nauticalMile"],"sources":["WhereClause.ts"],"sourcesContent":["/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport type { BBox, Point, Polygon } from \"geojson\";\n\nimport type {\n DerivedObjectOrInterfaceDefinition,\n ObjectOrInterfaceDefinition,\n} from \"../ontology/ObjectOrInterface.js\";\nimport type {\n CompileTimeMetadata,\n ObjectMetadata,\n} from \"../ontology/ObjectTypeDefinition.js\";\nimport type { SimplePropertyDef } from \"../ontology/SimplePropertyDef.js\";\nimport type { BaseWirePropertyTypes } from \"../ontology/WirePropertyTypes.js\";\nimport type { IsNever } from \"../OsdkObjectFrom.js\";\nimport type { ArrayFilter } from \"./ArrayFilter.js\";\nimport type { BaseFilter } from \"./BaseFilter.js\";\nimport type { BooleanFilter } from \"./BooleanFilter.js\";\nimport type { DatetimeFilter } from \"./DatetimeFilter.js\";\nimport type { GeoFilter } from \"./GeoFilter.js\";\nimport type { Just } from \"./Just.js\";\nimport type { NumberFilter } from \"./NumberFilter.js\";\nimport type { StringFilter } from \"./StringFilter.js\";\n\nexport type PossibleWhereClauseFilters =\n | \"$gt\"\n | \"$eq\"\n | \"$ne\"\n | \"$isNull\"\n | \"$contains\"\n | \"$gte\"\n | \"$lt\"\n | \"$lte\"\n | \"$within\"\n | \"$in\"\n | \"$intersects\"\n | \"$startsWith\"\n | \"$containsAllTermsInOrder\"\n | \"$containsAnyTerm\"\n | \"$containsAllTerms\"\n | \"$interval\"\n | \"$matchesRegex\";\n\n// the value side of this needs to match DistanceUnit from @osdk/foundry but we don't\n// want the dependency\nexport const DistanceUnitMapping: {\n centimeter: \"CENTIMETERS\";\n centimeters: \"CENTIMETERS\";\n cm: \"CENTIMETERS\";\n meter: \"METERS\";\n meters: \"METERS\";\n m: \"METERS\";\n kilometer: \"KILOMETERS\";\n kilometers: \"KILOMETERS\";\n km: \"KILOMETERS\";\n inch: \"INCHES\";\n inches: \"INCHES\";\n foot: \"FEET\";\n feet: \"FEET\";\n yard: \"YARDS\";\n yards: \"YARDS\";\n mile: \"MILES\";\n miles: \"MILES\";\n nautical_mile: \"NAUTICAL_MILES\";\n nauticalMile: \"NAUTICAL_MILES\";\n \"nautical miles\": \"NAUTICAL_MILES\";\n} = {\n centimeter: \"CENTIMETERS\",\n centimeters: \"CENTIMETERS\",\n cm: \"CENTIMETERS\",\n meter: \"METERS\",\n meters: \"METERS\",\n m: \"METERS\",\n kilometer: \"KILOMETERS\",\n kilometers: \"KILOMETERS\",\n km: \"KILOMETERS\",\n inch: \"INCHES\",\n inches: \"INCHES\",\n foot: \"FEET\",\n feet: \"FEET\",\n yard: \"YARDS\",\n yards: \"YARDS\",\n mile: \"MILES\",\n miles: \"MILES\",\n nautical_mile: \"NAUTICAL_MILES\",\n nauticalMile: \"NAUTICAL_MILES\",\n \"nautical miles\": \"NAUTICAL_MILES\",\n} satisfies Record<\n string,\n | \"CENTIMETERS\"\n | \"METERS\"\n | \"KILOMETERS\"\n | \"INCHES\"\n | \"FEET\"\n | \"YARDS\"\n | \"MILES\"\n | \"NAUTICAL_MILES\"\n>;\n\nexport type GeoFilter_Within = {\n $within:\n | {\n $distance: [number, keyof typeof DistanceUnitMapping];\n $of: [number, number] | Readonly<Point>;\n $bbox?: never;\n $polygon?: never;\n }\n | {\n $bbox: BBox;\n $distance?: never;\n $of?: never;\n $polygon?: never;\n }\n | BBox\n | {\n $polygon: Polygon[\"coordinates\"];\n $bbox?: never;\n $distance?: never;\n $of?: never;\n }\n | Polygon;\n};\n\nexport type GeoFilter_Intersects = {\n $intersects:\n | {\n $bbox: BBox;\n $polygon?: never;\n }\n | BBox\n | {\n $polygon: Polygon[\"coordinates\"];\n $bbox?: never;\n }\n | Polygon;\n};\n\ntype BaseFilterFor<T> =\n T extends Record<string, BaseWirePropertyTypes>\n ? StructFilterOpts<T>\n : T extends \"string\"\n ? StringFilter\n : T extends \"geopoint\" | \"geoshape\"\n ? GeoFilter\n : T extends \"datetime\" | \"timestamp\"\n ? DatetimeFilter\n : T extends \"boolean\"\n ? BooleanFilter\n : T extends WhereClauseNumberPropertyTypes\n ? NumberFilter\n : BaseFilter<string>; // Fallback for unknown types\n\ntype FilterFor<PD extends ObjectMetadata.Property> =\n PD[\"multiplicity\"] extends true\n ? ArrayFilter<BaseFilterFor<PD[\"type\"]>>\n : PD[\"type\"] extends Record<string, BaseWirePropertyTypes>\n ? StructFilter<PD[\"type\"]> | BaseFilter.$isNull<string>\n : BaseFilterFor<PD[\"type\"]>;\n\ntype StructFilterOpts<ST extends Record<string, BaseWirePropertyTypes>> = {\n [K in keyof ST]?: FilterFor<{ type: ST[K] }>;\n};\ntype StructFilter<ST extends Record<string, BaseWirePropertyTypes>> = {\n [K in keyof ST]: Just<K, StructFilterOpts<ST>>;\n}[keyof ST];\n\ntype WhereClauseNumberPropertyTypes =\n | \"double\"\n | \"integer\"\n | \"long\"\n | \"float\"\n | \"decimal\"\n | \"byte\";\n\ntype SpecialPropertyFilter = StringFilter | NumberFilter | DatetimeFilter;\n\ntype PrimaryKeyFilterFor<T extends ObjectOrInterfaceDefinition> =\n CompileTimeMetadata<T> extends { primaryKeyType: infer PKT extends string }\n ? BaseFilterFor<PKT>\n : SpecialPropertyFilter;\n\nexport type SpecialPropertyWhereClause<T extends ObjectOrInterfaceDefinition> =\n {\n $title?: SpecialPropertyFilter;\n $primaryKey?: PrimaryKeyFilterFor<T>;\n };\n\nexport type AndWhereClause<\n T extends ObjectOrInterfaceDefinition,\n RDPs extends Record<string, SimplePropertyDef> = {},\n> = {\n $and: WhereClause<T, RDPs>[];\n};\n\nexport type OrWhereClause<\n T extends ObjectOrInterfaceDefinition,\n RDPs extends Record<string, SimplePropertyDef> = {},\n> = {\n $or: WhereClause<T, RDPs>[];\n};\n\nexport type NotWhereClause<\n T extends ObjectOrInterfaceDefinition,\n RDPs extends Record<string, SimplePropertyDef> = {},\n> = {\n $not: WhereClause<T, RDPs>;\n};\n\nexport type PropertyWhereClause<T extends ObjectOrInterfaceDefinition> = {\n [P in keyof CompileTimeMetadata<T>[\"properties\"]]?: FilterFor<\n CompileTimeMetadata<T>[\"properties\"][P]\n >;\n};\n\ntype MergedPropertyWhereClause<\n T extends ObjectOrInterfaceDefinition,\n RDPs extends Record<string, SimplePropertyDef> = {},\n> =\n | PropertyWhereClause<\n DerivedObjectOrInterfaceDefinition.WithDerivedProperties<T, RDPs>\n >\n | SpecialPropertyWhereClause<T>;\n\nexport type WhereClause<\n T extends ObjectOrInterfaceDefinition,\n RDPs extends Record<string, SimplePropertyDef> = {},\n> =\n | OrWhereClause<T, RDPs>\n | AndWhereClause<T, RDPs>\n | NotWhereClause<T, RDPs>\n | (IsNever<keyof CompileTimeMetadata<T>[\"properties\"]> extends true\n ? Record<string, never>\n : MergedPropertyWhereClause<T, RDPs>);\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AA2CA;AACA;AACA,OAAO,MAAMA,mBAqBZ,GAAG;EACFC,UAAU,EAAE,aAAa;EACzBC,WAAW,EAAE,aAAa;EAC1BC,EAAE,EAAE,aAAa;EACjBC,KAAK,EAAE,QAAQ;EACfC,MAAM,EAAE,QAAQ;EAChBC,CAAC,EAAE,QAAQ;EACXC,SAAS,EAAE,YAAY;EACvBC,UAAU,EAAE,YAAY;EACxBC,EAAE,EAAE,YAAY;EAChBC,IAAI,EAAE,QAAQ;EACdC,MAAM,EAAE,QAAQ;EAChBC,IAAI,EAAE,MAAM;EACZC,IAAI,EAAE,MAAM;EACZC,IAAI,EAAE,OAAO;EACbC,KAAK,EAAE,OAAO;EACdC,IAAI,EAAE,OAAO;EACbC,KAAK,EAAE,OAAO;EACdC,aAAa,EAAE,gBAAgB;EAC/BC,YAAY,EAAE,gBAAgB;EAC9B,gBAAgB,EAAE;AACpB,CAUC;;AAqDmC","ignoreList":[]}
1
+ {"version":3,"file":"WhereClause.js","names":["DistanceUnitMapping","centimeter","centimeters","cm","meter","meters","m","kilometer","kilometers","km","inch","inches","foot","feet","yard","yards","mile","miles","nautical_mile","nauticalMile"],"sources":["WhereClause.ts"],"sourcesContent":["/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport type { BBox, Point, Polygon } from \"geojson\";\n\nimport type {\n DerivedObjectOrInterfaceDefinition,\n ObjectOrInterfaceDefinition,\n} from \"../ontology/ObjectOrInterface.js\";\nimport type {\n CompileTimeMetadata,\n ObjectMetadata,\n} from \"../ontology/ObjectTypeDefinition.js\";\nimport type { SimplePropertyDef } from \"../ontology/SimplePropertyDef.js\";\nimport type { BaseWirePropertyTypes } from \"../ontology/WirePropertyTypes.js\";\nimport type { IsNever } from \"../OsdkObjectFrom.js\";\nimport type { ArrayFilter } from \"./ArrayFilter.js\";\nimport type { BaseFilter } from \"./BaseFilter.js\";\nimport type { BooleanFilter } from \"./BooleanFilter.js\";\nimport type { DatetimeFilter } from \"./DatetimeFilter.js\";\nimport type { GeoFilter } from \"./GeoFilter.js\";\nimport type { Just } from \"./Just.js\";\nimport type { NumberFilter } from \"./NumberFilter.js\";\nimport type { StringFilter } from \"./StringFilter.js\";\n\nexport type PossibleWhereClauseFilters =\n | \"$gt\"\n | \"$eq\"\n | \"$ne\"\n | \"$isNull\"\n | \"$contains\"\n | \"$gte\"\n | \"$lt\"\n | \"$lte\"\n | \"$within\"\n | \"$in\"\n | \"$intersects\"\n | \"$startsWith\"\n | \"$containsAllTermsInOrder\"\n | \"$containsAnyTerm\"\n | \"$containsAllTerms\"\n | \"$interval\"\n | \"$matchesRegex\";\n\n// the value side of this needs to match DistanceUnit from @osdk/foundry but we don't\n// want the dependency\nexport const DistanceUnitMapping: {\n centimeter: \"CENTIMETERS\";\n centimeters: \"CENTIMETERS\";\n cm: \"CENTIMETERS\";\n meter: \"METERS\";\n meters: \"METERS\";\n m: \"METERS\";\n kilometer: \"KILOMETERS\";\n kilometers: \"KILOMETERS\";\n km: \"KILOMETERS\";\n inch: \"INCHES\";\n inches: \"INCHES\";\n foot: \"FEET\";\n feet: \"FEET\";\n yard: \"YARDS\";\n yards: \"YARDS\";\n mile: \"MILES\";\n miles: \"MILES\";\n nautical_mile: \"NAUTICAL_MILES\";\n nauticalMile: \"NAUTICAL_MILES\";\n \"nautical miles\": \"NAUTICAL_MILES\";\n} = {\n centimeter: \"CENTIMETERS\",\n centimeters: \"CENTIMETERS\",\n cm: \"CENTIMETERS\",\n meter: \"METERS\",\n meters: \"METERS\",\n m: \"METERS\",\n kilometer: \"KILOMETERS\",\n kilometers: \"KILOMETERS\",\n km: \"KILOMETERS\",\n inch: \"INCHES\",\n inches: \"INCHES\",\n foot: \"FEET\",\n feet: \"FEET\",\n yard: \"YARDS\",\n yards: \"YARDS\",\n mile: \"MILES\",\n miles: \"MILES\",\n nautical_mile: \"NAUTICAL_MILES\",\n nauticalMile: \"NAUTICAL_MILES\",\n \"nautical miles\": \"NAUTICAL_MILES\",\n} satisfies Record<\n string,\n | \"CENTIMETERS\"\n | \"METERS\"\n | \"KILOMETERS\"\n | \"INCHES\"\n | \"FEET\"\n | \"YARDS\"\n | \"MILES\"\n | \"NAUTICAL_MILES\"\n>;\n\nexport type GeoFilter_Within = {\n $within:\n | {\n $distance: [number, keyof typeof DistanceUnitMapping];\n $of: [number, number] | Readonly<Point>;\n $bbox?: never;\n $polygon?: never;\n }\n | {\n $bbox: BBox;\n $distance?: never;\n $of?: never;\n $polygon?: never;\n }\n | BBox\n | {\n $polygon: Polygon[\"coordinates\"];\n $bbox?: never;\n $distance?: never;\n $of?: never;\n }\n | Polygon;\n};\n\nexport type GeoFilter_Intersects = {\n $intersects:\n | {\n $bbox: BBox;\n $polygon?: never;\n }\n | BBox\n | {\n $polygon: Polygon[\"coordinates\"];\n $bbox?: never;\n }\n | Polygon;\n};\n\ntype BaseFilterFor<T> =\n T extends Record<string, BaseWirePropertyTypes>\n ? StructFilterOpts<T>\n : T extends \"string\"\n ? StringFilter\n : T extends \"geopoint\" | \"geoshape\"\n ? GeoFilter\n : T extends \"datetime\" | \"timestamp\"\n ? DatetimeFilter\n : T extends \"boolean\"\n ? BooleanFilter\n : T extends WhereClauseNumberPropertyTypes\n ? NumberFilter\n : BaseFilter<string>; // Fallback for unknown types\n\ntype FilterFor<PD extends ObjectMetadata.Property> =\n PD[\"multiplicity\"] extends true\n ? ArrayFilter<BaseFilterFor<PD[\"type\"]>>\n : PD[\"type\"] extends Record<string, BaseWirePropertyTypes>\n ? StructFilter<PD[\"type\"]> | BaseFilter.$isNull<string>\n : BaseFilterFor<PD[\"type\"]>;\n\ntype StructFilterOpts<ST extends Record<string, BaseWirePropertyTypes>> = {\n [K in keyof ST]?: FilterFor<{ type: ST[K] }>;\n};\ntype StructFilter<ST extends Record<string, BaseWirePropertyTypes>> = {\n [K in keyof ST]: Just<K, StructFilterOpts<ST>>;\n}[keyof ST];\n\ntype WhereClauseNumberPropertyTypes =\n | \"double\"\n | \"integer\"\n | \"long\"\n | \"float\"\n | \"decimal\"\n | \"byte\";\n\ntype SpecialPropertyFilter = StringFilter | NumberFilter | DatetimeFilter;\n\ntype PrimaryKeyFilterFor<T extends ObjectOrInterfaceDefinition> =\n CompileTimeMetadata<T> extends { primaryKeyType: infer PKT extends string }\n ? BaseFilterFor<PKT>\n : SpecialPropertyFilter;\n\nexport type SpecialPropertyWhereClause<T extends ObjectOrInterfaceDefinition> =\n {\n $title?: SpecialPropertyFilter;\n $primaryKey?: PrimaryKeyFilterFor<T>;\n };\n\nexport type AndWhereClause<\n T extends ObjectOrInterfaceDefinition,\n RDPs extends Record<string, SimplePropertyDef> = {},\n> = {\n $and: WhereClause<T, RDPs>[];\n};\n\nexport type OrWhereClause<\n T extends ObjectOrInterfaceDefinition,\n RDPs extends Record<string, SimplePropertyDef> = {},\n> = {\n $or: WhereClause<T, RDPs>[];\n};\n\nexport type NotWhereClause<\n T extends ObjectOrInterfaceDefinition,\n RDPs extends Record<string, SimplePropertyDef> = {},\n> = {\n $not: WhereClause<T, RDPs>;\n};\n\nexport type PropertyWhereClause<T extends ObjectOrInterfaceDefinition> = {\n [P in keyof CompileTimeMetadata<T>[\"properties\"]]?: FilterFor<\n CompileTimeMetadata<T>[\"properties\"][P]\n >;\n};\n\nexport type WhereClause<\n T extends ObjectOrInterfaceDefinition,\n RDPs extends Record<string, SimplePropertyDef> = {},\n> =\n | OrWhereClause<T, RDPs>\n | AndWhereClause<T, RDPs>\n | NotWhereClause<T, RDPs>\n | SpecialPropertyWhereClause<T>\n | (IsNever<keyof CompileTimeMetadata<T>[\"properties\"]> extends true\n ? Record<string, never>\n : PropertyWhereClause<\n DerivedObjectOrInterfaceDefinition.WithDerivedProperties<T, RDPs>\n >);\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AA2CA;AACA;AACA,OAAO,MAAMA,mBAqBZ,GAAG;EACFC,UAAU,EAAE,aAAa;EACzBC,WAAW,EAAE,aAAa;EAC1BC,EAAE,EAAE,aAAa;EACjBC,KAAK,EAAE,QAAQ;EACfC,MAAM,EAAE,QAAQ;EAChBC,CAAC,EAAE,QAAQ;EACXC,SAAS,EAAE,YAAY;EACvBC,UAAU,EAAE,YAAY;EACxBC,EAAE,EAAE,YAAY;EAChBC,IAAI,EAAE,QAAQ;EACdC,MAAM,EAAE,QAAQ;EAChBC,IAAI,EAAE,MAAM;EACZC,IAAI,EAAE,MAAM;EACZC,IAAI,EAAE,OAAO;EACbC,KAAK,EAAE,OAAO;EACdC,IAAI,EAAE,OAAO;EACbC,KAAK,EAAE,OAAO;EACdC,aAAa,EAAE,gBAAgB;EAC/BC,YAAY,EAAE,gBAAgB;EAC9B,gBAAgB,EAAE;AACpB,CAUC;;AAqDmC","ignoreList":[]}
@@ -1903,8 +1903,7 @@ type NotWhereClause<T extends ObjectOrInterfaceDefinition, RDPs extends Record<s
1903
1903
  type PropertyWhereClause<T extends ObjectOrInterfaceDefinition> = {
1904
1904
  [P in keyof CompileTimeMetadata<T>["properties"]]?: FilterFor<CompileTimeMetadata<T>["properties"][P]>;
1905
1905
  };
1906
- type MergedPropertyWhereClause<T extends ObjectOrInterfaceDefinition, RDPs extends Record<string, SimplePropertyDef> = {}> = PropertyWhereClause<DerivedObjectOrInterfaceDefinition.WithDerivedProperties<T, RDPs>> | SpecialPropertyWhereClause<T>;
1907
- type WhereClause<T extends ObjectOrInterfaceDefinition, RDPs extends Record<string, SimplePropertyDef> = {}> = OrWhereClause<T, RDPs> | AndWhereClause<T, RDPs> | NotWhereClause<T, RDPs> | (IsNever<keyof CompileTimeMetadata<T>["properties"]> extends true ? Record<string, never> : MergedPropertyWhereClause<T, RDPs>);
1906
+ type WhereClause<T extends ObjectOrInterfaceDefinition, RDPs extends Record<string, SimplePropertyDef> = {}> = OrWhereClause<T, RDPs> | AndWhereClause<T, RDPs> | NotWhereClause<T, RDPs> | SpecialPropertyWhereClause<T> | (IsNever<keyof CompileTimeMetadata<T>["properties"]> extends true ? Record<string, never> : PropertyWhereClause<DerivedObjectOrInterfaceDefinition.WithDerivedProperties<T, RDPs>>);
1908
1907
 
1909
1908
  type LinkNames<Q extends ObjectOrInterfaceDefinition> = Q extends InterfaceDefinition ? keyof CompileTimeMetadata<Q>["links"] : keyof CompileTimeMetadata<Q>["links"] & string;
1910
1909
  type LinkedType<Q extends ObjectOrInterfaceDefinition, L extends LinkNames<Q>> = NonNullable<CompileTimeMetadata<Q>["links"][L]["__OsdkLinkTargetType"]>;
@@ -1,4 +1,4 @@
1
- import { O as ObjectOrInterfaceDefinition, a as OsdkMetadata, b as ObjectTypeDefinition } from './ObjectSet-DP3FUIj4.cjs';
1
+ import { O as ObjectOrInterfaceDefinition, a as OsdkMetadata, b as ObjectTypeDefinition } from './ObjectSet-B7GdhPec.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-DP3FUIj4.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-DP3FUIj4.cjs';
3
- import { A as AggregationKeyTypes, a as AggregationRangeKeyTypes, b as AggregationValueTypes } from './QueryDefinition-BRRv_fNp.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-BRRv_fNp.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-B7GdhPec.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-B7GdhPec.cjs';
3
+ import { A as AggregationKeyTypes, a as AggregationRangeKeyTypes, b as AggregationValueTypes } from './QueryDefinition-Dw0MqaNg.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-Dw0MqaNg.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-BWbZ-YqJ.cjs';
2
- import '../ObjectSet-DP3FUIj4.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-BWyaugZ5.cjs';
2
+ import '../ObjectSet-B7GdhPec.cjs';
3
3
  import 'type-fest';
4
4
  import 'geojson';
@@ -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, ae as FetchPageArgs, af as FetchPageResult, j as OsdkBase, bY as Just, b8 as ObjectSetSubscription, d as Media } from '../ObjectSet-DP3FUIj4.cjs';
2
- export { bZ as MinimalObjectSet } from '../ObjectSet-DP3FUIj4.cjs';
3
- import { d as QueryDefinition } from '../QueryDefinition-BRRv_fNp.cjs';
4
- import { P as PropertyType, S as ShapeLinkBuilder, a as ShapeDefinition, R as RequiredProperty, b as ShapeBuilder } from '../shapes-internal-BWbZ-YqJ.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-BWbZ-YqJ.cjs';
1
+ import { C as CompileTimeMetadata, O as ObjectOrInterfaceDefinition, bn as PropertyKeys, aS as NullabilityAdherence, bz as SelectArg, bc as Osdk, bX as ExtractOptions, ae as FetchPageArgs, af as FetchPageResult, j as OsdkBase, bY as Just, b8 as ObjectSetSubscription, d as Media } from '../ObjectSet-B7GdhPec.cjs';
2
+ export { bZ as MinimalObjectSet } from '../ObjectSet-B7GdhPec.cjs';
3
+ import { d as QueryDefinition } from '../QueryDefinition-Dw0MqaNg.cjs';
4
+ import { P as PropertyType, S as ShapeLinkBuilder, a as ShapeDefinition, R as RequiredProperty, b as ShapeBuilder } from '../shapes-internal-BWyaugZ5.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-BWyaugZ5.cjs';
6
6
  import 'type-fest';
7
7
  import 'geojson';
8
8
 
@@ -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-DP3FUIj4.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-B7GdhPec.cjs';
2
2
 
3
3
  declare const SourcePrimaryKeySymbol: unique symbol;
4
4
  declare function isSourcePkSymbol(value: unknown): value is symbol;
@@ -1 +1 @@
1
- {"version":3,"file":"WhereClause.js","names":["DistanceUnitMapping","centimeter","centimeters","cm","meter","meters","m","kilometer","kilometers","km","inch","inches","foot","feet","yard","yards","mile","miles","nautical_mile","nauticalMile"],"sources":["WhereClause.ts"],"sourcesContent":["/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport type { BBox, Point, Polygon } from \"geojson\";\n\nimport type {\n DerivedObjectOrInterfaceDefinition,\n ObjectOrInterfaceDefinition,\n} from \"../ontology/ObjectOrInterface.js\";\nimport type {\n CompileTimeMetadata,\n ObjectMetadata,\n} from \"../ontology/ObjectTypeDefinition.js\";\nimport type { SimplePropertyDef } from \"../ontology/SimplePropertyDef.js\";\nimport type { BaseWirePropertyTypes } from \"../ontology/WirePropertyTypes.js\";\nimport type { IsNever } from \"../OsdkObjectFrom.js\";\nimport type { ArrayFilter } from \"./ArrayFilter.js\";\nimport type { BaseFilter } from \"./BaseFilter.js\";\nimport type { BooleanFilter } from \"./BooleanFilter.js\";\nimport type { DatetimeFilter } from \"./DatetimeFilter.js\";\nimport type { GeoFilter } from \"./GeoFilter.js\";\nimport type { Just } from \"./Just.js\";\nimport type { NumberFilter } from \"./NumberFilter.js\";\nimport type { StringFilter } from \"./StringFilter.js\";\n\nexport type PossibleWhereClauseFilters =\n | \"$gt\"\n | \"$eq\"\n | \"$ne\"\n | \"$isNull\"\n | \"$contains\"\n | \"$gte\"\n | \"$lt\"\n | \"$lte\"\n | \"$within\"\n | \"$in\"\n | \"$intersects\"\n | \"$startsWith\"\n | \"$containsAllTermsInOrder\"\n | \"$containsAnyTerm\"\n | \"$containsAllTerms\"\n | \"$interval\"\n | \"$matchesRegex\";\n\n// the value side of this needs to match DistanceUnit from @osdk/foundry but we don't\n// want the dependency\nexport const DistanceUnitMapping: {\n centimeter: \"CENTIMETERS\";\n centimeters: \"CENTIMETERS\";\n cm: \"CENTIMETERS\";\n meter: \"METERS\";\n meters: \"METERS\";\n m: \"METERS\";\n kilometer: \"KILOMETERS\";\n kilometers: \"KILOMETERS\";\n km: \"KILOMETERS\";\n inch: \"INCHES\";\n inches: \"INCHES\";\n foot: \"FEET\";\n feet: \"FEET\";\n yard: \"YARDS\";\n yards: \"YARDS\";\n mile: \"MILES\";\n miles: \"MILES\";\n nautical_mile: \"NAUTICAL_MILES\";\n nauticalMile: \"NAUTICAL_MILES\";\n \"nautical miles\": \"NAUTICAL_MILES\";\n} = {\n centimeter: \"CENTIMETERS\",\n centimeters: \"CENTIMETERS\",\n cm: \"CENTIMETERS\",\n meter: \"METERS\",\n meters: \"METERS\",\n m: \"METERS\",\n kilometer: \"KILOMETERS\",\n kilometers: \"KILOMETERS\",\n km: \"KILOMETERS\",\n inch: \"INCHES\",\n inches: \"INCHES\",\n foot: \"FEET\",\n feet: \"FEET\",\n yard: \"YARDS\",\n yards: \"YARDS\",\n mile: \"MILES\",\n miles: \"MILES\",\n nautical_mile: \"NAUTICAL_MILES\",\n nauticalMile: \"NAUTICAL_MILES\",\n \"nautical miles\": \"NAUTICAL_MILES\",\n} satisfies Record<\n string,\n | \"CENTIMETERS\"\n | \"METERS\"\n | \"KILOMETERS\"\n | \"INCHES\"\n | \"FEET\"\n | \"YARDS\"\n | \"MILES\"\n | \"NAUTICAL_MILES\"\n>;\n\nexport type GeoFilter_Within = {\n $within:\n | {\n $distance: [number, keyof typeof DistanceUnitMapping];\n $of: [number, number] | Readonly<Point>;\n $bbox?: never;\n $polygon?: never;\n }\n | {\n $bbox: BBox;\n $distance?: never;\n $of?: never;\n $polygon?: never;\n }\n | BBox\n | {\n $polygon: Polygon[\"coordinates\"];\n $bbox?: never;\n $distance?: never;\n $of?: never;\n }\n | Polygon;\n};\n\nexport type GeoFilter_Intersects = {\n $intersects:\n | {\n $bbox: BBox;\n $polygon?: never;\n }\n | BBox\n | {\n $polygon: Polygon[\"coordinates\"];\n $bbox?: never;\n }\n | Polygon;\n};\n\ntype BaseFilterFor<T> =\n T extends Record<string, BaseWirePropertyTypes>\n ? StructFilterOpts<T>\n : T extends \"string\"\n ? StringFilter\n : T extends \"geopoint\" | \"geoshape\"\n ? GeoFilter\n : T extends \"datetime\" | \"timestamp\"\n ? DatetimeFilter\n : T extends \"boolean\"\n ? BooleanFilter\n : T extends WhereClauseNumberPropertyTypes\n ? NumberFilter\n : BaseFilter<string>; // Fallback for unknown types\n\ntype FilterFor<PD extends ObjectMetadata.Property> =\n PD[\"multiplicity\"] extends true\n ? ArrayFilter<BaseFilterFor<PD[\"type\"]>>\n : PD[\"type\"] extends Record<string, BaseWirePropertyTypes>\n ? StructFilter<PD[\"type\"]> | BaseFilter.$isNull<string>\n : BaseFilterFor<PD[\"type\"]>;\n\ntype StructFilterOpts<ST extends Record<string, BaseWirePropertyTypes>> = {\n [K in keyof ST]?: FilterFor<{ type: ST[K] }>;\n};\ntype StructFilter<ST extends Record<string, BaseWirePropertyTypes>> = {\n [K in keyof ST]: Just<K, StructFilterOpts<ST>>;\n}[keyof ST];\n\ntype WhereClauseNumberPropertyTypes =\n | \"double\"\n | \"integer\"\n | \"long\"\n | \"float\"\n | \"decimal\"\n | \"byte\";\n\ntype SpecialPropertyFilter = StringFilter | NumberFilter | DatetimeFilter;\n\ntype PrimaryKeyFilterFor<T extends ObjectOrInterfaceDefinition> =\n CompileTimeMetadata<T> extends { primaryKeyType: infer PKT extends string }\n ? BaseFilterFor<PKT>\n : SpecialPropertyFilter;\n\nexport type SpecialPropertyWhereClause<T extends ObjectOrInterfaceDefinition> =\n {\n $title?: SpecialPropertyFilter;\n $primaryKey?: PrimaryKeyFilterFor<T>;\n };\n\nexport type AndWhereClause<\n T extends ObjectOrInterfaceDefinition,\n RDPs extends Record<string, SimplePropertyDef> = {},\n> = {\n $and: WhereClause<T, RDPs>[];\n};\n\nexport type OrWhereClause<\n T extends ObjectOrInterfaceDefinition,\n RDPs extends Record<string, SimplePropertyDef> = {},\n> = {\n $or: WhereClause<T, RDPs>[];\n};\n\nexport type NotWhereClause<\n T extends ObjectOrInterfaceDefinition,\n RDPs extends Record<string, SimplePropertyDef> = {},\n> = {\n $not: WhereClause<T, RDPs>;\n};\n\nexport type PropertyWhereClause<T extends ObjectOrInterfaceDefinition> = {\n [P in keyof CompileTimeMetadata<T>[\"properties\"]]?: FilterFor<\n CompileTimeMetadata<T>[\"properties\"][P]\n >;\n};\n\ntype MergedPropertyWhereClause<\n T extends ObjectOrInterfaceDefinition,\n RDPs extends Record<string, SimplePropertyDef> = {},\n> =\n | PropertyWhereClause<\n DerivedObjectOrInterfaceDefinition.WithDerivedProperties<T, RDPs>\n >\n | SpecialPropertyWhereClause<T>;\n\nexport type WhereClause<\n T extends ObjectOrInterfaceDefinition,\n RDPs extends Record<string, SimplePropertyDef> = {},\n> =\n | OrWhereClause<T, RDPs>\n | AndWhereClause<T, RDPs>\n | NotWhereClause<T, RDPs>\n | (IsNever<keyof CompileTimeMetadata<T>[\"properties\"]> extends true\n ? Record<string, never>\n : MergedPropertyWhereClause<T, RDPs>);\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AA2CA;AACA;AACA,OAAO,MAAMA,mBAqBZ,GAAG;EACFC,UAAU,EAAE,aAAa;EACzBC,WAAW,EAAE,aAAa;EAC1BC,EAAE,EAAE,aAAa;EACjBC,KAAK,EAAE,QAAQ;EACfC,MAAM,EAAE,QAAQ;EAChBC,CAAC,EAAE,QAAQ;EACXC,SAAS,EAAE,YAAY;EACvBC,UAAU,EAAE,YAAY;EACxBC,EAAE,EAAE,YAAY;EAChBC,IAAI,EAAE,QAAQ;EACdC,MAAM,EAAE,QAAQ;EAChBC,IAAI,EAAE,MAAM;EACZC,IAAI,EAAE,MAAM;EACZC,IAAI,EAAE,OAAO;EACbC,KAAK,EAAE,OAAO;EACdC,IAAI,EAAE,OAAO;EACbC,KAAK,EAAE,OAAO;EACdC,aAAa,EAAE,gBAAgB;EAC/BC,YAAY,EAAE,gBAAgB;EAC9B,gBAAgB,EAAE;AACpB,CAUC;;AAqDmC","ignoreList":[]}
1
+ {"version":3,"file":"WhereClause.js","names":["DistanceUnitMapping","centimeter","centimeters","cm","meter","meters","m","kilometer","kilometers","km","inch","inches","foot","feet","yard","yards","mile","miles","nautical_mile","nauticalMile"],"sources":["WhereClause.ts"],"sourcesContent":["/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport type { BBox, Point, Polygon } from \"geojson\";\n\nimport type {\n DerivedObjectOrInterfaceDefinition,\n ObjectOrInterfaceDefinition,\n} from \"../ontology/ObjectOrInterface.js\";\nimport type {\n CompileTimeMetadata,\n ObjectMetadata,\n} from \"../ontology/ObjectTypeDefinition.js\";\nimport type { SimplePropertyDef } from \"../ontology/SimplePropertyDef.js\";\nimport type { BaseWirePropertyTypes } from \"../ontology/WirePropertyTypes.js\";\nimport type { IsNever } from \"../OsdkObjectFrom.js\";\nimport type { ArrayFilter } from \"./ArrayFilter.js\";\nimport type { BaseFilter } from \"./BaseFilter.js\";\nimport type { BooleanFilter } from \"./BooleanFilter.js\";\nimport type { DatetimeFilter } from \"./DatetimeFilter.js\";\nimport type { GeoFilter } from \"./GeoFilter.js\";\nimport type { Just } from \"./Just.js\";\nimport type { NumberFilter } from \"./NumberFilter.js\";\nimport type { StringFilter } from \"./StringFilter.js\";\n\nexport type PossibleWhereClauseFilters =\n | \"$gt\"\n | \"$eq\"\n | \"$ne\"\n | \"$isNull\"\n | \"$contains\"\n | \"$gte\"\n | \"$lt\"\n | \"$lte\"\n | \"$within\"\n | \"$in\"\n | \"$intersects\"\n | \"$startsWith\"\n | \"$containsAllTermsInOrder\"\n | \"$containsAnyTerm\"\n | \"$containsAllTerms\"\n | \"$interval\"\n | \"$matchesRegex\";\n\n// the value side of this needs to match DistanceUnit from @osdk/foundry but we don't\n// want the dependency\nexport const DistanceUnitMapping: {\n centimeter: \"CENTIMETERS\";\n centimeters: \"CENTIMETERS\";\n cm: \"CENTIMETERS\";\n meter: \"METERS\";\n meters: \"METERS\";\n m: \"METERS\";\n kilometer: \"KILOMETERS\";\n kilometers: \"KILOMETERS\";\n km: \"KILOMETERS\";\n inch: \"INCHES\";\n inches: \"INCHES\";\n foot: \"FEET\";\n feet: \"FEET\";\n yard: \"YARDS\";\n yards: \"YARDS\";\n mile: \"MILES\";\n miles: \"MILES\";\n nautical_mile: \"NAUTICAL_MILES\";\n nauticalMile: \"NAUTICAL_MILES\";\n \"nautical miles\": \"NAUTICAL_MILES\";\n} = {\n centimeter: \"CENTIMETERS\",\n centimeters: \"CENTIMETERS\",\n cm: \"CENTIMETERS\",\n meter: \"METERS\",\n meters: \"METERS\",\n m: \"METERS\",\n kilometer: \"KILOMETERS\",\n kilometers: \"KILOMETERS\",\n km: \"KILOMETERS\",\n inch: \"INCHES\",\n inches: \"INCHES\",\n foot: \"FEET\",\n feet: \"FEET\",\n yard: \"YARDS\",\n yards: \"YARDS\",\n mile: \"MILES\",\n miles: \"MILES\",\n nautical_mile: \"NAUTICAL_MILES\",\n nauticalMile: \"NAUTICAL_MILES\",\n \"nautical miles\": \"NAUTICAL_MILES\",\n} satisfies Record<\n string,\n | \"CENTIMETERS\"\n | \"METERS\"\n | \"KILOMETERS\"\n | \"INCHES\"\n | \"FEET\"\n | \"YARDS\"\n | \"MILES\"\n | \"NAUTICAL_MILES\"\n>;\n\nexport type GeoFilter_Within = {\n $within:\n | {\n $distance: [number, keyof typeof DistanceUnitMapping];\n $of: [number, number] | Readonly<Point>;\n $bbox?: never;\n $polygon?: never;\n }\n | {\n $bbox: BBox;\n $distance?: never;\n $of?: never;\n $polygon?: never;\n }\n | BBox\n | {\n $polygon: Polygon[\"coordinates\"];\n $bbox?: never;\n $distance?: never;\n $of?: never;\n }\n | Polygon;\n};\n\nexport type GeoFilter_Intersects = {\n $intersects:\n | {\n $bbox: BBox;\n $polygon?: never;\n }\n | BBox\n | {\n $polygon: Polygon[\"coordinates\"];\n $bbox?: never;\n }\n | Polygon;\n};\n\ntype BaseFilterFor<T> =\n T extends Record<string, BaseWirePropertyTypes>\n ? StructFilterOpts<T>\n : T extends \"string\"\n ? StringFilter\n : T extends \"geopoint\" | \"geoshape\"\n ? GeoFilter\n : T extends \"datetime\" | \"timestamp\"\n ? DatetimeFilter\n : T extends \"boolean\"\n ? BooleanFilter\n : T extends WhereClauseNumberPropertyTypes\n ? NumberFilter\n : BaseFilter<string>; // Fallback for unknown types\n\ntype FilterFor<PD extends ObjectMetadata.Property> =\n PD[\"multiplicity\"] extends true\n ? ArrayFilter<BaseFilterFor<PD[\"type\"]>>\n : PD[\"type\"] extends Record<string, BaseWirePropertyTypes>\n ? StructFilter<PD[\"type\"]> | BaseFilter.$isNull<string>\n : BaseFilterFor<PD[\"type\"]>;\n\ntype StructFilterOpts<ST extends Record<string, BaseWirePropertyTypes>> = {\n [K in keyof ST]?: FilterFor<{ type: ST[K] }>;\n};\ntype StructFilter<ST extends Record<string, BaseWirePropertyTypes>> = {\n [K in keyof ST]: Just<K, StructFilterOpts<ST>>;\n}[keyof ST];\n\ntype WhereClauseNumberPropertyTypes =\n | \"double\"\n | \"integer\"\n | \"long\"\n | \"float\"\n | \"decimal\"\n | \"byte\";\n\ntype SpecialPropertyFilter = StringFilter | NumberFilter | DatetimeFilter;\n\ntype PrimaryKeyFilterFor<T extends ObjectOrInterfaceDefinition> =\n CompileTimeMetadata<T> extends { primaryKeyType: infer PKT extends string }\n ? BaseFilterFor<PKT>\n : SpecialPropertyFilter;\n\nexport type SpecialPropertyWhereClause<T extends ObjectOrInterfaceDefinition> =\n {\n $title?: SpecialPropertyFilter;\n $primaryKey?: PrimaryKeyFilterFor<T>;\n };\n\nexport type AndWhereClause<\n T extends ObjectOrInterfaceDefinition,\n RDPs extends Record<string, SimplePropertyDef> = {},\n> = {\n $and: WhereClause<T, RDPs>[];\n};\n\nexport type OrWhereClause<\n T extends ObjectOrInterfaceDefinition,\n RDPs extends Record<string, SimplePropertyDef> = {},\n> = {\n $or: WhereClause<T, RDPs>[];\n};\n\nexport type NotWhereClause<\n T extends ObjectOrInterfaceDefinition,\n RDPs extends Record<string, SimplePropertyDef> = {},\n> = {\n $not: WhereClause<T, RDPs>;\n};\n\nexport type PropertyWhereClause<T extends ObjectOrInterfaceDefinition> = {\n [P in keyof CompileTimeMetadata<T>[\"properties\"]]?: FilterFor<\n CompileTimeMetadata<T>[\"properties\"][P]\n >;\n};\n\nexport type WhereClause<\n T extends ObjectOrInterfaceDefinition,\n RDPs extends Record<string, SimplePropertyDef> = {},\n> =\n | OrWhereClause<T, RDPs>\n | AndWhereClause<T, RDPs>\n | NotWhereClause<T, RDPs>\n | SpecialPropertyWhereClause<T>\n | (IsNever<keyof CompileTimeMetadata<T>[\"properties\"]> extends true\n ? Record<string, never>\n : PropertyWhereClause<\n DerivedObjectOrInterfaceDefinition.WithDerivedProperties<T, RDPs>\n >);\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AA2CA;AACA;AACA,OAAO,MAAMA,mBAqBZ,GAAG;EACFC,UAAU,EAAE,aAAa;EACzBC,WAAW,EAAE,aAAa;EAC1BC,EAAE,EAAE,aAAa;EACjBC,KAAK,EAAE,QAAQ;EACfC,MAAM,EAAE,QAAQ;EAChBC,CAAC,EAAE,QAAQ;EACXC,SAAS,EAAE,YAAY;EACvBC,UAAU,EAAE,YAAY;EACxBC,EAAE,EAAE,YAAY;EAChBC,IAAI,EAAE,QAAQ;EACdC,MAAM,EAAE,QAAQ;EAChBC,IAAI,EAAE,MAAM;EACZC,IAAI,EAAE,MAAM;EACZC,IAAI,EAAE,OAAO;EACbC,KAAK,EAAE,OAAO;EACdC,IAAI,EAAE,OAAO;EACbC,KAAK,EAAE,OAAO;EACdC,aAAa,EAAE,gBAAgB;EAC/BC,YAAY,EAAE,gBAAgB;EAC9B,gBAAgB,EAAE;AACpB,CAUC;;AAqDmC","ignoreList":[]}
@@ -96,12 +96,8 @@ export type NotWhereClause<
96
96
  $not: WhereClause<T, RDPs>
97
97
  };
98
98
  export type PropertyWhereClause<T extends ObjectOrInterfaceDefinition> = { [P in keyof CompileTimeMetadata<T>["properties"]]? : FilterFor<CompileTimeMetadata<T>["properties"][P]> };
99
- type MergedPropertyWhereClause<
100
- T extends ObjectOrInterfaceDefinition,
101
- RDPs extends Record<string, SimplePropertyDef> = {}
102
- > = PropertyWhereClause<DerivedObjectOrInterfaceDefinition.WithDerivedProperties<T, RDPs>> | SpecialPropertyWhereClause<T>;
103
99
  export type WhereClause<
104
100
  T extends ObjectOrInterfaceDefinition,
105
101
  RDPs extends Record<string, SimplePropertyDef> = {}
106
- > = OrWhereClause<T, RDPs> | AndWhereClause<T, RDPs> | NotWhereClause<T, RDPs> | (IsNever<keyof CompileTimeMetadata<T>["properties"]> extends true ? Record<string, never> : MergedPropertyWhereClause<T, RDPs>);
102
+ > = OrWhereClause<T, RDPs> | AndWhereClause<T, RDPs> | NotWhereClause<T, RDPs> | SpecialPropertyWhereClause<T> | (IsNever<keyof CompileTimeMetadata<T>["properties"]> extends true ? Record<string, never> : PropertyWhereClause<DerivedObjectOrInterfaceDefinition.WithDerivedProperties<T, RDPs>>);
107
103
  export {};
@@ -1 +1 @@
1
- {"mappings":"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","names":["DistanceUnitMapping: {\n centimeter: \"CENTIMETERS\";\n centimeters: \"CENTIMETERS\";\n cm: \"CENTIMETERS\";\n meter: \"METERS\";\n meters: \"METERS\";\n m: \"METERS\";\n kilometer: \"KILOMETERS\";\n kilometers: \"KILOMETERS\";\n km: \"KILOMETERS\";\n inch: \"INCHES\";\n inches: \"INCHES\";\n foot: \"FEET\";\n feet: \"FEET\";\n yard: \"YARDS\";\n yards: \"YARDS\";\n mile: \"MILES\";\n miles: \"MILES\";\n nautical_mile: \"NAUTICAL_MILES\";\n nauticalMile: \"NAUTICAL_MILES\";\n \"nautical miles\": \"NAUTICAL_MILES\";\n}"],"sources":["../../../src/aggregate/WhereClause.ts"],"version":3,"file":"WhereClause.d.ts"}
1
+ {"mappings":"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","names":["DistanceUnitMapping: {\n centimeter: \"CENTIMETERS\";\n centimeters: \"CENTIMETERS\";\n cm: \"CENTIMETERS\";\n meter: \"METERS\";\n meters: \"METERS\";\n m: \"METERS\";\n kilometer: \"KILOMETERS\";\n kilometers: \"KILOMETERS\";\n km: \"KILOMETERS\";\n inch: \"INCHES\";\n inches: \"INCHES\";\n foot: \"FEET\";\n feet: \"FEET\";\n yard: \"YARDS\";\n yards: \"YARDS\";\n mile: \"MILES\";\n miles: \"MILES\";\n nautical_mile: \"NAUTICAL_MILES\";\n nauticalMile: \"NAUTICAL_MILES\";\n \"nautical miles\": \"NAUTICAL_MILES\";\n}"],"sources":["../../../src/aggregate/WhereClause.ts"],"version":3,"file":"WhereClause.d.ts"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/api",
3
- "version": "2.58.0",
3
+ "version": "2.58.1-main-1aff7f421d982948f08eb265462b4b4cd8ce3cd4",
4
4
  "description": "",
5
5
  "access": "public",
6
6
  "license": "Apache-2.0",