@gpt-core/admin 0.5.94 → 0.5.96

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 CHANGED
@@ -2417,6 +2417,10 @@ type Workspace = {
2417
2417
  * Field included by default.
2418
2418
  */
2419
2419
  is_default: boolean;
2420
+ /**
2421
+ * Timestamp of the last successful folder sweep. Field included by default.
2422
+ */
2423
+ last_sweep_at?: unknown;
2420
2424
  /**
2421
2425
  * Field included by default.
2422
2426
  */
@@ -2654,6 +2658,10 @@ type ExtractionDocument = {
2654
2658
  * Field included by default.
2655
2659
  */
2656
2660
  error_message?: string | null | unknown;
2661
+ /**
2662
+ * SHA256 hash of the file content for deduplication. Field included by default.
2663
+ */
2664
+ file_hash?: string | null | unknown;
2657
2665
  /**
2658
2666
  * Field included by default.
2659
2667
  */
@@ -7102,6 +7110,8 @@ type PostAdminUsersAuthRegisterData = {
7102
7110
  data: {
7103
7111
  attributes?: {
7104
7112
  email: string;
7113
+ first_name?: string | unknown;
7114
+ last_name?: string | unknown;
7105
7115
  password: string;
7106
7116
  password_confirmation: string;
7107
7117
  tenant_name: string;
@@ -22930,6 +22940,10 @@ type PostAdminExtractionDocumentsBeginUploadData = {
22930
22940
  attributes?: {
22931
22941
  batch_id?: string | unknown;
22932
22942
  content_type?: string | unknown;
22943
+ /**
22944
+ * SHA256 hash of the file content for deduplication
22945
+ */
22946
+ file_hash?: string | unknown;
22933
22947
  file_size_bytes?: number | unknown;
22934
22948
  file_type: "pdf" | "docx" | "image" | "zip";
22935
22949
  filename: string;
package/dist/index.d.ts CHANGED
@@ -2417,6 +2417,10 @@ type Workspace = {
2417
2417
  * Field included by default.
2418
2418
  */
2419
2419
  is_default: boolean;
2420
+ /**
2421
+ * Timestamp of the last successful folder sweep. Field included by default.
2422
+ */
2423
+ last_sweep_at?: unknown;
2420
2424
  /**
2421
2425
  * Field included by default.
2422
2426
  */
@@ -2654,6 +2658,10 @@ type ExtractionDocument = {
2654
2658
  * Field included by default.
2655
2659
  */
2656
2660
  error_message?: string | null | unknown;
2661
+ /**
2662
+ * SHA256 hash of the file content for deduplication. Field included by default.
2663
+ */
2664
+ file_hash?: string | null | unknown;
2657
2665
  /**
2658
2666
  * Field included by default.
2659
2667
  */
@@ -7102,6 +7110,8 @@ type PostAdminUsersAuthRegisterData = {
7102
7110
  data: {
7103
7111
  attributes?: {
7104
7112
  email: string;
7113
+ first_name?: string | unknown;
7114
+ last_name?: string | unknown;
7105
7115
  password: string;
7106
7116
  password_confirmation: string;
7107
7117
  tenant_name: string;
@@ -22930,6 +22940,10 @@ type PostAdminExtractionDocumentsBeginUploadData = {
22930
22940
  attributes?: {
22931
22941
  batch_id?: string | unknown;
22932
22942
  content_type?: string | unknown;
22943
+ /**
22944
+ * SHA256 hash of the file content for deduplication
22945
+ */
22946
+ file_hash?: string | unknown;
22933
22947
  file_size_bytes?: number | unknown;
22934
22948
  file_type: "pdf" | "docx" | "image" | "zip";
22935
22949
  filename: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gpt-core/admin",
3
- "version": "0.5.94",
3
+ "version": "0.5.96",
4
4
  "description": "TypeScript SDK for GPT Core Admin API - Platform administration and ISV management",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",