@dainprotocol/service-sdk 1.0.74 → 1.0.75
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/service/types.d.ts +4 -6
- package/package.json +1 -1
package/dist/service/types.d.ts
CHANGED
|
@@ -147,12 +147,10 @@ export type DAINServiceConfig = {
|
|
|
147
147
|
tokenStore?: OAuth2TokenStoreAdapter;
|
|
148
148
|
};
|
|
149
149
|
processStore?: ProcessStoreAdapter;
|
|
150
|
-
exampleQueries?:
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
}
|
|
155
|
-
];
|
|
150
|
+
exampleQueries?: {
|
|
151
|
+
category: string;
|
|
152
|
+
queries: string[];
|
|
153
|
+
}[];
|
|
156
154
|
};
|
|
157
155
|
export interface ServiceManager {
|
|
158
156
|
shutdown: () => Promise<void>;
|