yellowgrid-api-ts 3.2.246-dev.0 → 3.2.248-dev.0

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/api.d.ts CHANGED
@@ -1457,6 +1457,7 @@ export declare const AuditLogEntityTypeEnum: {
1457
1457
  readonly Pops3cxSipTrunks: "pops_3cx_sip_trunks";
1458
1458
  readonly Pops3cxUsers: "pops_3cx_users";
1459
1459
  readonly PopsUsers: "pops_users";
1460
+ readonly PopsVideoRequests: "pops_video_requests";
1460
1461
  readonly Webhook: "webhook";
1461
1462
  readonly PopsXeroLog: "pops_xero_log";
1462
1463
  readonly Oauth2Clients: "oauth2_clients";
@@ -1855,6 +1856,135 @@ export interface BatchEntity {
1855
1856
  */
1856
1857
  'mac'?: string;
1857
1858
  }
1859
+ /**
1860
+ * Branded Video Summary
1861
+ * @export
1862
+ * @interface BrandedVideoSummaryDTO
1863
+ */
1864
+ export interface BrandedVideoSummaryDTO {
1865
+ /**
1866
+ * ID
1867
+ * @type {number}
1868
+ * @memberof BrandedVideoSummaryDTO
1869
+ */
1870
+ 'id'?: number;
1871
+ /**
1872
+ * Company
1873
+ * @type {string}
1874
+ * @memberof BrandedVideoSummaryDTO
1875
+ */
1876
+ 'company'?: string;
1877
+ /**
1878
+ * Type
1879
+ * @type {string}
1880
+ * @memberof BrandedVideoSummaryDTO
1881
+ */
1882
+ 'type'?: BrandedVideoSummaryDTOTypeEnum;
1883
+ /**
1884
+ * Video
1885
+ * @type {string}
1886
+ * @memberof BrandedVideoSummaryDTO
1887
+ */
1888
+ 'video'?: string;
1889
+ /**
1890
+ * Email
1891
+ * @type {string}
1892
+ * @memberof BrandedVideoSummaryDTO
1893
+ */
1894
+ 'email'?: string;
1895
+ /**
1896
+ * Website
1897
+ * @type {string}
1898
+ * @memberof BrandedVideoSummaryDTO
1899
+ */
1900
+ 'website'?: string;
1901
+ /**
1902
+ * Telephone
1903
+ * @type {string}
1904
+ * @memberof BrandedVideoSummaryDTO
1905
+ */
1906
+ 'telephone'?: string;
1907
+ /**
1908
+ * Invoice Number
1909
+ * @type {string}
1910
+ * @memberof BrandedVideoSummaryDTO
1911
+ */
1912
+ 'invoiceNumber'?: string | null;
1913
+ /**
1914
+ * Date Time
1915
+ * @type {string}
1916
+ * @memberof BrandedVideoSummaryDTO
1917
+ */
1918
+ 'requestDate'?: string;
1919
+ /**
1920
+ * Date Time
1921
+ * @type {string}
1922
+ * @memberof BrandedVideoSummaryDTO
1923
+ */
1924
+ 'dueDate'?: string;
1925
+ /**
1926
+ * OneDrive ID
1927
+ * @type {string}
1928
+ * @memberof BrandedVideoSummaryDTO
1929
+ */
1930
+ 'oneDriveId'?: string | null;
1931
+ /**
1932
+ * Status
1933
+ * @type {string}
1934
+ * @memberof BrandedVideoSummaryDTO
1935
+ */
1936
+ 'status'?: BrandedVideoSummaryDTOStatusEnum;
1937
+ /**
1938
+ * Notes
1939
+ * @type {string}
1940
+ * @memberof BrandedVideoSummaryDTO
1941
+ */
1942
+ 'notes'?: string;
1943
+ }
1944
+ export declare const BrandedVideoSummaryDTOTypeEnum: {
1945
+ readonly Paid: "paid";
1946
+ readonly Reward: "reward";
1947
+ readonly Sample: "sample";
1948
+ };
1949
+ export type BrandedVideoSummaryDTOTypeEnum = typeof BrandedVideoSummaryDTOTypeEnum[keyof typeof BrandedVideoSummaryDTOTypeEnum];
1950
+ export declare const BrandedVideoSummaryDTOStatusEnum: {
1951
+ readonly Pending: "pending";
1952
+ readonly Complete: "complete";
1953
+ readonly Incomplete: "incomplete";
1954
+ readonly Unpaid: "unpaid";
1955
+ };
1956
+ export type BrandedVideoSummaryDTOStatusEnum = typeof BrandedVideoSummaryDTOStatusEnum[keyof typeof BrandedVideoSummaryDTOStatusEnum];
1957
+ /**
1958
+ * Promotions
1959
+ * @export
1960
+ * @interface BrandedVideosSummariesModel
1961
+ */
1962
+ export interface BrandedVideosSummariesModel {
1963
+ /**
1964
+ * Results
1965
+ * @type {Array<BrandedVideoSummaryDTO>}
1966
+ * @memberof BrandedVideosSummariesModel
1967
+ */
1968
+ 'results'?: Array<BrandedVideoSummaryDTO>;
1969
+ /**
1970
+ * Page
1971
+ * @type {number}
1972
+ * @memberof BrandedVideosSummariesModel
1973
+ */
1974
+ 'page'?: number;
1975
+ /**
1976
+ * Per Page
1977
+ * @type {number}
1978
+ * @memberof BrandedVideosSummariesModel
1979
+ */
1980
+ 'perPage'?: number;
1981
+ /**
1982
+ * Total Results
1983
+ * @type {number}
1984
+ * @memberof BrandedVideosSummariesModel
1985
+ */
1986
+ 'totalResults'?: number;
1987
+ }
1858
1988
  /**
1859
1989
  *
1860
1990
  * @export
@@ -9933,13 +10063,13 @@ export interface PromoCodesEntity {
9933
10063
  * @type {string}
9934
10064
  * @memberof PromoCodesEntity
9935
10065
  */
9936
- 'start'?: string;
10066
+ 'startDate'?: string;
9937
10067
  /**
9938
10068
  * Date Time
9939
10069
  * @type {string}
9940
10070
  * @memberof PromoCodesEntity
9941
10071
  */
9942
- 'expiry'?: string;
10072
+ 'endDate'?: string;
9943
10073
  /**
9944
10074
  * customerLimit
9945
10075
  * @type {number}
@@ -9954,10 +10084,10 @@ export interface PromoCodesEntity {
9954
10084
  'globalLimit'?: number;
9955
10085
  /**
9956
10086
  * orderRestrictions
9957
- * @type {string}
10087
+ * @type {Array<string>}
9958
10088
  * @memberof PromoCodesEntity
9959
10089
  */
9960
- 'orderRestrictions'?: string;
10090
+ 'orderRestrictions'?: Array<string>;
9961
10091
  /**
9962
10092
  * includeDistribution
9963
10093
  * @type {boolean}
@@ -10122,13 +10252,13 @@ export interface PromoModel {
10122
10252
  * @type {string}
10123
10253
  * @memberof PromoModel
10124
10254
  */
10125
- 'start'?: string;
10255
+ 'startDate'?: string;
10126
10256
  /**
10127
10257
  * Date Time
10128
10258
  * @type {string}
10129
10259
  * @memberof PromoModel
10130
10260
  */
10131
- 'expiry'?: string;
10261
+ 'endDate'?: string;
10132
10262
  /**
10133
10263
  * customerLimit
10134
10264
  * @type {number}
@@ -10143,10 +10273,10 @@ export interface PromoModel {
10143
10273
  'globalLimit'?: number;
10144
10274
  /**
10145
10275
  * orderRestrictions
10146
- * @type {string}
10276
+ * @type {Array<string>}
10147
10277
  * @memberof PromoModel
10148
10278
  */
10149
- 'orderRestrictions'?: string;
10279
+ 'orderRestrictions'?: Array<string>;
10150
10280
  /**
10151
10281
  * includeDistribution
10152
10282
  * @type {boolean}
@@ -10215,6 +10345,12 @@ export interface PromoSummariesModel {
10215
10345
  * @interface PromoSummaryDTO
10216
10346
  */
10217
10347
  export interface PromoSummaryDTO {
10348
+ /**
10349
+ * ID
10350
+ * @type {number}
10351
+ * @memberof PromoSummaryDTO
10352
+ */
10353
+ 'id'?: number | null;
10218
10354
  /**
10219
10355
  * Description
10220
10356
  * @type {string}
@@ -16461,6 +16597,31 @@ export interface TechSupportCompanySummaryDTO {
16461
16597
  */
16462
16598
  'monthlyReportEmailAddress'?: string;
16463
16599
  }
16600
+ /**
16601
+ * Thumbnail
16602
+ * @export
16603
+ * @interface ThumbnailDTO
16604
+ */
16605
+ export interface ThumbnailDTO {
16606
+ /**
16607
+ * ID
16608
+ * @type {string}
16609
+ * @memberof ThumbnailDTO
16610
+ */
16611
+ 'id'?: string;
16612
+ /**
16613
+ * Name
16614
+ * @type {string}
16615
+ * @memberof ThumbnailDTO
16616
+ */
16617
+ 'name'?: string;
16618
+ /**
16619
+ * URL
16620
+ * @type {string}
16621
+ * @memberof ThumbnailDTO
16622
+ */
16623
+ 'url'?: string;
16624
+ }
16464
16625
  /**
16465
16626
  * Ticket Summary Model
16466
16627
  * @export
@@ -16898,6 +17059,109 @@ export interface UserEntity {
16898
17059
  */
16899
17060
  'secondaryHex'?: number | null;
16900
17061
  }
