@wix/auto_sdk_faq_question-entry 1.0.21 → 1.0.23
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 +40 -3
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +3 -2
- package/build/cjs/index.typings.js +31 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +170 -3
- package/build/cjs/meta.js +423 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +3 -3
- package/build/es/index.mjs +40 -3
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +3 -2
- package/build/es/index.typings.mjs +31 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +170 -3
- package/build/es/meta.mjs +379 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +3 -3
- package/build/internal/cjs/index.js +40 -3
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +3 -2
- package/build/internal/cjs/index.typings.js +31 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +170 -3
- package/build/internal/cjs/meta.js +423 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +3 -3
- package/build/internal/es/index.mjs +40 -3
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +3 -2
- package/build/internal/es/index.typings.mjs +31 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +170 -3
- package/build/internal/es/meta.mjs +379 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +3 -3
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
|
@@ -287,6 +287,9 @@ function createQuestionEntry(payload) {
|
|
|
287
287
|
method: "POST",
|
|
288
288
|
methodFqn: "wix.faq.questionentry.v2.QuestionEntryService.CreateQuestionEntry",
|
|
289
289
|
packageName: PACKAGE_NAME,
|
|
290
|
+
migrationOptions: {
|
|
291
|
+
optInTransformResponse: true
|
|
292
|
+
},
|
|
290
293
|
url: resolveWixFaqQuestionentryV2QuestionEntryServiceUrl({
|
|
291
294
|
protoPath: "/v2/question-entries",
|
|
292
295
|
data: serializedData,
|
|
@@ -368,6 +371,9 @@ function getQuestionEntry(payload) {
|
|
|
368
371
|
method: "GET",
|
|
369
372
|
methodFqn: "wix.faq.questionentry.v2.QuestionEntryService.GetQuestionEntry",
|
|
370
373
|
packageName: PACKAGE_NAME,
|
|
374
|
+
migrationOptions: {
|
|
375
|
+
optInTransformResponse: true
|
|
376
|
+
},
|
|
371
377
|
url: resolveWixFaqQuestionentryV2QuestionEntryServiceUrl({
|
|
372
378
|
protoPath: "/v2/question-entries/{questionEntryId}",
|
|
373
379
|
data: payload,
|
|
@@ -506,6 +512,9 @@ function updateQuestionEntry(payload) {
|
|
|
506
512
|
method: "PATCH",
|
|
507
513
|
methodFqn: "wix.faq.questionentry.v2.QuestionEntryService.UpdateQuestionEntry",
|
|
508
514
|
packageName: PACKAGE_NAME,
|
|
515
|
+
migrationOptions: {
|
|
516
|
+
optInTransformResponse: true
|
|
517
|
+
},
|
|
509
518
|
url: resolveWixFaqQuestionentryV2QuestionEntryServiceUrl({
|
|
510
519
|
protoPath: "/v2/question-entries/{questionEntry.id}",
|
|
511
520
|
data: serializedData,
|
|
@@ -587,6 +596,9 @@ function deleteQuestionEntry(payload) {
|
|
|
587
596
|
method: "DELETE",
|
|
588
597
|
methodFqn: "wix.faq.questionentry.v2.QuestionEntryService.DeleteQuestionEntry",
|
|
589
598
|
packageName: PACKAGE_NAME,
|
|
599
|
+
migrationOptions: {
|
|
600
|
+
optInTransformResponse: true
|
|
601
|
+
},
|
|
590
602
|
url: resolveWixFaqQuestionentryV2QuestionEntryServiceUrl({
|
|
591
603
|
protoPath: "/v2/question-entries/{questionEntryId}",
|
|
592
604
|
data: payload,
|
|
@@ -605,6 +617,9 @@ function listQuestionEntries(payload) {
|
|
|
605
617
|
method: "GET",
|
|
606
618
|
methodFqn: "wix.faq.questionentry.v2.QuestionEntryService.ListQuestionEntries",
|
|
607
619
|
packageName: PACKAGE_NAME,
|
|
620
|
+
migrationOptions: {
|
|
621
|
+
optInTransformResponse: true
|
|
622
|
+
},
|
|
608
623
|
url: resolveWixFaqQuestionentryV2QuestionEntryServiceUrl({
|
|
609
624
|
protoPath: "/v2/question-entries",
|
|
610
625
|
data: payload,
|
|
@@ -686,6 +701,9 @@ function queryQuestionEntries(payload) {
|
|
|
686
701
|
method: "POST",
|
|
687
702
|
methodFqn: "wix.faq.questionentry.v2.QuestionEntryService.QueryQuestionEntries",
|
|
688
703
|
packageName: PACKAGE_NAME,
|
|
704
|
+
migrationOptions: {
|
|
705
|
+
optInTransformResponse: true
|
|
706
|
+
},
|
|
689
707
|
url: resolveWixFaqQuestionentryV2QuestionEntryServiceUrl({
|
|
690
708
|
protoPath: "/v2/question-entries/query",
|
|
691
709
|
data: payload,
|
|
@@ -767,6 +785,9 @@ function bulkDeleteQuestionEntries(payload) {
|
|
|
767
785
|
method: "POST",
|
|
768
786
|
methodFqn: "wix.faq.questionentry.v2.QuestionEntryService.BulkDeleteQuestionEntries",
|
|
769
787
|
packageName: PACKAGE_NAME,
|
|
788
|
+
migrationOptions: {
|
|
789
|
+
optInTransformResponse: true
|
|
790
|
+
},
|
|
770
791
|
url: resolveWixFaqQuestionentryV2QuestionEntryServiceUrl({
|
|
771
792
|
protoPath: "/v2/bulk/question-entries/delete",
|
|
772
793
|
data: payload,
|
|
@@ -785,6 +806,9 @@ function updateExtendedFields(payload) {
|
|
|
785
806
|
method: "POST",
|
|
786
807
|
methodFqn: "wix.faq.questionentry.v2.QuestionEntryService.UpdateExtendedFields",
|
|
787
808
|
packageName: PACKAGE_NAME,
|
|
809
|
+
migrationOptions: {
|
|
810
|
+
optInTransformResponse: true
|
|
811
|
+
},
|
|
788
812
|
url: resolveWixFaqQuestionentryV2QuestionEntryServiceUrl({
|
|
789
813
|
protoPath: "/v2/question-entries/{id}/update-extended-fields",
|
|
790
814
|
data: payload,
|
|
@@ -872,6 +896,9 @@ function setQuestionEntryLabels(payload) {
|
|
|
872
896
|
method: "PATCH",
|
|
873
897
|
methodFqn: "wix.faq.questionentry.v2.QuestionEntryService.SetQuestionEntryLabels",
|
|
874
898
|
packageName: PACKAGE_NAME,
|
|
899
|
+
migrationOptions: {
|
|
900
|
+
optInTransformResponse: true
|
|
901
|
+
},
|
|
875
902
|
url: resolveWixFaqQuestionentryV2QuestionEntryServiceUrl({
|
|
876
903
|
protoPath: "/v2/question-entries/{questionEntryId}/labels",
|
|
877
904
|
data: serializedData,
|
|
@@ -1024,6 +1051,9 @@ function bulkUpdateQuestionEntry(payload) {
|
|
|
1024
1051
|
method: "POST",
|
|
1025
1052
|
methodFqn: "wix.faq.questionentry.v2.QuestionEntryService.BulkUpdateQuestionEntry",
|
|
1026
1053
|
packageName: PACKAGE_NAME,
|
|
1054
|
+
migrationOptions: {
|
|
1055
|
+
optInTransformResponse: true
|
|
1056
|
+
},
|
|
1027
1057
|
url: resolveWixFaqQuestionentryV2QuestionEntryServiceUrl({
|
|
1028
1058
|
protoPath: "/v2/bulk/question-entries/update",
|
|
1029
1059
|
data: serializedData,
|
|
@@ -1238,6 +1268,7 @@ var GIFType = /* @__PURE__ */ ((GIFType2) => {
|
|
|
1238
1268
|
var Source = /* @__PURE__ */ ((Source2) => {
|
|
1239
1269
|
Source2["HTML"] = "HTML";
|
|
1240
1270
|
Source2["ADSENSE"] = "ADSENSE";
|
|
1271
|
+
Source2["AI"] = "AI";
|
|
1241
1272
|
return Source2;
|
|
1242
1273
|
})(Source || {});
|
|
1243
1274
|
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
@@ -1984,9 +2015,15 @@ var bulkDeleteQuestionEntries4 = /* @__PURE__ */ (0, import_rest_modules3.create
|
|
|
1984
2015
|
var updateExtendedFields4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(updateExtendedFields3);
|
|
1985
2016
|
var setQuestionEntryLabels4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(setQuestionEntryLabels3);
|
|
1986
2017
|
var bulkUpdateQuestionEntry4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(bulkUpdateQuestionEntry3);
|
|
1987
|
-
var onQuestionEntryCreated2 = (0, import_event_definition_modules.createEventModule)(
|
|
1988
|
-
|
|
1989
|
-
|
|
2018
|
+
var onQuestionEntryCreated2 = (0, import_event_definition_modules.createEventModule)(
|
|
2019
|
+
onQuestionEntryCreated
|
|
2020
|
+
);
|
|
2021
|
+
var onQuestionEntryDeleted2 = (0, import_event_definition_modules.createEventModule)(
|
|
2022
|
+
onQuestionEntryDeleted
|
|
2023
|
+
);
|
|
2024
|
+
var onQuestionEntryUpdated2 = (0, import_event_definition_modules.createEventModule)(
|
|
2025
|
+
onQuestionEntryUpdated
|
|
2026
|
+
);
|
|
1990
2027
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1991
2028
|
0 && (module.exports = {
|
|
1992
2029
|
Alignment,
|