graphlit-client 1.0.20251119003 → 1.0.20251123001
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/client.d.ts +4 -0
- package/dist/client.js +28 -0
- package/dist/generated/graphql-documents.d.ts +4 -0
- package/dist/generated/graphql-documents.js +568 -90
- package/dist/generated/graphql-types.d.ts +1074 -107
- package/dist/generated/graphql-types.js +42 -11
- package/package.json +1 -1
package/dist/client.d.ts
CHANGED
|
@@ -297,6 +297,7 @@ declare class Graphlit {
|
|
|
297
297
|
getPerson(id: string): Promise<Types.GetPersonQuery>;
|
|
298
298
|
queryPersons(filter?: Types.PersonFilter): Promise<Types.QueryPersonsQuery>;
|
|
299
299
|
countPersons(filter?: Types.PersonFilter, correlationId?: string): Promise<Types.CountPersonsQuery>;
|
|
300
|
+
enrichPersons(connector: Types.EntityEnrichmentConnectorInput, filter?: Types.PersonFilter, correlationId?: string): Promise<Types.EnrichPersonsMutation>;
|
|
300
301
|
createOrganization(organization: Types.OrganizationInput): Promise<Types.CreateOrganizationMutation>;
|
|
301
302
|
updateOrganization(organization: Types.OrganizationUpdateInput): Promise<Types.UpdateOrganizationMutation>;
|
|
302
303
|
deleteOrganization(id: string): Promise<Types.DeleteOrganizationMutation>;
|
|
@@ -305,6 +306,7 @@ declare class Graphlit {
|
|
|
305
306
|
getOrganization(id: string): Promise<Types.GetOrganizationQuery>;
|
|
306
307
|
queryOrganizations(filter?: Types.OrganizationFilter): Promise<Types.QueryOrganizationsQuery>;
|
|
307
308
|
countOrganizations(filter?: Types.OrganizationFilter, correlationId?: string): Promise<Types.CountOrganizationsQuery>;
|
|
309
|
+
enrichOrganizations(connector: Types.EntityEnrichmentConnectorInput, filter?: Types.OrganizationFilter, correlationId?: string): Promise<Types.EnrichOrganizationsMutation>;
|
|
308
310
|
createPlace(place: Types.PlaceInput): Promise<Types.CreatePlaceMutation>;
|
|
309
311
|
updatePlace(place: Types.PlaceUpdateInput): Promise<Types.UpdatePlaceMutation>;
|
|
310
312
|
deletePlace(id: string): Promise<Types.DeletePlaceMutation>;
|
|
@@ -313,6 +315,7 @@ declare class Graphlit {
|
|
|
313
315
|
getPlace(id: string): Promise<Types.GetPlaceQuery>;
|
|
314
316
|
queryPlaces(filter?: Types.PlaceFilter): Promise<Types.QueryPlacesQuery>;
|
|
315
317
|
countPlaces(filter?: Types.PlaceFilter, correlationId?: string): Promise<Types.CountPlacesQuery>;
|
|
318
|
+
enrichPlaces(connector: Types.EntityEnrichmentConnectorInput, filter?: Types.PlaceFilter, correlationId?: string): Promise<Types.EnrichPlacesMutation>;
|
|
316
319
|
createEvent(event: Types.EventInput): Promise<Types.CreateEventMutation>;
|
|
317
320
|
updateEvent(event: Types.EventUpdateInput): Promise<Types.UpdateEventMutation>;
|
|
318
321
|
deleteEvent(id: string): Promise<Types.DeleteEventMutation>;
|
|
@@ -329,6 +332,7 @@ declare class Graphlit {
|
|
|
329
332
|
getProduct(id: string): Promise<Types.GetProductQuery>;
|
|
330
333
|
queryProducts(filter?: Types.ProductFilter): Promise<Types.QueryProductsQuery>;
|
|
331
334
|
countProducts(filter?: Types.ProductFilter, correlationId?: string): Promise<Types.CountProductsQuery>;
|
|
335
|
+
enrichProducts(connector: Types.EntityEnrichmentConnectorInput, filter?: Types.ProductFilter, correlationId?: string): Promise<Types.EnrichProductsMutation>;
|
|
332
336
|
createRepo(repo: Types.RepoInput): Promise<Types.CreateRepoMutation>;
|
|
333
337
|
updateRepo(repo: Types.RepoUpdateInput): Promise<Types.UpdateRepoMutation>;
|
|
334
338
|
deleteRepo(id: string): Promise<Types.DeleteRepoMutation>;
|
package/dist/client.js
CHANGED
|
@@ -1384,6 +1384,13 @@ class Graphlit {
|
|
|
1384
1384
|
correlationId: correlationId,
|
|
1385
1385
|
});
|
|
1386
1386
|
}
|
|
1387
|
+
async enrichPersons(connector, filter, correlationId) {
|
|
1388
|
+
return this.mutateAndCheckError(Documents.EnrichPersons, {
|
|
1389
|
+
connector: connector,
|
|
1390
|
+
filter: filter,
|
|
1391
|
+
correlationId: correlationId,
|
|
1392
|
+
});
|
|
1393
|
+
}
|
|
1387
1394
|
async createOrganization(organization) {
|
|
1388
1395
|
return this.mutateAndCheckError(Documents.CreateOrganization, { organization: organization });
|
|
1389
1396
|
}
|
|
@@ -1418,6 +1425,13 @@ class Graphlit {
|
|
|
1418
1425
|
correlationId: correlationId,
|
|
1419
1426
|
});
|
|
1420
1427
|
}
|
|
1428
|
+
async enrichOrganizations(connector, filter, correlationId) {
|
|
1429
|
+
return this.mutateAndCheckError(Documents.EnrichOrganizations, {
|
|
1430
|
+
connector: connector,
|
|
1431
|
+
filter: filter,
|
|
1432
|
+
correlationId: correlationId,
|
|
1433
|
+
});
|
|
1434
|
+
}
|
|
1421
1435
|
async createPlace(place) {
|
|
1422
1436
|
return this.mutateAndCheckError(Documents.CreatePlace, { place: place });
|
|
1423
1437
|
}
|
|
@@ -1449,6 +1463,13 @@ class Graphlit {
|
|
|
1449
1463
|
correlationId: correlationId,
|
|
1450
1464
|
});
|
|
1451
1465
|
}
|
|
1466
|
+
async enrichPlaces(connector, filter, correlationId) {
|
|
1467
|
+
return this.mutateAndCheckError(Documents.EnrichPlaces, {
|
|
1468
|
+
connector: connector,
|
|
1469
|
+
filter: filter,
|
|
1470
|
+
correlationId: correlationId,
|
|
1471
|
+
});
|
|
1472
|
+
}
|
|
1452
1473
|
async createEvent(event) {
|
|
1453
1474
|
return this.mutateAndCheckError(Documents.CreateEvent, { event: event });
|
|
1454
1475
|
}
|
|
@@ -1511,6 +1532,13 @@ class Graphlit {
|
|
|
1511
1532
|
correlationId: correlationId,
|
|
1512
1533
|
});
|
|
1513
1534
|
}
|
|
1535
|
+
async enrichProducts(connector, filter, correlationId) {
|
|
1536
|
+
return this.mutateAndCheckError(Documents.EnrichProducts, {
|
|
1537
|
+
connector: connector,
|
|
1538
|
+
filter: filter,
|
|
1539
|
+
correlationId: correlationId,
|
|
1540
|
+
});
|
|
1541
|
+
}
|
|
1514
1542
|
async createRepo(repo) {
|
|
1515
1543
|
return this.mutateAndCheckError(Documents.CreateRepo, { repo: repo });
|
|
1516
1544
|
}
|
|
@@ -251,6 +251,7 @@ export declare const CreateOrganization: import("graphql").DocumentNode;
|
|
|
251
251
|
export declare const DeleteAllOrganizations: import("graphql").DocumentNode;
|
|
252
252
|
export declare const DeleteOrganization: import("graphql").DocumentNode;
|
|
253
253
|
export declare const DeleteOrganizations: import("graphql").DocumentNode;
|
|
254
|
+
export declare const EnrichOrganizations: import("graphql").DocumentNode;
|
|
254
255
|
export declare const GetOrganization: import("graphql").DocumentNode;
|
|
255
256
|
export declare const QueryOrganizations: import("graphql").DocumentNode;
|
|
256
257
|
export declare const UpdateOrganization: import("graphql").DocumentNode;
|
|
@@ -259,6 +260,7 @@ export declare const CreatePerson: import("graphql").DocumentNode;
|
|
|
259
260
|
export declare const DeleteAllPersons: import("graphql").DocumentNode;
|
|
260
261
|
export declare const DeletePerson: import("graphql").DocumentNode;
|
|
261
262
|
export declare const DeletePersons: import("graphql").DocumentNode;
|
|
263
|
+
export declare const EnrichPersons: import("graphql").DocumentNode;
|
|
262
264
|
export declare const GetPerson: import("graphql").DocumentNode;
|
|
263
265
|
export declare const QueryPersons: import("graphql").DocumentNode;
|
|
264
266
|
export declare const UpdatePerson: import("graphql").DocumentNode;
|
|
@@ -267,6 +269,7 @@ export declare const CreatePlace: import("graphql").DocumentNode;
|
|
|
267
269
|
export declare const DeleteAllPlaces: import("graphql").DocumentNode;
|
|
268
270
|
export declare const DeletePlace: import("graphql").DocumentNode;
|
|
269
271
|
export declare const DeletePlaces: import("graphql").DocumentNode;
|
|
272
|
+
export declare const EnrichPlaces: import("graphql").DocumentNode;
|
|
270
273
|
export declare const GetPlace: import("graphql").DocumentNode;
|
|
271
274
|
export declare const QueryPlaces: import("graphql").DocumentNode;
|
|
272
275
|
export declare const UpdatePlace: import("graphql").DocumentNode;
|
|
@@ -275,6 +278,7 @@ export declare const CreateProduct: import("graphql").DocumentNode;
|
|
|
275
278
|
export declare const DeleteAllProducts: import("graphql").DocumentNode;
|
|
276
279
|
export declare const DeleteProduct: import("graphql").DocumentNode;
|
|
277
280
|
export declare const DeleteProducts: import("graphql").DocumentNode;
|
|
281
|
+
export declare const EnrichProducts: import("graphql").DocumentNode;
|
|
278
282
|
export declare const GetProduct: import("graphql").DocumentNode;
|
|
279
283
|
export declare const QueryProducts: import("graphql").DocumentNode;
|
|
280
284
|
export declare const UpdateProduct: import("graphql").DocumentNode;
|