@gpt-core/client 0.7.86 → 0.7.87

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
@@ -7827,7 +7827,7 @@ type PatchInvitationsByIdResendData = {
7827
7827
  body?: {
7828
7828
  data: {
7829
7829
  attributes?: {
7830
- [key: string]: never;
7830
+ application_id?: string | unknown;
7831
7831
  };
7832
7832
  id: string;
7833
7833
  relationships?: {
@@ -9378,6 +9378,7 @@ type PatchInvitationsByIdAcceptData = {
9378
9378
  body: {
9379
9379
  data: {
9380
9380
  attributes?: {
9381
+ application_id?: string | unknown;
9381
9382
  token: string;
9382
9383
  };
9383
9384
  id: string;
@@ -11412,6 +11413,7 @@ type PostInvitationsData = {
11412
11413
  body: {
11413
11414
  data: {
11414
11415
  attributes?: {
11416
+ application_id?: string | unknown;
11415
11417
  email: string;
11416
11418
  inviter_id?: string | unknown;
11417
11419
  role: "admin" | "member" | "editor" | "viewer";
@@ -26637,11 +26639,7 @@ declare const patchExtractionResultsByIdRegenerate: <ThrowOnError extends boolea
26637
26639
  /**
26638
26640
  * Create confirm
26639
26641
  *
26640
- * Creates a new resource. Returns the created resource with generated ID.
26641
- *
26642
- * **Authentication:** Required - Bearer token or API key
26643
- * **Rate Limit:** 20 requests per minute
26644
- *
26642
+ * Confirm a user's email address using a confirmation token
26645
26643
  */
26646
26644
  declare const postUsersAuthConfirm: <ThrowOnError extends boolean = false>(options: Options<PostUsersAuthConfirmData, ThrowOnError>) => RequestResult<PostUsersAuthConfirmResponses, PostUsersAuthConfirmErrors, ThrowOnError, "fields">;
26647
26645
  /**
package/dist/index.d.ts CHANGED
@@ -7827,7 +7827,7 @@ type PatchInvitationsByIdResendData = {
7827
7827
  body?: {
7828
7828
  data: {
7829
7829
  attributes?: {
7830
- [key: string]: never;
7830
+ application_id?: string | unknown;
7831
7831
  };
7832
7832
  id: string;
7833
7833
  relationships?: {
@@ -9378,6 +9378,7 @@ type PatchInvitationsByIdAcceptData = {
9378
9378
  body: {
9379
9379
  data: {
9380
9380
  attributes?: {
9381
+ application_id?: string | unknown;
9381
9382
  token: string;
9382
9383
  };
9383
9384
  id: string;
@@ -11412,6 +11413,7 @@ type PostInvitationsData = {
11412
11413
  body: {
11413
11414
  data: {
11414
11415
  attributes?: {
11416
+ application_id?: string | unknown;
11415
11417
  email: string;
11416
11418
  inviter_id?: string | unknown;
11417
11419
  role: "admin" | "member" | "editor" | "viewer";
@@ -26637,11 +26639,7 @@ declare const patchExtractionResultsByIdRegenerate: <ThrowOnError extends boolea
26637
26639
  /**
26638
26640
  * Create confirm
26639
26641
  *
26640
- * Creates a new resource. Returns the created resource with generated ID.
26641
- *
26642
- * **Authentication:** Required - Bearer token or API key
26643
- * **Rate Limit:** 20 requests per minute
26644
- *
26642
+ * Confirm a user's email address using a confirmation token
26645
26643
  */
26646
26644
  declare const postUsersAuthConfirm: <ThrowOnError extends boolean = false>(options: Options<PostUsersAuthConfirmData, ThrowOnError>) => RequestResult<PostUsersAuthConfirmResponses, PostUsersAuthConfirmErrors, ThrowOnError, "fields">;
26647
26645
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gpt-core/client",
3
- "version": "0.7.86",
3
+ "version": "0.7.87",
4
4
  "description": "TypeScript SDK for GPT Core Client API - Document extraction, AI agents, and workspace management",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -43,15 +43,6 @@
43
43
  "publishConfig": {
44
44
  "access": "public"
45
45
  },
46
- "scripts": {
47
- "generate": "openapi-ts",
48
- "typecheck": "tsc --noEmit",
49
- "build": "npm run typecheck && tsup src/index.ts --format cjs,esm --dts",
50
- "test": "vitest run",
51
- "test:watch": "vitest",
52
- "test:ui": "vitest --ui",
53
- "test:coverage": "vitest run --coverage"
54
- },
55
46
  "dependencies": {
56
47
  "eventsource-parser": "^3.0.6",
57
48
  "zod": "^3.25.76"
@@ -63,5 +54,14 @@
63
54
  "tsup": "^8.5.1",
64
55
  "typescript": "^5.9.3",
65
56
  "vitest": "^4.0.15"
57
+ },
58
+ "scripts": {
59
+ "generate": "openapi-ts",
60
+ "typecheck": "tsc --noEmit",
61
+ "build": "npm run typecheck && tsup src/index.ts --format cjs,esm --dts",
62
+ "test": "vitest run",
63
+ "test:watch": "vitest",
64
+ "test:ui": "vitest --ui",
65
+ "test:coverage": "vitest run --coverage"
66
66
  }
67
- }
67
+ }