repzo 1.0.205 → 1.0.206

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.
@@ -16884,6 +16884,11 @@ export declare namespace Service {
16884
16884
  export type UpdateBody = Partial<Data>;
16885
16885
  export type PopulatedDoc = Data & {
16886
16886
  teams_populated?: Pick<Team.TeamSchema, "name" | "_id">[];
16887
+ sequences_count?: number;
16888
+ slides_count?: number;
16889
+ cover_slide?: PopulatedMediaStorage & {
16890
+ ContentLength?: number;
16891
+ };
16887
16892
  };
16888
16893
  type PopulatedKeys = "teams";
16889
16894
  type SortingKeys = "_id" | "createdAt" | "updatedAt";
@@ -16903,6 +16908,8 @@ export declare namespace Service {
16903
16908
  to_updatedAt?: number;
16904
16909
  from_createdAt?: number;
16905
16910
  to_createdAt?: number;
16911
+ with_counts?: boolean;
16912
+ with_cover?: boolean;
16906
16913
  };
16907
16914
  interface Result extends DefaultPaginationResult {
16908
16915
  data: PopulatedDoc[];
@@ -16912,6 +16919,8 @@ export declare namespace Service {
16912
16919
  type ID = string;
16913
16920
  type Params = {
16914
16921
  populatedKeys?: PopulatedKeys[];
16922
+ with_counts?: boolean;
16923
+ with_cover?: boolean;
16915
16924
  };
16916
16925
  type Result = PopulatedDoc;
16917
16926
  }
@@ -16934,6 +16943,7 @@ export declare namespace Service {
16934
16943
  export interface Data {
16935
16944
  _id: StringId;
16936
16945
  company_namespace: string[];
16946
+ name: string;
16937
16947
  presentation: StringId;
16938
16948
  product: StringId;
16939
16949
  disabled: boolean;
@@ -16944,6 +16954,7 @@ export declare namespace Service {
16944
16954
  }
16945
16955
  export interface CreateBody {
16946
16956
  company_namespace?: string[];
16957
+ name: string;
16947
16958
  presentation: StringId;
16948
16959
  product: StringId;
16949
16960
  disabled?: boolean;
@@ -17004,11 +17015,13 @@ export declare namespace Service {
17004
17015
  _id: StringId;
17005
17016
  company_namespace: string[];
17006
17017
  sequence: StringId;
17018
+ presentation: StringId;
17007
17019
  photo_media: StringId;
17008
17020
  is_book_mark?: boolean;
17009
17021
  book_mark_key_message?: string;
17010
17022
  disabled: boolean;
17011
17023
  position: number;
17024
+ is_cover?: boolean;
17012
17025
  createdAt: string;
17013
17026
  updatedAt: string;
17014
17027
  __v?: number;
@@ -17016,16 +17029,20 @@ export declare namespace Service {
17016
17029
  export interface CreateBody {
17017
17030
  company_namespace?: string[];
17018
17031
  sequence: StringId;
17032
+ presentation?: StringId;
17019
17033
  photo_media: StringId;
17020
17034
  is_book_mark?: boolean;
17021
17035
  book_mark_key_message?: string;
17022
17036
  disabled?: boolean;
17023
17037
  position: number;
17038
+ is_cover?: boolean;
17024
17039
  }
17025
17040
  export type UpdateBody = Partial<Data>;
17026
17041
  export type PopulatedDoc = Data & {
17027
17042
  sequence_populated?: Pick<CLMSequence.Data, "position" | "_id" | "product" | "presentation">[];
17028
- photo_media_populated?: PopulatedMediaStorage;
17043
+ photo_media_populated?: PopulatedMediaStorage & {
17044
+ ContentLength?: number;
17045
+ };
17029
17046
  };
17030
17047
  type PopulatedKeys = "sequence" | "photo_media";
17031
17048
  type SortingKeys = "_id" | "position" | "is_book_mark";
@@ -17039,12 +17056,14 @@ export declare namespace Service {
17039
17056
  _id?: StringId | StringId[];
17040
17057
  search?: string;
17041
17058
  sequence?: StringId | StringId[];
17059
+ presentation?: StringId | StringId[];
17042
17060
  is_book_mark?: boolean | boolean[];
17043
17061
  disabled?: boolean;
17044
17062
  from_updatedAt?: number;
17045
17063
  to_updatedAt?: number;
17046
17064
  from_createdAt?: number;
17047
17065
  to_createdAt?: number;
17066
+ is_cover?: boolean;
17048
17067
  };
17049
17068
  interface Result extends DefaultPaginationResult {
17050
17069
  data: PopulatedDoc[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repzo",
3
- "version": "1.0.205",
3
+ "version": "1.0.206",
4
4
  "description": "Repzo TypeScript SDK",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -19141,6 +19141,9 @@ export namespace Service {
19141
19141
 
19142
19142
  export type PopulatedDoc = Data & {
19143
19143
  teams_populated?: Pick<Team.TeamSchema, "name" | "_id">[];
19144
+ sequences_count?: number;
19145
+ slides_count?: number;
19146
+ cover_slide?: PopulatedMediaStorage & { ContentLength?: number };
19144
19147
  };
19145
19148
 
19146
19149
  type PopulatedKeys = "teams";
@@ -19159,6 +19162,8 @@ export namespace Service {
19159
19162
  to_updatedAt?: number;
19160
19163
  from_createdAt?: number;
19161
19164
  to_createdAt?: number;
19165
+ with_counts?: boolean;
19166
+ with_cover?: boolean;
19162
19167
  };
19163
19168
  export interface Result extends DefaultPaginationResult {
19164
19169
  data: PopulatedDoc[];
@@ -19166,7 +19171,11 @@ export namespace Service {
19166
19171
  }
19167
19172
  export namespace Get {
19168
19173
  export type ID = string;
19169
- export type Params = { populatedKeys?: PopulatedKeys[] };
19174
+ export type Params = {
19175
+ populatedKeys?: PopulatedKeys[];
19176
+ with_counts?: boolean;
19177
+ with_cover?: boolean;
19178
+ };
19170
19179
  export type Result = PopulatedDoc;
19171
19180
  }
19172
19181
  export namespace Create {
@@ -19188,6 +19197,7 @@ export namespace Service {
19188
19197
  export interface Data {
19189
19198
  _id: StringId;
19190
19199
  company_namespace: string[];
19200
+ name: string;
19191
19201
  presentation: StringId;
19192
19202
  product: StringId;
19193
19203
  disabled: boolean;
@@ -19198,6 +19208,7 @@ export namespace Service {
19198
19208
  }
19199
19209
  export interface CreateBody {
19200
19210
  company_namespace?: string[];
19211
+ name: string;
19201
19212
  presentation: StringId;
19202
19213
  product: StringId;
19203
19214
  disabled?: boolean;
@@ -19259,11 +19270,13 @@ export namespace Service {
19259
19270
  _id: StringId;
19260
19271
  company_namespace: string[];
19261
19272
  sequence: StringId;
19273
+ presentation: StringId;
19262
19274
  photo_media: StringId;
19263
19275
  is_book_mark?: boolean;
19264
19276
  book_mark_key_message?: string;
19265
19277
  disabled: boolean;
19266
19278
  position: number;
19279
+ is_cover?: boolean;
19267
19280
  createdAt: string;
19268
19281
  updatedAt: string;
19269
19282
  __v?: number;
@@ -19271,11 +19284,13 @@ export namespace Service {
19271
19284
  export interface CreateBody {
19272
19285
  company_namespace?: string[];
19273
19286
  sequence: StringId;
19287
+ presentation?: StringId;
19274
19288
  photo_media: StringId;
19275
19289
  is_book_mark?: boolean;
19276
19290
  book_mark_key_message?: string;
19277
19291
  disabled?: boolean;
19278
19292
  position: number;
19293
+ is_cover?: boolean;
19279
19294
  }
19280
19295
  export type UpdateBody = Partial<Data>;
19281
19296
 
@@ -19284,7 +19299,9 @@ export namespace Service {
19284
19299
  CLMSequence.Data,
19285
19300
  "position" | "_id" | "product" | "presentation"
19286
19301
  >[];
19287
- photo_media_populated?: PopulatedMediaStorage;
19302
+ photo_media_populated?: PopulatedMediaStorage & {
19303
+ ContentLength?: number;
19304
+ };
19288
19305
  };
19289
19306
 
19290
19307
  type PopulatedKeys = "sequence" | "photo_media";
@@ -19297,12 +19314,14 @@ export namespace Service {
19297
19314
  _id?: StringId | StringId[];
19298
19315
  search?: string;
19299
19316
  sequence?: StringId | StringId[];
19317
+ presentation?: StringId | StringId[];
19300
19318
  is_book_mark?: boolean | boolean[];
19301
19319
  disabled?: boolean;
19302
19320
  from_updatedAt?: number;
19303
19321
  to_updatedAt?: number;
19304
19322
  from_createdAt?: number;
19305
19323
  to_createdAt?: number;
19324
+ is_cover?: boolean;
19306
19325
  };
19307
19326
  export interface Result extends DefaultPaginationResult {
19308
19327
  data: PopulatedDoc[];