@raytio/core 11.8.0 → 11.8.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.
@@ -106,11 +106,34 @@ export declare const removePrivateFields: (schema: Schema) => {
106
106
  value: string;
107
107
  }[];
108
108
  }[];
109
- kanban?: {
110
- column_field?: string;
111
- title_field?: string;
112
- card_fields?: string[];
113
- };
109
+ views?: {
110
+ name: string;
111
+ filter?: {
112
+ operation: "and" | "or";
113
+ tokens: {
114
+ propertyKey: string;
115
+ operator: string;
116
+ value: string;
117
+ }[];
118
+ };
119
+ sorting?: {
120
+ sortingColumn: string;
121
+ isDescending: boolean;
122
+ } | null;
123
+ columnPrefs?: {
124
+ id: string;
125
+ visible: boolean;
126
+ }[];
127
+ pageSize?: number;
128
+ wrapLines?: boolean;
129
+ stripedRows?: boolean;
130
+ contentDensity?: "comfortable" | "compact";
131
+ stickyColumns?: {
132
+ first: number;
133
+ last: number;
134
+ };
135
+ }[];
136
+ kanban?: import("@raytio/types").KanbanBoard | import("@raytio/types").KanbanBoard[];
114
137
  };
115
138
  onboard_properties?: {
116
139
  actions?: {
@@ -163,6 +186,7 @@ export declare const removePrivateFields: (schema: Schema) => {
163
186
  return_to?: string;
164
187
  };
165
188
  name: import("@raytio/types").SchemaName;
189
+ merchant_id?: import("@raytio/types").MId;
166
190
  type?: import("@raytio/types").DataTypes;
167
191
  conditionalTags?: import("@raytio/types").ConditionalTags[];
168
192
  group_title?: string;
@@ -1,2 +1,2 @@
1
1
  import type { Schema, WrappedSchema } from "@raytio/types";
2
- export declare function unwrapSchema(wrapped: WrappedSchema): WrappedSchema["schema"] & Pick<WrappedSchema, "start_date" | "end_date" | "schema_type" | "active" | "resource_group" | "resource_name"> & Pick<Schema, "name" | "version" | "id" | "metadata">;
2
+ export declare function unwrapSchema(wrapped: WrappedSchema): WrappedSchema["schema"] & Pick<WrappedSchema, "start_date" | "end_date" | "schema_type" | "merchant_id" | "active" | "resource_group" | "resource_name"> & Pick<Schema, "name" | "version" | "id" | "metadata">;
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.unwrapSchema = unwrapSchema;
4
4
  function unwrapSchema(wrapped) {
5
- return Object.assign(Object.assign({}, wrapped.schema), { name: wrapped.schema_name, start_date: wrapped.start_date, end_date: wrapped.end_date, version: wrapped.schema_version, schema_type: wrapped.schema_type, active: wrapped.active, resource_group: wrapped.resource_group, resource_name: wrapped.resource_name,
5
+ return Object.assign(Object.assign({}, wrapped.schema), { name: wrapped.schema_name, start_date: wrapped.start_date, end_date: wrapped.end_date, version: wrapped.schema_version, schema_type: wrapped.schema_type, merchant_id: wrapped.merchant_id, active: wrapped.active, resource_group: wrapped.resource_group, resource_name: wrapped.resource_name,
6
6
  // schemas are identified by `name`, not `id`; CommonFields-aligned but unused
7
7
  id: undefined, metadata: undefined });
8
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@raytio/core",
3
- "version": "11.8.0",
3
+ "version": "11.8.2",
4
4
  "license": "MIT",
5
5
  "main": "index",
6
6
  "types": "index",
@@ -18,7 +18,7 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@raytio/maxcryptor": "3.1.0",
21
- "@raytio/types": "8.3.0",
21
+ "@raytio/types": "workspace:^",
22
22
  "openpgp": "^6.1.0",
23
23
  "ramda": "0.30.1"
24
24
  },