ultracart_rest_api_v2_typescript 4.1.142 → 4.1.143
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/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# UltraCart Typescript SDK
|
|
2
|
-
## ultracart_rest_api_v2_typescript@4.1.
|
|
2
|
+
## ultracart_rest_api_v2_typescript@4.1.143
|
|
3
3
|
|
|
4
4
|
Every API method call has a sample for every language SDK. See https://github.com/UltraCart/sdk_samples
|
|
5
5
|
|
|
6
6
|
Installation
|
|
7
7
|
|
|
8
8
|
```
|
|
9
|
-
npm install ultracart_rest_api_v2_typescript@4.1.
|
|
9
|
+
npm install ultracart_rest_api_v2_typescript@4.1.143 --save
|
|
10
10
|
```
|
|
11
11
|
|
|
12
12
|
```typescript
|
|
@@ -85,6 +85,7 @@ Not every change is committed to every SDK.
|
|
|
85
85
|
|
|
86
86
|
| Version | Date | Comments |
|
|
87
87
|
| --: | :-: | --- |
|
|
88
|
+
| 4.1.143 | 09/02/2026 | sfvb - internal development |
|
|
88
89
|
| 4.1.142 | 08/26/2026 | sfvb - internal test |
|
|
89
90
|
| 4.1.141 | 08/26/2026 | sfvb - internal testing |
|
|
90
91
|
| 4.1.140 | 08/26/2026 | sfvb - internal testing |
|
|
@@ -28,7 +28,7 @@ export interface SfvbContainerVersion {
|
|
|
28
28
|
*/
|
|
29
29
|
comment?: string;
|
|
30
30
|
/**
|
|
31
|
-
* History record oid. Pass to the revert operation on the owning container.
|
|
31
|
+
* History record oid. Pass to the revert operation on the owning container. Absent on the entry marked current, which holds the value stored right now, has no history row of its own, and so cannot be fetched or reverted to.
|
|
32
32
|
* @type {number}
|
|
33
33
|
* @memberof SfvbContainerVersion
|
|
34
34
|
*/
|
|
@@ -34,7 +34,7 @@ export interface SfvbFileEntry {
|
|
|
34
34
|
*/
|
|
35
35
|
fs_directory_oid?: number;
|
|
36
36
|
/**
|
|
37
|
-
* StoreFront file system file oid.
|
|
37
|
+
* StoreFront file system file oid. Absent on a directory entry, which has no file oid.
|
|
38
38
|
* @type {number}
|
|
39
39
|
* @memberof SfvbFileEntry
|
|
40
40
|
*/
|
|
@@ -100,7 +100,7 @@ export interface SfvbFileEntry {
|
|
|
100
100
|
*/
|
|
101
101
|
valid?: boolean;
|
|
102
102
|
/**
|
|
103
|
-
* Current version number of the file.
|
|
103
|
+
* Current version number of the file. Absent on a directory entry, which is not versioned.
|
|
104
104
|
* @type {number}
|
|
105
105
|
* @memberof SfvbFileEntry
|
|
106
106
|
*/
|
package/package.json
CHANGED
|
@@ -32,7 +32,7 @@ export interface SfvbContainerVersion {
|
|
|
32
32
|
*/
|
|
33
33
|
comment?: string;
|
|
34
34
|
/**
|
|
35
|
-
* History record oid. Pass to the revert operation on the owning container.
|
|
35
|
+
* History record oid. Pass to the revert operation on the owning container. Absent on the entry marked current, which holds the value stored right now, has no history row of its own, and so cannot be fetched or reverted to.
|
|
36
36
|
* @type {number}
|
|
37
37
|
* @memberof SfvbContainerVersion
|
|
38
38
|
*/
|
|
@@ -38,7 +38,7 @@ export interface SfvbFileEntry {
|
|
|
38
38
|
*/
|
|
39
39
|
fs_directory_oid?: number;
|
|
40
40
|
/**
|
|
41
|
-
* StoreFront file system file oid.
|
|
41
|
+
* StoreFront file system file oid. Absent on a directory entry, which has no file oid.
|
|
42
42
|
* @type {number}
|
|
43
43
|
* @memberof SfvbFileEntry
|
|
44
44
|
*/
|
|
@@ -104,7 +104,7 @@ export interface SfvbFileEntry {
|
|
|
104
104
|
*/
|
|
105
105
|
valid?: boolean;
|
|
106
106
|
/**
|
|
107
|
-
* Current version number of the file.
|
|
107
|
+
* Current version number of the file. Absent on a directory entry, which is not versioned.
|
|
108
108
|
* @type {number}
|
|
109
109
|
* @memberof SfvbFileEntry
|
|
110
110
|
*/
|