@leancodepl/api-binary 9.6.5 → 9.6.6
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/index.cjs.js +4 -4
- package/index.esm.js +4 -4
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Converts ApiBinary to raw string representation.
|
|
5
|
-
*
|
|
5
|
+
*
|
|
6
6
|
* Transforms the ApiBinary type to its underlying string representation
|
|
7
7
|
* for serialization or API communication.
|
|
8
|
-
*
|
|
8
|
+
*
|
|
9
9
|
* @param apiBinary - The ApiBinary value to convert
|
|
10
10
|
* @returns Raw string representation of the binary data
|
|
11
11
|
* @example
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
}
|
|
19
19
|
/**
|
|
20
20
|
* Converts raw string to ApiBinary type.
|
|
21
|
-
*
|
|
21
|
+
*
|
|
22
22
|
* Transforms a raw string representation to the ApiBinary type
|
|
23
23
|
* for type-safe handling of binary data in the application.
|
|
24
|
-
*
|
|
24
|
+
*
|
|
25
25
|
* @param apiBinaryRaw - The raw string representation to convert
|
|
26
26
|
* @returns ApiBinary instance from the raw string
|
|
27
27
|
* @example
|
package/index.esm.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Converts ApiBinary to raw string representation.
|
|
3
|
-
*
|
|
3
|
+
*
|
|
4
4
|
* Transforms the ApiBinary type to its underlying string representation
|
|
5
5
|
* for serialization or API communication.
|
|
6
|
-
*
|
|
6
|
+
*
|
|
7
7
|
* @param apiBinary - The ApiBinary value to convert
|
|
8
8
|
* @returns Raw string representation of the binary data
|
|
9
9
|
* @example
|
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
}
|
|
17
17
|
/**
|
|
18
18
|
* Converts raw string to ApiBinary type.
|
|
19
|
-
*
|
|
19
|
+
*
|
|
20
20
|
* Transforms a raw string representation to the ApiBinary type
|
|
21
21
|
* for type-safe handling of binary data in the application.
|
|
22
|
-
*
|
|
22
|
+
*
|
|
23
23
|
* @param apiBinaryRaw - The raw string representation to convert
|
|
24
24
|
* @returns ApiBinary instance from the raw string
|
|
25
25
|
* @example
|