@beabee/beabee-common 1.19.0 → 1.19.2

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.
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const apiKeyFilters = {
4
+ id: {
5
+ type: "text",
6
+ },
7
+ createdAt: {
8
+ type: "date",
9
+ },
10
+ };
@@ -66,6 +66,9 @@ exports.calloutResponseFilters = {
66
66
  },
67
67
  };
68
68
  exports.calloutResponseCommentFilters = {
69
+ id: {
70
+ type: "text",
71
+ },
69
72
  responseId: {
70
73
  type: "text",
71
74
  },
@@ -0,0 +1,9 @@
1
+ const apiKeyFilters = {
2
+ id: {
3
+ type: "text",
4
+ },
5
+ createdAt: {
6
+ type: "date",
7
+ },
8
+ };
9
+ export {};
@@ -63,6 +63,9 @@ export const calloutResponseFilters = {
63
63
  },
64
64
  };
65
65
  export const calloutResponseCommentFilters = {
66
+ id: {
67
+ type: "text",
68
+ },
66
69
  responseId: {
67
70
  type: "text",
68
71
  },
@@ -0,0 +1,10 @@
1
+ declare const apiKeyFilters: {
2
+ readonly id: {
3
+ readonly type: "text";
4
+ };
5
+ readonly createdAt: {
6
+ readonly type: "date";
7
+ };
8
+ };
9
+ export type ApiKeyFilterName = keyof typeof apiKeyFilters;
10
+ export {};
@@ -60,6 +60,9 @@ export declare const calloutResponseFilters: {
60
60
  };
61
61
  export type CalloutResponseFilterName = keyof typeof calloutResponseFilters;
62
62
  export declare const calloutResponseCommentFilters: {
63
+ readonly id: {
64
+ readonly type: "text";
65
+ };
63
66
  readonly responseId: {
64
67
  readonly type: "text";
65
68
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beabee/beabee-common",
3
- "version": "1.19.0",
3
+ "version": "1.19.2",
4
4
  "description": "",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",