@wix/auto_sdk_faq_question-entry 1.0.22 → 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.js +31 -0
- 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.mjs +31 -0
- 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.js +31 -0
- 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.mjs +31 -0
- 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.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) => {
|