@osdk/api 2.7.0-beta.5 → 2.7.0-beta.7

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,13 @@
1
1
  # @osdk/api
2
2
 
3
+ ## 2.7.0-beta.7
4
+
5
+ ## 2.7.0-beta.6
6
+
7
+ ### Minor Changes
8
+
9
+ - c9ca08d: Add TS docs for in filter
10
+
3
11
  ## 2.7.0-beta.5
4
12
 
5
13
  ## 2.7.0-beta.4
@@ -1 +1 @@
1
- {"version":3,"file":"BaseFilter.js","names":["EqFilter","BaseFilter"],"sources":["BaseFilter.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 { Just } from \"./Just.js\";\n\ntype EqFilterOption<T> = {\n \"$eq\": T;\n};\n\nexport namespace EqFilter {\n export interface $eq<T> extends Just<\"$eq\", EqFilterOption<T>> {}\n}\n\nexport interface BaseFilterOptions<T> extends EqFilterOption<T> {\n \"$ne\": T;\n \"$isNull\": boolean;\n \"$in\": ReadonlyArray<T>;\n}\n\nexport namespace BaseFilter {\n export interface $eq<T> extends Just<\"$eq\", BaseFilterOptions<T>> {}\n export interface $ne<T> extends Just<\"$ne\", BaseFilterOptions<T>> {}\n export interface $in<T> extends Just<\"$in\", BaseFilterOptions<T>> {}\n export interface $isNull<T> extends Just<\"$isNull\", BaseFilterOptions<T>> {}\n}\n\nexport type BaseFilter<T> =\n | BaseFilter.$eq<T>\n | BaseFilter.$ne<T>\n | BaseFilter.$in<T>\n | BaseFilter.$isNull<T>;\n\n/** @internal */\nexport type CatchThemAll<T> = CatchThemAllInternal<T, keyof T>;\n\n// extends for union distribution\n/** @internal */\ntype CatchThemAllInternal<T, K extends keyof T> = K extends keyof T\n ? { [k in K]: T[k] }\n : never;\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAdA,WAsBiBA,QAAQ;AAAA,WAURC,UAAU;AAa3B;AAGA;AACA","ignoreList":[]}
1
+ {"version":3,"file":"BaseFilter.js","names":["EqFilter","BaseFilter"],"sources":["BaseFilter.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 { Just } from \"./Just.js\";\n\ntype EqFilterOption<T> = {\n \"$eq\": T;\n};\n\nexport namespace EqFilter {\n export interface $eq<T> extends Just<\"$eq\", EqFilterOption<T>> {}\n}\n\nexport interface BaseFilterOptions<T> extends EqFilterOption<T> {\n \"$ne\": T;\n \"$isNull\": boolean;\n /**\n * Matches any of the provided values. If an empty array is provided, the filter will match all objects.\n */\n \"$in\": ReadonlyArray<T>;\n}\n\nexport namespace BaseFilter {\n export interface $eq<T> extends Just<\"$eq\", BaseFilterOptions<T>> {}\n export interface $ne<T> extends Just<\"$ne\", BaseFilterOptions<T>> {}\n export interface $in<T> extends Just<\"$in\", BaseFilterOptions<T>> {}\n export interface $isNull<T> extends Just<\"$isNull\", BaseFilterOptions<T>> {}\n}\n\nexport type BaseFilter<T> =\n | BaseFilter.$eq<T>\n | BaseFilter.$ne<T>\n | BaseFilter.$in<T>\n | BaseFilter.$isNull<T>;\n\n/** @internal */\nexport type CatchThemAll<T> = CatchThemAllInternal<T, keyof T>;\n\n// extends for union distribution\n/** @internal */\ntype CatchThemAllInternal<T, K extends keyof T> = K extends keyof T\n ? { [k in K]: T[k] }\n : never;\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAdA,WAsBiBA,QAAQ;AAAA,WAaRC,UAAU;AAa3B;AAGA;AACA","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"file":"BooleanFilter.js","names":["BooleanFilter","_typeCheck"],"sources":["BooleanFilter.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 { BaseFilterOptions, CatchThemAll } from \"./BaseFilter.js\";\nimport type { Just } from \"./Just.js\";\n\ninterface BooleanFilterOptions extends BaseFilterOptions<boolean> {}\n\nexport namespace BooleanFilter {\n export interface $eq extends Just<\"$eq\", BooleanFilterOptions> {}\n export interface $ne extends Just<\"$ne\", BooleanFilterOptions> {}\n export interface $isNull extends Just<\"$isNull\", BooleanFilterOptions> {}\n export interface $in extends Just<\"$in\", BooleanFilterOptions> {}\n}\nexport type BooleanFilter =\n | boolean\n | BooleanFilter.$eq\n | BooleanFilter.$ne\n | BooleanFilter.$in\n | BooleanFilter.$isNull;\n\n/** @internal */\nfunction _typeCheck() {\n const b: BooleanFilter = {} as CatchThemAll<BooleanFilterOptions>;\n}\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAdA,WAqBiBA,aAAa;AAa9B;AACA,SAASC,UAAUA,CAAA,EAAG,CAEtB","ignoreList":[]}
1
+ {"version":3,"file":"BooleanFilter.js","names":["BooleanFilter","_typeCheck"],"sources":["BooleanFilter.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 { BaseFilterOptions, CatchThemAll } from \"./BaseFilter.js\";\nimport type { Just } from \"./Just.js\";\n\ninterface BooleanFilterOptions extends BaseFilterOptions<boolean> {}\n\nexport namespace BooleanFilter {\n export interface $eq extends Just<\"$eq\", BooleanFilterOptions> {}\n export interface $ne extends Just<\"$ne\", BooleanFilterOptions> {}\n export interface $isNull extends Just<\"$isNull\", BooleanFilterOptions> {}\n /**\n * Matches any of the provided values. If an empty array is provided, the filter will match all objects.\n */\n export interface $in extends Just<\"$in\", BooleanFilterOptions> {}\n}\nexport type BooleanFilter =\n | boolean\n | BooleanFilter.$eq\n | BooleanFilter.$ne\n | BooleanFilter.$in\n | BooleanFilter.$isNull;\n\n/** @internal */\nfunction _typeCheck() {\n const b: BooleanFilter = {} as CatchThemAll<BooleanFilterOptions>;\n}\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAdA,WAqBiBA,aAAa;AAgB9B;AACA,SAASC,UAAUA,CAAA,EAAG,CAEtB","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"file":"StringFilter.js","names":["StringFilter","_typeCheck"],"sources":["StringFilter.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 { BaseFilterOptions, CatchThemAll } from \"./BaseFilter.js\";\nimport type { Just } from \"./Just.js\";\n\ninterface StringFilterOptions extends BaseFilterOptions<string> {\n \"$startsWith\": string;\n \"$containsAllTermsInOrder\": string;\n \"$containsAnyTerm\": string | { term: string; fuzzySearch?: boolean };\n \"$containsAllTerms\": string | { term: string; fuzzySearch?: boolean };\n \"$in\": ReadonlyArray<string>;\n}\n\nexport namespace StringFilter {\n export interface $eq extends Just<\"$eq\", StringFilterOptions> {}\n export interface $ne extends Just<\"$ne\", StringFilterOptions> {}\n export interface $isNull extends Just<\"$isNull\", StringFilterOptions> {}\n export interface $startsWith\n extends Just<\"$startsWith\", StringFilterOptions>\n {\n }\n export interface $containsAllTermsInOrder\n extends Just<\"$containsAllTermsInOrder\", StringFilterOptions>\n {\n }\n export interface $containsAnyTerm\n extends Just<\"$containsAnyTerm\", StringFilterOptions>\n {\n }\n export interface $containsAllTerms\n extends Just<\"$containsAllTerms\", StringFilterOptions>\n {\n }\n export interface $in extends Just<\"$in\", StringFilterOptions> {}\n}\n\nexport type StringFilter =\n | string\n | StringFilter.$eq\n | StringFilter.$ne\n | StringFilter.$isNull\n | StringFilter.$in\n | StringFilter.$startsWith\n | StringFilter.$containsAllTermsInOrder\n | StringFilter.$containsAnyTerm\n | StringFilter.$containsAllTerms;\n\n/** @internal */\nfunction _typeCheck() {\n const b: StringFilter = {} as CatchThemAll<StringFilterOptions>;\n}\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAdA,WA2BiBA,YAAY;AAkC7B;AACA,SAASC,UAAUA,CAAA,EAAG,CAEtB","ignoreList":[]}
1
+ {"version":3,"file":"StringFilter.js","names":["StringFilter","_typeCheck"],"sources":["StringFilter.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 { BaseFilterOptions, CatchThemAll } from \"./BaseFilter.js\";\nimport type { Just } from \"./Just.js\";\n\ninterface StringFilterOptions extends BaseFilterOptions<string> {\n \"$startsWith\": string;\n \"$containsAllTermsInOrder\": string;\n \"$containsAnyTerm\": string | { term: string; fuzzySearch?: boolean };\n \"$containsAllTerms\": string | { term: string; fuzzySearch?: boolean };\n /**\n * Matches any of the provided values. If an empty array is provided, the filter will match all objects.\n */\n \"$in\": ReadonlyArray<string>;\n}\n\nexport namespace StringFilter {\n export interface $eq extends Just<\"$eq\", StringFilterOptions> {}\n export interface $ne extends Just<\"$ne\", StringFilterOptions> {}\n export interface $isNull extends Just<\"$isNull\", StringFilterOptions> {}\n export interface $startsWith\n extends Just<\"$startsWith\", StringFilterOptions>\n {\n }\n export interface $containsAllTermsInOrder\n extends Just<\"$containsAllTermsInOrder\", StringFilterOptions>\n {\n }\n export interface $containsAnyTerm\n extends Just<\"$containsAnyTerm\", StringFilterOptions>\n {\n }\n export interface $containsAllTerms\n extends Just<\"$containsAllTerms\", StringFilterOptions>\n {\n }\n export interface $in extends Just<\"$in\", StringFilterOptions> {}\n}\n\nexport type StringFilter =\n | string\n | StringFilter.$eq\n | StringFilter.$ne\n | StringFilter.$isNull\n | StringFilter.$in\n | StringFilter.$startsWith\n | StringFilter.$containsAllTermsInOrder\n | StringFilter.$containsAnyTerm\n | StringFilter.$containsAllTerms;\n\n/** @internal */\nfunction _typeCheck() {\n const b: StringFilter = {} as CatchThemAll<StringFilterOptions>;\n}\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAdA,WA8BiBA,YAAY;AAkC7B;AACA,SAASC,UAAUA,CAAA,EAAG,CAEtB","ignoreList":[]}
@@ -1010,6 +1010,9 @@ type EqFilterOption<T> = {
1010
1010
  interface BaseFilterOptions<T> extends EqFilterOption<T> {
1011
1011
  "$ne": T;
1012
1012
  "$isNull": boolean;
1013
+ /**
1014
+ * Matches any of the provided values. If an empty array is provided, the filter will match all objects.
1015
+ */
1013
1016
  "$in": ReadonlyArray<T>;
1014
1017
  }
1015
1018
  declare namespace BaseFilter {
@@ -1033,6 +1036,9 @@ declare namespace BooleanFilter {
1033
1036
  }
1034
1037
  interface $isNull extends Just<"$isNull", BooleanFilterOptions> {
1035
1038
  }
1039
+ /**
1040
+ * Matches any of the provided values. If an empty array is provided, the filter will match all objects.
1041
+ */
1036
1042
  interface $in extends Just<"$in", BooleanFilterOptions> {
1037
1043
  }
1038
1044
  }
@@ -1137,6 +1143,9 @@ interface StringFilterOptions extends BaseFilterOptions<string> {
1137
1143
  term: string;
1138
1144
  fuzzySearch?: boolean;
1139
1145
  };
1146
+ /**
1147
+ * Matches any of the provided values. If an empty array is provided, the filter will match all objects.
1148
+ */
1140
1149
  "$in": ReadonlyArray<string>;
1141
1150
  }
1142
1151
  declare namespace StringFilter {
@@ -1,5 +1,5 @@
1
- import { A as AttachmentUpload, M as MediaReference, a as MediaUpload, b as Attachment, O as ObjectTypeDefinition, c as ObjectIdentifiers, d as OsdkObjectPrimaryKeyType, e as ObjectSet, I as InterfaceDefinition, C as CompileTimeMetadata, f as OsdkMetadata, R as ReleaseStatus, g as ObjectOrInterfaceDefinition, P as PropertyValueWireToClient, h as PrimaryKeyTypes, i as OsdkBase } from './ObjectSet-BQ-zsXiO.cjs';
2
- export { ap as Affix, j as AggregateOpts, k as AggregateOptsThatErrorsAndDisallowsOrderingWithMultipleGroupBy, n as AggregationClause, l as AggregationResultsWithGroups, m as AggregationResultsWithoutGroups, o as AggregationsResults, z as AllGroupByValues, p as AndWhereClause, F as AsyncIterArgs, H as Augment, J as Augments, a1 as BaseObjectSet, aQ as BaseWirePropertyTypes, aT as ConvertProps, ae as DatetimeFormat, af as DatetimeLocalizedFormat, ag as DatetimeLocalizedFormatType, ah as DatetimeStringFormat, ai as DatetimeTimezone, aj as DatetimeTimezoneStatic, ak as DatetimeTimezoneUser, x as DerivedProperty, D as DistanceUnitMapping, aq as DurationBaseValue, ar as DurationFormatStyle, y as DurationMapping, as as DurationPrecision, a2 as FetchLinksPageResult, K as FetchPageArgs, X as FetchPageResult, G as GeoFilterOptions, q as GeoFilter_Intersects, r as GeoFilter_Within, aY as GeotimeSeriesProperty, B as GroupByClause, E as GroupByRange, at as HumanReadableFormat, a6 as InterfaceMetadata, an as KnownType, b1 as LinkNames, a3 as LinkTypeApiNamesFor, b0 as LinkedType, aU as MaybeScore, Z as Media, _ as MediaMetadata, a4 as MinimalDirectedObjectLinkInstance, N as NotWhereClause, L as NullabilityAdherence, au as NumberFormatAffix, av as NumberFormatCurrency, aw as NumberFormatCurrencyStyle, ax as NumberFormatCustomUnit, ay as NumberFormatDuration, az as NumberFormatFixedValues, aA as NumberFormatNotation, aB as NumberFormatOptions, aC as NumberFormatRatio, aD as NumberFormatScale, aE as NumberFormatStandard, aF as NumberFormatStandardUnit, aG as NumberRatioType, aH as NumberRoundingMode, aI as NumberScaleType, a9 as ObjectMetadata, Q as ObjectSetArgs, a5 as ObjectSetSubscription, a8 as ObjectSpecifier, s as OrWhereClause, aV as Osdk, u as OsdkObjectCreatePropertyType, w as OsdkObjectLinksObject, v as OsdkObjectPropertyType, aW as PageResult, t as PossibleWhereClauseFilters, aS as PrimaryKeyType, ad as PropertyBooleanFormattingRule, al as PropertyDateFormattingRule, aa as PropertyDef, a7 as PropertyKeys, ao as PropertyKnownTypeFormattingRule, aJ as PropertyNumberFormattingRule, aK as PropertyNumberFormattingRuleType, am as PropertyTimestampFormattingRule, aN as PropertyTypeReference, aO as PropertyTypeReferenceOrStringConstant, aM as PropertyValueFormattingRule, a0 as Result, T as SelectArg, U as SelectArgToKeys, ac as SimplePropertyDef, S as SingleLinkAccessor, Y as SingleOsdkResult, aP as StringConstant, aL as TimeCodeFormat, aZ as TimeSeriesPoint, a_ as TimeSeriesProperty, a$ as TimeSeriesQuery, aX as TimeseriesDurationMapping, V as ValidAggregationKeys, ab as VersionBound, W as WhereClause, aR as WirePropertyTypes, $ as isOk } from './ObjectSet-BQ-zsXiO.cjs';
1
+ import { A as AttachmentUpload, M as MediaReference, a as MediaUpload, b as Attachment, O as ObjectTypeDefinition, c as ObjectIdentifiers, d as OsdkObjectPrimaryKeyType, e as ObjectSet, I as InterfaceDefinition, C as CompileTimeMetadata, f as OsdkMetadata, R as ReleaseStatus, g as ObjectOrInterfaceDefinition, P as PropertyValueWireToClient, h as PrimaryKeyTypes, i as OsdkBase } from './ObjectSet-DgucGuIA.cjs';
2
+ export { ap as Affix, j as AggregateOpts, k as AggregateOptsThatErrorsAndDisallowsOrderingWithMultipleGroupBy, n as AggregationClause, l as AggregationResultsWithGroups, m as AggregationResultsWithoutGroups, o as AggregationsResults, z as AllGroupByValues, p as AndWhereClause, F as AsyncIterArgs, H as Augment, J as Augments, a1 as BaseObjectSet, aQ as BaseWirePropertyTypes, aT as ConvertProps, ae as DatetimeFormat, af as DatetimeLocalizedFormat, ag as DatetimeLocalizedFormatType, ah as DatetimeStringFormat, ai as DatetimeTimezone, aj as DatetimeTimezoneStatic, ak as DatetimeTimezoneUser, x as DerivedProperty, D as DistanceUnitMapping, aq as DurationBaseValue, ar as DurationFormatStyle, y as DurationMapping, as as DurationPrecision, a2 as FetchLinksPageResult, K as FetchPageArgs, X as FetchPageResult, G as GeoFilterOptions, q as GeoFilter_Intersects, r as GeoFilter_Within, aY as GeotimeSeriesProperty, B as GroupByClause, E as GroupByRange, at as HumanReadableFormat, a6 as InterfaceMetadata, an as KnownType, b1 as LinkNames, a3 as LinkTypeApiNamesFor, b0 as LinkedType, aU as MaybeScore, Z as Media, _ as MediaMetadata, a4 as MinimalDirectedObjectLinkInstance, N as NotWhereClause, L as NullabilityAdherence, au as NumberFormatAffix, av as NumberFormatCurrency, aw as NumberFormatCurrencyStyle, ax as NumberFormatCustomUnit, ay as NumberFormatDuration, az as NumberFormatFixedValues, aA as NumberFormatNotation, aB as NumberFormatOptions, aC as NumberFormatRatio, aD as NumberFormatScale, aE as NumberFormatStandard, aF as NumberFormatStandardUnit, aG as NumberRatioType, aH as NumberRoundingMode, aI as NumberScaleType, a9 as ObjectMetadata, Q as ObjectSetArgs, a5 as ObjectSetSubscription, a8 as ObjectSpecifier, s as OrWhereClause, aV as Osdk, u as OsdkObjectCreatePropertyType, w as OsdkObjectLinksObject, v as OsdkObjectPropertyType, aW as PageResult, t as PossibleWhereClauseFilters, aS as PrimaryKeyType, ad as PropertyBooleanFormattingRule, al as PropertyDateFormattingRule, aa as PropertyDef, a7 as PropertyKeys, ao as PropertyKnownTypeFormattingRule, aJ as PropertyNumberFormattingRule, aK as PropertyNumberFormattingRuleType, am as PropertyTimestampFormattingRule, aN as PropertyTypeReference, aO as PropertyTypeReferenceOrStringConstant, aM as PropertyValueFormattingRule, a0 as Result, T as SelectArg, U as SelectArgToKeys, ac as SimplePropertyDef, S as SingleLinkAccessor, Y as SingleOsdkResult, aP as StringConstant, aL as TimeCodeFormat, aZ as TimeSeriesPoint, a_ as TimeSeriesProperty, a$ as TimeSeriesQuery, aX as TimeseriesDurationMapping, V as ValidAggregationKeys, ab as VersionBound, W as WhereClause, aR as WirePropertyTypes, $ as isOk } from './ObjectSet-DgucGuIA.cjs';
3
3
  import 'type-fest';
4
4
  import 'geojson';
5
5
 
@@ -1,5 +1,5 @@
1
- import { g as ObjectOrInterfaceDefinition, a7 as PropertyKeys, M as MediaReference, L as NullabilityAdherence, T as SelectArg, aV as Osdk, b2 as ExtractOptions, K as FetchPageArgs, X as FetchPageResult, i as OsdkBase } from '../ObjectSet-BQ-zsXiO.cjs';
2
- export { b3 as MinimalObjectSet } from '../ObjectSet-BQ-zsXiO.cjs';
1
+ import { g as ObjectOrInterfaceDefinition, a7 as PropertyKeys, M as MediaReference, L as NullabilityAdherence, T as SelectArg, aV as Osdk, b2 as ExtractOptions, K as FetchPageArgs, X as FetchPageResult, i as OsdkBase } from '../ObjectSet-DgucGuIA.cjs';
2
+ export { b3 as MinimalObjectSet } from '../ObjectSet-DgucGuIA.cjs';
3
3
  import 'type-fest';
4
4
  import 'geojson';
5
5
 
@@ -1 +1 @@
1
- {"version":3,"file":"BaseFilter.js","names":["EqFilter","BaseFilter"],"sources":["BaseFilter.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 { Just } from \"./Just.js\";\n\ntype EqFilterOption<T> = {\n \"$eq\": T;\n};\n\nexport namespace EqFilter {\n export interface $eq<T> extends Just<\"$eq\", EqFilterOption<T>> {}\n}\n\nexport interface BaseFilterOptions<T> extends EqFilterOption<T> {\n \"$ne\": T;\n \"$isNull\": boolean;\n \"$in\": ReadonlyArray<T>;\n}\n\nexport namespace BaseFilter {\n export interface $eq<T> extends Just<\"$eq\", BaseFilterOptions<T>> {}\n export interface $ne<T> extends Just<\"$ne\", BaseFilterOptions<T>> {}\n export interface $in<T> extends Just<\"$in\", BaseFilterOptions<T>> {}\n export interface $isNull<T> extends Just<\"$isNull\", BaseFilterOptions<T>> {}\n}\n\nexport type BaseFilter<T> =\n | BaseFilter.$eq<T>\n | BaseFilter.$ne<T>\n | BaseFilter.$in<T>\n | BaseFilter.$isNull<T>;\n\n/** @internal */\nexport type CatchThemAll<T> = CatchThemAllInternal<T, keyof T>;\n\n// extends for union distribution\n/** @internal */\ntype CatchThemAllInternal<T, K extends keyof T> = K extends keyof T\n ? { [k in K]: T[k] }\n : never;\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAdA,WAsBiBA,QAAQ;AAAA,WAURC,UAAU;AAa3B;AAGA;AACA","ignoreList":[]}
1
+ {"version":3,"file":"BaseFilter.js","names":["EqFilter","BaseFilter"],"sources":["BaseFilter.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 { Just } from \"./Just.js\";\n\ntype EqFilterOption<T> = {\n \"$eq\": T;\n};\n\nexport namespace EqFilter {\n export interface $eq<T> extends Just<\"$eq\", EqFilterOption<T>> {}\n}\n\nexport interface BaseFilterOptions<T> extends EqFilterOption<T> {\n \"$ne\": T;\n \"$isNull\": boolean;\n /**\n * Matches any of the provided values. If an empty array is provided, the filter will match all objects.\n */\n \"$in\": ReadonlyArray<T>;\n}\n\nexport namespace BaseFilter {\n export interface $eq<T> extends Just<\"$eq\", BaseFilterOptions<T>> {}\n export interface $ne<T> extends Just<\"$ne\", BaseFilterOptions<T>> {}\n export interface $in<T> extends Just<\"$in\", BaseFilterOptions<T>> {}\n export interface $isNull<T> extends Just<\"$isNull\", BaseFilterOptions<T>> {}\n}\n\nexport type BaseFilter<T> =\n | BaseFilter.$eq<T>\n | BaseFilter.$ne<T>\n | BaseFilter.$in<T>\n | BaseFilter.$isNull<T>;\n\n/** @internal */\nexport type CatchThemAll<T> = CatchThemAllInternal<T, keyof T>;\n\n// extends for union distribution\n/** @internal */\ntype CatchThemAllInternal<T, K extends keyof T> = K extends keyof T\n ? { [k in K]: T[k] }\n : never;\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAdA,WAsBiBA,QAAQ;AAAA,WAaRC,UAAU;AAa3B;AAGA;AACA","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"file":"BooleanFilter.js","names":["BooleanFilter","_typeCheck"],"sources":["BooleanFilter.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 { BaseFilterOptions, CatchThemAll } from \"./BaseFilter.js\";\nimport type { Just } from \"./Just.js\";\n\ninterface BooleanFilterOptions extends BaseFilterOptions<boolean> {}\n\nexport namespace BooleanFilter {\n export interface $eq extends Just<\"$eq\", BooleanFilterOptions> {}\n export interface $ne extends Just<\"$ne\", BooleanFilterOptions> {}\n export interface $isNull extends Just<\"$isNull\", BooleanFilterOptions> {}\n export interface $in extends Just<\"$in\", BooleanFilterOptions> {}\n}\nexport type BooleanFilter =\n | boolean\n | BooleanFilter.$eq\n | BooleanFilter.$ne\n | BooleanFilter.$in\n | BooleanFilter.$isNull;\n\n/** @internal */\nfunction _typeCheck() {\n const b: BooleanFilter = {} as CatchThemAll<BooleanFilterOptions>;\n}\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAdA,WAqBiBA,aAAa;AAa9B;AACA,SAASC,UAAUA,CAAA,EAAG,CAEtB","ignoreList":[]}
1
+ {"version":3,"file":"BooleanFilter.js","names":["BooleanFilter","_typeCheck"],"sources":["BooleanFilter.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 { BaseFilterOptions, CatchThemAll } from \"./BaseFilter.js\";\nimport type { Just } from \"./Just.js\";\n\ninterface BooleanFilterOptions extends BaseFilterOptions<boolean> {}\n\nexport namespace BooleanFilter {\n export interface $eq extends Just<\"$eq\", BooleanFilterOptions> {}\n export interface $ne extends Just<\"$ne\", BooleanFilterOptions> {}\n export interface $isNull extends Just<\"$isNull\", BooleanFilterOptions> {}\n /**\n * Matches any of the provided values. If an empty array is provided, the filter will match all objects.\n */\n export interface $in extends Just<\"$in\", BooleanFilterOptions> {}\n}\nexport type BooleanFilter =\n | boolean\n | BooleanFilter.$eq\n | BooleanFilter.$ne\n | BooleanFilter.$in\n | BooleanFilter.$isNull;\n\n/** @internal */\nfunction _typeCheck() {\n const b: BooleanFilter = {} as CatchThemAll<BooleanFilterOptions>;\n}\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAdA,WAqBiBA,aAAa;AAgB9B;AACA,SAASC,UAAUA,CAAA,EAAG,CAEtB","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"file":"StringFilter.js","names":["StringFilter","_typeCheck"],"sources":["StringFilter.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 { BaseFilterOptions, CatchThemAll } from \"./BaseFilter.js\";\nimport type { Just } from \"./Just.js\";\n\ninterface StringFilterOptions extends BaseFilterOptions<string> {\n \"$startsWith\": string;\n \"$containsAllTermsInOrder\": string;\n \"$containsAnyTerm\": string | { term: string; fuzzySearch?: boolean };\n \"$containsAllTerms\": string | { term: string; fuzzySearch?: boolean };\n \"$in\": ReadonlyArray<string>;\n}\n\nexport namespace StringFilter {\n export interface $eq extends Just<\"$eq\", StringFilterOptions> {}\n export interface $ne extends Just<\"$ne\", StringFilterOptions> {}\n export interface $isNull extends Just<\"$isNull\", StringFilterOptions> {}\n export interface $startsWith\n extends Just<\"$startsWith\", StringFilterOptions>\n {\n }\n export interface $containsAllTermsInOrder\n extends Just<\"$containsAllTermsInOrder\", StringFilterOptions>\n {\n }\n export interface $containsAnyTerm\n extends Just<\"$containsAnyTerm\", StringFilterOptions>\n {\n }\n export interface $containsAllTerms\n extends Just<\"$containsAllTerms\", StringFilterOptions>\n {\n }\n export interface $in extends Just<\"$in\", StringFilterOptions> {}\n}\n\nexport type StringFilter =\n | string\n | StringFilter.$eq\n | StringFilter.$ne\n | StringFilter.$isNull\n | StringFilter.$in\n | StringFilter.$startsWith\n | StringFilter.$containsAllTermsInOrder\n | StringFilter.$containsAnyTerm\n | StringFilter.$containsAllTerms;\n\n/** @internal */\nfunction _typeCheck() {\n const b: StringFilter = {} as CatchThemAll<StringFilterOptions>;\n}\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAdA,WA2BiBA,YAAY;AAkC7B;AACA,SAASC,UAAUA,CAAA,EAAG,CAEtB","ignoreList":[]}
1
+ {"version":3,"file":"StringFilter.js","names":["StringFilter","_typeCheck"],"sources":["StringFilter.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 { BaseFilterOptions, CatchThemAll } from \"./BaseFilter.js\";\nimport type { Just } from \"./Just.js\";\n\ninterface StringFilterOptions extends BaseFilterOptions<string> {\n \"$startsWith\": string;\n \"$containsAllTermsInOrder\": string;\n \"$containsAnyTerm\": string | { term: string; fuzzySearch?: boolean };\n \"$containsAllTerms\": string | { term: string; fuzzySearch?: boolean };\n /**\n * Matches any of the provided values. If an empty array is provided, the filter will match all objects.\n */\n \"$in\": ReadonlyArray<string>;\n}\n\nexport namespace StringFilter {\n export interface $eq extends Just<\"$eq\", StringFilterOptions> {}\n export interface $ne extends Just<\"$ne\", StringFilterOptions> {}\n export interface $isNull extends Just<\"$isNull\", StringFilterOptions> {}\n export interface $startsWith\n extends Just<\"$startsWith\", StringFilterOptions>\n {\n }\n export interface $containsAllTermsInOrder\n extends Just<\"$containsAllTermsInOrder\", StringFilterOptions>\n {\n }\n export interface $containsAnyTerm\n extends Just<\"$containsAnyTerm\", StringFilterOptions>\n {\n }\n export interface $containsAllTerms\n extends Just<\"$containsAllTerms\", StringFilterOptions>\n {\n }\n export interface $in extends Just<\"$in\", StringFilterOptions> {}\n}\n\nexport type StringFilter =\n | string\n | StringFilter.$eq\n | StringFilter.$ne\n | StringFilter.$isNull\n | StringFilter.$in\n | StringFilter.$startsWith\n | StringFilter.$containsAllTermsInOrder\n | StringFilter.$containsAnyTerm\n | StringFilter.$containsAllTerms;\n\n/** @internal */\nfunction _typeCheck() {\n const b: StringFilter = {} as CatchThemAll<StringFilterOptions>;\n}\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAdA,WA8BiBA,YAAY;AAkC7B;AACA,SAASC,UAAUA,CAAA,EAAG,CAEtB","ignoreList":[]}
@@ -8,6 +8,9 @@ export declare namespace EqFilter {
8
8
  export interface BaseFilterOptions<T> extends EqFilterOption<T> {
9
9
  "$ne": T;
10
10
  "$isNull": boolean;
11
+ /**
12
+ * Matches any of the provided values. If an empty array is provided, the filter will match all objects.
13
+ */
11
14
  "$in": ReadonlyArray<T>;
12
15
  }
13
16
  export declare namespace BaseFilter {
@@ -1 +1 @@
1
- {"mappings":"AAgBA,cAAc,YAAY,WAAY;KAEjC,eAAe,KAAK;CACvB,OAAO;AACR;AAED,yBAAiB;WACE,IAAI,WAAW,KAAK,OAAO,eAAe,IAAI,CAAE;;AAGnE,iBAAiB,kBAAkB,WAAW,eAAe,GAAG;CAC9D,OAAO;CACP;CACA,OAAO,cAAc;AACtB;AAED,yBAAiB;WACE,IAAI,WAAW,KAAK,OAAO,kBAAkB,IAAI,CAAE;WACnD,IAAI,WAAW,KAAK,OAAO,kBAAkB,IAAI,CAAE;WACnD,IAAI,WAAW,KAAK,OAAO,kBAAkB,IAAI,CAAE;WACnD,QAAQ,WAAW,KAAK,WAAW,kBAAkB,IAAI,CAAE;;AAG9E,YAAY,WAAW,KACnB,WAAW,IAAI,KACf,WAAW,IAAI,KACf,WAAW,IAAI,KACf,WAAW,QAAQ","names":[],"sources":["../../../src/aggregate/BaseFilter.ts"],"version":3,"file":"BaseFilter.d.ts"}
1
+ {"mappings":"AAgBA,cAAc,YAAY,WAAY;KAEjC,eAAe,KAAK;CACvB,OAAO;AACR;AAED,yBAAiB;WACE,IAAI,WAAW,KAAK,OAAO,eAAe,IAAI,CAAE;;AAGnE,iBAAiB,kBAAkB,WAAW,eAAe,GAAG;CAC9D,OAAO;CACP;;;;CAIA,OAAO,cAAc;AACtB;AAED,yBAAiB;WACE,IAAI,WAAW,KAAK,OAAO,kBAAkB,IAAI,CAAE;WACnD,IAAI,WAAW,KAAK,OAAO,kBAAkB,IAAI,CAAE;WACnD,IAAI,WAAW,KAAK,OAAO,kBAAkB,IAAI,CAAE;WACnD,QAAQ,WAAW,KAAK,WAAW,kBAAkB,IAAI,CAAE;;AAG9E,YAAY,WAAW,KACnB,WAAW,IAAI,KACf,WAAW,IAAI,KACf,WAAW,IAAI,KACf,WAAW,QAAQ","names":[],"sources":["../../../src/aggregate/BaseFilter.ts"],"version":3,"file":"BaseFilter.d.ts"}
@@ -1 +1 @@
1
- {"mappings":"AAgBA,cAAc,yBAAuC,iBAAkB;AACvE,cAAc,YAAY,WAAY;UAE5B,6BAA6B,2BAA2B,CAAE;AAEpE,yBAAiB;WACE,YAAY,KAAK,OAAO,sBAAsB,CAAE;WAChD,YAAY,KAAK,OAAO,sBAAsB,CAAE;WAChD,gBAAgB,KAAK,WAAW,sBAAsB,CAAE;WACxD,YAAY,KAAK,OAAO,sBAAsB,CAAE;;AAEnE,YAAY,0BAER,cAAc,MACd,cAAc,MACd,cAAc,MACd,cAAc","names":[],"sources":["../../../src/aggregate/BooleanFilter.ts"],"version":3,"file":"BooleanFilter.d.ts"}
1
+ {"mappings":"AAgBA,cAAc,yBAAuC,iBAAkB;AACvE,cAAc,YAAY,WAAY;UAE5B,6BAA6B,2BAA2B,CAAE;AAEpE,yBAAiB;WACE,YAAY,KAAK,OAAO,sBAAsB,CAAE;WAChD,YAAY,KAAK,OAAO,sBAAsB,CAAE;WAChD,gBAAgB,KAAK,WAAW,sBAAsB,CAAE;WAIxD,YAAY,KAAK,OAAO,sBAAsB,CAAE;;AAEnE,YAAY,0BAER,cAAc,MACd,cAAc,MACd,cAAc,MACd,cAAc","names":[],"sources":["../../../src/aggregate/BooleanFilter.ts"],"version":3,"file":"BooleanFilter.d.ts"}
@@ -11,6 +11,9 @@ interface StringFilterOptions extends BaseFilterOptions<string> {
11
11
  term: string
12
12
  fuzzySearch?: boolean
13
13
  };
14
+ /**
15
+ * Matches any of the provided values. If an empty array is provided, the filter will match all objects.
16
+ */
14
17
  "$in": ReadonlyArray<string>;
15
18
  }
16
19
  export declare namespace StringFilter {
@@ -1 +1 @@
1
- {"mappings":"AAgBA,cAAc,yBAAuC,iBAAkB;AACvE,cAAc,YAAY,WAAY;UAE5B,4BAA4B,0BAA0B;CAC9D;CACA;CACA,6BAA6B;EAAE;EAAc;CAAuB;CACpE,8BAA8B;EAAE;EAAc;CAAuB;CACrE,OAAO;AACR;AAED,yBAAiB;WACE,YAAY,KAAK,OAAO,qBAAqB,CAAE;WAC/C,YAAY,KAAK,OAAO,qBAAqB,CAAE;WAC/C,gBAAgB,KAAK,WAAW,qBAAqB,CAAE;WACvD,oBACP,KAAK,eAAe,qBAC9B,CACC;WACgB,iCACP,KAAK,4BAA4B,qBAC3C,CACC;WACgB,yBACP,KAAK,oBAAoB,qBACnC,CACC;WACgB,0BACP,KAAK,qBAAqB,qBACpC,CACC;WACgB,YAAY,KAAK,OAAO,qBAAqB,CAAE;;AAGlE,YAAY,wBAER,aAAa,MACb,aAAa,MACb,aAAa,UACb,aAAa,MACb,aAAa,cACb,aAAa,2BACb,aAAa,mBACb,aAAa","names":[],"sources":["../../../src/aggregate/StringFilter.ts"],"version":3,"file":"StringFilter.d.ts"}
1
+ {"mappings":"AAgBA,cAAc,yBAAuC,iBAAkB;AACvE,cAAc,YAAY,WAAY;UAE5B,4BAA4B,0BAA0B;CAC9D;CACA;CACA,6BAA6B;EAAE;EAAc;CAAuB;CACpE,8BAA8B;EAAE;EAAc;CAAuB;;;;CAIrE,OAAO;AACR;AAED,yBAAiB;WACE,YAAY,KAAK,OAAO,qBAAqB,CAAE;WAC/C,YAAY,KAAK,OAAO,qBAAqB,CAAE;WAC/C,gBAAgB,KAAK,WAAW,qBAAqB,CAAE;WACvD,oBACP,KAAK,eAAe,qBAC9B,CACC;WACgB,iCACP,KAAK,4BAA4B,qBAC3C,CACC;WACgB,yBACP,KAAK,oBAAoB,qBACnC,CACC;WACgB,0BACP,KAAK,qBAAqB,qBACpC,CACC;WACgB,YAAY,KAAK,OAAO,qBAAqB,CAAE;;AAGlE,YAAY,wBAER,aAAa,MACb,aAAa,MACb,aAAa,UACb,aAAa,MACb,aAAa,cACb,aAAa,2BACb,aAAa,mBACb,aAAa","names":[],"sources":["../../../src/aggregate/StringFilter.ts"],"version":3,"file":"StringFilter.d.ts"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/api",
3
- "version": "2.7.0-beta.5",
3
+ "version": "2.7.0-beta.7",
4
4
  "description": "",
5
5
  "access": "public",
6
6
  "license": "Apache-2.0",
@@ -48,8 +48,8 @@
48
48
  "@microsoft/api-extractor": "^7.52.11",
49
49
  "ts-expect": "^1.3.0",
50
50
  "typescript": "~5.5.4",
51
- "@osdk/monorepo.tsconfig": "~0.6.0-beta.1",
52
- "@osdk/monorepo.api-extractor": "~0.6.0-beta.1"
51
+ "@osdk/monorepo.api-extractor": "~0.6.0-beta.1",
52
+ "@osdk/monorepo.tsconfig": "~0.6.0-beta.1"
53
53
  },
54
54
  "publishConfig": {
55
55
  "access": "public"