@ketch-sdk/ketch-types 1.71.1 → 1.71.2
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/dist/index.d.ts +6 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2996,8 +2996,12 @@ export interface SubscriptionConfiguration {
|
|
|
2996
2996
|
};
|
|
2997
2997
|
controls: SubscriptionControl[];
|
|
2998
2998
|
topics: SubscriptionTopic[];
|
|
2999
|
-
associatedTopics?:
|
|
3000
|
-
|
|
2999
|
+
associatedTopics?: {
|
|
3000
|
+
[key: string]: SubscriptionTopic;
|
|
3001
|
+
};
|
|
3002
|
+
associatedControls?: {
|
|
3003
|
+
[key: string]: SubscriptionControl;
|
|
3004
|
+
};
|
|
3001
3005
|
}
|
|
3002
3006
|
/**
|
|
3003
3007
|
* ButtonVariant
|