@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.
@@ -43,22 +43,10 @@ export interface CreateContactMethodRequest {
43
43
  projectId: string;
44
44
  addContactMethodRequest: AddContactMethodRequest;
45
45
  }
46
- export interface CreateContentUploadLinkOperationRequest {
47
- projectId: string;
48
- createContentUploadLinkRequest: CreateContentUploadLinkRequest;
49
- }
50
46
  export interface CreateOtpLoginOperationRequest {
51
47
  projectId: string;
52
48
  createOtpLoginRequest: CreateOtpLoginRequest;
53
49
  }
54
- export interface CreatePaymentOperationRequest {
55
- projectId: string;
56
- createPaymentRequest: CreatePaymentRequest;
57
- }
58
- export interface CreatePaymentPreviewOperationRequest {
59
- projectId: string;
60
- createPaymentPreviewRequest: CreatePaymentPreviewRequest;
61
- }
62
50
  export interface CreateUserInviteOperationRequest {
63
51
  projectId: string;
64
52
  createUserInviteRequest: CreateUserInviteRequest;
@@ -67,36 +55,15 @@ export interface DeleteContactMethodRequest {
67
55
  projectId: string;
68
56
  contactMethodId: string;
69
57
  }
70
- export interface DeleteContentRequest {
71
- projectId: string;
72
- contentId: string;
73
- }
74
- export interface FinalizeContentRequest {
75
- projectId: string;
76
- pendingContentId: string;
77
- }
78
58
  export interface GetAccountRequest {
79
59
  projectId: string;
80
60
  }
81
- export interface GetContentRequest {
82
- projectId: string;
83
- contentId: string;
84
- }
85
- export interface GetContentDownloadLinkRequest {
86
- projectId: string;
87
- contentId: string;
88
- }
89
61
  export interface GoogleAuthLoginCallbackRequest {
90
62
  projectId: string;
91
63
  gCsrfToken: string;
92
64
  credential: string;
93
65
  recaptchaToken?: string;
94
66
  }
95
- export interface ListContentRequest {
96
- projectId: string;
97
- page?: number;
98
- pageSize?: number;
99
- }
100
67
  export interface ListMyPaymentsRequest {
101
68
  projectId: string;
102
69
  metadataKey?: string;
@@ -135,7 +102,40 @@ export interface RevokeUserInviteRequest {
135
102
  projectId: string;
136
103
  inviteId: string;
137
104
  }
138
- export interface UpdateContentSharesOperationRequest {
105
+ export interface UsersCreateContentUploadLinkRequest {
106
+ projectId: string;
107
+ createContentUploadLinkRequest: CreateContentUploadLinkRequest;
108
+ }
109
+ export interface UsersCreatePaymentRequest {
110
+ projectId: string;
111
+ createPaymentRequest: CreatePaymentRequest;
112
+ }
113
+ export interface UsersCreatePaymentPreviewRequest {
114
+ projectId: string;
115
+ createPaymentPreviewRequest: CreatePaymentPreviewRequest;
116
+ }
117
+ export interface UsersDeleteContentRequest {
118
+ projectId: string;
119
+ contentId: string;
120
+ }
121
+ export interface UsersFinalizeContentRequest {
122
+ projectId: string;
123
+ pendingContentId: string;
124
+ }
125
+ export interface UsersGetContentRequest {
126
+ projectId: string;
127
+ contentId: string;
128
+ }
129
+ export interface UsersGetContentDownloadLinkRequest {
130
+ projectId: string;
131
+ contentId: string;
132
+ }
133
+ export interface UsersListContentRequest {
134
+ projectId: string;
135
+ page?: number;
136
+ pageSize?: number;
137
+ }
138
+ export interface UsersUpdateContentSharesRequest {
139
139
  projectId: string;
140
140
  contentId: string;
141
141
  updateContentSharesRequest: UpdateContentSharesRequest;
@@ -169,16 +169,6 @@ export declare class UsersServerApi extends runtime.BaseAPI {
169
169
  /**
170
170
  */
171
171
  createContactMethod(requestParameters: CreateContactMethodRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ContactMethod>;
172
- /**
173
- * Creates request options for createContentUploadLink without sending the request
174
- */
175
- createContentUploadLinkRequestOpts(requestParameters: CreateContentUploadLinkOperationRequest): Promise<runtime.RequestOpts>;
176
- /**
177
- */
178
- createContentUploadLinkRaw(requestParameters: CreateContentUploadLinkOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CreateContentUploadLinkResponse>>;
179
- /**
180
- */
181
- createContentUploadLink(requestParameters: CreateContentUploadLinkOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CreateContentUploadLinkResponse>;
182
172
  /**
183
173
  * Creates request options for createOtpLogin without sending the request
184
174
  */
@@ -189,26 +179,6 @@ export declare class UsersServerApi extends runtime.BaseAPI {
189
179
  /**
190
180
  */
191
181
  createOtpLogin(requestParameters: CreateOtpLoginOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CreateOtpLoginResponse>;
192
- /**
193
- * Creates request options for createPayment without sending the request
194
- */
195
- createPaymentRequestOpts(requestParameters: CreatePaymentOperationRequest): Promise<runtime.RequestOpts>;
196
- /**
197
- */
198
- createPaymentRaw(requestParameters: CreatePaymentOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CreatePaymentResponse>>;
199
- /**
200
- */
201
- createPayment(requestParameters: CreatePaymentOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CreatePaymentResponse>;
202
- /**
203
- * Creates request options for createPaymentPreview without sending the request
204
- */
205
- createPaymentPreviewRequestOpts(requestParameters: CreatePaymentPreviewOperationRequest): Promise<runtime.RequestOpts>;
206
- /**
207
- */
208
- createPaymentPreviewRaw(requestParameters: CreatePaymentPreviewOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CreatePaymentPreviewResponse>>;
209
- /**
210
- */
211
- createPaymentPreview(requestParameters: CreatePaymentPreviewOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CreatePaymentPreviewResponse>;
212
182
  /**
213
183
  * Creates request options for createUserInvite without sending the request
214
184
  */
@@ -229,26 +199,6 @@ export declare class UsersServerApi extends runtime.BaseAPI {
229
199
  /**
230
200
  */
231
201
  deleteContactMethod(requestParameters: DeleteContactMethodRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
232
- /**
233
- * Creates request options for deleteContent without sending the request
234
- */
235
- deleteContentRequestOpts(requestParameters: DeleteContentRequest): Promise<runtime.RequestOpts>;
236
- /**
237
- */
238
- deleteContentRaw(requestParameters: DeleteContentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
239
- /**
240
- */
241
- deleteContent(requestParameters: DeleteContentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
242
- /**
243
- * Creates request options for finalizeContent without sending the request
244
- */
245
- finalizeContentRequestOpts(requestParameters: FinalizeContentRequest): Promise<runtime.RequestOpts>;
246
- /**
247
- */
248
- finalizeContentRaw(requestParameters: FinalizeContentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ContentObject>>;
249
- /**
250
- */
251
- finalizeContent(requestParameters: FinalizeContentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ContentObject>;
252
202
  /**
253
203
  * Creates request options for getAccount without sending the request
254
204
  */
@@ -259,26 +209,6 @@ export declare class UsersServerApi extends runtime.BaseAPI {
259
209
  /**
260
210
  */
261
211
  getAccount(requestParameters: GetAccountRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<UserObject>;
262
- /**
263
- * Creates request options for getContent without sending the request
264
- */
265
- getContentRequestOpts(requestParameters: GetContentRequest): Promise<runtime.RequestOpts>;
266
- /**
267
- */
268
- getContentRaw(requestParameters: GetContentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ContentObject>>;
269
- /**
270
- */
271
- getContent(requestParameters: GetContentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ContentObject>;
272
- /**
273
- * Creates request options for getContentDownloadLink without sending the request
274
- */
275
- getContentDownloadLinkRequestOpts(requestParameters: GetContentDownloadLinkRequest): Promise<runtime.RequestOpts>;
276
- /**
277
- */
278
- getContentDownloadLinkRaw(requestParameters: GetContentDownloadLinkRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GetContentDownloadLinkResponse>>;
279
- /**
280
- */
281
- getContentDownloadLink(requestParameters: GetContentDownloadLinkRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetContentDownloadLinkResponse>;
282
212
  /**
283
213
  * Creates request options for googleAuthLoginCallback without sending the request
284
214
  */
@@ -289,16 +219,6 @@ export declare class UsersServerApi extends runtime.BaseAPI {
289
219
  /**
290
220
  */
291
221
  googleAuthLoginCallback(requestParameters: GoogleAuthLoginCallbackRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<LoginUserResponse>;
292
- /**
293
- * Creates request options for listContent without sending the request
294
- */
295
- listContentRequestOpts(requestParameters: ListContentRequest): Promise<runtime.RequestOpts>;
296
- /**
297
- */
298
- listContentRaw(requestParameters: ListContentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ListContentResponse>>;
299
- /**
300
- */
301
- listContent(requestParameters: ListContentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ListContentResponse>;
302
222
  /**
303
223
  * Creates request options for listMyPayments without sending the request
304
224
  */
@@ -380,15 +300,95 @@ export declare class UsersServerApi extends runtime.BaseAPI {
380
300
  */
381
301
  revokeUserInvite(requestParameters: RevokeUserInviteRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
382
302
  /**
383
- * Creates request options for updateContentShares without sending the request
303
+ * Creates request options for usersCreateContentUploadLink without sending the request
304
+ */
305
+ usersCreateContentUploadLinkRequestOpts(requestParameters: UsersCreateContentUploadLinkRequest): Promise<runtime.RequestOpts>;
306
+ /**
307
+ */
308
+ usersCreateContentUploadLinkRaw(requestParameters: UsersCreateContentUploadLinkRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CreateContentUploadLinkResponse>>;
309
+ /**
310
+ */
311
+ usersCreateContentUploadLink(requestParameters: UsersCreateContentUploadLinkRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CreateContentUploadLinkResponse>;
312
+ /**
313
+ * Creates request options for usersCreatePayment without sending the request
314
+ */
315
+ usersCreatePaymentRequestOpts(requestParameters: UsersCreatePaymentRequest): Promise<runtime.RequestOpts>;
316
+ /**
317
+ */
318
+ usersCreatePaymentRaw(requestParameters: UsersCreatePaymentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CreatePaymentResponse>>;
319
+ /**
320
+ */
321
+ usersCreatePayment(requestParameters: UsersCreatePaymentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CreatePaymentResponse>;
322
+ /**
323
+ * Creates request options for usersCreatePaymentPreview without sending the request
324
+ */
325
+ usersCreatePaymentPreviewRequestOpts(requestParameters: UsersCreatePaymentPreviewRequest): Promise<runtime.RequestOpts>;
326
+ /**
327
+ */
328
+ usersCreatePaymentPreviewRaw(requestParameters: UsersCreatePaymentPreviewRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CreatePaymentPreviewResponse>>;
329
+ /**
330
+ */
331
+ usersCreatePaymentPreview(requestParameters: UsersCreatePaymentPreviewRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CreatePaymentPreviewResponse>;
332
+ /**
333
+ * Creates request options for usersDeleteContent without sending the request
334
+ */
335
+ usersDeleteContentRequestOpts(requestParameters: UsersDeleteContentRequest): Promise<runtime.RequestOpts>;
336
+ /**
337
+ */
338
+ usersDeleteContentRaw(requestParameters: UsersDeleteContentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
339
+ /**
340
+ */
341
+ usersDeleteContent(requestParameters: UsersDeleteContentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
342
+ /**
343
+ * Creates request options for usersFinalizeContent without sending the request
344
+ */
345
+ usersFinalizeContentRequestOpts(requestParameters: UsersFinalizeContentRequest): Promise<runtime.RequestOpts>;
346
+ /**
347
+ */
348
+ usersFinalizeContentRaw(requestParameters: UsersFinalizeContentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ContentObject>>;
349
+ /**
350
+ */
351
+ usersFinalizeContent(requestParameters: UsersFinalizeContentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ContentObject>;
352
+ /**
353
+ * Creates request options for usersGetContent without sending the request
354
+ */
355
+ usersGetContentRequestOpts(requestParameters: UsersGetContentRequest): Promise<runtime.RequestOpts>;
356
+ /**
357
+ */
358
+ usersGetContentRaw(requestParameters: UsersGetContentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ContentObject>>;
359
+ /**
360
+ */
361
+ usersGetContent(requestParameters: UsersGetContentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ContentObject>;
362
+ /**
363
+ * Creates request options for usersGetContentDownloadLink without sending the request
364
+ */
365
+ usersGetContentDownloadLinkRequestOpts(requestParameters: UsersGetContentDownloadLinkRequest): Promise<runtime.RequestOpts>;
366
+ /**
367
+ */
368
+ usersGetContentDownloadLinkRaw(requestParameters: UsersGetContentDownloadLinkRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GetContentDownloadLinkResponse>>;
369
+ /**
370
+ */
371
+ usersGetContentDownloadLink(requestParameters: UsersGetContentDownloadLinkRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetContentDownloadLinkResponse>;
372
+ /**
373
+ * Creates request options for usersListContent without sending the request
374
+ */
375
+ usersListContentRequestOpts(requestParameters: UsersListContentRequest): Promise<runtime.RequestOpts>;
376
+ /**
377
+ */
378
+ usersListContentRaw(requestParameters: UsersListContentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ListContentResponse>>;
379
+ /**
380
+ */
381
+ usersListContent(requestParameters: UsersListContentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ListContentResponse>;
382
+ /**
383
+ * Creates request options for usersUpdateContentShares without sending the request
384
384
  */
385
- updateContentSharesRequestOpts(requestParameters: UpdateContentSharesOperationRequest): Promise<runtime.RequestOpts>;
385
+ usersUpdateContentSharesRequestOpts(requestParameters: UsersUpdateContentSharesRequest): Promise<runtime.RequestOpts>;
386
386
  /**
387
387
  */
388
- updateContentSharesRaw(requestParameters: UpdateContentSharesOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ContentObject>>;
388
+ usersUpdateContentSharesRaw(requestParameters: UsersUpdateContentSharesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ContentObject>>;
389
389
  /**
390
390
  */
391
- updateContentShares(requestParameters: UpdateContentSharesOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ContentObject>;
391
+ usersUpdateContentShares(requestParameters: UsersUpdateContentSharesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ContentObject>;
392
392
  /**
393
393
  * Creates request options for verifyContactMethod without sending the request
394
394
  */