yellowgrid-api-ts 3.2.249-dev.0 → 3.2.250-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/.openapi-generator/FILES +5 -0
- package/README.md +13 -0
- package/api.ts +792 -0
- package/dist/api.d.ts +460 -0
- package/dist/api.js +709 -5
- package/dist/models/RmaStatusEnum.d.ts +5 -0
- package/dist/models/RmaStatusEnum.js +5 -0
- package/docs/BrandedVideoSummaryDTO.md +47 -0
- package/docs/BrandedVideosApi.md +424 -0
- package/docs/BrandedVideosSummariesModel.md +27 -0
- package/docs/OAuth20Api.md +3 -3
- package/docs/ThumbnailDTO.md +25 -0
- package/docs/VideoRequestEntity.md +51 -0
- package/models/RmaStatusEnum.ts +5 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -824,6 +824,7 @@ export declare const AdminRmaDTOStatusEnum: {
|
|
|
824
824
|
readonly NUMBER_3: 3;
|
|
825
825
|
readonly NUMBER_4: 4;
|
|
826
826
|
readonly NUMBER_5: 5;
|
|
827
|
+
readonly NUMBER_6: 6;
|
|
827
828
|
};
|
|
828
829
|
export type AdminRmaDTOStatusEnum = typeof AdminRmaDTOStatusEnum[keyof typeof AdminRmaDTOStatusEnum];
|
|
829
830
|
/**
|
|
@@ -978,6 +979,7 @@ export declare const AdminRmaSummaryDTOStatusEnum: {
|
|
|
978
979
|
readonly NUMBER_3: 3;
|
|
979
980
|
readonly NUMBER_4: 4;
|
|
980
981
|
readonly NUMBER_5: 5;
|
|
982
|
+
readonly NUMBER_6: 6;
|
|
981
983
|
};
|
|
982
984
|
export type AdminRmaSummaryDTOStatusEnum = typeof AdminRmaSummaryDTOStatusEnum[keyof typeof AdminRmaSummaryDTOStatusEnum];
|
|
983
985
|
/**
|
|
@@ -1309,6 +1311,7 @@ export declare const AuditLogEntityTypeEnum: {
|
|
|
1309
1311
|
readonly Pops3cxSipTrunks: "pops_3cx_sip_trunks";
|
|
1310
1312
|
readonly Pops3cxUsers: "pops_3cx_users";
|
|
1311
1313
|
readonly PopsUsers: "pops_users";
|
|
1314
|
+
readonly PopsVideoRequests: "pops_video_requests";
|
|
1312
1315
|
readonly Webhook: "webhook";
|
|
1313
1316
|
readonly PopsXeroLog: "pops_xero_log";
|
|
1314
1317
|
readonly Oauth2Clients: "oauth2_clients";
|
|
@@ -1548,6 +1551,101 @@ export interface BatchEntity {
|
|
|
1548
1551
|
*/
|
|
1549
1552
|
'mac': string;
|
|
1550
1553
|
}
|
|
1554
|
+
/**
|
|
1555
|
+
* Branded Video Summary
|
|
1556
|
+
*/
|
|
1557
|
+
export interface BrandedVideoSummaryDTO {
|
|
1558
|
+
/**
|
|
1559
|
+
* ID
|
|
1560
|
+
*/
|
|
1561
|
+
'id': number;
|
|
1562
|
+
/**
|
|
1563
|
+
* Customer ID
|
|
1564
|
+
*/
|
|
1565
|
+
'customerId': number;
|
|
1566
|
+
/**
|
|
1567
|
+
* Company
|
|
1568
|
+
*/
|
|
1569
|
+
'company': string;
|
|
1570
|
+
/**
|
|
1571
|
+
* Type
|
|
1572
|
+
*/
|
|
1573
|
+
'type': BrandedVideoSummaryDTOTypeEnum;
|
|
1574
|
+
/**
|
|
1575
|
+
* Video
|
|
1576
|
+
*/
|
|
1577
|
+
'video': string;
|
|
1578
|
+
/**
|
|
1579
|
+
* Email
|
|
1580
|
+
*/
|
|
1581
|
+
'email': string;
|
|
1582
|
+
/**
|
|
1583
|
+
* Website
|
|
1584
|
+
*/
|
|
1585
|
+
'website': string;
|
|
1586
|
+
/**
|
|
1587
|
+
* Telephone
|
|
1588
|
+
*/
|
|
1589
|
+
'telephone': string;
|
|
1590
|
+
/**
|
|
1591
|
+
* Invoice Number
|
|
1592
|
+
*/
|
|
1593
|
+
'invoiceNumber'?: string | null;
|
|
1594
|
+
/**
|
|
1595
|
+
* Request Date
|
|
1596
|
+
*/
|
|
1597
|
+
'requestDate'?: string | null;
|
|
1598
|
+
/**
|
|
1599
|
+
* Due Date
|
|
1600
|
+
*/
|
|
1601
|
+
'dueDate'?: string | null;
|
|
1602
|
+
/**
|
|
1603
|
+
* OneDrive ID
|
|
1604
|
+
*/
|
|
1605
|
+
'oneDriveId'?: string | null;
|
|
1606
|
+
/**
|
|
1607
|
+
* Status
|
|
1608
|
+
*/
|
|
1609
|
+
'status': BrandedVideoSummaryDTOStatusEnum;
|
|
1610
|
+
/**
|
|
1611
|
+
* Notes
|
|
1612
|
+
*/
|
|
1613
|
+
'notes': string;
|
|
1614
|
+
}
|
|
1615
|
+
export declare const BrandedVideoSummaryDTOTypeEnum: {
|
|
1616
|
+
readonly Paid: "paid";
|
|
1617
|
+
readonly Reward: "reward";
|
|
1618
|
+
readonly Sample: "sample";
|
|
1619
|
+
};
|
|
1620
|
+
export type BrandedVideoSummaryDTOTypeEnum = typeof BrandedVideoSummaryDTOTypeEnum[keyof typeof BrandedVideoSummaryDTOTypeEnum];
|
|
1621
|
+
export declare const BrandedVideoSummaryDTOStatusEnum: {
|
|
1622
|
+
readonly Pending: "pending";
|
|
1623
|
+
readonly Complete: "complete";
|
|
1624
|
+
readonly Incomplete: "incomplete";
|
|
1625
|
+
readonly Unpaid: "unpaid";
|
|
1626
|
+
};
|
|
1627
|
+
export type BrandedVideoSummaryDTOStatusEnum = typeof BrandedVideoSummaryDTOStatusEnum[keyof typeof BrandedVideoSummaryDTOStatusEnum];
|
|
1628
|
+
/**
|
|
1629
|
+
* Promotions
|
|
1630
|
+
*/
|
|
1631
|
+
export interface BrandedVideosSummariesModel {
|
|
1632
|
+
/**
|
|
1633
|
+
* Results
|
|
1634
|
+
*/
|
|
1635
|
+
'results': Array<BrandedVideoSummaryDTO>;
|
|
1636
|
+
/**
|
|
1637
|
+
* Page
|
|
1638
|
+
*/
|
|
1639
|
+
'page': number;
|
|
1640
|
+
/**
|
|
1641
|
+
* Per Page
|
|
1642
|
+
*/
|
|
1643
|
+
'perPage': number;
|
|
1644
|
+
/**
|
|
1645
|
+
* Total Results
|
|
1646
|
+
*/
|
|
1647
|
+
'totalResults': number;
|
|
1648
|
+
}
|
|
1551
1649
|
export interface Bundle {
|
|
1552
1650
|
'createdDate'?: string;
|
|
1553
1651
|
'id'?: number;
|
|
@@ -6736,6 +6834,7 @@ export declare const RmaDTOStatusEnum: {
|
|
|
6736
6834
|
readonly NUMBER_3: 3;
|
|
6737
6835
|
readonly NUMBER_4: 4;
|
|
6738
6836
|
readonly NUMBER_5: 5;
|
|
6837
|
+
readonly NUMBER_6: 6;
|
|
6739
6838
|
};
|
|
6740
6839
|
export type RmaDTOStatusEnum = typeof RmaDTOStatusEnum[keyof typeof RmaDTOStatusEnum];
|
|
6741
6840
|
/**
|
|
@@ -7013,6 +7112,7 @@ export declare const RmaSummaryDTOStatusEnum: {
|
|
|
7013
7112
|
readonly NUMBER_3: 3;
|
|
7014
7113
|
readonly NUMBER_4: 4;
|
|
7015
7114
|
readonly NUMBER_5: 5;
|
|
7115
|
+
readonly NUMBER_6: 6;
|
|
7016
7116
|
};
|
|
7017
7117
|
export type RmaSummaryDTOStatusEnum = typeof RmaSummaryDTOStatusEnum[keyof typeof RmaSummaryDTOStatusEnum];
|
|
7018
7118
|
/**
|
|
@@ -10468,6 +10568,23 @@ export interface TechSupportCompanySummaryDTO {
|
|
|
10468
10568
|
*/
|
|
10469
10569
|
'monthlyReportEmailAddress': string;
|
|
10470
10570
|
}
|
|
10571
|
+
/**
|
|
10572
|
+
* Thumbnail
|
|
10573
|
+
*/
|
|
10574
|
+
export interface ThumbnailDTO {
|
|
10575
|
+
/**
|
|
10576
|
+
* ID
|
|
10577
|
+
*/
|
|
10578
|
+
'id': string;
|
|
10579
|
+
/**
|
|
10580
|
+
* Name
|
|
10581
|
+
*/
|
|
10582
|
+
'name': string;
|
|
10583
|
+
/**
|
|
10584
|
+
* URL
|
|
10585
|
+
*/
|
|
10586
|
+
'url': string;
|
|
10587
|
+
}
|
|
10471
10588
|
/**
|
|
10472
10589
|
* Ticket Summary Model
|
|
10473
10590
|
*/
|
|
@@ -10684,6 +10801,75 @@ export interface UserEntity {
|
|
|
10684
10801
|
*/
|
|
10685
10802
|
'secondaryHex'?: number | null;
|
|
10686
10803
|
}
|
|
10804
|
+
/**
|
|
10805
|
+
* VideoRequestsEntity
|
|
10806
|
+
*/
|
|
10807
|
+
export interface VideoRequestEntity {
|
|
10808
|
+
/**
|
|
10809
|
+
* id
|
|
10810
|
+
*/
|
|
10811
|
+
'id': number;
|
|
10812
|
+
/**
|
|
10813
|
+
* userId
|
|
10814
|
+
*/
|
|
10815
|
+
'userId': number;
|
|
10816
|
+
/**
|
|
10817
|
+
* type
|
|
10818
|
+
*/
|
|
10819
|
+
'type': string;
|
|
10820
|
+
/**
|
|
10821
|
+
* status
|
|
10822
|
+
*/
|
|
10823
|
+
'status': string;
|
|
10824
|
+
/**
|
|
10825
|
+
* video
|
|
10826
|
+
*/
|
|
10827
|
+
'video': string;
|
|
10828
|
+
/**
|
|
10829
|
+
* company
|
|
10830
|
+
*/
|
|
10831
|
+
'company': string;
|
|
10832
|
+
/**
|
|
10833
|
+
* email
|
|
10834
|
+
*/
|
|
10835
|
+
'email': string;
|
|
10836
|
+
/**
|
|
10837
|
+
* website
|
|
10838
|
+
*/
|
|
10839
|
+
'website': string;
|
|
10840
|
+
/**
|
|
10841
|
+
* telephone
|
|
10842
|
+
*/
|
|
10843
|
+
'telephone': string;
|
|
10844
|
+
/**
|
|
10845
|
+
* notes
|
|
10846
|
+
*/
|
|
10847
|
+
'notes': string;
|
|
10848
|
+
/**
|
|
10849
|
+
* requestDate
|
|
10850
|
+
*/
|
|
10851
|
+
'requestDate': string;
|
|
10852
|
+
/**
|
|
10853
|
+
* dueDate
|
|
10854
|
+
*/
|
|
10855
|
+
'dueDate': string;
|
|
10856
|
+
/**
|
|
10857
|
+
* invId
|
|
10858
|
+
*/
|
|
10859
|
+
'invId'?: string | null;
|
|
10860
|
+
/**
|
|
10861
|
+
* invNo
|
|
10862
|
+
*/
|
|
10863
|
+
'invNo'?: string | null;
|
|
10864
|
+
/**
|
|
10865
|
+
* onedriveId
|
|
10866
|
+
*/
|
|
10867
|
+
'onedriveId'?: string | null;
|
|
10868
|
+
/**
|
|
10869
|
+
* thumbnailId
|
|
10870
|
+
*/
|
|
10871
|
+
'thumbnailId': string;
|
|
10872
|
+
}
|
|
10687
10873
|
/**
|
|
10688
10874
|
* XeroLogEntity
|
|
10689
10875
|
*/
|
|
@@ -14323,6 +14509,276 @@ export declare const GetGetServicesPlanDetailsTypeEnum: {
|
|
|
14323
14509
|
readonly EdTechPro: "EdTechPro";
|
|
14324
14510
|
};
|
|
14325
14511
|
export type GetGetServicesPlanDetailsTypeEnum = typeof GetGetServicesPlanDetailsTypeEnum[keyof typeof GetGetServicesPlanDetailsTypeEnum];
|
|
14512
|
+
/**
|
|
14513
|
+
* BrandedVideosApi - axios parameter creator
|
|
14514
|
+
*/
|
|
14515
|
+
export declare const BrandedVideosApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14516
|
+
/**
|
|
14517
|
+
* Send Branded Video Email
|
|
14518
|
+
* @param {number} id Video ID
|
|
14519
|
+
* @param {number} [customerId] Customer ID
|
|
14520
|
+
* @param {*} [options] Override http request option.
|
|
14521
|
+
* @throws {RequiredError}
|
|
14522
|
+
*/
|
|
14523
|
+
deleteDeleteVideoRequest: (id: number, customerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14524
|
+
/**
|
|
14525
|
+
* Get Customer Logo
|
|
14526
|
+
* @param {number} [customerId] Customer ID
|
|
14527
|
+
* @param {*} [options] Override http request option.
|
|
14528
|
+
* @throws {RequiredError}
|
|
14529
|
+
*/
|
|
14530
|
+
getDownloadLogo: (customerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14531
|
+
/**
|
|
14532
|
+
* Get Branded Videos
|
|
14533
|
+
* @param {number} [pageSize] Number Of Results
|
|
14534
|
+
* @param {number} [page] Page Number
|
|
14535
|
+
* @param {string} [search] Search
|
|
14536
|
+
* @param {GetGetBrandedVideosTypeEnum} [type] Type
|
|
14537
|
+
* @param {boolean} [outstanding] Outstanding
|
|
14538
|
+
* @param {boolean} [overdue] Overdue
|
|
14539
|
+
* @param {number} [customerId] Customer ID
|
|
14540
|
+
* @param {*} [options] Override http request option.
|
|
14541
|
+
* @throws {RequiredError}
|
|
14542
|
+
*/
|
|
14543
|
+
getGetBrandedVideos: (pageSize?: number, page?: number, search?: string, type?: GetGetBrandedVideosTypeEnum, outstanding?: boolean, overdue?: boolean, customerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14544
|
+
/**
|
|
14545
|
+
* Get Thumbnails
|
|
14546
|
+
* @param {*} [options] Override http request option.
|
|
14547
|
+
* @throws {RequiredError}
|
|
14548
|
+
*/
|
|
14549
|
+
getGetThumbnails: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14550
|
+
/**
|
|
14551
|
+
* Upload logo
|
|
14552
|
+
* @param {File} logo Logo
|
|
14553
|
+
* @param {number} [customerId] Customer ID
|
|
14554
|
+
* @param {*} [options] Override http request option.
|
|
14555
|
+
* @throws {RequiredError}
|
|
14556
|
+
*/
|
|
14557
|
+
postDownloadLogo: (logo: File, customerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14558
|
+
/**
|
|
14559
|
+
* Send Branded Video Email
|
|
14560
|
+
* @param {string} email Email
|
|
14561
|
+
* @param {number} id Video ID
|
|
14562
|
+
* @param {number} [customerId] Customer ID
|
|
14563
|
+
* @param {*} [options] Override http request option.
|
|
14564
|
+
* @throws {RequiredError}
|
|
14565
|
+
*/
|
|
14566
|
+
postSendBrandedVideoEmail: (email: string, id: number, customerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14567
|
+
/**
|
|
14568
|
+
* Upload Video
|
|
14569
|
+
* @param {string} thumbnailId Thumbnail ID
|
|
14570
|
+
* @param {number} id Video ID
|
|
14571
|
+
* @param {File} video Video
|
|
14572
|
+
* @param {number} [customerId] Customer ID
|
|
14573
|
+
* @param {*} [options] Override http request option.
|
|
14574
|
+
* @throws {RequiredError}
|
|
14575
|
+
*/
|
|
14576
|
+
postUploadVideo: (thumbnailId: string, id: number, video: File, customerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14577
|
+
};
|
|
14578
|
+
/**
|
|
14579
|
+
* BrandedVideosApi - functional programming interface
|
|
14580
|
+
*/
|
|
14581
|
+
export declare const BrandedVideosApiFp: (configuration?: Configuration) => {
|
|
14582
|
+
/**
|
|
14583
|
+
* Send Branded Video Email
|
|
14584
|
+
* @param {number} id Video ID
|
|
14585
|
+
* @param {number} [customerId] Customer ID
|
|
14586
|
+
* @param {*} [options] Override http request option.
|
|
14587
|
+
* @throws {RequiredError}
|
|
14588
|
+
*/
|
|
14589
|
+
deleteDeleteVideoRequest(id: number, customerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14590
|
+
/**
|
|
14591
|
+
* Get Customer Logo
|
|
14592
|
+
* @param {number} [customerId] Customer ID
|
|
14593
|
+
* @param {*} [options] Override http request option.
|
|
14594
|
+
* @throws {RequiredError}
|
|
14595
|
+
*/
|
|
14596
|
+
getDownloadLogo(customerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
14597
|
+
/**
|
|
14598
|
+
* Get Branded Videos
|
|
14599
|
+
* @param {number} [pageSize] Number Of Results
|
|
14600
|
+
* @param {number} [page] Page Number
|
|
14601
|
+
* @param {string} [search] Search
|
|
14602
|
+
* @param {GetGetBrandedVideosTypeEnum} [type] Type
|
|
14603
|
+
* @param {boolean} [outstanding] Outstanding
|
|
14604
|
+
* @param {boolean} [overdue] Overdue
|
|
14605
|
+
* @param {number} [customerId] Customer ID
|
|
14606
|
+
* @param {*} [options] Override http request option.
|
|
14607
|
+
* @throws {RequiredError}
|
|
14608
|
+
*/
|
|
14609
|
+
getGetBrandedVideos(pageSize?: number, page?: number, search?: string, type?: GetGetBrandedVideosTypeEnum, outstanding?: boolean, overdue?: boolean, customerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BrandedVideosSummariesModel>>;
|
|
14610
|
+
/**
|
|
14611
|
+
* Get Thumbnails
|
|
14612
|
+
* @param {*} [options] Override http request option.
|
|
14613
|
+
* @throws {RequiredError}
|
|
14614
|
+
*/
|
|
14615
|
+
getGetThumbnails(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ThumbnailDTO>>>;
|
|
14616
|
+
/**
|
|
14617
|
+
* Upload logo
|
|
14618
|
+
* @param {File} logo Logo
|
|
14619
|
+
* @param {number} [customerId] Customer ID
|
|
14620
|
+
* @param {*} [options] Override http request option.
|
|
14621
|
+
* @throws {RequiredError}
|
|
14622
|
+
*/
|
|
14623
|
+
postDownloadLogo(logo: File, customerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14624
|
+
/**
|
|
14625
|
+
* Send Branded Video Email
|
|
14626
|
+
* @param {string} email Email
|
|
14627
|
+
* @param {number} id Video ID
|
|
14628
|
+
* @param {number} [customerId] Customer ID
|
|
14629
|
+
* @param {*} [options] Override http request option.
|
|
14630
|
+
* @throws {RequiredError}
|
|
14631
|
+
*/
|
|
14632
|
+
postSendBrandedVideoEmail(email: string, id: number, customerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14633
|
+
/**
|
|
14634
|
+
* Upload Video
|
|
14635
|
+
* @param {string} thumbnailId Thumbnail ID
|
|
14636
|
+
* @param {number} id Video ID
|
|
14637
|
+
* @param {File} video Video
|
|
14638
|
+
* @param {number} [customerId] Customer ID
|
|
14639
|
+
* @param {*} [options] Override http request option.
|
|
14640
|
+
* @throws {RequiredError}
|
|
14641
|
+
*/
|
|
14642
|
+
postUploadVideo(thumbnailId: string, id: number, video: File, customerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BrandedVideoSummaryDTO>>;
|
|
14643
|
+
};
|
|
14644
|
+
/**
|
|
14645
|
+
* BrandedVideosApi - factory interface
|
|
14646
|
+
*/
|
|
14647
|
+
export declare const BrandedVideosApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14648
|
+
/**
|
|
14649
|
+
* Send Branded Video Email
|
|
14650
|
+
* @param {number} id Video ID
|
|
14651
|
+
* @param {number} [customerId] Customer ID
|
|
14652
|
+
* @param {*} [options] Override http request option.
|
|
14653
|
+
* @throws {RequiredError}
|
|
14654
|
+
*/
|
|
14655
|
+
deleteDeleteVideoRequest(id: number, customerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
14656
|
+
/**
|
|
14657
|
+
* Get Customer Logo
|
|
14658
|
+
* @param {number} [customerId] Customer ID
|
|
14659
|
+
* @param {*} [options] Override http request option.
|
|
14660
|
+
* @throws {RequiredError}
|
|
14661
|
+
*/
|
|
14662
|
+
getDownloadLogo(customerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
14663
|
+
/**
|
|
14664
|
+
* Get Branded Videos
|
|
14665
|
+
* @param {number} [pageSize] Number Of Results
|
|
14666
|
+
* @param {number} [page] Page Number
|
|
14667
|
+
* @param {string} [search] Search
|
|
14668
|
+
* @param {GetGetBrandedVideosTypeEnum} [type] Type
|
|
14669
|
+
* @param {boolean} [outstanding] Outstanding
|
|
14670
|
+
* @param {boolean} [overdue] Overdue
|
|
14671
|
+
* @param {number} [customerId] Customer ID
|
|
14672
|
+
* @param {*} [options] Override http request option.
|
|
14673
|
+
* @throws {RequiredError}
|
|
14674
|
+
*/
|
|
14675
|
+
getGetBrandedVideos(pageSize?: number, page?: number, search?: string, type?: GetGetBrandedVideosTypeEnum, outstanding?: boolean, overdue?: boolean, customerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<BrandedVideosSummariesModel>;
|
|
14676
|
+
/**
|
|
14677
|
+
* Get Thumbnails
|
|
14678
|
+
* @param {*} [options] Override http request option.
|
|
14679
|
+
* @throws {RequiredError}
|
|
14680
|
+
*/
|
|
14681
|
+
getGetThumbnails(options?: RawAxiosRequestConfig): AxiosPromise<Array<ThumbnailDTO>>;
|
|
14682
|
+
/**
|
|
14683
|
+
* Upload logo
|
|
14684
|
+
* @param {File} logo Logo
|
|
14685
|
+
* @param {number} [customerId] Customer ID
|
|
14686
|
+
* @param {*} [options] Override http request option.
|
|
14687
|
+
* @throws {RequiredError}
|
|
14688
|
+
*/
|
|
14689
|
+
postDownloadLogo(logo: File, customerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
14690
|
+
/**
|
|
14691
|
+
* Send Branded Video Email
|
|
14692
|
+
* @param {string} email Email
|
|
14693
|
+
* @param {number} id Video ID
|
|
14694
|
+
* @param {number} [customerId] Customer ID
|
|
14695
|
+
* @param {*} [options] Override http request option.
|
|
14696
|
+
* @throws {RequiredError}
|
|
14697
|
+
*/
|
|
14698
|
+
postSendBrandedVideoEmail(email: string, id: number, customerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
14699
|
+
/**
|
|
14700
|
+
* Upload Video
|
|
14701
|
+
* @param {string} thumbnailId Thumbnail ID
|
|
14702
|
+
* @param {number} id Video ID
|
|
14703
|
+
* @param {File} video Video
|
|
14704
|
+
* @param {number} [customerId] Customer ID
|
|
14705
|
+
* @param {*} [options] Override http request option.
|
|
14706
|
+
* @throws {RequiredError}
|
|
14707
|
+
*/
|
|
14708
|
+
postUploadVideo(thumbnailId: string, id: number, video: File, customerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<BrandedVideoSummaryDTO>;
|
|
14709
|
+
};
|
|
14710
|
+
/**
|
|
14711
|
+
* BrandedVideosApi - object-oriented interface
|
|
14712
|
+
*/
|
|
14713
|
+
export declare class BrandedVideosApi extends BaseAPI {
|
|
14714
|
+
/**
|
|
14715
|
+
* Send Branded Video Email
|
|
14716
|
+
* @param {number} id Video ID
|
|
14717
|
+
* @param {number} [customerId] Customer ID
|
|
14718
|
+
* @param {*} [options] Override http request option.
|
|
14719
|
+
* @throws {RequiredError}
|
|
14720
|
+
*/
|
|
14721
|
+
deleteDeleteVideoRequest(id: number, customerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
14722
|
+
/**
|
|
14723
|
+
* Get Customer Logo
|
|
14724
|
+
* @param {number} [customerId] Customer ID
|
|
14725
|
+
* @param {*} [options] Override http request option.
|
|
14726
|
+
* @throws {RequiredError}
|
|
14727
|
+
*/
|
|
14728
|
+
getDownloadLogo(customerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
14729
|
+
/**
|
|
14730
|
+
* Get Branded Videos
|
|
14731
|
+
* @param {number} [pageSize] Number Of Results
|
|
14732
|
+
* @param {number} [page] Page Number
|
|
14733
|
+
* @param {string} [search] Search
|
|
14734
|
+
* @param {GetGetBrandedVideosTypeEnum} [type] Type
|
|
14735
|
+
* @param {boolean} [outstanding] Outstanding
|
|
14736
|
+
* @param {boolean} [overdue] Overdue
|
|
14737
|
+
* @param {number} [customerId] Customer ID
|
|
14738
|
+
* @param {*} [options] Override http request option.
|
|
14739
|
+
* @throws {RequiredError}
|
|
14740
|
+
*/
|
|
14741
|
+
getGetBrandedVideos(pageSize?: number, page?: number, search?: string, type?: GetGetBrandedVideosTypeEnum, outstanding?: boolean, overdue?: boolean, customerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BrandedVideosSummariesModel, any, {}>>;
|
|
14742
|
+
/**
|
|
14743
|
+
* Get Thumbnails
|
|
14744
|
+
* @param {*} [options] Override http request option.
|
|
14745
|
+
* @throws {RequiredError}
|
|
14746
|
+
*/
|
|
14747
|
+
getGetThumbnails(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ThumbnailDTO[], any, {}>>;
|
|
14748
|
+
/**
|
|
14749
|
+
* Upload logo
|
|
14750
|
+
* @param {File} logo Logo
|
|
14751
|
+
* @param {number} [customerId] Customer ID
|
|
14752
|
+
* @param {*} [options] Override http request option.
|
|
14753
|
+
* @throws {RequiredError}
|
|
14754
|
+
*/
|
|
14755
|
+
postDownloadLogo(logo: File, customerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
14756
|
+
/**
|
|
14757
|
+
* Send Branded Video Email
|
|
14758
|
+
* @param {string} email Email
|
|
14759
|
+
* @param {number} id Video ID
|
|
14760
|
+
* @param {number} [customerId] Customer ID
|
|
14761
|
+
* @param {*} [options] Override http request option.
|
|
14762
|
+
* @throws {RequiredError}
|
|
14763
|
+
*/
|
|
14764
|
+
postSendBrandedVideoEmail(email: string, id: number, customerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
14765
|
+
/**
|
|
14766
|
+
* Upload Video
|
|
14767
|
+
* @param {string} thumbnailId Thumbnail ID
|
|
14768
|
+
* @param {number} id Video ID
|
|
14769
|
+
* @param {File} video Video
|
|
14770
|
+
* @param {number} [customerId] Customer ID
|
|
14771
|
+
* @param {*} [options] Override http request option.
|
|
14772
|
+
* @throws {RequiredError}
|
|
14773
|
+
*/
|
|
14774
|
+
postUploadVideo(thumbnailId: string, id: number, video: File, customerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BrandedVideoSummaryDTO, any, {}>>;
|
|
14775
|
+
}
|
|
14776
|
+
export declare const GetGetBrandedVideosTypeEnum: {
|
|
14777
|
+
readonly Paid: "paid";
|
|
14778
|
+
readonly Reward: "reward";
|
|
14779
|
+
readonly Sample: "sample";
|
|
14780
|
+
};
|
|
14781
|
+
export type GetGetBrandedVideosTypeEnum = typeof GetGetBrandedVideosTypeEnum[keyof typeof GetGetBrandedVideosTypeEnum];
|
|
14326
14782
|
/**
|
|
14327
14783
|
* CRMApi - axios parameter creator
|
|
14328
14784
|
*/
|
|
@@ -17986,6 +18442,8 @@ export declare const PostAccessTokenScopeEnum: {
|
|
|
17986
18442
|
readonly TcxWizard: "tcx_wizard";
|
|
17987
18443
|
readonly AccountsRead: "accounts.read";
|
|
17988
18444
|
readonly AccountsWrite: "accounts.write";
|
|
18445
|
+
readonly BrandedVideosread: "branded_videosread";
|
|
18446
|
+
readonly BrandedVideoswrite: "branded_videoswrite";
|
|
17989
18447
|
readonly NumberPortingRead: "number_porting.read";
|
|
17990
18448
|
readonly NumberPortingWrite: "number_porting.write";
|
|
17991
18449
|
readonly PricingRead: "pricing.read";
|
|
@@ -18024,6 +18482,8 @@ export declare const PostAuthoriseScopeEnum: {
|
|
|
18024
18482
|
readonly TcxWizard: "tcx_wizard";
|
|
18025
18483
|
readonly AccountsRead: "accounts.read";
|
|
18026
18484
|
readonly AccountsWrite: "accounts.write";
|
|
18485
|
+
readonly BrandedVideosread: "branded_videosread";
|
|
18486
|
+
readonly BrandedVideoswrite: "branded_videoswrite";
|
|
18027
18487
|
readonly NumberPortingRead: "number_porting.read";
|
|
18028
18488
|
readonly NumberPortingWrite: "number_porting.write";
|
|
18029
18489
|
readonly PricingRead: "pricing.read";
|