@gpt-core/client 0.7.62 → 0.7.63
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/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3588,7 +3588,7 @@ type ExtractionDocument = {
|
|
|
3588
3588
|
/**
|
|
3589
3589
|
* Field included by default.
|
|
3590
3590
|
*/
|
|
3591
|
-
status?: "queued" | "processing" | "completed" | "failed" | "cancelled" | unknown;
|
|
3591
|
+
status?: "queued" | "processing" | "completed" | "failed" | "cancelled" | "pending_credits" | unknown;
|
|
3592
3592
|
/**
|
|
3593
3593
|
* Field included by default.
|
|
3594
3594
|
*/
|
|
@@ -5917,7 +5917,7 @@ type PatchExtractionDocumentsByIdStatusData = {
|
|
|
5917
5917
|
* State or province code (2-letter)
|
|
5918
5918
|
*/
|
|
5919
5919
|
state?: string | unknown;
|
|
5920
|
-
status?: "queued" | "processing" | "completed" | "failed" | "cancelled" | unknown;
|
|
5920
|
+
status?: "queued" | "processing" | "completed" | "failed" | "cancelled" | "pending_credits" | unknown;
|
|
5921
5921
|
/**
|
|
5922
5922
|
* Metadata about the training session for this document (trained_at, user_id, scores)
|
|
5923
5923
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -3588,7 +3588,7 @@ type ExtractionDocument = {
|
|
|
3588
3588
|
/**
|
|
3589
3589
|
* Field included by default.
|
|
3590
3590
|
*/
|
|
3591
|
-
status?: "queued" | "processing" | "completed" | "failed" | "cancelled" | unknown;
|
|
3591
|
+
status?: "queued" | "processing" | "completed" | "failed" | "cancelled" | "pending_credits" | unknown;
|
|
3592
3592
|
/**
|
|
3593
3593
|
* Field included by default.
|
|
3594
3594
|
*/
|
|
@@ -5917,7 +5917,7 @@ type PatchExtractionDocumentsByIdStatusData = {
|
|
|
5917
5917
|
* State or province code (2-letter)
|
|
5918
5918
|
*/
|
|
5919
5919
|
state?: string | unknown;
|
|
5920
|
-
status?: "queued" | "processing" | "completed" | "failed" | "cancelled" | unknown;
|
|
5920
|
+
status?: "queued" | "processing" | "completed" | "failed" | "cancelled" | "pending_credits" | unknown;
|
|
5921
5921
|
/**
|
|
5922
5922
|
* Metadata about the training session for this document (trained_at, user_id, scores)
|
|
5923
5923
|
*/
|
package/package.json
CHANGED