reach-api-sdk 1.0.212 → 1.0.213

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.
@@ -42948,6 +42948,10 @@ type TenantSetting = {
42948
42948
  * Gets or sets a value indicating whether providers are enabled for the tenant (only applicable to enterprise tenants).
42949
42949
  */
42950
42950
  enableProviders?: boolean;
42951
+ /**
42952
+ * Gets or sets a value indicating whether programmes are enabled for the tenant (only applicable to enterprise tenants).
42953
+ */
42954
+ enableProgrammes?: boolean;
42951
42955
  walletTrackingLevel?: WalletTrackingLevel;
42952
42956
  /**
42953
42957
  * Gets or sets a value indicating whether customers are only allowed to use wallet transactions (no card payments).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reach-api-sdk",
3
- "version": "1.0.212",
3
+ "version": "1.0.213",
4
4
  "description": "sdk for reach api",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -162670,6 +162670,10 @@ components:
162670
162670
  type: boolean
162671
162671
  description: Gets or sets a value indicating whether providers are enabled for the tenant (only applicable to enterprise tenants).
162672
162672
  default: false
162673
+ enableProgrammes:
162674
+ type: boolean
162675
+ description: Gets or sets a value indicating whether programmes are enabled for the tenant (only applicable to enterprise tenants).
162676
+ default: false
162673
162677
  walletTrackingLevel:
162674
162678
  $ref: '#/components/schemas/WalletTrackingLevel'
162675
162679
  walletOnlyPayments:
@@ -53,6 +53,10 @@ export type TenantSetting = {
53
53
  * Gets or sets a value indicating whether providers are enabled for the tenant (only applicable to enterprise tenants).
54
54
  */
55
55
  enableProviders?: boolean;
56
+ /**
57
+ * Gets or sets a value indicating whether programmes are enabled for the tenant (only applicable to enterprise tenants).
58
+ */
59
+ enableProgrammes?: boolean;
56
60
  walletTrackingLevel?: WalletTrackingLevel;
57
61
  /**
58
62
  * Gets or sets a value indicating whether customers are only allowed to use wallet transactions (no card payments).