@dv4resi/dvss-backend-module-offering-im 0.0.18 → 0.0.19

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/dist/index.d.ts CHANGED
@@ -1431,6 +1431,7 @@ interface ISiteSystemResponse {
1431
1431
  name: string;
1432
1432
  kind: string;
1433
1433
  }>;
1434
+ categoryIds: string[];
1434
1435
  }
1435
1436
 
1436
1437
  declare class TrybeIntegrationConfigurationService extends BaseIntegrationConfiguration {
package/dist/index.js CHANGED
@@ -3396,7 +3396,8 @@ function mapTrybeSiteResponseToSystem(response) {
3396
3396
  id: paymentType.id,
3397
3397
  name: paymentType.name,
3398
3398
  kind: paymentType.kind
3399
- }))
3399
+ })),
3400
+ categoryIds: response.data?.category_ids ?? []
3400
3401
  };
3401
3402
  }
3402
3403
  __name(mapTrybeSiteResponseToSystem, "mapTrybeSiteResponseToSystem");