@manuscripts/transform 2.0.1-LEAN-3083-3 → 2.0.1-LEAN-3083-5

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.
@@ -11,6 +11,8 @@ exports.affiliation = {
11
11
  addressLine3: { default: '' },
12
12
  postCode: { default: '' },
13
13
  country: { default: '' },
14
+ county: { default: '' },
15
+ city: { default: '' },
14
16
  priority: { default: undefined },
15
17
  email: {
16
18
  default: {
@@ -618,6 +618,8 @@ class Decoder {
618
618
  addressLine3: model.addressLine3,
619
619
  postCode: model.postCode,
620
620
  country: model.country,
621
+ county: model.county,
622
+ city: model.city,
621
623
  email: model.email,
622
624
  department: model.department,
623
625
  priority: model.priority,
@@ -630,6 +632,7 @@ class Decoder {
630
632
  role: model.role,
631
633
  affiliations: model.affiliations,
632
634
  email: model.email,
635
+ isJointContributor: model.isJointContributor,
633
636
  bibliographicName: model.bibliographicName,
634
637
  userID: model.userID,
635
638
  invitationID: model.invitationID,
@@ -510,6 +510,8 @@ const encoders = {
510
510
  addressLine3: node.attrs.addressLine3,
511
511
  postCode: node.attrs.postCode,
512
512
  country: node.attrs.country,
513
+ county: node.attrs.county,
514
+ city: node.attrs.city,
513
515
  email: node.attrs.email,
514
516
  priority: node.attrs.priority,
515
517
  }),
@@ -520,6 +522,7 @@ const encoders = {
520
522
  userID: node.attrs.userID,
521
523
  invitationID: node.attrs.invitationID,
522
524
  isCorresponding: node.attrs.isCorresponding,
525
+ isJointContributor: node.attrs.isJointContributor,
523
526
  ORCIDIdentifier: node.attrs.ORCIDIdentifier,
524
527
  footnote: node.attrs.footnote,
525
528
  corresp: node.attrs.corresp,
@@ -8,6 +8,8 @@ export const affiliation = {
8
8
  addressLine3: { default: '' },
9
9
  postCode: { default: '' },
10
10
  country: { default: '' },
11
+ county: { default: '' },
12
+ city: { default: '' },
11
13
  priority: { default: undefined },
12
14
  email: {
13
15
  default: {
@@ -609,6 +609,8 @@ export class Decoder {
609
609
  addressLine3: model.addressLine3,
610
610
  postCode: model.postCode,
611
611
  country: model.country,
612
+ county: model.county,
613
+ city: model.city,
612
614
  email: model.email,
613
615
  department: model.department,
614
616
  priority: model.priority,
@@ -621,6 +623,7 @@ export class Decoder {
621
623
  role: model.role,
622
624
  affiliations: model.affiliations,
623
625
  email: model.email,
626
+ isJointContributor: model.isJointContributor,
624
627
  bibliographicName: model.bibliographicName,
625
628
  userID: model.userID,
626
629
  invitationID: model.invitationID,
@@ -502,6 +502,8 @@ const encoders = {
502
502
  addressLine3: node.attrs.addressLine3,
503
503
  postCode: node.attrs.postCode,
504
504
  country: node.attrs.country,
505
+ county: node.attrs.county,
506
+ city: node.attrs.city,
505
507
  email: node.attrs.email,
506
508
  priority: node.attrs.priority,
507
509
  }),
@@ -512,6 +514,7 @@ const encoders = {
512
514
  userID: node.attrs.userID,
513
515
  invitationID: node.attrs.invitationID,
514
516
  isCorresponding: node.attrs.isCorresponding,
517
+ isJointContributor: node.attrs.isJointContributor,
515
518
  ORCIDIdentifier: node.attrs.ORCIDIdentifier,
516
519
  footnote: node.attrs.footnote,
517
520
  corresp: node.attrs.corresp,
@@ -13,6 +13,8 @@ interface Attrs {
13
13
  addressLine3: string;
14
14
  postCode: string;
15
15
  country: string;
16
+ county: string;
17
+ city: string;
16
18
  email: Email;
17
19
  priority: number;
18
20
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@manuscripts/transform",
3
3
  "description": "ProseMirror transformer for Manuscripts applications",
4
- "version": "2.0.1-LEAN-3083-3",
4
+ "version": "2.0.1-LEAN-3083-5",
5
5
  "repository": "github:Atypon-OpenSource/manuscripts-transform",
6
6
  "license": "Apache-2.0",
7
7
  "main": "dist/cjs",