pareto-core-shorthands 0.2.9 → 0.2.11

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.
@@ -5,11 +5,11 @@ export type Raw_Or_Normal_Dictionary<T> = {
5
5
  export type Raw_Or_Normal_List<T> = T[] | _pi.List<T>;
6
6
  export type Raw_Optional<T> = null | undefined | T;
7
7
  export type Reference_To_Normal_Dictionary_Entry<G_Source, T_Dictionary_Entry> = {
8
- readonly 'key': string;
8
+ readonly 'id': string;
9
9
  readonly 'location': G_Source;
10
10
  };
11
11
  export type Reference_To_Stacked_Dictionary_Entry<G_Source, T_Dictionary_Entry> = {
12
- readonly 'key': string;
12
+ readonly 'id': string;
13
13
  readonly 'location': G_Source;
14
14
  };
15
15
  export type Dictionary<G_Source, T_D> = {
@@ -112,14 +112,14 @@ exports.wrap_optional = wrap_optional;
112
112
  const wrap_reference = ($) => {
113
113
  return {
114
114
  'location': (0, get_location_info_1.$$)(depth + 1),
115
- 'key': $,
115
+ 'id': $,
116
116
  };
117
117
  };
118
118
  exports.wrap_reference = wrap_reference;
119
119
  const wrap_stack_reference = (name) => {
120
120
  return {
121
121
  'location': (0, get_location_info_1.$$)(depth + 1),
122
- 'key': name,
122
+ 'id': name,
123
123
  };
124
124
  };
125
125
  exports.wrap_stack_reference = wrap_stack_reference;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pareto-core-shorthands",
3
- "version": "0.2.9",
3
+ "version": "0.2.11",
4
4
  "license": "ISC",
5
5
  "description": "the pareto package used for building datasets",
6
6
  "author": "Corno",