@wix/table-reservations 1.0.34 → 1.0.36
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/build/cjs/src/table-reservations-v1-reservation-location.public.d.ts +8 -8
- package/build/cjs/src/table-reservations-v1-reservation-location.types.d.ts +11 -36
- package/build/cjs/src/table-reservations-v1-reservation-location.types.js +112 -112
- package/build/cjs/src/table-reservations-v1-reservation-location.types.js.map +1 -1
- package/build/cjs/src/table-reservations-v1-reservation-location.universal.d.ts +13 -37
- package/build/cjs/src/table-reservations-v1-reservation-location.universal.js +112 -112
- package/build/cjs/src/table-reservations-v1-reservation-location.universal.js.map +1 -1
- package/build/cjs/src/table-reservations-v1-reservation.http.d.ts +8 -3
- package/build/cjs/src/table-reservations-v1-reservation.http.js +8 -3
- package/build/cjs/src/table-reservations-v1-reservation.http.js.map +1 -1
- package/build/cjs/src/table-reservations-v1-reservation.types.d.ts +12 -24
- package/build/cjs/src/table-reservations-v1-reservation.types.js +43 -43
- package/build/cjs/src/table-reservations-v1-reservation.types.js.map +1 -1
- package/build/cjs/src/table-reservations-v1-reservation.universal.d.ts +25 -31
- package/build/cjs/src/table-reservations-v1-reservation.universal.js +52 -47
- package/build/cjs/src/table-reservations-v1-reservation.universal.js.map +1 -1
- package/build/cjs/src/table-reservations-v1-time-slot.types.d.ts +4 -12
- package/build/cjs/src/table-reservations-v1-time-slot.types.js +28 -28
- package/build/cjs/src/table-reservations-v1-time-slot.types.js.map +1 -1
- package/build/cjs/src/table-reservations-v1-time-slot.universal.d.ts +4 -12
- package/build/cjs/src/table-reservations-v1-time-slot.universal.js +28 -28
- package/build/cjs/src/table-reservations-v1-time-slot.universal.js.map +1 -1
- package/build/es/src/table-reservations-v1-reservation-location.public.d.ts +8 -8
- package/build/es/src/table-reservations-v1-reservation-location.types.d.ts +11 -36
- package/build/es/src/table-reservations-v1-reservation-location.types.js +112 -123
- package/build/es/src/table-reservations-v1-reservation-location.types.js.map +1 -1
- package/build/es/src/table-reservations-v1-reservation-location.universal.d.ts +13 -37
- package/build/es/src/table-reservations-v1-reservation-location.universal.js +112 -123
- package/build/es/src/table-reservations-v1-reservation-location.universal.js.map +1 -1
- package/build/es/src/table-reservations-v1-reservation.http.d.ts +8 -3
- package/build/es/src/table-reservations-v1-reservation.http.js +8 -3
- package/build/es/src/table-reservations-v1-reservation.http.js.map +1 -1
- package/build/es/src/table-reservations-v1-reservation.types.d.ts +12 -24
- package/build/es/src/table-reservations-v1-reservation.types.js +43 -49
- package/build/es/src/table-reservations-v1-reservation.types.js.map +1 -1
- package/build/es/src/table-reservations-v1-reservation.universal.d.ts +25 -31
- package/build/es/src/table-reservations-v1-reservation.universal.js +52 -53
- package/build/es/src/table-reservations-v1-reservation.universal.js.map +1 -1
- package/build/es/src/table-reservations-v1-time-slot.types.d.ts +4 -12
- package/build/es/src/table-reservations-v1-time-slot.types.js +28 -32
- package/build/es/src/table-reservations-v1-time-slot.types.js.map +1 -1
- package/build/es/src/table-reservations-v1-time-slot.universal.d.ts +4 -12
- package/build/es/src/table-reservations-v1-time-slot.universal.js +28 -32
- package/build/es/src/table-reservations-v1-time-slot.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,165 +1,154 @@
|
|
|
1
1
|
/** Enumerates the days of the week. */
|
|
2
|
-
var
|
|
3
|
-
(function (
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
})(
|
|
12
|
-
export
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
})(UnitEnum || (UnitEnum = {}));
|
|
20
|
-
export { UnitEnum as Unit };
|
|
2
|
+
export var DayOfWeek;
|
|
3
|
+
(function (DayOfWeek) {
|
|
4
|
+
DayOfWeek["MONDAY"] = "MONDAY";
|
|
5
|
+
DayOfWeek["TUESDAY"] = "TUESDAY";
|
|
6
|
+
DayOfWeek["WEDNESDAY"] = "WEDNESDAY";
|
|
7
|
+
DayOfWeek["THURSDAY"] = "THURSDAY";
|
|
8
|
+
DayOfWeek["FRIDAY"] = "FRIDAY";
|
|
9
|
+
DayOfWeek["SATURDAY"] = "SATURDAY";
|
|
10
|
+
DayOfWeek["SUNDAY"] = "SUNDAY";
|
|
11
|
+
})(DayOfWeek || (DayOfWeek = {}));
|
|
12
|
+
export var Unit;
|
|
13
|
+
(function (Unit) {
|
|
14
|
+
Unit["UNKNOWN"] = "UNKNOWN";
|
|
15
|
+
Unit["MINUTES"] = "MINUTES";
|
|
16
|
+
Unit["HOURS"] = "HOURS";
|
|
17
|
+
Unit["DAYS"] = "DAYS";
|
|
18
|
+
})(Unit || (Unit = {}));
|
|
21
19
|
/** Type of the field. */
|
|
22
|
-
var
|
|
23
|
-
(function (
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
})(
|
|
40
|
-
export
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
export { SortOrderEnum as SortOrder };
|
|
53
|
-
var ModeEnum;
|
|
54
|
-
(function (ModeEnum) {
|
|
20
|
+
export var FieldType;
|
|
21
|
+
(function (FieldType) {
|
|
22
|
+
FieldType["UNKNOWN"] = "UNKNOWN";
|
|
23
|
+
FieldType["TABLE"] = "TABLE";
|
|
24
|
+
FieldType["START_DATE"] = "START_DATE";
|
|
25
|
+
FieldType["END_DATE"] = "END_DATE";
|
|
26
|
+
FieldType["CREATED_DATE"] = "CREATED_DATE";
|
|
27
|
+
FieldType["UPDATED_DATE"] = "UPDATED_DATE";
|
|
28
|
+
FieldType["PARTY_SIZE"] = "PARTY_SIZE";
|
|
29
|
+
FieldType["FIRST_NAME"] = "FIRST_NAME";
|
|
30
|
+
FieldType["LAST_NAME"] = "LAST_NAME";
|
|
31
|
+
FieldType["EMAIL"] = "EMAIL";
|
|
32
|
+
FieldType["PHONE"] = "PHONE";
|
|
33
|
+
FieldType["ADDITIONAL_INFO"] = "ADDITIONAL_INFO";
|
|
34
|
+
FieldType["TEAM_MESSAGE"] = "TEAM_MESSAGE";
|
|
35
|
+
FieldType["CUSTOM_FIELD"] = "CUSTOM_FIELD";
|
|
36
|
+
FieldType["STATUS"] = "STATUS";
|
|
37
|
+
})(FieldType || (FieldType = {}));
|
|
38
|
+
export var Set;
|
|
39
|
+
(function (Set) {
|
|
40
|
+
Set["PUBLIC"] = "PUBLIC";
|
|
41
|
+
Set["FULL"] = "FULL";
|
|
42
|
+
})(Set || (Set = {}));
|
|
43
|
+
export var SortOrder;
|
|
44
|
+
(function (SortOrder) {
|
|
45
|
+
SortOrder["ASC"] = "ASC";
|
|
46
|
+
SortOrder["DESC"] = "DESC";
|
|
47
|
+
})(SortOrder || (SortOrder = {}));
|
|
48
|
+
export var Mode;
|
|
49
|
+
(function (Mode) {
|
|
55
50
|
/** DRY RUN. */
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
})(
|
|
61
|
-
export
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
var SiteCreatedContextEnum;
|
|
72
|
-
(function (SiteCreatedContextEnum) {
|
|
51
|
+
Mode["UNDEFINED"] = "UNDEFINED";
|
|
52
|
+
Mode["DRY_RUN"] = "DRY_RUN";
|
|
53
|
+
Mode["MIGRATE"] = "MIGRATE";
|
|
54
|
+
Mode["FORCE_MIGRATE"] = "FORCE_MIGRATE";
|
|
55
|
+
})(Mode || (Mode = {}));
|
|
56
|
+
export var State;
|
|
57
|
+
(function (State) {
|
|
58
|
+
State["UNKNOWN"] = "UNKNOWN";
|
|
59
|
+
State["ENABLED"] = "ENABLED";
|
|
60
|
+
State["DISABLED"] = "DISABLED";
|
|
61
|
+
State["PENDING"] = "PENDING";
|
|
62
|
+
State["DEMO"] = "DEMO";
|
|
63
|
+
})(State || (State = {}));
|
|
64
|
+
export var SiteCreatedContext;
|
|
65
|
+
(function (SiteCreatedContext) {
|
|
73
66
|
/** A valid option, we don't expose all reasons why site might be created. */
|
|
74
|
-
|
|
67
|
+
SiteCreatedContext["OTHER"] = "OTHER";
|
|
75
68
|
/** A meta site was created from template. */
|
|
76
|
-
|
|
69
|
+
SiteCreatedContext["FROM_TEMPLATE"] = "FROM_TEMPLATE";
|
|
77
70
|
/** A meta site was created by copying of the transfferred meta site. */
|
|
78
|
-
|
|
71
|
+
SiteCreatedContext["DUPLICATE_BY_SITE_TRANSFER"] = "DUPLICATE_BY_SITE_TRANSFER";
|
|
79
72
|
/** A copy of existing meta site. */
|
|
80
|
-
|
|
73
|
+
SiteCreatedContext["DUPLICATE"] = "DUPLICATE";
|
|
81
74
|
/** A meta site was created as a transfferred site (copy of the original), old flow, should die soon. */
|
|
82
|
-
|
|
75
|
+
SiteCreatedContext["OLD_SITE_TRANSFER"] = "OLD_SITE_TRANSFER";
|
|
83
76
|
/** deprecated A meta site was created for Flash editor. */
|
|
84
|
-
|
|
85
|
-
})(
|
|
86
|
-
export
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
NamespaceEnum["UNKNOWN_NAMESPACE"] = "UNKNOWN_NAMESPACE";
|
|
77
|
+
SiteCreatedContext["FLASH"] = "FLASH";
|
|
78
|
+
})(SiteCreatedContext || (SiteCreatedContext = {}));
|
|
79
|
+
export var Namespace;
|
|
80
|
+
(function (Namespace) {
|
|
81
|
+
Namespace["UNKNOWN_NAMESPACE"] = "UNKNOWN_NAMESPACE";
|
|
90
82
|
/** Default namespace for UGC sites. MetaSites with this namespace will be shown in a user's site list by default. */
|
|
91
|
-
|
|
83
|
+
Namespace["WIX"] = "WIX";
|
|
92
84
|
/** ShoutOut stand alone product. These are siteless (no actual Wix site, no HtmlWeb). MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
93
|
-
|
|
85
|
+
Namespace["SHOUT_OUT"] = "SHOUT_OUT";
|
|
94
86
|
/** MetaSites created by the Albums product, they appear as part of the Albums app. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
95
|
-
|
|
87
|
+
Namespace["ALBUMS"] = "ALBUMS";
|
|
96
88
|
/** Part of the WixStores migration flow, a user tries to migrate and gets this site to view and if the user likes it then stores removes this namespace and deletes the old site with the old stores. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
97
|
-
|
|
89
|
+
Namespace["WIX_STORES_TEST_DRIVE"] = "WIX_STORES_TEST_DRIVE";
|
|
98
90
|
/** Hotels standalone (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
99
|
-
|
|
91
|
+
Namespace["HOTELS"] = "HOTELS";
|
|
100
92
|
/** Clubs siteless MetaSites, a club without a wix website. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
101
|
-
|
|
93
|
+
Namespace["CLUBS"] = "CLUBS";
|
|
102
94
|
/** A partially created ADI website. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
103
|
-
|
|
95
|
+
Namespace["ONBOARDING_DRAFT"] = "ONBOARDING_DRAFT";
|
|
104
96
|
/** AppBuilder for AppStudio / shmite (c). MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
105
|
-
|
|
97
|
+
Namespace["DEV_SITE"] = "DEV_SITE";
|
|
106
98
|
/** LogoMaker websites offered to the user after logo purchase. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
107
|
-
|
|
99
|
+
Namespace["LOGOS"] = "LOGOS";
|
|
108
100
|
/** VideoMaker websites offered to the user after video purchase. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
109
|
-
|
|
101
|
+
Namespace["VIDEO_MAKER"] = "VIDEO_MAKER";
|
|
110
102
|
/** MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
111
|
-
|
|
103
|
+
Namespace["PARTNER_DASHBOARD"] = "PARTNER_DASHBOARD";
|
|
112
104
|
/** MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
113
|
-
|
|
105
|
+
Namespace["DEV_CENTER_COMPANY"] = "DEV_CENTER_COMPANY";
|
|
114
106
|
/**
|
|
115
107
|
* A draft created by HTML editor on open. Upon "first save" it will be moved to be of WIX domain.
|
|
116
108
|
*
|
|
117
109
|
* Meta site with this namespace will *not* be shown in a user's site list by default.
|
|
118
110
|
*/
|
|
119
|
-
|
|
111
|
+
Namespace["HTML_DRAFT"] = "HTML_DRAFT";
|
|
120
112
|
/**
|
|
121
113
|
* the user-journey for Fitness users who want to start from managing their business instead of designing their website.
|
|
122
114
|
* Will be accessible from Site List and will not have a website app.
|
|
123
115
|
* Once the user attaches a site, the site will become a regular wixsite.
|
|
124
116
|
*/
|
|
125
|
-
|
|
117
|
+
Namespace["SITELESS_BUSINESS"] = "SITELESS_BUSINESS";
|
|
126
118
|
/** Belongs to "strategic products" company. Supports new product in the creator's economy space. */
|
|
127
|
-
|
|
119
|
+
Namespace["CREATOR_ECONOMY"] = "CREATOR_ECONOMY";
|
|
128
120
|
/** It is to be used in the Business First efforts. */
|
|
129
|
-
|
|
121
|
+
Namespace["DASHBOARD_FIRST"] = "DASHBOARD_FIRST";
|
|
130
122
|
/** Bookings business flow with no site. */
|
|
131
|
-
|
|
123
|
+
Namespace["ANYWHERE"] = "ANYWHERE";
|
|
132
124
|
/** Namespace for Headless Backoffice with no editor */
|
|
133
|
-
|
|
125
|
+
Namespace["HEADLESS"] = "HEADLESS";
|
|
134
126
|
/**
|
|
135
127
|
* Namespace for master site that will exist in parent account that will be referenced by subaccounts
|
|
136
128
|
* The site will be used for account level CSM feature for enterprise
|
|
137
129
|
*/
|
|
138
|
-
|
|
130
|
+
Namespace["ACCOUNT_MASTER_CMS"] = "ACCOUNT_MASTER_CMS";
|
|
139
131
|
/** Rise.ai Siteless account management for Gift Cards and Store Credit. */
|
|
140
|
-
|
|
141
|
-
})(
|
|
142
|
-
export
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
})(DeleteStatusEnum || (DeleteStatusEnum = {}));
|
|
150
|
-
export { DeleteStatusEnum as DeleteStatus };
|
|
132
|
+
Namespace["RISE"] = "RISE";
|
|
133
|
+
})(Namespace || (Namespace = {}));
|
|
134
|
+
export var DeleteStatus;
|
|
135
|
+
(function (DeleteStatus) {
|
|
136
|
+
DeleteStatus["UNKNOWN"] = "UNKNOWN";
|
|
137
|
+
DeleteStatus["TRASH"] = "TRASH";
|
|
138
|
+
DeleteStatus["DELETED"] = "DELETED";
|
|
139
|
+
DeleteStatus["PENDING_PURGE"] = "PENDING_PURGE";
|
|
140
|
+
})(DeleteStatus || (DeleteStatus = {}));
|
|
151
141
|
/** Determines the reset cycle of the feature usage. */
|
|
152
|
-
var
|
|
153
|
-
(function (
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
})(
|
|
164
|
-
export { FeaturePeriodEnum as FeaturePeriod };
|
|
142
|
+
export var FeaturePeriod;
|
|
143
|
+
(function (FeaturePeriod) {
|
|
144
|
+
FeaturePeriod["NO_PERIOD"] = "NO_PERIOD";
|
|
145
|
+
FeaturePeriod["MILLISECOND"] = "MILLISECOND";
|
|
146
|
+
FeaturePeriod["SECOND"] = "SECOND";
|
|
147
|
+
FeaturePeriod["MINUTE"] = "MINUTE";
|
|
148
|
+
FeaturePeriod["HOUR"] = "HOUR";
|
|
149
|
+
FeaturePeriod["DAY"] = "DAY";
|
|
150
|
+
FeaturePeriod["WEEK"] = "WEEK";
|
|
151
|
+
FeaturePeriod["MONTH"] = "MONTH";
|
|
152
|
+
FeaturePeriod["YEAR"] = "YEAR";
|
|
153
|
+
})(FeaturePeriod || (FeaturePeriod = {}));
|
|
165
154
|
//# sourceMappingURL=table-reservations-v1-reservation-location.types.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"table-reservations-v1-reservation-location.types.js","sourceRoot":"","sources":["../../../src/table-reservations-v1-reservation-location.types.ts"],"names":[],"mappings":"AAoHA,uCAAuC;AACvC,
|
|
1
|
+
{"version":3,"file":"table-reservations-v1-reservation-location.types.js","sourceRoot":"","sources":["../../../src/table-reservations-v1-reservation-location.types.ts"],"names":[],"mappings":"AAoHA,uCAAuC;AACvC,MAAM,CAAN,IAAY,SAQX;AARD,WAAY,SAAS;IACnB,8BAAiB,CAAA;IACjB,gCAAmB,CAAA;IACnB,oCAAuB,CAAA;IACvB,kCAAqB,CAAA;IACrB,8BAAiB,CAAA;IACjB,kCAAqB,CAAA;IACrB,8BAAiB,CAAA;AACnB,CAAC,EARW,SAAS,KAAT,SAAS,QAQpB;AA8CD,MAAM,CAAN,IAAY,IAKX;AALD,WAAY,IAAI;IACd,2BAAmB,CAAA;IACnB,2BAAmB,CAAA;IACnB,uBAAe,CAAA;IACf,qBAAa,CAAA;AACf,CAAC,EALW,IAAI,KAAJ,IAAI,QAKf;AAwFD,yBAAyB;AACzB,MAAM,CAAN,IAAY,SAgBX;AAhBD,WAAY,SAAS;IACnB,gCAAmB,CAAA;IACnB,4BAAe,CAAA;IACf,sCAAyB,CAAA;IACzB,kCAAqB,CAAA;IACrB,0CAA6B,CAAA;IAC7B,0CAA6B,CAAA;IAC7B,sCAAyB,CAAA;IACzB,sCAAyB,CAAA;IACzB,oCAAuB,CAAA;IACvB,4BAAe,CAAA;IACf,4BAAe,CAAA;IACf,gDAAmC,CAAA;IACnC,0CAA6B,CAAA;IAC7B,0CAA6B,CAAA;IAC7B,8BAAiB,CAAA;AACnB,CAAC,EAhBW,SAAS,KAAT,SAAS,QAgBpB;AAkRD,MAAM,CAAN,IAAY,GAGX;AAHD,WAAY,GAAG;IACb,wBAAiB,CAAA;IACjB,oBAAa,CAAA;AACf,CAAC,EAHW,GAAG,KAAH,GAAG,QAGd;AA2ED,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;AA0FD,MAAM,CAAN,IAAY,IAMX;AAND,WAAY,IAAI;IACd,eAAe;IACf,+BAAuB,CAAA;IACvB,2BAAmB,CAAA;IACnB,2BAAmB,CAAA;IACnB,uCAA+B,CAAA;AACjC,CAAC,EANW,IAAI,KAAJ,IAAI,QAMf;AAyMD,MAAM,CAAN,IAAY,KAMX;AAND,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,4BAAmB,CAAA;IACnB,8BAAqB,CAAA;IACrB,4BAAmB,CAAA;IACnB,sBAAa,CAAA;AACf,CAAC,EANW,KAAK,KAAL,KAAK,QAMhB;AAiBD,MAAM,CAAN,IAAY,kBAaX;AAbD,WAAY,kBAAkB;IAC5B,6EAA6E;IAC7E,qCAAe,CAAA;IACf,6CAA6C;IAC7C,qDAA+B,CAAA;IAC/B,wEAAwE;IACxE,+EAAyD,CAAA;IACzD,oCAAoC;IACpC,6CAAuB,CAAA;IACvB,wGAAwG;IACxG,6DAAuC,CAAA;IACvC,2DAA2D;IAC3D,qCAAe,CAAA;AACjB,CAAC,EAbW,kBAAkB,KAAlB,kBAAkB,QAa7B;AAED,MAAM,CAAN,IAAY,SAqDX;AArDD,WAAY,SAAS;IACnB,oDAAuC,CAAA;IACvC,qHAAqH;IACrH,wBAAW,CAAA;IACX,6KAA6K;IAC7K,oCAAuB,CAAA;IACvB,0KAA0K;IAC1K,8BAAiB,CAAA;IACjB,6RAA6R;IAC7R,4DAA+C,CAAA;IAC/C,wHAAwH;IACxH,8BAAiB,CAAA;IACjB,kJAAkJ;IAClJ,4BAAe,CAAA;IACf,2HAA2H;IAC3H,kDAAqC,CAAA;IACrC,iIAAiI;IACjI,kCAAqB,CAAA;IACrB,sJAAsJ;IACtJ,4BAAe,CAAA;IACf,wJAAwJ;IACxJ,wCAA2B,CAAA;IAC3B,0FAA0F;IAC1F,oDAAuC,CAAA;IACvC,0FAA0F;IAC1F,sDAAyC,CAAA;IACzC;;;;OAIG;IACH,sCAAyB,CAAA;IACzB;;;;OAIG;IACH,oDAAuC,CAAA;IACvC,oGAAoG;IACpG,gDAAmC,CAAA;IACnC,sDAAsD;IACtD,gDAAmC,CAAA;IACnC,2CAA2C;IAC3C,kCAAqB,CAAA;IACrB,uDAAuD;IACvD,kCAAqB,CAAA;IACrB;;;OAGG;IACH,sDAAyC,CAAA;IACzC,2EAA2E;IAC3E,0BAAa,CAAA;AACf,CAAC,EArDW,SAAS,KAAT,SAAS,QAqDpB;AAsBD,MAAM,CAAN,IAAY,YAKX;AALD,WAAY,YAAY;IACtB,mCAAmB,CAAA;IACnB,+BAAe,CAAA;IACf,mCAAmB,CAAA;IACnB,+CAA+B,CAAA;AACjC,CAAC,EALW,YAAY,KAAZ,YAAY,QAKvB;AA2RD,uDAAuD;AACvD,MAAM,CAAN,IAAY,aAUX;AAVD,WAAY,aAAa;IACvB,wCAAuB,CAAA;IACvB,4CAA2B,CAAA;IAC3B,kCAAiB,CAAA;IACjB,kCAAiB,CAAA;IACjB,8BAAa,CAAA;IACb,4BAAW,CAAA;IACX,8BAAa,CAAA;IACb,gCAAe,CAAA;IACf,8BAAa,CAAA;AACf,CAAC,EAVW,aAAa,KAAb,aAAa,QAUxB"}
|
|
@@ -113,7 +113,7 @@ export interface TimePeriod {
|
|
|
113
113
|
closeTime?: string;
|
|
114
114
|
}
|
|
115
115
|
/** Enumerates the days of the week. */
|
|
116
|
-
declare enum
|
|
116
|
+
export declare enum DayOfWeek {
|
|
117
117
|
MONDAY = "MONDAY",
|
|
118
118
|
TUESDAY = "TUESDAY",
|
|
119
119
|
WEDNESDAY = "WEDNESDAY",
|
|
@@ -122,9 +122,6 @@ declare enum DayOfWeekEnum {
|
|
|
122
122
|
SATURDAY = "SATURDAY",
|
|
123
123
|
SUNDAY = "SUNDAY"
|
|
124
124
|
}
|
|
125
|
-
/** Enumerates the days of the week. */
|
|
126
|
-
type DayOfWeek = `${DayOfWeekEnum}`;
|
|
127
|
-
export { DayOfWeekEnum as DayOfWeek };
|
|
128
125
|
/** Set of time periods when a location's operational hours differ from its normal business hours. */
|
|
129
126
|
export interface SpecialHourPeriod {
|
|
130
127
|
/** Start date and time in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format. */
|
|
@@ -166,14 +163,12 @@ export interface TableCombination {
|
|
|
166
163
|
/** Whether the table combination is active (available to be reserved). */
|
|
167
164
|
isActive?: boolean | null;
|
|
168
165
|
}
|
|
169
|
-
declare enum
|
|
166
|
+
export declare enum Unit {
|
|
170
167
|
UNKNOWN = "UNKNOWN",
|
|
171
168
|
MINUTES = "MINUTES",
|
|
172
169
|
HOURS = "HOURS",
|
|
173
170
|
DAYS = "DAYS"
|
|
174
171
|
}
|
|
175
|
-
type Unit = `${UnitEnum}`;
|
|
176
|
-
export { UnitEnum as Unit };
|
|
177
172
|
/**
|
|
178
173
|
* Seat pacing.
|
|
179
174
|
* The maximum number of seats that can be filled by new reservations within a 15-minute period.
|
|
@@ -252,7 +247,7 @@ export interface ManualApprovalValueOneOf {
|
|
|
252
247
|
partySizeThreshold?: number;
|
|
253
248
|
}
|
|
254
249
|
/** Type of the field. */
|
|
255
|
-
declare enum
|
|
250
|
+
export declare enum FieldType {
|
|
256
251
|
UNKNOWN = "UNKNOWN",
|
|
257
252
|
TABLE = "TABLE",
|
|
258
253
|
START_DATE = "START_DATE",
|
|
@@ -269,9 +264,6 @@ declare enum FieldTypeEnum {
|
|
|
269
264
|
CUSTOM_FIELD = "CUSTOM_FIELD",
|
|
270
265
|
STATUS = "STATUS"
|
|
271
266
|
}
|
|
272
|
-
/** Type of the field. */
|
|
273
|
-
type FieldType = `${FieldTypeEnum}`;
|
|
274
|
-
export { FieldTypeEnum as FieldType };
|
|
275
267
|
/** Terms and conditions. */
|
|
276
268
|
export interface TermsAndConditions extends TermsAndConditionsValueOneOf {
|
|
277
269
|
/** Terms and conditions URL. */
|
|
@@ -519,12 +511,10 @@ export interface GetReservationLocationRequest {
|
|
|
519
511
|
*/
|
|
520
512
|
fieldsets?: Set[];
|
|
521
513
|
}
|
|
522
|
-
declare enum
|
|
514
|
+
export declare enum Set {
|
|
523
515
|
PUBLIC = "PUBLIC",
|
|
524
516
|
FULL = "FULL"
|
|
525
517
|
}
|
|
526
|
-
type Set = `${SetEnum}`;
|
|
527
|
-
export { SetEnum as Set };
|
|
528
518
|
export interface GetReservationLocationResponse {
|
|
529
519
|
/** The retrieved reservation location. */
|
|
530
520
|
reservationLocation?: ReservationLocation;
|
|
@@ -590,12 +580,10 @@ export interface Sorting {
|
|
|
590
580
|
*/
|
|
591
581
|
order?: SortOrder;
|
|
592
582
|
}
|
|
593
|
-
declare enum
|
|
583
|
+
export declare enum SortOrder {
|
|
594
584
|
ASC = "ASC",
|
|
595
585
|
DESC = "DESC"
|
|
596
586
|
}
|
|
597
|
-
type SortOrder = `${SortOrderEnum}`;
|
|
598
|
-
export { SortOrderEnum as SortOrder };
|
|
599
587
|
export interface Paging {
|
|
600
588
|
/** Number of items to load. */
|
|
601
589
|
limit?: number | null;
|
|
@@ -674,15 +662,13 @@ export interface MigrateOldRestaurantSettingsRequest {
|
|
|
674
662
|
/** Override not default. */
|
|
675
663
|
overrideNotDefault?: boolean;
|
|
676
664
|
}
|
|
677
|
-
declare enum
|
|
665
|
+
export declare enum Mode {
|
|
678
666
|
/** DRY RUN. */
|
|
679
667
|
UNDEFINED = "UNDEFINED",
|
|
680
668
|
DRY_RUN = "DRY_RUN",
|
|
681
669
|
MIGRATE = "MIGRATE",
|
|
682
670
|
FORCE_MIGRATE = "FORCE_MIGRATE"
|
|
683
671
|
}
|
|
684
|
-
type Mode = `${ModeEnum}`;
|
|
685
|
-
export { ModeEnum as Mode };
|
|
686
672
|
export interface MigrateOldRestaurantSettingsResponse {
|
|
687
673
|
/** Migration results. */
|
|
688
674
|
migrationResults?: MigrationResult[];
|
|
@@ -863,15 +849,13 @@ export interface Asset {
|
|
|
863
849
|
instanceId?: string;
|
|
864
850
|
state?: State;
|
|
865
851
|
}
|
|
866
|
-
declare enum
|
|
852
|
+
export declare enum State {
|
|
867
853
|
UNKNOWN = "UNKNOWN",
|
|
868
854
|
ENABLED = "ENABLED",
|
|
869
855
|
DISABLED = "DISABLED",
|
|
870
856
|
PENDING = "PENDING",
|
|
871
857
|
DEMO = "DEMO"
|
|
872
858
|
}
|
|
873
|
-
type State = `${StateEnum}`;
|
|
874
|
-
export { StateEnum as State };
|
|
875
859
|
export interface SiteCreated {
|
|
876
860
|
originTemplateId?: string;
|
|
877
861
|
ownerId?: string;
|
|
@@ -886,7 +870,7 @@ export interface SiteCreated {
|
|
|
886
870
|
siteName?: string;
|
|
887
871
|
namespace?: Namespace;
|
|
888
872
|
}
|
|
889
|
-
declare enum
|
|
873
|
+
export declare enum SiteCreatedContext {
|
|
890
874
|
/** A valid option, we don't expose all reasons why site might be created. */
|
|
891
875
|
OTHER = "OTHER",
|
|
892
876
|
/** A meta site was created from template. */
|
|
@@ -900,9 +884,7 @@ declare enum SiteCreatedContextEnum {
|
|
|
900
884
|
/** deprecated A meta site was created for Flash editor. */
|
|
901
885
|
FLASH = "FLASH"
|
|
902
886
|
}
|
|
903
|
-
|
|
904
|
-
export { SiteCreatedContextEnum as SiteCreatedContext };
|
|
905
|
-
declare enum NamespaceEnum {
|
|
887
|
+
export declare enum Namespace {
|
|
906
888
|
UNKNOWN_NAMESPACE = "UNKNOWN_NAMESPACE",
|
|
907
889
|
/** Default namespace for UGC sites. MetaSites with this namespace will be shown in a user's site list by default. */
|
|
908
890
|
WIX = "WIX",
|
|
@@ -956,8 +938,6 @@ declare enum NamespaceEnum {
|
|
|
956
938
|
/** Rise.ai Siteless account management for Gift Cards and Store Credit. */
|
|
957
939
|
RISE = "RISE"
|
|
958
940
|
}
|
|
959
|
-
type Namespace = `${NamespaceEnum}`;
|
|
960
|
-
export { NamespaceEnum as Namespace };
|
|
961
941
|
/** Site transferred to another user. */
|
|
962
942
|
export interface SiteTransferred {
|
|
963
943
|
/** A previous owner id (user that transfers meta site). */
|
|
@@ -975,14 +955,12 @@ export interface DeleteContext {
|
|
|
975
955
|
deleteOrigin?: string;
|
|
976
956
|
initiatorId?: string | null;
|
|
977
957
|
}
|
|
978
|
-
declare enum
|
|
958
|
+
export declare enum DeleteStatus {
|
|
979
959
|
UNKNOWN = "UNKNOWN",
|
|
980
960
|
TRASH = "TRASH",
|
|
981
961
|
DELETED = "DELETED",
|
|
982
962
|
PENDING_PURGE = "PENDING_PURGE"
|
|
983
963
|
}
|
|
984
|
-
type DeleteStatus = `${DeleteStatusEnum}`;
|
|
985
|
-
export { DeleteStatusEnum as DeleteStatus };
|
|
986
964
|
/** Restoration of the meta site. */
|
|
987
965
|
export interface SiteUndeleted {
|
|
988
966
|
}
|
|
@@ -1251,7 +1229,7 @@ export interface QuotaFeature {
|
|
|
1251
1229
|
units?: string | null;
|
|
1252
1230
|
}
|
|
1253
1231
|
/** Determines the reset cycle of the feature usage. */
|
|
1254
|
-
declare enum
|
|
1232
|
+
export declare enum FeaturePeriod {
|
|
1255
1233
|
NO_PERIOD = "NO_PERIOD",
|
|
1256
1234
|
MILLISECOND = "MILLISECOND",
|
|
1257
1235
|
SECOND = "SECOND",
|
|
@@ -1262,9 +1240,6 @@ declare enum FeaturePeriodEnum {
|
|
|
1262
1240
|
MONTH = "MONTH",
|
|
1263
1241
|
YEAR = "YEAR"
|
|
1264
1242
|
}
|
|
1265
|
-
/** Determines the reset cycle of the feature usage. */
|
|
1266
|
-
type FeaturePeriod = `${FeaturePeriodEnum}`;
|
|
1267
|
-
export { FeaturePeriodEnum as FeaturePeriod };
|
|
1268
1243
|
export interface QuotaInfo {
|
|
1269
1244
|
/**
|
|
1270
1245
|
* How often the customer is allowed to use the feature during the specified
|
|
@@ -1876,7 +1851,7 @@ export interface QueryReservationLocationsOptions {
|
|
|
1876
1851
|
*
|
|
1877
1852
|
* Supported values: `PUBLIC`, `FULL`.
|
|
1878
1853
|
*/
|
|
1879
|
-
fieldsets?:
|
|
1854
|
+
fieldsets?: Set[] | undefined;
|
|
1880
1855
|
}
|
|
1881
1856
|
interface QueryCursorResult {
|
|
1882
1857
|
cursors: Cursors;
|
|
@@ -1940,3 +1915,4 @@ export interface ListReservationLocationsOptions {
|
|
|
1940
1915
|
*/
|
|
1941
1916
|
fieldsets?: Set[];
|
|
1942
1917
|
}
|
|
1918
|
+
export {};
|