@seamapi/types 1.819.0 → 1.820.0
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/connect.cjs +0 -14
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +0 -20
- package/dist/index.cjs +0 -14
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +0 -14
- package/lib/seam/connect/openapi.js +0 -14
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +0 -6
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +0 -17
- package/src/lib/seam/connect/route-types.ts +0 -6
|
@@ -63775,12 +63775,6 @@ export type Routes = {
|
|
|
63775
63775
|
type?: 'date' | undefined;
|
|
63776
63776
|
};
|
|
63777
63777
|
};
|
|
63778
|
-
/** IANA time zone (e.g. America/New_York) applied when dates have no time/timezone */
|
|
63779
|
-
time_zone?: string | undefined;
|
|
63780
|
-
/** Default check-in time (HH:MM) used when iCal gives date-only values */
|
|
63781
|
-
default_check_in_time?: string | undefined;
|
|
63782
|
-
/** Default check-out time (HH:MM) used when iCal gives date-only values */
|
|
63783
|
-
default_check_out_time?: string | undefined;
|
|
63784
63778
|
};
|
|
63785
63779
|
};
|
|
63786
63780
|
commonParams: {};
|
package/package.json
CHANGED
|
@@ -65434,18 +65434,6 @@ export default {
|
|
|
65434
65434
|
ical_config: {
|
|
65435
65435
|
description: 'Config to validate',
|
|
65436
65436
|
properties: {
|
|
65437
|
-
default_check_in_time: {
|
|
65438
|
-
description:
|
|
65439
|
-
'Default check-in time (HH:MM) used when iCal gives date-only values',
|
|
65440
|
-
pattern: '^\\d{2}:\\d{2}$',
|
|
65441
|
-
type: 'string',
|
|
65442
|
-
},
|
|
65443
|
-
default_check_out_time: {
|
|
65444
|
-
description:
|
|
65445
|
-
'Default check-out time (HH:MM) used when iCal gives date-only values',
|
|
65446
|
-
pattern: '^\\d{2}:\\d{2}$',
|
|
65447
|
-
type: 'string',
|
|
65448
|
-
},
|
|
65449
65437
|
fields: {
|
|
65450
65438
|
properties: {
|
|
65451
65439
|
ends_at: {
|
|
@@ -65608,11 +65596,6 @@ export default {
|
|
|
65608
65596
|
required: ['source', 'pattern'],
|
|
65609
65597
|
type: 'object',
|
|
65610
65598
|
},
|
|
65611
|
-
time_zone: {
|
|
65612
|
-
description:
|
|
65613
|
-
'IANA time zone (e.g. America/New_York) applied when dates have no time/timezone',
|
|
65614
|
-
type: 'string',
|
|
65615
|
-
},
|
|
65616
65599
|
},
|
|
65617
65600
|
required: ['fields'],
|
|
65618
65601
|
type: 'object',
|
|
@@ -76094,12 +76094,6 @@ export type Routes = {
|
|
|
76094
76094
|
type?: 'date' | undefined
|
|
76095
76095
|
}
|
|
76096
76096
|
}
|
|
76097
|
-
/** IANA time zone (e.g. America/New_York) applied when dates have no time/timezone */
|
|
76098
|
-
time_zone?: string | undefined
|
|
76099
|
-
/** Default check-in time (HH:MM) used when iCal gives date-only values */
|
|
76100
|
-
default_check_in_time?: string | undefined
|
|
76101
|
-
/** Default check-out time (HH:MM) used when iCal gives date-only values */
|
|
76102
|
-
default_check_out_time?: string | undefined
|
|
76103
76097
|
}
|
|
76104
76098
|
}
|
|
76105
76099
|
commonParams: {}
|