skapi-js 1.7.7 → 1.8.0
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/skapi.browser.mjs +5 -5
- package/dist/skapi.browser.mjs.map +1 -1
- package/dist/skapi.cjs +5 -5
- package/dist/skapi.cjs.map +1 -1
- package/dist/skapi.d.mts +2 -0
- package/dist/skapi.d.ts +2 -0
- package/dist/skapi.js +5 -5
- package/dist/skapi.js.map +1 -1
- package/dist/skapi.mjs +5 -5
- package/dist/skapi.mjs.map +1 -1
- package/package.json +1 -1
package/dist/skapi.d.mts
CHANGED
|
@@ -69,6 +69,7 @@ type GetRecordQuery = {
|
|
|
69
69
|
name: string | '$updated' | '$uploaded' | '$referenced_count' | '$user_id';
|
|
70
70
|
/** String value max 256 chars. Allows punctuation (including / ! * #). Blocks control chars and sentinel . */
|
|
71
71
|
value: string | number | boolean;
|
|
72
|
+
/** For a string value: '>=' = 'starts with', '<=' = 'ends with'. When the name is a compound name ending in '.', '>=' / '<=' match the child name segment (starts / ends with). '>' / '<' are lexicographic; numbers/booleans compare normally. */
|
|
72
73
|
condition?: Condition;
|
|
73
74
|
range?: string | number | boolean;
|
|
74
75
|
};
|
|
@@ -476,6 +477,7 @@ type RequestHistory = {
|
|
|
476
477
|
status_code: number;
|
|
477
478
|
response_body: any;
|
|
478
479
|
error?: any;
|
|
480
|
+
created: number;
|
|
479
481
|
updated: number;
|
|
480
482
|
request_body: any;
|
|
481
483
|
expires?: number;
|
package/dist/skapi.d.ts
CHANGED
|
@@ -69,6 +69,7 @@ type GetRecordQuery = {
|
|
|
69
69
|
name: string | '$updated' | '$uploaded' | '$referenced_count' | '$user_id';
|
|
70
70
|
/** String value max 256 chars. Allows punctuation (including / ! * #). Blocks control chars and sentinel . */
|
|
71
71
|
value: string | number | boolean;
|
|
72
|
+
/** For a string value: '>=' = 'starts with', '<=' = 'ends with'. When the name is a compound name ending in '.', '>=' / '<=' match the child name segment (starts / ends with). '>' / '<' are lexicographic; numbers/booleans compare normally. */
|
|
72
73
|
condition?: Condition;
|
|
73
74
|
range?: string | number | boolean;
|
|
74
75
|
};
|
|
@@ -476,6 +477,7 @@ type RequestHistory = {
|
|
|
476
477
|
status_code: number;
|
|
477
478
|
response_body: any;
|
|
478
479
|
error?: any;
|
|
480
|
+
created: number;
|
|
479
481
|
updated: number;
|
|
480
482
|
request_body: any;
|
|
481
483
|
expires?: number;
|