sm-types 1.5.4 → 1.5.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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "author": "Smartrips",
4
4
  "license": "ISC",
5
5
  "keywords": [],
6
- "version": "1.5.4",
6
+ "version": "1.5.6",
7
7
  "description": "",
8
8
  "repository": {
9
9
  "type": "git",
@@ -364,9 +364,13 @@ export interface IPassengerInfo {
364
364
  nationality: string;
365
365
  residenceCountry: string;
366
366
  cpf: {
367
+ firstName: string;
368
+ surname: string;
367
369
  number: string;
368
370
  };
369
371
  passport: {
372
+ firstName: string;
373
+ surname: string;
370
374
  number: string;
371
375
  issuingCountry: string;
372
376
  expirationDate: Date | string;
@@ -76,9 +76,13 @@ export interface IPassengerInfoRequestDto {
76
76
  nationality: string;
77
77
  residenceCountry: string;
78
78
  cpf: {
79
+ firstName: string;
80
+ surname: string;
79
81
  number: string;
80
82
  };
81
83
  passport: {
84
+ firstName: string;
85
+ surname: string;
82
86
  number: string;
83
87
  issuingCountry: string;
84
88
  expirationDate: Date | string;
package/sm-wcf/index.d.ts CHANGED
@@ -129,9 +129,13 @@ export interface IPassengerInfoReqDto {
129
129
  nationality: string;
130
130
  residenceCountry: string;
131
131
  cpf: {
132
+ firstName: string;
133
+ surname: string;
132
134
  number: string;
133
135
  };
134
136
  passport: {
137
+ firstName: string;
138
+ surname: string;
135
139
  number: string;
136
140
  issuingCountry: string;
137
141
  expirationDate: Date | string;