@osdk/foundry.functions 2.1.0-beta.4 → 2.1.0-beta.5
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 +16 -0
- package/build/browser/_components.d.ts +249 -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 +41 -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 +4 -0
- package/build/browser/index.d.ts.map +1 -0
- package/build/browser/index.js +16 -2
- package/build/browser/index.js.map +1 -1
- package/build/browser/public/Query.d.ts +49 -0
- package/build/browser/public/Query.d.ts.map +1 -0
- package/build/browser/public/Query.js +55 -2
- package/build/browser/public/Query.js.map +1 -1
- package/build/esm/_components.d.ts +127 -201
- package/build/esm/_components.d.ts.map +1 -1
- package/build/esm/_components.js +17 -0
- package/build/esm/_components.js.map +1 -0
- package/build/esm/_errors.js +17 -0
- package/build/esm/_errors.js.map +1 -0
- package/build/esm/index.d.ts +1 -1
- package/build/esm/index.d.ts.map +1 -1
- package/build/esm/index.js +16 -2
- package/build/esm/index.js.map +1 -1
- package/build/esm/public/Query.d.ts +12 -12
- package/build/esm/public/Query.d.ts.map +1 -1
- package/build/esm/public/Query.js +55 -2
- package/build/esm/public/Query.js.map +1 -1
- package/package.json +8 -9
- package/build/browser/chunk-H5KZWBWQ.js +0 -31
- package/build/browser/chunk-H5KZWBWQ.js.map +0 -1
- package/build/esm/chunk-H5KZWBWQ.js +0 -31
- package/build/esm/chunk-H5KZWBWQ.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @osdk/foundry.functions
|
|
2
2
|
|
|
3
|
+
## 2.1.0-beta.5
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 5d6d5ab: Internal improvement to type references
|
|
8
|
+
- d4d6605: Audited and cleaned up deps
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies [b60e107]
|
|
13
|
+
- Updated dependencies [5d6d5ab]
|
|
14
|
+
- Updated dependencies [d4d6605]
|
|
15
|
+
- @osdk/shared.client@1.0.0-beta.2
|
|
16
|
+
- @osdk/foundry.core@2.1.0-beta.5
|
|
17
|
+
- @osdk/shared.net.platformapi@0.3.0-beta.2
|
|
18
|
+
|
|
3
19
|
## 2.1.0-beta.4
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -0,0 +1,249 @@
|
|
|
1
|
+
import type * as _Core from "@osdk/foundry.core";
|
|
2
|
+
export type LooselyBrandedString<T extends string> = string & {
|
|
3
|
+
__LOOSE_BRAND?: T;
|
|
4
|
+
};
|
|
5
|
+
/**
|
|
6
|
+
* Represents the value of data in the following format. Note that these values can be nested, for example an array of structs.
|
|
7
|
+
| Type | JSON encoding | Example |
|
|
8
|
+
|-----------------------------|-------------------------------------------------------|-------------------------------------------------------------------------------|
|
|
9
|
+
| Array | array | ["alpha", "bravo", "charlie"] |
|
|
10
|
+
| Attachment | string | "ri.attachments.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e" |
|
|
11
|
+
| Boolean | boolean | true |
|
|
12
|
+
| Byte | number | 31 |
|
|
13
|
+
| Date | ISO 8601 extended local date string | "2021-05-01" |
|
|
14
|
+
| Decimal | string | "2.718281828" |
|
|
15
|
+
| Float | number | 3.14159265 |
|
|
16
|
+
| Double | number | 3.14159265 |
|
|
17
|
+
| Integer | number | 238940 |
|
|
18
|
+
| Long | string | "58319870951433" |
|
|
19
|
+
| Marking | string | "MU" |
|
|
20
|
+
| Null | null | null |
|
|
21
|
+
| Set | array | ["alpha", "bravo", "charlie"] |
|
|
22
|
+
| Short | number | 8739 |
|
|
23
|
+
| String | string | "Call me Ishmael" |
|
|
24
|
+
| Struct | JSON object | {"name": "John Doe", "age": 42} |
|
|
25
|
+
| TwoDimensionalAggregation | JSON object | {"groups": [{"key": "alpha", "value": 100}, {"key": "beta", "value": 101}]} |
|
|
26
|
+
| ThreeDimensionalAggregation | JSON object | {"groups": [{"key": "NYC", "groups": [{"key": "Engineer", "value" : 100}]}]}|
|
|
27
|
+
| Timestamp | ISO 8601 extended offset date-time string in UTC zone | "2021-01-04T05:00:00Z" |
|
|
28
|
+
*
|
|
29
|
+
* Log Safety: UNSAFE
|
|
30
|
+
*/
|
|
31
|
+
export type DataValue = any;
|
|
32
|
+
/**
|
|
33
|
+
* Log Safety: UNSAFE
|
|
34
|
+
*/
|
|
35
|
+
export interface ExecuteQueryRequest {
|
|
36
|
+
parameters: Record<ParameterId, DataValue | undefined>;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* Log Safety: UNSAFE
|
|
40
|
+
*/
|
|
41
|
+
export interface ExecuteQueryResponse {
|
|
42
|
+
value: DataValue;
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* The unique resource identifier of a Function, useful for interacting with other Foundry APIs.
|
|
46
|
+
*
|
|
47
|
+
* Log Safety: SAFE
|
|
48
|
+
*/
|
|
49
|
+
export type FunctionRid = LooselyBrandedString<"FunctionRid">;
|
|
50
|
+
/**
|
|
51
|
+
* The version of the given Function, written <major>.<minor>.<patch>-<tag>, where -<tag> is optional.
|
|
52
|
+
Examples: 1.2.3, 1.2.3-rc1.
|
|
53
|
+
*
|
|
54
|
+
* Log Safety: UNSAFE
|
|
55
|
+
*/
|
|
56
|
+
export type FunctionVersion = LooselyBrandedString<"FunctionVersion">;
|
|
57
|
+
/**
|
|
58
|
+
* Log Safety: SAFE
|
|
59
|
+
*/
|
|
60
|
+
export interface GetByRidQueriesRequest {
|
|
61
|
+
rid: FunctionRid;
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* Details about a parameter of a query.
|
|
65
|
+
*
|
|
66
|
+
* Log Safety: UNSAFE
|
|
67
|
+
*/
|
|
68
|
+
export interface Parameter {
|
|
69
|
+
description?: string;
|
|
70
|
+
dataType: QueryDataType;
|
|
71
|
+
}
|
|
72
|
+
/**
|
|
73
|
+
* The unique identifier of the parameter. Parameters are used as inputs when an action or query is applied.
|
|
74
|
+
Parameters can be viewed and managed in the Ontology Manager.
|
|
75
|
+
*
|
|
76
|
+
* Log Safety: UNSAFE
|
|
77
|
+
*/
|
|
78
|
+
export type ParameterId = LooselyBrandedString<"ParameterId">;
|
|
79
|
+
/**
|
|
80
|
+
* Log Safety: UNSAFE
|
|
81
|
+
*/
|
|
82
|
+
export interface Query {
|
|
83
|
+
apiName: QueryApiName;
|
|
84
|
+
description?: string;
|
|
85
|
+
displayName?: _Core.DisplayName;
|
|
86
|
+
parameters: Record<ParameterId, Parameter>;
|
|
87
|
+
output: QueryDataType;
|
|
88
|
+
rid: FunctionRid;
|
|
89
|
+
version: FunctionVersion;
|
|
90
|
+
}
|
|
91
|
+
/**
|
|
92
|
+
* A union of all the types supported by query aggregation keys.
|
|
93
|
+
*
|
|
94
|
+
* Log Safety: UNSAFE
|
|
95
|
+
*/
|
|
96
|
+
export type QueryAggregationKeyType = ({
|
|
97
|
+
type: "date";
|
|
98
|
+
} & _Core.DateType) | ({
|
|
99
|
+
type: "boolean";
|
|
100
|
+
} & _Core.BooleanType) | ({
|
|
101
|
+
type: "string";
|
|
102
|
+
} & _Core.StringType) | ({
|
|
103
|
+
type: "double";
|
|
104
|
+
} & _Core.DoubleType) | ({
|
|
105
|
+
type: "range";
|
|
106
|
+
} & QueryAggregationRangeType) | ({
|
|
107
|
+
type: "integer";
|
|
108
|
+
} & _Core.IntegerType) | ({
|
|
109
|
+
type: "timestamp";
|
|
110
|
+
} & _Core.TimestampType);
|
|
111
|
+
/**
|
|
112
|
+
* A union of all the types supported by query aggregation ranges.
|
|
113
|
+
*
|
|
114
|
+
* Log Safety: UNSAFE
|
|
115
|
+
*/
|
|
116
|
+
export type QueryAggregationRangeSubType = ({
|
|
117
|
+
type: "date";
|
|
118
|
+
} & _Core.DateType) | ({
|
|
119
|
+
type: "double";
|
|
120
|
+
} & _Core.DoubleType) | ({
|
|
121
|
+
type: "integer";
|
|
122
|
+
} & _Core.IntegerType) | ({
|
|
123
|
+
type: "timestamp";
|
|
124
|
+
} & _Core.TimestampType);
|
|
125
|
+
/**
|
|
126
|
+
* Log Safety: UNSAFE
|
|
127
|
+
*/
|
|
128
|
+
export interface QueryAggregationRangeType {
|
|
129
|
+
subType: QueryAggregationRangeSubType;
|
|
130
|
+
}
|
|
131
|
+
/**
|
|
132
|
+
* A union of all the types supported by query aggregation keys.
|
|
133
|
+
*
|
|
134
|
+
* Log Safety: UNSAFE
|
|
135
|
+
*/
|
|
136
|
+
export type QueryAggregationValueType = ({
|
|
137
|
+
type: "date";
|
|
138
|
+
} & _Core.DateType) | ({
|
|
139
|
+
type: "double";
|
|
140
|
+
} & _Core.DoubleType) | ({
|
|
141
|
+
type: "timestamp";
|
|
142
|
+
} & _Core.TimestampType);
|
|
143
|
+
/**
|
|
144
|
+
* The name of the Query in the API.
|
|
145
|
+
*
|
|
146
|
+
* Log Safety: UNSAFE
|
|
147
|
+
*/
|
|
148
|
+
export type QueryApiName = LooselyBrandedString<"QueryApiName">;
|
|
149
|
+
/**
|
|
150
|
+
* Log Safety: UNSAFE
|
|
151
|
+
*/
|
|
152
|
+
export interface QueryArrayType {
|
|
153
|
+
subType: QueryDataType;
|
|
154
|
+
}
|
|
155
|
+
/**
|
|
156
|
+
* A union of all the types supported by Query parameters or outputs.
|
|
157
|
+
*
|
|
158
|
+
* Log Safety: UNSAFE
|
|
159
|
+
*/
|
|
160
|
+
export type QueryDataType = ({
|
|
161
|
+
type: "date";
|
|
162
|
+
} & _Core.DateType) | ({
|
|
163
|
+
type: "struct";
|
|
164
|
+
} & QueryStructType) | ({
|
|
165
|
+
type: "set";
|
|
166
|
+
} & QuerySetType) | ({
|
|
167
|
+
type: "string";
|
|
168
|
+
} & _Core.StringType) | ({
|
|
169
|
+
type: "double";
|
|
170
|
+
} & _Core.DoubleType) | ({
|
|
171
|
+
type: "integer";
|
|
172
|
+
} & _Core.IntegerType) | ({
|
|
173
|
+
type: "threeDimensionalAggregation";
|
|
174
|
+
} & ThreeDimensionalAggregation) | ({
|
|
175
|
+
type: "union";
|
|
176
|
+
} & QueryUnionType) | ({
|
|
177
|
+
type: "float";
|
|
178
|
+
} & _Core.FloatType) | ({
|
|
179
|
+
type: "long";
|
|
180
|
+
} & _Core.LongType) | ({
|
|
181
|
+
type: "boolean";
|
|
182
|
+
} & _Core.BooleanType) | ({
|
|
183
|
+
type: "unsupported";
|
|
184
|
+
} & _Core.UnsupportedType) | ({
|
|
185
|
+
type: "attachment";
|
|
186
|
+
} & _Core.AttachmentType) | ({
|
|
187
|
+
type: "null";
|
|
188
|
+
} & _Core.NullType) | ({
|
|
189
|
+
type: "array";
|
|
190
|
+
} & QueryArrayType) | ({
|
|
191
|
+
type: "twoDimensionalAggregation";
|
|
192
|
+
} & TwoDimensionalAggregation) | ({
|
|
193
|
+
type: "timestamp";
|
|
194
|
+
} & _Core.TimestampType);
|
|
195
|
+
/**
|
|
196
|
+
* Log Safety: UNSAFE
|
|
197
|
+
*/
|
|
198
|
+
export type QueryRuntimeErrorParameter = LooselyBrandedString<"QueryRuntimeErrorParameter">;
|
|
199
|
+
/**
|
|
200
|
+
* Log Safety: UNSAFE
|
|
201
|
+
*/
|
|
202
|
+
export interface QuerySetType {
|
|
203
|
+
subType: QueryDataType;
|
|
204
|
+
}
|
|
205
|
+
/**
|
|
206
|
+
* Log Safety: UNSAFE
|
|
207
|
+
*/
|
|
208
|
+
export interface QueryStructField {
|
|
209
|
+
name: StructFieldName;
|
|
210
|
+
fieldType: QueryDataType;
|
|
211
|
+
}
|
|
212
|
+
/**
|
|
213
|
+
* Log Safety: UNSAFE
|
|
214
|
+
*/
|
|
215
|
+
export interface QueryStructType {
|
|
216
|
+
fields: Array<QueryStructField>;
|
|
217
|
+
}
|
|
218
|
+
/**
|
|
219
|
+
* Log Safety: UNSAFE
|
|
220
|
+
*/
|
|
221
|
+
export interface QueryUnionType {
|
|
222
|
+
unionTypes: Array<QueryDataType>;
|
|
223
|
+
}
|
|
224
|
+
/**
|
|
225
|
+
* The name of a field in a Struct.
|
|
226
|
+
*
|
|
227
|
+
* Log Safety: UNSAFE
|
|
228
|
+
*/
|
|
229
|
+
export type StructFieldName = LooselyBrandedString<"StructFieldName">;
|
|
230
|
+
/**
|
|
231
|
+
* Log Safety: UNSAFE
|
|
232
|
+
*/
|
|
233
|
+
export interface ThreeDimensionalAggregation {
|
|
234
|
+
keyType: QueryAggregationKeyType;
|
|
235
|
+
valueType: TwoDimensionalAggregation;
|
|
236
|
+
}
|
|
237
|
+
/**
|
|
238
|
+
* Log Safety: SAFE
|
|
239
|
+
*/
|
|
240
|
+
export interface TimestampType {
|
|
241
|
+
}
|
|
242
|
+
/**
|
|
243
|
+
* Log Safety: UNSAFE
|
|
244
|
+
*/
|
|
245
|
+
export interface TwoDimensionalAggregation {
|
|
246
|
+
keyType: QueryAggregationKeyType;
|
|
247
|
+
valueType: QueryAggregationValueType;
|
|
248
|
+
}
|
|
249
|
+
//# sourceMappingURL=_components.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"_components.d.ts","sourceRoot":"","sources":["../../src/_components.ts"],"names":[],"mappings":"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"}
|
|
@@ -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,41 @@
|
|
|
1
|
+
export type LooselyBrandedString<T extends string> = string & {
|
|
2
|
+
__LOOSE_BRAND?: T;
|
|
3
|
+
};
|
|
4
|
+
/**
|
|
5
|
+
* Could not execute the Query.
|
|
6
|
+
*
|
|
7
|
+
* Log Safety: UNSAFE
|
|
8
|
+
*/
|
|
9
|
+
export interface ExecuteQueryPermissionDenied {
|
|
10
|
+
errorCode: "PERMISSION_DENIED";
|
|
11
|
+
errorName: "ExecuteQueryPermissionDenied";
|
|
12
|
+
errorInstanceId: string;
|
|
13
|
+
parameters: {
|
|
14
|
+
queryApiName: unknown;
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Could not getByRid the Query.
|
|
19
|
+
*
|
|
20
|
+
* Log Safety: SAFE
|
|
21
|
+
*/
|
|
22
|
+
export interface GetByRidQueriesPermissionDenied {
|
|
23
|
+
errorCode: "PERMISSION_DENIED";
|
|
24
|
+
errorName: "GetByRidQueriesPermissionDenied";
|
|
25
|
+
errorInstanceId: string;
|
|
26
|
+
parameters: {};
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* The given Query could not be found.
|
|
30
|
+
*
|
|
31
|
+
* Log Safety: UNSAFE
|
|
32
|
+
*/
|
|
33
|
+
export interface QueryNotFound {
|
|
34
|
+
errorCode: "NOT_FOUND";
|
|
35
|
+
errorName: "QueryNotFound";
|
|
36
|
+
errorInstanceId: string;
|
|
37
|
+
parameters: {
|
|
38
|
+
queryApiName: unknown;
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
//# sourceMappingURL=_errors.d.ts.map
|
|
@@ -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;AAEF;;;;GAIG;AACH,MAAM,WAAW,4BAA4B;IAC3C,SAAS,EAAE,mBAAmB,CAAC;IAC/B,SAAS,EAAE,8BAA8B,CAAC;IAC1C,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,YAAY,EAAE,OAAO,CAAC;KACvB,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,+BAA+B;IAC9C,SAAS,EAAE,mBAAmB,CAAC;IAC/B,SAAS,EAAE,iCAAiC,CAAC;IAC7C,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE,EAAE,CAAC;CAChB;AAED;;;;GAIG;AACH,MAAM,WAAW,aAAa;IAC5B,SAAS,EAAE,WAAW,CAAC;IACvB,SAAS,EAAE,eAAe,CAAC;IAC3B,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,YAAY,EAAE,OAAO,CAAC;KACvB,CAAC;CACH"}
|
|
@@ -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,4 @@
|
|
|
1
|
+
export type { DataValue, ExecuteQueryRequest, ExecuteQueryResponse, FunctionRid, FunctionVersion, GetByRidQueriesRequest, Parameter, ParameterId, Query, QueryAggregationKeyType, QueryAggregationRangeSubType, QueryAggregationRangeType, QueryAggregationValueType, QueryApiName, QueryArrayType, QueryDataType, QueryRuntimeErrorParameter, QuerySetType, QueryStructField, QueryStructType, QueryUnionType, StructFieldName, ThreeDimensionalAggregation, TimestampType, TwoDimensionalAggregation, } from "./_components.js";
|
|
2
|
+
export type { ExecuteQueryPermissionDenied, GetByRidQueriesPermissionDenied, QueryNotFound, } from "./_errors.js";
|
|
3
|
+
export * as Queries from "./public/Query.js";
|
|
4
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAgBA,YAAY,EACV,SAAS,EACT,mBAAmB,EACnB,oBAAoB,EACpB,WAAW,EACX,eAAe,EACf,sBAAsB,EACtB,SAAS,EACT,WAAW,EACX,KAAK,EACL,uBAAuB,EACvB,4BAA4B,EAC5B,yBAAyB,EACzB,yBAAyB,EACzB,YAAY,EACZ,cAAc,EACd,aAAa,EACb,0BAA0B,EAC1B,YAAY,EACZ,gBAAgB,EAChB,eAAe,EACf,cAAc,EACd,eAAe,EACf,2BAA2B,EAC3B,aAAa,EACb,yBAAyB,GAC1B,MAAM,kBAAkB,CAAC;AAC1B,YAAY,EACV,4BAA4B,EAC5B,+BAA+B,EAC/B,aAAa,GACd,MAAM,cAAc,CAAC;AACtB,OAAO,KAAK,OAAO,MAAM,mBAAmB,CAAC"}
|
package/build/browser/index.js
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
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 * as Queries from "./public/Query.js";
|
|
3
17
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"index.js","names":["Queries"],"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 * as Queries from \"./public/Query.js\";\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,KAAKA,OAAO,MAAM,mBAAmB","ignoreList":[]}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import type * as _Core from "@osdk/foundry.core";
|
|
2
|
+
import type { SharedClient as $Client, SharedClientContext as $ClientContext } from "@osdk/shared.client";
|
|
3
|
+
import type * as _Functions from "../_components.js";
|
|
4
|
+
/**
|
|
5
|
+
* Gets a specific query type with the given API name.
|
|
6
|
+
*
|
|
7
|
+
* @alpha
|
|
8
|
+
*
|
|
9
|
+
* Required Scopes: [api:functions-read]
|
|
10
|
+
* URL: /v2/functions/queries/{queryApiName}
|
|
11
|
+
*/
|
|
12
|
+
export declare function getQuery($ctx: $Client | $ClientContext, ...args: [
|
|
13
|
+
queryApiName: _Functions.QueryApiName,
|
|
14
|
+
$queryParams?: {
|
|
15
|
+
preview?: _Core.PreviewMode | undefined;
|
|
16
|
+
}
|
|
17
|
+
]): Promise<_Functions.Query>;
|
|
18
|
+
/**
|
|
19
|
+
* Gets a specific query type with the given RID.
|
|
20
|
+
*
|
|
21
|
+
* @alpha
|
|
22
|
+
*
|
|
23
|
+
* Required Scopes: [api:functions-read]
|
|
24
|
+
* URL: /v2/functions/queries/getByRid
|
|
25
|
+
*/
|
|
26
|
+
export declare function getByRidQueries($ctx: $Client | $ClientContext, ...args: [
|
|
27
|
+
$body: _Functions.GetByRidQueriesRequest,
|
|
28
|
+
$queryParams?: {
|
|
29
|
+
preview?: _Core.PreviewMode | undefined;
|
|
30
|
+
}
|
|
31
|
+
]): Promise<_Functions.Query>;
|
|
32
|
+
/**
|
|
33
|
+
* Executes a Query using the given parameters.
|
|
34
|
+
*
|
|
35
|
+
* Optional parameters do not need to be supplied.
|
|
36
|
+
*
|
|
37
|
+
* @alpha
|
|
38
|
+
*
|
|
39
|
+
* Required Scopes: [api:functions-read]
|
|
40
|
+
* URL: /v2/functions/queries/{queryApiName}/execute
|
|
41
|
+
*/
|
|
42
|
+
export declare function executeQuery($ctx: $Client | $ClientContext, ...args: [
|
|
43
|
+
queryApiName: _Functions.QueryApiName,
|
|
44
|
+
$body: _Functions.ExecuteQueryRequest,
|
|
45
|
+
$queryParams?: {
|
|
46
|
+
preview?: _Core.PreviewMode | undefined;
|
|
47
|
+
}
|
|
48
|
+
]): Promise<_Functions.ExecuteQueryResponse>;
|
|
49
|
+
//# sourceMappingURL=Query.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Query.d.ts","sourceRoot":"","sources":["../../../src/public/Query.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,oBAAoB,CAAC;AACjD,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,qBAAqB,CAAC;AAG7B,OAAO,KAAK,KAAK,UAAU,MAAM,mBAAmB,CAAC;AAWrD;;;;;;;GAOG;AACH,wBAAgB,QAAQ,CACtB,IAAI,EAAE,OAAO,GAAG,cAAc,EAC9B,GAAG,IAAI,EAAE;IACP,YAAY,EAAE,UAAU,CAAC,YAAY;IAErC,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,UAAU,CAAC,KAAK,CAAC,CAE3B;AASD;;;;;;;GAOG;AACH,wBAAgB,eAAe,CAC7B,IAAI,EAAE,OAAO,GAAG,cAAc,EAC9B,GAAG,IAAI,EAAE;IACP,KAAK,EAAE,UAAU,CAAC,sBAAsB;IACxC,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,UAAU,CAAC,KAAK,CAAC,CAE3B;AAUD;;;;;;;;;GASG;AACH,wBAAgB,YAAY,CAC1B,IAAI,EAAE,OAAO,GAAG,cAAc,EAC9B,GAAG,IAAI,EAAE;IACP,YAAY,EAAE,UAAU,CAAC,YAAY;IACrC,KAAK,EAAE,UAAU,CAAC,mBAAmB;IACrC,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,UAAU,CAAC,oBAAoB,CAAC,CAE1C"}
|
|
@@ -1,3 +1,56 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
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
|
+
import { foundryPlatformFetch as $foundryPlatformFetch } from "@osdk/shared.net.platformapi";
|
|
17
|
+
//
|
|
18
|
+
const _getQuery = [0, "/v2/functions/queries/{0}", 2];
|
|
19
|
+
/**
|
|
20
|
+
* Gets a specific query type with the given API name.
|
|
21
|
+
*
|
|
22
|
+
* @alpha
|
|
23
|
+
*
|
|
24
|
+
* Required Scopes: [api:functions-read]
|
|
25
|
+
* URL: /v2/functions/queries/{queryApiName}
|
|
26
|
+
*/
|
|
27
|
+
export function getQuery($ctx, ...args) {
|
|
28
|
+
return $foundryPlatformFetch($ctx, _getQuery, ...args);
|
|
29
|
+
}
|
|
30
|
+
const _getByRidQueries = [1, "/v2/functions/queries/getByRid", 3];
|
|
31
|
+
/**
|
|
32
|
+
* Gets a specific query type with the given RID.
|
|
33
|
+
*
|
|
34
|
+
* @alpha
|
|
35
|
+
*
|
|
36
|
+
* Required Scopes: [api:functions-read]
|
|
37
|
+
* URL: /v2/functions/queries/getByRid
|
|
38
|
+
*/
|
|
39
|
+
export function getByRidQueries($ctx, ...args) {
|
|
40
|
+
return $foundryPlatformFetch($ctx, _getByRidQueries, ...args);
|
|
41
|
+
}
|
|
42
|
+
const _executeQuery = [1, "/v2/functions/queries/{0}/execute", 3];
|
|
43
|
+
/**
|
|
44
|
+
* Executes a Query using the given parameters.
|
|
45
|
+
*
|
|
46
|
+
* Optional parameters do not need to be supplied.
|
|
47
|
+
*
|
|
48
|
+
* @alpha
|
|
49
|
+
*
|
|
50
|
+
* Required Scopes: [api:functions-read]
|
|
51
|
+
* URL: /v2/functions/queries/{queryApiName}/execute
|
|
52
|
+
*/
|
|
53
|
+
export function executeQuery($ctx, ...args) {
|
|
54
|
+
return $foundryPlatformFetch($ctx, _executeQuery, ...args);
|
|
55
|
+
}
|
|
3
56
|
//# sourceMappingURL=Query.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"Query.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_getQuery","getQuery","$ctx","args","_getByRidQueries","getByRidQueries","_executeQuery","executeQuery"],"sources":["Query.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 */\nimport { foundryPlatformFetch as $foundryPlatformFetch } from \"@osdk/shared.net.platformapi\";\n//\nconst _getQuery = [0, \"/v2/functions/queries/{0}\", 2];\n/**\n * Gets a specific query type with the given API name.\n *\n * @alpha\n *\n * Required Scopes: [api:functions-read]\n * URL: /v2/functions/queries/{queryApiName}\n */\nexport function getQuery($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _getQuery, ...args);\n}\nconst _getByRidQueries = [1, \"/v2/functions/queries/getByRid\", 3];\n/**\n * Gets a specific query type with the given RID.\n *\n * @alpha\n *\n * Required Scopes: [api:functions-read]\n * URL: /v2/functions/queries/getByRid\n */\nexport function getByRidQueries($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _getByRidQueries, ...args);\n}\nconst _executeQuery = [1, \"/v2/functions/queries/{0}/execute\", 3];\n/**\n * Executes a Query using the given parameters.\n *\n * Optional parameters do not need to be supplied.\n *\n * @alpha\n *\n * Required Scopes: [api:functions-read]\n * URL: /v2/functions/queries/{queryApiName}/execute\n */\nexport function executeQuery($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _executeQuery, ...args);\n}\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAASA,oBAAoB,IAAIC,qBAAqB,QAAQ,8BAA8B;AAC5F;AACA,MAAMC,SAAS,GAAG,CAAC,CAAC,EAAE,2BAA2B,EAAE,CAAC,CAAC;AACrD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,QAAQA,CAACC,IAAI,EAAE,GAAGC,IAAI,EAAE;EACpC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEF,SAAS,EAAE,GAAGG,IAAI,CAAC;AAC1D;AACA,MAAMC,gBAAgB,GAAG,CAAC,CAAC,EAAE,gCAAgC,EAAE,CAAC,CAAC;AACjE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,eAAeA,CAACH,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC3C,OAAOJ,qBAAqB,CAACG,IAAI,EAAEE,gBAAgB,EAAE,GAAGD,IAAI,CAAC;AACjE;AACA,MAAMG,aAAa,GAAG,CAAC,CAAC,EAAE,mCAAmC,EAAE,CAAC,CAAC;AACjE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,YAAYA,CAACL,IAAI,EAAE,GAAGC,IAAI,EAAE;EACxC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEI,aAAa,EAAE,GAAGH,IAAI,CAAC;AAC9D","ignoreList":[]}
|