@secrecy/lib 1.7.0-integration-trpc-client.43 → 1.7.0-integration-trpc-client.44

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.
@@ -42,11 +42,11 @@ export class SecrecyAppClient {
42
42
  async limits() {
43
43
  return await this.#apiClient.application.limits.query({});
44
44
  }
45
- async limitsComplete() {
46
- return await this.#apiClient.application.limitsComplete.query({});
45
+ async metrics() {
46
+ return await this.#apiClient.application.metrics.query({});
47
47
  }
48
- async limitsCons() {
49
- return await this.#apiClient.application.limitsCons.query({});
48
+ async quotas() {
49
+ return await this.#apiClient.application.quotas.query({});
50
50
  }
51
51
  async updateNotifications(notifications) {
52
52
  const updateAppNotifications = await this.#apiClient.application.updateNotification.mutate({
@@ -10,8 +10,8 @@ export declare class SecrecyAppClient {
10
10
  get userId(): string;
11
11
  getJwt(): Promise<string>;
12
12
  limits(): Promise<RouterOutputs['application']['limits']>;
13
- limitsComplete(): Promise<RouterOutputs['application']['limitsComplete']>;
14
- limitsCons(): Promise<RouterOutputs['application']['limitsCons']>;
13
+ metrics(): Promise<RouterOutputs['application']['metrics']>;
14
+ quotas(): Promise<RouterOutputs['application']['quotas']>;
15
15
  updateNotifications(notifications: Partial<UserAppNotifications>): Promise<UserAppNotifications>;
16
16
  notifications(): Promise<UserAppNotifications>;
17
17
  userPublicKey(userId: string): Promise<string>;