@appkit/dek-lib 0.43.0 → 0.47.0
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/components/LoginScreen/LoginScreen.d.ts +6 -0
- package/dist/data/types/graphql.d.ts +12 -2
- package/dist/index.d.ts +2 -0
- package/dist/index.es.js +11840 -12659
- package/dist/index.umd.js +11860 -12680
- package/dist/plugins/base/components/Greeting/Greeting.d.ts +1 -1
- package/dist/plugins/base/screens/SettingsScreen/Profile.d.ts +6 -0
- package/package.json +1 -1
|
@@ -129,7 +129,10 @@ export type AddPluginInput = {
|
|
|
129
129
|
components: Array<PluginComponentInput>;
|
|
130
130
|
description: Scalars['String']['input'];
|
|
131
131
|
name: Scalars['String']['input'];
|
|
132
|
+
pluginSchema?: InputMaybe<Scalars['String']['input']>;
|
|
132
133
|
private?: Scalars['Boolean']['input'];
|
|
134
|
+
readme?: InputMaybe<Scalars['String']['input']>;
|
|
135
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
133
136
|
version: Scalars['String']['input'];
|
|
134
137
|
};
|
|
135
138
|
export type AddPluginResult = {
|
|
@@ -329,6 +332,7 @@ export type Command = {
|
|
|
329
332
|
containerProps: Array<CommandProp>;
|
|
330
333
|
createdAt: Scalars['DateTime']['output'];
|
|
331
334
|
id: Scalars['ID']['output'];
|
|
335
|
+
integration: Integration;
|
|
332
336
|
integrationKey: Scalars['String']['output'];
|
|
333
337
|
props: Array<CommandProp>;
|
|
334
338
|
title: Scalars['String']['output'];
|
|
@@ -688,7 +692,10 @@ export type Plugin = {
|
|
|
688
692
|
description: Scalars['String']['output'];
|
|
689
693
|
id: Scalars['ID']['output'];
|
|
690
694
|
name: Scalars['String']['output'];
|
|
695
|
+
pluginSchema?: Maybe<Scalars['String']['output']>;
|
|
691
696
|
private: Scalars['Boolean']['output'];
|
|
697
|
+
readme?: Maybe<Scalars['String']['output']>;
|
|
698
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
692
699
|
updatedAt: Scalars['DateTime']['output'];
|
|
693
700
|
user: User;
|
|
694
701
|
version: Scalars['String']['output'];
|
|
@@ -985,7 +992,7 @@ export type UpdateBookResult = {
|
|
|
985
992
|
};
|
|
986
993
|
export type UpdateCommandGroupInput = {
|
|
987
994
|
archived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
988
|
-
commandIds
|
|
995
|
+
commandIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
989
996
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
990
997
|
};
|
|
991
998
|
export type UpdateCommandGroupResult = {
|
|
@@ -1185,8 +1192,11 @@ export type ZonePropInput = {
|
|
|
1185
1192
|
export type ZonesQueryInput = {
|
|
1186
1193
|
archived?: InputMaybe<YesNoAnyInput>;
|
|
1187
1194
|
boardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
1195
|
+
component?: InputMaybe<Scalars['String']['input']>;
|
|
1188
1196
|
createdAt?: InputMaybe<DateRangeInput>;
|
|
1189
|
-
|
|
1197
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
|
1198
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
1199
|
+
titleMatch?: InputMaybe<RegexExpressionInput>;
|
|
1190
1200
|
updatedAt?: InputMaybe<DateRangeInput>;
|
|
1191
1201
|
};
|
|
1192
1202
|
export type ZonesResult = {
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export { default as Board } from './components/Board/Board';
|
|
2
|
+
export { default as LoginScreen } from './components/LoginScreen/LoginScreen';
|
|
3
|
+
export { DEK_AUTH_TOKEN_KEY } from './components/LoginScreen/LoginScreen';
|
|
2
4
|
export { default as BoardProvider } from './components/BoardProvider/BoardProvider';
|
|
3
5
|
export { default as Command } from './components/Command/Command';
|
|
4
6
|
export { default as CommandGroup } from './components/CommandGroup/CommandGroup';
|