17062
+ /**
17063
+ * VideoRequestsEntity
17064
+ * @export
17065
+ * @interface VideoRequestEntity
17066
+ */
17067
+ export interface VideoRequestEntity {
17068
+ /**
17069
+ * id
17070
+ * @type {number}
17071
+ * @memberof VideoRequestEntity
17072
+ */
17073
+ 'id'?: number;
17074
+ /**
17075
+ * userId
17076
+ * @type {number}
17077
+ * @memberof VideoRequestEntity
17078
+ */
17079
+ 'userId'?: number;
17080
+ /**
17081
+ * type
17082
+ * @type {string}
17083
+ * @memberof VideoRequestEntity
17084
+ */
17085
+ 'type'?: string;
17086
+ /**
17087
+ * status
17088
+ * @type {string}
17089
+ * @memberof VideoRequestEntity
17090
+ */
17091
+ 'status'?: string;
17092
+ /**
17093
+ * video
17094
+ * @type {string}
17095
+ * @memberof VideoRequestEntity
17096
+ */
17097
+ 'video'?: string;
17098
+ /**
17099
+ * company
17100
+ * @type {string}
17101
+ * @memberof VideoRequestEntity
17102
+ */
17103
+ 'company'?: string;
17104
+ /**
17105
+ * email
17106
+ * @type {string}
17107
+ * @memberof VideoRequestEntity
17108
+ */
17109
+ 'email'?: string;
17110
+ /**
17111
+ * website
17112
+ * @type {string}
17113
+ * @memberof VideoRequestEntity
17114
+ */
17115
+ 'website'?: string;
17116
+ /**
17117
+ * telephone
17118
+ * @type {string}
17119
+ * @memberof VideoRequestEntity
17120
+ */
17121
+ 'telephone'?: string;
17122
+ /**
17123
+ * notes
17124
+ * @type {string}
17125
+ * @memberof VideoRequestEntity
17126
+ */
17127
+ 'notes'?: string;
17128
+ /**
17129
+ * requestDate
17130
+ * @type {string}
17131
+ * @memberof VideoRequestEntity
17132
+ */
17133
+ 'requestDate'?: string;
17134
+ /**
17135
+ * dueDate
17136
+ * @type {string}
17137
+ * @memberof VideoRequestEntity
17138
+ */
17139
+ 'dueDate'?: string;
17140
+ /**
17141
+ * invId
17142
+ * @type {string}
17143
+ * @memberof VideoRequestEntity
17144
+ */
17145
+ 'invId'?: string | null;
17146
+ /**
17147
+ * invNo
17148
+ * @type {string}
17149
+ * @memberof VideoRequestEntity
17150
+ */
17151
+ 'invNo'?: string | null;
17152
+ /**
17153
+ * onedriveId
17154
+ * @type {string}
17155
+ * @memberof VideoRequestEntity
17156
+ */
17157
+ 'onedriveId'?: string | null;
17158
+ /**
17159
+ * thumbnailId
17160
+ * @type {string}
17161
+ * @memberof VideoRequestEntity
17162
+ */
17163
+ 'thumbnailId'?: string;
17164
+ }
16901
17165
  /**
16902
17166
  * XeroLogEntity
16903
17167
  * @export
@@ -20680,6 +20944,292 @@ export declare const GetGetServicesPlanDetailsTypeEnum: {
20680
20944
  readonly EdTechPro: "EdTechPro";
20681
20945
  };
20682
20946
  export type GetGetServicesPlanDetailsTypeEnum = typeof GetGetServicesPlanDetailsTypeEnum[keyof typeof GetGetServicesPlanDetailsTypeEnum];
20947
+ /**
20948
+ * BrandedVideosApi - axios parameter creator
20949
+ * @export
20950
+ */
20951
+ export declare const BrandedVideosApiAxiosParamCreator: (configuration?: Configuration) => {
20952
+ /**
20953
+ * Send Branded Video Email
20954
+ * @param {number} id Video ID
20955
+ * @param {number} [customerId] Customer ID
20956
+ * @param {*} [options] Override http request option.
20957
+ * @throws {RequiredError}
20958
+ */
20959
+ deleteDeleteVideoRequest: (id: number, customerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20960
+ /**
20961
+ * Get Customer Logo
20962
+ * @param {number} [customerId] Customer ID
20963
+ * @param {*} [options] Override http request option.
20964
+ * @throws {RequiredError}
20965
+ */
20966
+ getDownloadLogo: (customerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20967
+ /**
20968
+ * Get Branded Videos
20969
+ * @param {number} [pageSize] Number Of Results
20970
+ * @param {number} [page] Page Number
20971
+ * @param {string} [search] Search
20972
+ * @param {GetGetBrandedVideosTypeEnum} [type] Type
20973
+ * @param {boolean} [outstanding] Outstanding
20974
+ * @param {boolean} [overdue] Overdue
20975
+ * @param {number} [customerId] Customer ID
20976
+ * @param {*} [options] Override http request option.
20977
+ * @throws {RequiredError}
20978
+ */
20979
+ getGetBrandedVideos: (pageSize?: number, page?: number, search?: string, type?: GetGetBrandedVideosTypeEnum, outstanding?: boolean, overdue?: boolean, customerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20980
+ /**
20981
+ * Get Thumbnails
20982
+ * @param {*} [options] Override http request option.
20983
+ * @throws {RequiredError}
20984
+ */
20985
+ getGetThumbnails: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20986
+ /**
20987
+ * Upload logo
20988
+ * @param {File} logo Logo
20989
+ * @param {number} [customerId] Customer ID
20990
+ * @param {*} [options] Override http request option.
20991
+ * @throws {RequiredError}
20992
+ */
20993
+ postDownloadLogo: (logo: File, customerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20994
+ /**
20995
+ * Send Branded Video Email
20996
+ * @param {string} email Email
20997
+ * @param {number} id Video ID
20998
+ * @param {number} [customerId] Customer ID
20999
+ * @param {*} [options] Override http request option.
21000
+ * @throws {RequiredError}
21001
+ */
21002
+ postSendBrandedVideoEmail: (email: string, id: number, customerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21003
+ /**
21004
+ * Upload Video
21005
+ * @param {string} thumbnailId Thumbnail ID
21006
+ * @param {number} id Video ID
21007
+ * @param {File} video Video
21008
+ * @param {number} [customerId] Customer ID
21009
+ * @param {*} [options] Override http request option.
21010
+ * @throws {RequiredError}
21011
+ */
21012
+ postUploadVideo: (thumbnailId: string, id: number, video: File, customerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21013
+ };
21014
+ /**
21015
+ * BrandedVideosApi - functional programming interface
21016
+ * @export
21017
+ */
21018
+ export declare const BrandedVideosApiFp: (configuration?: Configuration) => {
21019
+ /**
21020
+ * Send Branded Video Email
21021
+ * @param {number} id Video ID
21022
+ * @param {number} [customerId] Customer ID
21023
+ * @param {*} [options] Override http request option.
21024
+ * @throws {RequiredError}
21025
+ */
21026
+ deleteDeleteVideoRequest(id: number, customerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
21027
+ /**
21028
+ * Get Customer Logo
21029
+ * @param {number} [customerId] Customer ID
21030
+ * @param {*} [options] Override http request option.
21031
+ * @throws {RequiredError}
21032
+ */
21033
+ getDownloadLogo(customerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
21034
+ /**
21035
+ * Get Branded Videos
21036
+ * @param {number} [pageSize] Number Of Results
21037
+ * @param {number} [page] Page Number
21038
+ * @param {string} [search] Search
21039
+ * @param {GetGetBrandedVideosTypeEnum} [type] Type
21040
+ * @param {boolean} [outstanding] Outstanding
21041
+ * @param {boolean} [overdue] Overdue
21042
+ * @param {number} [customerId] Customer ID
21043
+ * @param {*} [options] Override http request option.
21044
+ * @throws {RequiredError}
21045
+ */
21046
+ getGetBrandedVideos(pageSize?: number, page?: number, search?: string, type?: GetGetBrandedVideosTypeEnum, outstanding?: boolean, overdue?: boolean, customerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BrandedVideosSummariesModel>>;
21047
+ /**
21048
+ * Get Thumbnails
21049
+ * @param {*} [options] Override http request option.
21050
+ * @throws {RequiredError}
21051
+ */
21052
+ getGetThumbnails(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ThumbnailDTO>>>;
21053
+ /**
21054
+ * Upload logo
21055
+ * @param {File} logo Logo
21056
+ * @param {number} [customerId] Customer ID
21057
+ * @param {*} [options] Override http request option.
21058
+ * @throws {RequiredError}
21059
+ */
21060
+ postDownloadLogo(logo: File, customerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
21061
+ /**
21062
+ * Send Branded Video Email
21063
+ * @param {string} email Email
21064
+ * @param {number} id Video ID
21065
+ * @param {number} [customerId] Customer ID
21066
+ * @param {*} [options] Override http request option.
21067
+ * @throws {RequiredError}
21068
+ */
21069
+ postSendBrandedVideoEmail(email: string, id: number, customerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
21070
+ /**
21071
+ * Upload Video
21072
+ * @param {string} thumbnailId Thumbnail ID
21073
+ * @param {number} id Video ID
21074
+ * @param {File} video Video
21075
+ * @param {number} [customerId] Customer ID
21076
+ * @param {*} [options] Override http request option.
21077
+ * @throws {RequiredError}
21078
+ */
21079
+ postUploadVideo(thumbnailId: string, id: number, video: File, customerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BrandedVideoSummaryDTO>>;
21080
+ };
21081
+ /**
21082
+ * BrandedVideosApi - factory interface
21083
+ * @export
21084
+ */
21085
+ export declare const BrandedVideosApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
21086
+ /**
21087
+ * Send Branded Video Email
21088
+ * @param {number} id Video ID
21089
+ * @param {number} [customerId] Customer ID
21090
+ * @param {*} [options] Override http request option.
21091
+ * @throws {RequiredError}
21092
+ */
21093
+ deleteDeleteVideoRequest(id: number, customerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
21094
+ /**
21095
+ * Get Customer Logo
21096
+ * @param {number} [customerId] Customer ID
21097
+ * @param {*} [options] Override http request option.
21098
+ * @throws {RequiredError}
21099
+ */
21100
+ getDownloadLogo(customerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<string>;
21101
+ /**
21102
+ * Get Branded Videos
21103
+ * @param {number} [pageSize] Number Of Results
21104
+ * @param {number} [page] Page Number
21105
+ * @param {string} [search] Search
21106
+ * @param {GetGetBrandedVideosTypeEnum} [type] Type
21107
+ * @param {boolean} [outstanding] Outstanding
21108
+ * @param {boolean} [overdue] Overdue
21109
+ * @param {number} [customerId] Customer ID
21110
+ * @param {*} [options] Override http request option.
21111
+ * @throws {RequiredError}
21112
+ */
21113
+ getGetBrandedVideos(pageSize?: number, page?: number, search?: string, type?: GetGetBrandedVideosTypeEnum, outstanding?: boolean, overdue?: boolean, customerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<BrandedVideosSummariesModel>;
21114
+ /**
21115
+ * Get Thumbnails
21116
+ * @param {*} [options] Override http request option.
21117
+ * @throws {RequiredError}
21118
+ */
21119
+ getGetThumbnails(options?: RawAxiosRequestConfig): AxiosPromise<Array<ThumbnailDTO>>;
21120
+ /**
21121
+ * Upload logo
21122
+ * @param {File} logo Logo
21123
+ * @param {number} [customerId] Customer ID
21124
+ * @param {*} [options] Override http request option.
21125
+ * @throws {RequiredError}
21126
+ */
21127
+ postDownloadLogo(logo: File, customerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
21128
+ /**
21129
+ * Send Branded Video Email
21130
+ * @param {string} email Email
21131
+ * @param {number} id Video ID
21132
+ * @param {number} [customerId] Customer ID
21133
+ * @param {*} [options] Override http request option.
21134
+ * @throws {RequiredError}
21135
+ */
21136
+ postSendBrandedVideoEmail(email: string, id: number, customerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
21137
+ /**
21138
+ * Upload Video
21139
+ * @param {string} thumbnailId Thumbnail ID
21140
+ * @param {number} id Video ID
21141
+ * @param {File} video Video
21142
+ * @param {number} [customerId] Customer ID
21143
+ * @param {*} [options] Override http request option.
21144
+ * @throws {RequiredError}
21145
+ */
21146
+ postUploadVideo(thumbnailId: string, id: number, video: File, customerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<BrandedVideoSummaryDTO>;
21147
+ };
21148
+ /**
21149
+ * BrandedVideosApi - object-oriented interface
21150
+ * @export
21151
+ * @class BrandedVideosApi
21152
+ * @extends {BaseAPI}
21153
+ */
21154
+ export declare class BrandedVideosApi extends BaseAPI {
21155
+ /**
21156
+ * Send Branded Video Email
21157
+ * @param {number} id Video ID
21158
+ * @param {number} [customerId] Customer ID
21159
+ * @param {*} [options] Override http request option.
21160
+ * @throws {RequiredError}
21161
+ * @memberof BrandedVideosApi
21162
+ */
21163
+ deleteDeleteVideoRequest(id: number, customerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
21164
+ /**
21165
+ * Get Customer Logo
21166
+ * @param {number} [customerId] Customer ID
21167
+ * @param {*} [options] Override http request option.
21168
+ * @throws {RequiredError}
21169
+ * @memberof BrandedVideosApi
21170
+ */
21171
+ getDownloadLogo(customerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
21172
+ /**
21173
+ * Get Branded Videos
21174
+ * @param {number} [pageSize] Number Of Results
21175
+ * @param {number} [page] Page Number
21176
+ * @param {string} [search] Search
21177
+ * @param {GetGetBrandedVideosTypeEnum} [type] Type
21178
+ * @param {boolean} [outstanding] Outstanding
21179
+ * @param {boolean} [overdue] Overdue
21180
+ * @param {number} [customerId] Customer ID
21181
+ * @param {*} [options] Override http request option.
21182
+ * @throws {RequiredError}
21183
+ * @memberof BrandedVideosApi
21184
+ */
21185
+ getGetBrandedVideos(pageSize?: number, page?: number, search?: string, type?: GetGetBrandedVideosTypeEnum, outstanding?: boolean, overdue?: boolean, customerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BrandedVideosSummariesModel, any, {}>>;
21186
+ /**
21187
+ * Get Thumbnails
21188
+ * @param {*} [options] Override http request option.
21189
+ * @throws {RequiredError}
21190
+ * @memberof BrandedVideosApi
21191
+ */
21192
+ getGetThumbnails(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ThumbnailDTO[], any, {}>>;
21193
+ /**
21194
+ * Upload logo
21195
+ * @param {File} logo Logo
21196
+ * @param {number} [customerId] Customer ID
21197
+ * @param {*} [options] Override http request option.
21198
+ * @throws {RequiredError}
21199
+ * @memberof BrandedVideosApi
21200
+ */
21201
+ postDownloadLogo(logo: File, customerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
21202
+ /**
21203
+ * Send Branded Video Email
21204
+ * @param {string} email Email
21205
+ * @param {number} id Video ID
21206
+ * @param {number} [customerId] Customer ID
21207
+ * @param {*} [options] Override http request option.
21208
+ * @throws {RequiredError}
21209
+ * @memberof BrandedVideosApi
21210
+ */
21211
+ postSendBrandedVideoEmail(email: string, id: number, customerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
21212
+ /**
21213
+ * Upload Video
21214
+ * @param {string} thumbnailId Thumbnail ID
21215
+ * @param {number} id Video ID
21216
+ * @param {File} video Video
21217
+ * @param {number} [customerId] Customer ID
21218
+ * @param {*} [options] Override http request option.
21219
+ * @throws {RequiredError}
21220
+ * @memberof BrandedVideosApi
21221
+ */
21222
+ postUploadVideo(thumbnailId: string, id: number, video: File, customerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BrandedVideoSummaryDTO, any, {}>>;
21223
+ }
21224
+ /**
21225
+ * @export
21226
+ */
21227
+ export declare const GetGetBrandedVideosTypeEnum: {
21228
+ readonly Paid: "paid";
21229
+ readonly Reward: "reward";
21230
+ readonly Sample: "sample";
21231
+ };
21232
+ export type GetGetBrandedVideosTypeEnum = typeof GetGetBrandedVideosTypeEnum[keyof typeof GetGetBrandedVideosTypeEnum];
20683
21233
  /**
20684
21234
  * CRMApi - axios parameter creator
20685
21235
  * @export
@@ -24534,6 +25084,8 @@ export declare const PostAccessTokenScopeEnum: {
24534
25084
  readonly TcxWizard: "tcx_wizard";
24535
25085
  readonly AccountsRead: "accounts.read";
24536
25086
  readonly AccountsWrite: "accounts.write";
25087
+ readonly BrandedVideosread: "branded_videosread";
25088
+ readonly BrandedVideoswrite: "branded_videoswrite";
24537
25089
  readonly NumberPortingRead: "number_porting.read";
24538
25090
  readonly NumberPortingWrite: "number_porting.write";
24539
25091
  readonly PricingRead: "pricing.read";
@@ -24576,6 +25128,8 @@ export declare const PostAuthoriseScopeEnum: {
24576
25128
  readonly TcxWizard: "tcx_wizard";
24577
25129
  readonly AccountsRead: "accounts.read";
24578
25130
  readonly AccountsWrite: "accounts.write";
25131
+ readonly BrandedVideosread: "branded_videosread";
25132
+ readonly BrandedVideoswrite: "branded_videoswrite";
24579
25133
  readonly NumberPortingRead: "number_porting.read";
24580
25134
  readonly NumberPortingWrite: "number_porting.write";
24581
25135
  readonly PricingRead: "pricing.read";