@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.
Files changed (2) hide show
  1. package/dist/index.d.ts +6 -2
  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?: SubscriptionTopic[];
3000
- associatedControls?: SubscriptionControl[];
2999
+ associatedTopics?: {
3000
+ [key: string]: SubscriptionTopic;
3001
+ };
3002
+ associatedControls?: {
3003
+ [key: string]: SubscriptionControl;
3004
+ };
3001
3005
  }
3002
3006
  /**
3003
3007
  * ButtonVariant
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ketch-sdk/ketch-types",
3
- "version": "1.71.1",
3
+ "version": "1.71.2",
4
4
  "description": "Ketch Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",