@osdk/functions 1.3.0-beta.4 → 1.3.0-beta.6

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,28 @@
1
1
  # @osdk/functions
2
2
 
3
+ ## 1.3.0-beta.6
4
+
5
+ ### Minor Changes
6
+
7
+ - 1a647a8: Adding geometry type support
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [ab29baa]
12
+ - @osdk/client@2.5.0-beta.7
13
+
14
+ ## 1.3.0-beta.5
15
+
16
+ ### Minor Changes
17
+
18
+ - a41b62a: add markings types to osdk/functions
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies [d797f0c]
23
+ - Updated dependencies [cbcf2ad]
24
+ - @osdk/client@2.5.0-beta.6
25
+
3
26
  ## 1.3.0-beta.4
4
27
 
5
28
  ### Minor Changes
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=Markings.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Markings.js","names":[],"sources":["Markings.ts"],"sourcesContent":["/*\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 type MandatoryMarking<T extends string = string> = T & {\n __markingBrand?: \"mandatory\";\n};\n\nexport type ClassificationMarking<T extends string = string> = T & {\n __markingBrand?: \"classification\";\n};\n"],"mappings":"","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","names":["createEditBatch","UserFacingError"],"sources":["index.ts"],"sourcesContent":["/*\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 type {\n DateISOString,\n Double,\n Float,\n Integer,\n Long,\n TimestampISOString,\n} from \"./PrimitiveTypes.js\";\n\nexport type {\n Attachment,\n Range,\n ThreeDimensionalAggregation,\n TwoDimensionalAggregation,\n} from \"@osdk/client\";\n\nexport { createEditBatch } from \"./edits/createEditBatch.js\";\nexport type { EditBatch } from \"./edits/EditBatch.js\";\nexport type { Edits } from \"./edits/types.js\";\nexport { UserFacingError } from \"./errors/UserFacingError.js\";\n\nexport type {\n EmailNotification,\n Notification,\n NotificationLink,\n NotificationLinkTarget,\n ObjectLinkTarget,\n PlatformNotification,\n RidLinkTarget,\n UrlLinkTarget,\n} from \"./Notification.js\";\n\nexport type { GroupId, Principal, UserId } from \"./UserGroup.js\";\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAkBA,SAASA,eAAe,QAAQ,4BAA4B;AAG5D,SAASC,eAAe,QAAQ,6BAA6B","ignoreList":[]}
1
+ {"version":3,"file":"index.js","names":["createEditBatch","UserFacingError"],"sources":["index.ts"],"sourcesContent":["/*\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 type {\n DateISOString,\n Double,\n Float,\n Integer,\n Long,\n TimestampISOString,\n} from \"./PrimitiveTypes.js\";\n\nexport type {\n Attachment,\n Range,\n ThreeDimensionalAggregation,\n TwoDimensionalAggregation,\n} from \"@osdk/client\";\n\nexport { createEditBatch } from \"./edits/createEditBatch.js\";\nexport type { EditBatch } from \"./edits/EditBatch.js\";\nexport type { Edits } from \"./edits/types.js\";\nexport { UserFacingError } from \"./errors/UserFacingError.js\";\n\nexport type {\n EmailNotification,\n Notification,\n NotificationLink,\n NotificationLinkTarget,\n ObjectLinkTarget,\n PlatformNotification,\n RidLinkTarget,\n UrlLinkTarget,\n} from \"./Notification.js\";\n\nexport type { ClassificationMarking, MandatoryMarking } from \"./Markings.js\";\nexport type { GroupId, Principal, UserId } from \"./UserGroup.js\";\n\nexport type { Geometry, Point } from \"geojson\";\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAkBA,SAASA,eAAe,QAAQ,4BAA4B;AAG5D,SAASC,eAAe,QAAQ,6BAA6B","ignoreList":[]}
@@ -4,6 +4,7 @@ import { E as EditBatch } from './EditBatch-DRBn1Fqo.cjs';
4
4
  import { A as AnyEdit } from './internal-C20KRlC4.cjs';
5
5
  export { E as Edits } from './internal-C20KRlC4.cjs';
6
6
  import { GroupId as GroupId$1, UserId as UserId$1 } from '@osdk/foundry.core';
7
+ export { Geometry, Point } from 'geojson';
7
8
 
8
9
  type Integer<T extends number = number> = T & {
9
10
  __integerBrand?: void;
@@ -62,6 +63,13 @@ interface UrlLinkTarget {
62
63
  }
63
64
  type NotificationLinkTarget = RidLinkTarget | ObjectLinkTarget | UrlLinkTarget;
64
65
 
66
+ type MandatoryMarking<T extends string = string> = T & {
67
+ __markingBrand?: "mandatory";
68
+ };
69
+ type ClassificationMarking<T extends string = string> = T & {
70
+ __markingBrand?: "classification";
71
+ };
72
+
65
73
  type GroupId = GroupId$1 & {
66
74
  __groupIdBrand?: void;
67
75
  };
@@ -76,4 +84,4 @@ type Principal = {
76
84
  id: string;
77
85
  };
78
86
 
79
- export { type DateISOString, type Double, EditBatch, type EmailNotification, type Float, type GroupId, type Integer, type Long, type Notification, type NotificationLink, type NotificationLinkTarget, type ObjectLinkTarget, type PlatformNotification, type Principal, type RidLinkTarget, type TimestampISOString, type UrlLinkTarget, UserFacingError, type UserId, createEditBatch };
87
+ export { type ClassificationMarking, type DateISOString, type Double, EditBatch, type EmailNotification, type Float, type GroupId, type Integer, type Long, type MandatoryMarking, type Notification, type NotificationLink, type NotificationLinkTarget, type ObjectLinkTarget, type PlatformNotification, type Principal, type RidLinkTarget, type TimestampISOString, type UrlLinkTarget, UserFacingError, type UserId, createEditBatch };
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=Markings.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Markings.js","names":[],"sources":["Markings.ts"],"sourcesContent":["/*\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 type MandatoryMarking<T extends string = string> = T & {\n __markingBrand?: \"mandatory\";\n};\n\nexport type ClassificationMarking<T extends string = string> = T & {\n __markingBrand?: \"classification\";\n};\n"],"mappings":"","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","names":["createEditBatch","UserFacingError"],"sources":["index.ts"],"sourcesContent":["/*\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 type {\n DateISOString,\n Double,\n Float,\n Integer,\n Long,\n TimestampISOString,\n} from \"./PrimitiveTypes.js\";\n\nexport type {\n Attachment,\n Range,\n ThreeDimensionalAggregation,\n TwoDimensionalAggregation,\n} from \"@osdk/client\";\n\nexport { createEditBatch } from \"./edits/createEditBatch.js\";\nexport type { EditBatch } from \"./edits/EditBatch.js\";\nexport type { Edits } from \"./edits/types.js\";\nexport { UserFacingError } from \"./errors/UserFacingError.js\";\n\nexport type {\n EmailNotification,\n Notification,\n NotificationLink,\n NotificationLinkTarget,\n ObjectLinkTarget,\n PlatformNotification,\n RidLinkTarget,\n UrlLinkTarget,\n} from \"./Notification.js\";\n\nexport type { GroupId, Principal, UserId } from \"./UserGroup.js\";\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAkBA,SAASA,eAAe,QAAQ,4BAA4B;AAG5D,SAASC,eAAe,QAAQ,6BAA6B","ignoreList":[]}
1
+ {"version":3,"file":"index.js","names":["createEditBatch","UserFacingError"],"sources":["index.ts"],"sourcesContent":["/*\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 type {\n DateISOString,\n Double,\n Float,\n Integer,\n Long,\n TimestampISOString,\n} from \"./PrimitiveTypes.js\";\n\nexport type {\n Attachment,\n Range,\n ThreeDimensionalAggregation,\n TwoDimensionalAggregation,\n} from \"@osdk/client\";\n\nexport { createEditBatch } from \"./edits/createEditBatch.js\";\nexport type { EditBatch } from \"./edits/EditBatch.js\";\nexport type { Edits } from \"./edits/types.js\";\nexport { UserFacingError } from \"./errors/UserFacingError.js\";\n\nexport type {\n EmailNotification,\n Notification,\n NotificationLink,\n NotificationLinkTarget,\n ObjectLinkTarget,\n PlatformNotification,\n RidLinkTarget,\n UrlLinkTarget,\n} from \"./Notification.js\";\n\nexport type { ClassificationMarking, MandatoryMarking } from \"./Markings.js\";\nexport type { GroupId, Principal, UserId } from \"./UserGroup.js\";\n\nexport type { Geometry, Point } from \"geojson\";\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAkBA,SAASA,eAAe,QAAQ,4BAA4B;AAG5D,SAASC,eAAe,QAAQ,6BAA6B","ignoreList":[]}
@@ -0,0 +1,6 @@
1
+ export type MandatoryMarking<T extends string = string> = T & {
2
+ __markingBrand?: "mandatory"
3
+ };
4
+ export type ClassificationMarking<T extends string = string> = T & {
5
+ __markingBrand?: "classification"
6
+ };
@@ -0,0 +1 @@
1
+ {"mappings":"AAgBA,YAAY,iBAAiB,6BAA6B,IAAI;CAC5D,iBAAiB;AAClB;AAED,YAAY,sBAAsB,6BAA6B,IAAI;CACjE,iBAAiB;AAClB","names":[],"sources":["../../src/Markings.ts"],"version":3,"file":"Markings.d.ts"}
@@ -5,4 +5,6 @@ export type { EditBatch } from "./edits/EditBatch.js";
5
5
  export type { Edits } from "./edits/types.js";
6
6
  export { UserFacingError } from "./errors/UserFacingError.js";
7
7
  export type { EmailNotification, Notification, NotificationLink, NotificationLinkTarget, ObjectLinkTarget, PlatformNotification, RidLinkTarget, UrlLinkTarget } from "./Notification.js";
8
+ export type { ClassificationMarking, MandatoryMarking } from "./Markings.js";
8
9
  export type { GroupId, Principal, UserId } from "./UserGroup.js";
10
+ export type { Geometry, Point } from "geojson";
@@ -1 +1 @@
1
- {"mappings":"AAgBA,cACE,eACA,QACA,OACA,SACA,MACA,0BACK;AAEP,cACE,YACA,OACA,6BACA,iCACK;AAEP,SAAS,uBAAuB;AAChC,cAAc,iBAAiB;AAC/B,cAAc,aAAa;AAC3B,SAAS,uBAAuB;AAEhC,cACE,mBACA,cACA,kBACA,wBACA,kBACA,sBACA,eACA,qBACK;AAEP,cAAc,SAAS,WAAW,cAAc","names":[],"sources":["../../src/index.ts"],"version":3,"file":"index.d.ts"}
1
+ {"mappings":"AAgBA,cACE,eACA,QACA,OACA,SACA,MACA,0BACK;AAEP,cACE,YACA,OACA,6BACA,iCACK;AAEP,SAAS,uBAAuB;AAChC,cAAc,iBAAiB;AAC/B,cAAc,aAAa;AAC3B,SAAS,uBAAuB;AAEhC,cACE,mBACA,cACA,kBACA,wBACA,kBACA,sBACA,eACA,qBACK;AAEP,cAAc,uBAAuB,wBAAwB;AAC7D,cAAc,SAAS,WAAW,cAAc;AAEhD,cAAc,UAAU,aAAa","names":[],"sources":["../../src/index.ts"],"version":3,"file":"index.d.ts"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/functions",
3
- "version": "1.3.0-beta.4",
3
+ "version": "1.3.0-beta.6",
4
4
  "description": "",
5
5
  "access": "public",
6
6
  "license": "Apache-2.0",
@@ -48,21 +48,23 @@
48
48
  },
49
49
  "dependencies": {
50
50
  "@osdk/foundry.core": "^2.30.0",
51
- "@osdk/foundry.ontologies": "^2.30.0"
51
+ "@osdk/foundry.ontologies": "^2.30.0",
52
+ "@types/geojson": "^7946.0.16"
52
53
  },
53
54
  "peerDependencies": {
54
- "@osdk/client": "^2.5.0-beta.4"
55
+ "@osdk/client": "^2.5.0-beta.7"
55
56
  },
56
57
  "devDependencies": {
57
- "@microsoft/api-documenter": "^7.26.5",
58
- "@microsoft/api-extractor": "^7.52.7",
58
+ "@microsoft/api-documenter": "^7.26.32",
59
+ "@microsoft/api-extractor": "^7.52.11",
60
+ "@types/geojson": "^7946.0.16",
59
61
  "p-defer": "^4.0.1",
60
62
  "ts-expect": "^1.3.0",
61
63
  "typescript": "~5.5.4",
62
- "@osdk/client.test.ontology": "~2.5.0-beta.4",
63
- "@osdk/shared.test": "~2.5.0-beta.4",
64
+ "@osdk/client.test.ontology": "~2.5.0-beta.7",
64
65
  "@osdk/monorepo.api-extractor": "~0.4.0-beta.1",
65
- "@osdk/monorepo.tsconfig": "~0.4.0-beta.1"
66
+ "@osdk/monorepo.tsconfig": "~0.4.0-beta.1",
67
+ "@osdk/shared.test": "~2.5.0-beta.5"
66
68
  },
67
69
  "publishConfig": {
68
70
  "access": "public"