@budibase/shared-core 3.15.0 → 3.15.1
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/dist/automations/steps/extractState.d.ts +2 -0
- package/dist/automations/steps/index.d.ts +2 -0
- package/dist/automations/steps/loopv2.d.ts +2 -0
- package/dist/constants/api.d.ts +4 -0
- package/dist/filters.d.ts +2 -2
- package/dist/index.js +15 -15
- package/dist/index.js.map +4 -4
- package/package.json +2 -2
|
@@ -28,3 +28,5 @@ export * as translate from "./ai/translate";
|
|
|
28
28
|
export * as summarise from "./ai/summarise";
|
|
29
29
|
export * as generate from "./ai/generate";
|
|
30
30
|
export * as extract from "./ai/extract";
|
|
31
|
+
export * as extractState from "./extractState";
|
|
32
|
+
export * as loopV2 from "./loopv2";
|
package/dist/constants/api.d.ts
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
|
+
export declare enum ClientHeader {
|
|
2
|
+
BUILDER = "builder"
|
|
3
|
+
}
|
|
1
4
|
export declare enum Header {
|
|
2
5
|
API_KEY = "x-budibase-api-key",
|
|
3
6
|
LICENSE_KEY = "x-budibase-license-key",
|
|
4
7
|
API_VER = "x-budibase-api-version",
|
|
5
8
|
APP_ID = "x-budibase-app-id",
|
|
6
9
|
SESSION_ID = "x-budibase-session-id",
|
|
10
|
+
CLIENT = "x-budibase-client",
|
|
7
11
|
TYPE = "x-budibase-type",
|
|
8
12
|
PREVIEW_ROLE = "x-budibase-role",
|
|
9
13
|
TENANT_ID = "x-budibase-tenant-id",
|
package/dist/filters.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Datasource, EmptyFilterOption, FieldConstraints, FieldType, FieldSubType, FormulaType, LegacyFilter, RowSearchParams, SearchFilter, SearchFilters, SearchQueryFields, SearchResponse, SortOrder, SortType, Table, UISearchFilter } from "@budibase/types";
|
|
2
2
|
/**
|
|
3
3
|
* Returns the valid operator options for a certain data type
|
|
4
4
|
*/
|
|
5
5
|
export declare const getValidOperatorsForType: (fieldType: {
|
|
6
6
|
type: FieldType;
|
|
7
|
-
subtype?:
|
|
7
|
+
subtype?: FieldSubType;
|
|
8
8
|
formulaType?: FormulaType;
|
|
9
9
|
constraints?: FieldConstraints;
|
|
10
10
|
}, field?: string, datasource?: Datasource & {
|