@apito-io/js-admin-sdk 2.5.0 → 2.7.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/README.md +17 -7
- package/dist/index.d.mts +54 -12
- package/dist/index.d.ts +54 -12
- package/dist/index.js +39 -32
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +42 -35
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/__tests__/client.test.ts +10 -4
- package/src/client.ts +133 -44
- package/src/index.ts +3 -0
- package/src/types.ts +40 -10
- package/src/version.ts +1 -1
package/README.md
CHANGED
|
@@ -151,11 +151,13 @@ These calls use the same admin client and system GraphQL endpoint as the rest of
|
|
|
151
151
|
|
|
152
152
|
| Method | Description |
|
|
153
153
|
|--------|-------------|
|
|
154
|
-
| `searchTenantUsers(projectId, limit?, offset?)` | List users registered for a project. |
|
|
154
|
+
| `searchTenantUsers(projectId, limit?, offset?)` | List users registered for a project (each row has `email`, `phone`, `tenant_id`). |
|
|
155
155
|
| `searchTenantsByDomain(projectId, domain)` | Exact domain lookup in project scope; returns `{ tenant }` (null if no match). |
|
|
156
|
-
| `createTenantUser(projectId,
|
|
157
|
-
| `loginTenantUser(
|
|
158
|
-
| `
|
|
156
|
+
| `createTenantUser(projectId, params)` | Create a local-password user; `params`: `{ password, role?, email?, phone? }` (engine validates required identifier per project). |
|
|
157
|
+
| `loginTenantUser(params)` | General: `{ projectId, password, email? or phone? }`. Google OAuth **code** flow: **`tenantGoogleOAuthState(projectId)`** then redirect; on callback **`loginTenantUser({ projectId, authMethod: 'google', code, state })`**. |
|
|
158
|
+
| `tenantGoogleOAuthState(projectId)` | Returns **`{ state }`** for the Google authorize URL (project must have client id, secret, redirect URI configured). |
|
|
159
|
+
| `updateTenantUser(userId, params)` | Mutate `email`, `phone`, `password`, and/or `role` (omit fields you do not want to send). |
|
|
160
|
+
| `deleteTenantUser(userId)` | Remove a tenant catalog user. |
|
|
159
161
|
|
|
160
162
|
On the engine system GraphQL API, `createTenant` accepts an optional `domain`; when set, the domain must be unused in the project (otherwise the mutation fails). `updateTenant` enforces the same when setting `domain` to a non-empty value. Call those mutations via `executeGraphQL` if needed.
|
|
161
163
|
|
|
@@ -163,9 +165,17 @@ On the engine system GraphQL API, `createTenant` accepts an optional `domain`; w
|
|
|
163
165
|
const projectId = 'your-project-id';
|
|
164
166
|
|
|
165
167
|
const { users, count } = await client.searchTenantUsers(projectId, 50, 0);
|
|
166
|
-
console.log(
|
|
168
|
+
console.log(
|
|
169
|
+
'users:',
|
|
170
|
+
count,
|
|
171
|
+
users.map((u) => u.email || u.phone || u.id),
|
|
172
|
+
);
|
|
167
173
|
|
|
168
|
-
const login = await client.loginTenantUser(
|
|
174
|
+
const login = await client.loginTenantUser({
|
|
175
|
+
projectId,
|
|
176
|
+
password: 'your-password',
|
|
177
|
+
email: 'user@example.com', // use phone: '+15551234567' when project is phone mode
|
|
178
|
+
});
|
|
169
179
|
if (login.token) {
|
|
170
180
|
console.log('tenant-scoped token:', login.token);
|
|
171
181
|
}
|
|
@@ -361,7 +371,7 @@ npm install
|
|
|
361
371
|
npm start
|
|
362
372
|
```
|
|
363
373
|
|
|
364
|
-
Pro tenant-user listing (optional `
|
|
374
|
+
Pro tenant-user listing (optional `APITO_TENANT_EMAIL` / `APITO_TENANT_PHONE` + `APITO_TENANT_PASSWORD` for login):
|
|
365
375
|
|
|
366
376
|
```bash
|
|
367
377
|
cd examples/tenant_users
|
package/dist/index.d.mts
CHANGED
|
@@ -72,8 +72,8 @@ interface CreateAndUpdateRequest {
|
|
|
72
72
|
/** Tenant catalog user from engine system DB (pro_tenant_users). */
|
|
73
73
|
interface TenantUser {
|
|
74
74
|
id: string;
|
|
75
|
-
username: string;
|
|
76
75
|
email?: string;
|
|
76
|
+
phone?: string;
|
|
77
77
|
role: string;
|
|
78
78
|
tenant_id: string;
|
|
79
79
|
provider?: string;
|
|
@@ -81,6 +81,36 @@ interface TenantUser {
|
|
|
81
81
|
created_at?: string;
|
|
82
82
|
updated_at?: string;
|
|
83
83
|
}
|
|
84
|
+
/** Login via system GraphQL `loginTenantUser`. Password path: use `email` or `phone` per project settings. Google OAuth code path: `authMethod: 'google'`, `code`, `state` from redirect (get `state` first via `tenantGoogleOAuthState`). */
|
|
85
|
+
interface TenantLoginParams {
|
|
86
|
+
projectId: string;
|
|
87
|
+
/** Required for general (password) login. */
|
|
88
|
+
password?: string;
|
|
89
|
+
email?: string;
|
|
90
|
+
phone?: string;
|
|
91
|
+
/** `general` (default) or `google`. */
|
|
92
|
+
authMethod?: string;
|
|
93
|
+
/** Google authorization code (with `authMethod: 'google'`). */
|
|
94
|
+
code?: string;
|
|
95
|
+
/** OAuth state from `tenantGoogleOAuthState` or callback (with `authMethod: 'google'`). */
|
|
96
|
+
state?: string;
|
|
97
|
+
}
|
|
98
|
+
interface TenantGoogleOAuthStateResponse {
|
|
99
|
+
state: string;
|
|
100
|
+
}
|
|
101
|
+
interface CreateTenantUserParams {
|
|
102
|
+
password: string;
|
|
103
|
+
role?: string;
|
|
104
|
+
email?: string;
|
|
105
|
+
phone?: string;
|
|
106
|
+
}
|
|
107
|
+
/** Optional fields for `updateTenantUser`; omitted keys are not sent. */
|
|
108
|
+
interface UpdateTenantUserParams {
|
|
109
|
+
email?: string;
|
|
110
|
+
phone?: string;
|
|
111
|
+
password?: string;
|
|
112
|
+
role?: string;
|
|
113
|
+
}
|
|
84
114
|
interface TenantLoginResponse {
|
|
85
115
|
token: string;
|
|
86
116
|
user?: TenantUser;
|
|
@@ -129,11 +159,13 @@ interface InjectedDBOperationInterface {
|
|
|
129
159
|
}): Promise<GraphQLResponse>;
|
|
130
160
|
/** @param token Legacy; ignored. Auth uses client API key. */
|
|
131
161
|
generateTenantToken(tenantId: string, duration?: string, role?: string): Promise<string>;
|
|
132
|
-
loginTenantUser(
|
|
133
|
-
|
|
162
|
+
loginTenantUser(params: TenantLoginParams): Promise<TenantLoginResponse>;
|
|
163
|
+
tenantGoogleOAuthState(projectId: string): Promise<TenantGoogleOAuthStateResponse>;
|
|
134
164
|
searchTenantUsers(projectId: string, limit?: number, offset?: number): Promise<TenantUsersResponse>;
|
|
135
165
|
searchTenantsByDomain(projectId: string, domain: string): Promise<TenantByDomainResponse>;
|
|
136
|
-
createTenantUser(projectId: string,
|
|
166
|
+
createTenantUser(projectId: string, params: CreateTenantUserParams): Promise<TenantUser>;
|
|
167
|
+
updateTenantUser(userId: string, params: UpdateTenantUserParams): Promise<TenantUser>;
|
|
168
|
+
deleteTenantUser(userId: string): Promise<boolean>;
|
|
137
169
|
getSingleResource(model: string, id: string, singlePageData?: boolean): Promise<DefaultDocumentStructure>;
|
|
138
170
|
searchResources(model: string, filter?: Record<string, any>, aggregate?: boolean): Promise<SearchResult>;
|
|
139
171
|
getRelationDocuments(id: string, connection: Record<string, any>): Promise<SearchResult>;
|
|
@@ -191,13 +223,15 @@ declare class ApitoClient implements InjectedDBOperationInterface {
|
|
|
191
223
|
*/
|
|
192
224
|
generateTenantToken(tenantId: string, duration?: string, role?: string): Promise<string>;
|
|
193
225
|
/**
|
|
194
|
-
* Tenant catalog login (system GraphQL).
|
|
226
|
+
* Tenant catalog login (system GraphQL `loginTenantUser`). Password path: pass `password` and `email` or `phone` per project Authentication settings. Google OAuth path: `authMethod: 'google'` with `code` and `state` from the redirect; call `tenantGoogleOAuthState(projectId)` before opening Google to obtain `state`.
|
|
195
227
|
*/
|
|
196
|
-
loginTenantUser(
|
|
228
|
+
loginTenantUser(params: TenantLoginParams): Promise<TenantLoginResponse>;
|
|
197
229
|
/**
|
|
198
|
-
*
|
|
230
|
+
* Signed OAuth state for tenant Google login (system query `tenantGoogleOAuthState`). Use in the authorize URL together with project `google_client_id` and the configured redirect URI.
|
|
199
231
|
*/
|
|
200
|
-
|
|
232
|
+
tenantGoogleOAuthState(projectId: string): Promise<{
|
|
233
|
+
state: string;
|
|
234
|
+
}>;
|
|
201
235
|
/**
|
|
202
236
|
* Search tenant users for a project.
|
|
203
237
|
*/
|
|
@@ -207,9 +241,17 @@ declare class ApitoClient implements InjectedDBOperationInterface {
|
|
|
207
241
|
*/
|
|
208
242
|
searchTenantsByDomain(projectId: string, domain: string): Promise<TenantByDomainResponse>;
|
|
209
243
|
/**
|
|
210
|
-
* Create a tenant catalog user (local password).
|
|
244
|
+
* Create a tenant catalog user (local password). Use `email` and/or `phone` per engine validation for the project identifier mode.
|
|
245
|
+
*/
|
|
246
|
+
createTenantUser(projectId: string, params: CreateTenantUserParams): Promise<TenantUser>;
|
|
247
|
+
/**
|
|
248
|
+
* Update a tenant catalog user. Project scope is implied by the API key. Only include fields to change.
|
|
249
|
+
*/
|
|
250
|
+
updateTenantUser(userId: string, params: UpdateTenantUserParams): Promise<TenantUser>;
|
|
251
|
+
/**
|
|
252
|
+
* Delete a tenant catalog user by id. Project scope is implied by the API key.
|
|
211
253
|
*/
|
|
212
|
-
|
|
254
|
+
deleteTenantUser(userId: string): Promise<boolean>;
|
|
213
255
|
/**
|
|
214
256
|
* Get a single resource by model and ID
|
|
215
257
|
*/
|
|
@@ -277,10 +319,10 @@ declare class TypedOperations {
|
|
|
277
319
|
/**
|
|
278
320
|
* Apito JavaScript internal SDK version (kept in sync with package.json for releases)
|
|
279
321
|
*/
|
|
280
|
-
declare const Version = "2.
|
|
322
|
+
declare const Version = "2.7.0";
|
|
281
323
|
/**
|
|
282
324
|
* GetVersion returns the current version of the SDK
|
|
283
325
|
*/
|
|
284
326
|
declare function getVersion(): string;
|
|
285
327
|
|
|
286
|
-
export { ApitoClient, ApitoError, type ClientConfig, type ConnectionOptions, type CreateAndUpdateRequest, type DefaultDocumentStructure, type Filter, GraphQLError, type GraphQLErrorLocation, type GraphQLResponse, type InjectedDBOperationInterface, type MetaField, type RequestOptions, type SearchOptions, type SearchResult, type TenantByDomainResponse, type TenantCatalogSearchRow, type TenantLoginResponse, type TenantUser, type TenantUsersResponse, type TypedDocumentStructure, TypedOperations, type TypedSearchResult, ValidationError, Version, createClient, ApitoClient as default, getVersion };
|
|
328
|
+
export { ApitoClient, ApitoError, type ClientConfig, type ConnectionOptions, type CreateAndUpdateRequest, type CreateTenantUserParams, type DefaultDocumentStructure, type Filter, GraphQLError, type GraphQLErrorLocation, type GraphQLResponse, type InjectedDBOperationInterface, type MetaField, type RequestOptions, type SearchOptions, type SearchResult, type TenantByDomainResponse, type TenantCatalogSearchRow, type TenantGoogleOAuthStateResponse, type TenantLoginParams, type TenantLoginResponse, type TenantUser, type TenantUsersResponse, type TypedDocumentStructure, TypedOperations, type TypedSearchResult, type UpdateTenantUserParams, ValidationError, Version, createClient, ApitoClient as default, getVersion };
|
package/dist/index.d.ts
CHANGED
|
@@ -72,8 +72,8 @@ interface CreateAndUpdateRequest {
|
|
|
72
72
|
/** Tenant catalog user from engine system DB (pro_tenant_users). */
|
|
73
73
|
interface TenantUser {
|
|
74
74
|
id: string;
|
|
75
|
-
username: string;
|
|
76
75
|
email?: string;
|
|
76
|
+
phone?: string;
|
|
77
77
|
role: string;
|
|
78
78
|
tenant_id: string;
|
|
79
79
|
provider?: string;
|
|
@@ -81,6 +81,36 @@ interface TenantUser {
|
|
|
81
81
|
created_at?: string;
|
|
82
82
|
updated_at?: string;
|
|
83
83
|
}
|
|
84
|
+
/** Login via system GraphQL `loginTenantUser`. Password path: use `email` or `phone` per project settings. Google OAuth code path: `authMethod: 'google'`, `code`, `state` from redirect (get `state` first via `tenantGoogleOAuthState`). */
|
|
85
|
+
interface TenantLoginParams {
|
|
86
|
+
projectId: string;
|
|
87
|
+
/** Required for general (password) login. */
|
|
88
|
+
password?: string;
|
|
89
|
+
email?: string;
|
|
90
|
+
phone?: string;
|
|
91
|
+
/** `general` (default) or `google`. */
|
|
92
|
+
authMethod?: string;
|
|
93
|
+
/** Google authorization code (with `authMethod: 'google'`). */
|
|
94
|
+
code?: string;
|
|
95
|
+
/** OAuth state from `tenantGoogleOAuthState` or callback (with `authMethod: 'google'`). */
|
|
96
|
+
state?: string;
|
|
97
|
+
}
|
|
98
|
+
interface TenantGoogleOAuthStateResponse {
|
|
99
|
+
state: string;
|
|
100
|
+
}
|
|
101
|
+
interface CreateTenantUserParams {
|
|
102
|
+
password: string;
|
|
103
|
+
role?: string;
|
|
104
|
+
email?: string;
|
|
105
|
+
phone?: string;
|
|
106
|
+
}
|
|
107
|
+
/** Optional fields for `updateTenantUser`; omitted keys are not sent. */
|
|
108
|
+
interface UpdateTenantUserParams {
|
|
109
|
+
email?: string;
|
|
110
|
+
phone?: string;
|
|
111
|
+
password?: string;
|
|
112
|
+
role?: string;
|
|
113
|
+
}
|
|
84
114
|
interface TenantLoginResponse {
|
|
85
115
|
token: string;
|
|
86
116
|
user?: TenantUser;
|
|
@@ -129,11 +159,13 @@ interface InjectedDBOperationInterface {
|
|
|
129
159
|
}): Promise<GraphQLResponse>;
|
|
130
160
|
/** @param token Legacy; ignored. Auth uses client API key. */
|
|
131
161
|
generateTenantToken(tenantId: string, duration?: string, role?: string): Promise<string>;
|
|
132
|
-
loginTenantUser(
|
|
133
|
-
|
|
162
|
+
loginTenantUser(params: TenantLoginParams): Promise<TenantLoginResponse>;
|
|
163
|
+
tenantGoogleOAuthState(projectId: string): Promise<TenantGoogleOAuthStateResponse>;
|
|
134
164
|
searchTenantUsers(projectId: string, limit?: number, offset?: number): Promise<TenantUsersResponse>;
|
|
135
165
|
searchTenantsByDomain(projectId: string, domain: string): Promise<TenantByDomainResponse>;
|
|
136
|
-
createTenantUser(projectId: string,
|
|
166
|
+
createTenantUser(projectId: string, params: CreateTenantUserParams): Promise<TenantUser>;
|
|
167
|
+
updateTenantUser(userId: string, params: UpdateTenantUserParams): Promise<TenantUser>;
|
|
168
|
+
deleteTenantUser(userId: string): Promise<boolean>;
|
|
137
169
|
getSingleResource(model: string, id: string, singlePageData?: boolean): Promise<DefaultDocumentStructure>;
|
|
138
170
|
searchResources(model: string, filter?: Record<string, any>, aggregate?: boolean): Promise<SearchResult>;
|
|
139
171
|
getRelationDocuments(id: string, connection: Record<string, any>): Promise<SearchResult>;
|
|
@@ -191,13 +223,15 @@ declare class ApitoClient implements InjectedDBOperationInterface {
|
|
|
191
223
|
*/
|
|
192
224
|
generateTenantToken(tenantId: string, duration?: string, role?: string): Promise<string>;
|
|
193
225
|
/**
|
|
194
|
-
* Tenant catalog login (system GraphQL).
|
|
226
|
+
* Tenant catalog login (system GraphQL `loginTenantUser`). Password path: pass `password` and `email` or `phone` per project Authentication settings. Google OAuth path: `authMethod: 'google'` with `code` and `state` from the redirect; call `tenantGoogleOAuthState(projectId)` before opening Google to obtain `state`.
|
|
195
227
|
*/
|
|
196
|
-
loginTenantUser(
|
|
228
|
+
loginTenantUser(params: TenantLoginParams): Promise<TenantLoginResponse>;
|
|
197
229
|
/**
|
|
198
|
-
*
|
|
230
|
+
* Signed OAuth state for tenant Google login (system query `tenantGoogleOAuthState`). Use in the authorize URL together with project `google_client_id` and the configured redirect URI.
|
|
199
231
|
*/
|
|
200
|
-
|
|
232
|
+
tenantGoogleOAuthState(projectId: string): Promise<{
|
|
233
|
+
state: string;
|
|
234
|
+
}>;
|
|
201
235
|
/**
|
|
202
236
|
* Search tenant users for a project.
|
|
203
237
|
*/
|
|
@@ -207,9 +241,17 @@ declare class ApitoClient implements InjectedDBOperationInterface {
|
|
|
207
241
|
*/
|
|
208
242
|
searchTenantsByDomain(projectId: string, domain: string): Promise<TenantByDomainResponse>;
|
|
209
243
|
/**
|
|
210
|
-
* Create a tenant catalog user (local password).
|
|
244
|
+
* Create a tenant catalog user (local password). Use `email` and/or `phone` per engine validation for the project identifier mode.
|
|
245
|
+
*/
|
|
246
|
+
createTenantUser(projectId: string, params: CreateTenantUserParams): Promise<TenantUser>;
|
|
247
|
+
/**
|
|
248
|
+
* Update a tenant catalog user. Project scope is implied by the API key. Only include fields to change.
|
|
249
|
+
*/
|
|
250
|
+
updateTenantUser(userId: string, params: UpdateTenantUserParams): Promise<TenantUser>;
|
|
251
|
+
/**
|
|
252
|
+
* Delete a tenant catalog user by id. Project scope is implied by the API key.
|
|
211
253
|
*/
|
|
212
|
-
|
|
254
|
+
deleteTenantUser(userId: string): Promise<boolean>;
|
|
213
255
|
/**
|
|
214
256
|
* Get a single resource by model and ID
|
|
215
257
|
*/
|
|
@@ -277,10 +319,10 @@ declare class TypedOperations {
|
|
|
277
319
|
/**
|
|
278
320
|
* Apito JavaScript internal SDK version (kept in sync with package.json for releases)
|
|
279
321
|
*/
|
|
280
|
-
declare const Version = "2.
|
|
322
|
+
declare const Version = "2.7.0";
|
|
281
323
|
/**
|
|
282
324
|
* GetVersion returns the current version of the SDK
|
|
283
325
|
*/
|
|
284
326
|
declare function getVersion(): string;
|
|
285
327
|
|
|
286
|
-
export { ApitoClient, ApitoError, type ClientConfig, type ConnectionOptions, type CreateAndUpdateRequest, type DefaultDocumentStructure, type Filter, GraphQLError, type GraphQLErrorLocation, type GraphQLResponse, type InjectedDBOperationInterface, type MetaField, type RequestOptions, type SearchOptions, type SearchResult, type TenantByDomainResponse, type TenantCatalogSearchRow, type TenantLoginResponse, type TenantUser, type TenantUsersResponse, type TypedDocumentStructure, TypedOperations, type TypedSearchResult, ValidationError, Version, createClient, ApitoClient as default, getVersion };
|
|
328
|
+
export { ApitoClient, ApitoError, type ClientConfig, type ConnectionOptions, type CreateAndUpdateRequest, type CreateTenantUserParams, type DefaultDocumentStructure, type Filter, GraphQLError, type GraphQLErrorLocation, type GraphQLResponse, type InjectedDBOperationInterface, type MetaField, type RequestOptions, type SearchOptions, type SearchResult, type TenantByDomainResponse, type TenantCatalogSearchRow, type TenantGoogleOAuthStateResponse, type TenantLoginParams, type TenantLoginResponse, type TenantUser, type TenantUsersResponse, type TypedDocumentStructure, TypedOperations, type TypedSearchResult, type UpdateTenantUserParams, ValidationError, Version, createClient, ApitoClient as default, getVersion };
|
package/dist/index.js
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
// @apito-io/js-admin-sdk - Admin SDK for Apito GraphQL API
|
|
2
|
-
var S=Object.create;var m=Object.defineProperty;var
|
|
2
|
+
var S=Object.create;var m=Object.defineProperty;var $=Object.getOwnPropertyDescriptor;var D=Object.getOwnPropertyNames;var U=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var b=(i,e)=>{for(var t in e)m(i,t,{get:e[t],enumerable:!0})},_=(i,e,t,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of D(e))!x.call(i,n)&&n!==t&&m(i,n,{get:()=>e[n],enumerable:!(r=$(e,n))||r.enumerable});return i};var P=(i,e,t)=>(t=i!=null?S(U(i)):{},_(e||!i||!i.__esModule?m(t,"default",{value:i,enumerable:!0}):t,i)),v=i=>_(m({},"__esModule",{value:!0}),i);var I={};b(I,{ApitoClient:()=>l,ApitoError:()=>u,GraphQLError:()=>g,TypedOperations:()=>h,ValidationError:()=>o,Version:()=>f,createClient:()=>R,default:()=>l,getVersion:()=>w});module.exports=v(I);var y=P(require("axios"));var u=class extends Error{constructor(t,r,n,a){super(t);this.code=r;this.statusCode=n;this.details=a;this.name="ApitoError"}},g=class extends u{constructor(t,r,n){super(t,"GRAPHQL_ERROR");this.graphQLErrors=r;this.response=n;this.name="GraphQLError"}get partialData(){return this.response?.data}},o=class extends u{constructor(t,r){super(t,"VALIDATION_ERROR");this.field=r;this.name="ValidationError"}};var l=class{constructor(e){this.baseURL=e.baseURL,this.apiKey=e.apiKey,this.tenantId=e.tenantId,this.httpClient=y.default.create({timeout:e.timeout||3e4,headers:{"Content-Type":"application/json",...this.apiKey.startsWith("cli-")||this.apiKey.startsWith("sdk-")?{"X-Apito-Sync-Key":this.apiKey}:{"X-Apito-Key":this.apiKey}},...e.httpClient}),this.tenantId&&(this.httpClient.defaults.headers["X-Apito-Tenant-ID"]=this.tenantId)}async executeGraphQL(e,t,r){try{let n={query:e,variables:t||{}},a={"Content-Type":"application/json",...this.apiKey.startsWith("cli-")||this.apiKey.startsWith("sdk-")?{"X-Apito-Sync-Key":this.apiKey}:{"X-Apito-Key":this.apiKey}};(r?.tenantId||this.tenantId)&&(a["X-Apito-Tenant-ID"]=r?.tenantId||this.tenantId);let s=await this.httpClient.post(this.baseURL,n,{headers:a});if(s.data.errors&&s.data.errors.length>0)throw new g("GraphQL query failed",s.data.errors,s.data);return s.data}catch(n){throw y.default.isAxiosError(n)?new u(n.response?.data?.message||n.message,"HTTP_ERROR",n.response?.status,n.response?.data):n}}async generateTenantToken(e,t,r){let n=(t??"").trim();if(!n){let p=new Date;n=`${p.getUTCFullYear()+1}-${String(p.getUTCMonth()+1).padStart(2,"0")}-${String(p.getUTCDate()).padStart(2,"0")}`}let a=`
|
|
3
3
|
mutation GenerateTenantToken($tenantId: String!, $duration: String!, $role: String) {
|
|
4
4
|
generateTenantToken(tenant_id: $tenantId, duration: $duration, role: $role) {
|
|
5
5
|
token
|
|
6
6
|
}
|
|
7
7
|
}
|
|
8
|
-
`,
|
|
9
|
-
query LoginTenantUser($project_id: String!, $
|
|
10
|
-
loginTenantUser(project_id: $project_id,
|
|
8
|
+
`,s={tenantId:e,duration:n,role:r!==void 0&&r.trim()!==""?r.trim():null},c=(await this.executeGraphQL(a,s,{tenantId:e})).data?.generateTenantToken;if(!c?.token)throw new o("Invalid response format for tenant token");return c.token}async loginTenantUser(e){let t=(e.authMethod??"general").trim().toLowerCase()||"general",r={project_id:e.projectId};if(t==="google"){r.auth_method="google";let d=(e.code??"").trim(),c=(e.state??"").trim();if(!d||!c)throw new o("code and state are required for Google login");r.code=d,r.state=c}else{let d=(e.password??"").trim();if(!d)throw new o("password is required");r.password=d;let c=(e.email??"").trim(),p=(e.phone??"").trim();if(!c&&!p)throw new o("email or phone is required");c&&(r.email=c),p&&(r.phone=p)}let s=(await this.executeGraphQL(`
|
|
9
|
+
query LoginTenantUser($project_id: String!, $password: String, $auth_method: String, $email: String, $phone: String, $code: String, $state: String) {
|
|
10
|
+
loginTenantUser(project_id: $project_id, password: $password, auth_method: $auth_method, email: $email, phone: $phone, code: $code, state: $state) {
|
|
11
11
|
token
|
|
12
12
|
user {
|
|
13
13
|
id
|
|
14
|
-
username
|
|
15
14
|
email
|
|
15
|
+
phone
|
|
16
16
|
role
|
|
17
17
|
provider
|
|
18
18
|
tenant_id
|
|
@@ -22,31 +22,20 @@ var S=Object.create;var m=Object.defineProperty;var D=Object.getOwnPropertyDescr
|
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
|
-
`,
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
user {
|
|
30
|
-
id
|
|
31
|
-
username
|
|
32
|
-
email
|
|
33
|
-
role
|
|
34
|
-
provider
|
|
35
|
-
tenant_id
|
|
36
|
-
status
|
|
37
|
-
created_at
|
|
38
|
-
updated_at
|
|
39
|
-
}
|
|
25
|
+
`,r)).data?.loginTenantUser;if(!s?.token)throw new o("Invalid response format for loginTenantUser");return{token:s.token,user:s.user}}async tenantGoogleOAuthState(e){let t=`
|
|
26
|
+
query TenantGoogleOAuthState($project_id: String!) {
|
|
27
|
+
tenantGoogleOAuthState(project_id: $project_id) {
|
|
28
|
+
state
|
|
40
29
|
}
|
|
41
30
|
}
|
|
42
|
-
`,
|
|
31
|
+
`,r={project_id:e},a=(await this.executeGraphQL(t,r)).data?.tenantGoogleOAuthState,s=typeof a?.state=="string"?a.state.trim():"";if(!s)throw new o("Invalid response format for tenantGoogleOAuthState");return{state:s}}async searchTenantUsers(e,t,r){let n=`
|
|
43
32
|
query SearchTenantUsers($project_id: String!, $limit: Int, $offset: Int) {
|
|
44
33
|
searchTenantUsers(project_id: $project_id, limit: $limit, offset: $offset) {
|
|
45
34
|
count
|
|
46
35
|
users {
|
|
47
36
|
id
|
|
48
|
-
username
|
|
49
37
|
email
|
|
38
|
+
phone
|
|
50
39
|
role
|
|
51
40
|
provider
|
|
52
41
|
tenant_id
|
|
@@ -56,7 +45,7 @@ var S=Object.create;var m=Object.defineProperty;var D=Object.getOwnPropertyDescr
|
|
|
56
45
|
}
|
|
57
46
|
}
|
|
58
47
|
}
|
|
59
|
-
`,
|
|
48
|
+
`,a={project_id:e};t!==void 0&&(a.limit=t),r!==void 0&&(a.offset=r);let d=(await this.executeGraphQL(n,a)).data?.searchTenantUsers;if(!d)throw new o("Invalid response format for searchTenantUsers");let c=0;return typeof d.count=="number"&&(c=d.count),{users:d.users??[],count:c}}async searchTenantsByDomain(e,t){let r=`
|
|
60
49
|
query SearchTenantsByDomain($project_id: String!, $domain: String!) {
|
|
61
50
|
searchTenantsByDomain(project_id: $project_id, domain: $domain) {
|
|
62
51
|
tenant {
|
|
@@ -68,12 +57,12 @@ var S=Object.create;var m=Object.defineProperty;var D=Object.getOwnPropertyDescr
|
|
|
68
57
|
}
|
|
69
58
|
}
|
|
70
59
|
}
|
|
71
|
-
`,n={project_id:e,domain:t},
|
|
72
|
-
mutation CreateTenantUser($project_id: String!, $
|
|
73
|
-
createTenantUser(project_id: $project_id,
|
|
60
|
+
`,n={project_id:e,domain:t},s=(await this.executeGraphQL(r,n)).data?.searchTenantsByDomain;if(!s)throw new o("Invalid response format for searchTenantsByDomain");return{tenant:s.tenant??null}}async createTenantUser(e,t){let r=(t.password??"").trim();if(!r)throw new o("password is required");let n=`
|
|
61
|
+
mutation CreateTenantUser($project_id: String!, $password: String!, $role: String, $email: String, $phone: String) {
|
|
62
|
+
createTenantUser(project_id: $project_id, password: $password, role: $role, email: $email, phone: $phone) {
|
|
74
63
|
id
|
|
75
|
-
username
|
|
76
64
|
email
|
|
65
|
+
phone
|
|
77
66
|
role
|
|
78
67
|
provider
|
|
79
68
|
tenant_id
|
|
@@ -82,7 +71,25 @@ var S=Object.create;var m=Object.defineProperty;var D=Object.getOwnPropertyDescr
|
|
|
82
71
|
updated_at
|
|
83
72
|
}
|
|
84
73
|
}
|
|
85
|
-
`,
|
|
74
|
+
`,a={project_id:e,password:r},s=(t.role??"").trim();s&&(a.role=s);let d=(t.email??"").trim();d&&(a.email=d);let c=(t.phone??"").trim();c&&(a.phone=c);let T=(await this.executeGraphQL(n,a)).data?.createTenantUser;if(!T?.id)throw new o("Invalid response format for createTenantUser");return T}async updateTenantUser(e,t){let r=(e??"").trim();if(!r)throw new o("userId is required");if(t.email===void 0&&t.phone===void 0&&t.password===void 0&&t.role===void 0)throw new o("at least one field must be provided");let n=`
|
|
75
|
+
mutation UpdateTenantUser($user_id: String!, $email: String, $phone: String, $password: String, $role: String) {
|
|
76
|
+
updateTenantUser(user_id: $user_id, email: $email, phone: $phone, password: $password, role: $role) {
|
|
77
|
+
id
|
|
78
|
+
email
|
|
79
|
+
phone
|
|
80
|
+
role
|
|
81
|
+
provider
|
|
82
|
+
tenant_id
|
|
83
|
+
status
|
|
84
|
+
created_at
|
|
85
|
+
updated_at
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
`,a={user_id:r};t.email!==void 0&&(a.email=t.email),t.phone!==void 0&&(a.phone=t.phone),t.password!==void 0&&(a.password=t.password),t.role!==void 0&&(a.role=t.role);let d=(await this.executeGraphQL(n,a)).data?.updateTenantUser;if(!d?.id)throw new o("Invalid response format for updateTenantUser");return d}async deleteTenantUser(e){let t=(e??"").trim();if(!t)throw new o("userId is required");let a=(await this.executeGraphQL(`
|
|
89
|
+
mutation DeleteTenantUser($user_id: String!) {
|
|
90
|
+
deleteTenantUser(user_id: $user_id)
|
|
91
|
+
}
|
|
92
|
+
`,{user_id:t})).data?.deleteTenantUser;if(typeof a!="boolean")throw new o("Invalid response format for deleteTenantUser");return a}async getSingleResource(e,t,r=!1){let n=`
|
|
86
93
|
query GetSingleData($model: String, $_id: String!, $single_page_data: Boolean) {
|
|
87
94
|
getSingleData(model: $model, _id: $_id, single_page_data: $single_page_data) {
|
|
88
95
|
_key
|
|
@@ -100,7 +107,7 @@ var S=Object.create;var m=Object.defineProperty;var D=Object.getOwnPropertyDescr
|
|
|
100
107
|
type
|
|
101
108
|
}
|
|
102
109
|
}
|
|
103
|
-
`,
|
|
110
|
+
`,a={model:e,_id:t,single_page_data:r},s=await this.executeGraphQL(n,a);if(!s.data?.getSingleData)throw new o("Resource not found");return s.data.getSingleData}async searchResources(e,t={},r=!1){let n=`
|
|
104
111
|
query GetModelData(
|
|
105
112
|
$model: String!
|
|
106
113
|
$page: Int
|
|
@@ -133,7 +140,7 @@ var S=Object.create;var m=Object.defineProperty;var D=Object.getOwnPropertyDescr
|
|
|
133
140
|
count
|
|
134
141
|
}
|
|
135
142
|
}
|
|
136
|
-
`,
|
|
143
|
+
`,a={model:e};t&&typeof t=="object"&&(t._key!==void 0&&(a._key=t._key),t.page!==void 0&&(a.page=t.page),t.limit!==void 0&&(a.limit=t.limit),t.where!==void 0&&(a.where=t.where),t.search!==void 0&&(a.search=t.search));let s=await this.executeGraphQL(n,a);if(!s.data?.getModelData)throw new o("Invalid search response format");return s.data.getModelData}async getRelationDocuments(e,t){let r=`
|
|
137
144
|
query GetModelData($model: String!, $page: Int, $limit: Int, $where: JSON, $search: String, $connection : ListAllDataDetailedOfAModelConnectionPayload) {
|
|
138
145
|
getModelData(model: $model, page: $page, limit: $limit, where: $where, search: $search, connection: $connection) {
|
|
139
146
|
results {
|
|
@@ -152,7 +159,7 @@ var S=Object.create;var m=Object.defineProperty;var D=Object.getOwnPropertyDescr
|
|
|
152
159
|
count
|
|
153
160
|
}
|
|
154
161
|
}
|
|
155
|
-
`,n={connection:t};if(t.model)n.model=t.model;else throw new o("model is required in connection parameters");if(t.filter){let
|
|
162
|
+
`,n={connection:t};if(t.model)n.model=t.model;else throw new o("model is required in connection parameters");if(t.filter){let s=t.filter;s.page!==void 0&&(n.page=s.page),s.limit!==void 0&&(n.limit=s.limit),s.where!==void 0&&(n.where=s.where),s.search!==void 0&&(n.search=s.search)}let a=await this.executeGraphQL(r,n);if(!a.data?.getModelData)throw new o("Invalid relation documents response format");return a.data.getModelData}async createNewResource(e){if(!e.model)throw new o("model is required");if(!e.payload)throw new o("payload is required");let t=`
|
|
156
163
|
mutation CreateNewData($model: String!, $single_page_data: Boolean, $payload: JSON!, $connect: JSON) {
|
|
157
164
|
upsertModelData(
|
|
158
165
|
connect: $connect
|
|
@@ -208,5 +215,5 @@ var S=Object.create;var m=Object.defineProperty;var D=Object.getOwnPropertyDescr
|
|
|
208
215
|
data
|
|
209
216
|
}
|
|
210
217
|
}
|
|
211
|
-
`,n={stage:e,data:t};return(await this.executeGraphQL(r,n)).data?.debug}};function
|
|
218
|
+
`,n={stage:e,data:t};return(await this.executeGraphQL(r,n)).data?.debug}};function R(i){return new l(i)}var h=class i{constructor(e){this.client=e}static toTypedDocument(e){let t=JSON.parse(JSON.stringify(e.data));return{_key:e._key,_id:e._id,data:t,meta:e.meta,id:e.id,expire_at:e.expire_at,relation_doc_id:e.relation_doc_id,last_revision_doc_id:e.last_revision_doc_id,type:e.type,tenant_id:e.tenant_id,tenant_model:e.tenant_model}}async getSingleResourceTyped(e,t,r=!1){let n=await this.client.getSingleResource(e,t,r);return i.toTypedDocument(n)}async searchResourcesTyped(e,t={},r=!1){let n=await this.client.searchResources(e,t,r);return{results:n.results.map(a=>i.toTypedDocument(a)),count:n.count}}async getRelationDocumentsTyped(e,t){let r=await this.client.getRelationDocuments(e,t);return{results:r.results.map(n=>i.toTypedDocument(n)),count:r.count}}async createNewResourceTyped(e){let t=await this.client.createNewResource(e);return i.toTypedDocument(t)}async updateResourceTyped(e){let t=await this.client.updateResource(e);return i.toTypedDocument(t)}};var f="2.7.0";function w(){return f}0&&(module.exports={ApitoClient,ApitoError,GraphQLError,TypedOperations,ValidationError,Version,createClient,getVersion});
|
|
212
219
|
//# sourceMappingURL=index.js.map
|