@isnap/sdk 1.1.0-next.67 → 1.1.0-next.69

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.
@@ -10190,6 +10190,20 @@ export interface paths {
10190
10190
  };
10191
10191
  /** @enum {string} */
10192
10192
  private_api_status?: "active" | "not_injected" | "failed";
10193
+ /** @enum {string} */
10194
+ private_api_worker_status?: "running" | "degraded" | "crashed";
10195
+ diagnostics?: {
10196
+ /** @enum {string} */
10197
+ sip?: "enabled" | "disabled" | "unknown";
10198
+ /** @enum {string} */
10199
+ amfi?: "enabled" | "disabled" | "unknown";
10200
+ checks?: {
10201
+ [key: string]: "pass" | "fail" | "warn" | "unknown";
10202
+ };
10203
+ };
10204
+ machine_model?: string;
10205
+ os_build?: string;
10206
+ hostname?: string;
10193
10207
  };
10194
10208
  };
10195
10209
  };
@@ -10913,6 +10927,8 @@ export interface components {
10913
10927
  path: (string | number)[];
10914
10928
  message: string;
10915
10929
  code: string;
10930
+ min?: number;
10931
+ max?: number;
10916
10932
  }[] | null;
10917
10933
  };
10918
10934
  trace_id: string;
@@ -12131,6 +12147,7 @@ export interface components {
12131
12147
  line_id: string;
12132
12148
  config: components["schemas"]["EffectiveLineConfig"];
12133
12149
  overridden_keys: string[];
12150
+ knobs: components["schemas"]["LineConfigKnobs"];
12134
12151
  };
12135
12152
  EffectiveLineConfig: {
12136
12153
  default_use_typing_indicator: boolean;
@@ -12150,6 +12167,19 @@ export interface components {
12150
12167
  weight: number;
12151
12168
  }[];
12152
12169
  };
12170
+ LineConfigKnobs: {
12171
+ daily_new_contact_limit: components["schemas"]["LineConfigKnobBounds"];
12172
+ daily_known_contact_limit: components["schemas"]["LineConfigKnobBounds"];
12173
+ daily_total_message_limit: components["schemas"]["LineConfigKnobBounds"];
12174
+ hourly_message_limit: components["schemas"]["LineConfigKnobBounds"];
12175
+ minute_message_limit: components["schemas"]["LineConfigKnobBounds"];
12176
+ };
12177
+ LineConfigKnobBounds: {
12178
+ current: number;
12179
+ default: number;
12180
+ min: number;
12181
+ max: number;
12182
+ };
12153
12183
  LineConfigPatch: {
12154
12184
  default_use_typing_indicator?: boolean;
12155
12185
  /** @enum {string} */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@isnap/sdk",
3
- "version": "1.1.0-next.67",
3
+ "version": "1.1.0-next.69",
4
4
  "description": "Official TypeScript SDK for the iSnap P2P telephony API",
5
5
  "license": "MIT",
6
6
  "type": "module",