oneentry 1.0.127 → 1.0.128
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/dist/admins/adminsApi.d.ts +20 -20
- package/dist/admins/adminsApi.js +20 -20
- package/dist/admins/adminsInterfaces.d.ts +43 -43
- package/dist/attribute-sets/attributeSetsApi.d.ts +16 -16
- package/dist/attribute-sets/attributeSetsApi.js +16 -16
- package/dist/attribute-sets/attributeSetsInterfaces.d.ts +87 -85
- package/dist/auth-provider/authProviderApi.d.ts +126 -126
- package/dist/auth-provider/authProviderApi.js +126 -126
- package/dist/auth-provider/authProvidersInterfaces.d.ts +201 -201
- package/dist/base/asyncModules.d.ts +17 -17
- package/dist/base/asyncModules.js +26 -21
- package/dist/base/result.d.ts +5 -5
- package/dist/base/result.js +5 -9
- package/dist/base/stateModule.d.ts +1 -1
- package/dist/base/stateModule.js +1 -1
- package/dist/base/syncModules.d.ts +35 -35
- package/dist/base/syncModules.js +92 -45
- package/dist/base/utils.d.ts +13 -13
- package/dist/blocks/blocksApi.d.ts +24 -24
- package/dist/blocks/blocksApi.js +24 -24
- package/dist/blocks/blocksInterfaces.d.ts +85 -85
- package/dist/events/eventsApi.d.ts +11 -11
- package/dist/events/eventsApi.js +11 -11
- package/dist/events/eventsInterfaces.d.ts +23 -23
- package/dist/file-uploading/fileUploadingApi.d.ts +38 -38
- package/dist/file-uploading/fileUploadingApi.js +38 -38
- package/dist/file-uploading/fileUploadingInterfaces.d.ts +44 -44
- package/dist/forms/formsApi.d.ts +7 -7
- package/dist/forms/formsApi.js +7 -7
- package/dist/forms/formsInterfaces.d.ts +43 -31
- package/dist/forms-data/formsDataApi.d.ts +37 -37
- package/dist/forms-data/formsDataApi.js +37 -38
- package/dist/forms-data/formsDataInterfaces.d.ts +219 -219
- package/dist/general-types/generalTypesApi.d.ts +1 -1
- package/dist/general-types/generalTypesApi.js +1 -1
- package/dist/general-types/generalTypesInterfaces.d.ts +2 -2
- package/dist/index.d.ts +10 -10
- package/dist/index.js +10 -10
- package/dist/integration-collections/integrationCollectionsApi.d.ts +76 -80
- package/dist/integration-collections/integrationCollectionsApi.js +76 -80
- package/dist/integration-collections/integrationCollectionsInterfaces.d.ts +145 -149
- package/dist/locales/localesInterfaces.d.ts +8 -8
- package/dist/menus/menusApi.d.ts +3 -3
- package/dist/menus/menusApi.js +3 -3
- package/dist/menus/menusInterfaces.d.ts +39 -39
- package/dist/orders/ordersApi.d.ts +56 -56
- package/dist/orders/ordersApi.js +56 -56
- package/dist/orders/ordersInterfaces.d.ts +204 -198
- package/dist/pages/pagesApi.d.ts +60 -60
- package/dist/pages/pagesApi.js +60 -60
- package/dist/pages/pagesInterfaces.d.ts +133 -141
- package/dist/payments/paymentsApi.d.ts +15 -15
- package/dist/payments/paymentsApi.js +15 -15
- package/dist/payments/paymentsInterfaces.d.ts +55 -55
- package/dist/product-statuses/productStatusesApi.d.ts +7 -7
- package/dist/product-statuses/productStatusesApi.js +7 -7
- package/dist/product-statuses/productStatusesInterfaces.d.ts +21 -21
- package/dist/products/productsApi.d.ts +240 -240
- package/dist/products/productsApi.js +240 -240
- package/dist/products/productsInterfaces.d.ts +311 -311
- package/dist/system/systemApi.d.ts +10 -10
- package/dist/system/systemApi.js +10 -10
- package/dist/templates/templatesApi.d.ts +8 -8
- package/dist/templates/templatesApi.js +8 -8
- package/dist/templates/templatesInterfaces.d.ts +22 -22
- package/dist/templates-preview/templatesPreviewApi.d.ts +5 -5
- package/dist/templates-preview/templatesPreviewApi.js +5 -5
- package/dist/templates-preview/templatesPreviewInterfaces.d.ts +54 -54
- package/dist/users/usersApi.d.ts +29 -29
- package/dist/users/usersApi.js +29 -29
- package/dist/users/usersInterfaces.d.ts +77 -77
- package/package.json +1 -1
|
@@ -21,25 +21,25 @@ export default class FileUploadingApi extends AsyncModules implements IFileUploa
|
|
|
21
21
|
/**
|
|
22
22
|
* Upload file function.
|
|
23
23
|
* @handleName upload
|
|
24
|
-
* @param
|
|
25
|
-
* @param
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
* @param
|
|
36
|
-
* @param
|
|
37
|
-
* @param
|
|
38
|
-
* @param
|
|
39
|
-
* @param
|
|
40
|
-
* @param
|
|
41
|
-
* @param
|
|
42
|
-
* @returns {IUploadingReturn[]}
|
|
24
|
+
* @param {File | Blob} file - File to upload. Example: `new File(["content"], "file.png", {"type": "image/png"})`
|
|
25
|
+
* @param {IUploadingQuery} [fileQuery] - Optional set query parameters. Example:
|
|
26
|
+
{
|
|
27
|
+
"type": "page",
|
|
28
|
+
"entity": "editor",
|
|
29
|
+
"id": 3787,
|
|
30
|
+
"width": 0,
|
|
31
|
+
"height": 0,
|
|
32
|
+
"compress": true,
|
|
33
|
+
"template": 1
|
|
34
|
+
}
|
|
35
|
+
* @param {string} [fileQuery.type] - Type, determines the folder name in the storage. Example: "page".
|
|
36
|
+
* @param {string} [fileQuery.entity] - Entity name from which the file is uploaded, determines the folder name in the storage. Example: "editor".
|
|
37
|
+
* @param {number} [fileQuery.id] - Identifier of the object from which the file is uploaded, determines the folder name in the storage. Example: 3787.
|
|
38
|
+
* @param {number} [fileQuery.width] - Optional width parameter. Example: 0.
|
|
39
|
+
* @param {number} [fileQuery.height] - Optional height parameter. Example: 0.
|
|
40
|
+
* @param {boolean} [fileQuery.compress] - Optional flag of optimization (compression) for images. Example: true.
|
|
41
|
+
* @param {any} [fileQuery.template] - preview template identifier. Example: 1.
|
|
42
|
+
* @returns {IUploadingReturn[]} Uploads a file to an Amazon S3-compatible cloud file storage.
|
|
43
43
|
* @throws {IError} - If there is an error during the fetch operation, it will return an error object.
|
|
44
44
|
* @description This method requires user authorization. For more information about configuring the authorization module, see the documentation in the configuration settings section of the SDK.
|
|
45
45
|
*/
|
|
@@ -47,19 +47,19 @@ export default class FileUploadingApi extends AsyncModules implements IFileUploa
|
|
|
47
47
|
/**
|
|
48
48
|
* Deletes a file from the cloud file storage.
|
|
49
49
|
* @handleName delete
|
|
50
|
-
* @param
|
|
51
|
-
* @param
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
* @param
|
|
59
|
-
* @param
|
|
60
|
-
* @param
|
|
61
|
-
* @param
|
|
62
|
-
* @returns {any}
|
|
50
|
+
* @param {string} filename - File name. Example: "file.png".
|
|
51
|
+
* @param {IUploadingQuery} [fileQuery] - Optional set query parameters. Example:
|
|
52
|
+
{
|
|
53
|
+
"type": "page",
|
|
54
|
+
"entity": "editor",
|
|
55
|
+
"id": 3787,
|
|
56
|
+
"template": 1
|
|
57
|
+
}
|
|
58
|
+
* @param {string} [fileQuery.type] - Type, determines the folder name in the storage. Example: "page".
|
|
59
|
+
* @param {string} [fileQuery.entity] - Entity name from which the file is uploaded, determines the folder name in the storage. Example: "editor".
|
|
60
|
+
* @param {number} [fileQuery.id] - Identifier of the object from which the file is uploaded, determines the folder name in the storage. Example: 3787.
|
|
61
|
+
* @param {number} [fileQuery.template] - preview template identifier. Example: 1.
|
|
62
|
+
* @returns {any} Returns a promise that resolves to the result of the deletion operation or an error object if there was an issue.
|
|
63
63
|
* @throws {IError} - If there is an error during the fetch operation, it will return an error object.
|
|
64
64
|
* @description This method requires user authorization. For more information about configuring the authorization module, see the documentation in the configuration settings section of the SDK.
|
|
65
65
|
*/
|
|
@@ -67,12 +67,12 @@ export default class FileUploadingApi extends AsyncModules implements IFileUploa
|
|
|
67
67
|
/**
|
|
68
68
|
* Get file by parameters.
|
|
69
69
|
* @handleName getFile
|
|
70
|
-
* @param
|
|
71
|
-
* @param
|
|
72
|
-
* @param
|
|
73
|
-
* @param
|
|
74
|
-
* @param
|
|
75
|
-
* @returns {any}
|
|
70
|
+
* @param {number} id - Object identifier, from which the file is uploaded, determines the folder name in the storage. Example: 3787.
|
|
71
|
+
* @param {string} type - Type, determines the folder name in the storage. Example: "page".
|
|
72
|
+
* @param {string} entity - Entity name, from which the file is uploaded, determines the folder name in the storage. Example: "editor".
|
|
73
|
+
* @param {string} filename - Filename. Example: "file.png".
|
|
74
|
+
* @param {string} [template] - Preview template identifier. Example: 1.
|
|
75
|
+
* @returns {any} Returns a promise that resolves to a Blob object containing the file data or an error object if there was an issue.
|
|
76
76
|
* @throws {IError} - If there is an error during the fetch operation, it will return an error object.
|
|
77
77
|
* @description This method requires user authorization. For more information about configuring the authorization module, see the documentation in the configuration settings section of the SDK.
|
|
78
78
|
*/
|
|
@@ -33,25 +33,25 @@ class FileUploadingApi extends asyncModules_1.default {
|
|
|
33
33
|
/**
|
|
34
34
|
* Upload file function.
|
|
35
35
|
* @handleName upload
|
|
36
|
-
* @param
|
|
37
|
-
* @param
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
* @param
|
|
48
|
-
* @param
|
|
49
|
-
* @param
|
|
50
|
-
* @param
|
|
51
|
-
* @param
|
|
52
|
-
* @param
|
|
53
|
-
* @param
|
|
54
|
-
* @returns {IUploadingReturn[]}
|
|
36
|
+
* @param {File | Blob} file - File to upload. Example: `new File(["content"], "file.png", {"type": "image/png"})`
|
|
37
|
+
* @param {IUploadingQuery} [fileQuery] - Optional set query parameters. Example:
|
|
38
|
+
{
|
|
39
|
+
"type": "page",
|
|
40
|
+
"entity": "editor",
|
|
41
|
+
"id": 3787,
|
|
42
|
+
"width": 0,
|
|
43
|
+
"height": 0,
|
|
44
|
+
"compress": true,
|
|
45
|
+
"template": 1
|
|
46
|
+
}
|
|
47
|
+
* @param {string} [fileQuery.type] - Type, determines the folder name in the storage. Example: "page".
|
|
48
|
+
* @param {string} [fileQuery.entity] - Entity name from which the file is uploaded, determines the folder name in the storage. Example: "editor".
|
|
49
|
+
* @param {number} [fileQuery.id] - Identifier of the object from which the file is uploaded, determines the folder name in the storage. Example: 3787.
|
|
50
|
+
* @param {number} [fileQuery.width] - Optional width parameter. Example: 0.
|
|
51
|
+
* @param {number} [fileQuery.height] - Optional height parameter. Example: 0.
|
|
52
|
+
* @param {boolean} [fileQuery.compress] - Optional flag of optimization (compression) for images. Example: true.
|
|
53
|
+
* @param {any} [fileQuery.template] - preview template identifier. Example: 1.
|
|
54
|
+
* @returns {IUploadingReturn[]} Uploads a file to an Amazon S3-compatible cloud file storage.
|
|
55
55
|
* @throws {IError} - If there is an error during the fetch operation, it will return an error object.
|
|
56
56
|
* @description This method requires user authorization. For more information about configuring the authorization module, see the documentation in the configuration settings section of the SDK.
|
|
57
57
|
*/
|
|
@@ -65,19 +65,19 @@ class FileUploadingApi extends asyncModules_1.default {
|
|
|
65
65
|
/**
|
|
66
66
|
* Deletes a file from the cloud file storage.
|
|
67
67
|
* @handleName delete
|
|
68
|
-
* @param
|
|
69
|
-
* @param
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
* @param
|
|
77
|
-
* @param
|
|
78
|
-
* @param
|
|
79
|
-
* @param
|
|
80
|
-
* @returns {any}
|
|
68
|
+
* @param {string} filename - File name. Example: "file.png".
|
|
69
|
+
* @param {IUploadingQuery} [fileQuery] - Optional set query parameters. Example:
|
|
70
|
+
{
|
|
71
|
+
"type": "page",
|
|
72
|
+
"entity": "editor",
|
|
73
|
+
"id": 3787,
|
|
74
|
+
"template": 1
|
|
75
|
+
}
|
|
76
|
+
* @param {string} [fileQuery.type] - Type, determines the folder name in the storage. Example: "page".
|
|
77
|
+
* @param {string} [fileQuery.entity] - Entity name from which the file is uploaded, determines the folder name in the storage. Example: "editor".
|
|
78
|
+
* @param {number} [fileQuery.id] - Identifier of the object from which the file is uploaded, determines the folder name in the storage. Example: 3787.
|
|
79
|
+
* @param {number} [fileQuery.template] - preview template identifier. Example: 1.
|
|
80
|
+
* @returns {any} Returns a promise that resolves to the result of the deletion operation or an error object if there was an issue.
|
|
81
81
|
* @throws {IError} - If there is an error during the fetch operation, it will return an error object.
|
|
82
82
|
* @description This method requires user authorization. For more information about configuring the authorization module, see the documentation in the configuration settings section of the SDK.
|
|
83
83
|
*/
|
|
@@ -89,12 +89,12 @@ class FileUploadingApi extends asyncModules_1.default {
|
|
|
89
89
|
/**
|
|
90
90
|
* Get file by parameters.
|
|
91
91
|
* @handleName getFile
|
|
92
|
-
* @param
|
|
93
|
-
* @param
|
|
94
|
-
* @param
|
|
95
|
-
* @param
|
|
96
|
-
* @param
|
|
97
|
-
* @returns {any}
|
|
92
|
+
* @param {number} id - Object identifier, from which the file is uploaded, determines the folder name in the storage. Example: 3787.
|
|
93
|
+
* @param {string} type - Type, determines the folder name in the storage. Example: "page".
|
|
94
|
+
* @param {string} entity - Entity name, from which the file is uploaded, determines the folder name in the storage. Example: "editor".
|
|
95
|
+
* @param {string} filename - Filename. Example: "file.png".
|
|
96
|
+
* @param {string} [template] - Preview template identifier. Example: 1.
|
|
97
|
+
* @returns {any} Returns a promise that resolves to a Blob object containing the file data or an error object if there was an issue.
|
|
98
98
|
* @throws {IError} - If there is an error during the fetch operation, it will return an error object.
|
|
99
99
|
* @description This method requires user authorization. For more information about configuring the authorization module, see the documentation in the configuration settings section of the SDK.
|
|
100
100
|
*/
|
|
@@ -11,25 +11,25 @@ interface IFileUploading {
|
|
|
11
11
|
/**
|
|
12
12
|
* Upload file function.
|
|
13
13
|
* @handleName upload
|
|
14
|
-
* @param
|
|
15
|
-
* @param
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
* @param
|
|
26
|
-
* @param
|
|
27
|
-
* @param
|
|
28
|
-
* @param
|
|
29
|
-
* @param
|
|
30
|
-
* @param
|
|
31
|
-
* @param
|
|
32
|
-
* @returns {IUploadingReturn[]}
|
|
14
|
+
* @param {File | Blob} file - File to upload. Example: `new File(["content"], "file.png", {"type": "image/png"})`
|
|
15
|
+
* @param {IUploadingQuery} [fileQuery] - Optional set query parameters. Example:
|
|
16
|
+
{
|
|
17
|
+
"type": "page",
|
|
18
|
+
"entity": "editor",
|
|
19
|
+
"id": 3787,
|
|
20
|
+
"width": 0,
|
|
21
|
+
"height": 0,
|
|
22
|
+
"compress": true,
|
|
23
|
+
"template": 1
|
|
24
|
+
}
|
|
25
|
+
* @param {string} [fileQuery.type] - Type, determines the folder name in the storage. Example: "page".
|
|
26
|
+
* @param {string} [fileQuery.entity] - Entity name from which the file is uploaded, determines the folder name in the storage. Example: "editor".
|
|
27
|
+
* @param {number} [fileQuery.id] - Identifier of the object from which the file is uploaded, determines the folder name in the storage. Example: 3787.
|
|
28
|
+
* @param {number} [fileQuery.width] - Optional width parameter. Example: 0.
|
|
29
|
+
* @param {number} [fileQuery.height] - Optional height parameter. Example: 0.
|
|
30
|
+
* @param {boolean} [fileQuery.compress] - Optional flag of optimization (compression) for images. Example: true.
|
|
31
|
+
* @param {any} [fileQuery.template] - preview template identifier. Example: 1.
|
|
32
|
+
* @returns {IUploadingReturn[]} Uploads a file to an Amazon S3-compatible cloud file storage.
|
|
33
33
|
* @throws {IError} - If there is an error during the fetch operation, it will return an error object.
|
|
34
34
|
* @description This method requires user authorization. For more information about configuring the authorization module, see the documentation in the configuration settings section of the SDK.
|
|
35
35
|
*/
|
|
@@ -37,19 +37,19 @@ interface IFileUploading {
|
|
|
37
37
|
/**
|
|
38
38
|
* Deletes a file from the cloud file storage.
|
|
39
39
|
* @handleName delete
|
|
40
|
-
* @param
|
|
41
|
-
* @param
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
* @param
|
|
49
|
-
* @param
|
|
50
|
-
* @param
|
|
51
|
-
* @param
|
|
52
|
-
* @returns {any}
|
|
40
|
+
* @param {string} [filename] - File name. Example: "file.png".
|
|
41
|
+
* @param {IUploadingQuery} [fileQuery] - Optional set query parameters. Example:
|
|
42
|
+
{
|
|
43
|
+
"type": "page",
|
|
44
|
+
"entity": "editor",
|
|
45
|
+
"id": 3787,
|
|
46
|
+
"template": 1
|
|
47
|
+
}
|
|
48
|
+
* @param {string} [fileQuery.type] - Type, determines the folder name in the storage. Example: "page".
|
|
49
|
+
* @param {string} [fileQuery.entity] - Entity name from which the file is uploaded, determines the folder name in the storage. Example: "editor".
|
|
50
|
+
* @param {number} [fileQuery.id] - Identifier of the object from which the file is uploaded, determines the folder name in the storage. Example: 3787.
|
|
51
|
+
* @param {number} [fileQuery.template] - preview template identifier. Example: 1.
|
|
52
|
+
* @returns {any} Returns a promise that resolves to the result of the deletion operation or an error object if there was an issue.
|
|
53
53
|
* @throws {IError} - If there is an error during the fetch operation, it will return an error object.
|
|
54
54
|
* @description This method requires user authorization. For more information about configuring the authorization module, see the documentation in the configuration settings section of the SDK.
|
|
55
55
|
*/
|
|
@@ -57,11 +57,11 @@ interface IFileUploading {
|
|
|
57
57
|
/**
|
|
58
58
|
* Retrieves a file by its parameters.
|
|
59
59
|
* @handleName getFile
|
|
60
|
-
* @param
|
|
61
|
-
* @param
|
|
62
|
-
* @param
|
|
63
|
-
* @param
|
|
64
|
-
* @returns {Blob}
|
|
60
|
+
* @param {number} id - The ID of the file entity. Example: 3787.
|
|
61
|
+
* @param {string} type - The type of the file. Example: "page".
|
|
62
|
+
* @param {string} entity - The entity associated with the file. Example: "editor".
|
|
63
|
+
* @param {string} [filename] - Optional filename to retrieve. Example: "file.png".
|
|
64
|
+
* @returns {Blob} A promise that resolves to a Blob object or an error.
|
|
65
65
|
* @throws {IError} - If there is an error during the fetch operation, it will return an error object.
|
|
66
66
|
* @description This method requires user authorization. For more information about configuring the authorization module, see the documentation in the configuration settings section of the SDK.
|
|
67
67
|
*/
|
|
@@ -79,11 +79,11 @@ interface IFileEntity {
|
|
|
79
79
|
/**
|
|
80
80
|
* Represents a query for uploading files, including type, entity, and optional parameters like width, height, and compression.
|
|
81
81
|
* @interface IUploadingQuery
|
|
82
|
-
* @property {string}
|
|
83
|
-
* @property {string}
|
|
84
|
-
* @property {number}
|
|
85
|
-
* @property {number}
|
|
86
|
-
* @property {number}
|
|
82
|
+
* @property {string} type - Type, determines the folder name in the storage. Example: "page".
|
|
83
|
+
* @property {string} entity - Entity name from which the file is uploaded, determines the folder name in the storage. Example: "editor".
|
|
84
|
+
* @property {number} id - Identifier of the object from which the file is uploaded, determines the folder name in the storage. Example: 3787.
|
|
85
|
+
* @property {number} [width] - Width parameter. Example: 0.
|
|
86
|
+
* @property {number} [height] - Height parameter. Example: 0.
|
|
87
87
|
* @property {boolean} [compress] - Flag of optimization (compression) for images. Example: true.
|
|
88
88
|
* @description Represents a query for uploading files, including type, entity, and optional parameters like width, height, and compression.
|
|
89
89
|
*/
|
|
@@ -96,9 +96,9 @@ interface IUploadingQuery {
|
|
|
96
96
|
/**
|
|
97
97
|
* Represents the return value of an uploading operation, including the filename, download link, and file size.
|
|
98
98
|
* @interface IUploadingReturn
|
|
99
|
-
* @property {string} filename
|
|
99
|
+
* @property {string} filename - Filename with relative path. Example: "uploads/file.png".
|
|
100
100
|
* @property {string} downloadLink - Link for downloading the file. Example: "https://example.com/uploads/file.png".
|
|
101
|
-
* @property {number} size
|
|
101
|
+
* @property {number} size - Size of the file in bytes. Example: 1024.
|
|
102
102
|
* @description Represents the return value of an uploading operation, including the filename, download link, and file size.
|
|
103
103
|
*/
|
|
104
104
|
interface IUploadingReturn {
|
package/dist/forms/formsApi.d.ts
CHANGED
|
@@ -23,10 +23,10 @@ export default class FormsApi extends AsyncModules implements IForms {
|
|
|
23
23
|
/**
|
|
24
24
|
* Get all forms.
|
|
25
25
|
* @handleName getAllForms
|
|
26
|
-
* @param
|
|
27
|
-
* @param
|
|
28
|
-
* @param
|
|
29
|
-
* @returns {IFormsEntity[]}
|
|
26
|
+
* @param {string} [langCode] - Language code. Default: "en_US".
|
|
27
|
+
* @param {number} [offset] - Parameter for pagination. Default: 0.
|
|
28
|
+
* @param {number} [limit] - Parameter for pagination. Default: 30.
|
|
29
|
+
* @returns {IFormsEntity[]} Returns array for all objects of type FormEntity.
|
|
30
30
|
* @throws {IError} - If there is an error during the fetch operation, it will return an error object.
|
|
31
31
|
* @description This method requires user authorization. For more information about configuring the authorization module, see the documentation in the configuration settings section of the SDK.
|
|
32
32
|
*/
|
|
@@ -34,9 +34,9 @@ export default class FormsApi extends AsyncModules implements IForms {
|
|
|
34
34
|
/**
|
|
35
35
|
* Get one form by form marker.
|
|
36
36
|
* @handleName getFormByMarker
|
|
37
|
-
* @param
|
|
38
|
-
* @param
|
|
39
|
-
* @returns {IFormsEntity}
|
|
37
|
+
* @param {string} marker - Marker of form. Example: "contact_form".
|
|
38
|
+
* @param {string} [langCode] - Language code. Default: "en_US".
|
|
39
|
+
* @returns {IFormsEntity} Returns object of type FormEntity.
|
|
40
40
|
* @throws {IError} - If there is an error during the fetch operation, it will return an error object.
|
|
41
41
|
* @description This method requires user authorization. For more information about configuring the authorization module, see the documentation in the configuration settings section of the SDK.
|
|
42
42
|
*/
|
package/dist/forms/formsApi.js
CHANGED
|
@@ -26,10 +26,10 @@ class FormsApi extends asyncModules_1.default {
|
|
|
26
26
|
/**
|
|
27
27
|
* Get all forms.
|
|
28
28
|
* @handleName getAllForms
|
|
29
|
-
* @param
|
|
30
|
-
* @param
|
|
31
|
-
* @param
|
|
32
|
-
* @returns {IFormsEntity[]}
|
|
29
|
+
* @param {string} [langCode] - Language code. Default: "en_US".
|
|
30
|
+
* @param {number} [offset] - Parameter for pagination. Default: 0.
|
|
31
|
+
* @param {number} [limit] - Parameter for pagination. Default: 30.
|
|
32
|
+
* @returns {IFormsEntity[]} Returns array for all objects of type FormEntity.
|
|
33
33
|
* @throws {IError} - If there is an error during the fetch operation, it will return an error object.
|
|
34
34
|
* @description This method requires user authorization. For more information about configuring the authorization module, see the documentation in the configuration settings section of the SDK.
|
|
35
35
|
*/
|
|
@@ -40,9 +40,9 @@ class FormsApi extends asyncModules_1.default {
|
|
|
40
40
|
/**
|
|
41
41
|
* Get one form by form marker.
|
|
42
42
|
* @handleName getFormByMarker
|
|
43
|
-
* @param
|
|
44
|
-
* @param
|
|
45
|
-
* @returns {IFormsEntity}
|
|
43
|
+
* @param {string} marker - Marker of form. Example: "contact_form".
|
|
44
|
+
* @param {string} [langCode] - Language code. Default: "en_US".
|
|
45
|
+
* @returns {IFormsEntity} Returns object of type FormEntity.
|
|
46
46
|
* @throws {IError} - If there is an error during the fetch operation, it will return an error object.
|
|
47
47
|
* @description This method requires user authorization. For more information about configuring the authorization module, see the documentation in the configuration settings section of the SDK.
|
|
48
48
|
*/
|
|
@@ -3,7 +3,7 @@ import type { IAttributes, IError, ILocalizeInfo } from '../base/utils';
|
|
|
3
3
|
/**
|
|
4
4
|
* Interface for retrieving forms in the system.
|
|
5
5
|
* @interface IForms
|
|
6
|
-
* @property {Function} getAllForms
|
|
6
|
+
* @property {Function} getAllForms - Get all forms in array.
|
|
7
7
|
* @property {Function} getFormByMarker - Get one form by form marker.
|
|
8
8
|
* @description This interface defines methods for retrieving forms in the system.
|
|
9
9
|
*/
|
|
@@ -11,10 +11,10 @@ interface IForms {
|
|
|
11
11
|
/**
|
|
12
12
|
* Retrieves all forms in the system.
|
|
13
13
|
* @handleName getAllForms
|
|
14
|
-
* @param
|
|
15
|
-
* @param
|
|
16
|
-
* @param
|
|
17
|
-
* @returns {IFormsEntity[]}
|
|
14
|
+
* @param {string} [langCode] - The language code for localization. Default: "en_US".
|
|
15
|
+
* @param {number} [offset] - Optional offset for pagination. Default: 0.
|
|
16
|
+
* @param {number} [limit] - Optional limit for pagination. Default: 30.
|
|
17
|
+
* @returns {IFormsEntity[]} A promise that resolves to an array of form entities or an error.
|
|
18
18
|
* @throws {IError} - If there is an error during the fetch operation, it will return an error object.
|
|
19
19
|
* @description This method retrieves all forms in the system.
|
|
20
20
|
*/
|
|
@@ -22,9 +22,9 @@ interface IForms {
|
|
|
22
22
|
/**
|
|
23
23
|
* Retrieves a form by its marker.
|
|
24
24
|
* @handleName getFormByMarker
|
|
25
|
-
* @param
|
|
26
|
-
* @param
|
|
27
|
-
* @returns {IFormsEntity}
|
|
25
|
+
* @param {string} marker - The marker identifying the form. Example: "contact_form".
|
|
26
|
+
* @param {string} [langCode] - The language code for localization. Default: "en_US".
|
|
27
|
+
* @returns {IFormsEntity} A promise that resolves to a form entity or an error.
|
|
28
28
|
* @throws {IError} - If there is an error during the fetch operation, it will return an error object.
|
|
29
29
|
* @description This method retrieves a form by its marker.
|
|
30
30
|
*/
|
|
@@ -33,19 +33,19 @@ interface IForms {
|
|
|
33
33
|
/**
|
|
34
34
|
* Represents the structure of a form page.
|
|
35
35
|
* @interface IFromPages
|
|
36
|
-
* @property {number}
|
|
37
|
-
* @property {number}
|
|
38
|
-
* @property {number}
|
|
39
|
-
* @property {number}
|
|
40
|
-
* @property {IPosition} position
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
36
|
+
* @property {number} id - The unique identifier of the form page. Example: 123.
|
|
37
|
+
* @property {number} pageId - The identifier of the page. Example: 12.
|
|
38
|
+
* @property {number} formId - The identifier of the form. Example: 321.
|
|
39
|
+
* @property {number} positionId - The identifier of the position. Example: 1.
|
|
40
|
+
* @property {IPosition} position - The position object. Example:
|
|
41
|
+
{
|
|
42
|
+
"id": 1,
|
|
43
|
+
"position": 1,
|
|
44
|
+
"objectId": 2,
|
|
45
|
+
"objectType": "admin",
|
|
46
|
+
"isLocked": false,
|
|
47
|
+
"objectCategoryId": 1
|
|
48
|
+
}
|
|
49
49
|
* @description This interface defines the structure of a form page.
|
|
50
50
|
*/
|
|
51
51
|
interface IFromPages {
|
|
@@ -58,16 +58,16 @@ interface IFromPages {
|
|
|
58
58
|
/**
|
|
59
59
|
* Represents the structure of a form entity.
|
|
60
60
|
* @interface IFormsEntity
|
|
61
|
-
* @property {number}
|
|
62
|
-
* @property {number | null}
|
|
63
|
-
* @property {string | null}
|
|
64
|
-
* @property {ILocalizeInfo}
|
|
65
|
-
* @property {number}
|
|
66
|
-
* @property {number}
|
|
67
|
-
* @property {string}
|
|
68
|
-
* @property {string}
|
|
69
|
-
* @property {number | null}
|
|
70
|
-
* @property {IAttributes[] | Record<string, any>} attributes
|
|
61
|
+
* @property {number} id - The identifier of the object. Example: 12345.
|
|
62
|
+
* @property {number | null} attributeSetId - The identifier of the attribute set being used, or null if not applicable. Example: 1234.
|
|
63
|
+
* @property {string | null} type - Form type. Example: "contact".
|
|
64
|
+
* @property {ILocalizeInfo} localizeInfos - The name of the form, taking into account localization. Example: {"key": "value"}.
|
|
65
|
+
* @property {number} version - The version number of the object. Example: 1.
|
|
66
|
+
* @property {number} position - The position of the object. Example: 1.
|
|
67
|
+
* @property {string} identifier - The textual identifier for the record field. Example: "form_contact_us".
|
|
68
|
+
* @property {string} processingType - Type of form processing. Example: "async".
|
|
69
|
+
* @property {number | null} templateId - The identifier of the template used by the form, or null if no template is used. Example: 6789.
|
|
70
|
+
* @property {IAttributes[] | Record<string, any>} attributes - The attributes of the form, which can be an array of attribute objects or a record of key-value pairs. Example: {"key": "value"}.
|
|
71
71
|
* @description This interface defines the structure of a form entity, including its identifiers, attributes, and processing data.
|
|
72
72
|
*/
|
|
73
73
|
interface IFormsEntity {
|
|
@@ -83,6 +83,18 @@ interface IFormsEntity {
|
|
|
83
83
|
attributes: IAttributes[] | Record<string, any>;
|
|
84
84
|
moduleFormConfigs?: Array<IFormConfig>;
|
|
85
85
|
}
|
|
86
|
+
/**
|
|
87
|
+
* Represents the structure of a form configuration.
|
|
88
|
+
* @interface IFormConfig
|
|
89
|
+
* @property {number} id - The identifier of the form configuration. Example: 123.
|
|
90
|
+
* @property {string} moduleIdentifier - The identifier of the module associated with the form configuration. Example: "module_identifier".
|
|
91
|
+
* @property {boolean} isGlobal - Indicates whether the form configuration is global. Example: true.
|
|
92
|
+
* @property {boolean} isClosed - Indicates whether the form configuration is closed. Example: true.
|
|
93
|
+
* @property {boolean} viewOnlyUserData - Indicates whether the form configuration allows viewing user data. Example: true.
|
|
94
|
+
* @property {boolean} commentOnlyUserData - Indicates whether the form configuration allows commenting on user data. Example: true.
|
|
95
|
+
* @property {string[]} entityIdentifiers - An array of entity identifiers associated with the form configuration. Example: ["entity_identifier_1", "entity_identifier_2"].
|
|
96
|
+
* @description This interface defines the structure of a form configuration, including its identifiers, module association, and entity identifiers.
|
|
97
|
+
*/
|
|
86
98
|
interface IFormConfig {
|
|
87
99
|
id: number;
|
|
88
100
|
moduleIdentifier: string;
|
|
@@ -14,16 +14,16 @@ export default class FormsDataApi extends AsyncModules implements IFormsData {
|
|
|
14
14
|
protected state: StateModule;
|
|
15
15
|
protected _url: string;
|
|
16
16
|
/**
|
|
17
|
-
*
|
|
17
|
+
* Constructor for FormsDataApi class.
|
|
18
18
|
*/
|
|
19
19
|
constructor(state: StateModule);
|
|
20
20
|
/**
|
|
21
21
|
* Get all forms data.
|
|
22
22
|
* @handleName getFormsData
|
|
23
|
-
* @param
|
|
24
|
-
* @param
|
|
25
|
-
* @param
|
|
26
|
-
* @returns {IFormsDataEntity}
|
|
23
|
+
* @param {string} [langCode] - Language code. Default: "en_US".
|
|
24
|
+
* @param {number} [offset] - Parameter for pagination. Default: 0.
|
|
25
|
+
* @param {number} [limit] - Parameter for pagination. Default: 30.
|
|
26
|
+
* @returns {IFormsDataEntity} Returns an object containing all forms data or an error object if there was an issue.
|
|
27
27
|
* @throws {IError} - If there is an error during the fetch operation, it will return an error object.
|
|
28
28
|
* @description This method requires user authorization. For more information about configuring the authorization module, see the documentation in the configuration settings section of the SDK.
|
|
29
29
|
*/
|
|
@@ -31,23 +31,23 @@ export default class FormsDataApi extends AsyncModules implements IFormsData {
|
|
|
31
31
|
/**
|
|
32
32
|
* Creating an object of data save information by form
|
|
33
33
|
* @handleName postFormsData
|
|
34
|
-
* @param
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
* @param
|
|
50
|
-
* @returns {IPostFormResponse}
|
|
34
|
+
* @param {IBodyPostFormData} body - Request body. Example:
|
|
35
|
+
{
|
|
36
|
+
"formIdentifier": "test-form",
|
|
37
|
+
"formModuleConfigId": 2,
|
|
38
|
+
"moduleEntityIdentifier": "blog",
|
|
39
|
+
"replayTo": null,
|
|
40
|
+
"status": "sent",
|
|
41
|
+
"formData": [
|
|
42
|
+
{
|
|
43
|
+
"marker": "name",
|
|
44
|
+
"type": "string",
|
|
45
|
+
"value": "Test"
|
|
46
|
+
}
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
* @param {string} [langCode] - Language code. Default: "en_US".
|
|
50
|
+
* @returns {IPostFormResponse} Returns an object containing the created form data entry or an error object if there was an issue.
|
|
51
51
|
* @throws {IError} - If there is an error during the fetch operation, it will return an error object.
|
|
52
52
|
* @description This method requires user authorization. For more information about configuring the authorization module, see the documentation in the configuration settings section of the SDK.
|
|
53
53
|
*/
|
|
@@ -55,21 +55,21 @@ export default class FormsDataApi extends AsyncModules implements IFormsData {
|
|
|
55
55
|
/**
|
|
56
56
|
* Get one object of form data by marker.
|
|
57
57
|
* @handleName getFormsDataByMarker
|
|
58
|
-
* @param
|
|
59
|
-
* @param
|
|
60
|
-
* @param
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
* @param
|
|
69
|
-
* @param
|
|
70
|
-
* @param
|
|
71
|
-
* @param
|
|
72
|
-
* @returns {IFormsByMarkerDataEntity}
|
|
58
|
+
* @param {string} marker - Marker of the form. Example: "contact_form".
|
|
59
|
+
* @param {number} formModuleConfigId - Form module configuration ID. Example: 4.
|
|
60
|
+
* @param {object} [body] - Request body. Example:
|
|
61
|
+
{
|
|
62
|
+
"entityIdentifier": "test",
|
|
63
|
+
"userIdentifier": "",
|
|
64
|
+
"status": "",
|
|
65
|
+
"dateFrom": "2025-08-11",
|
|
66
|
+
"dateTo": ""
|
|
67
|
+
}
|
|
68
|
+
* @param {any} [isNested] - Flag for getting hierarchical data. Example: 1.
|
|
69
|
+
* @param {string} [langCode] - Language code. Default: "en_US".
|
|
70
|
+
* @param {number} [offset] - Parameter for pagination. Default: 0.
|
|
71
|
+
* @param {number} [limit] - Parameter for pagination. Default: 30.
|
|
72
|
+
* @returns {IFormsByMarkerDataEntity} Returns an object containing the form data or an error object if there was an issue.
|
|
73
73
|
* @throws {IError} - If there is an error during the fetch operation, it will return an error object.
|
|
74
74
|
* @description This method requires user authorization. For more information about configuring the authorization module, see the documentation in the configuration settings section of the SDK.
|
|
75
75
|
*/
|