@erp-galoper/types 1.0.1492 → 1.0.1494
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.ts +23 -1
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -29289,6 +29289,28 @@ export interface components {
|
|
|
29289
29289
|
name: string;
|
|
29290
29290
|
/** Ispos */
|
|
29291
29291
|
isPos: boolean;
|
|
29292
|
+
/** Paymentproviders */
|
|
29293
|
+
paymentProviders: components["schemas"]["PaymentProvider"][];
|
|
29294
|
+
};
|
|
29295
|
+
/** PaymentProvider */
|
|
29296
|
+
PaymentProvider: {
|
|
29297
|
+
/**
|
|
29298
|
+
* Datecreated
|
|
29299
|
+
* Format: date-time
|
|
29300
|
+
*/
|
|
29301
|
+
dateCreated: string;
|
|
29302
|
+
/** Datemodified */
|
|
29303
|
+
dateModified: string | null;
|
|
29304
|
+
createdBy: components["schemas"]["RecordUserSchema"];
|
|
29305
|
+
modifiedBy: components["schemas"]["RecordUserSchema"] | null;
|
|
29306
|
+
/** Id */
|
|
29307
|
+
id: number;
|
|
29308
|
+
/** Providername */
|
|
29309
|
+
providerName: string;
|
|
29310
|
+
feeType: components["schemas"]["PaymentProviderFeeTypeEnum"];
|
|
29311
|
+
/** Feepercentage */
|
|
29312
|
+
feePercentage: number;
|
|
29313
|
+
account: components["schemas"]["AccountSummaryInfo"];
|
|
29292
29314
|
};
|
|
29293
29315
|
/**
|
|
29294
29316
|
* PaymentProviderFeeTypeEnum
|
|
@@ -29316,13 +29338,13 @@ export interface components {
|
|
|
29316
29338
|
modifiedBy: components["schemas"]["RecordUserSchema"] | null;
|
|
29317
29339
|
/** Id */
|
|
29318
29340
|
id: number;
|
|
29319
|
-
paymentMethod: components["schemas"]["ListPaymentMethod"];
|
|
29320
29341
|
/** Providername */
|
|
29321
29342
|
providerName: string;
|
|
29322
29343
|
feeType: components["schemas"]["PaymentProviderFeeTypeEnum"];
|
|
29323
29344
|
/** Feepercentage */
|
|
29324
29345
|
feePercentage: number;
|
|
29325
29346
|
account: components["schemas"]["AccountSummaryInfo"];
|
|
29347
|
+
paymentMethod: components["schemas"]["ListPaymentMethod"];
|
|
29326
29348
|
};
|
|
29327
29349
|
/** CreateUpdatePaymentProviderSchema */
|
|
29328
29350
|
CreateUpdatePaymentProviderSchema: {
|