@wix/auto_sdk_table-reservations_experiences 1.0.28 → 1.0.30
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/index.d.ts +6 -4
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +12 -4
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/{table-reservations-v1-experience-experiences.universal-BODKK8eH.d.ts → table-reservations-v1-experience-experiences.universal-zYIhPPT7.d.ts} +16 -6
- package/build/es/index.d.mts +6 -4
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +12 -4
- package/build/es/meta.mjs.map +1 -1
- package/build/es/{table-reservations-v1-experience-experiences.universal-BODKK8eH.d.mts → table-reservations-v1-experience-experiences.universal-zYIhPPT7.d.mts} +16 -6
- package/build/internal/cjs/index.d.ts +6 -4
- 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.map +1 -1
- package/build/internal/cjs/meta.d.ts +12 -4
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/{table-reservations-v1-experience-experiences.universal-BODKK8eH.d.ts → table-reservations-v1-experience-experiences.universal-zYIhPPT7.d.ts} +16 -6
- package/build/internal/es/index.d.mts +6 -4
- 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.map +1 -1
- package/build/internal/es/meta.d.mts +12 -4
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/{table-reservations-v1-experience-experiences.universal-BODKK8eH.d.mts → table-reservations-v1-experience-experiences.universal-zYIhPPT7.d.mts} +16 -6
- package/package.json +4 -4
|
@@ -2280,12 +2280,12 @@ interface DisplayInfo {
|
|
|
2280
2280
|
/**
|
|
2281
2281
|
* Experience name.
|
|
2282
2282
|
* @minLength 1
|
|
2283
|
-
* @maxLength
|
|
2283
|
+
* @maxLength 120
|
|
2284
2284
|
*/
|
|
2285
2285
|
name?: string | null;
|
|
2286
2286
|
/**
|
|
2287
2287
|
* Brief description of the experience.
|
|
2288
|
-
* @maxLength
|
|
2288
|
+
* @maxLength 300
|
|
2289
2289
|
*/
|
|
2290
2290
|
shortDescription?: string | null;
|
|
2291
2291
|
/** Cover image for the experience. */
|
|
@@ -2514,6 +2514,14 @@ interface InvalidateCache extends InvalidateCacheGetByOneOf {
|
|
|
2514
2514
|
/** Is local DS */
|
|
2515
2515
|
localDc?: boolean;
|
|
2516
2516
|
hardPurge?: boolean;
|
|
2517
|
+
/**
|
|
2518
|
+
* Optional caller-provided ID for tracking this invalidation through the system.
|
|
2519
|
+
* When set, the corresponding CDN purge completion event will include this ID,
|
|
2520
|
+
* allowing you to confirm when the invalidation has fully propagated.
|
|
2521
|
+
* Example: generate a UUID, pass it here, and later match it in the CDN purge completion event.
|
|
2522
|
+
* @maxLength 256
|
|
2523
|
+
*/
|
|
2524
|
+
correlationId?: string | null;
|
|
2517
2525
|
}
|
|
2518
2526
|
/** @oneof */
|
|
2519
2527
|
interface InvalidateCacheGetByOneOf {
|
|
@@ -2629,7 +2637,7 @@ interface GetExperienceResponse {
|
|
|
2629
2637
|
}
|
|
2630
2638
|
interface GetExperienceBySlugRequest {
|
|
2631
2639
|
/**
|
|
2632
|
-
*
|
|
2640
|
+
* Slug of the experience to retrieve.
|
|
2633
2641
|
* @maxLength 200
|
|
2634
2642
|
*/
|
|
2635
2643
|
slug: string;
|
|
@@ -3947,8 +3955,10 @@ declare function createExperience(experience: NonNullablePaths<Experience, `conf
|
|
|
3947
3955
|
*/
|
|
3948
3956
|
declare function getExperience(experienceId: string): Promise<NonNullablePaths<Experience, `configuration.paymentPolicy.paymentPolicyType` | `configuration.onlineReservations.minimumReservationNotice.unit` | `configuration.onlineReservations.approval.mode` | `configuration.onlineReservations.businessSchedule.entries` | `configuration.onlineReservations.businessSchedule.entries.${number}.recurrence` | `configuration.reservationForm.customFieldDefinitions` | `tags.privateTags.tagIds` | `seoSettings.seoSchema.tags` | `seoSettings.seoSchema.tags.${number}.type` | `seoSettings.seoSchema.tags.${number}.children` | `seoSettings.seoSchema.tags.${number}.custom` | `seoSettings.seoSchema.tags.${number}.disabled` | `seoSettings.seoSchema.settings.preventAutoRedirect` | `seoSettings.seoSchema.settings.keywords` | `seoSettings.seoSchema.settings.keywords.${number}.term` | `seoSettings.seoSchema.settings.keywords.${number}.isMain`, 7>>;
|
|
3949
3957
|
/**
|
|
3950
|
-
* Retrieves an experience.
|
|
3951
|
-
*
|
|
3958
|
+
* Retrieves an experience by slug.
|
|
3959
|
+
*
|
|
3960
|
+
* The slug is a URL-friendly identifier for the experience page, derived from the experience display name in kebab-case format. For example, "wine-tasting-event".
|
|
3961
|
+
* @param slug - Slug of the experience to retrieve.
|
|
3952
3962
|
* @public
|
|
3953
3963
|
* @documentationMaturity preview
|
|
3954
3964
|
* @requiredField slug
|
|
@@ -4207,7 +4217,7 @@ type ExperienceQuery = {
|
|
|
4207
4217
|
declare const utils: {
|
|
4208
4218
|
QueryBuilder: () => _wix_sdk_types.QueryBuilder<Experience, ExperienceQuerySpec, ExperienceQuery>;
|
|
4209
4219
|
Filter: _wix_sdk_types.FilterFactory<Experience, ExperienceQuerySpec>;
|
|
4210
|
-
Sort: _wix_sdk_types.SortFactory<ExperienceQuerySpec>;
|
|
4220
|
+
Sort: _wix_sdk_types.SortFactory<ExperienceQuerySpec>;
|
|
4211
4221
|
};
|
|
4212
4222
|
interface ExperienceSearchSpec extends SearchSpec {
|
|
4213
4223
|
searchable: [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/auto_sdk_table-reservations_experiences",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.30",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"service-plugins"
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@wix/sdk-runtime": "^1.0.
|
|
33
|
-
"@wix/sdk-types": "^1.17.
|
|
32
|
+
"@wix/sdk-runtime": "^1.0.8",
|
|
33
|
+
"@wix/sdk-types": "^1.17.4"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"tsup": "^8.4.0",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"fqdn": "wix.table_reservations.v1.experience"
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
|
-
"falconPackageHash": "
|
|
53
|
+
"falconPackageHash": "3ead91e01b1b7cff70e9549f7af79cc2315478d12bbc72b658067138"
|
|
54
54
|
}
|