@forteplatforms/sdk 1.0.148 → 1.0.149
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.
|
@@ -87,21 +87,6 @@ export interface AdminVerifyUserContactMethodRequest {
|
|
|
87
87
|
contactMethodId: string;
|
|
88
88
|
verificationCode: string;
|
|
89
89
|
}
|
|
90
|
-
export interface CreateContentUploadLink1Request {
|
|
91
|
-
projectId: string;
|
|
92
|
-
userId: string;
|
|
93
|
-
createContentUploadLinkRequest: CreateContentUploadLinkRequest;
|
|
94
|
-
}
|
|
95
|
-
export interface CreatePayment1Request {
|
|
96
|
-
projectId: string;
|
|
97
|
-
userId: string;
|
|
98
|
-
createPaymentRequest: CreatePaymentRequest;
|
|
99
|
-
}
|
|
100
|
-
export interface CreatePaymentPreview1Request {
|
|
101
|
-
projectId: string;
|
|
102
|
-
userId: string;
|
|
103
|
-
createPaymentPreviewRequest: CreatePaymentPreviewRequest;
|
|
104
|
-
}
|
|
105
90
|
export interface CreatePaymentTriggerOperationRequest {
|
|
106
91
|
projectId: string;
|
|
107
92
|
createPaymentTriggerRequest: CreatePaymentTriggerRequest;
|
|
@@ -137,11 +122,6 @@ export interface CreateWebAppDeploymentRequest {
|
|
|
137
122
|
webAppId: string;
|
|
138
123
|
commitSha?: string;
|
|
139
124
|
}
|
|
140
|
-
export interface DeleteContent1Request {
|
|
141
|
-
projectId: string;
|
|
142
|
-
userId: string;
|
|
143
|
-
contentId: string;
|
|
144
|
-
}
|
|
145
125
|
export interface DeletePaymentTriggerRequest {
|
|
146
126
|
projectId: string;
|
|
147
127
|
triggerId: string;
|
|
@@ -165,21 +145,6 @@ export interface DeleteWebAppRequest {
|
|
|
165
145
|
projectId: string;
|
|
166
146
|
webAppId: string;
|
|
167
147
|
}
|
|
168
|
-
export interface FinalizeContent1Request {
|
|
169
|
-
projectId: string;
|
|
170
|
-
userId: string;
|
|
171
|
-
contentId: string;
|
|
172
|
-
}
|
|
173
|
-
export interface GetContent1Request {
|
|
174
|
-
projectId: string;
|
|
175
|
-
userId: string;
|
|
176
|
-
contentId: string;
|
|
177
|
-
}
|
|
178
|
-
export interface GetContentDownloadLink1Request {
|
|
179
|
-
projectId: string;
|
|
180
|
-
userId: string;
|
|
181
|
-
contentId: string;
|
|
182
|
-
}
|
|
183
148
|
export interface GetNotificationTemplatesRequest {
|
|
184
149
|
projectId: string;
|
|
185
150
|
}
|
|
@@ -226,12 +191,6 @@ export interface GetWebAppDeploymentRequest {
|
|
|
226
191
|
webAppId: string;
|
|
227
192
|
buildId: string;
|
|
228
193
|
}
|
|
229
|
-
export interface ListContent1Request {
|
|
230
|
-
projectId: string;
|
|
231
|
-
userId: string;
|
|
232
|
-
page?: number;
|
|
233
|
-
pageSize?: number;
|
|
234
|
-
}
|
|
235
194
|
export interface ListLogLinesRequest {
|
|
236
195
|
projectId: string;
|
|
237
196
|
serviceId: string;
|
|
@@ -298,6 +257,53 @@ export interface ListWebAppDeploymentsRequest {
|
|
|
298
257
|
export interface ListWebAppsRequest {
|
|
299
258
|
projectId: string;
|
|
300
259
|
}
|
|
260
|
+
export interface ProjectsCreateContentUploadLinkRequest {
|
|
261
|
+
projectId: string;
|
|
262
|
+
userId: string;
|
|
263
|
+
createContentUploadLinkRequest: CreateContentUploadLinkRequest;
|
|
264
|
+
}
|
|
265
|
+
export interface ProjectsCreatePaymentRequest {
|
|
266
|
+
projectId: string;
|
|
267
|
+
userId: string;
|
|
268
|
+
createPaymentRequest: CreatePaymentRequest;
|
|
269
|
+
}
|
|
270
|
+
export interface ProjectsCreatePaymentPreviewRequest {
|
|
271
|
+
projectId: string;
|
|
272
|
+
userId: string;
|
|
273
|
+
createPaymentPreviewRequest: CreatePaymentPreviewRequest;
|
|
274
|
+
}
|
|
275
|
+
export interface ProjectsDeleteContentRequest {
|
|
276
|
+
projectId: string;
|
|
277
|
+
userId: string;
|
|
278
|
+
contentId: string;
|
|
279
|
+
}
|
|
280
|
+
export interface ProjectsFinalizeContentRequest {
|
|
281
|
+
projectId: string;
|
|
282
|
+
userId: string;
|
|
283
|
+
contentId: string;
|
|
284
|
+
}
|
|
285
|
+
export interface ProjectsGetContentRequest {
|
|
286
|
+
projectId: string;
|
|
287
|
+
userId: string;
|
|
288
|
+
contentId: string;
|
|
289
|
+
}
|
|
290
|
+
export interface ProjectsGetContentDownloadLinkRequest {
|
|
291
|
+
projectId: string;
|
|
292
|
+
userId: string;
|
|
293
|
+
contentId: string;
|
|
294
|
+
}
|
|
295
|
+
export interface ProjectsListContentRequest {
|
|
296
|
+
projectId: string;
|
|
297
|
+
userId: string;
|
|
298
|
+
page?: number;
|
|
299
|
+
pageSize?: number;
|
|
300
|
+
}
|
|
301
|
+
export interface ProjectsUpdateContentSharesRequest {
|
|
302
|
+
projectId: string;
|
|
303
|
+
userId: string;
|
|
304
|
+
contentId: string;
|
|
305
|
+
updateContentSharesRequest: UpdateContentSharesRequest;
|
|
306
|
+
}
|
|
301
307
|
export interface PutUserCustomAttributesRequest {
|
|
302
308
|
userId: string;
|
|
303
309
|
projectId: string;
|
|
@@ -334,12 +340,6 @@ export interface TestInvocationOperationRequest {
|
|
|
334
340
|
serviceId: string;
|
|
335
341
|
testInvocationRequest: TestInvocationRequest;
|
|
336
342
|
}
|
|
337
|
-
export interface UpdateContentShares1Request {
|
|
338
|
-
projectId: string;
|
|
339
|
-
userId: string;
|
|
340
|
-
contentId: string;
|
|
341
|
-
updateContentSharesRequest: UpdateContentSharesRequest;
|
|
342
|
-
}
|
|
343
343
|
export interface UpdateNotificationTemplatesOperationRequest {
|
|
344
344
|
projectId: string;
|
|
345
345
|
updateNotificationTemplatesRequest: UpdateNotificationTemplatesRequest;
|
|
@@ -417,36 +417,6 @@ export declare class ProjectsServerApi extends runtime.BaseAPI {
|
|
|
417
417
|
/**
|
|
418
418
|
*/
|
|
419
419
|
adminVerifyUserContactMethod(requestParameters: AdminVerifyUserContactMethodRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ContactMethod>;
|
|
420
|
-
/**
|
|
421
|
-
* Creates request options for createContentUploadLink1 without sending the request
|
|
422
|
-
*/
|
|
423
|
-
createContentUploadLink1RequestOpts(requestParameters: CreateContentUploadLink1Request): Promise<runtime.RequestOpts>;
|
|
424
|
-
/**
|
|
425
|
-
*/
|
|
426
|
-
createContentUploadLink1Raw(requestParameters: CreateContentUploadLink1Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CreateContentUploadLinkResponse>>;
|
|
427
|
-
/**
|
|
428
|
-
*/
|
|
429
|
-
createContentUploadLink1(requestParameters: CreateContentUploadLink1Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CreateContentUploadLinkResponse>;
|
|
430
|
-
/**
|
|
431
|
-
* Creates request options for createPayment1 without sending the request
|
|
432
|
-
*/
|
|
433
|
-
createPayment1RequestOpts(requestParameters: CreatePayment1Request): Promise<runtime.RequestOpts>;
|
|
434
|
-
/**
|
|
435
|
-
*/
|
|
436
|
-
createPayment1Raw(requestParameters: CreatePayment1Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CreatePaymentResponse>>;
|
|
437
|
-
/**
|
|
438
|
-
*/
|
|
439
|
-
createPayment1(requestParameters: CreatePayment1Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CreatePaymentResponse>;
|
|
440
|
-
/**
|
|
441
|
-
* Creates request options for createPaymentPreview1 without sending the request
|
|
442
|
-
*/
|
|
443
|
-
createPaymentPreview1RequestOpts(requestParameters: CreatePaymentPreview1Request): Promise<runtime.RequestOpts>;
|
|
444
|
-
/**
|
|
445
|
-
*/
|
|
446
|
-
createPaymentPreview1Raw(requestParameters: CreatePaymentPreview1Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CreatePaymentPreviewResponse>>;
|
|
447
|
-
/**
|
|
448
|
-
*/
|
|
449
|
-
createPaymentPreview1(requestParameters: CreatePaymentPreview1Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CreatePaymentPreviewResponse>;
|
|
450
420
|
/**
|
|
451
421
|
* Creates request options for createPaymentTrigger without sending the request
|
|
452
422
|
*/
|
|
@@ -527,16 +497,6 @@ export declare class ProjectsServerApi extends runtime.BaseAPI {
|
|
|
527
497
|
/**
|
|
528
498
|
*/
|
|
529
499
|
createWebAppDeployment(requestParameters: CreateWebAppDeploymentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<WebAppBuildRequestObject>;
|
|
530
|
-
/**
|
|
531
|
-
* Creates request options for deleteContent1 without sending the request
|
|
532
|
-
*/
|
|
533
|
-
deleteContent1RequestOpts(requestParameters: DeleteContent1Request): Promise<runtime.RequestOpts>;
|
|
534
|
-
/**
|
|
535
|
-
*/
|
|
536
|
-
deleteContent1Raw(requestParameters: DeleteContent1Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
537
|
-
/**
|
|
538
|
-
*/
|
|
539
|
-
deleteContent1(requestParameters: DeleteContent1Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
540
500
|
/**
|
|
541
501
|
* Creates request options for deletePaymentTrigger without sending the request
|
|
542
502
|
*/
|
|
@@ -597,36 +557,6 @@ export declare class ProjectsServerApi extends runtime.BaseAPI {
|
|
|
597
557
|
/**
|
|
598
558
|
*/
|
|
599
559
|
deleteWebApp(requestParameters: DeleteWebAppRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
600
|
-
/**
|
|
601
|
-
* Creates request options for finalizeContent1 without sending the request
|
|
602
|
-
*/
|
|
603
|
-
finalizeContent1RequestOpts(requestParameters: FinalizeContent1Request): Promise<runtime.RequestOpts>;
|
|
604
|
-
/**
|
|
605
|
-
*/
|
|
606
|
-
finalizeContent1Raw(requestParameters: FinalizeContent1Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ContentObject>>;
|
|
607
|
-
/**
|
|
608
|
-
*/
|
|
609
|
-
finalizeContent1(requestParameters: FinalizeContent1Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ContentObject>;
|
|
610
|
-
/**
|
|
611
|
-
* Creates request options for getContent1 without sending the request
|
|
612
|
-
*/
|
|
613
|
-
getContent1RequestOpts(requestParameters: GetContent1Request): Promise<runtime.RequestOpts>;
|
|
614
|
-
/**
|
|
615
|
-
*/
|
|
616
|
-
getContent1Raw(requestParameters: GetContent1Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ContentObject>>;
|
|
617
|
-
/**
|
|
618
|
-
*/
|
|
619
|
-
getContent1(requestParameters: GetContent1Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ContentObject>;
|
|
620
|
-
/**
|
|
621
|
-
* Creates request options for getContentDownloadLink1 without sending the request
|
|
622
|
-
*/
|
|
623
|
-
getContentDownloadLink1RequestOpts(requestParameters: GetContentDownloadLink1Request): Promise<runtime.RequestOpts>;
|
|
624
|
-
/**
|
|
625
|
-
*/
|
|
626
|
-
getContentDownloadLink1Raw(requestParameters: GetContentDownloadLink1Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GetContentDownloadLinkResponse>>;
|
|
627
|
-
/**
|
|
628
|
-
*/
|
|
629
|
-
getContentDownloadLink1(requestParameters: GetContentDownloadLink1Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetContentDownloadLinkResponse>;
|
|
630
560
|
/**
|
|
631
561
|
* Creates request options for getNotificationTemplates without sending the request
|
|
632
562
|
*/
|
|
@@ -727,16 +657,6 @@ export declare class ProjectsServerApi extends runtime.BaseAPI {
|
|
|
727
657
|
/**
|
|
728
658
|
*/
|
|
729
659
|
getWebAppDeployment(requestParameters: GetWebAppDeploymentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<WebAppBuildRequestObject>;
|
|
730
|
-
/**
|
|
731
|
-
* Creates request options for listContent1 without sending the request
|
|
732
|
-
*/
|
|
733
|
-
listContent1RequestOpts(requestParameters: ListContent1Request): Promise<runtime.RequestOpts>;
|
|
734
|
-
/**
|
|
735
|
-
*/
|
|
736
|
-
listContent1Raw(requestParameters: ListContent1Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ListContentResponse>>;
|
|
737
|
-
/**
|
|
738
|
-
*/
|
|
739
|
-
listContent1(requestParameters: ListContent1Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ListContentResponse>;
|
|
740
660
|
/**
|
|
741
661
|
* Creates request options for listLogLines without sending the request
|
|
742
662
|
*/
|
|
@@ -847,6 +767,96 @@ export declare class ProjectsServerApi extends runtime.BaseAPI {
|
|
|
847
767
|
/**
|
|
848
768
|
*/
|
|
849
769
|
listWebApps(requestParameters: ListWebAppsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<WebAppObject>>;
|
|
770
|
+
/**
|
|
771
|
+
* Creates request options for projectsCreateContentUploadLink without sending the request
|
|
772
|
+
*/
|
|
773
|
+
projectsCreateContentUploadLinkRequestOpts(requestParameters: ProjectsCreateContentUploadLinkRequest): Promise<runtime.RequestOpts>;
|
|
774
|
+
/**
|
|
775
|
+
*/
|
|
776
|
+
projectsCreateContentUploadLinkRaw(requestParameters: ProjectsCreateContentUploadLinkRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CreateContentUploadLinkResponse>>;
|
|
777
|
+
/**
|
|
778
|
+
*/
|
|
779
|
+
projectsCreateContentUploadLink(requestParameters: ProjectsCreateContentUploadLinkRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CreateContentUploadLinkResponse>;
|
|
780
|
+
/**
|
|
781
|
+
* Creates request options for projectsCreatePayment without sending the request
|
|
782
|
+
*/
|
|
783
|
+
projectsCreatePaymentRequestOpts(requestParameters: ProjectsCreatePaymentRequest): Promise<runtime.RequestOpts>;
|
|
784
|
+
/**
|
|
785
|
+
*/
|
|
786
|
+
projectsCreatePaymentRaw(requestParameters: ProjectsCreatePaymentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CreatePaymentResponse>>;
|
|
787
|
+
/**
|
|
788
|
+
*/
|
|
789
|
+
projectsCreatePayment(requestParameters: ProjectsCreatePaymentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CreatePaymentResponse>;
|
|
790
|
+
/**
|
|
791
|
+
* Creates request options for projectsCreatePaymentPreview without sending the request
|
|
792
|
+
*/
|
|
793
|
+
projectsCreatePaymentPreviewRequestOpts(requestParameters: ProjectsCreatePaymentPreviewRequest): Promise<runtime.RequestOpts>;
|
|
794
|
+
/**
|
|
795
|
+
*/
|
|
796
|
+
projectsCreatePaymentPreviewRaw(requestParameters: ProjectsCreatePaymentPreviewRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CreatePaymentPreviewResponse>>;
|
|
797
|
+
/**
|
|
798
|
+
*/
|
|
799
|
+
projectsCreatePaymentPreview(requestParameters: ProjectsCreatePaymentPreviewRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CreatePaymentPreviewResponse>;
|
|
800
|
+
/**
|
|
801
|
+
* Creates request options for projectsDeleteContent without sending the request
|
|
802
|
+
*/
|
|
803
|
+
projectsDeleteContentRequestOpts(requestParameters: ProjectsDeleteContentRequest): Promise<runtime.RequestOpts>;
|
|
804
|
+
/**
|
|
805
|
+
*/
|
|
806
|
+
projectsDeleteContentRaw(requestParameters: ProjectsDeleteContentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
807
|
+
/**
|
|
808
|
+
*/
|
|
809
|
+
projectsDeleteContent(requestParameters: ProjectsDeleteContentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
810
|
+
/**
|
|
811
|
+
* Creates request options for projectsFinalizeContent without sending the request
|
|
812
|
+
*/
|
|
813
|
+
projectsFinalizeContentRequestOpts(requestParameters: ProjectsFinalizeContentRequest): Promise<runtime.RequestOpts>;
|
|
814
|
+
/**
|
|
815
|
+
*/
|
|
816
|
+
projectsFinalizeContentRaw(requestParameters: ProjectsFinalizeContentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ContentObject>>;
|
|
817
|
+
/**
|
|
818
|
+
*/
|
|
819
|
+
projectsFinalizeContent(requestParameters: ProjectsFinalizeContentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ContentObject>;
|
|
820
|
+
/**
|
|
821
|
+
* Creates request options for projectsGetContent without sending the request
|
|
822
|
+
*/
|
|
823
|
+
projectsGetContentRequestOpts(requestParameters: ProjectsGetContentRequest): Promise<runtime.RequestOpts>;
|
|
824
|
+
/**
|
|
825
|
+
*/
|
|
826
|
+
projectsGetContentRaw(requestParameters: ProjectsGetContentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ContentObject>>;
|
|
827
|
+
/**
|
|
828
|
+
*/
|
|
829
|
+
projectsGetContent(requestParameters: ProjectsGetContentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ContentObject>;
|
|
830
|
+
/**
|
|
831
|
+
* Creates request options for projectsGetContentDownloadLink without sending the request
|
|
832
|
+
*/
|
|
833
|
+
projectsGetContentDownloadLinkRequestOpts(requestParameters: ProjectsGetContentDownloadLinkRequest): Promise<runtime.RequestOpts>;
|
|
834
|
+
/**
|
|
835
|
+
*/
|
|
836
|
+
projectsGetContentDownloadLinkRaw(requestParameters: ProjectsGetContentDownloadLinkRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GetContentDownloadLinkResponse>>;
|
|
837
|
+
/**
|
|
838
|
+
*/
|
|
839
|
+
projectsGetContentDownloadLink(requestParameters: ProjectsGetContentDownloadLinkRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetContentDownloadLinkResponse>;
|
|
840
|
+
/**
|
|
841
|
+
* Creates request options for projectsListContent without sending the request
|
|
842
|
+
*/
|
|
843
|
+
projectsListContentRequestOpts(requestParameters: ProjectsListContentRequest): Promise<runtime.RequestOpts>;
|
|
844
|
+
/**
|
|
845
|
+
*/
|
|
846
|
+
projectsListContentRaw(requestParameters: ProjectsListContentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ListContentResponse>>;
|
|
847
|
+
/**
|
|
848
|
+
*/
|
|
849
|
+
projectsListContent(requestParameters: ProjectsListContentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ListContentResponse>;
|
|
850
|
+
/**
|
|
851
|
+
* Creates request options for projectsUpdateContentShares without sending the request
|
|
852
|
+
*/
|
|
853
|
+
projectsUpdateContentSharesRequestOpts(requestParameters: ProjectsUpdateContentSharesRequest): Promise<runtime.RequestOpts>;
|
|
854
|
+
/**
|
|
855
|
+
*/
|
|
856
|
+
projectsUpdateContentSharesRaw(requestParameters: ProjectsUpdateContentSharesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ContentObject>>;
|
|
857
|
+
/**
|
|
858
|
+
*/
|
|
859
|
+
projectsUpdateContentShares(requestParameters: ProjectsUpdateContentSharesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ContentObject>;
|
|
850
860
|
/**
|
|
851
861
|
* Creates request options for putUserCustomAttributes without sending the request
|
|
852
862
|
*/
|
|
@@ -907,16 +917,6 @@ export declare class ProjectsServerApi extends runtime.BaseAPI {
|
|
|
907
917
|
/**
|
|
908
918
|
*/
|
|
909
919
|
testInvocation(requestParameters: TestInvocationOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<TestInvocationResponse>;
|
|
910
|
-
/**
|
|
911
|
-
* Creates request options for updateContentShares1 without sending the request
|
|
912
|
-
*/
|
|
913
|
-
updateContentShares1RequestOpts(requestParameters: UpdateContentShares1Request): Promise<runtime.RequestOpts>;
|
|
914
|
-
/**
|
|
915
|
-
*/
|
|
916
|
-
updateContentShares1Raw(requestParameters: UpdateContentShares1Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ContentObject>>;
|
|
917
|
-
/**
|
|
918
|
-
*/
|
|
919
|
-
updateContentShares1(requestParameters: UpdateContentShares1Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ContentObject>;
|
|
920
920
|
/**
|
|
921
921
|
* Creates request options for updateNotificationTemplates without sending the request
|
|
922
922
|
*/
|