@athenaintel/sdk 4.3.313 → 4.3.315
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/cjs/BaseClient.js +2 -2
- package/dist/cjs/api/resources/databases/client/Client.d.ts +26 -2
- package/dist/cjs/api/resources/databases/client/Client.js +26 -2
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/esm/BaseClient.mjs +2 -2
- package/dist/esm/api/resources/databases/client/Client.d.mts +26 -2
- package/dist/esm/api/resources/databases/client/Client.mjs +26 -2
- package/dist/esm/version.d.mts +1 -1
- package/dist/esm/version.mjs +1 -1
- package/package.json +1 -1
- package/reference.md +26 -2
package/dist/cjs/BaseClient.js
CHANGED
|
@@ -43,8 +43,8 @@ function normalizeClientOptions(options) {
|
|
|
43
43
|
const headers = (0, headers_js_1.mergeHeaders)({
|
|
44
44
|
"X-Fern-Language": "JavaScript",
|
|
45
45
|
"X-Fern-SDK-Name": "@athenaintel/sdk",
|
|
46
|
-
"X-Fern-SDK-Version": "4.3.
|
|
47
|
-
"User-Agent": "@athenaintel/sdk/4.3.
|
|
46
|
+
"X-Fern-SDK-Version": "4.3.315",
|
|
47
|
+
"User-Agent": "@athenaintel/sdk/4.3.315",
|
|
48
48
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
49
49
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
50
50
|
}, options === null || options === void 0 ? void 0 : options.headers);
|
|
@@ -93,7 +93,19 @@ export declare class DatabasesClient {
|
|
|
93
93
|
insert(asset_id: string, table_name: string, request: AthenaIntelligence.InsertDataRequest, requestOptions?: DatabasesClient.RequestOptions): core.HttpResponsePromise<AthenaIntelligence.DatabaseMutationResponse>;
|
|
94
94
|
private __insert;
|
|
95
95
|
/**
|
|
96
|
-
* Delete rows matching the filter conditions. Filter conditions are passed as query parameters using PostgREST syntax
|
|
96
|
+
* Delete rows matching the filter conditions. Filter conditions are passed as query parameters using PostgREST syntax.
|
|
97
|
+
*
|
|
98
|
+
* **Filter Syntax:**
|
|
99
|
+
* - `?column=eq.value` - Equal
|
|
100
|
+
* - `?column=neq.value` - Not equal
|
|
101
|
+
* - `?column=gt.value` - Greater than
|
|
102
|
+
* - `?column=gte.value` - Greater than or equal
|
|
103
|
+
* - `?column=lt.value` - Less than
|
|
104
|
+
* - `?column=lte.value` - Less than or equal
|
|
105
|
+
* - `?column=like.*pattern*` - LIKE (case-sensitive)
|
|
106
|
+
* - `?column=ilike.*pattern*` - ILIKE (case-insensitive)
|
|
107
|
+
* - `?column=in.(a,b,c)` - IN list
|
|
108
|
+
* - `?column=is.null` - IS NULL
|
|
97
109
|
*
|
|
98
110
|
* **Safety:** Filters are required by default to prevent accidental bulk deletes. To delete all rows intentionally, pass `?force=true`.
|
|
99
111
|
*
|
|
@@ -120,7 +132,19 @@ export declare class DatabasesClient {
|
|
|
120
132
|
delete(asset_id: string, table_name: string, request?: AthenaIntelligence.DatabasesDeleteRequest, requestOptions?: DatabasesClient.RequestOptions): core.HttpResponsePromise<AthenaIntelligence.DatabaseMutationResponse>;
|
|
121
133
|
private __delete;
|
|
122
134
|
/**
|
|
123
|
-
* Update rows matching the filter conditions. Filter conditions are passed as query parameters using PostgREST syntax
|
|
135
|
+
* Update rows matching the filter conditions. Filter conditions are passed as query parameters using PostgREST syntax.
|
|
136
|
+
*
|
|
137
|
+
* **Filter Syntax:**
|
|
138
|
+
* - `?column=eq.value` - Equal
|
|
139
|
+
* - `?column=neq.value` - Not equal
|
|
140
|
+
* - `?column=gt.value` - Greater than
|
|
141
|
+
* - `?column=gte.value` - Greater than or equal
|
|
142
|
+
* - `?column=lt.value` - Less than
|
|
143
|
+
* - `?column=lte.value` - Less than or equal
|
|
144
|
+
* - `?column=like.*pattern*` - LIKE (case-sensitive)
|
|
145
|
+
* - `?column=ilike.*pattern*` - ILIKE (case-insensitive)
|
|
146
|
+
* - `?column=in.(a,b,c)` - IN list
|
|
147
|
+
* - `?column=is.null` - IS NULL
|
|
124
148
|
*
|
|
125
149
|
* **Safety:** Filters are required by default to prevent accidental bulk updates. To update all rows intentionally, pass `?force=true`.
|
|
126
150
|
*
|
|
@@ -365,7 +365,19 @@ class DatabasesClient {
|
|
|
365
365
|
});
|
|
366
366
|
}
|
|
367
367
|
/**
|
|
368
|
-
* Delete rows matching the filter conditions. Filter conditions are passed as query parameters using PostgREST syntax
|
|
368
|
+
* Delete rows matching the filter conditions. Filter conditions are passed as query parameters using PostgREST syntax.
|
|
369
|
+
*
|
|
370
|
+
* **Filter Syntax:**
|
|
371
|
+
* - `?column=eq.value` - Equal
|
|
372
|
+
* - `?column=neq.value` - Not equal
|
|
373
|
+
* - `?column=gt.value` - Greater than
|
|
374
|
+
* - `?column=gte.value` - Greater than or equal
|
|
375
|
+
* - `?column=lt.value` - Less than
|
|
376
|
+
* - `?column=lte.value` - Less than or equal
|
|
377
|
+
* - `?column=like.*pattern*` - LIKE (case-sensitive)
|
|
378
|
+
* - `?column=ilike.*pattern*` - ILIKE (case-insensitive)
|
|
379
|
+
* - `?column=in.(a,b,c)` - IN list
|
|
380
|
+
* - `?column=is.null` - IS NULL
|
|
369
381
|
*
|
|
370
382
|
* **Safety:** Filters are required by default to prevent accidental bulk deletes. To delete all rows intentionally, pass `?force=true`.
|
|
371
383
|
*
|
|
@@ -467,7 +479,19 @@ class DatabasesClient {
|
|
|
467
479
|
});
|
|
468
480
|
}
|
|
469
481
|
/**
|
|
470
|
-
* Update rows matching the filter conditions. Filter conditions are passed as query parameters using PostgREST syntax
|
|
482
|
+
* Update rows matching the filter conditions. Filter conditions are passed as query parameters using PostgREST syntax.
|
|
483
|
+
*
|
|
484
|
+
* **Filter Syntax:**
|
|
485
|
+
* - `?column=eq.value` - Equal
|
|
486
|
+
* - `?column=neq.value` - Not equal
|
|
487
|
+
* - `?column=gt.value` - Greater than
|
|
488
|
+
* - `?column=gte.value` - Greater than or equal
|
|
489
|
+
* - `?column=lt.value` - Less than
|
|
490
|
+
* - `?column=lte.value` - Less than or equal
|
|
491
|
+
* - `?column=like.*pattern*` - LIKE (case-sensitive)
|
|
492
|
+
* - `?column=ilike.*pattern*` - ILIKE (case-insensitive)
|
|
493
|
+
* - `?column=in.(a,b,c)` - IN list
|
|
494
|
+
* - `?column=is.null` - IS NULL
|
|
471
495
|
*
|
|
472
496
|
* **Safety:** Filters are required by default to prevent accidental bulk updates. To update all rows intentionally, pass `?force=true`.
|
|
473
497
|
*
|
package/dist/cjs/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "4.3.
|
|
1
|
+
export declare const SDK_VERSION = "4.3.315";
|
package/dist/cjs/version.js
CHANGED
package/dist/esm/BaseClient.mjs
CHANGED
|
@@ -6,8 +6,8 @@ export function normalizeClientOptions(options) {
|
|
|
6
6
|
const headers = mergeHeaders({
|
|
7
7
|
"X-Fern-Language": "JavaScript",
|
|
8
8
|
"X-Fern-SDK-Name": "@athenaintel/sdk",
|
|
9
|
-
"X-Fern-SDK-Version": "4.3.
|
|
10
|
-
"User-Agent": "@athenaintel/sdk/4.3.
|
|
9
|
+
"X-Fern-SDK-Version": "4.3.315",
|
|
10
|
+
"User-Agent": "@athenaintel/sdk/4.3.315",
|
|
11
11
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
12
12
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
13
13
|
}, options === null || options === void 0 ? void 0 : options.headers);
|
|
@@ -93,7 +93,19 @@ export declare class DatabasesClient {
|
|
|
93
93
|
insert(asset_id: string, table_name: string, request: AthenaIntelligence.InsertDataRequest, requestOptions?: DatabasesClient.RequestOptions): core.HttpResponsePromise<AthenaIntelligence.DatabaseMutationResponse>;
|
|
94
94
|
private __insert;
|
|
95
95
|
/**
|
|
96
|
-
* Delete rows matching the filter conditions. Filter conditions are passed as query parameters using PostgREST syntax
|
|
96
|
+
* Delete rows matching the filter conditions. Filter conditions are passed as query parameters using PostgREST syntax.
|
|
97
|
+
*
|
|
98
|
+
* **Filter Syntax:**
|
|
99
|
+
* - `?column=eq.value` - Equal
|
|
100
|
+
* - `?column=neq.value` - Not equal
|
|
101
|
+
* - `?column=gt.value` - Greater than
|
|
102
|
+
* - `?column=gte.value` - Greater than or equal
|
|
103
|
+
* - `?column=lt.value` - Less than
|
|
104
|
+
* - `?column=lte.value` - Less than or equal
|
|
105
|
+
* - `?column=like.*pattern*` - LIKE (case-sensitive)
|
|
106
|
+
* - `?column=ilike.*pattern*` - ILIKE (case-insensitive)
|
|
107
|
+
* - `?column=in.(a,b,c)` - IN list
|
|
108
|
+
* - `?column=is.null` - IS NULL
|
|
97
109
|
*
|
|
98
110
|
* **Safety:** Filters are required by default to prevent accidental bulk deletes. To delete all rows intentionally, pass `?force=true`.
|
|
99
111
|
*
|
|
@@ -120,7 +132,19 @@ export declare class DatabasesClient {
|
|
|
120
132
|
delete(asset_id: string, table_name: string, request?: AthenaIntelligence.DatabasesDeleteRequest, requestOptions?: DatabasesClient.RequestOptions): core.HttpResponsePromise<AthenaIntelligence.DatabaseMutationResponse>;
|
|
121
133
|
private __delete;
|
|
122
134
|
/**
|
|
123
|
-
* Update rows matching the filter conditions. Filter conditions are passed as query parameters using PostgREST syntax
|
|
135
|
+
* Update rows matching the filter conditions. Filter conditions are passed as query parameters using PostgREST syntax.
|
|
136
|
+
*
|
|
137
|
+
* **Filter Syntax:**
|
|
138
|
+
* - `?column=eq.value` - Equal
|
|
139
|
+
* - `?column=neq.value` - Not equal
|
|
140
|
+
* - `?column=gt.value` - Greater than
|
|
141
|
+
* - `?column=gte.value` - Greater than or equal
|
|
142
|
+
* - `?column=lt.value` - Less than
|
|
143
|
+
* - `?column=lte.value` - Less than or equal
|
|
144
|
+
* - `?column=like.*pattern*` - LIKE (case-sensitive)
|
|
145
|
+
* - `?column=ilike.*pattern*` - ILIKE (case-insensitive)
|
|
146
|
+
* - `?column=in.(a,b,c)` - IN list
|
|
147
|
+
* - `?column=is.null` - IS NULL
|
|
124
148
|
*
|
|
125
149
|
* **Safety:** Filters are required by default to prevent accidental bulk updates. To update all rows intentionally, pass `?force=true`.
|
|
126
150
|
*
|
|
@@ -329,7 +329,19 @@ export class DatabasesClient {
|
|
|
329
329
|
});
|
|
330
330
|
}
|
|
331
331
|
/**
|
|
332
|
-
* Delete rows matching the filter conditions. Filter conditions are passed as query parameters using PostgREST syntax
|
|
332
|
+
* Delete rows matching the filter conditions. Filter conditions are passed as query parameters using PostgREST syntax.
|
|
333
|
+
*
|
|
334
|
+
* **Filter Syntax:**
|
|
335
|
+
* - `?column=eq.value` - Equal
|
|
336
|
+
* - `?column=neq.value` - Not equal
|
|
337
|
+
* - `?column=gt.value` - Greater than
|
|
338
|
+
* - `?column=gte.value` - Greater than or equal
|
|
339
|
+
* - `?column=lt.value` - Less than
|
|
340
|
+
* - `?column=lte.value` - Less than or equal
|
|
341
|
+
* - `?column=like.*pattern*` - LIKE (case-sensitive)
|
|
342
|
+
* - `?column=ilike.*pattern*` - ILIKE (case-insensitive)
|
|
343
|
+
* - `?column=in.(a,b,c)` - IN list
|
|
344
|
+
* - `?column=is.null` - IS NULL
|
|
333
345
|
*
|
|
334
346
|
* **Safety:** Filters are required by default to prevent accidental bulk deletes. To delete all rows intentionally, pass `?force=true`.
|
|
335
347
|
*
|
|
@@ -431,7 +443,19 @@ export class DatabasesClient {
|
|
|
431
443
|
});
|
|
432
444
|
}
|
|
433
445
|
/**
|
|
434
|
-
* Update rows matching the filter conditions. Filter conditions are passed as query parameters using PostgREST syntax
|
|
446
|
+
* Update rows matching the filter conditions. Filter conditions are passed as query parameters using PostgREST syntax.
|
|
447
|
+
*
|
|
448
|
+
* **Filter Syntax:**
|
|
449
|
+
* - `?column=eq.value` - Equal
|
|
450
|
+
* - `?column=neq.value` - Not equal
|
|
451
|
+
* - `?column=gt.value` - Greater than
|
|
452
|
+
* - `?column=gte.value` - Greater than or equal
|
|
453
|
+
* - `?column=lt.value` - Less than
|
|
454
|
+
* - `?column=lte.value` - Less than or equal
|
|
455
|
+
* - `?column=like.*pattern*` - LIKE (case-sensitive)
|
|
456
|
+
* - `?column=ilike.*pattern*` - ILIKE (case-insensitive)
|
|
457
|
+
* - `?column=in.(a,b,c)` - IN list
|
|
458
|
+
* - `?column=is.null` - IS NULL
|
|
435
459
|
*
|
|
436
460
|
* **Safety:** Filters are required by default to prevent accidental bulk updates. To update all rows intentionally, pass `?force=true`.
|
|
437
461
|
*
|
package/dist/esm/version.d.mts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "4.3.
|
|
1
|
+
export declare const SDK_VERSION = "4.3.315";
|
package/dist/esm/version.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const SDK_VERSION = "4.3.
|
|
1
|
+
export const SDK_VERSION = "4.3.315";
|
package/package.json
CHANGED
package/reference.md
CHANGED
|
@@ -755,7 +755,19 @@ await client.databases.insert("asset_id", "table_name", {
|
|
|
755
755
|
<dl>
|
|
756
756
|
<dd>
|
|
757
757
|
|
|
758
|
-
Delete rows matching the filter conditions. Filter conditions are passed as query parameters using PostgREST syntax
|
|
758
|
+
Delete rows matching the filter conditions. Filter conditions are passed as query parameters using PostgREST syntax.
|
|
759
|
+
|
|
760
|
+
**Filter Syntax:**
|
|
761
|
+
- `?column=eq.value` - Equal
|
|
762
|
+
- `?column=neq.value` - Not equal
|
|
763
|
+
- `?column=gt.value` - Greater than
|
|
764
|
+
- `?column=gte.value` - Greater than or equal
|
|
765
|
+
- `?column=lt.value` - Less than
|
|
766
|
+
- `?column=lte.value` - Less than or equal
|
|
767
|
+
- `?column=like.*pattern*` - LIKE (case-sensitive)
|
|
768
|
+
- `?column=ilike.*pattern*` - ILIKE (case-insensitive)
|
|
769
|
+
- `?column=in.(a,b,c)` - IN list
|
|
770
|
+
- `?column=is.null` - IS NULL
|
|
759
771
|
|
|
760
772
|
**Safety:** Filters are required by default to prevent accidental bulk deletes. To delete all rows intentionally, pass `?force=true`.
|
|
761
773
|
</dd>
|
|
@@ -841,7 +853,19 @@ await client.databases.delete("asset_id", "table_name", {
|
|
|
841
853
|
<dl>
|
|
842
854
|
<dd>
|
|
843
855
|
|
|
844
|
-
Update rows matching the filter conditions. Filter conditions are passed as query parameters using PostgREST syntax
|
|
856
|
+
Update rows matching the filter conditions. Filter conditions are passed as query parameters using PostgREST syntax.
|
|
857
|
+
|
|
858
|
+
**Filter Syntax:**
|
|
859
|
+
- `?column=eq.value` - Equal
|
|
860
|
+
- `?column=neq.value` - Not equal
|
|
861
|
+
- `?column=gt.value` - Greater than
|
|
862
|
+
- `?column=gte.value` - Greater than or equal
|
|
863
|
+
- `?column=lt.value` - Less than
|
|
864
|
+
- `?column=lte.value` - Less than or equal
|
|
865
|
+
- `?column=like.*pattern*` - LIKE (case-sensitive)
|
|
866
|
+
- `?column=ilike.*pattern*` - ILIKE (case-insensitive)
|
|
867
|
+
- `?column=in.(a,b,c)` - IN list
|
|
868
|
+
- `?column=is.null` - IS NULL
|
|
845
869
|
|
|
846
870
|
**Safety:** Filters are required by default to prevent accidental bulk updates. To update all rows intentionally, pass `?force=true`.
|
|
847
871
|
</dd>
|