repzo 1.0.210 → 1.0.212

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.
@@ -17180,6 +17180,7 @@ export declare namespace Service {
17180
17180
  slides: {
17181
17181
  slide: StringId;
17182
17182
  feedback: "positive" | "negative" | "notProvided";
17183
+ zoom: boolean;
17183
17184
  duration_on_slide_ms: number;
17184
17185
  }[];
17185
17186
  }[];
@@ -17228,6 +17229,7 @@ export declare namespace Service {
17228
17229
  slides: {
17229
17230
  slide: StringId;
17230
17231
  feedback: "positive" | "negative" | "notProvided";
17232
+ zoom: boolean;
17231
17233
  duration_on_slide_ms: number;
17232
17234
  }[];
17233
17235
  }[];
@@ -17309,6 +17311,8 @@ export declare namespace Service {
17309
17311
  type: "presentation" | "sequence" | "slide";
17310
17312
  me?: boolean;
17311
17313
  client?: StringId | StringId[];
17314
+ presentation_disabled?: boolean;
17315
+ sequence_disabled?: boolean;
17312
17316
  } & (CLMPresentation.Find.Params | CLMSequence.Find.Params | CLMSlide.Find.Params);
17313
17317
  type Result = CLMPresentation.Find.Result | CLMSequence.Find.Result | CLMSlide.Find.Result;
17314
17318
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repzo",
3
- "version": "1.0.210",
3
+ "version": "1.0.212",
4
4
  "description": "Repzo TypeScript SDK",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -19472,6 +19472,7 @@ export namespace Service {
19472
19472
  slides: {
19473
19473
  slide: StringId;
19474
19474
  feedback: "positive" | "negative" | "notProvided";
19475
+ zoom: boolean;
19475
19476
  duration_on_slide_ms: number;
19476
19477
  }[];
19477
19478
  }[];
@@ -19516,6 +19517,7 @@ export namespace Service {
19516
19517
  slides: {
19517
19518
  slide: StringId;
19518
19519
  feedback: "positive" | "negative" | "notProvided";
19520
+ zoom: boolean;
19519
19521
  duration_on_slide_ms: number;
19520
19522
  }[];
19521
19523
  }[];
@@ -19634,6 +19636,8 @@ export namespace Service {
19634
19636
  type: "presentation" | "sequence" | "slide";
19635
19637
  me?: boolean;
19636
19638
  client?: StringId | StringId[];
19639
+ presentation_disabled?: boolean;
19640
+ sequence_disabled?: boolean;
19637
19641
  } & (
19638
19642
  | CLMPresentation.Find.Params
19639
19643
  | CLMSequence.Find.Params