@sparkrewards/sra-client 0.0.6 → 0.0.8

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.
@@ -497,6 +497,7 @@ const de_GetShopCommand = async (output, context) => {
497
497
  'banner': smithy_client_1.expectString,
498
498
  'country_code': smithy_client_1.expectString,
499
499
  'description': smithy_client_1.expectString,
500
+ 'favorite': smithy_client_1.expectBoolean,
500
501
  'id': smithy_client_1.expectString,
501
502
  'latitude': smithy_client_1.limitedParseDouble,
502
503
  'location': smithy_client_1._json,
@@ -530,6 +531,7 @@ const de_GetShopPublicCommand = async (output, context) => {
530
531
  'banner': smithy_client_1.expectString,
531
532
  'country_code': smithy_client_1.expectString,
532
533
  'description': smithy_client_1.expectString,
534
+ 'favorite': smithy_client_1.expectBoolean,
533
535
  'id': smithy_client_1.expectString,
534
536
  'latitude': smithy_client_1.limitedParseDouble,
535
537
  'location': smithy_client_1._json,
@@ -464,6 +464,7 @@ export const de_GetShopCommand = async (output, context) => {
464
464
  'banner': __expectString,
465
465
  'country_code': __expectString,
466
466
  'description': __expectString,
467
+ 'favorite': __expectBoolean,
467
468
  'id': __expectString,
468
469
  'latitude': __limitedParseDouble,
469
470
  'location': _json,
@@ -496,6 +497,7 @@ export const de_GetShopPublicCommand = async (output, context) => {
496
497
  'banner': __expectString,
497
498
  'country_code': __expectString,
498
499
  'description': __expectString,
500
+ 'favorite': __expectBoolean,
499
501
  'id': __expectString,
500
502
  'latitude': __limitedParseDouble,
501
503
  'location': _json,
@@ -72,6 +72,7 @@ declare const GetShopCommand_base: {
72
72
  * // tags: [ // StringList // required
73
73
  * // "STRING_VALUE",
74
74
  * // ],
75
+ * // favorite: true || false, // required
75
76
  * // };
76
77
  *
77
78
  * ```
@@ -72,6 +72,7 @@ declare const GetShopPublicCommand_base: {
72
72
  * // tags: [ // StringList // required
73
73
  * // "STRING_VALUE",
74
74
  * // ],
75
+ * // favorite: true || false, // required
75
76
  * // };
76
77
  *
77
78
  * ```
@@ -260,6 +260,7 @@ export interface ShopDetails {
260
260
  sent_setup?: boolean;
261
261
  setup: boolean | undefined;
262
262
  tags: (string)[] | undefined;
263
+ favorite: boolean | undefined;
263
264
  }
264
265
  /**
265
266
  * Input for GetUser - no query params, uses auth token
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sparkrewards/sra-client",
3
3
  "description": "@sparkrewards/sra-client client",
4
- "version": "0.0.6",
4
+ "version": "0.0.8",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",