@accelbyte/sdk 1.1.2 → 1.1.3

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.
@@ -18838,6 +18838,17 @@ const LauncherConfigData = zod.z.object({
18838
18838
  }))
18839
18839
  });
18840
18840
 
18841
+ /*
18842
+ * Copyright (c) 2023 AccelByte Inc. All Rights Reserved
18843
+ * This is licensed software from AccelByte Inc, for limitations
18844
+ * and restrictions contact your company contract manager.
18845
+ */
18846
+ const PaymentConfigData = zod.z.object({
18847
+ pageConfig: Config.merge(zod.z.object({
18848
+ data: PageConfig
18849
+ }))
18850
+ });
18851
+
18841
18852
  const DisplayedPolicy = zod.z.object({
18842
18853
  policyName: zod.z.string(),
18843
18854
  policyId: zod.z.string(),
@@ -19388,6 +19399,7 @@ exports.PaymentAccountArray = PaymentAccountArray;
19388
19399
  exports.PaymentApi = PaymentApi;
19389
19400
  exports.PaymentCallbackConfigInfo = PaymentCallbackConfigInfo;
19390
19401
  exports.PaymentCallbackConfigUpdate = PaymentCallbackConfigUpdate;
19402
+ exports.PaymentConfigData = PaymentConfigData;
19391
19403
  exports.PaymentMerchantConfigInfo = PaymentMerchantConfigInfo;
19392
19404
  exports.PaymentMethod = PaymentMethod;
19393
19405
  exports.PaymentMethodArray = PaymentMethodArray;