@eide/foir-cli 0.4.5 → 0.4.6

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.
package/dist/cli.js CHANGED
@@ -4601,6 +4601,7 @@ async function reconcileModels(client, configId, models, summary) {
4601
4601
  manifestKeys.add(m.key);
4602
4602
  const config2 = { ...m.config };
4603
4603
  if (m.pluralName) config2.pluralName = m.pluralName;
4604
+ if (m.pluralKey) config2.pluralKey = m.pluralKey;
4604
4605
  if (m.description) config2.description = m.description;
4605
4606
  const ex = existingByKey.get(m.key);
4606
4607
  if (ex) {
@@ -34,6 +34,7 @@ interface ApplyConfigModelInput {
34
34
  key: string;
35
35
  name: string;
36
36
  pluralName?: string;
37
+ pluralKey?: string;
37
38
  description?: string;
38
39
  fields?: FieldDefinitionInput[];
39
40
  config?: Record<string, unknown>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eide/foir-cli",
3
- "version": "0.4.5",
3
+ "version": "0.4.6",
4
4
  "description": "Universal platform CLI for Foir platform",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -49,7 +49,7 @@
49
49
  "@bufbuild/protobuf": "^2.0.0",
50
50
  "@connectrpc/connect": "^2.0.0",
51
51
  "@connectrpc/connect-node": "^2.0.0",
52
- "@eide/foir-proto-ts": "^0.3.3",
52
+ "@eide/foir-proto-ts": "^0.3.5",
53
53
  "chalk": "^5.3.0",
54
54
  "commander": "^12.1.0",
55
55
  "dotenv": "^16.4.5",