@wix/auto_sdk_table-reservations_experiences 1.0.7 → 1.0.9
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 +10 -4
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +10 -4
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +10 -4
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +10 -4
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +10 -4
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +10 -4
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +10 -4
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +10 -4
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export { ActionEvent, Address, AddressHint, Aggregation, AggregationData, Aggreg
|
|
|
5
5
|
declare function createExperience$1(httpClient: HttpClient): CreateExperienceSignature;
|
|
6
6
|
interface CreateExperienceSignature {
|
|
7
7
|
/**
|
|
8
|
-
* Creates an
|
|
8
|
+
* Creates an experience.
|
|
9
9
|
* @param - Experience to create.
|
|
10
10
|
* @returns Created experience.
|
|
11
11
|
*/
|
|
@@ -73,11 +73,17 @@ declare const updateExperience: MaybeContext<BuildRESTFunction<typeof updateExpe
|
|
|
73
73
|
declare const queryExperiences: MaybeContext<BuildRESTFunction<typeof queryExperiences$1> & typeof queryExperiences$1>;
|
|
74
74
|
declare const bulkUpdateExperienceTags: MaybeContext<BuildRESTFunction<typeof bulkUpdateExperienceTags$1> & typeof bulkUpdateExperienceTags$1>;
|
|
75
75
|
declare const bulkUpdateExperienceTagsByFilter: MaybeContext<BuildRESTFunction<typeof bulkUpdateExperienceTagsByFilter$1> & typeof bulkUpdateExperienceTagsByFilter$1>;
|
|
76
|
-
/**
|
|
76
|
+
/**
|
|
77
|
+
* Triggered when an experience is created.
|
|
78
|
+
*/
|
|
77
79
|
declare const onExperienceCreated: BuildEventDefinition<typeof onExperienceCreated$1> & typeof onExperienceCreated$1;
|
|
78
|
-
/**
|
|
80
|
+
/**
|
|
81
|
+
* Triggered when a tag on an experience is modified.
|
|
82
|
+
*/
|
|
79
83
|
declare const onExperienceTagsModified: BuildEventDefinition<typeof onExperienceTagsModified$1> & typeof onExperienceTagsModified$1;
|
|
80
|
-
/**
|
|
84
|
+
/**
|
|
85
|
+
* Triggered when an experience is updated.
|
|
86
|
+
*/
|
|
81
87
|
declare const onExperienceUpdated: BuildEventDefinition<typeof onExperienceUpdated$1> & typeof onExperienceUpdated$1;
|
|
82
88
|
|
|
83
89
|
export { BulkUpdateExperienceTagsApplicationErrors, BulkUpdateExperienceTagsByFilterApplicationErrors, BulkUpdateExperienceTagsByFilterOptions, BulkUpdateExperienceTagsByFilterResponse, BulkUpdateExperienceTagsOptions, BulkUpdateExperienceTagsResponse, Experience, ExperienceCreatedEnvelope, ExperienceTagsModifiedEnvelope, ExperienceUpdatedEnvelope, ExperiencesQueryBuilder, UpdateExperience, bulkUpdateExperienceTags, bulkUpdateExperienceTagsByFilter, createExperience, getExperience, onExperienceCreated, onExperienceTagsModified, onExperienceUpdated, queryExperiences, updateExperience };
|