@accelbyte/sdk 1.0.1 → 1.0.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.
package/README.md CHANGED
@@ -1,12 +1,4 @@
1
1
  # AccelByte Web SDK
2
2
 
3
- This folder contains the source code of the [github.com/AccelByte/accelbyte-web-sdk](https://github.com/AccelByte/accelbyte-web-sdk).
4
-
5
3
  The [AccelByte Web SDK](https://github.com/AccelByte/accelbyte-web-sdk) is a platform-agnostic JavaScript library that enables you to build web applications using AccelByte backend services. For full documentation and live playground open [AccelByte Web SDK](https://demo.accelbyte.io/web-sdk-playground/)
6
4
 
7
- ## Key directories
8
-
9
- - [examples](https://github.com/AccelByte/accelbyte-web-sdk/tree/main/packages/sdk/examples): Example usages of the AccelByte Web SDK, such as Node (as a script), Next.js, and vite.
10
- - [src](https://github.com/AccelByte/accelbyte-web-sdk/tree/main/packages/sdk/src): The source files of the AccelByte Web SDK.
11
- - [test](https://github.com/AccelByte/accelbyte-web-sdk/tree/main/packages/sdk/test): The test files of the AccelByte Web SDK.
12
-
@@ -3090,7 +3090,7 @@ class UserAuthorizationApi {
3090
3090
  this.cache = cache;
3091
3091
  this.options = options;
3092
3092
  /**
3093
- * POST: [/iam/v3/oauth/token](api)
3093
+ * POST [/iam/v3/oauth/token](api)
3094
3094
  *
3095
3095
  * This method supports grant type:
3096
3096
  * - Grant Type == `authorization_code`:
@@ -3792,7 +3792,6 @@ class OAuthApi {
3792
3792
  });
3793
3793
  localStorage.removeItem(MFA_DATA_STORAGE_KEY);
3794
3794
  SdkCache.clearCache();
3795
- // TODO
3796
3795
  return new OAuth20Extension$(axios, this.namespace, this.cache).createLogout();
3797
3796
  };
3798
3797
  /**
@@ -6966,7 +6965,7 @@ const Recurring = zod.z.object({
6966
6965
  * and restrictions contact your company contract manager.
6967
6966
  */
6968
6967
  const RegionDataItem = zod.z.object({
6969
- price: zod.z.number().int(),
6968
+ price: zod.z.number().int().nullish(),
6970
6969
  discountPercentage: zod.z.number().int().nullish(),
6971
6970
  discountAmount: zod.z.number().int().nullish(),
6972
6971
  discountedPrice: zod.z.number().int().nullish(),