@osdk/foundry.geo 0.0.0
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/build/browser/_components.d.ts +70 -0
- package/build/browser/_components.d.ts.map +1 -0
- package/build/browser/_components.js +17 -0
- package/build/browser/_components.js.map +1 -0
- package/build/browser/_errors.d.ts +4 -0
- package/build/browser/_errors.d.ts.map +1 -0
- package/build/browser/_errors.js +17 -0
- package/build/browser/_errors.js.map +1 -0
- package/build/browser/index.d.ts +3 -0
- package/build/browser/index.d.ts.map +1 -0
- package/build/browser/index.js +17 -0
- package/build/browser/index.js.map +1 -0
- package/build/esm/_components.d.ts +70 -0
- package/build/esm/_components.d.ts.map +1 -0
- package/build/esm/_components.js +17 -0
- package/build/esm/_components.js.map +1 -0
- package/build/esm/_errors.d.ts +4 -0
- package/build/esm/_errors.d.ts.map +1 -0
- package/build/esm/_errors.js +17 -0
- package/build/esm/_errors.js.map +1 -0
- package/build/esm/index.d.ts +3 -0
- package/build/esm/index.d.ts.map +1 -0
- package/build/esm/index.js +17 -0
- package/build/esm/index.js.map +1 -0
- package/package.json +60 -0
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
export type LooselyBrandedString<T extends string> = string & {
|
|
2
|
+
__LOOSE_BRAND?: T;
|
|
3
|
+
};
|
|
4
|
+
/**
|
|
5
|
+
* A GeoJSON object MAY have a member named "bbox" to include
|
|
6
|
+
information on the coordinate range for its Geometries, Features, or
|
|
7
|
+
FeatureCollections. The value of the bbox member MUST be an array of
|
|
8
|
+
length 2*n where n is the number of dimensions represented in the
|
|
9
|
+
contained geometries, with all axes of the most southwesterly point
|
|
10
|
+
followed by all axes of the more northeasterly point. The axes order
|
|
11
|
+
of a bbox follows the axes order of geometries.
|
|
12
|
+
See https://datatracker.ietf.org/doc/html/rfc7946#section-5.
|
|
13
|
+
*
|
|
14
|
+
* Log Safety: UNSAFE
|
|
15
|
+
*/
|
|
16
|
+
export type BBox = Array<Coordinate>;
|
|
17
|
+
/**
|
|
18
|
+
* Log Safety: UNSAFE
|
|
19
|
+
*/
|
|
20
|
+
export type Coordinate = number;
|
|
21
|
+
/**
|
|
22
|
+
* See https://datatracker.ietf.org/doc/html/rfc7946#section-3.1.2 for more information.
|
|
23
|
+
*
|
|
24
|
+
* Log Safety: UNSAFE
|
|
25
|
+
*/
|
|
26
|
+
export interface GeoPoint {
|
|
27
|
+
coordinates: Position;
|
|
28
|
+
bbox?: BBox;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* A linear ring is a closed LineString with four or more positions.
|
|
32
|
+
The first and last positions are equivalent, and they MUST contain
|
|
33
|
+
identical values; their representation SHOULD also be identical.
|
|
34
|
+
A linear ring is the boundary of a surface or the boundary of a hole in
|
|
35
|
+
a surface.
|
|
36
|
+
A linear ring MUST follow the right-hand rule with respect to the area
|
|
37
|
+
it bounds, i.e., exterior rings are counterclockwise, and holes are
|
|
38
|
+
clockwise.
|
|
39
|
+
See https://tools.ietf.org/html/rfc7946#section-3.1.6.
|
|
40
|
+
*
|
|
41
|
+
* Log Safety: UNSAFE
|
|
42
|
+
*/
|
|
43
|
+
export type LinearRing = Array<Position>;
|
|
44
|
+
/**
|
|
45
|
+
* See https://datatracker.ietf.org/doc/html/rfc7946#section-3.1.6
|
|
46
|
+
*
|
|
47
|
+
* Log Safety: UNSAFE
|
|
48
|
+
*/
|
|
49
|
+
export interface Polygon {
|
|
50
|
+
coordinates: Array<LinearRing>;
|
|
51
|
+
bbox?: BBox;
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* GeoJSon fundamental geometry construct.
|
|
55
|
+
A position is an array of numbers. There MUST be two or more elements.
|
|
56
|
+
The first two elements are longitude and latitude, precisely in that order and using decimal numbers.
|
|
57
|
+
Altitude or elevation MAY be included as an optional third element.
|
|
58
|
+
Implementations SHOULD NOT extend positions beyond three elements
|
|
59
|
+
because the semantics of extra elements are unspecified and ambiguous.
|
|
60
|
+
Historically, some implementations have used a fourth element to carry
|
|
61
|
+
a linear referencing measure (sometimes denoted as "M") or a numerical
|
|
62
|
+
timestamp, but in most situations a parser will not be able to properly
|
|
63
|
+
interpret these values. The interpretation and meaning of additional
|
|
64
|
+
elements is beyond the scope of this specification, and additional
|
|
65
|
+
elements MAY be ignored by parsers.
|
|
66
|
+
*
|
|
67
|
+
* Log Safety: UNSAFE
|
|
68
|
+
*/
|
|
69
|
+
export type Position = Array<Coordinate>;
|
|
70
|
+
//# sourceMappingURL=_components.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"_components.d.ts","sourceRoot":"","sources":["../../src/_components.ts"],"names":[],"mappings":"AAgBA,MAAM,MAAM,oBAAoB,CAAC,CAAC,SAAS,MAAM,IAAI,MAAM,GAAG;IAC5D,aAAa,CAAC,EAAE,CAAC,CAAC;CACnB,CAAC;AAEF;;;;;;;;;;;KAWK;AACL,MAAM,MAAM,IAAI,GAAG,KAAK,CAAC,UAAU,CAAC,CAAC;AAErC;;GAEG;AACH,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC;AAEhC;;;;GAIG;AACH,MAAM,WAAW,QAAQ;IACvB,WAAW,EAAE,QAAQ,CAAC;IACtB,IAAI,CAAC,EAAE,IAAI,CAAC;CACb;AAED;;;;;;;;;;;;KAYK;AACL,MAAM,MAAM,UAAU,GAAG,KAAK,CAAC,QAAQ,CAAC,CAAC;AAEzC;;;;GAIG;AACH,MAAM,WAAW,OAAO;IACtB,WAAW,EAAE,KAAK,CAAC,UAAU,CAAC,CAAC;IAC/B,IAAI,CAAC,EAAE,IAAI,CAAC;CACb;AAED;;;;;;;;;;;;;;;KAeK;AACL,MAAM,MAAM,QAAQ,GAAG,KAAK,CAAC,UAAU,CAAC,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2024 Palantir Technologies, Inc. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export {};
|
|
17
|
+
//# sourceMappingURL=_components.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"_components.js","names":[],"sources":["_components.js"],"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 */\nexport {};\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"_errors.d.ts","sourceRoot":"","sources":["../../src/_errors.ts"],"names":[],"mappings":"AAgBA,MAAM,MAAM,oBAAoB,CAAC,CAAC,SAAS,MAAM,IAAI,MAAM,GAAG;IAC5D,aAAa,CAAC,EAAE,CAAC,CAAC;CACnB,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2024 Palantir Technologies, Inc. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export {};
|
|
17
|
+
//# sourceMappingURL=_errors.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"_errors.js","names":[],"sources":["_errors.js"],"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 */\nexport {};\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAgBA,YAAY,EACV,IAAI,EACJ,UAAU,EACV,QAAQ,EACR,UAAU,EACV,OAAO,EACP,QAAQ,GACT,MAAM,kBAAkB,CAAC;AAC1B,YAAY,EAAE,MAAM,cAAc,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2024 Palantir Technologies, Inc. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export {};
|
|
17
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["index.js"],"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 */\nexport {};\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","ignoreList":[]}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
export type LooselyBrandedString<T extends string> = string & {
|
|
2
|
+
__LOOSE_BRAND?: T;
|
|
3
|
+
};
|
|
4
|
+
/**
|
|
5
|
+
* A GeoJSON object MAY have a member named "bbox" to include
|
|
6
|
+
information on the coordinate range for its Geometries, Features, or
|
|
7
|
+
FeatureCollections. The value of the bbox member MUST be an array of
|
|
8
|
+
length 2*n where n is the number of dimensions represented in the
|
|
9
|
+
contained geometries, with all axes of the most southwesterly point
|
|
10
|
+
followed by all axes of the more northeasterly point. The axes order
|
|
11
|
+
of a bbox follows the axes order of geometries.
|
|
12
|
+
See https://datatracker.ietf.org/doc/html/rfc7946#section-5.
|
|
13
|
+
*
|
|
14
|
+
* Log Safety: UNSAFE
|
|
15
|
+
*/
|
|
16
|
+
export type BBox = Array<Coordinate>;
|
|
17
|
+
/**
|
|
18
|
+
* Log Safety: UNSAFE
|
|
19
|
+
*/
|
|
20
|
+
export type Coordinate = number;
|
|
21
|
+
/**
|
|
22
|
+
* See https://datatracker.ietf.org/doc/html/rfc7946#section-3.1.2 for more information.
|
|
23
|
+
*
|
|
24
|
+
* Log Safety: UNSAFE
|
|
25
|
+
*/
|
|
26
|
+
export interface GeoPoint {
|
|
27
|
+
coordinates: Position;
|
|
28
|
+
bbox?: BBox;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* A linear ring is a closed LineString with four or more positions.
|
|
32
|
+
The first and last positions are equivalent, and they MUST contain
|
|
33
|
+
identical values; their representation SHOULD also be identical.
|
|
34
|
+
A linear ring is the boundary of a surface or the boundary of a hole in
|
|
35
|
+
a surface.
|
|
36
|
+
A linear ring MUST follow the right-hand rule with respect to the area
|
|
37
|
+
it bounds, i.e., exterior rings are counterclockwise, and holes are
|
|
38
|
+
clockwise.
|
|
39
|
+
See https://tools.ietf.org/html/rfc7946#section-3.1.6.
|
|
40
|
+
*
|
|
41
|
+
* Log Safety: UNSAFE
|
|
42
|
+
*/
|
|
43
|
+
export type LinearRing = Array<Position>;
|
|
44
|
+
/**
|
|
45
|
+
* See https://datatracker.ietf.org/doc/html/rfc7946#section-3.1.6
|
|
46
|
+
*
|
|
47
|
+
* Log Safety: UNSAFE
|
|
48
|
+
*/
|
|
49
|
+
export interface Polygon {
|
|
50
|
+
coordinates: Array<LinearRing>;
|
|
51
|
+
bbox?: BBox;
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* GeoJSon fundamental geometry construct.
|
|
55
|
+
A position is an array of numbers. There MUST be two or more elements.
|
|
56
|
+
The first two elements are longitude and latitude, precisely in that order and using decimal numbers.
|
|
57
|
+
Altitude or elevation MAY be included as an optional third element.
|
|
58
|
+
Implementations SHOULD NOT extend positions beyond three elements
|
|
59
|
+
because the semantics of extra elements are unspecified and ambiguous.
|
|
60
|
+
Historically, some implementations have used a fourth element to carry
|
|
61
|
+
a linear referencing measure (sometimes denoted as "M") or a numerical
|
|
62
|
+
timestamp, but in most situations a parser will not be able to properly
|
|
63
|
+
interpret these values. The interpretation and meaning of additional
|
|
64
|
+
elements is beyond the scope of this specification, and additional
|
|
65
|
+
elements MAY be ignored by parsers.
|
|
66
|
+
*
|
|
67
|
+
* Log Safety: UNSAFE
|
|
68
|
+
*/
|
|
69
|
+
export type Position = Array<Coordinate>;
|
|
70
|
+
//# sourceMappingURL=_components.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"_components.d.ts","sourceRoot":"","sources":["../../src/_components.ts"],"names":[],"mappings":"AAgBA,MAAM,MAAM,oBAAoB,CAAC,CAAC,SAAS,MAAM,IAAI,MAAM,GAAG;IAC5D,aAAa,CAAC,EAAE,CAAC,CAAC;CACnB,CAAC;AAEF;;;;;;;;;;;KAWK;AACL,MAAM,MAAM,IAAI,GAAG,KAAK,CAAC,UAAU,CAAC,CAAC;AAErC;;GAEG;AACH,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC;AAEhC;;;;GAIG;AACH,MAAM,WAAW,QAAQ;IACvB,WAAW,EAAE,QAAQ,CAAC;IACtB,IAAI,CAAC,EAAE,IAAI,CAAC;CACb;AAED;;;;;;;;;;;;KAYK;AACL,MAAM,MAAM,UAAU,GAAG,KAAK,CAAC,QAAQ,CAAC,CAAC;AAEzC;;;;GAIG;AACH,MAAM,WAAW,OAAO;IACtB,WAAW,EAAE,KAAK,CAAC,UAAU,CAAC,CAAC;IAC/B,IAAI,CAAC,EAAE,IAAI,CAAC;CACb;AAED;;;;;;;;;;;;;;;KAeK;AACL,MAAM,MAAM,QAAQ,GAAG,KAAK,CAAC,UAAU,CAAC,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2024 Palantir Technologies, Inc. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export {};
|
|
17
|
+
//# sourceMappingURL=_components.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"_components.js","names":[],"sources":["_components.js"],"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 */\nexport {};\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"_errors.d.ts","sourceRoot":"","sources":["../../src/_errors.ts"],"names":[],"mappings":"AAgBA,MAAM,MAAM,oBAAoB,CAAC,CAAC,SAAS,MAAM,IAAI,MAAM,GAAG;IAC5D,aAAa,CAAC,EAAE,CAAC,CAAC;CACnB,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2024 Palantir Technologies, Inc. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export {};
|
|
17
|
+
//# sourceMappingURL=_errors.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"_errors.js","names":[],"sources":["_errors.js"],"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 */\nexport {};\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAgBA,YAAY,EACV,IAAI,EACJ,UAAU,EACV,QAAQ,EACR,UAAU,EACV,OAAO,EACP,QAAQ,GACT,MAAM,kBAAkB,CAAC;AAC1B,YAAY,EAAE,MAAM,cAAc,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2024 Palantir Technologies, Inc. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export {};
|
|
17
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["index.js"],"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 */\nexport {};\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","ignoreList":[]}
|
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@osdk/foundry.geo",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"license": "Apache-2.0",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/palantir/foundry-platform-typescript.git"
|
|
8
|
+
},
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"browser": "./build/browser/index.js",
|
|
12
|
+
"import": "./build/esm/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./*": {
|
|
15
|
+
"browser": "./build/browser/public/*.js",
|
|
16
|
+
"import": "./build/esm/public/*.js"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@osdk/shared.client": "^1.0.1",
|
|
21
|
+
"@osdk/shared.client2": "^1.0.0",
|
|
22
|
+
"@osdk/shared.net.platformapi": "~0.3.2"
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"typescript": "^5.5.4",
|
|
26
|
+
"@osdk/monorepo.tsconfig": "~0.0.0"
|
|
27
|
+
},
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"access": "public"
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"build/cjs",
|
|
33
|
+
"build/esm",
|
|
34
|
+
"build/browser",
|
|
35
|
+
"CHANGELOG.md",
|
|
36
|
+
"package.json",
|
|
37
|
+
"templates",
|
|
38
|
+
"*.d.ts"
|
|
39
|
+
],
|
|
40
|
+
"module": "./build/esm/index.js",
|
|
41
|
+
"types": "./build/esm/index.d.ts",
|
|
42
|
+
"sls": {
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"com.palantir.foundry.api:api-gateway": {
|
|
45
|
+
"minVersion": "1.969.0",
|
|
46
|
+
"maxVersion": "1.x.x",
|
|
47
|
+
"optional": true
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"type": "module",
|
|
52
|
+
"scripts": {
|
|
53
|
+
"check-attw": "monorepo.tool.attw esm",
|
|
54
|
+
"check-spelling": "cspell --quiet .",
|
|
55
|
+
"clean": "rm -rf lib dist types build tsconfig.tsbuildinfo",
|
|
56
|
+
"fix-lint": "eslint . --fix && dprint fmt --config $(find-up dprint.json)",
|
|
57
|
+
"lint": "eslint . && dprint check --config $(find-up dprint.json)",
|
|
58
|
+
"transpile": "monorepo.tool.transpile"
|
|
59
|
+
}
|
|
60
|
+
}
|