sm-types 1.4.2 → 1.4.3

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sm-types",
3
- "version": "1.4.2",
3
+ "version": "1.4.3",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "tsc",
@@ -481,8 +481,8 @@ declare const PASSENGER_TYPE: {
481
481
  readonly INFANT: "INF";
482
482
  };
483
483
  declare const SEX: {
484
- readonly MALE: "Male";
485
- readonly FEMALE: "Female";
484
+ readonly MALE: "M";
485
+ readonly FEMALE: "F";
486
486
  };
487
487
  declare const SM_AZUL_PRICE_STATUS: {
488
488
  readonly INVALID: "Invalid";
@@ -27,8 +27,8 @@ var PASSENGER_TYPE = {
27
27
  INFANT: "INF",
28
28
  };
29
29
  var SEX = {
30
- MALE: "Male",
31
- FEMALE: "Female",
30
+ MALE: "M",
31
+ FEMALE: "F",
32
32
  };
33
33
  var SM_AZUL_PRICE_STATUS = {
34
34
  INVALID: "Invalid",
@@ -12,8 +12,8 @@ export declare const CurrencyOptions: {
12
12
  readonly USD: "USD";
13
13
  };
14
14
  export declare const Gender: {
15
- readonly MALE: "Male";
16
- readonly FEMALE: "Female";
15
+ readonly MALE: "M";
16
+ readonly FEMALE: "F";
17
17
  };
18
18
  export declare const FareClassControl: {
19
19
  readonly LOWEST_FARE_CLASS: "LowestFareClass";
@@ -15,8 +15,8 @@ exports.CurrencyOptions = {
15
15
  USD: "USD",
16
16
  };
17
17
  exports.Gender = {
18
- MALE: "Male",
19
- FEMALE: "Female",
18
+ MALE: "M",
19
+ FEMALE: "F",
20
20
  };
21
21
  exports.FareClassControl = {
22
22
  LOWEST_FARE_CLASS: "LowestFareClass",
package/sm-wcf/index.d.ts CHANGED
@@ -125,7 +125,7 @@ export interface IPassengerInfoReqDto {
125
125
  firstName: string;
126
126
  surname: string;
127
127
  birthDate: Date | string;
128
- sex: "Male" | "Female";
128
+ sex: "M" | "F";
129
129
  nationality: string;
130
130
  residenceCountry: string;
131
131
  cpf: {