bigbluebutton-html-plugin-sdk 0.0.74 → 0.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.
@@ -1,5 +1,2 @@
1
- export declare const usePluginSettings: (pluginName: string) => {
2
- data: import("./types").PluginSettingsData | undefined;
3
- loading: boolean;
4
- error?: import("@apollo/client").ApolloError | undefined;
5
- };
1
+ import { UsePluginSettingsWrapperFunction } from './types';
2
+ export declare const usePluginSettings: UsePluginSettingsWrapperFunction;
@@ -1 +1 @@
1
- {"version":3,"file":"hooks.js","sourceRoot":"","sources":["../../../../../../src/data-consumption/domain/settings/plugin-settings/hooks.ts"],"names":[],"mappings":";;;AAAA,gEAA+E;AAC/E,qCAAkD;AAElD,iCAAuD;AAEhD,IAAM,iBAAiB,GAAG,UAC/B,UAAkB,IACf,OAAA,IAAA,oCAA4B,EAAC,IAAA,6BAAqB,EACT,+BAAqB,EAAE;IAC/D,SAAS,EAAE;QACT,UAAU,YAAA;KACX;CACF,CAAC,CAAC,EALF,CAKE,CAAC;AAPK,QAAA,iBAAiB,qBAOtB"}
1
+ {"version":3,"file":"hooks.js","sourceRoot":"","sources":["../../../../../../src/data-consumption/domain/settings/plugin-settings/hooks.ts"],"names":[],"mappings":";;;AAAA,gEAA+E;AAC/E,qCAAkD;AAElD,iCAAuD;AAEhD,IAAM,iBAAiB,GAAqC,UACjE,UAAkB,IACf,OAAA,IAAA,oCAA4B,EAAC,IAAA,6BAAqB,EACT,+BAAqB,EAAE;IAC/D,SAAS,EAAE;QACT,UAAU,YAAA;KACX;CACF,CAAC,CAAC,EALF,CAKE,CAAC;AAPK,QAAA,iBAAiB,qBAOtB"}
@@ -8,3 +8,5 @@ export interface PluginSettingsResponseFromGraphqlWrapper {
8
8
  }[];
9
9
  }
10
10
  export type UsePluginSettingsFunction = () => GraphqlResponseWrapper<PluginSettingsData>;
11
+ export type UsePluginSettingsWrapperFunction = (pluginName: string) => GraphqlResponseWrapper<PluginSettingsData>;
12
+ export type FilterPluginSpecificSettingsFunction = (completeSettings: GraphqlResponseWrapper<PluginSettingsResponseFromGraphqlWrapper>) => GraphqlResponseWrapper<PluginSettingsData>;
@@ -1,7 +1,2 @@
1
- import { GraphqlResponseWrapper } from '../../../../core';
2
- import { PluginSettingsResponseFromGraphqlWrapper } from './types';
3
- export declare const filterPluginSpecificSettings: (completeSettings: GraphqlResponseWrapper<PluginSettingsResponseFromGraphqlWrapper>) => {
4
- data: import("./types").PluginSettingsData | undefined;
5
- loading: boolean;
6
- error?: import("@apollo/client").ApolloError | undefined;
7
- };
1
+ import { FilterPluginSpecificSettingsFunction } from './types';
2
+ export declare const filterPluginSpecificSettings: FilterPluginSpecificSettingsFunction;
@@ -1 +1 @@
1
- {"version":3,"file":"utils.js","sourceRoot":"","sources":["../../../../../../src/data-consumption/domain/settings/plugin-settings/utils.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AAGO,IAAM,4BAA4B,GAAG,UAC1C,gBAAkF;;IAElF,IAAM,cAAc,GAAG,MAAA,MAAA,gBAAgB;SACpC,IAAI,0CAAE,4BAA4B,CAAC,CAAC,CAAC,0CAAE,QAAQ,CAAC;IACnD,6BACK,gBAAgB,KACnB,IAAI,EAAE,cAAc,IACpB;AACJ,CAAC,CAAC;AATW,QAAA,4BAA4B,gCASvC"}
1
+ {"version":3,"file":"utils.js","sourceRoot":"","sources":["../../../../../../src/data-consumption/domain/settings/plugin-settings/utils.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AAGO,IAAM,4BAA4B,GAAyC,UAChF,gBAAkF;;IAElF,IAAM,cAAc,GAAG,MAAA,MAAA,gBAAgB;SACpC,IAAI,0CAAE,4BAA4B,CAAC,CAAC,CAAC,0CAAE,QAAQ,CAAC;IACnD,6BACK,gBAAgB,KACnB,IAAI,EAAE,cAAc,IACpB;AACJ,CAAC,CAAC;AATW,QAAA,4BAA4B,gCASvC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bigbluebutton-html-plugin-sdk",
3
- "version": "0.0.74",
3
+ "version": "0.0.75",
4
4
  "homepage": "https://github.com/bigbluebutton/bigbluebutton-html-plugin-sdk",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",