@revolugo/common 7.0.1-alpha.26 → 7.0.1-alpha.27

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": "@revolugo/common",
3
- "version": "7.0.1-alpha.26",
3
+ "version": "7.0.1-alpha.27",
4
4
  "private": false,
5
5
  "description": "Revolugo common",
6
6
  "author": "Revolugo",
@@ -39,9 +39,9 @@ function initReleaseDateUTC({
39
39
  releaseDate,
40
40
  timezone,
41
41
  }: {
42
+ checkInDate: string
42
43
  releaseDate?: string
43
44
  timezone: string
44
- checkInDate: string
45
45
  }): string | undefined {
46
46
  if (!releaseDate) {
47
47
  return undefined
@@ -163,10 +163,6 @@ export interface PrebookFormValues {
163
163
  firstName: ContactPerson['firstName']
164
164
  lastName: ContactPerson['lastName']
165
165
  nationality: ContactPerson['nationality']
166
- phoneCountry: CountryIso2Code
167
- phoneNumber: string
168
- salutation: ContactPerson['salutation']
169
- specialRequests: ContactPerson['remarks']
170
166
  organizationAddress?: string
171
167
  organizationCity?: string
172
168
  organizationCountry?: string
@@ -174,4 +170,8 @@ export interface PrebookFormValues {
174
170
  organizationState?: string
175
171
  organizationVatNumber?: string
176
172
  organizationZipCode?: string
173
+ phoneCountry: CountryIso2Code
174
+ phoneNumber: string
175
+ salutation: ContactPerson['salutation']
176
+ specialRequests: ContactPerson['remarks']
177
177
  }