@erp-galoper/types 1.0.1491 → 1.0.1493

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.
Files changed (2) hide show
  1. package/openapi.ts +23 -23
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -25985,11 +25985,6 @@ export interface components {
25985
25985
  /** Weight */
25986
25986
  weight?: number | null;
25987
25987
  weightUnitOfMeasure: components["schemas"]["UnitOfMeasureSchema"] | null;
25988
- /**
25989
- * Availableinpos
25990
- * @default false
25991
- */
25992
- availableInPos: boolean;
25993
25988
  /**
25994
25989
  * Isexchangeable
25995
25990
  * @description this field only appears if pos in galoper settings is enabled and available in pos is true
@@ -26233,11 +26228,6 @@ export interface components {
26233
26228
  /** Weight */
26234
26229
  weight?: number | null;
26235
26230
  weightUnitOfMeasure: components["schemas"]["UnitOfMeasureSchema"] | null;
26236
- /**
26237
- * Availableinpos
26238
- * @default false
26239
- */
26240
- availableInPos: boolean;
26241
26231
  /**
26242
26232
  * Isexchangeable
26243
26233
  * @description this field only appears if pos in galoper settings is enabled and available in pos is true
@@ -26785,11 +26775,6 @@ export interface components {
26785
26775
  weight?: number | null;
26786
26776
  /** Weightunitofmeasure */
26787
26777
  weightUnitOfMeasure?: number | null;
26788
- /**
26789
- * Availableinpos
26790
- * @default false
26791
- */
26792
- availableInPos: boolean | null;
26793
26778
  /**
26794
26779
  * Isexchangeable
26795
26780
  * @description this field only appears if pos in galoper settings is enabled and available in pos is true
@@ -27055,11 +27040,6 @@ export interface components {
27055
27040
  * @description Not applicable for service items - always null for type=service
27056
27041
  */
27057
27042
  weightUnitOfMeasure?: number | null;
27058
- /**
27059
- * Availableinpos
27060
- * @default false
27061
- */
27062
- availableInPos: boolean;
27063
27043
  /**
27064
27044
  * Isexchangeable
27065
27045
  * @description this field only appears if pos in galoper settings is enabled and available in pos is true
@@ -27406,8 +27386,6 @@ export interface components {
27406
27386
  * @description Not applicable for service items - always null for type=service
27407
27387
  */
27408
27388
  weightUnitOfMeasure?: number | null;
27409
- /** Availableinpos */
27410
- availableInPos?: boolean | null;
27411
27389
  /**
27412
27390
  * Isexchangeable
27413
27391
  * @description this field only appears if pos in galoper settings is enabled and available in pos is true
@@ -29311,6 +29289,28 @@ export interface components {
29311
29289
  name: string;
29312
29290
  /** Ispos */
29313
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"];
29314
29314
  };
29315
29315
  /**
29316
29316
  * PaymentProviderFeeTypeEnum
@@ -29338,13 +29338,13 @@ export interface components {
29338
29338
  modifiedBy: components["schemas"]["RecordUserSchema"] | null;
29339
29339
  /** Id */
29340
29340
  id: number;
29341
- paymentMethod: components["schemas"]["ListPaymentMethod"];
29342
29341
  /** Providername */
29343
29342
  providerName: string;
29344
29343
  feeType: components["schemas"]["PaymentProviderFeeTypeEnum"];
29345
29344
  /** Feepercentage */
29346
29345
  feePercentage: number;
29347
29346
  account: components["schemas"]["AccountSummaryInfo"];
29347
+ paymentMethod: components["schemas"]["ListPaymentMethod"];
29348
29348
  };
29349
29349
  /** CreateUpdatePaymentProviderSchema */
29350
29350
  CreateUpdatePaymentProviderSchema: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1491",
3
+ "version": "1.0.1493",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],