@isnap/sdk 1.1.0-next.68 → 1.1.0-next.70
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/generated/openapi.d.ts +16 -0
- package/package.json +1 -1
|
@@ -10927,6 +10927,8 @@ export interface components {
|
|
|
10927
10927
|
path: (string | number)[];
|
|
10928
10928
|
message: string;
|
|
10929
10929
|
code: string;
|
|
10930
|
+
min?: number;
|
|
10931
|
+
max?: number;
|
|
10930
10932
|
}[] | null;
|
|
10931
10933
|
};
|
|
10932
10934
|
trace_id: string;
|
|
@@ -12145,6 +12147,7 @@ export interface components {
|
|
|
12145
12147
|
line_id: string;
|
|
12146
12148
|
config: components["schemas"]["EffectiveLineConfig"];
|
|
12147
12149
|
overridden_keys: string[];
|
|
12150
|
+
knobs: components["schemas"]["LineConfigKnobs"];
|
|
12148
12151
|
};
|
|
12149
12152
|
EffectiveLineConfig: {
|
|
12150
12153
|
default_use_typing_indicator: boolean;
|
|
@@ -12164,6 +12167,19 @@ export interface components {
|
|
|
12164
12167
|
weight: number;
|
|
12165
12168
|
}[];
|
|
12166
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
|
+
};
|
|
12167
12183
|
LineConfigPatch: {
|
|
12168
12184
|
default_use_typing_indicator?: boolean;
|
|
12169
12185
|
/** @enum {string} */
|