@wix/auto_sdk_bookings_services 1.0.178 → 1.0.179
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/{bookings-services-v2-service-services.universal-V03VQ8tx.d.ts → bookings-services-v2-service-services.universal-B7-Plu-S.d.ts} +158 -187
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +10 -232
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +10 -232
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +161 -190
- package/build/cjs/meta.js +10 -232
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{bookings-services-v2-service-services.universal-V03VQ8tx.d.mts → bookings-services-v2-service-services.universal-B7-Plu-S.d.mts} +158 -187
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +10 -232
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +10 -232
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +161 -190
- package/build/es/meta.mjs +10 -232
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{bookings-services-v2-service-services.universal-V03VQ8tx.d.ts → bookings-services-v2-service-services.universal-B7-Plu-S.d.ts} +158 -187
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +10 -232
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +10 -232
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +161 -190
- package/build/internal/cjs/meta.js +10 -232
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{bookings-services-v2-service-services.universal-V03VQ8tx.d.mts → bookings-services-v2-service-services.universal-B7-Plu-S.d.mts} +158 -187
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +10 -232
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +10 -232
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +161 -190
- package/build/internal/es/meta.mjs +10 -232
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -368,6 +368,29 @@ declare enum AddOnPaymentOptions {
|
|
|
368
368
|
}
|
|
369
369
|
/** @enumType */
|
|
370
370
|
type AddOnPaymentOptionsWithLiterals = AddOnPaymentOptions | 'UNKNOWN_ADD_ON_PAYMENT_OPTIONS' | 'ONLINE' | 'IN_PERSON';
|
|
371
|
+
/**
|
|
372
|
+
* Represents estimated discount information for a service.
|
|
373
|
+
*
|
|
374
|
+
* *Important**: This is an estimate and may not reflect the final discount applied at checkout. The actual discount is applied in the ecommerce system during checkout, where additional discounts may be applied based on the full cart context, and the final amount may differ.
|
|
375
|
+
*
|
|
376
|
+
* The discount can be system-generated (from discount rules; when multiple apply, the most recently created is returned) or manually set using [Update Service](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/update-service) with a fieldmask. Manual discounts replace system-generated ones.
|
|
377
|
+
*/
|
|
378
|
+
interface DiscountInfo {
|
|
379
|
+
/**
|
|
380
|
+
* Name of the discount (e.g., "Summer Sale - 20% Off").
|
|
381
|
+
* @minLength 1
|
|
382
|
+
* @maxLength 50
|
|
383
|
+
*/
|
|
384
|
+
discountName?: string;
|
|
385
|
+
/**
|
|
386
|
+
* Estimated price after applying the discount. Optional.
|
|
387
|
+
*
|
|
388
|
+
* *Important**: This is an estimate. The final price may differ at checkout when additional discounts are applied or rules are re-evaluated with complete booking information.
|
|
389
|
+
*
|
|
390
|
+
* May be empty when the discount depends on booking/cart context (e.g., "10% discount on Service X when booking with Service Y") or requires information only available at checkout.
|
|
391
|
+
*/
|
|
392
|
+
priceAfterDiscount?: Money;
|
|
393
|
+
}
|
|
371
394
|
interface OnlineBooking {
|
|
372
395
|
/**
|
|
373
396
|
* Whether the service can be booked online.
|
|
@@ -1302,198 +1325,12 @@ interface PhoneCall {
|
|
|
1302
1325
|
/** Whether the service is delivered via phone call. */
|
|
1303
1326
|
enabled?: boolean | null;
|
|
1304
1327
|
}
|
|
1305
|
-
/**
|
|
1306
|
-
* Message for reindexing search data to a given search schema. Support both upsert and delete flows as well as
|
|
1307
|
-
* performs context manipulation with adding tenant, provided in message to callscope.
|
|
1308
|
-
*/
|
|
1309
|
-
interface ReindexMessage extends ReindexMessageActionOneOf {
|
|
1310
|
-
upsert?: Upsert;
|
|
1311
|
-
delete?: Delete;
|
|
1312
|
-
entityFqdn?: string;
|
|
1313
|
-
tenantId?: string;
|
|
1314
|
-
eventTime?: Date | null;
|
|
1315
|
-
entityEventSequence?: string | null;
|
|
1316
|
-
schema?: Schema;
|
|
1317
|
-
}
|
|
1318
|
-
/** @oneof */
|
|
1319
|
-
interface ReindexMessageActionOneOf {
|
|
1320
|
-
upsert?: Upsert;
|
|
1321
|
-
delete?: Delete;
|
|
1322
|
-
}
|
|
1323
|
-
interface Upsert {
|
|
1324
|
-
entityId?: string;
|
|
1325
|
-
entityAsJson?: string;
|
|
1326
|
-
}
|
|
1327
|
-
interface Delete {
|
|
1328
|
-
entityId?: string;
|
|
1329
|
-
}
|
|
1330
|
-
interface Schema {
|
|
1331
|
-
label?: string;
|
|
1332
|
-
clusterName?: string;
|
|
1333
|
-
}
|
|
1334
1328
|
interface SetCustomSlugEvent {
|
|
1335
1329
|
/** The main slug for the service after the update */
|
|
1336
1330
|
mainSlug?: Slug;
|
|
1337
1331
|
}
|
|
1338
1332
|
interface ServicesUrlsChanged {
|
|
1339
1333
|
}
|
|
1340
|
-
interface DomainEvent extends DomainEventBodyOneOf {
|
|
1341
|
-
createdEvent?: EntityCreatedEvent;
|
|
1342
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
1343
|
-
deletedEvent?: EntityDeletedEvent;
|
|
1344
|
-
actionEvent?: ActionEvent;
|
|
1345
|
-
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
1346
|
-
_id?: string;
|
|
1347
|
-
/**
|
|
1348
|
-
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
1349
|
-
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
1350
|
-
*/
|
|
1351
|
-
entityFqdn?: string;
|
|
1352
|
-
/**
|
|
1353
|
-
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
1354
|
-
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
1355
|
-
*/
|
|
1356
|
-
slug?: string;
|
|
1357
|
-
/** ID of the entity associated with the event. */
|
|
1358
|
-
entityId?: string;
|
|
1359
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
1360
|
-
eventTime?: Date | null;
|
|
1361
|
-
/**
|
|
1362
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
1363
|
-
* (for example, GDPR).
|
|
1364
|
-
*/
|
|
1365
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
1366
|
-
/** If present, indicates the action that triggered the event. */
|
|
1367
|
-
originatedFrom?: string | null;
|
|
1368
|
-
/**
|
|
1369
|
-
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
|
|
1370
|
-
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
|
1371
|
-
*/
|
|
1372
|
-
entityEventSequence?: string | null;
|
|
1373
|
-
}
|
|
1374
|
-
/** @oneof */
|
|
1375
|
-
interface DomainEventBodyOneOf {
|
|
1376
|
-
createdEvent?: EntityCreatedEvent;
|
|
1377
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
1378
|
-
deletedEvent?: EntityDeletedEvent;
|
|
1379
|
-
actionEvent?: ActionEvent;
|
|
1380
|
-
}
|
|
1381
|
-
interface EntityCreatedEvent {
|
|
1382
|
-
entity?: string;
|
|
1383
|
-
}
|
|
1384
|
-
interface RestoreInfo {
|
|
1385
|
-
deletedDate?: Date | null;
|
|
1386
|
-
}
|
|
1387
|
-
interface EntityUpdatedEvent {
|
|
1388
|
-
/**
|
|
1389
|
-
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
1390
|
-
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
1391
|
-
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
1392
|
-
*/
|
|
1393
|
-
currentEntity?: string;
|
|
1394
|
-
}
|
|
1395
|
-
interface EntityDeletedEvent {
|
|
1396
|
-
/** Entity that was deleted. */
|
|
1397
|
-
deletedEntity?: string | null;
|
|
1398
|
-
}
|
|
1399
|
-
interface ActionEvent {
|
|
1400
|
-
body?: string;
|
|
1401
|
-
}
|
|
1402
|
-
interface MessageEnvelope {
|
|
1403
|
-
/**
|
|
1404
|
-
* App instance ID.
|
|
1405
|
-
* @format GUID
|
|
1406
|
-
*/
|
|
1407
|
-
instanceId?: string | null;
|
|
1408
|
-
/**
|
|
1409
|
-
* Event type.
|
|
1410
|
-
* @maxLength 150
|
|
1411
|
-
*/
|
|
1412
|
-
eventType?: string;
|
|
1413
|
-
/** The identification type and identity data. */
|
|
1414
|
-
identity?: IdentificationData;
|
|
1415
|
-
/** Stringify payload. */
|
|
1416
|
-
data?: string;
|
|
1417
|
-
}
|
|
1418
|
-
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
1419
|
-
/**
|
|
1420
|
-
* ID of a site visitor that has not logged in to the site.
|
|
1421
|
-
* @format GUID
|
|
1422
|
-
*/
|
|
1423
|
-
anonymousVisitorId?: string;
|
|
1424
|
-
/**
|
|
1425
|
-
* ID of a site visitor that has logged in to the site.
|
|
1426
|
-
* @format GUID
|
|
1427
|
-
*/
|
|
1428
|
-
memberId?: string;
|
|
1429
|
-
/**
|
|
1430
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
1431
|
-
* @format GUID
|
|
1432
|
-
*/
|
|
1433
|
-
wixUserId?: string;
|
|
1434
|
-
/**
|
|
1435
|
-
* ID of an app.
|
|
1436
|
-
* @format GUID
|
|
1437
|
-
*/
|
|
1438
|
-
appId?: string;
|
|
1439
|
-
/** @readonly */
|
|
1440
|
-
identityType?: WebhookIdentityTypeWithLiterals;
|
|
1441
|
-
}
|
|
1442
|
-
/** @oneof */
|
|
1443
|
-
interface IdentificationDataIdOneOf {
|
|
1444
|
-
/**
|
|
1445
|
-
* ID of a site visitor that has not logged in to the site.
|
|
1446
|
-
* @format GUID
|
|
1447
|
-
*/
|
|
1448
|
-
anonymousVisitorId?: string;
|
|
1449
|
-
/**
|
|
1450
|
-
* ID of a site visitor that has logged in to the site.
|
|
1451
|
-
* @format GUID
|
|
1452
|
-
*/
|
|
1453
|
-
memberId?: string;
|
|
1454
|
-
/**
|
|
1455
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
1456
|
-
* @format GUID
|
|
1457
|
-
*/
|
|
1458
|
-
wixUserId?: string;
|
|
1459
|
-
/**
|
|
1460
|
-
* ID of an app.
|
|
1461
|
-
* @format GUID
|
|
1462
|
-
*/
|
|
1463
|
-
appId?: string;
|
|
1464
|
-
}
|
|
1465
|
-
declare enum WebhookIdentityType {
|
|
1466
|
-
UNKNOWN = "UNKNOWN",
|
|
1467
|
-
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
1468
|
-
MEMBER = "MEMBER",
|
|
1469
|
-
WIX_USER = "WIX_USER",
|
|
1470
|
-
APP = "APP"
|
|
1471
|
-
}
|
|
1472
|
-
/** @enumType */
|
|
1473
|
-
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
1474
|
-
/**
|
|
1475
|
-
* Represents estimated discount information for a service.
|
|
1476
|
-
*
|
|
1477
|
-
* *Important**: This is an estimate and may not reflect the final discount applied at checkout. The actual discount is applied in the ecommerce system during checkout, where additional discounts may be applied based on the full cart context, and the final amount may differ.
|
|
1478
|
-
*
|
|
1479
|
-
* The discount can be system-generated (from discount rules; when multiple apply, the most recently created is returned) or manually set using [Update Service](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/update-service) with a fieldmask. Manual discounts replace system-generated ones.
|
|
1480
|
-
*/
|
|
1481
|
-
interface DiscountInfo {
|
|
1482
|
-
/**
|
|
1483
|
-
* Name of the discount (e.g., "Summer Sale - 20% Off").
|
|
1484
|
-
* @minLength 1
|
|
1485
|
-
* @maxLength 50
|
|
1486
|
-
*/
|
|
1487
|
-
discountName?: string;
|
|
1488
|
-
/**
|
|
1489
|
-
* Estimated price after applying the discount. Optional.
|
|
1490
|
-
*
|
|
1491
|
-
* *Important**: This is an estimate. The final price may differ at checkout when additional discounts are applied or rules are re-evaluated with complete booking information.
|
|
1492
|
-
*
|
|
1493
|
-
* May be empty when the discount depends on booking/cart context (e.g., "10% discount on Service X when booking with Service Y") or requires information only available at checkout.
|
|
1494
|
-
*/
|
|
1495
|
-
priceAfterDiscount?: Money;
|
|
1496
|
-
}
|
|
1497
1334
|
interface CreateServiceRequest {
|
|
1498
1335
|
/** Service to create. */
|
|
1499
1336
|
service: Service;
|
|
@@ -2971,6 +2808,68 @@ declare enum CategoryNotificationEvent {
|
|
|
2971
2808
|
type CategoryNotificationEventWithLiterals = CategoryNotificationEvent | 'Updated' | 'Deleted' | 'Created';
|
|
2972
2809
|
interface Empty {
|
|
2973
2810
|
}
|
|
2811
|
+
interface DomainEvent extends DomainEventBodyOneOf {
|
|
2812
|
+
createdEvent?: EntityCreatedEvent;
|
|
2813
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
2814
|
+
deletedEvent?: EntityDeletedEvent;
|
|
2815
|
+
actionEvent?: ActionEvent;
|
|
2816
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
2817
|
+
_id?: string;
|
|
2818
|
+
/**
|
|
2819
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
2820
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
2821
|
+
*/
|
|
2822
|
+
entityFqdn?: string;
|
|
2823
|
+
/**
|
|
2824
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
2825
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
2826
|
+
*/
|
|
2827
|
+
slug?: string;
|
|
2828
|
+
/** ID of the entity associated with the event. */
|
|
2829
|
+
entityId?: string;
|
|
2830
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
2831
|
+
eventTime?: Date | null;
|
|
2832
|
+
/**
|
|
2833
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
2834
|
+
* (for example, GDPR).
|
|
2835
|
+
*/
|
|
2836
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
2837
|
+
/** If present, indicates the action that triggered the event. */
|
|
2838
|
+
originatedFrom?: string | null;
|
|
2839
|
+
/**
|
|
2840
|
+
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
|
|
2841
|
+
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
|
2842
|
+
*/
|
|
2843
|
+
entityEventSequence?: string | null;
|
|
2844
|
+
}
|
|
2845
|
+
/** @oneof */
|
|
2846
|
+
interface DomainEventBodyOneOf {
|
|
2847
|
+
createdEvent?: EntityCreatedEvent;
|
|
2848
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
2849
|
+
deletedEvent?: EntityDeletedEvent;
|
|
2850
|
+
actionEvent?: ActionEvent;
|
|
2851
|
+
}
|
|
2852
|
+
interface EntityCreatedEvent {
|
|
2853
|
+
entity?: string;
|
|
2854
|
+
}
|
|
2855
|
+
interface RestoreInfo {
|
|
2856
|
+
deletedDate?: Date | null;
|
|
2857
|
+
}
|
|
2858
|
+
interface EntityUpdatedEvent {
|
|
2859
|
+
/**
|
|
2860
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
2861
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
2862
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
2863
|
+
*/
|
|
2864
|
+
currentEntity?: string;
|
|
2865
|
+
}
|
|
2866
|
+
interface EntityDeletedEvent {
|
|
2867
|
+
/** Entity that was deleted. */
|
|
2868
|
+
deletedEntity?: string | null;
|
|
2869
|
+
}
|
|
2870
|
+
interface ActionEvent {
|
|
2871
|
+
body?: string;
|
|
2872
|
+
}
|
|
2974
2873
|
interface BenefitNotification {
|
|
2975
2874
|
/**
|
|
2976
2875
|
* Plan unique ID
|
|
@@ -3420,6 +3319,78 @@ interface SiteCloned {
|
|
|
3420
3319
|
/** Origin site id. */
|
|
3421
3320
|
originMetaSiteId?: string;
|
|
3422
3321
|
}
|
|
3322
|
+
interface MessageEnvelope {
|
|
3323
|
+
/**
|
|
3324
|
+
* App instance ID.
|
|
3325
|
+
* @format GUID
|
|
3326
|
+
*/
|
|
3327
|
+
instanceId?: string | null;
|
|
3328
|
+
/**
|
|
3329
|
+
* Event type.
|
|
3330
|
+
* @maxLength 150
|
|
3331
|
+
*/
|
|
3332
|
+
eventType?: string;
|
|
3333
|
+
/** The identification type and identity data. */
|
|
3334
|
+
identity?: IdentificationData;
|
|
3335
|
+
/** Stringify payload. */
|
|
3336
|
+
data?: string;
|
|
3337
|
+
}
|
|
3338
|
+
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
3339
|
+
/**
|
|
3340
|
+
* ID of a site visitor that has not logged in to the site.
|
|
3341
|
+
* @format GUID
|
|
3342
|
+
*/
|
|
3343
|
+
anonymousVisitorId?: string;
|
|
3344
|
+
/**
|
|
3345
|
+
* ID of a site visitor that has logged in to the site.
|
|
3346
|
+
* @format GUID
|
|
3347
|
+
*/
|
|
3348
|
+
memberId?: string;
|
|
3349
|
+
/**
|
|
3350
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
3351
|
+
* @format GUID
|
|
3352
|
+
*/
|
|
3353
|
+
wixUserId?: string;
|
|
3354
|
+
/**
|
|
3355
|
+
* ID of an app.
|
|
3356
|
+
* @format GUID
|
|
3357
|
+
*/
|
|
3358
|
+
appId?: string;
|
|
3359
|
+
/** @readonly */
|
|
3360
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
3361
|
+
}
|
|
3362
|
+
/** @oneof */
|
|
3363
|
+
interface IdentificationDataIdOneOf {
|
|
3364
|
+
/**
|
|
3365
|
+
* ID of a site visitor that has not logged in to the site.
|
|
3366
|
+
* @format GUID
|
|
3367
|
+
*/
|
|
3368
|
+
anonymousVisitorId?: string;
|
|
3369
|
+
/**
|
|
3370
|
+
* ID of a site visitor that has logged in to the site.
|
|
3371
|
+
* @format GUID
|
|
3372
|
+
*/
|
|
3373
|
+
memberId?: string;
|
|
3374
|
+
/**
|
|
3375
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
3376
|
+
* @format GUID
|
|
3377
|
+
*/
|
|
3378
|
+
wixUserId?: string;
|
|
3379
|
+
/**
|
|
3380
|
+
* ID of an app.
|
|
3381
|
+
* @format GUID
|
|
3382
|
+
*/
|
|
3383
|
+
appId?: string;
|
|
3384
|
+
}
|
|
3385
|
+
declare enum WebhookIdentityType {
|
|
3386
|
+
UNKNOWN = "UNKNOWN",
|
|
3387
|
+
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
3388
|
+
MEMBER = "MEMBER",
|
|
3389
|
+
WIX_USER = "WIX_USER",
|
|
3390
|
+
APP = "APP"
|
|
3391
|
+
}
|
|
3392
|
+
/** @enumType */
|
|
3393
|
+
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
3423
3394
|
interface CreateAddOnGroupRequest {
|
|
3424
3395
|
/** Add-on group to create. */
|
|
3425
3396
|
addOnGroup: AddOnGroup;
|
|
@@ -5174,4 +5145,4 @@ interface SetAddOnsForGroupOptions {
|
|
|
5174
5145
|
addOnIds: string[] | null;
|
|
5175
5146
|
}
|
|
5176
5147
|
|
|
5177
|
-
export { type SetAddOnsForGroupResponse as $, type DisablePricingPlansForServiceResponse as A, type BulkCreateServicesOptions as B, type CreateServiceValidationErrors as C, type DeleteServiceOptions as D, type EnablePricingPlansForServiceResponse as E, type DisablePricingPlansForServiceApplicationErrors as F, type SetCustomSlugOptions as G, type SetCustomSlugResponse as H, type SetCustomSlugApplicationErrors as I, type SetCustomSlugValidationErrors as J, type ValidateSlugResponse as K, type CloneServiceResponse as L, type AddOnGroup as M, type CreateAddOnGroupOptions as N, type CreateAddOnGroupResponse as O, type DeleteAddOnGroupOptions as P, type QueryPoliciesResponse as Q, type DeleteAddOnGroupApplicationErrors as R, type Service as S, type UpdateAddOnGroupOptions as T, type UpdateService as U, type ValidateSlugOptions as V, type UpdateAddOnGroupResponse as W, type UpdateAddOnGroupApplicationErrors as X, type ListAddOnGroupsByServiceIdOptions as Y, type ListAddOnGroupsByServiceIdResponse as Z, type SetAddOnsForGroupOptions as _, type BulkCreateServicesResponse as a, type BookingPolicy as a$, type SetAddOnsForGroupApplicationErrors as a0, type ServiceCreatedEnvelope as a1, type ServiceDeletedEnvelope as a2, type ServiceUpdatedEnvelope as a3, type ServiceQuery as a4, type QueryServicesOptions as a5, typedQueryServices as a6, type ServicesQueryBuilder as a7, ServiceType as a8, RateType as a9, CrudType as aA, PlacementType as aB, DayOfWeek as aC, ResolutionMethod as aD, type Media as aE, type MediaItem as aF, type MediaItemItemOneOf as aG, type V2Category as aH, type Form as aI, type FormSettings as aJ, type Payment as aK, type PaymentRateOneOf as aL, type FixedPayment as aM, type Money as aN, type CustomPayment as aO, type VariedPayment as aP, type PaymentOptions as aQ, type OnlineBooking as aR, type Conferencing as aS, type Location as aT, type LocationOptionsOneOf as aU, type CommonAddress as aV, type CommonAddressStreetOneOf as aW, type StreetAddress as aX, type AddressLocation as aY, type BusinessLocationOptions as aZ, type CustomLocationOptions as a_, AddOnPaymentOptions as aa, LocationType as ab, RankingOrder as ac, SortingMethodType as ad, Timing as ae, CompletionRequirement as af, TaxableAddressType as ag, WebhookIdentityType as ah, V2RequestedFields as ai, SortOrder as aj, SortType as ak, SortDirection as al, MissingValues as am, ScalarType as an, NestedAggregationType as ao, Interval as ap, AggregationType as aq, Mode as ar, RequestedFields as as, Action as at, InvalidSlugError as au, CloneErrors as av, Status as aw, CategoryNotificationEvent as ax, BenefitType as ay, Event as az, type UpdateServiceValidationErrors as b, type BulkCreateServicesRequest as b$, type PolicyDescription as b0, type LimitEarlyBookingPolicy as b1, type LimitLateBookingPolicy as b2, type BookAfterStartPolicy as b3, type CancellationPolicy as b4, type ReschedulePolicy as b5, type WaitlistPolicy as b6, type ParticipantsPolicy as b7, type ResourcesPolicy as b8, type CancellationFeePolicy as b9, type Settings as bA, type AddOnDetails as bB, type TaxableAddress as bC, type PhoneCall as bD, type ReindexMessage as bE, type ReindexMessageActionOneOf as bF, type Upsert as bG, type Delete as bH, type Schema as bI, type SetCustomSlugEvent as bJ, type ServicesUrlsChanged as bK, type DomainEvent as bL, type DomainEventBodyOneOf as bM, type EntityCreatedEvent as bN, type RestoreInfo as bO, type EntityUpdatedEvent as bP, type EntityDeletedEvent as bQ, type ActionEvent as bR, type MessageEnvelope as bS, type IdentificationData as bT, type IdentificationDataIdOneOf as bU, type DiscountInfo as bV, type CreateServiceRequest as bW, type CreateServiceResponse as bX, type ValidateServiceRequest as bY, type ValidateServiceResponse as bZ, type FieldViolation as b_, type CancellationWindow as ba, type CancellationWindowFeeOneOf as bb, type SaveCreditCardPolicy as bc, type StaffSortingPolicy as bd, type StaffSortingPolicyOptionsOneOf as be, type RankingOptions as bf, type CustomOptions as bg, type IntakeFormPolicy as bh, type Schedule as bi, type AvailabilityConstraints as bj, type Duration as bk, type StaffMember as bl, type StaffMediaItem as bm, type StaffMediaItemItemOneOf as bn, type StaffMemberDetails as bo, type ResourceGroup as bp, type ResourceIds as bq, type ServiceResource as br, type ServiceResourceSelectionOneOf as bs, type ResourceType as bt, type Slug as bu, type URLs as bv, type ExtendedFields as bw, type SeoSchema as bx, type Keyword as by, type Tag as bz, type BulkUpdateServicesOptions as c, type DateHistogramResult as c$, type BulkServiceResult as c0, type ItemMetadata as c1, type ApplicationError as c2, type BulkActionMetadata as c3, type GetServiceRequest as c4, type GetServiceResponse as c5, type GetServiceAvailabilityConstraintsRequest as c6, type GetServiceAvailabilityConstraintsResponse as c7, type ServiceAvailabilityConstraints as c8, type SplitInterval as c9, type ValueAggregation as cA, type ValueAggregationOptionsOneOf as cB, type RangeAggregation as cC, type ScalarAggregation as cD, type DateHistogramAggregation as cE, type NestedAggregationItem as cF, type NestedAggregationItemKindOneOf as cG, type NestedAggregation as cH, type GroupByAggregation as cI, type GroupByAggregationKindOneOf as cJ, type SearchDetails as cK, type CursorPagingMetadata as cL, type AggregationData as cM, type ValueAggregationResult as cN, type RangeAggregationResult as cO, type NestedAggregationResults as cP, type NestedAggregationResultsResultOneOf as cQ, type ValueResults as cR, type RangeResults as cS, type AggregationResultsScalarResult as cT, type NestedValueAggregationResult as cU, type ValueResult as cV, type RangeResult as cW, type ScalarResult as cX, type NestedResultValue as cY, type NestedResultValueResultOneOf as cZ, type Results as c_, type UpdateServiceRequest as ca, type UpdateServiceResponse as cb, type BulkUpdateServicesRequest as cc, type MaskedService as cd, type BulkUpdateServicesByFilterRequest as ce, type DeleteServiceRequest as cf, type ParticipantNotification as cg, type DeleteServiceResponse as ch, type BulkDeleteServicesRequest as ci, type BulkDeleteServicesByFilterRequest as cj, type QueryServicesRequest as ck, type QueryV2 as cl, type QueryV2PagingMethodOneOf as cm, type Sorting as cn, type Paging as co, type CursorPaging as cp, type QueryServicesResponse as cq, type PagingMetadataV2 as cr, type Cursors as cs, type SearchServicesRequest as ct, type CursorSearch as cu, type CursorSearchPagingMethodOneOf as cv, type Aggregation as cw, type AggregationKindOneOf as cx, type RangeBucket as cy, type IncludeMissingValuesOptions as cz, type BulkUpdateServicesResponse as d, type ChangeContextPayloadOneOf as d$, type GroupByValueResults as d0, type DateHistogramResults as d1, type NestedResults as d2, type AggregationResults as d3, type AggregationResultsResultOneOf as d4, type QueryPoliciesRequest as d5, type CursorQueryPagingMethodOneOf as d6, type BookingPolicyWithServices as d7, type QueryBookingFormsRequest as d8, type BookingForm as d9, type Empty as dA, type BenefitNotification as dB, type Benefit as dC, type EntryPass as dD, type Discount as dE, type DiscountDiscountOneOf as dF, type Behavior as dG, type BehaviorBehaviorOneOf as dH, type UserDomainInfoChangedEvent as dI, type HtmlSitePublished as dJ, type Page as dK, type SitePropertiesNotification as dL, type SitePropertiesEvent as dM, type Properties as dN, type Categories as dO, type Locale as dP, type Address as dQ, type AddressHint as dR, type GeoCoordinates as dS, type BusinessSchedule as dT, type TimePeriod as dU, type SpecialHourPeriod as dV, type Multilingual as dW, type SupportedLanguage as dX, type ConsentPolicy as dY, type Translation as dZ, type ChangeContext as d_, type FormDetails as da, type ConnectedService as db, type CountServicesRequest as dc, type QueryLocationsRequest as dd, type QueryLocationsFilter as de, type BusinessLocations as df, type CustomLocations as dg, type CustomerLocations as dh, type QueryCategoriesRequest as di, type QueryCategoriesFilter as dj, type QueryServicesMultiLanguageRequest as dk, type QueryServicesMultiLanguageResponse as dl, type SetServiceLocationsRequest as dm, type RemovedLocationSessionsAction as dn, type RemovedLocationSessionsActionActionOptionsOneOf as dp, type MoveToNewLocationsOptions as dq, type EnablePricingPlansForServiceRequest as dr, type PricingPlanSelection as ds, type InvalidPricingPlan as dt, type DisablePricingPlansForServiceRequest as du, type SetCustomSlugRequest as dv, type ValidateSlugRequest as dw, type CloneServiceRequest as dx, type CategoryNotification as dy, type Category as dz, type BulkUpdateServicesByFilterOptions as e, queryServices as e$, type PropertiesChange as e0, type SiteCreated as e1, type SiteCloned as e2, type CreateAddOnGroupRequest as e3, type DeleteAddOnGroupRequest as e4, type DeleteAddOnGroupResponse as e5, type UpdateAddOnGroupRequest as e6, type ListAddOnGroupsByServiceIdRequest as e7, type AddOn as e8, type AddOnAddOnInfoOneOf as e9, type ModeWithLiterals as eA, type RequestedFieldsWithLiterals as eB, type ActionWithLiterals as eC, type InvalidSlugErrorWithLiterals as eD, type CloneErrorsWithLiterals as eE, type StatusWithLiterals as eF, type CategoryNotificationEventWithLiterals as eG, type BenefitTypeWithLiterals as eH, type EventWithLiterals as eI, type CrudTypeWithLiterals as eJ, type PlacementTypeWithLiterals as eK, type DayOfWeekWithLiterals as eL, type ResolutionMethodWithLiterals as eM, type CommonQueryWithEntityContext as eN, type CommonSearchWithEntityContext as eO, onServiceCreated as eP, onServiceDeleted as eQ, onServiceUpdated as eR, createService as eS, bulkCreateServices as eT, getService as eU, updateService as eV, bulkUpdateServices as eW, bulkUpdateServicesByFilter as eX, deleteService as eY, bulkDeleteServices as eZ, bulkDeleteServicesByFilter as e_, type AddOnGroupDetail as ea, type SetAddOnsForGroupRequest as eb, type BaseEventMetadata as ec, type EventMetadata as ed, type ServicesQueryResult as ee, type ServiceQuerySpec as ef, type ServiceSearchSpec as eg, type ServiceTypeWithLiterals as eh, type RateTypeWithLiterals as ei, type AddOnPaymentOptionsWithLiterals as ej, type LocationTypeWithLiterals as ek, type RankingOrderWithLiterals as el, type SortingMethodTypeWithLiterals as em, type TimingWithLiterals as en, type CompletionRequirementWithLiterals as eo, type TaxableAddressTypeWithLiterals as ep, type WebhookIdentityTypeWithLiterals as eq, type V2RequestedFieldsWithLiterals as er, type SortOrderWithLiterals as es, type SortTypeWithLiterals as et, type SortDirectionWithLiterals as eu, type MissingValuesWithLiterals as ev, type ScalarTypeWithLiterals as ew, type NestedAggregationTypeWithLiterals as ex, type IntervalWithLiterals as ey, type AggregationTypeWithLiterals as ez, type BulkUpdateServicesByFilterResponse as f, queryPolicies as f0, queryBookingForms as f1, countServices as f2, queryLocations as f3, queryCategories as f4, setServiceLocations as f5, enablePricingPlansForService as f6, disablePricingPlansForService as f7, setCustomSlug as f8, validateSlug as f9, cloneService as fa, createAddOnGroup as fb, deleteAddOnGroup as fc, updateAddOnGroup as fd, listAddOnGroupsByServiceId as fe, setAddOnsForGroup as ff, type BulkDeleteServicesOptions as g, type BulkDeleteServicesResponse as h, type BulkDeleteServicesByFilterOptions as i, type BulkDeleteServicesByFilterResponse as j, type ServiceSearch as k, type SearchServicesResponse as l, type CursorQuery as m, type QueryBookingFormsOptions as n, type QueryBookingFormsResponse as o, type QueryBookingFormsApplicationErrors as p, type CountServicesOptions as q, type CountServicesResponse as r, type QueryLocationsOptions as s, type QueryLocationsResponse as t, type QueryCategoriesOptions as u, type QueryCategoriesResponse as v, type SetServiceLocationsOptions as w, type SetServiceLocationsResponse as x, type EnablePricingPlansForServiceApplicationErrors as y, type DisablePricingPlansForServiceOptions as z };
|
|
5148
|
+
export { type SetAddOnsForGroupResponse as $, type DisablePricingPlansForServiceResponse as A, type BulkCreateServicesOptions as B, type CreateServiceValidationErrors as C, type DeleteServiceOptions as D, type EnablePricingPlansForServiceResponse as E, type DisablePricingPlansForServiceApplicationErrors as F, type SetCustomSlugOptions as G, type SetCustomSlugResponse as H, type SetCustomSlugApplicationErrors as I, type SetCustomSlugValidationErrors as J, type ValidateSlugResponse as K, type CloneServiceResponse as L, type AddOnGroup as M, type CreateAddOnGroupOptions as N, type CreateAddOnGroupResponse as O, type DeleteAddOnGroupOptions as P, type QueryPoliciesResponse as Q, type DeleteAddOnGroupApplicationErrors as R, type Service as S, type UpdateAddOnGroupOptions as T, type UpdateService as U, type ValidateSlugOptions as V, type UpdateAddOnGroupResponse as W, type UpdateAddOnGroupApplicationErrors as X, type ListAddOnGroupsByServiceIdOptions as Y, type ListAddOnGroupsByServiceIdResponse as Z, type SetAddOnsForGroupOptions as _, type BulkCreateServicesResponse as a, type CustomLocationOptions as a$, type SetAddOnsForGroupApplicationErrors as a0, type ServiceCreatedEnvelope as a1, type ServiceDeletedEnvelope as a2, type ServiceUpdatedEnvelope as a3, type ServiceQuery as a4, type QueryServicesOptions as a5, typedQueryServices as a6, type ServicesQueryBuilder as a7, ServiceType as a8, RateType as a9, PlacementType as aA, DayOfWeek as aB, ResolutionMethod as aC, WebhookIdentityType as aD, type Media as aE, type MediaItem as aF, type MediaItemItemOneOf as aG, type V2Category as aH, type Form as aI, type FormSettings as aJ, type Payment as aK, type PaymentRateOneOf as aL, type FixedPayment as aM, type Money as aN, type CustomPayment as aO, type VariedPayment as aP, type PaymentOptions as aQ, type DiscountInfo as aR, type OnlineBooking as aS, type Conferencing as aT, type Location as aU, type LocationOptionsOneOf as aV, type CommonAddress as aW, type CommonAddressStreetOneOf as aX, type StreetAddress as aY, type AddressLocation as aZ, type BusinessLocationOptions as a_, AddOnPaymentOptions as aa, LocationType as ab, RankingOrder as ac, SortingMethodType as ad, Timing as ae, CompletionRequirement as af, TaxableAddressType as ag, V2RequestedFields as ah, SortOrder as ai, SortType as aj, SortDirection as ak, MissingValues as al, ScalarType as am, NestedAggregationType as an, Interval as ao, AggregationType as ap, Mode as aq, RequestedFields as ar, Action as as, InvalidSlugError as at, CloneErrors as au, Status as av, CategoryNotificationEvent as aw, BenefitType as ax, Event as ay, CrudType as az, type UpdateServiceValidationErrors as b, type BulkUpdateServicesByFilterRequest as b$, type BookingPolicy as b0, type PolicyDescription as b1, type LimitEarlyBookingPolicy as b2, type LimitLateBookingPolicy as b3, type BookAfterStartPolicy as b4, type CancellationPolicy as b5, type ReschedulePolicy as b6, type WaitlistPolicy as b7, type ParticipantsPolicy as b8, type ResourcesPolicy as b9, type Tag as bA, type Settings as bB, type AddOnDetails as bC, type TaxableAddress as bD, type PhoneCall as bE, type SetCustomSlugEvent as bF, type ServicesUrlsChanged as bG, type CreateServiceRequest as bH, type CreateServiceResponse as bI, type ValidateServiceRequest as bJ, type ValidateServiceResponse as bK, type FieldViolation as bL, type BulkCreateServicesRequest as bM, type BulkServiceResult as bN, type ItemMetadata as bO, type ApplicationError as bP, type BulkActionMetadata as bQ, type GetServiceRequest as bR, type GetServiceResponse as bS, type GetServiceAvailabilityConstraintsRequest as bT, type GetServiceAvailabilityConstraintsResponse as bU, type ServiceAvailabilityConstraints as bV, type SplitInterval as bW, type UpdateServiceRequest as bX, type UpdateServiceResponse as bY, type BulkUpdateServicesRequest as bZ, type MaskedService as b_, type CancellationFeePolicy as ba, type CancellationWindow as bb, type CancellationWindowFeeOneOf as bc, type SaveCreditCardPolicy as bd, type StaffSortingPolicy as be, type StaffSortingPolicyOptionsOneOf as bf, type RankingOptions as bg, type CustomOptions as bh, type IntakeFormPolicy as bi, type Schedule as bj, type AvailabilityConstraints as bk, type Duration as bl, type StaffMember as bm, type StaffMediaItem as bn, type StaffMediaItemItemOneOf as bo, type StaffMemberDetails as bp, type ResourceGroup as bq, type ResourceIds as br, type ServiceResource as bs, type ServiceResourceSelectionOneOf as bt, type ResourceType as bu, type Slug as bv, type URLs as bw, type ExtendedFields as bx, type SeoSchema as by, type Keyword as bz, type BulkUpdateServicesOptions as c, type QueryLocationsFilter as c$, type DeleteServiceRequest as c0, type ParticipantNotification as c1, type DeleteServiceResponse as c2, type BulkDeleteServicesRequest as c3, type BulkDeleteServicesByFilterRequest as c4, type QueryServicesRequest as c5, type QueryV2 as c6, type QueryV2PagingMethodOneOf as c7, type Sorting as c8, type Paging as c9, type NestedAggregationResults as cA, type NestedAggregationResultsResultOneOf as cB, type ValueResults as cC, type RangeResults as cD, type AggregationResultsScalarResult as cE, type NestedValueAggregationResult as cF, type ValueResult as cG, type RangeResult as cH, type ScalarResult as cI, type NestedResultValue as cJ, type NestedResultValueResultOneOf as cK, type Results as cL, type DateHistogramResult as cM, type GroupByValueResults as cN, type DateHistogramResults as cO, type NestedResults as cP, type AggregationResults as cQ, type AggregationResultsResultOneOf as cR, type QueryPoliciesRequest as cS, type CursorQueryPagingMethodOneOf as cT, type BookingPolicyWithServices as cU, type QueryBookingFormsRequest as cV, type BookingForm as cW, type FormDetails as cX, type ConnectedService as cY, type CountServicesRequest as cZ, type QueryLocationsRequest as c_, type CursorPaging as ca, type QueryServicesResponse as cb, type PagingMetadataV2 as cc, type Cursors as cd, type SearchServicesRequest as ce, type CursorSearch as cf, type CursorSearchPagingMethodOneOf as cg, type Aggregation as ch, type AggregationKindOneOf as ci, type RangeBucket as cj, type IncludeMissingValuesOptions as ck, type ValueAggregation as cl, type ValueAggregationOptionsOneOf as cm, type RangeAggregation as cn, type ScalarAggregation as co, type DateHistogramAggregation as cp, type NestedAggregationItem as cq, type NestedAggregationItemKindOneOf as cr, type NestedAggregation as cs, type GroupByAggregation as ct, type GroupByAggregationKindOneOf as cu, type SearchDetails as cv, type CursorPagingMetadata as cw, type AggregationData as cx, type ValueAggregationResult as cy, type RangeAggregationResult as cz, type BulkUpdateServicesResponse as d, type DeleteAddOnGroupRequest as d$, type BusinessLocations as d0, type CustomLocations as d1, type CustomerLocations as d2, type QueryCategoriesRequest as d3, type QueryCategoriesFilter as d4, type QueryServicesMultiLanguageRequest as d5, type QueryServicesMultiLanguageResponse as d6, type SetServiceLocationsRequest as d7, type RemovedLocationSessionsAction as d8, type RemovedLocationSessionsActionActionOptionsOneOf as d9, type UserDomainInfoChangedEvent as dA, type HtmlSitePublished as dB, type Page as dC, type SitePropertiesNotification as dD, type SitePropertiesEvent as dE, type Properties as dF, type Categories as dG, type Locale as dH, type Address as dI, type AddressHint as dJ, type GeoCoordinates as dK, type BusinessSchedule as dL, type TimePeriod as dM, type SpecialHourPeriod as dN, type Multilingual as dO, type SupportedLanguage as dP, type ConsentPolicy as dQ, type Translation as dR, type ChangeContext as dS, type ChangeContextPayloadOneOf as dT, type PropertiesChange as dU, type SiteCreated as dV, type SiteCloned as dW, type MessageEnvelope as dX, type IdentificationData as dY, type IdentificationDataIdOneOf as dZ, type CreateAddOnGroupRequest as d_, type MoveToNewLocationsOptions as da, type EnablePricingPlansForServiceRequest as db, type PricingPlanSelection as dc, type InvalidPricingPlan as dd, type DisablePricingPlansForServiceRequest as de, type SetCustomSlugRequest as df, type ValidateSlugRequest as dg, type CloneServiceRequest as dh, type CategoryNotification as di, type Category as dj, type Empty as dk, type DomainEvent as dl, type DomainEventBodyOneOf as dm, type EntityCreatedEvent as dn, type RestoreInfo as dp, type EntityUpdatedEvent as dq, type EntityDeletedEvent as dr, type ActionEvent as ds, type BenefitNotification as dt, type Benefit as du, type EntryPass as dv, type Discount as dw, type DiscountDiscountOneOf as dx, type Behavior as dy, type BehaviorBehaviorOneOf as dz, type BulkUpdateServicesByFilterOptions as e, queryCategories as e$, type DeleteAddOnGroupResponse as e0, type UpdateAddOnGroupRequest as e1, type ListAddOnGroupsByServiceIdRequest as e2, type AddOn as e3, type AddOnAddOnInfoOneOf as e4, type AddOnGroupDetail as e5, type SetAddOnsForGroupRequest as e6, type BaseEventMetadata as e7, type EventMetadata as e8, type ServicesQueryResult as e9, type CategoryNotificationEventWithLiterals as eA, type BenefitTypeWithLiterals as eB, type EventWithLiterals as eC, type CrudTypeWithLiterals as eD, type PlacementTypeWithLiterals as eE, type DayOfWeekWithLiterals as eF, type ResolutionMethodWithLiterals as eG, type WebhookIdentityTypeWithLiterals as eH, type CommonQueryWithEntityContext as eI, type CommonSearchWithEntityContext as eJ, onServiceCreated as eK, onServiceDeleted as eL, onServiceUpdated as eM, createService as eN, bulkCreateServices as eO, getService as eP, updateService as eQ, bulkUpdateServices as eR, bulkUpdateServicesByFilter as eS, deleteService as eT, bulkDeleteServices as eU, bulkDeleteServicesByFilter as eV, queryServices as eW, queryPolicies as eX, queryBookingForms as eY, countServices as eZ, queryLocations as e_, type ServiceQuerySpec as ea, type ServiceSearchSpec as eb, type ServiceTypeWithLiterals as ec, type RateTypeWithLiterals as ed, type AddOnPaymentOptionsWithLiterals as ee, type LocationTypeWithLiterals as ef, type RankingOrderWithLiterals as eg, type SortingMethodTypeWithLiterals as eh, type TimingWithLiterals as ei, type CompletionRequirementWithLiterals as ej, type TaxableAddressTypeWithLiterals as ek, type V2RequestedFieldsWithLiterals as el, type SortOrderWithLiterals as em, type SortTypeWithLiterals as en, type SortDirectionWithLiterals as eo, type MissingValuesWithLiterals as ep, type ScalarTypeWithLiterals as eq, type NestedAggregationTypeWithLiterals as er, type IntervalWithLiterals as es, type AggregationTypeWithLiterals as et, type ModeWithLiterals as eu, type RequestedFieldsWithLiterals as ev, type ActionWithLiterals as ew, type InvalidSlugErrorWithLiterals as ex, type CloneErrorsWithLiterals as ey, type StatusWithLiterals as ez, type BulkUpdateServicesByFilterResponse as f, setServiceLocations as f0, enablePricingPlansForService as f1, disablePricingPlansForService as f2, setCustomSlug as f3, validateSlug as f4, cloneService as f5, createAddOnGroup as f6, deleteAddOnGroup as f7, updateAddOnGroup as f8, listAddOnGroupsByServiceId as f9, setAddOnsForGroup as fa, type BulkDeleteServicesOptions as g, type BulkDeleteServicesResponse as h, type BulkDeleteServicesByFilterOptions as i, type BulkDeleteServicesByFilterResponse as j, type ServiceSearch as k, type SearchServicesResponse as l, type CursorQuery as m, type QueryBookingFormsOptions as n, type QueryBookingFormsResponse as o, type QueryBookingFormsApplicationErrors as p, type CountServicesOptions as q, type CountServicesResponse as r, type QueryLocationsOptions as s, type QueryLocationsResponse as t, type QueryCategoriesOptions as u, type QueryCategoriesResponse as v, type SetServiceLocationsOptions as w, type SetServiceLocationsResponse as x, type EnablePricingPlansForServiceApplicationErrors as y, type DisablePricingPlansForServiceOptions as z };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { S as Service, C as CreateServiceValidationErrors, B as BulkCreateServicesOptions, a as BulkCreateServicesResponse, U as UpdateService, b as UpdateServiceValidationErrors, c as BulkUpdateServicesOptions, d as BulkUpdateServicesResponse, e as BulkUpdateServicesByFilterOptions, f as BulkUpdateServicesByFilterResponse, D as DeleteServiceOptions, g as BulkDeleteServicesOptions, h as BulkDeleteServicesResponse, i as BulkDeleteServicesByFilterOptions, j as BulkDeleteServicesByFilterResponse, k as ServiceSearch, l as SearchServicesResponse, m as CursorQuery, Q as QueryPoliciesResponse, n as QueryBookingFormsOptions, o as QueryBookingFormsResponse, p as QueryBookingFormsApplicationErrors, q as CountServicesOptions, r as CountServicesResponse, s as QueryLocationsOptions, t as QueryLocationsResponse, u as QueryCategoriesOptions, v as QueryCategoriesResponse, w as SetServiceLocationsOptions, x as SetServiceLocationsResponse, E as EnablePricingPlansForServiceResponse, y as EnablePricingPlansForServiceApplicationErrors, z as DisablePricingPlansForServiceOptions, A as DisablePricingPlansForServiceResponse, F as DisablePricingPlansForServiceApplicationErrors, G as SetCustomSlugOptions, H as SetCustomSlugResponse, I as SetCustomSlugApplicationErrors, J as SetCustomSlugValidationErrors, V as ValidateSlugOptions, K as ValidateSlugResponse, L as CloneServiceResponse, M as AddOnGroup, N as CreateAddOnGroupOptions, O as CreateAddOnGroupResponse, P as DeleteAddOnGroupOptions, R as DeleteAddOnGroupApplicationErrors, T as UpdateAddOnGroupOptions, W as UpdateAddOnGroupResponse, X as UpdateAddOnGroupApplicationErrors, Y as ListAddOnGroupsByServiceIdOptions, Z as ListAddOnGroupsByServiceIdResponse, _ as SetAddOnsForGroupOptions, $ as SetAddOnsForGroupResponse, a0 as SetAddOnsForGroupApplicationErrors, a1 as ServiceCreatedEnvelope, a2 as ServiceDeletedEnvelope, a3 as ServiceUpdatedEnvelope, a4 as ServiceQuery, a5 as QueryServicesOptions, a6 as typedQueryServices, a7 as ServicesQueryBuilder } from './bookings-services-v2-service-services.universal-
|
|
3
|
-
export {
|
|
2
|
+
import { S as Service, C as CreateServiceValidationErrors, B as BulkCreateServicesOptions, a as BulkCreateServicesResponse, U as UpdateService, b as UpdateServiceValidationErrors, c as BulkUpdateServicesOptions, d as BulkUpdateServicesResponse, e as BulkUpdateServicesByFilterOptions, f as BulkUpdateServicesByFilterResponse, D as DeleteServiceOptions, g as BulkDeleteServicesOptions, h as BulkDeleteServicesResponse, i as BulkDeleteServicesByFilterOptions, j as BulkDeleteServicesByFilterResponse, k as ServiceSearch, l as SearchServicesResponse, m as CursorQuery, Q as QueryPoliciesResponse, n as QueryBookingFormsOptions, o as QueryBookingFormsResponse, p as QueryBookingFormsApplicationErrors, q as CountServicesOptions, r as CountServicesResponse, s as QueryLocationsOptions, t as QueryLocationsResponse, u as QueryCategoriesOptions, v as QueryCategoriesResponse, w as SetServiceLocationsOptions, x as SetServiceLocationsResponse, E as EnablePricingPlansForServiceResponse, y as EnablePricingPlansForServiceApplicationErrors, z as DisablePricingPlansForServiceOptions, A as DisablePricingPlansForServiceResponse, F as DisablePricingPlansForServiceApplicationErrors, G as SetCustomSlugOptions, H as SetCustomSlugResponse, I as SetCustomSlugApplicationErrors, J as SetCustomSlugValidationErrors, V as ValidateSlugOptions, K as ValidateSlugResponse, L as CloneServiceResponse, M as AddOnGroup, N as CreateAddOnGroupOptions, O as CreateAddOnGroupResponse, P as DeleteAddOnGroupOptions, R as DeleteAddOnGroupApplicationErrors, T as UpdateAddOnGroupOptions, W as UpdateAddOnGroupResponse, X as UpdateAddOnGroupApplicationErrors, Y as ListAddOnGroupsByServiceIdOptions, Z as ListAddOnGroupsByServiceIdResponse, _ as SetAddOnsForGroupOptions, $ as SetAddOnsForGroupResponse, a0 as SetAddOnsForGroupApplicationErrors, a1 as ServiceCreatedEnvelope, a2 as ServiceDeletedEnvelope, a3 as ServiceUpdatedEnvelope, a4 as ServiceQuery, a5 as QueryServicesOptions, a6 as typedQueryServices, a7 as ServicesQueryBuilder } from './bookings-services-v2-service-services.universal-B7-Plu-S.mjs';
|
|
3
|
+
export { as as Action, ds as ActionEvent, ew as ActionWithLiterals, e3 as AddOn, e4 as AddOnAddOnInfoOneOf, bC as AddOnDetails, e5 as AddOnGroupDetail, aa as AddOnPaymentOptions, ee as AddOnPaymentOptionsWithLiterals, dI as Address, dJ as AddressHint, aZ as AddressLocation, ch as Aggregation, cx as AggregationData, ci as AggregationKindOneOf, cQ as AggregationResults, cR as AggregationResultsResultOneOf, cE as AggregationResultsScalarResult, ap as AggregationType, et as AggregationTypeWithLiterals, bP as ApplicationError, bk as AvailabilityConstraints, e7 as BaseEventMetadata, dy as Behavior, dz as BehaviorBehaviorOneOf, du as Benefit, dt as BenefitNotification, ax as BenefitType, eB as BenefitTypeWithLiterals, b4 as BookAfterStartPolicy, cW as BookingForm, b0 as BookingPolicy, cU as BookingPolicyWithServices, bQ as BulkActionMetadata, bM as BulkCreateServicesRequest, c4 as BulkDeleteServicesByFilterRequest, c3 as BulkDeleteServicesRequest, bN as BulkServiceResult, b$ as BulkUpdateServicesByFilterRequest, bZ as BulkUpdateServicesRequest, a_ as BusinessLocationOptions, d0 as BusinessLocations, dL as BusinessSchedule, ba as CancellationFeePolicy, b5 as CancellationPolicy, bb as CancellationWindow, bc as CancellationWindowFeeOneOf, dG as Categories, dj as Category, di as CategoryNotification, aw as CategoryNotificationEvent, eA as CategoryNotificationEventWithLiterals, dS as ChangeContext, dT as ChangeContextPayloadOneOf, au as CloneErrors, ey as CloneErrorsWithLiterals, dh as CloneServiceRequest, aW as CommonAddress, aX as CommonAddressStreetOneOf, eI as CommonQueryWithEntityContext, eJ as CommonSearchWithEntityContext, af as CompletionRequirement, ej as CompletionRequirementWithLiterals, aT as Conferencing, cY as ConnectedService, dQ as ConsentPolicy, cZ as CountServicesRequest, d_ as CreateAddOnGroupRequest, bH as CreateServiceRequest, bI as CreateServiceResponse, az as CrudType, eD as CrudTypeWithLiterals, ca as CursorPaging, cw as CursorPagingMetadata, cT as CursorQueryPagingMethodOneOf, cf as CursorSearch, cg as CursorSearchPagingMethodOneOf, cd as Cursors, a$ as CustomLocationOptions, d1 as CustomLocations, bh as CustomOptions, aO as CustomPayment, d2 as CustomerLocations, cp as DateHistogramAggregation, cM as DateHistogramResult, cO as DateHistogramResults, aB as DayOfWeek, eF as DayOfWeekWithLiterals, d$ as DeleteAddOnGroupRequest, e0 as DeleteAddOnGroupResponse, c0 as DeleteServiceRequest, c2 as DeleteServiceResponse, de as DisablePricingPlansForServiceRequest, dw as Discount, dx as DiscountDiscountOneOf, aR as DiscountInfo, dl as DomainEvent, dm as DomainEventBodyOneOf, bl as Duration, dk as Empty, db as EnablePricingPlansForServiceRequest, dn as EntityCreatedEvent, dr as EntityDeletedEvent, dq as EntityUpdatedEvent, dv as EntryPass, ay as Event, e8 as EventMetadata, eC as EventWithLiterals, bx as ExtendedFields, bL as FieldViolation, aM as FixedPayment, aI as Form, cX as FormDetails, aJ as FormSettings, dK as GeoCoordinates, bT as GetServiceAvailabilityConstraintsRequest, bU as GetServiceAvailabilityConstraintsResponse, bR as GetServiceRequest, bS as GetServiceResponse, ct as GroupByAggregation, cu as GroupByAggregationKindOneOf, cN as GroupByValueResults, dB as HtmlSitePublished, dY as IdentificationData, dZ as IdentificationDataIdOneOf, ck as IncludeMissingValuesOptions, bi as IntakeFormPolicy, ao as Interval, es as IntervalWithLiterals, dd as InvalidPricingPlan, at as InvalidSlugError, ex as InvalidSlugErrorWithLiterals, bO as ItemMetadata, bz as Keyword, b2 as LimitEarlyBookingPolicy, b3 as LimitLateBookingPolicy, e2 as ListAddOnGroupsByServiceIdRequest, dH as Locale, aU as Location, aV as LocationOptionsOneOf, ab as LocationType, ef as LocationTypeWithLiterals, b_ as MaskedService, aE as Media, aF as MediaItem, aG as MediaItemItemOneOf, dX as MessageEnvelope, al as MissingValues, ep as MissingValuesWithLiterals, aq as Mode, eu as ModeWithLiterals, aN as Money, da as MoveToNewLocationsOptions, dO as Multilingual, cs as NestedAggregation, cq as NestedAggregationItem, cr as NestedAggregationItemKindOneOf, cA as NestedAggregationResults, cB as NestedAggregationResultsResultOneOf, an as NestedAggregationType, er as NestedAggregationTypeWithLiterals, cJ as NestedResultValue, cK as NestedResultValueResultOneOf, cP as NestedResults, cF as NestedValueAggregationResult, aS as OnlineBooking, dC as Page, c9 as Paging, cc as PagingMetadataV2, c1 as ParticipantNotification, b8 as ParticipantsPolicy, aK as Payment, aQ as PaymentOptions, aL as PaymentRateOneOf, bE as PhoneCall, aA as PlacementType, eE as PlacementTypeWithLiterals, b1 as PolicyDescription, dc as PricingPlanSelection, dF as Properties, dU as PropertiesChange, cV as QueryBookingFormsRequest, d4 as QueryCategoriesFilter, d3 as QueryCategoriesRequest, c$ as QueryLocationsFilter, c_ as QueryLocationsRequest, cS as QueryPoliciesRequest, d5 as QueryServicesMultiLanguageRequest, d6 as QueryServicesMultiLanguageResponse, c5 as QueryServicesRequest, cb as QueryServicesResponse, c6 as QueryV2, c7 as QueryV2PagingMethodOneOf, cn as RangeAggregation, cz as RangeAggregationResult, cj as RangeBucket, cH as RangeResult, cD as RangeResults, bg as RankingOptions, ac as RankingOrder, eg as RankingOrderWithLiterals, a9 as RateType, ed as RateTypeWithLiterals, d8 as RemovedLocationSessionsAction, d9 as RemovedLocationSessionsActionActionOptionsOneOf, ar as RequestedFields, ev as RequestedFieldsWithLiterals, b6 as ReschedulePolicy, aC as ResolutionMethod, eG as ResolutionMethodWithLiterals, bq as ResourceGroup, br as ResourceIds, bu as ResourceType, b9 as ResourcesPolicy, dp as RestoreInfo, cL as Results, bd as SaveCreditCardPolicy, co as ScalarAggregation, cI as ScalarResult, am as ScalarType, eq as ScalarTypeWithLiterals, bj as Schedule, cv as SearchDetails, ce as SearchServicesRequest, by as SeoSchema, bV as ServiceAvailabilityConstraints, ea as ServiceQuerySpec, bs as ServiceResource, bt as ServiceResourceSelectionOneOf, eb as ServiceSearchSpec, a8 as ServiceType, ec as ServiceTypeWithLiterals, e9 as ServicesQueryResult, bG as ServicesUrlsChanged, e6 as SetAddOnsForGroupRequest, bF as SetCustomSlugEvent, df as SetCustomSlugRequest, d7 as SetServiceLocationsRequest, bB as Settings, dW as SiteCloned, dV as SiteCreated, dE as SitePropertiesEvent, dD as SitePropertiesNotification, bv as Slug, ak as SortDirection, eo as SortDirectionWithLiterals, ai as SortOrder, em as SortOrderWithLiterals, aj as SortType, en as SortTypeWithLiterals, c8 as Sorting, ad as SortingMethodType, eh as SortingMethodTypeWithLiterals, dN as SpecialHourPeriod, bW as SplitInterval, bn as StaffMediaItem, bo as StaffMediaItemItemOneOf, bm as StaffMember, bp as StaffMemberDetails, be as StaffSortingPolicy, bf as StaffSortingPolicyOptionsOneOf, av as Status, ez as StatusWithLiterals, aY as StreetAddress, dP as SupportedLanguage, bA as Tag, bD as TaxableAddress, ag as TaxableAddressType, ek as TaxableAddressTypeWithLiterals, dM as TimePeriod, ae as Timing, ei as TimingWithLiterals, dR as Translation, bw as URLs, e1 as UpdateAddOnGroupRequest, bX as UpdateServiceRequest, bY as UpdateServiceResponse, dA as UserDomainInfoChangedEvent, aH as V2Category, ah as V2RequestedFields, el as V2RequestedFieldsWithLiterals, bJ as ValidateServiceRequest, bK as ValidateServiceResponse, dg as ValidateSlugRequest, cl as ValueAggregation, cm as ValueAggregationOptionsOneOf, cy as ValueAggregationResult, cG as ValueResult, cC as ValueResults, aP as VariedPayment, b7 as WaitlistPolicy, aD as WebhookIdentityType, eH as WebhookIdentityTypeWithLiterals } from './bookings-services-v2-service-services.universal-B7-Plu-S.mjs';
|
|
4
4
|
|
|
5
5
|
declare function createService$1(httpClient: HttpClient): CreateServiceSignature;
|
|
6
6
|
interface CreateServiceSignature {
|