@connectedxm/admin-sdk 6.30.1 → 6.32.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 +1 -0
- package/README.md +2 -0
- package/api.ts +112 -4
- package/dist/api.d.ts +69 -4
- package/dist/api.js +100 -25
- package/dist/esm/api.d.ts +69 -4
- package/dist/esm/api.js +79 -4
- package/docs/ActivationCompletion.md +4 -0
- package/docs/Activity.md +2 -0
- package/docs/ActivityCreateInputs.md +4 -0
- package/docs/ActivityUpdateInputs.md +2 -0
- package/docs/BaseActivationCompletion.md +4 -0
- package/docs/BaseActivity.md +2 -0
- package/docs/BaseEventActivation.md +2 -0
- package/docs/EventActivation.md +2 -0
- package/docs/EventActivationCreateInputs.md +2 -0
- package/docs/EventActivationUpdateInputs.md +2 -0
- package/docs/GetPaymentTaxMetadata200Response.md +24 -0
- package/docs/ImageType.md +7 -5
- package/docs/OrganizationPaymentsApi.md +52 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -966,6 +966,7 @@ docs/GetOrganizationTeamMembers200Response.md
|
|
|
966
966
|
docs/GetOrganizationUsers200Response.md
|
|
967
967
|
docs/GetOrganizationWebhooks200Response.md
|
|
968
968
|
docs/GetPayment200Response.md
|
|
969
|
+
docs/GetPaymentTaxMetadata200Response.md
|
|
969
970
|
docs/GetPreferences200Response.md
|
|
970
971
|
docs/GetPresets200Response.md
|
|
971
972
|
docs/GetPushDevice200Response.md
|
package/README.md
CHANGED
|
@@ -971,6 +971,7 @@ Class | Method | HTTP request | Description
|
|
|
971
971
|
*OrganizationPaymentsApi* | [**getOrganizationPaymentIntegration**](docs/OrganizationPaymentsApi.md#getorganizationpaymentintegration) | **GET** /organization/payment/{integrationId} | Get Organization Payment Integration
|
|
972
972
|
*OrganizationPaymentsApi* | [**getOrganizationPaymentIntegrations**](docs/OrganizationPaymentsApi.md#getorganizationpaymentintegrations) | **GET** /organization/payment | Get Organization Payment Integrations
|
|
973
973
|
*OrganizationPaymentsApi* | [**getPayment**](docs/OrganizationPaymentsApi.md#getpayment) | **GET** /payments/{paymentId} | Get Payment
|
|
974
|
+
*OrganizationPaymentsApi* | [**getPaymentTaxMetadata**](docs/OrganizationPaymentsApi.md#getpaymenttaxmetadata) | **GET** /payments/{paymentId}/tax-metadata | Get Payment Tax Metadata
|
|
974
975
|
*OrganizationPaymentsApi* | [**getPayments**](docs/OrganizationPaymentsApi.md#getpayments) | **GET** /payments | Get Payments
|
|
975
976
|
*OrganizationPaymentsApi* | [**refundOrganizationPayment**](docs/OrganizationPaymentsApi.md#refundorganizationpayment) | **POST** /payments/{paymentId}/refund | Refund Organization Payment
|
|
976
977
|
*OrganizationPaymentsApi* | [**toggleOrganizationPaymentIntegration**](docs/OrganizationPaymentsApi.md#toggleorganizationpaymentintegration) | **PUT** /organization/payment/{integrationId}/toggle | Toggle Organization Payment Integration
|
|
@@ -2109,6 +2110,7 @@ Class | Method | HTTP request | Description
|
|
|
2109
2110
|
- [GetOrganizationUsers200Response](docs/GetOrganizationUsers200Response.md)
|
|
2110
2111
|
- [GetOrganizationWebhooks200Response](docs/GetOrganizationWebhooks200Response.md)
|
|
2111
2112
|
- [GetPayment200Response](docs/GetPayment200Response.md)
|
|
2113
|
+
- [GetPaymentTaxMetadata200Response](docs/GetPaymentTaxMetadata200Response.md)
|
|
2112
2114
|
- [GetPreferences200Response](docs/GetPreferences200Response.md)
|
|
2113
2115
|
- [GetPresets200Response](docs/GetPresets200Response.md)
|
|
2114
2116
|
- [GetPushDevice200Response](docs/GetPushDevice200Response.md)
|
package/api.ts
CHANGED
|
@@ -290,6 +290,8 @@ export interface ActivationCompletion {
|
|
|
290
290
|
'eventActivation': BaseEventActivation;
|
|
291
291
|
'earnedPoints': number;
|
|
292
292
|
'passId': string;
|
|
293
|
+
'imageId': string | null;
|
|
294
|
+
'image': BaseImage | null;
|
|
293
295
|
'pass': BaseEventPass;
|
|
294
296
|
'createdAt': string;
|
|
295
297
|
'updatedAt': string;
|
|
@@ -309,6 +311,7 @@ export interface Activity {
|
|
|
309
311
|
'status': ActivityStatus;
|
|
310
312
|
'featured': boolean;
|
|
311
313
|
'pinned': boolean;
|
|
314
|
+
'pinnedExplore': boolean;
|
|
312
315
|
'giphyId': string | null;
|
|
313
316
|
'imageId': string | null;
|
|
314
317
|
'videoId': string | null;
|
|
@@ -336,6 +339,8 @@ export interface ActivityCreateInputs {
|
|
|
336
339
|
'message': string;
|
|
337
340
|
'entities'?: Array<ActivityEntityInputs> | null;
|
|
338
341
|
'featured'?: boolean;
|
|
342
|
+
'pinned'?: boolean;
|
|
343
|
+
'pinnedExplore'?: boolean;
|
|
339
344
|
'imageId'?: string | null;
|
|
340
345
|
'videoId'?: string | null;
|
|
341
346
|
'eventId'?: string | null;
|
|
@@ -397,6 +402,7 @@ export interface ActivityUpdateInputs {
|
|
|
397
402
|
'moderation'?: ModerationStatus | null;
|
|
398
403
|
'featured'?: boolean;
|
|
399
404
|
'pinned'?: boolean;
|
|
405
|
+
'pinnedExplore'?: boolean;
|
|
400
406
|
'imageId'?: string | null;
|
|
401
407
|
'videoId'?: string | null;
|
|
402
408
|
'meetingId'?: string | null;
|
|
@@ -816,6 +822,8 @@ export interface BaseActivationCompletion {
|
|
|
816
822
|
'eventActivation': BaseEventActivation;
|
|
817
823
|
'earnedPoints': number;
|
|
818
824
|
'passId': string;
|
|
825
|
+
'imageId': string | null;
|
|
826
|
+
'image': BaseImage | null;
|
|
819
827
|
}
|
|
820
828
|
export interface BaseActivity {
|
|
821
829
|
'id': string;
|
|
@@ -823,6 +831,7 @@ export interface BaseActivity {
|
|
|
823
831
|
'status': ActivityStatus;
|
|
824
832
|
'featured': boolean;
|
|
825
833
|
'pinned': boolean;
|
|
834
|
+
'pinnedExplore': boolean;
|
|
826
835
|
'giphyId': string | null;
|
|
827
836
|
'imageId': string | null;
|
|
828
837
|
'videoId': string | null;
|
|
@@ -1235,6 +1244,7 @@ export interface BaseEventActivation {
|
|
|
1235
1244
|
'accessLevel': PassTypeAccessLevel;
|
|
1236
1245
|
'sortOrder': number;
|
|
1237
1246
|
'survey': BaseSurvey | null;
|
|
1247
|
+
'imageUpload': boolean;
|
|
1238
1248
|
'_count': BaseEventActivationCount;
|
|
1239
1249
|
}
|
|
1240
1250
|
|
|
@@ -4765,6 +4775,7 @@ export interface EventActivation {
|
|
|
4765
4775
|
'accessLevel': PassTypeAccessLevel;
|
|
4766
4776
|
'sortOrder': number;
|
|
4767
4777
|
'survey': BaseSurvey | null;
|
|
4778
|
+
'imageUpload': boolean;
|
|
4768
4779
|
'_count': BaseEventActivationCount;
|
|
4769
4780
|
'eventId': string;
|
|
4770
4781
|
'event': BaseEvent;
|
|
@@ -4803,6 +4814,7 @@ export interface EventActivationCreateInputs {
|
|
|
4803
4814
|
'continuousScanning'?: boolean;
|
|
4804
4815
|
'scanType'?: OnSiteScanType | null;
|
|
4805
4816
|
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
4817
|
+
'imageUpload'?: boolean;
|
|
4806
4818
|
}
|
|
4807
4819
|
|
|
4808
4820
|
|
|
@@ -4840,6 +4852,7 @@ export interface EventActivationUpdateInputs {
|
|
|
4840
4852
|
'continuousScanning'?: boolean;
|
|
4841
4853
|
'scanType'?: OnSiteScanType | null;
|
|
4842
4854
|
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
4855
|
+
'imageUpload'?: boolean;
|
|
4843
4856
|
}
|
|
4844
4857
|
|
|
4845
4858
|
|
|
@@ -9230,6 +9243,16 @@ export enum GetPayment200ResponseStatusEnum {
|
|
|
9230
9243
|
Ok = 'ok'
|
|
9231
9244
|
}
|
|
9232
9245
|
|
|
9246
|
+
export interface GetPaymentTaxMetadata200Response {
|
|
9247
|
+
'status': GetPaymentTaxMetadata200ResponseStatusEnum;
|
|
9248
|
+
'message': string;
|
|
9249
|
+
'data': { [key: string]: object; };
|
|
9250
|
+
}
|
|
9251
|
+
|
|
9252
|
+
export enum GetPaymentTaxMetadata200ResponseStatusEnum {
|
|
9253
|
+
Ok = 'ok'
|
|
9254
|
+
}
|
|
9255
|
+
|
|
9233
9256
|
export interface GetPreferences200Response {
|
|
9234
9257
|
'status': GetPreferences200ResponseStatusEnum;
|
|
9235
9258
|
'message': string;
|
|
@@ -10101,11 +10124,12 @@ export enum ImageModerationLevel {
|
|
|
10101
10124
|
|
|
10102
10125
|
export enum ImageType {
|
|
10103
10126
|
Admin = 'admin',
|
|
10104
|
-
|
|
10127
|
+
Account = 'account',
|
|
10128
|
+
Thread = 'thread',
|
|
10129
|
+
Content = 'content',
|
|
10105
10130
|
Activity = 'activity',
|
|
10106
|
-
|
|
10107
|
-
|
|
10108
|
-
Content = 'content'
|
|
10131
|
+
Event = 'event',
|
|
10132
|
+
Activation = 'activation'
|
|
10109
10133
|
}
|
|
10110
10134
|
|
|
10111
10135
|
|
|
@@ -119719,6 +119743,46 @@ export const OrganizationPaymentsApiAxiosParamCreator = function (configuration?
|
|
|
119719
119743
|
options: localVarRequestOptions,
|
|
119720
119744
|
};
|
|
119721
119745
|
},
|
|
119746
|
+
/**
|
|
119747
|
+
* Get Payment Tax Metadata endpoint
|
|
119748
|
+
* @summary Get Payment Tax Metadata
|
|
119749
|
+
* @param {string} paymentId The payment identifier
|
|
119750
|
+
* @param {*} [options] Override http request option.
|
|
119751
|
+
* @throws {RequiredError}
|
|
119752
|
+
*/
|
|
119753
|
+
getPaymentTaxMetadata: async (paymentId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
119754
|
+
// verify required parameter 'paymentId' is not null or undefined
|
|
119755
|
+
assertParamExists('getPaymentTaxMetadata', 'paymentId', paymentId)
|
|
119756
|
+
const localVarPath = `/payments/{paymentId}/tax-metadata`
|
|
119757
|
+
.replace(`{${"paymentId"}}`, encodeURIComponent(String(paymentId)));
|
|
119758
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
119759
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
119760
|
+
let baseOptions;
|
|
119761
|
+
if (configuration) {
|
|
119762
|
+
baseOptions = configuration.baseOptions;
|
|
119763
|
+
}
|
|
119764
|
+
|
|
119765
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
119766
|
+
const localVarHeaderParameter = {} as any;
|
|
119767
|
+
const localVarQueryParameter = {} as any;
|
|
119768
|
+
|
|
119769
|
+
// authentication ApiKeyAuth required
|
|
119770
|
+
await setApiKeyToObject(localVarHeaderParameter, "api-key", configuration)
|
|
119771
|
+
|
|
119772
|
+
// authentication OrganizationId required
|
|
119773
|
+
await setApiKeyToObject(localVarHeaderParameter, "organization", configuration)
|
|
119774
|
+
|
|
119775
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
119776
|
+
|
|
119777
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
119778
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
119779
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
119780
|
+
|
|
119781
|
+
return {
|
|
119782
|
+
url: toPathString(localVarUrlObj),
|
|
119783
|
+
options: localVarRequestOptions,
|
|
119784
|
+
};
|
|
119785
|
+
},
|
|
119722
119786
|
/**
|
|
119723
119787
|
* Get Payments endpoint
|
|
119724
119788
|
* @summary Get Payments
|
|
@@ -119987,6 +120051,19 @@ export const OrganizationPaymentsApiFp = function(configuration?: Configuration)
|
|
|
119987
120051
|
const localVarOperationServerBasePath = operationServerMap['OrganizationPaymentsApi.getPayment']?.[localVarOperationServerIndex]?.url;
|
|
119988
120052
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
119989
120053
|
},
|
|
120054
|
+
/**
|
|
120055
|
+
* Get Payment Tax Metadata endpoint
|
|
120056
|
+
* @summary Get Payment Tax Metadata
|
|
120057
|
+
* @param {string} paymentId The payment identifier
|
|
120058
|
+
* @param {*} [options] Override http request option.
|
|
120059
|
+
* @throws {RequiredError}
|
|
120060
|
+
*/
|
|
120061
|
+
async getPaymentTaxMetadata(paymentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPaymentTaxMetadata200Response>> {
|
|
120062
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getPaymentTaxMetadata(paymentId, options);
|
|
120063
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
120064
|
+
const localVarOperationServerBasePath = operationServerMap['OrganizationPaymentsApi.getPaymentTaxMetadata']?.[localVarOperationServerIndex]?.url;
|
|
120065
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
120066
|
+
},
|
|
119990
120067
|
/**
|
|
119991
120068
|
* Get Payments endpoint
|
|
119992
120069
|
* @summary Get Payments
|
|
@@ -120104,6 +120181,16 @@ export const OrganizationPaymentsApiFactory = function (configuration?: Configur
|
|
|
120104
120181
|
getPayment(requestParameters: OrganizationPaymentsApiGetPaymentRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetPayment200Response> {
|
|
120105
120182
|
return localVarFp.getPayment(requestParameters.paymentId, options).then((request) => request(axios, basePath));
|
|
120106
120183
|
},
|
|
120184
|
+
/**
|
|
120185
|
+
* Get Payment Tax Metadata endpoint
|
|
120186
|
+
* @summary Get Payment Tax Metadata
|
|
120187
|
+
* @param {OrganizationPaymentsApiGetPaymentTaxMetadataRequest} requestParameters Request parameters.
|
|
120188
|
+
* @param {*} [options] Override http request option.
|
|
120189
|
+
* @throws {RequiredError}
|
|
120190
|
+
*/
|
|
120191
|
+
getPaymentTaxMetadata(requestParameters: OrganizationPaymentsApiGetPaymentTaxMetadataRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetPaymentTaxMetadata200Response> {
|
|
120192
|
+
return localVarFp.getPaymentTaxMetadata(requestParameters.paymentId, options).then((request) => request(axios, basePath));
|
|
120193
|
+
},
|
|
120107
120194
|
/**
|
|
120108
120195
|
* Get Payments endpoint
|
|
120109
120196
|
* @summary Get Payments
|
|
@@ -120209,6 +120296,16 @@ export interface OrganizationPaymentsApiGetPaymentRequest {
|
|
|
120209
120296
|
readonly paymentId: string
|
|
120210
120297
|
}
|
|
120211
120298
|
|
|
120299
|
+
/**
|
|
120300
|
+
* Request parameters for getPaymentTaxMetadata operation in OrganizationPaymentsApi.
|
|
120301
|
+
*/
|
|
120302
|
+
export interface OrganizationPaymentsApiGetPaymentTaxMetadataRequest {
|
|
120303
|
+
/**
|
|
120304
|
+
* The payment identifier
|
|
120305
|
+
*/
|
|
120306
|
+
readonly paymentId: string
|
|
120307
|
+
}
|
|
120308
|
+
|
|
120212
120309
|
/**
|
|
120213
120310
|
* Request parameters for getPayments operation in OrganizationPaymentsApi.
|
|
120214
120311
|
*/
|
|
@@ -120332,6 +120429,17 @@ export class OrganizationPaymentsApi extends BaseAPI {
|
|
|
120332
120429
|
return OrganizationPaymentsApiFp(this.configuration).getPayment(requestParameters.paymentId, options).then((request) => request(this.axios, this.basePath));
|
|
120333
120430
|
}
|
|
120334
120431
|
|
|
120432
|
+
/**
|
|
120433
|
+
* Get Payment Tax Metadata endpoint
|
|
120434
|
+
* @summary Get Payment Tax Metadata
|
|
120435
|
+
* @param {OrganizationPaymentsApiGetPaymentTaxMetadataRequest} requestParameters Request parameters.
|
|
120436
|
+
* @param {*} [options] Override http request option.
|
|
120437
|
+
* @throws {RequiredError}
|
|
120438
|
+
*/
|
|
120439
|
+
public getPaymentTaxMetadata(requestParameters: OrganizationPaymentsApiGetPaymentTaxMetadataRequest, options?: RawAxiosRequestConfig) {
|
|
120440
|
+
return OrganizationPaymentsApiFp(this.configuration).getPaymentTaxMetadata(requestParameters.paymentId, options).then((request) => request(this.axios, this.basePath));
|
|
120441
|
+
}
|
|
120442
|
+
|
|
120335
120443
|
/**
|
|
120336
120444
|
* Get Payments endpoint
|
|
120337
120445
|
* @summary Get Payments
|
package/dist/api.d.ts
CHANGED
|
@@ -266,6 +266,8 @@ export interface ActivationCompletion {
|
|
|
266
266
|
'eventActivation': BaseEventActivation;
|
|
267
267
|
'earnedPoints': number;
|
|
268
268
|
'passId': string;
|
|
269
|
+
'imageId': string | null;
|
|
270
|
+
'image': BaseImage | null;
|
|
269
271
|
'pass': BaseEventPass;
|
|
270
272
|
'createdAt': string;
|
|
271
273
|
'updatedAt': string;
|
|
@@ -285,6 +287,7 @@ export interface Activity {
|
|
|
285
287
|
'status': ActivityStatus;
|
|
286
288
|
'featured': boolean;
|
|
287
289
|
'pinned': boolean;
|
|
290
|
+
'pinnedExplore': boolean;
|
|
288
291
|
'giphyId': string | null;
|
|
289
292
|
'imageId': string | null;
|
|
290
293
|
'videoId': string | null;
|
|
@@ -310,6 +313,8 @@ export interface ActivityCreateInputs {
|
|
|
310
313
|
'message': string;
|
|
311
314
|
'entities'?: Array<ActivityEntityInputs> | null;
|
|
312
315
|
'featured'?: boolean;
|
|
316
|
+
'pinned'?: boolean;
|
|
317
|
+
'pinnedExplore'?: boolean;
|
|
313
318
|
'imageId'?: string | null;
|
|
314
319
|
'videoId'?: string | null;
|
|
315
320
|
'eventId'?: string | null;
|
|
@@ -359,6 +364,7 @@ export interface ActivityUpdateInputs {
|
|
|
359
364
|
'moderation'?: ModerationStatus | null;
|
|
360
365
|
'featured'?: boolean;
|
|
361
366
|
'pinned'?: boolean;
|
|
367
|
+
'pinnedExplore'?: boolean;
|
|
362
368
|
'imageId'?: string | null;
|
|
363
369
|
'videoId'?: string | null;
|
|
364
370
|
'meetingId'?: string | null;
|
|
@@ -739,6 +745,8 @@ export interface BaseActivationCompletion {
|
|
|
739
745
|
'eventActivation': BaseEventActivation;
|
|
740
746
|
'earnedPoints': number;
|
|
741
747
|
'passId': string;
|
|
748
|
+
'imageId': string | null;
|
|
749
|
+
'image': BaseImage | null;
|
|
742
750
|
}
|
|
743
751
|
export interface BaseActivity {
|
|
744
752
|
'id': string;
|
|
@@ -746,6 +754,7 @@ export interface BaseActivity {
|
|
|
746
754
|
'status': ActivityStatus;
|
|
747
755
|
'featured': boolean;
|
|
748
756
|
'pinned': boolean;
|
|
757
|
+
'pinnedExplore': boolean;
|
|
749
758
|
'giphyId': string | null;
|
|
750
759
|
'imageId': string | null;
|
|
751
760
|
'videoId': string | null;
|
|
@@ -1132,6 +1141,7 @@ export interface BaseEventActivation {
|
|
|
1132
1141
|
'accessLevel': PassTypeAccessLevel;
|
|
1133
1142
|
'sortOrder': number;
|
|
1134
1143
|
'survey': BaseSurvey | null;
|
|
1144
|
+
'imageUpload': boolean;
|
|
1135
1145
|
'_count': BaseEventActivationCount;
|
|
1136
1146
|
}
|
|
1137
1147
|
export interface BaseEventActivationCount {
|
|
@@ -4316,6 +4326,7 @@ export interface EventActivation {
|
|
|
4316
4326
|
'accessLevel': PassTypeAccessLevel;
|
|
4317
4327
|
'sortOrder': number;
|
|
4318
4328
|
'survey': BaseSurvey | null;
|
|
4329
|
+
'imageUpload': boolean;
|
|
4319
4330
|
'_count': BaseEventActivationCount;
|
|
4320
4331
|
'eventId': string;
|
|
4321
4332
|
'event': BaseEvent;
|
|
@@ -4352,6 +4363,7 @@ export interface EventActivationCreateInputs {
|
|
|
4352
4363
|
'continuousScanning'?: boolean;
|
|
4353
4364
|
'scanType'?: OnSiteScanType | null;
|
|
4354
4365
|
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
4366
|
+
'imageUpload'?: boolean;
|
|
4355
4367
|
}
|
|
4356
4368
|
export interface EventActivationTranslation {
|
|
4357
4369
|
'locale': string;
|
|
@@ -4384,6 +4396,7 @@ export interface EventActivationUpdateInputs {
|
|
|
4384
4396
|
'continuousScanning'?: boolean;
|
|
4385
4397
|
'scanType'?: OnSiteScanType | null;
|
|
4386
4398
|
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
4399
|
+
'imageUpload'?: boolean;
|
|
4387
4400
|
}
|
|
4388
4401
|
export interface EventAddOn {
|
|
4389
4402
|
'id': string;
|
|
@@ -8195,6 +8208,16 @@ export interface GetPayment200Response {
|
|
|
8195
8208
|
export declare enum GetPayment200ResponseStatusEnum {
|
|
8196
8209
|
Ok = "ok"
|
|
8197
8210
|
}
|
|
8211
|
+
export interface GetPaymentTaxMetadata200Response {
|
|
8212
|
+
'status': GetPaymentTaxMetadata200ResponseStatusEnum;
|
|
8213
|
+
'message': string;
|
|
8214
|
+
'data': {
|
|
8215
|
+
[key: string]: object;
|
|
8216
|
+
};
|
|
8217
|
+
}
|
|
8218
|
+
export declare enum GetPaymentTaxMetadata200ResponseStatusEnum {
|
|
8219
|
+
Ok = "ok"
|
|
8220
|
+
}
|
|
8198
8221
|
export interface GetPreferences200Response {
|
|
8199
8222
|
'status': GetPreferences200ResponseStatusEnum;
|
|
8200
8223
|
'message': string;
|
|
@@ -8904,11 +8927,12 @@ export declare enum ImageModerationLevel {
|
|
|
8904
8927
|
}
|
|
8905
8928
|
export declare enum ImageType {
|
|
8906
8929
|
Admin = "admin",
|
|
8907
|
-
|
|
8930
|
+
Account = "account",
|
|
8931
|
+
Thread = "thread",
|
|
8932
|
+
Content = "content",
|
|
8908
8933
|
Activity = "activity",
|
|
8909
|
-
|
|
8910
|
-
|
|
8911
|
-
Content = "content"
|
|
8934
|
+
Event = "event",
|
|
8935
|
+
Activation = "activation"
|
|
8912
8936
|
}
|
|
8913
8937
|
export interface ImageUpdateInputs {
|
|
8914
8938
|
'name'?: string | null;
|
|
@@ -66072,6 +66096,14 @@ export declare const OrganizationPaymentsApiAxiosParamCreator: (configuration?:
|
|
|
66072
66096
|
* @throws {RequiredError}
|
|
66073
66097
|
*/
|
|
66074
66098
|
getPayment: (paymentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
66099
|
+
/**
|
|
66100
|
+
* Get Payment Tax Metadata endpoint
|
|
66101
|
+
* @summary Get Payment Tax Metadata
|
|
66102
|
+
* @param {string} paymentId The payment identifier
|
|
66103
|
+
* @param {*} [options] Override http request option.
|
|
66104
|
+
* @throws {RequiredError}
|
|
66105
|
+
*/
|
|
66106
|
+
getPaymentTaxMetadata: (paymentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
66075
66107
|
/**
|
|
66076
66108
|
* Get Payments endpoint
|
|
66077
66109
|
* @summary Get Payments
|
|
@@ -66158,6 +66190,14 @@ export declare const OrganizationPaymentsApiFp: (configuration?: Configuration)
|
|
|
66158
66190
|
* @throws {RequiredError}
|
|
66159
66191
|
*/
|
|
66160
66192
|
getPayment(paymentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPayment200Response>>;
|
|
66193
|
+
/**
|
|
66194
|
+
* Get Payment Tax Metadata endpoint
|
|
66195
|
+
* @summary Get Payment Tax Metadata
|
|
66196
|
+
* @param {string} paymentId The payment identifier
|
|
66197
|
+
* @param {*} [options] Override http request option.
|
|
66198
|
+
* @throws {RequiredError}
|
|
66199
|
+
*/
|
|
66200
|
+
getPaymentTaxMetadata(paymentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPaymentTaxMetadata200Response>>;
|
|
66161
66201
|
/**
|
|
66162
66202
|
* Get Payments endpoint
|
|
66163
66203
|
* @summary Get Payments
|
|
@@ -66241,6 +66281,14 @@ export declare const OrganizationPaymentsApiFactory: (configuration?: Configurat
|
|
|
66241
66281
|
* @throws {RequiredError}
|
|
66242
66282
|
*/
|
|
66243
66283
|
getPayment(requestParameters: OrganizationPaymentsApiGetPaymentRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetPayment200Response>;
|
|
66284
|
+
/**
|
|
66285
|
+
* Get Payment Tax Metadata endpoint
|
|
66286
|
+
* @summary Get Payment Tax Metadata
|
|
66287
|
+
* @param {OrganizationPaymentsApiGetPaymentTaxMetadataRequest} requestParameters Request parameters.
|
|
66288
|
+
* @param {*} [options] Override http request option.
|
|
66289
|
+
* @throws {RequiredError}
|
|
66290
|
+
*/
|
|
66291
|
+
getPaymentTaxMetadata(requestParameters: OrganizationPaymentsApiGetPaymentTaxMetadataRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetPaymentTaxMetadata200Response>;
|
|
66244
66292
|
/**
|
|
66245
66293
|
* Get Payments endpoint
|
|
66246
66294
|
* @summary Get Payments
|
|
@@ -66328,6 +66376,15 @@ export interface OrganizationPaymentsApiGetPaymentRequest {
|
|
|
66328
66376
|
*/
|
|
66329
66377
|
readonly paymentId: string;
|
|
66330
66378
|
}
|
|
66379
|
+
/**
|
|
66380
|
+
* Request parameters for getPaymentTaxMetadata operation in OrganizationPaymentsApi.
|
|
66381
|
+
*/
|
|
66382
|
+
export interface OrganizationPaymentsApiGetPaymentTaxMetadataRequest {
|
|
66383
|
+
/**
|
|
66384
|
+
* The payment identifier
|
|
66385
|
+
*/
|
|
66386
|
+
readonly paymentId: string;
|
|
66387
|
+
}
|
|
66331
66388
|
/**
|
|
66332
66389
|
* Request parameters for getPayments operation in OrganizationPaymentsApi.
|
|
66333
66390
|
*/
|
|
@@ -66426,6 +66483,14 @@ export declare class OrganizationPaymentsApi extends BaseAPI {
|
|
|
66426
66483
|
* @throws {RequiredError}
|
|
66427
66484
|
*/
|
|
66428
66485
|
getPayment(requestParameters: OrganizationPaymentsApiGetPaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetPayment200Response, any, {}>>;
|
|
66486
|
+
/**
|
|
66487
|
+
* Get Payment Tax Metadata endpoint
|
|
66488
|
+
* @summary Get Payment Tax Metadata
|
|
66489
|
+
* @param {OrganizationPaymentsApiGetPaymentTaxMetadataRequest} requestParameters Request parameters.
|
|
66490
|
+
* @param {*} [options] Override http request option.
|
|
66491
|
+
* @throws {RequiredError}
|
|
66492
|
+
*/
|
|
66493
|
+
getPaymentTaxMetadata(requestParameters: OrganizationPaymentsApiGetPaymentTaxMetadataRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetPaymentTaxMetadata200Response, any, {}>>;
|
|
66429
66494
|
/**
|
|
66430
66495
|
* Get Payments endpoint
|
|
66431
66496
|
* @summary Get Payments
|