@shopby/shop-sdk 1.2.8 → 1.2.9
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/build/types/manage.d.ts +4 -4
- package/package.json +1 -1
package/build/types/manage.d.ts
CHANGED
|
@@ -369,12 +369,12 @@ export interface TermsRequest extends RequestConfig {
|
|
|
369
369
|
};
|
|
370
370
|
}
|
|
371
371
|
export interface TermsResponse {
|
|
372
|
-
key
|
|
372
|
+
[key: string]: TermsKey;
|
|
373
373
|
}
|
|
374
374
|
export interface TermsKey {
|
|
375
|
-
contents
|
|
376
|
-
enforcementDate
|
|
377
|
-
used
|
|
375
|
+
contents: string;
|
|
376
|
+
enforcementDate: string;
|
|
377
|
+
used: boolean;
|
|
378
378
|
}
|
|
379
379
|
export interface TermsTermsNo {
|
|
380
380
|
contents?: string;
|