@connectreport/connectreport-js 2.42.3 → 2.48.2
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/README.md +3 -3
- package/api.ts +466 -105
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +456 -95
- package/dist/api.js +92 -42
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* ConnectReport Core API
|
|
3
3
|
* Leverage core reporting, templating, and document automation capabilities of ConnectReport Server.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 2.
|
|
5
|
+
* The version of the OpenAPI document: 2.48.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -136,12 +136,6 @@ export interface FilterCycle {
|
|
|
136
136
|
email?: FilterCycleEmailEnum;
|
|
137
137
|
/**
|
|
138
138
|
* Groups to share the published report with. This field will be updated entirely if provided
|
|
139
|
-
* @type {Array<ReportTaskUsersToShareWith>}
|
|
140
|
-
* @memberof FilterCycle
|
|
141
|
-
*/
|
|
142
|
-
usersToShareWith?: Array<ReportTaskUsersToShareWith>;
|
|
143
|
-
/**
|
|
144
|
-
* Users to share the published report with. This field will be updated entirely if provided
|
|
145
139
|
* @type {Array<ReportTaskGroupsToShareWith>}
|
|
146
140
|
* @memberof FilterCycle
|
|
147
141
|
*/
|
|
@@ -152,18 +146,6 @@ export interface FilterCycle {
|
|
|
152
146
|
* @memberof FilterCycle
|
|
153
147
|
*/
|
|
154
148
|
tags?: Array<ReportTaskTags>;
|
|
155
|
-
/**
|
|
156
|
-
* Emails to send the report to. This is only allowed if \"Allow reports to be shared with any email\" is to true.
|
|
157
|
-
* @type {Array<string>}
|
|
158
|
-
* @memberof FilterCycle
|
|
159
|
-
*/
|
|
160
|
-
emailRecipients?: Array<string>;
|
|
161
|
-
/**
|
|
162
|
-
* Denotes whether the email recipient list is confirmed. Value required to be true if emailRecipients is defined.
|
|
163
|
-
* @type {boolean}
|
|
164
|
-
* @memberof FilterCycle
|
|
165
|
-
*/
|
|
166
|
-
confirmedEmailRecipients?: boolean;
|
|
167
149
|
/**
|
|
168
150
|
*
|
|
169
151
|
* @type {FilterCycleAllOfFieldInfo}
|
|
@@ -214,7 +196,8 @@ export declare enum FilterCycleFrequencyEnum {
|
|
|
214
196
|
export declare enum FilterCycleEmailEnum {
|
|
215
197
|
Pdf = "pdf",
|
|
216
198
|
Pptx = "pptx",
|
|
217
|
-
Xlsx = "xlsx"
|
|
199
|
+
Xlsx = "xlsx",
|
|
200
|
+
Csv = "csv"
|
|
218
201
|
}
|
|
219
202
|
/**
|
|
220
203
|
*
|
|
@@ -343,10 +326,10 @@ export interface InlineResponse2001 {
|
|
|
343
326
|
export interface InlineResponse2002 {
|
|
344
327
|
/**
|
|
345
328
|
*
|
|
346
|
-
* @type {Array<
|
|
329
|
+
* @type {Array<ReportTaskResponse>}
|
|
347
330
|
* @memberof InlineResponse2002
|
|
348
331
|
*/
|
|
349
|
-
reportTasks?: Array<
|
|
332
|
+
reportTasks?: Array<ReportTaskResponse>;
|
|
350
333
|
/**
|
|
351
334
|
*
|
|
352
335
|
* @type {number}
|
|
@@ -664,12 +647,6 @@ export interface ReportTask {
|
|
|
664
647
|
email?: ReportTaskEmailEnum;
|
|
665
648
|
/**
|
|
666
649
|
* Groups to share the published report with. This field will be updated entirely if provided
|
|
667
|
-
* @type {Array<ReportTaskUsersToShareWith>}
|
|
668
|
-
* @memberof ReportTask
|
|
669
|
-
*/
|
|
670
|
-
usersToShareWith?: Array<ReportTaskUsersToShareWith>;
|
|
671
|
-
/**
|
|
672
|
-
* Users to share the published report with. This field will be updated entirely if provided
|
|
673
650
|
* @type {Array<ReportTaskGroupsToShareWith>}
|
|
674
651
|
* @memberof ReportTask
|
|
675
652
|
*/
|
|
@@ -680,18 +657,6 @@ export interface ReportTask {
|
|
|
680
657
|
* @memberof ReportTask
|
|
681
658
|
*/
|
|
682
659
|
tags?: Array<ReportTaskTags>;
|
|
683
|
-
/**
|
|
684
|
-
* Emails to send the report to. This is only allowed if \"Allow reports to be shared with any email\" is to true.
|
|
685
|
-
* @type {Array<string>}
|
|
686
|
-
* @memberof ReportTask
|
|
687
|
-
*/
|
|
688
|
-
emailRecipients?: Array<string>;
|
|
689
|
-
/**
|
|
690
|
-
* Denotes whether the email recipient list is confirmed. Value required to be true if emailRecipients is defined.
|
|
691
|
-
* @type {boolean}
|
|
692
|
-
* @memberof ReportTask
|
|
693
|
-
*/
|
|
694
|
-
confirmedEmailRecipients?: boolean;
|
|
695
660
|
}
|
|
696
661
|
/**
|
|
697
662
|
* @export
|
|
@@ -712,7 +677,8 @@ export declare enum ReportTaskFrequencyEnum {
|
|
|
712
677
|
export declare enum ReportTaskEmailEnum {
|
|
713
678
|
Pdf = "pdf",
|
|
714
679
|
Pptx = "pptx",
|
|
715
|
-
Xlsx = "xlsx"
|
|
680
|
+
Xlsx = "xlsx",
|
|
681
|
+
Csv = "csv"
|
|
716
682
|
}
|
|
717
683
|
/**
|
|
718
684
|
*
|
|
@@ -793,35 +759,430 @@ export interface ReportTaskGroupsToShareWith {
|
|
|
793
759
|
/**
|
|
794
760
|
*
|
|
795
761
|
* @export
|
|
796
|
-
* @interface
|
|
762
|
+
* @interface ReportTaskRequest
|
|
797
763
|
*/
|
|
798
|
-
export interface
|
|
764
|
+
export interface ReportTaskRequest {
|
|
799
765
|
/**
|
|
800
766
|
*
|
|
801
767
|
* @type {string}
|
|
802
|
-
* @memberof
|
|
768
|
+
* @memberof ReportTaskRequest
|
|
803
769
|
*/
|
|
804
770
|
id?: string;
|
|
771
|
+
/**
|
|
772
|
+
* Title of the report task
|
|
773
|
+
* @type {string}
|
|
774
|
+
* @memberof ReportTaskRequest
|
|
775
|
+
*/
|
|
776
|
+
title?: string;
|
|
805
777
|
/**
|
|
806
778
|
*
|
|
807
779
|
* @type {string}
|
|
808
|
-
* @memberof
|
|
780
|
+
* @memberof ReportTaskRequest
|
|
809
781
|
*/
|
|
810
|
-
|
|
782
|
+
templateId?: string;
|
|
783
|
+
/**
|
|
784
|
+
* Datetime in UTC when report task\'s schedule will start
|
|
785
|
+
* @type {string}
|
|
786
|
+
* @memberof ReportTaskRequest
|
|
787
|
+
*/
|
|
788
|
+
startOn?: string;
|
|
789
|
+
/**
|
|
790
|
+
* Datetime in UTC when report task schedule will end
|
|
791
|
+
* @type {string}
|
|
792
|
+
* @memberof ReportTaskRequest
|
|
793
|
+
*/
|
|
794
|
+
endOn?: string;
|
|
795
|
+
/**
|
|
796
|
+
* Describes the frequency of the report task\'s schedule
|
|
797
|
+
* @type {string}
|
|
798
|
+
* @memberof ReportTaskRequest
|
|
799
|
+
*/
|
|
800
|
+
frequency?: ReportTaskRequestFrequencyEnum;
|
|
801
|
+
/**
|
|
802
|
+
* The interval of the report task\'s schedule
|
|
803
|
+
* @type {string}
|
|
804
|
+
* @memberof ReportTaskRequest
|
|
805
|
+
*/
|
|
806
|
+
every?: string;
|
|
807
|
+
/**
|
|
808
|
+
* Datetime in UTC when the report task will execute
|
|
809
|
+
* @type {string}
|
|
810
|
+
* @memberof ReportTaskRequest
|
|
811
|
+
*/
|
|
812
|
+
at?: string;
|
|
813
|
+
/**
|
|
814
|
+
* Denotes whether the report task will go into the report processing queue
|
|
815
|
+
* @type {boolean}
|
|
816
|
+
* @memberof ReportTaskRequest
|
|
817
|
+
*/
|
|
818
|
+
enabled?: boolean;
|
|
819
|
+
/**
|
|
820
|
+
* Array of objects denoting filter sets to apply to the report task
|
|
821
|
+
* @type {Array<ReportTaskFilterSets>}
|
|
822
|
+
* @memberof ReportTaskRequest
|
|
823
|
+
*/
|
|
824
|
+
filterSets?: Array<ReportTaskFilterSets>;
|
|
825
|
+
/**
|
|
826
|
+
*
|
|
827
|
+
* @type {string}
|
|
828
|
+
* @memberof ReportTaskRequest
|
|
829
|
+
*/
|
|
830
|
+
filterCycleId?: string;
|
|
831
|
+
/**
|
|
832
|
+
* Calculated datetime in UTC when the report task will run next, if applicable
|
|
833
|
+
* @type {string}
|
|
834
|
+
* @memberof ReportTaskRequest
|
|
835
|
+
*/
|
|
836
|
+
nextRunAt?: string;
|
|
837
|
+
/**
|
|
838
|
+
* The error object from the last report task execution, if applicable
|
|
839
|
+
* @type {string}
|
|
840
|
+
* @memberof ReportTaskRequest
|
|
841
|
+
*/
|
|
842
|
+
error?: string;
|
|
843
|
+
/**
|
|
844
|
+
* The average time to run the report task, in minutes
|
|
845
|
+
* @type {number}
|
|
846
|
+
* @memberof ReportTaskRequest
|
|
847
|
+
*/
|
|
848
|
+
averageTimeToGenerate?: number;
|
|
849
|
+
/**
|
|
850
|
+
* Custom filters to apply. This field will be updated entirely if provided
|
|
851
|
+
* @type {Array<ReportTaskCustomSelection>}
|
|
852
|
+
* @memberof ReportTaskRequest
|
|
853
|
+
*/
|
|
854
|
+
customSelection?: Array<ReportTaskCustomSelection>;
|
|
855
|
+
/**
|
|
856
|
+
*
|
|
857
|
+
* @type {Array<ReportTaskVariables>}
|
|
858
|
+
* @memberof ReportTaskRequest
|
|
859
|
+
*/
|
|
860
|
+
variables?: Array<ReportTaskVariables>;
|
|
861
|
+
/**
|
|
862
|
+
*
|
|
863
|
+
* @type {{ [key: string]: string; }}
|
|
864
|
+
* @memberof ReportTaskRequest
|
|
865
|
+
*/
|
|
866
|
+
meta?: {
|
|
867
|
+
[key: string]: string;
|
|
868
|
+
};
|
|
869
|
+
/**
|
|
870
|
+
* The time spent waiting on data platform responses during the last report task execution, in minutes
|
|
871
|
+
* @type {number}
|
|
872
|
+
* @memberof ReportTaskRequest
|
|
873
|
+
*/
|
|
874
|
+
dataPlatformWaitTime?: number;
|
|
875
|
+
/**
|
|
876
|
+
* Denotes whether the generated report should be emailed to its users or groups after a successful run
|
|
877
|
+
* @type {string}
|
|
878
|
+
* @memberof ReportTaskRequest
|
|
879
|
+
*/
|
|
880
|
+
email?: ReportTaskRequestEmailEnum;
|
|
881
|
+
/**
|
|
882
|
+
* Groups to share the published report with. This field will be updated entirely if provided
|
|
883
|
+
* @type {Array<ReportTaskGroupsToShareWith>}
|
|
884
|
+
* @memberof ReportTaskRequest
|
|
885
|
+
*/
|
|
886
|
+
groupsToShareWith?: Array<ReportTaskGroupsToShareWith>;
|
|
887
|
+
/**
|
|
888
|
+
*
|
|
889
|
+
* @type {Array<ReportTaskTags>}
|
|
890
|
+
* @memberof ReportTaskRequest
|
|
891
|
+
*/
|
|
892
|
+
tags?: Array<ReportTaskTags>;
|
|
893
|
+
/**
|
|
894
|
+
* Emails to send the report to. This is only allowed if \"Allow reports to be shared with any email\" is to true.
|
|
895
|
+
* @type {Array<string>}
|
|
896
|
+
* @memberof ReportTaskRequest
|
|
897
|
+
*/
|
|
898
|
+
emailRecipients?: Array<string>;
|
|
899
|
+
/**
|
|
900
|
+
* Denotes whether the email recipient list is confirmed. Value required to be true if emailRecipients is defined.
|
|
901
|
+
* @type {boolean}
|
|
902
|
+
* @memberof ReportTaskRequest
|
|
903
|
+
*/
|
|
904
|
+
confirmedEmailRecipients?: boolean;
|
|
905
|
+
/**
|
|
906
|
+
* Users to share the published report with. This field will be updated entirely if provided
|
|
907
|
+
* @type {Array<ReportTaskRequestAllOfUsersToShareWith>}
|
|
908
|
+
* @memberof ReportTaskRequest
|
|
909
|
+
*/
|
|
910
|
+
usersToShareWith?: Array<ReportTaskRequestAllOfUsersToShareWith>;
|
|
911
|
+
}
|
|
912
|
+
/**
|
|
913
|
+
* @export
|
|
914
|
+
* @enum {string}
|
|
915
|
+
*/
|
|
916
|
+
export declare enum ReportTaskRequestFrequencyEnum {
|
|
917
|
+
Monthly = "Monthly",
|
|
918
|
+
OnceNow = "Once - now",
|
|
919
|
+
OnceScheduled = "Once - Scheduled",
|
|
920
|
+
Annually = "Annually",
|
|
921
|
+
Daily = "Daily",
|
|
922
|
+
Weekly = "Weekly"
|
|
923
|
+
}
|
|
924
|
+
/**
|
|
925
|
+
* @export
|
|
926
|
+
* @enum {string}
|
|
927
|
+
*/
|
|
928
|
+
export declare enum ReportTaskRequestEmailEnum {
|
|
929
|
+
Pdf = "pdf",
|
|
930
|
+
Pptx = "pptx",
|
|
931
|
+
Xlsx = "xlsx",
|
|
932
|
+
Csv = "csv"
|
|
933
|
+
}
|
|
934
|
+
/**
|
|
935
|
+
*
|
|
936
|
+
* @export
|
|
937
|
+
* @interface ReportTaskRequestAllOf
|
|
938
|
+
*/
|
|
939
|
+
export interface ReportTaskRequestAllOf {
|
|
940
|
+
/**
|
|
941
|
+
* Emails to send the report to. This is only allowed if \"Allow reports to be shared with any email\" is to true.
|
|
942
|
+
* @type {Array<string>}
|
|
943
|
+
* @memberof ReportTaskRequestAllOf
|
|
944
|
+
*/
|
|
945
|
+
emailRecipients?: Array<string>;
|
|
946
|
+
/**
|
|
947
|
+
* Denotes whether the email recipient list is confirmed. Value required to be true if emailRecipients is defined.
|
|
948
|
+
* @type {boolean}
|
|
949
|
+
* @memberof ReportTaskRequestAllOf
|
|
950
|
+
*/
|
|
951
|
+
confirmedEmailRecipients?: boolean;
|
|
952
|
+
/**
|
|
953
|
+
* Users to share the published report with. This field will be updated entirely if provided
|
|
954
|
+
* @type {Array<ReportTaskRequestAllOfUsersToShareWith>}
|
|
955
|
+
* @memberof ReportTaskRequestAllOf
|
|
956
|
+
*/
|
|
957
|
+
usersToShareWith?: Array<ReportTaskRequestAllOfUsersToShareWith>;
|
|
811
958
|
}
|
|
812
959
|
/**
|
|
813
960
|
*
|
|
814
961
|
* @export
|
|
815
|
-
* @interface
|
|
962
|
+
* @interface ReportTaskRequestAllOfUsersToShareWith
|
|
816
963
|
*/
|
|
817
|
-
export interface
|
|
964
|
+
export interface ReportTaskRequestAllOfUsersToShareWith {
|
|
818
965
|
/**
|
|
819
966
|
*
|
|
820
967
|
* @type {string}
|
|
821
|
-
* @memberof
|
|
968
|
+
* @memberof ReportTaskRequestAllOfUsersToShareWith
|
|
822
969
|
*/
|
|
823
970
|
userId?: string;
|
|
824
971
|
}
|
|
972
|
+
/**
|
|
973
|
+
*
|
|
974
|
+
* @export
|
|
975
|
+
* @interface ReportTaskResponse
|
|
976
|
+
*/
|
|
977
|
+
export interface ReportTaskResponse {
|
|
978
|
+
/**
|
|
979
|
+
*
|
|
980
|
+
* @type {string}
|
|
981
|
+
* @memberof ReportTaskResponse
|
|
982
|
+
*/
|
|
983
|
+
id?: string;
|
|
984
|
+
/**
|
|
985
|
+
* Title of the report task
|
|
986
|
+
* @type {string}
|
|
987
|
+
* @memberof ReportTaskResponse
|
|
988
|
+
*/
|
|
989
|
+
title?: string;
|
|
990
|
+
/**
|
|
991
|
+
*
|
|
992
|
+
* @type {string}
|
|
993
|
+
* @memberof ReportTaskResponse
|
|
994
|
+
*/
|
|
995
|
+
templateId?: string;
|
|
996
|
+
/**
|
|
997
|
+
* Datetime in UTC when report task\'s schedule will start
|
|
998
|
+
* @type {string}
|
|
999
|
+
* @memberof ReportTaskResponse
|
|
1000
|
+
*/
|
|
1001
|
+
startOn?: string;
|
|
1002
|
+
/**
|
|
1003
|
+
* Datetime in UTC when report task schedule will end
|
|
1004
|
+
* @type {string}
|
|
1005
|
+
* @memberof ReportTaskResponse
|
|
1006
|
+
*/
|
|
1007
|
+
endOn?: string;
|
|
1008
|
+
/**
|
|
1009
|
+
* Describes the frequency of the report task\'s schedule
|
|
1010
|
+
* @type {string}
|
|
1011
|
+
* @memberof ReportTaskResponse
|
|
1012
|
+
*/
|
|
1013
|
+
frequency?: ReportTaskResponseFrequencyEnum;
|
|
1014
|
+
/**
|
|
1015
|
+
* The interval of the report task\'s schedule
|
|
1016
|
+
* @type {string}
|
|
1017
|
+
* @memberof ReportTaskResponse
|
|
1018
|
+
*/
|
|
1019
|
+
every?: string;
|
|
1020
|
+
/**
|
|
1021
|
+
* Datetime in UTC when the report task will execute
|
|
1022
|
+
* @type {string}
|
|
1023
|
+
* @memberof ReportTaskResponse
|
|
1024
|
+
*/
|
|
1025
|
+
at?: string;
|
|
1026
|
+
/**
|
|
1027
|
+
* Denotes whether the report task will go into the report processing queue
|
|
1028
|
+
* @type {boolean}
|
|
1029
|
+
* @memberof ReportTaskResponse
|
|
1030
|
+
*/
|
|
1031
|
+
enabled?: boolean;
|
|
1032
|
+
/**
|
|
1033
|
+
* Array of objects denoting filter sets to apply to the report task
|
|
1034
|
+
* @type {Array<ReportTaskFilterSets>}
|
|
1035
|
+
* @memberof ReportTaskResponse
|
|
1036
|
+
*/
|
|
1037
|
+
filterSets?: Array<ReportTaskFilterSets>;
|
|
1038
|
+
/**
|
|
1039
|
+
*
|
|
1040
|
+
* @type {string}
|
|
1041
|
+
* @memberof ReportTaskResponse
|
|
1042
|
+
*/
|
|
1043
|
+
filterCycleId?: string;
|
|
1044
|
+
/**
|
|
1045
|
+
* Calculated datetime in UTC when the report task will run next, if applicable
|
|
1046
|
+
* @type {string}
|
|
1047
|
+
* @memberof ReportTaskResponse
|
|
1048
|
+
*/
|
|
1049
|
+
nextRunAt?: string;
|
|
1050
|
+
/**
|
|
1051
|
+
* The error object from the last report task execution, if applicable
|
|
1052
|
+
* @type {string}
|
|
1053
|
+
* @memberof ReportTaskResponse
|
|
1054
|
+
*/
|
|
1055
|
+
error?: string;
|
|
1056
|
+
/**
|
|
1057
|
+
* The average time to run the report task, in minutes
|
|
1058
|
+
* @type {number}
|
|
1059
|
+
* @memberof ReportTaskResponse
|
|
1060
|
+
*/
|
|
1061
|
+
averageTimeToGenerate?: number;
|
|
1062
|
+
/**
|
|
1063
|
+
* Custom filters to apply. This field will be updated entirely if provided
|
|
1064
|
+
* @type {Array<ReportTaskCustomSelection>}
|
|
1065
|
+
* @memberof ReportTaskResponse
|
|
1066
|
+
*/
|
|
1067
|
+
customSelection?: Array<ReportTaskCustomSelection>;
|
|
1068
|
+
/**
|
|
1069
|
+
*
|
|
1070
|
+
* @type {Array<ReportTaskVariables>}
|
|
1071
|
+
* @memberof ReportTaskResponse
|
|
1072
|
+
*/
|
|
1073
|
+
variables?: Array<ReportTaskVariables>;
|
|
1074
|
+
/**
|
|
1075
|
+
*
|
|
1076
|
+
* @type {{ [key: string]: string; }}
|
|
1077
|
+
* @memberof ReportTaskResponse
|
|
1078
|
+
*/
|
|
1079
|
+
meta?: {
|
|
1080
|
+
[key: string]: string;
|
|
1081
|
+
};
|
|
1082
|
+
/**
|
|
1083
|
+
* The time spent waiting on data platform responses during the last report task execution, in minutes
|
|
1084
|
+
* @type {number}
|
|
1085
|
+
* @memberof ReportTaskResponse
|
|
1086
|
+
*/
|
|
1087
|
+
dataPlatformWaitTime?: number;
|
|
1088
|
+
/**
|
|
1089
|
+
* Denotes whether the generated report should be emailed to its users or groups after a successful run
|
|
1090
|
+
* @type {string}
|
|
1091
|
+
* @memberof ReportTaskResponse
|
|
1092
|
+
*/
|
|
1093
|
+
email?: ReportTaskResponseEmailEnum;
|
|
1094
|
+
/**
|
|
1095
|
+
* Groups to share the published report with. This field will be updated entirely if provided
|
|
1096
|
+
* @type {Array<ReportTaskGroupsToShareWith>}
|
|
1097
|
+
* @memberof ReportTaskResponse
|
|
1098
|
+
*/
|
|
1099
|
+
groupsToShareWith?: Array<ReportTaskGroupsToShareWith>;
|
|
1100
|
+
/**
|
|
1101
|
+
*
|
|
1102
|
+
* @type {Array<ReportTaskTags>}
|
|
1103
|
+
* @memberof ReportTaskResponse
|
|
1104
|
+
*/
|
|
1105
|
+
tags?: Array<ReportTaskTags>;
|
|
1106
|
+
/**
|
|
1107
|
+
* Users to share the published report with. This field will be updated entirely if provided
|
|
1108
|
+
* @type {Array<ReportTaskResponseAllOfUsersToShareWith>}
|
|
1109
|
+
* @memberof ReportTaskResponse
|
|
1110
|
+
*/
|
|
1111
|
+
usersToShareWith?: Array<ReportTaskResponseAllOfUsersToShareWith>;
|
|
1112
|
+
}
|
|
1113
|
+
/**
|
|
1114
|
+
* @export
|
|
1115
|
+
* @enum {string}
|
|
1116
|
+
*/
|
|
1117
|
+
export declare enum ReportTaskResponseFrequencyEnum {
|
|
1118
|
+
Monthly = "Monthly",
|
|
1119
|
+
OnceNow = "Once - now",
|
|
1120
|
+
OnceScheduled = "Once - Scheduled",
|
|
1121
|
+
Annually = "Annually",
|
|
1122
|
+
Daily = "Daily",
|
|
1123
|
+
Weekly = "Weekly"
|
|
1124
|
+
}
|
|
1125
|
+
/**
|
|
1126
|
+
* @export
|
|
1127
|
+
* @enum {string}
|
|
1128
|
+
*/
|
|
1129
|
+
export declare enum ReportTaskResponseEmailEnum {
|
|
1130
|
+
Pdf = "pdf",
|
|
1131
|
+
Pptx = "pptx",
|
|
1132
|
+
Xlsx = "xlsx",
|
|
1133
|
+
Csv = "csv"
|
|
1134
|
+
}
|
|
1135
|
+
/**
|
|
1136
|
+
*
|
|
1137
|
+
* @export
|
|
1138
|
+
* @interface ReportTaskResponseAllOf
|
|
1139
|
+
*/
|
|
1140
|
+
export interface ReportTaskResponseAllOf {
|
|
1141
|
+
/**
|
|
1142
|
+
* Users to share the published report with. This field will be updated entirely if provided
|
|
1143
|
+
* @type {Array<ReportTaskResponseAllOfUsersToShareWith>}
|
|
1144
|
+
* @memberof ReportTaskResponseAllOf
|
|
1145
|
+
*/
|
|
1146
|
+
usersToShareWith?: Array<ReportTaskResponseAllOfUsersToShareWith>;
|
|
1147
|
+
}
|
|
1148
|
+
/**
|
|
1149
|
+
*
|
|
1150
|
+
* @export
|
|
1151
|
+
* @interface ReportTaskResponseAllOfUsersToShareWith
|
|
1152
|
+
*/
|
|
1153
|
+
export interface ReportTaskResponseAllOfUsersToShareWith {
|
|
1154
|
+
/**
|
|
1155
|
+
*
|
|
1156
|
+
* @type {string}
|
|
1157
|
+
* @memberof ReportTaskResponseAllOfUsersToShareWith
|
|
1158
|
+
*/
|
|
1159
|
+
userId?: string;
|
|
1160
|
+
/**
|
|
1161
|
+
*
|
|
1162
|
+
* @type {string}
|
|
1163
|
+
* @memberof ReportTaskResponseAllOfUsersToShareWith
|
|
1164
|
+
*/
|
|
1165
|
+
email?: string;
|
|
1166
|
+
}
|
|
1167
|
+
/**
|
|
1168
|
+
*
|
|
1169
|
+
* @export
|
|
1170
|
+
* @interface ReportTaskTags
|
|
1171
|
+
*/
|
|
1172
|
+
export interface ReportTaskTags {
|
|
1173
|
+
/**
|
|
1174
|
+
*
|
|
1175
|
+
* @type {string}
|
|
1176
|
+
* @memberof ReportTaskTags
|
|
1177
|
+
*/
|
|
1178
|
+
id?: string;
|
|
1179
|
+
/**
|
|
1180
|
+
*
|
|
1181
|
+
* @type {string}
|
|
1182
|
+
* @memberof ReportTaskTags
|
|
1183
|
+
*/
|
|
1184
|
+
name?: string;
|
|
1185
|
+
}
|
|
825
1186
|
/**
|
|
826
1187
|
*
|
|
827
1188
|
* @export
|
|
@@ -1056,12 +1417,12 @@ export declare const DocumentsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1056
1417
|
*
|
|
1057
1418
|
* @summary Retrieve a generated document
|
|
1058
1419
|
* @param {string} fileName
|
|
1059
|
-
* @param {'pdf' | 'pptx' | '
|
|
1420
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} fileType
|
|
1060
1421
|
* @param {string} [attachmentName] A document file title. This value is reflected back to the client in the fileName header.
|
|
1061
1422
|
* @param {*} [options] Override http request option.
|
|
1062
1423
|
* @throws {RequiredError}
|
|
1063
1424
|
*/
|
|
1064
|
-
getDocument: (fileName: string, fileType: 'pdf' | 'pptx' | '
|
|
1425
|
+
getDocument: (fileName: string, fileType: 'pdf' | 'pptx' | 'xlsx' | 'csv', attachmentName?: string, options?: any) => Promise<RequestArgs>;
|
|
1065
1426
|
};
|
|
1066
1427
|
/**
|
|
1067
1428
|
* DocumentsApi - functional programming interface
|
|
@@ -1072,12 +1433,12 @@ export declare const DocumentsApiFp: (configuration?: Configuration) => {
|
|
|
1072
1433
|
*
|
|
1073
1434
|
* @summary Retrieve a generated document
|
|
1074
1435
|
* @param {string} fileName
|
|
1075
|
-
* @param {'pdf' | 'pptx' | '
|
|
1436
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} fileType
|
|
1076
1437
|
* @param {string} [attachmentName] A document file title. This value is reflected back to the client in the fileName header.
|
|
1077
1438
|
* @param {*} [options] Override http request option.
|
|
1078
1439
|
* @throws {RequiredError}
|
|
1079
1440
|
*/
|
|
1080
|
-
getDocument(fileName: string, fileType: 'pdf' | 'pptx' | '
|
|
1441
|
+
getDocument(fileName: string, fileType: 'pdf' | 'pptx' | 'xlsx' | 'csv', attachmentName?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1081
1442
|
};
|
|
1082
1443
|
/**
|
|
1083
1444
|
* DocumentsApi - factory interface
|
|
@@ -1088,12 +1449,12 @@ export declare const DocumentsApiFactory: (configuration?: Configuration, basePa
|
|
|
1088
1449
|
*
|
|
1089
1450
|
* @summary Retrieve a generated document
|
|
1090
1451
|
* @param {string} fileName
|
|
1091
|
-
* @param {'pdf' | 'pptx' | '
|
|
1452
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} fileType
|
|
1092
1453
|
* @param {string} [attachmentName] A document file title. This value is reflected back to the client in the fileName header.
|
|
1093
1454
|
* @param {*} [options] Override http request option.
|
|
1094
1455
|
* @throws {RequiredError}
|
|
1095
1456
|
*/
|
|
1096
|
-
getDocument(fileName: string, fileType: 'pdf' | 'pptx' | '
|
|
1457
|
+
getDocument(fileName: string, fileType: 'pdf' | 'pptx' | 'xlsx' | 'csv', attachmentName?: string, options?: any): AxiosPromise<any>;
|
|
1097
1458
|
};
|
|
1098
1459
|
/**
|
|
1099
1460
|
* DocumentsApi - object-oriented interface
|
|
@@ -1106,13 +1467,13 @@ export declare class DocumentsApi extends BaseAPI {
|
|
|
1106
1467
|
*
|
|
1107
1468
|
* @summary Retrieve a generated document
|
|
1108
1469
|
* @param {string} fileName
|
|
1109
|
-
* @param {'pdf' | 'pptx' | '
|
|
1470
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} fileType
|
|
1110
1471
|
* @param {string} [attachmentName] A document file title. This value is reflected back to the client in the fileName header.
|
|
1111
1472
|
* @param {*} [options] Override http request option.
|
|
1112
1473
|
* @throws {RequiredError}
|
|
1113
1474
|
* @memberof DocumentsApi
|
|
1114
1475
|
*/
|
|
1115
|
-
getDocument(fileName: string, fileType: 'pdf' | 'pptx' | '
|
|
1476
|
+
getDocument(fileName: string, fileType: 'pdf' | 'pptx' | 'xlsx' | 'csv', attachmentName?: string, options?: any): Promise<import("axios").AxiosResponse<any>>;
|
|
1116
1477
|
}
|
|
1117
1478
|
/**
|
|
1118
1479
|
* FilterCyclesApi - axios parameter creator
|
|
@@ -1468,11 +1829,11 @@ export declare const ReportTasksApiAxiosParamCreator: (configuration?: Configura
|
|
|
1468
1829
|
/**
|
|
1469
1830
|
*
|
|
1470
1831
|
* @summary Create report task
|
|
1471
|
-
* @param {
|
|
1832
|
+
* @param {ReportTaskRequest} reportTaskRequest
|
|
1472
1833
|
* @param {*} [options] Override http request option.
|
|
1473
1834
|
* @throws {RequiredError}
|
|
1474
1835
|
*/
|
|
1475
|
-
createReportTask: (
|
|
1836
|
+
createReportTask: (reportTaskRequest: ReportTaskRequest, options?: any) => Promise<RequestArgs>;
|
|
1476
1837
|
/**
|
|
1477
1838
|
* Delete a report task by its ID
|
|
1478
1839
|
* @summary Delete report task
|
|
@@ -1507,11 +1868,11 @@ export declare const ReportTasksApiAxiosParamCreator: (configuration?: Configura
|
|
|
1507
1868
|
* Accepts partial updates
|
|
1508
1869
|
* @summary Update report task by ID
|
|
1509
1870
|
* @param {string} id
|
|
1510
|
-
* @param {
|
|
1871
|
+
* @param {ReportTaskRequest} reportTaskRequest
|
|
1511
1872
|
* @param {*} [options] Override http request option.
|
|
1512
1873
|
* @throws {RequiredError}
|
|
1513
1874
|
*/
|
|
1514
|
-
updateReportTask: (id: string,
|
|
1875
|
+
updateReportTask: (id: string, reportTaskRequest: ReportTaskRequest, options?: any) => Promise<RequestArgs>;
|
|
1515
1876
|
};
|
|
1516
1877
|
/**
|
|
1517
1878
|
* ReportTasksApi - functional programming interface
|
|
@@ -1521,11 +1882,11 @@ export declare const ReportTasksApiFp: (configuration?: Configuration) => {
|
|
|
1521
1882
|
/**
|
|
1522
1883
|
*
|
|
1523
1884
|
* @summary Create report task
|
|
1524
|
-
* @param {
|
|
1885
|
+
* @param {ReportTaskRequest} reportTaskRequest
|
|
1525
1886
|
* @param {*} [options] Override http request option.
|
|
1526
1887
|
* @throws {RequiredError}
|
|
1527
1888
|
*/
|
|
1528
|
-
createReportTask(
|
|
1889
|
+
createReportTask(reportTaskRequest: ReportTaskRequest, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportTaskResponse>>;
|
|
1529
1890
|
/**
|
|
1530
1891
|
* Delete a report task by its ID
|
|
1531
1892
|
* @summary Delete report task
|
|
@@ -1534,7 +1895,7 @@ export declare const ReportTasksApiFp: (configuration?: Configuration) => {
|
|
|
1534
1895
|
* @param {*} [options] Override http request option.
|
|
1535
1896
|
* @throws {RequiredError}
|
|
1536
1897
|
*/
|
|
1537
|
-
deleteReportTask(id: string, deleteAssociatedReports?: boolean, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
1898
|
+
deleteReportTask(id: string, deleteAssociatedReports?: boolean, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1538
1899
|
/**
|
|
1539
1900
|
* Read a report task by its ID
|
|
1540
1901
|
* @summary Read report task
|
|
@@ -1542,7 +1903,7 @@ export declare const ReportTasksApiFp: (configuration?: Configuration) => {
|
|
|
1542
1903
|
* @param {*} [options] Override http request option.
|
|
1543
1904
|
* @throws {RequiredError}
|
|
1544
1905
|
*/
|
|
1545
|
-
getReportTask(id: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
1906
|
+
getReportTask(id: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportTaskResponse>>;
|
|
1546
1907
|
/**
|
|
1547
1908
|
*
|
|
1548
1909
|
* @summary List report tasks
|
|
@@ -1560,11 +1921,11 @@ export declare const ReportTasksApiFp: (configuration?: Configuration) => {
|
|
|
1560
1921
|
* Accepts partial updates
|
|
1561
1922
|
* @summary Update report task by ID
|
|
1562
1923
|
* @param {string} id
|
|
1563
|
-
* @param {
|
|
1924
|
+
* @param {ReportTaskRequest} reportTaskRequest
|
|
1564
1925
|
* @param {*} [options] Override http request option.
|
|
1565
1926
|
* @throws {RequiredError}
|
|
1566
1927
|
*/
|
|
1567
|
-
updateReportTask(id: string,
|
|
1928
|
+
updateReportTask(id: string, reportTaskRequest: ReportTaskRequest, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportTaskResponse>>;
|
|
1568
1929
|
};
|
|
1569
1930
|
/**
|
|
1570
1931
|
* ReportTasksApi - factory interface
|
|
@@ -1574,11 +1935,11 @@ export declare const ReportTasksApiFactory: (configuration?: Configuration, base
|
|
|
1574
1935
|
/**
|
|
1575
1936
|
*
|
|
1576
1937
|
* @summary Create report task
|
|
1577
|
-
* @param {
|
|
1938
|
+
* @param {ReportTaskRequest} reportTaskRequest
|
|
1578
1939
|
* @param {*} [options] Override http request option.
|
|
1579
1940
|
* @throws {RequiredError}
|
|
1580
1941
|
*/
|
|
1581
|
-
createReportTask(
|
|
1942
|
+
createReportTask(reportTaskRequest: ReportTaskRequest, options?: any): AxiosPromise<ReportTaskResponse>;
|
|
1582
1943
|
/**
|
|
1583
1944
|
* Delete a report task by its ID
|
|
1584
1945
|
* @summary Delete report task
|
|
@@ -1587,7 +1948,7 @@ export declare const ReportTasksApiFactory: (configuration?: Configuration, base
|
|
|
1587
1948
|
* @param {*} [options] Override http request option.
|
|
1588
1949
|
* @throws {RequiredError}
|
|
1589
1950
|
*/
|
|
1590
|
-
deleteReportTask(id: string, deleteAssociatedReports?: boolean, options?: any): AxiosPromise<
|
|
1951
|
+
deleteReportTask(id: string, deleteAssociatedReports?: boolean, options?: any): AxiosPromise<void>;
|
|
1591
1952
|
/**
|
|
1592
1953
|
* Read a report task by its ID
|
|
1593
1954
|
* @summary Read report task
|
|
@@ -1595,7 +1956,7 @@ export declare const ReportTasksApiFactory: (configuration?: Configuration, base
|
|
|
1595
1956
|
* @param {*} [options] Override http request option.
|
|
1596
1957
|
* @throws {RequiredError}
|
|
1597
1958
|
*/
|
|
1598
|
-
getReportTask(id: string, options?: any): AxiosPromise<
|
|
1959
|
+
getReportTask(id: string, options?: any): AxiosPromise<ReportTaskResponse>;
|
|
1599
1960
|
/**
|
|
1600
1961
|
*
|
|
1601
1962
|
* @summary List report tasks
|
|
@@ -1613,11 +1974,11 @@ export declare const ReportTasksApiFactory: (configuration?: Configuration, base
|
|
|
1613
1974
|
* Accepts partial updates
|
|
1614
1975
|
* @summary Update report task by ID
|
|
1615
1976
|
* @param {string} id
|
|
1616
|
-
* @param {
|
|
1977
|
+
* @param {ReportTaskRequest} reportTaskRequest
|
|
1617
1978
|
* @param {*} [options] Override http request option.
|
|
1618
1979
|
* @throws {RequiredError}
|
|
1619
1980
|
*/
|
|
1620
|
-
updateReportTask(id: string,
|
|
1981
|
+
updateReportTask(id: string, reportTaskRequest: ReportTaskRequest, options?: any): AxiosPromise<ReportTaskResponse>;
|
|
1621
1982
|
};
|
|
1622
1983
|
/**
|
|
1623
1984
|
* ReportTasksApi - object-oriented interface
|
|
@@ -1629,12 +1990,12 @@ export declare class ReportTasksApi extends BaseAPI {
|
|
|
1629
1990
|
/**
|
|
1630
1991
|
*
|
|
1631
1992
|
* @summary Create report task
|
|
1632
|
-
* @param {
|
|
1993
|
+
* @param {ReportTaskRequest} reportTaskRequest
|
|
1633
1994
|
* @param {*} [options] Override http request option.
|
|
1634
1995
|
* @throws {RequiredError}
|
|
1635
1996
|
* @memberof ReportTasksApi
|
|
1636
1997
|
*/
|
|
1637
|
-
createReportTask(
|
|
1998
|
+
createReportTask(reportTaskRequest: ReportTaskRequest, options?: any): Promise<import("axios").AxiosResponse<ReportTaskResponse>>;
|
|
1638
1999
|
/**
|
|
1639
2000
|
* Delete a report task by its ID
|
|
1640
2001
|
* @summary Delete report task
|
|
@@ -1644,7 +2005,7 @@ export declare class ReportTasksApi extends BaseAPI {
|
|
|
1644
2005
|
* @throws {RequiredError}
|
|
1645
2006
|
* @memberof ReportTasksApi
|
|
1646
2007
|
*/
|
|
1647
|
-
deleteReportTask(id: string, deleteAssociatedReports?: boolean, options?: any): Promise<import("axios").AxiosResponse<
|
|
2008
|
+
deleteReportTask(id: string, deleteAssociatedReports?: boolean, options?: any): Promise<import("axios").AxiosResponse<void>>;
|
|
1648
2009
|
/**
|
|
1649
2010
|
* Read a report task by its ID
|
|
1650
2011
|
* @summary Read report task
|
|
@@ -1653,7 +2014,7 @@ export declare class ReportTasksApi extends BaseAPI {
|
|
|
1653
2014
|
* @throws {RequiredError}
|
|
1654
2015
|
* @memberof ReportTasksApi
|
|
1655
2016
|
*/
|
|
1656
|
-
getReportTask(id: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
2017
|
+
getReportTask(id: string, options?: any): Promise<import("axios").AxiosResponse<ReportTaskResponse>>;
|
|
1657
2018
|
/**
|
|
1658
2019
|
*
|
|
1659
2020
|
* @summary List report tasks
|
|
@@ -1672,12 +2033,12 @@ export declare class ReportTasksApi extends BaseAPI {
|
|
|
1672
2033
|
* Accepts partial updates
|
|
1673
2034
|
* @summary Update report task by ID
|
|
1674
2035
|
* @param {string} id
|
|
1675
|
-
* @param {
|
|
2036
|
+
* @param {ReportTaskRequest} reportTaskRequest
|
|
1676
2037
|
* @param {*} [options] Override http request option.
|
|
1677
2038
|
* @throws {RequiredError}
|
|
1678
2039
|
* @memberof ReportTasksApi
|
|
1679
2040
|
*/
|
|
1680
|
-
updateReportTask(id: string,
|
|
2041
|
+
updateReportTask(id: string, reportTaskRequest: ReportTaskRequest, options?: any): Promise<import("axios").AxiosResponse<ReportTaskResponse>>;
|
|
1681
2042
|
}
|
|
1682
2043
|
/**
|
|
1683
2044
|
* ReportsApi - axios parameter creator
|
|
@@ -1714,11 +2075,11 @@ export declare const ReportsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
1714
2075
|
*
|
|
1715
2076
|
* @summary Render a published report
|
|
1716
2077
|
* @param {string} id
|
|
1717
|
-
* @param {'pdf' | 'pptx' | '
|
|
2078
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
1718
2079
|
* @param {*} [options] Override http request option.
|
|
1719
2080
|
* @throws {RequiredError}
|
|
1720
2081
|
*/
|
|
1721
|
-
renderReport: (id: string, format: 'pdf' | 'pptx' | '
|
|
2082
|
+
renderReport: (id: string, format: 'pdf' | 'pptx' | 'xlsx' | 'csv', options?: any) => Promise<RequestArgs>;
|
|
1722
2083
|
};
|
|
1723
2084
|
/**
|
|
1724
2085
|
* ReportsApi - functional programming interface
|
|
@@ -1755,11 +2116,11 @@ export declare const ReportsApiFp: (configuration?: Configuration) => {
|
|
|
1755
2116
|
*
|
|
1756
2117
|
* @summary Render a published report
|
|
1757
2118
|
* @param {string} id
|
|
1758
|
-
* @param {'pdf' | 'pptx' | '
|
|
2119
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
1759
2120
|
* @param {*} [options] Override http request option.
|
|
1760
2121
|
* @throws {RequiredError}
|
|
1761
2122
|
*/
|
|
1762
|
-
renderReport(id: string, format: 'pdf' | 'pptx' | '
|
|
2123
|
+
renderReport(id: string, format: 'pdf' | 'pptx' | 'xlsx' | 'csv', options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Job>>;
|
|
1763
2124
|
};
|
|
1764
2125
|
/**
|
|
1765
2126
|
* ReportsApi - factory interface
|
|
@@ -1796,11 +2157,11 @@ export declare const ReportsApiFactory: (configuration?: Configuration, basePath
|
|
|
1796
2157
|
*
|
|
1797
2158
|
* @summary Render a published report
|
|
1798
2159
|
* @param {string} id
|
|
1799
|
-
* @param {'pdf' | 'pptx' | '
|
|
2160
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
1800
2161
|
* @param {*} [options] Override http request option.
|
|
1801
2162
|
* @throws {RequiredError}
|
|
1802
2163
|
*/
|
|
1803
|
-
renderReport(id: string, format: 'pdf' | 'pptx' | '
|
|
2164
|
+
renderReport(id: string, format: 'pdf' | 'pptx' | 'xlsx' | 'csv', options?: any): AxiosPromise<Job>;
|
|
1804
2165
|
};
|
|
1805
2166
|
/**
|
|
1806
2167
|
* ReportsApi - object-oriented interface
|
|
@@ -1842,12 +2203,12 @@ export declare class ReportsApi extends BaseAPI {
|
|
|
1842
2203
|
*
|
|
1843
2204
|
* @summary Render a published report
|
|
1844
2205
|
* @param {string} id
|
|
1845
|
-
* @param {'pdf' | 'pptx' | '
|
|
2206
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
1846
2207
|
* @param {*} [options] Override http request option.
|
|
1847
2208
|
* @throws {RequiredError}
|
|
1848
2209
|
* @memberof ReportsApi
|
|
1849
2210
|
*/
|
|
1850
|
-
renderReport(id: string, format: 'pdf' | 'pptx' | '
|
|
2211
|
+
renderReport(id: string, format: 'pdf' | 'pptx' | 'xlsx' | 'csv', options?: any): Promise<import("axios").AxiosResponse<Job>>;
|
|
1851
2212
|
}
|
|
1852
2213
|
/**
|
|
1853
2214
|
* TemplatesApi - axios parameter creator
|
|
@@ -1914,11 +2275,11 @@ export declare const TemplatesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1914
2275
|
* Render a report template to PDF, PPTX, or XLSX. Responds with a job entity.
|
|
1915
2276
|
* @summary Render a report template
|
|
1916
2277
|
* @param {string} id
|
|
1917
|
-
* @param {'pdf' | 'pptx' | '
|
|
2278
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
1918
2279
|
* @param {*} [options] Override http request option.
|
|
1919
2280
|
* @throws {RequiredError}
|
|
1920
2281
|
*/
|
|
1921
|
-
renderTemplate: (id: string, format: 'pdf' | 'pptx' | '
|
|
2282
|
+
renderTemplate: (id: string, format: 'pdf' | 'pptx' | 'xlsx' | 'csv', options?: any) => Promise<RequestArgs>;
|
|
1922
2283
|
/**
|
|
1923
2284
|
* Accepts partial updates
|
|
1924
2285
|
* @summary Update report template by ID
|
|
@@ -1994,11 +2355,11 @@ export declare const TemplatesApiFp: (configuration?: Configuration) => {
|
|
|
1994
2355
|
* Render a report template to PDF, PPTX, or XLSX. Responds with a job entity.
|
|
1995
2356
|
* @summary Render a report template
|
|
1996
2357
|
* @param {string} id
|
|
1997
|
-
* @param {'pdf' | 'pptx' | '
|
|
2358
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
1998
2359
|
* @param {*} [options] Override http request option.
|
|
1999
2360
|
* @throws {RequiredError}
|
|
2000
2361
|
*/
|
|
2001
|
-
renderTemplate(id: string, format: 'pdf' | 'pptx' | '
|
|
2362
|
+
renderTemplate(id: string, format: 'pdf' | 'pptx' | 'xlsx' | 'csv', options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JobResponse>>;
|
|
2002
2363
|
/**
|
|
2003
2364
|
* Accepts partial updates
|
|
2004
2365
|
* @summary Update report template by ID
|
|
@@ -2074,11 +2435,11 @@ export declare const TemplatesApiFactory: (configuration?: Configuration, basePa
|
|
|
2074
2435
|
* Render a report template to PDF, PPTX, or XLSX. Responds with a job entity.
|
|
2075
2436
|
* @summary Render a report template
|
|
2076
2437
|
* @param {string} id
|
|
2077
|
-
* @param {'pdf' | 'pptx' | '
|
|
2438
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
2078
2439
|
* @param {*} [options] Override http request option.
|
|
2079
2440
|
* @throws {RequiredError}
|
|
2080
2441
|
*/
|
|
2081
|
-
renderTemplate(id: string, format: 'pdf' | 'pptx' | '
|
|
2442
|
+
renderTemplate(id: string, format: 'pdf' | 'pptx' | 'xlsx' | 'csv', options?: any): AxiosPromise<JobResponse>;
|
|
2082
2443
|
/**
|
|
2083
2444
|
* Accepts partial updates
|
|
2084
2445
|
* @summary Update report template by ID
|
|
@@ -2163,12 +2524,12 @@ export declare class TemplatesApi extends BaseAPI {
|
|
|
2163
2524
|
* Render a report template to PDF, PPTX, or XLSX. Responds with a job entity.
|
|
2164
2525
|
* @summary Render a report template
|
|
2165
2526
|
* @param {string} id
|
|
2166
|
-
* @param {'pdf' | 'pptx' | '
|
|
2527
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
2167
2528
|
* @param {*} [options] Override http request option.
|
|
2168
2529
|
* @throws {RequiredError}
|
|
2169
2530
|
* @memberof TemplatesApi
|
|
2170
2531
|
*/
|
|
2171
|
-
renderTemplate(id: string, format: 'pdf' | 'pptx' | '
|
|
2532
|
+
renderTemplate(id: string, format: 'pdf' | 'pptx' | 'xlsx' | 'csv', options?: any): Promise<import("axios").AxiosResponse<JobResponse>>;
|
|
2172
2533
|
/**
|
|
2173
2534
|
* Accepts partial updates
|
|
2174
2535
|
* @summary Update report template by ID
|