@memberjunction/core 0.9.155 → 0.9.158

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.
@@ -102,10 +102,10 @@ export declare class EntityPermissionInfo extends BaseInfo {
102
102
  constructor(initData: any);
103
103
  }
104
104
  export declare const EntityFieldTSType: {
105
- readonly String: "String";
106
- readonly Number: "Number";
105
+ readonly String: "string";
106
+ readonly Number: "number";
107
107
  readonly Date: "Date";
108
- readonly Boolean: "Boolean";
108
+ readonly Boolean: "boolean";
109
109
  };
110
110
  export type EntityFieldTSType = typeof EntityFieldTSType[keyof typeof EntityFieldTSType];
111
111
  export declare const EntityFieldGraphQLType: {
@@ -144,10 +144,10 @@ class EntityPermissionInfo extends baseInfo_1.BaseInfo {
144
144
  }
145
145
  exports.EntityPermissionInfo = EntityPermissionInfo;
146
146
  exports.EntityFieldTSType = {
147
- String: 'String',
148
- Number: 'Number',
147
+ String: 'string',
148
+ Number: 'number',
149
149
  Date: 'Date',
150
- Boolean: 'Boolean',
150
+ Boolean: 'boolean',
151
151
  };
152
152
  exports.EntityFieldGraphQLType = {
153
153
  Int: 'Int',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memberjunction/core",
3
- "version": "0.9.155",
3
+ "version": "0.9.158",
4
4
  "description": "MemberJunction: Core Library including Metadata, Application, Entity Retrieval and Manipulation, and Utilities",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -19,6 +19,6 @@
19
19
  "typescript": "^5.3.3"
20
20
  },
21
21
  "dependencies": {
22
- "@memberjunction/global": "^0.9.141"
22
+ "@memberjunction/global": "^0.9.142"
23
23
  }
24
24
  }