@budibase/types 2.29.14 → 2.29.16

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/index.js CHANGED
@@ -29,6 +29,7 @@ __export(src_exports, {
29
29
  AppBackupTrigger: () => AppBackupTrigger,
30
30
  AppBackupType: () => AppBackupType,
31
31
  AppEnvironment: () => AppEnvironment,
32
+ ArrayOperator: () => ArrayOperator,
32
33
  AsyncEvents: () => AsyncEvents,
33
34
  AuditLogResourceStatus: () => AuditLogResourceStatus,
34
35
  AuditLogSystemUser: () => AuditLogSystemUser,
@@ -48,6 +49,7 @@ __export(src_exports, {
48
49
  AutomationTriggerStepId: () => AutomationTriggerStepId,
49
50
  BBReferenceFieldSubType: () => BBReferenceFieldSubType,
50
51
  BREAKDOWN_QUOTA_NAMES: () => BREAKDOWN_QUOTA_NAMES,
52
+ BasicOperator: () => BasicOperator,
51
53
  BreakdownQuotaName: () => BreakdownQuotaName,
52
54
  CommandWord: () => CommandWord,
53
55
  ConfigType: () => ConfigType,
@@ -72,6 +74,7 @@ __export(src_exports, {
72
74
  IdentityType: () => IdentityType,
73
75
  IncludeRelationship: () => IncludeRelationship,
74
76
  InitType: () => InitType,
77
+ InternalSearchFilterOperator: () => InternalSearchFilterOperator,
75
78
  InternalTable: () => InternalTable,
76
79
  JsonFieldSubType: () => JsonFieldSubType,
77
80
  JsonTypes: () => JsonTypes,
@@ -96,6 +99,7 @@ __export(src_exports, {
96
99
  QueryType: () => QueryType,
97
100
  QuotaType: () => QuotaType,
98
101
  QuotaUsageType: () => QuotaUsageType,
102
+ RangeOperator: () => RangeOperator,
99
103
  RelationshipType: () => RelationshipType,
100
104
  RestAuthType: () => RestAuthType,
101
105
  RowOperations: () => RowOperations,
@@ -104,7 +108,6 @@ __export(src_exports, {
104
108
  SSOProviderType: () => SSOProviderType,
105
109
  ScheduleRepeatPeriod: () => ScheduleRepeatPeriod,
106
110
  ScheduleType: () => ScheduleType,
107
- SearchFilterOperator: () => SearchFilterOperator,
108
111
  SearchIndex: () => SearchIndex,
109
112
  ServiceType: () => ServiceType,
110
113
  SortOption: () => SortOption,
@@ -664,20 +667,30 @@ var DSPlusOperation = /* @__PURE__ */ ((DSPlusOperation2) => {
664
667
  })(DSPlusOperation || {});
665
668
 
666
669
  // src/sdk/search.ts
667
- var SearchFilterOperator = /* @__PURE__ */ ((SearchFilterOperator2) => {
668
- SearchFilterOperator2["STRING"] = "string";
669
- SearchFilterOperator2["FUZZY"] = "fuzzy";
670
- SearchFilterOperator2["RANGE"] = "range";
671
- SearchFilterOperator2["EQUAL"] = "equal";
672
- SearchFilterOperator2["NOT_EQUAL"] = "notEqual";
673
- SearchFilterOperator2["EMPTY"] = "empty";
674
- SearchFilterOperator2["NOT_EMPTY"] = "notEmpty";
675
- SearchFilterOperator2["ONE_OF"] = "oneOf";
676
- SearchFilterOperator2["CONTAINS"] = "contains";
677
- SearchFilterOperator2["NOT_CONTAINS"] = "notContains";
678
- SearchFilterOperator2["CONTAINS_ANY"] = "containsAny";
679
- return SearchFilterOperator2;
680
- })(SearchFilterOperator || {});
670
+ var BasicOperator = /* @__PURE__ */ ((BasicOperator2) => {
671
+ BasicOperator2["EQUAL"] = "equal";
672
+ BasicOperator2["NOT_EQUAL"] = "notEqual";
673
+ BasicOperator2["EMPTY"] = "empty";
674
+ BasicOperator2["NOT_EMPTY"] = "notEmpty";
675
+ BasicOperator2["FUZZY"] = "fuzzy";
676
+ BasicOperator2["STRING"] = "string";
677
+ return BasicOperator2;
678
+ })(BasicOperator || {});
679
+ var ArrayOperator = /* @__PURE__ */ ((ArrayOperator2) => {
680
+ ArrayOperator2["CONTAINS"] = "contains";
681
+ ArrayOperator2["NOT_CONTAINS"] = "notContains";
682
+ ArrayOperator2["CONTAINS_ANY"] = "containsAny";
683
+ ArrayOperator2["ONE_OF"] = "oneOf";
684
+ return ArrayOperator2;
685
+ })(ArrayOperator || {});
686
+ var RangeOperator = /* @__PURE__ */ ((RangeOperator2) => {
687
+ RangeOperator2["RANGE"] = "range";
688
+ return RangeOperator2;
689
+ })(RangeOperator || {});
690
+ var InternalSearchFilterOperator = /* @__PURE__ */ ((InternalSearchFilterOperator2) => {
691
+ InternalSearchFilterOperator2["COMPLEX_ID_OPERATOR"] = "_complexIdOperator";
692
+ return InternalSearchFilterOperator2;
693
+ })(InternalSearchFilterOperator || {});
681
694
  var EmptyFilterOption = /* @__PURE__ */ ((EmptyFilterOption2) => {
682
695
  EmptyFilterOption2["RETURN_ALL"] = "all";
683
696
  EmptyFilterOption2["RETURN_NONE"] = "none";
@@ -1290,6 +1303,7 @@ var MaintenanceType = /* @__PURE__ */ ((MaintenanceType2) => {
1290
1303
  AppBackupTrigger,
1291
1304
  AppBackupType,
1292
1305
  AppEnvironment,
1306
+ ArrayOperator,
1293
1307
  AsyncEvents,
1294
1308
  AuditLogResourceStatus,
1295
1309
  AuditLogSystemUser,
@@ -1309,6 +1323,7 @@ var MaintenanceType = /* @__PURE__ */ ((MaintenanceType2) => {
1309
1323
  AutomationTriggerStepId,
1310
1324
  BBReferenceFieldSubType,
1311
1325
  BREAKDOWN_QUOTA_NAMES,
1326
+ BasicOperator,
1312
1327
  BreakdownQuotaName,
1313
1328
  CommandWord,
1314
1329
  ConfigType,
@@ -1333,6 +1348,7 @@ var MaintenanceType = /* @__PURE__ */ ((MaintenanceType2) => {
1333
1348
  IdentityType,
1334
1349
  IncludeRelationship,
1335
1350
  InitType,
1351
+ InternalSearchFilterOperator,
1336
1352
  InternalTable,
1337
1353
  JsonFieldSubType,
1338
1354
  JsonTypes,
@@ -1357,6 +1373,7 @@ var MaintenanceType = /* @__PURE__ */ ((MaintenanceType2) => {
1357
1373
  QueryType,
1358
1374
  QuotaType,
1359
1375
  QuotaUsageType,
1376
+ RangeOperator,
1360
1377
  RelationshipType,
1361
1378
  RestAuthType,
1362
1379
  RowOperations,
@@ -1365,7 +1382,6 @@ var MaintenanceType = /* @__PURE__ */ ((MaintenanceType2) => {
1365
1382
  SSOProviderType,
1366
1383
  ScheduleRepeatPeriod,
1367
1384
  ScheduleType,
1368
- SearchFilterOperator,
1369
1385
  SearchIndex,
1370
1386
  ServiceType,
1371
1387
  SortOption,