@wix/auto_sdk_faq_question-entry 1.0.1 → 1.0.2
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/src/faq-question-entry-v2-question-entry-question-entry.types.d.ts +210 -48
- package/build/cjs/src/faq-question-entry-v2-question-entry-question-entry.types.js.map +1 -1
- package/build/cjs/src/faq-question-entry-v2-question-entry-question-entry.universal.d.ts +276 -62
- package/build/cjs/src/faq-question-entry-v2-question-entry-question-entry.universal.js.map +1 -1
- package/build/es/src/faq-question-entry-v2-question-entry-question-entry.types.d.ts +210 -48
- package/build/es/src/faq-question-entry-v2-question-entry-question-entry.types.js.map +1 -1
- package/build/es/src/faq-question-entry-v2-question-entry-question-entry.universal.d.ts +276 -62
- package/build/es/src/faq-question-entry-v2-question-entry-question-entry.universal.js.map +1 -1
- package/build/internal/cjs/src/faq-question-entry-v2-question-entry-question-entry.types.d.ts +210 -48
- package/build/internal/cjs/src/faq-question-entry-v2-question-entry-question-entry.types.js.map +1 -1
- package/build/internal/cjs/src/faq-question-entry-v2-question-entry-question-entry.universal.d.ts +276 -62
- package/build/internal/cjs/src/faq-question-entry-v2-question-entry-question-entry.universal.js.map +1 -1
- package/build/internal/es/src/faq-question-entry-v2-question-entry-question-entry.types.d.ts +210 -48
- package/build/internal/es/src/faq-question-entry-v2-question-entry-question-entry.types.js.map +1 -1
- package/build/internal/es/src/faq-question-entry-v2-question-entry-question-entry.universal.d.ts +276 -62
- package/build/internal/es/src/faq-question-entry-v2-question-entry-question-entry.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,12 +1,21 @@
|
|
|
1
1
|
export interface QuestionEntry extends QuestionEntryAnswerOneOf {
|
|
2
|
-
/**
|
|
2
|
+
/**
|
|
3
|
+
* draft.js text.
|
|
4
|
+
* @minLength 1
|
|
5
|
+
* @maxLength 100000
|
|
6
|
+
*/
|
|
3
7
|
draftjs?: string;
|
|
4
8
|
/** rich content text. */
|
|
5
9
|
richContent?: RichContent;
|
|
6
|
-
/**
|
|
10
|
+
/**
|
|
11
|
+
* plain text.
|
|
12
|
+
* @minLength 1
|
|
13
|
+
* @maxLength 10000
|
|
14
|
+
*/
|
|
7
15
|
plainText?: string;
|
|
8
16
|
/**
|
|
9
17
|
* QuestionEntry ID.
|
|
18
|
+
* @format GUID
|
|
10
19
|
* @readonly
|
|
11
20
|
*/
|
|
12
21
|
id?: string | null;
|
|
@@ -29,24 +38,36 @@ export interface QuestionEntry extends QuestionEntryAnswerOneOf {
|
|
|
29
38
|
* @readonly
|
|
30
39
|
*/
|
|
31
40
|
updatedDate?: Date | null;
|
|
32
|
-
/**
|
|
41
|
+
/**
|
|
42
|
+
* QuestionEntry title.
|
|
43
|
+
* @maxLength 1000
|
|
44
|
+
*/
|
|
33
45
|
question?: string | null;
|
|
34
|
-
/**
|
|
46
|
+
/**
|
|
47
|
+
* List of up to 100 labels for this question entry.
|
|
48
|
+
* @maxSize 100
|
|
49
|
+
*/
|
|
35
50
|
labels?: Label[];
|
|
36
51
|
/** Order of question out of all questions (and not only in the category). */
|
|
37
52
|
sortOrder?: number | null;
|
|
38
53
|
/** Question's visibility status within the site. */
|
|
39
54
|
status?: QuestionStatus;
|
|
40
|
-
/**
|
|
55
|
+
/**
|
|
56
|
+
* ID of the category to which this question belongs.
|
|
57
|
+
* @minLength 1
|
|
58
|
+
* @maxLength 50
|
|
59
|
+
*/
|
|
41
60
|
categoryId?: string | null;
|
|
42
61
|
/**
|
|
43
62
|
* FURL slug for this question generated from the question entry's text.
|
|
44
63
|
* @readonly
|
|
64
|
+
* @maxLength 100
|
|
45
65
|
*/
|
|
46
66
|
slug?: string | null;
|
|
47
67
|
/**
|
|
48
68
|
* Unique question URL.
|
|
49
69
|
* @readonly
|
|
70
|
+
* @format WEB_URL
|
|
50
71
|
*/
|
|
51
72
|
shareLink?: string | null;
|
|
52
73
|
/** Data Extensions */
|
|
@@ -54,11 +75,19 @@ export interface QuestionEntry extends QuestionEntryAnswerOneOf {
|
|
|
54
75
|
}
|
|
55
76
|
/** @oneof */
|
|
56
77
|
export interface QuestionEntryAnswerOneOf {
|
|
57
|
-
/**
|
|
78
|
+
/**
|
|
79
|
+
* draft.js text.
|
|
80
|
+
* @minLength 1
|
|
81
|
+
* @maxLength 100000
|
|
82
|
+
*/
|
|
58
83
|
draftjs?: string;
|
|
59
84
|
/** rich content text. */
|
|
60
85
|
richContent?: RichContent;
|
|
61
|
-
/**
|
|
86
|
+
/**
|
|
87
|
+
* plain text.
|
|
88
|
+
* @minLength 1
|
|
89
|
+
* @maxLength 10000
|
|
90
|
+
*/
|
|
62
91
|
plainText?: string;
|
|
63
92
|
}
|
|
64
93
|
export interface RichContent {
|
|
@@ -659,11 +688,20 @@ export interface GIFData {
|
|
|
659
688
|
gifType?: GIFType;
|
|
660
689
|
}
|
|
661
690
|
export interface GIF {
|
|
662
|
-
/**
|
|
691
|
+
/**
|
|
692
|
+
* GIF format URL.
|
|
693
|
+
* @format WEB_URL
|
|
694
|
+
*/
|
|
663
695
|
gif?: string | null;
|
|
664
|
-
/**
|
|
696
|
+
/**
|
|
697
|
+
* MP4 format URL.
|
|
698
|
+
* @format WEB_URL
|
|
699
|
+
*/
|
|
665
700
|
mp4?: string | null;
|
|
666
|
-
/**
|
|
701
|
+
/**
|
|
702
|
+
* Thumbnail URL.
|
|
703
|
+
* @format WEB_URL
|
|
704
|
+
*/
|
|
667
705
|
still?: string | null;
|
|
668
706
|
}
|
|
669
707
|
export declare enum GIFType {
|
|
@@ -737,7 +775,10 @@ export interface ImageData {
|
|
|
737
775
|
export interface StylesBorder {
|
|
738
776
|
/** Border width in pixels. */
|
|
739
777
|
width?: number | null;
|
|
740
|
-
/**
|
|
778
|
+
/**
|
|
779
|
+
* Border color as a hexadecimal value.
|
|
780
|
+
* @format COLOR_HEX
|
|
781
|
+
*/
|
|
741
782
|
color?: string | null;
|
|
742
783
|
/** Border radius in pixels. */
|
|
743
784
|
radius?: number | null;
|
|
@@ -891,13 +932,22 @@ export declare enum BackgroundType {
|
|
|
891
932
|
export interface Gradient {
|
|
892
933
|
/** The gradient angle in degrees. */
|
|
893
934
|
angle?: number | null;
|
|
894
|
-
/**
|
|
935
|
+
/**
|
|
936
|
+
* The start color as a hexademical value.
|
|
937
|
+
* @format COLOR_HEX
|
|
938
|
+
*/
|
|
895
939
|
startColor?: string | null;
|
|
896
|
-
/**
|
|
940
|
+
/**
|
|
941
|
+
* The end color as a hexademical value.
|
|
942
|
+
* @format COLOR_HEX
|
|
943
|
+
*/
|
|
897
944
|
lastColor?: string | null;
|
|
898
945
|
}
|
|
899
946
|
export interface Background extends BackgroundBackgroundOneOf {
|
|
900
|
-
/**
|
|
947
|
+
/**
|
|
948
|
+
* The background color as a hexademical value.
|
|
949
|
+
* @format COLOR_HEX
|
|
950
|
+
*/
|
|
901
951
|
color?: string | null;
|
|
902
952
|
/** An image to use for the background. */
|
|
903
953
|
image?: Media;
|
|
@@ -908,7 +958,10 @@ export interface Background extends BackgroundBackgroundOneOf {
|
|
|
908
958
|
}
|
|
909
959
|
/** @oneof */
|
|
910
960
|
export interface BackgroundBackgroundOneOf {
|
|
911
|
-
/**
|
|
961
|
+
/**
|
|
962
|
+
* The background color as a hexademical value.
|
|
963
|
+
* @format COLOR_HEX
|
|
964
|
+
*/
|
|
912
965
|
color?: string | null;
|
|
913
966
|
/** An image to use for the background. */
|
|
914
967
|
image?: Media;
|
|
@@ -1220,17 +1273,32 @@ export declare enum VerticalAlignment {
|
|
|
1220
1273
|
export interface CellStyle {
|
|
1221
1274
|
/** Vertical alignment for the cell's text. */
|
|
1222
1275
|
verticalAlignment?: VerticalAlignment;
|
|
1223
|
-
/**
|
|
1276
|
+
/**
|
|
1277
|
+
* Cell background color as a hexadecimal value.
|
|
1278
|
+
* @format COLOR_HEX
|
|
1279
|
+
*/
|
|
1224
1280
|
backgroundColor?: string | null;
|
|
1225
1281
|
}
|
|
1226
1282
|
export interface BorderColors {
|
|
1227
|
-
/**
|
|
1283
|
+
/**
|
|
1284
|
+
* Left border color as a hexadecimal value.
|
|
1285
|
+
* @format COLOR_HEX
|
|
1286
|
+
*/
|
|
1228
1287
|
left?: string | null;
|
|
1229
|
-
/**
|
|
1288
|
+
/**
|
|
1289
|
+
* Right border color as a hexadecimal value.
|
|
1290
|
+
* @format COLOR_HEX
|
|
1291
|
+
*/
|
|
1230
1292
|
right?: string | null;
|
|
1231
|
-
/**
|
|
1293
|
+
/**
|
|
1294
|
+
* Top border color as a hexadecimal value.
|
|
1295
|
+
* @format COLOR_HEX
|
|
1296
|
+
*/
|
|
1232
1297
|
top?: string | null;
|
|
1233
|
-
/**
|
|
1298
|
+
/**
|
|
1299
|
+
* Bottom border color as a hexadecimal value.
|
|
1300
|
+
* @format COLOR_HEX
|
|
1301
|
+
*/
|
|
1234
1302
|
bottom?: string | null;
|
|
1235
1303
|
}
|
|
1236
1304
|
/**
|
|
@@ -1340,7 +1408,11 @@ export interface TextNodeStyle {
|
|
|
1340
1408
|
}
|
|
1341
1409
|
/** Labels are additional groupings of question entries for organizing FAQ questions in specific contexts. */
|
|
1342
1410
|
export interface Label {
|
|
1343
|
-
/**
|
|
1411
|
+
/**
|
|
1412
|
+
* Label title.
|
|
1413
|
+
* @minLength 1
|
|
1414
|
+
* @maxLength 36
|
|
1415
|
+
*/
|
|
1344
1416
|
title?: string;
|
|
1345
1417
|
/** Order of question entry within label. */
|
|
1346
1418
|
sortOrder?: number | null;
|
|
@@ -1370,7 +1442,10 @@ export interface CreateQuestionEntryResponse {
|
|
|
1370
1442
|
questionEntry?: QuestionEntry;
|
|
1371
1443
|
}
|
|
1372
1444
|
export interface GetQuestionEntryRequest {
|
|
1373
|
-
/**
|
|
1445
|
+
/**
|
|
1446
|
+
* ID of the QuestionEntry to retrieve.
|
|
1447
|
+
* @format GUID
|
|
1448
|
+
*/
|
|
1374
1449
|
questionEntryId: string;
|
|
1375
1450
|
}
|
|
1376
1451
|
export interface GetQuestionEntryResponse {
|
|
@@ -1386,33 +1461,55 @@ export interface UpdateQuestionEntryResponse {
|
|
|
1386
1461
|
questionEntry?: QuestionEntry;
|
|
1387
1462
|
}
|
|
1388
1463
|
export interface DeleteQuestionEntryRequest {
|
|
1389
|
-
/**
|
|
1464
|
+
/**
|
|
1465
|
+
* Id of the QuestionEntry to delete.
|
|
1466
|
+
* @format GUID
|
|
1467
|
+
*/
|
|
1390
1468
|
questionEntryId: string;
|
|
1391
1469
|
}
|
|
1392
1470
|
export interface DeleteQuestionEntryResponse {
|
|
1393
1471
|
}
|
|
1394
1472
|
export interface ListQuestionEntriesRequest {
|
|
1395
|
-
/**
|
|
1473
|
+
/**
|
|
1474
|
+
* Category ID.
|
|
1475
|
+
* @minLength 1
|
|
1476
|
+
* @maxLength 50
|
|
1477
|
+
*/
|
|
1396
1478
|
categoryId?: string | null;
|
|
1397
|
-
/**
|
|
1479
|
+
/**
|
|
1480
|
+
* List of question entry IDs.
|
|
1481
|
+
* @format GUID
|
|
1482
|
+
* @maxSize 100
|
|
1483
|
+
*/
|
|
1398
1484
|
questionEntryIds?: string[];
|
|
1399
|
-
/**
|
|
1485
|
+
/**
|
|
1486
|
+
* Question label.
|
|
1487
|
+
* @minLength 1
|
|
1488
|
+
* @maxLength 36
|
|
1489
|
+
*/
|
|
1400
1490
|
questionEntryLabel?: string | null;
|
|
1401
1491
|
/** Not needed if `question_entry_id`s are provided in filter. */
|
|
1402
1492
|
paging?: CursorPaging;
|
|
1403
1493
|
/** Text output format. */
|
|
1404
1494
|
contentFormat?: ContentFormat;
|
|
1405
|
-
/**
|
|
1495
|
+
/**
|
|
1496
|
+
* Include fields inside question entries.
|
|
1497
|
+
* @maxSize 100
|
|
1498
|
+
*/
|
|
1406
1499
|
fieldSet?: FieldSet[];
|
|
1407
1500
|
}
|
|
1408
1501
|
export interface CursorPaging {
|
|
1409
|
-
/**
|
|
1502
|
+
/**
|
|
1503
|
+
* Maximum number of items to return in the results.
|
|
1504
|
+
* @max 100
|
|
1505
|
+
*/
|
|
1410
1506
|
limit?: number | null;
|
|
1411
1507
|
/**
|
|
1412
1508
|
* Pointer to the next or previous page in the list of results.
|
|
1413
1509
|
*
|
|
1414
1510
|
* Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
|
|
1415
1511
|
* Not relevant for the first request.
|
|
1512
|
+
* @maxLength 16000
|
|
1416
1513
|
*/
|
|
1417
1514
|
cursor?: string | null;
|
|
1418
1515
|
}
|
|
@@ -1445,9 +1542,15 @@ export interface PagingMetadataV2 {
|
|
|
1445
1542
|
cursors?: Cursors;
|
|
1446
1543
|
}
|
|
1447
1544
|
export interface Cursors {
|
|
1448
|
-
/**
|
|
1545
|
+
/**
|
|
1546
|
+
* Cursor string pointing to the next page in the list of results.
|
|
1547
|
+
* @maxLength 16000
|
|
1548
|
+
*/
|
|
1449
1549
|
next?: string | null;
|
|
1450
|
-
/**
|
|
1550
|
+
/**
|
|
1551
|
+
* Cursor pointing to the previous page in the list of results.
|
|
1552
|
+
* @maxLength 16000
|
|
1553
|
+
*/
|
|
1451
1554
|
prev?: string | null;
|
|
1452
1555
|
}
|
|
1453
1556
|
export interface QueryQuestionEntriesRequest {
|
|
@@ -1455,7 +1558,10 @@ export interface QueryQuestionEntriesRequest {
|
|
|
1455
1558
|
query?: CursorQuery;
|
|
1456
1559
|
/** Text output format. */
|
|
1457
1560
|
contentFormat?: QueryQuestionEntriesRequestContentFormat;
|
|
1458
|
-
/**
|
|
1561
|
+
/**
|
|
1562
|
+
* Include fields inside question entries.
|
|
1563
|
+
* @maxSize 100
|
|
1564
|
+
*/
|
|
1459
1565
|
fieldSet?: QueryQuestionEntriesRequestFieldSet[];
|
|
1460
1566
|
}
|
|
1461
1567
|
export interface CursorQuery extends CursorQueryPagingMethodOneOf {
|
|
@@ -1475,6 +1581,7 @@ export interface CursorQuery extends CursorQueryPagingMethodOneOf {
|
|
|
1475
1581
|
* Sort object.
|
|
1476
1582
|
*
|
|
1477
1583
|
* Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
|
|
1584
|
+
* @maxSize 5
|
|
1478
1585
|
*/
|
|
1479
1586
|
sort?: Sorting[];
|
|
1480
1587
|
}
|
|
@@ -1488,7 +1595,10 @@ export interface CursorQueryPagingMethodOneOf {
|
|
|
1488
1595
|
cursorPaging?: CursorPaging;
|
|
1489
1596
|
}
|
|
1490
1597
|
export interface Sorting {
|
|
1491
|
-
/**
|
|
1598
|
+
/**
|
|
1599
|
+
* Name of the field to sort by.
|
|
1600
|
+
* @maxLength 512
|
|
1601
|
+
*/
|
|
1492
1602
|
fieldName?: string;
|
|
1493
1603
|
/** Sort order. */
|
|
1494
1604
|
order?: SortOrder;
|
|
@@ -1527,11 +1637,20 @@ export interface CursorPagingMetadata {
|
|
|
1527
1637
|
hasNext?: boolean | null;
|
|
1528
1638
|
}
|
|
1529
1639
|
export interface BulkDeleteQuestionEntryRequest {
|
|
1530
|
-
/**
|
|
1640
|
+
/**
|
|
1641
|
+
* QuestionEntry ids to be deleted.
|
|
1642
|
+
* @minSize 1
|
|
1643
|
+
* @maxSize 100
|
|
1644
|
+
* @format GUID
|
|
1645
|
+
*/
|
|
1531
1646
|
questionEntryIds: string[];
|
|
1532
1647
|
}
|
|
1533
1648
|
export interface BulkDeleteQuestionEntryResponse {
|
|
1534
|
-
/**
|
|
1649
|
+
/**
|
|
1650
|
+
* Information about successful action or error for failure.
|
|
1651
|
+
* @minSize 1
|
|
1652
|
+
* @maxSize 100
|
|
1653
|
+
*/
|
|
1535
1654
|
itemMetadata?: ItemMetadata[];
|
|
1536
1655
|
/** Holds metadata of the entire bulk delete operation */
|
|
1537
1656
|
bulkActionMetadata?: BulkActionMetadata;
|
|
@@ -1575,9 +1694,15 @@ export interface UpdateExtendedFieldsResponse {
|
|
|
1575
1694
|
questionEntry?: QuestionEntry;
|
|
1576
1695
|
}
|
|
1577
1696
|
export interface SetQuestionEntryLabelsRequest {
|
|
1578
|
-
/**
|
|
1697
|
+
/**
|
|
1698
|
+
* ID of question entry to add labels to.
|
|
1699
|
+
* @format GUID
|
|
1700
|
+
*/
|
|
1579
1701
|
questionEntryId: string;
|
|
1580
|
-
/**
|
|
1702
|
+
/**
|
|
1703
|
+
* Labels to add to the question entry.
|
|
1704
|
+
* @maxSize 100
|
|
1705
|
+
*/
|
|
1581
1706
|
labels?: Label[];
|
|
1582
1707
|
}
|
|
1583
1708
|
export interface SetQuestionEntryLabelsResponse {
|
|
@@ -1585,7 +1710,11 @@ export interface SetQuestionEntryLabelsResponse {
|
|
|
1585
1710
|
questionEntry?: QuestionEntry;
|
|
1586
1711
|
}
|
|
1587
1712
|
export interface BulkUpdateQuestionEntryRequest {
|
|
1588
|
-
/**
|
|
1713
|
+
/**
|
|
1714
|
+
* List of question entry IDs to change status for.
|
|
1715
|
+
* @minSize 1
|
|
1716
|
+
* @maxSize 100
|
|
1717
|
+
*/
|
|
1589
1718
|
questionEntries?: MaskedQuestionEntry[];
|
|
1590
1719
|
/** set to `true` if you wish to receive back the updated entities in the response */
|
|
1591
1720
|
returnFullEntity?: boolean | null;
|
|
@@ -1595,7 +1724,10 @@ export interface MaskedQuestionEntry {
|
|
|
1595
1724
|
questionEntry?: QuestionEntry;
|
|
1596
1725
|
}
|
|
1597
1726
|
export interface BulkUpdateQuestionEntryResponse {
|
|
1598
|
-
/**
|
|
1727
|
+
/**
|
|
1728
|
+
* Array with all updated items results.
|
|
1729
|
+
* @maxSize 100
|
|
1730
|
+
*/
|
|
1599
1731
|
results?: BulkUpdateQuestionEntryResult[];
|
|
1600
1732
|
/** Holds metadata of the entire bulk update operation */
|
|
1601
1733
|
bulkActionMetadata?: BulkActionMetadata;
|
|
@@ -1681,9 +1813,15 @@ export interface ActionEvent {
|
|
|
1681
1813
|
export interface Empty {
|
|
1682
1814
|
}
|
|
1683
1815
|
export interface MessageEnvelope {
|
|
1684
|
-
/**
|
|
1816
|
+
/**
|
|
1817
|
+
* App instance ID.
|
|
1818
|
+
* @format GUID
|
|
1819
|
+
*/
|
|
1685
1820
|
instanceId?: string | null;
|
|
1686
|
-
/**
|
|
1821
|
+
/**
|
|
1822
|
+
* Event type.
|
|
1823
|
+
* @maxLength 150
|
|
1824
|
+
*/
|
|
1687
1825
|
eventType?: string;
|
|
1688
1826
|
/** The identification type and identity data. */
|
|
1689
1827
|
identity?: IdentificationData;
|
|
@@ -1691,26 +1829,50 @@ export interface MessageEnvelope {
|
|
|
1691
1829
|
data?: string;
|
|
1692
1830
|
}
|
|
1693
1831
|
export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
1694
|
-
/**
|
|
1832
|
+
/**
|
|
1833
|
+
* ID of a site visitor that has not logged in to the site.
|
|
1834
|
+
* @format GUID
|
|
1835
|
+
*/
|
|
1695
1836
|
anonymousVisitorId?: string;
|
|
1696
|
-
/**
|
|
1837
|
+
/**
|
|
1838
|
+
* ID of a site visitor that has logged in to the site.
|
|
1839
|
+
* @format GUID
|
|
1840
|
+
*/
|
|
1697
1841
|
memberId?: string;
|
|
1698
|
-
/**
|
|
1842
|
+
/**
|
|
1843
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
1844
|
+
* @format GUID
|
|
1845
|
+
*/
|
|
1699
1846
|
wixUserId?: string;
|
|
1700
|
-
/**
|
|
1847
|
+
/**
|
|
1848
|
+
* ID of an app.
|
|
1849
|
+
* @format GUID
|
|
1850
|
+
*/
|
|
1701
1851
|
appId?: string;
|
|
1702
1852
|
/** @readonly */
|
|
1703
1853
|
identityType?: WebhookIdentityType;
|
|
1704
1854
|
}
|
|
1705
1855
|
/** @oneof */
|
|
1706
1856
|
export interface IdentificationDataIdOneOf {
|
|
1707
|
-
/**
|
|
1857
|
+
/**
|
|
1858
|
+
* ID of a site visitor that has not logged in to the site.
|
|
1859
|
+
* @format GUID
|
|
1860
|
+
*/
|
|
1708
1861
|
anonymousVisitorId?: string;
|
|
1709
|
-
/**
|
|
1862
|
+
/**
|
|
1863
|
+
* ID of a site visitor that has logged in to the site.
|
|
1864
|
+
* @format GUID
|
|
1865
|
+
*/
|
|
1710
1866
|
memberId?: string;
|
|
1711
|
-
/**
|
|
1867
|
+
/**
|
|
1868
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
1869
|
+
* @format GUID
|
|
1870
|
+
*/
|
|
1712
1871
|
wixUserId?: string;
|
|
1713
|
-
/**
|
|
1872
|
+
/**
|
|
1873
|
+
* ID of an app.
|
|
1874
|
+
* @format GUID
|
|
1875
|
+
*/
|
|
1714
1876
|
appId?: string;
|
|
1715
1877
|
}
|
|
1716
1878
|
export declare enum WebhookIdentityType {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"faq-question-entry-v2-question-entry-question-entry.types.js","sourceRoot":"","sources":["../../../src/faq-question-entry-v2-question-entry-question-entry.types.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"faq-question-entry-v2-question-entry-question-entry.types.js","sourceRoot":"","sources":["../../../src/faq-question-entry-v2-question-entry-question-entry.types.ts"],"names":[],"mappings":"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"}
|