reach-api-sdk 1.0.220 → 1.0.221

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.
@@ -2337,6 +2337,14 @@ type TenantWebsiteSetting = {
2337
2337
  */
2338
2338
  defaultMapCenterPlaceId?: string | null;
2339
2339
  websiteHomepage?: WebsiteHomepage;
2340
+ /**
2341
+ * Gets or sets a value indicating whether a gating message is shown to customers in a modal before they proceed to the checkout flow.
2342
+ */
2343
+ checkoutGatingMessageEnabled?: boolean | null;
2344
+ /**
2345
+ * Gets or sets the message shown to customers in a modal before they proceed to the checkout flow. Only shown when Reach.Models.TenantWebsiteSetting.CheckoutGatingMessageEnabled is true.
2346
+ */
2347
+ checkoutGatingMessage?: string | null;
2340
2348
  };
2341
2349
 
2342
2350
  /**
@@ -62399,6 +62407,14 @@ type TenantWebsiteSettingPatch = {
62399
62407
  */
62400
62408
  defaultMapCenterPlaceId?: string | null;
62401
62409
  websiteHomepage?: WebsiteHomepage;
62410
+ /**
62411
+ * Gets or sets a value indicating whether a gating message is shown to customers in a modal before they proceed to the checkout flow.
62412
+ */
62413
+ checkoutGatingMessageEnabled?: boolean | null;
62414
+ /**
62415
+ * Gets or sets the message shown to customers in a modal before they proceed to the checkout flow.
62416
+ */
62417
+ checkoutGatingMessage?: string | null;
62402
62418
  };
62403
62419
 
62404
62420
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reach-api-sdk",
3
- "version": "1.0.220",
3
+ "version": "1.0.221",
4
4
  "description": "sdk for reach api",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -172173,6 +172173,14 @@ components:
172173
172173
  nullable: true
172174
172174
  websiteHomepage:
172175
172175
  $ref: '#/components/schemas/WebsiteHomepage'
172176
+ checkoutGatingMessageEnabled:
172177
+ type: boolean
172178
+ description: Gets or sets a value indicating whether a gating message is shown to customers in a modal before they proceed to the checkout flow.
172179
+ nullable: true
172180
+ checkoutGatingMessage:
172181
+ type: string
172182
+ description: Gets or sets the message shown to customers in a modal before they proceed to the checkout flow. Only shown when Reach.Models.TenantWebsiteSetting.CheckoutGatingMessageEnabled is true.
172183
+ nullable: true
172176
172184
  additionalProperties: false
172177
172185
  description: Represents an organisation within the Reach application.
172178
172186
  TenantWebsiteSettingPage:
@@ -172279,6 +172287,14 @@ components:
172279
172287
  nullable: true
172280
172288
  websiteHomepage:
172281
172289
  $ref: '#/components/schemas/WebsiteHomepage'
172290
+ checkoutGatingMessageEnabled:
172291
+ type: boolean
172292
+ description: Gets or sets a value indicating whether a gating message is shown to customers in a modal before they proceed to the checkout flow.
172293
+ nullable: true
172294
+ checkoutGatingMessage:
172295
+ type: string
172296
+ description: Gets or sets the message shown to customers in a modal before they proceed to the checkout flow.
172297
+ nullable: true
172282
172298
  additionalProperties: false
172283
172299
  description: Post model for tenant website setting updates.
172284
172300
  TenantWebsiteSettingPost:
@@ -115,4 +115,12 @@ export type TenantWebsiteSetting = {
115
115
  */
116
116
  defaultMapCenterPlaceId?: string | null;
117
117
  websiteHomepage?: WebsiteHomepage;
118
+ /**
119
+ * Gets or sets a value indicating whether a gating message is shown to customers in a modal before they proceed to the checkout flow.
120
+ */
121
+ checkoutGatingMessageEnabled?: boolean | null;
122
+ /**
123
+ * Gets or sets the message shown to customers in a modal before they proceed to the checkout flow. Only shown when Reach.Models.TenantWebsiteSetting.CheckoutGatingMessageEnabled is true.
124
+ */
125
+ checkoutGatingMessage?: string | null;
118
126
  };
@@ -83,4 +83,12 @@ export type TenantWebsiteSettingPatch = {
83
83
  */
84
84
  defaultMapCenterPlaceId?: string | null;
85
85
  websiteHomepage?: WebsiteHomepage;
86
+ /**
87
+ * Gets or sets a value indicating whether a gating message is shown to customers in a modal before they proceed to the checkout flow.
88
+ */
89
+ checkoutGatingMessageEnabled?: boolean | null;
90
+ /**
91
+ * Gets or sets the message shown to customers in a modal before they proceed to the checkout flow.
92
+ */
93
+ checkoutGatingMessage?: string | null;
86
94
  };