graphlit-client 1.0.20240418020 → 1.0.20240418021

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.
Files changed (2) hide show
  1. package/dist/client.d.ts +1 -1
  2. package/package.json +1 -1
package/dist/client.d.ts CHANGED
@@ -3,12 +3,12 @@ import * as Types from './generated/graphql-types';
3
3
  declare class Graphlit {
4
4
  client: ApolloClient<NormalizedCacheObject> | undefined;
5
5
  token: string | undefined;
6
+ correlationId: string | undefined;
6
7
  private apiUri;
7
8
  private organizationId;
8
9
  private environmentId;
9
10
  private ownerId;
10
11
  private jwtSecret;
11
- private correlationId;
12
12
  constructor(organizationId?: string, environmentId?: string, jwtSecret?: string, ownerId?: string, apiUri?: string, correlationId?: string);
13
13
  createAlert(alert: Types.AlertInput): Promise<Types.Alert>;
14
14
  updateAlert(alert: Types.AlertUpdateInput): Promise<Types.Alert>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20240418020",
3
+ "version": "1.0.20240418021",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",