export-table-pulgin-csharp 1.1.120 → 1.1.122

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.
@@ -257,7 +257,7 @@ const convTupleArrayType = (f) => {
257
257
  let type1 = m[1];
258
258
  let type2 = m[2];
259
259
  let isArray = m[3] != null;
260
- let line = `public System.Tuple<${type1}, ${type2}>${isArray ? "[]" : ""} ${(0, exports.convMemberName)(f.name)}Obj;`;
260
+ let line = `public WritableValueTuple<${type1}, ${type2}>${isArray ? "[]" : ""} ${(0, exports.convMemberName)(f.name)}Obj;`;
261
261
  return line;
262
262
  }
263
263
  else {
@@ -136,7 +136,7 @@ namespace ${exportNamespace}
136
136
  [System.Serializable]
137
137
  internal class TempA
138
138
  {
139
- public FAnnouncementTable[] a;
139
+ public ${RowClass}[] a;
140
140
  }
141
141
  public static async Task Load()
142
142
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "export-table-pulgin-csharp",
3
- "version": "1.1.120",
3
+ "version": "1.1.122",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {},
@@ -204,7 +204,7 @@ export const convTupleArrayType = (f: Field) => {
204
204
  let type1 = m[1]
205
205
  let type2 = m[2]
206
206
  let isArray = m[3] != null
207
- let line = `public System.Tuple<${type1}, ${type2}>${isArray ? "[]" : ""} ${convMemberName(f.name)}Obj;`
207
+ let line = `public WritableValueTuple<${type1}, ${type2}>${isArray ? "[]" : ""} ${convMemberName(f.name)}Obj;`
208
208
  return line;
209
209
  } else {
210
210
  return `public ${line0} ${convMemberName(f.name)}Obj;`
@@ -132,7 +132,7 @@ namespace ${exportNamespace}
132
132
  [System.Serializable]
133
133
  internal class TempA
134
134
  {
135
- public FAnnouncementTable[] a;
135
+ public ${RowClass}[] a;
136
136
  }
137
137
  public static async Task Load()
138
138
  {