react-semaphor 0.1.9 → 0.1.12
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/chunks/dashboard-plus-B9t5rjti.js +280 -0
- package/dist/chunks/{dashboard-plus-BytVlMyd.js → dashboard-plus-Cb-04T5S.js} +6190 -5845
- package/dist/chunks/{index-CUY5zH5F.js → index-IA4DqOkm.js} +15535 -15253
- package/dist/chunks/{index-6uUe0j4L.js → index-ayPbvue8.js} +207 -202
- package/dist/dashboard/index.cjs +1 -1
- package/dist/dashboard/index.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +3 -3
- package/dist/style.css +1 -1
- package/dist/surfboard/index.cjs +1 -1
- package/dist/surfboard/index.js +1 -1
- package/dist/types/dashboard.d.ts +1 -1
- package/dist/types/main.d.ts +16 -1
- package/dist/types/surfboard.d.ts +1 -1
- package/dist/types/types.d.ts +1 -1
- package/package.json +1 -1
- package/dist/chunks/dashboard-plus-DG-eNlPy.js +0 -270
package/dist/surfboard/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../chunks/dashboard-plus-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../chunks/dashboard-plus-B9t5rjti.js"),r=require("../types/index.cjs");exports.Surfboard=e.DashboardPlus;exports.EMPTY_SELECTION=r.EMPTY_SELECTION;
|
package/dist/surfboard/index.js
CHANGED
|
@@ -686,7 +686,7 @@ declare type OldFilterValue = string | number | null | (string | number)[] | Ran
|
|
|
686
686
|
|
|
687
687
|
declare type Operation = '=' | '>' | '<' | '>=' | '<=' | '!=' | 'in' | 'not in' | 'like' | 'not like' | 'between' | 'not between' | 'is null' | 'is not null';
|
|
688
688
|
|
|
689
|
-
declare type Operator = '=' | '!=' | '>' | '>=' | '<' | '<=' | 'contains' | 'startsWith' | 'endsWith' | 'in' | 'not in' | 'between' | 'isNull' | 'isNotNull';
|
|
689
|
+
declare type Operator = '=' | '!=' | '>' | '>=' | '<' | '<=' | 'contains' | 'startsWith' | 'endsWith' | 'in' | 'not in' | 'between' | 'not between' | 'isNull' | 'isNotNull';
|
|
690
690
|
|
|
691
691
|
declare type OptionsMap = {
|
|
692
692
|
number: NumberOptions;
|
package/dist/types/main.d.ts
CHANGED
|
@@ -253,6 +253,21 @@ export declare type AuthToken = {
|
|
|
253
253
|
refreshToken?: string;
|
|
254
254
|
};
|
|
255
255
|
|
|
256
|
+
/**
|
|
257
|
+
* Metadata for auto-resolved joins returned by the backend
|
|
258
|
+
*
|
|
259
|
+
* When the backend auto-resolves joins using semantic relationships,
|
|
260
|
+
* it returns this metadata alongside the query results.
|
|
261
|
+
*/
|
|
262
|
+
export declare interface AutoJoinMetadata {
|
|
263
|
+
/** The complete join plan that was auto-resolved */
|
|
264
|
+
resolvedJoinPlan: JoinPlan;
|
|
265
|
+
/** Flag indicating the joins were auto-resolved (vs manually configured) */
|
|
266
|
+
autoResolved: boolean;
|
|
267
|
+
/** Names of the semantic relationships that were used */
|
|
268
|
+
relationshipsUsed: string[];
|
|
269
|
+
}
|
|
270
|
+
|
|
256
271
|
export declare type AxisConfig = {
|
|
257
272
|
enabled?: boolean;
|
|
258
273
|
name?: {
|
|
@@ -1203,7 +1218,7 @@ export declare type OldFilterValue = string | number | null | (string | number)[
|
|
|
1203
1218
|
|
|
1204
1219
|
declare type Operation = '=' | '>' | '<' | '>=' | '<=' | '!=' | 'in' | 'not in' | 'like' | 'not like' | 'between' | 'not between' | 'is null' | 'is not null';
|
|
1205
1220
|
|
|
1206
|
-
export declare type Operator = '=' | '!=' | '>' | '>=' | '<' | '<=' | 'contains' | 'startsWith' | 'endsWith' | 'in' | 'not in' | 'between' | 'isNull' | 'isNotNull';
|
|
1221
|
+
export declare type Operator = '=' | '!=' | '>' | '>=' | '<' | '<=' | 'contains' | 'startsWith' | 'endsWith' | 'in' | 'not in' | 'between' | 'not between' | 'isNull' | 'isNotNull';
|
|
1207
1222
|
|
|
1208
1223
|
declare type OptionsMap = {
|
|
1209
1224
|
number: NumberOptions;
|
|
@@ -689,7 +689,7 @@ declare type OldFilterValue = string | number | null | (string | number)[] | Ran
|
|
|
689
689
|
|
|
690
690
|
declare type Operation = '=' | '>' | '<' | '>=' | '<=' | '!=' | 'in' | 'not in' | 'like' | 'not like' | 'between' | 'not between' | 'is null' | 'is not null';
|
|
691
691
|
|
|
692
|
-
declare type Operator = '=' | '!=' | '>' | '>=' | '<' | '<=' | 'contains' | 'startsWith' | 'endsWith' | 'in' | 'not in' | 'between' | 'isNull' | 'isNotNull';
|
|
692
|
+
declare type Operator = '=' | '!=' | '>' | '>=' | '<' | '<=' | 'contains' | 'startsWith' | 'endsWith' | 'in' | 'not in' | 'between' | 'not between' | 'isNull' | 'isNotNull';
|
|
693
693
|
|
|
694
694
|
declare type OptionsMap = {
|
|
695
695
|
number: NumberOptions;
|
package/dist/types/types.d.ts
CHANGED
|
@@ -683,7 +683,7 @@ declare type OldFilterValue = string | number | null | (string | number)[] | Ran
|
|
|
683
683
|
|
|
684
684
|
declare type Operation = '=' | '>' | '<' | '>=' | '<=' | '!=' | 'in' | 'not in' | 'like' | 'not like' | 'between' | 'not between' | 'is null' | 'is not null';
|
|
685
685
|
|
|
686
|
-
declare type Operator = '=' | '!=' | '>' | '>=' | '<' | '<=' | 'contains' | 'startsWith' | 'endsWith' | 'in' | 'not in' | 'between' | 'isNull' | 'isNotNull';
|
|
686
|
+
declare type Operator = '=' | '!=' | '>' | '>=' | '<' | '<=' | 'contains' | 'startsWith' | 'endsWith' | 'in' | 'not in' | 'between' | 'not between' | 'isNull' | 'isNotNull';
|
|
687
687
|
|
|
688
688
|
declare type OptionsMap = {
|
|
689
689
|
number: NumberOptions;
|