@wix/auto_sdk_faq_question-entry 1.0.21 → 1.0.22
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 +3 -3
- package/build/cjs/index.js +9 -3
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.d.mts +3 -3
- package/build/es/index.mjs +9 -3
- package/build/es/index.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +3 -3
- package/build/internal/cjs/index.js +9 -3
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/es/index.d.mts +3 -3
- package/build/internal/es/index.mjs +9 -3
- package/build/internal/es/index.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.d.ts
CHANGED
|
@@ -134,12 +134,12 @@ declare const bulkUpdateQuestionEntry: MaybeContext<BuildRESTFunction<typeof bul
|
|
|
134
134
|
/**
|
|
135
135
|
* Triggered when a question entry is created.
|
|
136
136
|
*/
|
|
137
|
-
declare const onQuestionEntryCreated: BuildEventDefinition<typeof onQuestionEntryCreated$1
|
|
137
|
+
declare const onQuestionEntryCreated: BuildEventDefinition<typeof onQuestionEntryCreated$1> & typeof onQuestionEntryCreated$1;
|
|
138
138
|
/** */
|
|
139
|
-
declare const onQuestionEntryDeleted: BuildEventDefinition<typeof onQuestionEntryDeleted$1
|
|
139
|
+
declare const onQuestionEntryDeleted: BuildEventDefinition<typeof onQuestionEntryDeleted$1> & typeof onQuestionEntryDeleted$1;
|
|
140
140
|
/**
|
|
141
141
|
* Triggered when a question entry is updated.
|
|
142
142
|
*/
|
|
143
|
-
declare const onQuestionEntryUpdated: BuildEventDefinition<typeof onQuestionEntryUpdated$1
|
|
143
|
+
declare const onQuestionEntryUpdated: BuildEventDefinition<typeof onQuestionEntryUpdated$1> & typeof onQuestionEntryUpdated$1;
|
|
144
144
|
|
|
145
145
|
export { BulkDeleteQuestionEntriesResponse, BulkUpdateQuestionEntryOptions, BulkUpdateQuestionEntryResponse, ListQuestionEntriesOptions, ListQuestionEntriesResponse, QueryQuestionEntriesOptions, QuestionEntriesQueryBuilder, QuestionEntry, QuestionEntryCreatedEnvelope, QuestionEntryDeletedEnvelope, QuestionEntryUpdatedEnvelope, SetQuestionEntryLabelsOptions, SetQuestionEntryLabelsResponse, UpdateExtendedFieldsOptions, UpdateExtendedFieldsResponse, UpdateQuestionEntry, bulkDeleteQuestionEntries, bulkUpdateQuestionEntry, createQuestionEntry, deleteQuestionEntry, getQuestionEntry, listQuestionEntries, onQuestionEntryCreated, onQuestionEntryDeleted, onQuestionEntryUpdated, queryQuestionEntries, setQuestionEntryLabels, updateExtendedFields, updateQuestionEntry };
|
package/build/cjs/index.js
CHANGED
|
@@ -1984,9 +1984,15 @@ var bulkDeleteQuestionEntries4 = /* @__PURE__ */ (0, import_rest_modules3.create
|
|
|
1984
1984
|
var updateExtendedFields4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(updateExtendedFields3);
|
|
1985
1985
|
var setQuestionEntryLabels4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(setQuestionEntryLabels3);
|
|
1986
1986
|
var bulkUpdateQuestionEntry4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(bulkUpdateQuestionEntry3);
|
|
1987
|
-
var onQuestionEntryCreated2 = (0, import_event_definition_modules.createEventModule)(
|
|
1988
|
-
|
|
1989
|
-
|
|
1987
|
+
var onQuestionEntryCreated2 = (0, import_event_definition_modules.createEventModule)(
|
|
1988
|
+
onQuestionEntryCreated
|
|
1989
|
+
);
|
|
1990
|
+
var onQuestionEntryDeleted2 = (0, import_event_definition_modules.createEventModule)(
|
|
1991
|
+
onQuestionEntryDeleted
|
|
1992
|
+
);
|
|
1993
|
+
var onQuestionEntryUpdated2 = (0, import_event_definition_modules.createEventModule)(
|
|
1994
|
+
onQuestionEntryUpdated
|
|
1995
|
+
);
|
|
1990
1996
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1991
1997
|
0 && (module.exports = {
|
|
1992
1998
|
Alignment,
|