@raytio/core 11.8.1 → 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.
@@ -133,11 +133,7 @@ export declare const removePrivateFields: (schema: Schema) => {
133
133
  last: number;
134
134
  };
135
135
  }[];
136
- kanban?: {
137
- column_field?: string;
138
- title_field?: string;
139
- card_fields?: string[];
140
- };
136
+ kanban?: import("@raytio/types").KanbanBoard | import("@raytio/types").KanbanBoard[];
141
137
  };
142
138
  onboard_properties?: {
143
139
  actions?: {
@@ -190,6 +186,7 @@ export declare const removePrivateFields: (schema: Schema) => {
190
186
  return_to?: string;
191
187
  };
192
188
  name: import("@raytio/types").SchemaName;
189
+ merchant_id?: import("@raytio/types").MId;
193
190
  type?: import("@raytio/types").DataTypes;
194
191
  conditionalTags?: import("@raytio/types").ConditionalTags[];
195
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.1",
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.1",
21
+ "@raytio/types": "workspace:^",
22
22
  "openpgp": "^6.1.0",
23
23
  "ramda": "0.30.1"
24
24
  },