@authup/client-web-kit 1.0.0-beta.25 → 1.0.0-beta.27

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 (61) hide show
  1. package/LICENSE +1 -1
  2. package/dist/components/entities/client/AClientForm.d.ts +1 -1
  3. package/dist/components/entities/identity-provider/AIdentityProviderForm.d.ts +1 -11
  4. package/dist/components/entities/identity-provider/AIdentityProviderForm.d.ts.map +1 -1
  5. package/dist/components/entities/identity-provider/AIdentityProviderLdapForm.d.ts +1 -1
  6. package/dist/components/entities/identity-provider/AIdentityProviderOAuth2Form.d.ts +1 -10
  7. package/dist/components/entities/identity-provider/AIdentityProviderOAuth2Form.d.ts.map +1 -1
  8. package/dist/components/entities/permission/APermissionCheck.d.ts +5 -5
  9. package/dist/components/entities/permission/APermissionCheck.d.ts.map +1 -1
  10. package/dist/components/entities/policy/APolicyBasicForm.vue.d.ts +3 -3
  11. package/dist/components/entities/policy/APolicyForm.vue.d.ts +4 -4
  12. package/dist/components/entities/policy/attribute-names/AAttributeNamesPolicyForm.vue.d.ts +3 -3
  13. package/dist/components/entities/policy/composite/ACompositePolicyForm.vue.d.ts +3 -3
  14. package/dist/components/entities/policy/date/ADatePolicyForm.vue.d.ts +3 -3
  15. package/dist/components/entities/policy/identity/AIdentityPolicyForm.vue.d.ts +3 -3
  16. package/dist/components/entities/policy/realm-match/ARealmMatchPolicyForm.vue.d.ts +6 -6
  17. package/dist/components/entities/policy/time/ATimePolicyForm.vue.d.ts +3 -3
  18. package/dist/components/entities/robot/ARobotForm.d.ts +1 -1
  19. package/dist/components/entities/user/AUserForm.d.ts +1 -1
  20. package/dist/components/index.d.ts +1 -0
  21. package/dist/components/index.d.ts.map +1 -1
  22. package/dist/components/utility/AFormSubmit.d.ts +1 -1
  23. package/dist/components/utility/form-input-list/AFormInputList.vue.d.ts +3 -3
  24. package/dist/components/utility/form-input-list/AFormInputListItem.vue.d.ts +3 -3
  25. package/dist/components/workflows/Login.vue.d.ts +353 -0
  26. package/dist/components/workflows/Login.vue.d.ts.map +1 -0
  27. package/dist/components/workflows/authorize/Authorize.vue.d.ts +488 -0
  28. package/dist/components/workflows/authorize/Authorize.vue.d.ts.map +1 -0
  29. package/dist/components/workflows/authorize/AuthorizeForm.vue.d.ts +83 -0
  30. package/dist/components/workflows/authorize/AuthorizeForm.vue.d.ts.map +1 -0
  31. package/dist/components/workflows/authorize/AuthorizeScope.vue.d.ts +27 -0
  32. package/dist/components/workflows/authorize/AuthorizeScope.vue.d.ts.map +1 -0
  33. package/dist/components/workflows/authorize/AuthorizeScopes.vue.d.ts +54 -0
  34. package/dist/components/workflows/authorize/AuthorizeScopes.vue.d.ts.map +1 -0
  35. package/dist/components/workflows/authorize/AuthorizeText.vue.d.ts +21 -0
  36. package/dist/components/workflows/authorize/AuthorizeText.vue.d.ts.map +1 -0
  37. package/dist/components/workflows/authorize/helpers.d.ts +10 -0
  38. package/dist/components/workflows/authorize/helpers.d.ts.map +1 -0
  39. package/dist/components/workflows/authorize/index.d.ts +3 -0
  40. package/dist/components/workflows/authorize/index.d.ts.map +1 -0
  41. package/dist/components/workflows/index.d.ts +3 -0
  42. package/dist/components/workflows/index.d.ts.map +1 -0
  43. package/dist/core/http-client/authentication-hook/index.d.ts +3 -0
  44. package/dist/core/http-client/authentication-hook/index.d.ts.map +1 -0
  45. package/dist/core/http-client/authentication-hook/install.d.ts +4 -0
  46. package/dist/core/http-client/authentication-hook/install.d.ts.map +1 -0
  47. package/dist/core/http-client/authentication-hook/singleton.d.ts +6 -0
  48. package/dist/core/http-client/authentication-hook/singleton.d.ts.map +1 -0
  49. package/dist/core/http-client/authentication-hook/types.d.ts +7 -0
  50. package/dist/core/http-client/authentication-hook/types.d.ts.map +1 -0
  51. package/dist/core/http-client/index.d.ts +1 -0
  52. package/dist/core/http-client/index.d.ts.map +1 -1
  53. package/dist/core/http-client/install.d.ts.map +1 -1
  54. package/dist/core/http-client/singleton.d.ts.map +1 -1
  55. package/dist/index.cjs +1311 -428
  56. package/dist/index.cjs.map +1 -1
  57. package/dist/index.css +20 -0
  58. package/dist/index.mjs +1189 -313
  59. package/dist/index.mjs.map +1 -1
  60. package/dist/module.d.ts.map +1 -1
  61. package/package.json +22 -22
@@ -0,0 +1,353 @@
1
+ import type { PropType, Ref } from 'vue';
2
+ import type { IdentityProvider, OAuth2AuthorizationCodeRequest } from '@authup/core-kit';
3
+ import type { BuildInput } from 'rapiq';
4
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
5
+ codeRequest: {
6
+ type: PropType<OAuth2AuthorizationCodeRequest>;
7
+ };
8
+ }>, {
9
+ updateRealmId: (realmId: string | string[]) => void;
10
+ vuelidate: Ref<import("@vuelidate/core").Validation<{
11
+ name: {
12
+ required: import("@vuelidate/core").ValidationRuleWithoutParams<any>;
13
+ minLength: import("@vuelidate/core").ValidationRuleWithParams<{
14
+ min: number;
15
+ }, any>;
16
+ maxLength: import("@vuelidate/core").ValidationRuleWithParams<{
17
+ max: number;
18
+ }, any>;
19
+ };
20
+ password: {
21
+ required: import("@vuelidate/core").ValidationRuleWithoutParams<any>;
22
+ minLength: import("@vuelidate/core").ValidationRuleWithParams<{
23
+ min: number;
24
+ }, any>;
25
+ maxLength: import("@vuelidate/core").ValidationRuleWithParams<{
26
+ max: number;
27
+ }, any>;
28
+ };
29
+ realm_id: {};
30
+ }, {
31
+ name: string;
32
+ password: string;
33
+ realm_id: string;
34
+ }>, import("@vuelidate/core").Validation<{
35
+ name: {
36
+ required: import("@vuelidate/core").ValidationRuleWithoutParams<any>;
37
+ minLength: import("@vuelidate/core").ValidationRuleWithParams<{
38
+ min: number;
39
+ }, any>;
40
+ maxLength: import("@vuelidate/core").ValidationRuleWithParams<{
41
+ max: number;
42
+ }, any>;
43
+ };
44
+ password: {
45
+ required: import("@vuelidate/core").ValidationRuleWithoutParams<any>;
46
+ minLength: import("@vuelidate/core").ValidationRuleWithParams<{
47
+ min: number;
48
+ }, any>;
49
+ maxLength: import("@vuelidate/core").ValidationRuleWithParams<{
50
+ max: number;
51
+ }, any>;
52
+ };
53
+ realm_id: {};
54
+ }, {
55
+ name: string;
56
+ password: string;
57
+ realm_id: string;
58
+ }>>;
59
+ form: {
60
+ name: string;
61
+ password: string;
62
+ realm_id: string;
63
+ };
64
+ submit: () => Promise<void>;
65
+ busy: Ref<boolean, boolean>;
66
+ identityProviderQuery: Ref<BuildInput<IdentityProvider>, BuildInput<IdentityProvider>>;
67
+ identityProviderRef: Ref<{
68
+ [x: string]: any;
69
+ load: () => any;
70
+ }, {
71
+ [key: string]: any;
72
+ load: () => any;
73
+ } | {
74
+ [x: string]: any;
75
+ load: () => any;
76
+ }>;
77
+ buildIdentityProviderURL: (id: string) => string;
78
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("done" | "failed")[], "done" | "failed", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
79
+ codeRequest: {
80
+ type: PropType<OAuth2AuthorizationCodeRequest>;
81
+ };
82
+ }>> & Readonly<{
83
+ onDone?: (...args: any[]) => any;
84
+ onFailed?: (...args: any[]) => any;
85
+ }>, {}, {}, {
86
+ ARealmPicker: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
87
+ query: {
88
+ type: PropType<BuildInput<import("@authup/core-kit").Realm>>;
89
+ default(): {};
90
+ };
91
+ realmId: {
92
+ type: StringConstructor;
93
+ default: any;
94
+ };
95
+ loadOnSetup: {
96
+ type: BooleanConstructor;
97
+ default: boolean;
98
+ };
99
+ loading: {
100
+ type: PropType<boolean | import("..").ListLoadingOptions<import("@authup/core-kit").Realm>>;
101
+ default: boolean;
102
+ };
103
+ noMore: {
104
+ type: PropType<boolean | import("..").ListNoMoreOptions<import("@authup/core-kit").Realm>>;
105
+ default: boolean;
106
+ };
107
+ footer: {
108
+ type: PropType<boolean | import("..").ListFooterOptions<import("@authup/core-kit").Realm>>;
109
+ default: boolean;
110
+ };
111
+ header: {
112
+ type: PropType<boolean | import("..").ListHeaderOptions<import("@authup/core-kit").Realm>>;
113
+ default: boolean;
114
+ };
115
+ body: {
116
+ type: PropType<import("..").ListBodyOptions<import("@authup/core-kit").Realm>>;
117
+ };
118
+ value: {
119
+ type: PropType<string[] | string | null>;
120
+ };
121
+ multiple: {
122
+ type: PropType<boolean | undefined>;
123
+ };
124
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
125
+ [key: string]: any;
126
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
127
+ change: (values: string[]) => true;
128
+ } & import("..").EntityCollectionVEmitOptions<import("@authup/core-kit").Realm>, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
129
+ query: {
130
+ type: PropType<BuildInput<import("@authup/core-kit").Realm>>;
131
+ default(): {};
132
+ };
133
+ realmId: {
134
+ type: StringConstructor;
135
+ default: any;
136
+ };
137
+ loadOnSetup: {
138
+ type: BooleanConstructor;
139
+ default: boolean;
140
+ };
141
+ loading: {
142
+ type: PropType<boolean | import("..").ListLoadingOptions<import("@authup/core-kit").Realm>>;
143
+ default: boolean;
144
+ };
145
+ noMore: {
146
+ type: PropType<boolean | import("..").ListNoMoreOptions<import("@authup/core-kit").Realm>>;
147
+ default: boolean;
148
+ };
149
+ footer: {
150
+ type: PropType<boolean | import("..").ListFooterOptions<import("@authup/core-kit").Realm>>;
151
+ default: boolean;
152
+ };
153
+ header: {
154
+ type: PropType<boolean | import("..").ListHeaderOptions<import("@authup/core-kit").Realm>>;
155
+ default: boolean;
156
+ };
157
+ body: {
158
+ type: PropType<import("..").ListBodyOptions<import("@authup/core-kit").Realm>>;
159
+ };
160
+ value: {
161
+ type: PropType<string[] | string | null>;
162
+ };
163
+ multiple: {
164
+ type: PropType<boolean | undefined>;
165
+ };
166
+ }>> & Readonly<{
167
+ onUpdated?: (item: import("@authup/core-kit").Realm) => any;
168
+ onDeleted?: (item: import("@authup/core-kit").Realm) => any;
169
+ onCreated?: (item: import("@authup/core-kit").Realm) => any;
170
+ onChange?: (values: string[]) => any;
171
+ }>, {
172
+ footer: boolean;
173
+ header: boolean;
174
+ query: BuildInput<import("@authup/core-kit").Realm>;
175
+ realmId: string;
176
+ loadOnSetup: boolean;
177
+ loading: boolean;
178
+ noMore: boolean;
179
+ }, import("vue").SlotsType<import("..").EntityPickerVSlots<import("@authup/core-kit").Realm>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
180
+ APagination: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
181
+ total: {
182
+ type: NumberConstructor;
183
+ };
184
+ meta: {
185
+ type: PropType<Record<string, any>>;
186
+ };
187
+ busy: {
188
+ type: BooleanConstructor;
189
+ };
190
+ load: {
191
+ type: PropType<import("../utility/pagination/type").PaginationLoadFn>;
192
+ required: true;
193
+ };
194
+ }>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
195
+ total: {
196
+ type: NumberConstructor;
197
+ };
198
+ meta: {
199
+ type: PropType<Record<string, any>>;
200
+ };
201
+ busy: {
202
+ type: BooleanConstructor;
203
+ };
204
+ load: {
205
+ type: PropType<import("../utility/pagination/type").PaginationLoadFn>;
206
+ required: true;
207
+ };
208
+ }>> & Readonly<{}>, {
209
+ busy: boolean;
210
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
211
+ ATitle: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
212
+ icon: {
213
+ type: BooleanConstructor;
214
+ default: boolean;
215
+ };
216
+ iconPosition: {
217
+ type: PropType<"start" | "end">;
218
+ };
219
+ iconClass: {
220
+ type: StringConstructor;
221
+ };
222
+ text: {
223
+ type: StringConstructor;
224
+ };
225
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
226
+ [key: string]: any;
227
+ }> | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
228
+ [key: string]: any;
229
+ }>[], {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
230
+ icon: {
231
+ type: BooleanConstructor;
232
+ default: boolean;
233
+ };
234
+ iconPosition: {
235
+ type: PropType<"start" | "end">;
236
+ };
237
+ iconClass: {
238
+ type: StringConstructor;
239
+ };
240
+ text: {
241
+ type: StringConstructor;
242
+ };
243
+ }>> & Readonly<{}>, {
244
+ icon: boolean;
245
+ }, import("vue").SlotsType<{
246
+ default: import("../utility/title/type").TitleSlotProps;
247
+ }>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
248
+ IVuelidate: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
249
+ validation: {
250
+ type: PropType<Record<string, any>>;
251
+ required: true;
252
+ };
253
+ }>, () => import("vue").VNodeArrayChildren, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
254
+ validation: {
255
+ type: PropType<Record<string, any>>;
256
+ required: true;
257
+ };
258
+ }>> & Readonly<{}>, {}, import("vue").SlotsType<{
259
+ default: import("@ilingo/vuelidate").SlotProps;
260
+ }>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
261
+ AIdentityProviders: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
262
+ query: {
263
+ type: PropType<BuildInput<IdentityProvider>>;
264
+ default(): {};
265
+ };
266
+ realmId: {
267
+ type: StringConstructor;
268
+ default: any;
269
+ };
270
+ loadOnSetup: {
271
+ type: BooleanConstructor;
272
+ default: boolean;
273
+ };
274
+ loading: {
275
+ type: PropType<boolean | import("..").ListLoadingOptions<IdentityProvider>>;
276
+ default: boolean;
277
+ };
278
+ noMore: {
279
+ type: PropType<boolean | import("..").ListNoMoreOptions<IdentityProvider>>;
280
+ default: boolean;
281
+ };
282
+ footer: {
283
+ type: PropType<boolean | import("..").ListFooterOptions<IdentityProvider>>;
284
+ default: boolean;
285
+ };
286
+ header: {
287
+ type: PropType<boolean | import("..").ListHeaderOptions<IdentityProvider>>;
288
+ default: boolean;
289
+ };
290
+ body: {
291
+ type: PropType<import("..").ListBodyOptions<IdentityProvider>>;
292
+ };
293
+ }>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("..").EntityCollectionVEmitOptions<IdentityProvider>, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
294
+ query: {
295
+ type: PropType<BuildInput<IdentityProvider>>;
296
+ default(): {};
297
+ };
298
+ realmId: {
299
+ type: StringConstructor;
300
+ default: any;
301
+ };
302
+ loadOnSetup: {
303
+ type: BooleanConstructor;
304
+ default: boolean;
305
+ };
306
+ loading: {
307
+ type: PropType<boolean | import("..").ListLoadingOptions<IdentityProvider>>;
308
+ default: boolean;
309
+ };
310
+ noMore: {
311
+ type: PropType<boolean | import("..").ListNoMoreOptions<IdentityProvider>>;
312
+ default: boolean;
313
+ };
314
+ footer: {
315
+ type: PropType<boolean | import("..").ListFooterOptions<IdentityProvider>>;
316
+ default: boolean;
317
+ };
318
+ header: {
319
+ type: PropType<boolean | import("..").ListHeaderOptions<IdentityProvider>>;
320
+ default: boolean;
321
+ };
322
+ body: {
323
+ type: PropType<import("..").ListBodyOptions<IdentityProvider>>;
324
+ };
325
+ }>> & Readonly<{
326
+ onUpdated?: (item: IdentityProvider) => any;
327
+ onDeleted?: (item: IdentityProvider) => any;
328
+ onCreated?: (item: IdentityProvider) => any;
329
+ }>, {
330
+ footer: boolean;
331
+ header: boolean;
332
+ query: BuildInput<IdentityProvider>;
333
+ realmId: string;
334
+ loadOnSetup: boolean;
335
+ loading: boolean;
336
+ noMore: boolean;
337
+ }, import("vue").SlotsType<import("..").EntityCollectionVSlots<IdentityProvider>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
338
+ AIdentityProviderIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
339
+ entity: {
340
+ type: PropType<IdentityProvider>;
341
+ required: true;
342
+ };
343
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
344
+ [key: string]: any;
345
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
346
+ entity: {
347
+ type: PropType<IdentityProvider>;
348
+ required: true;
349
+ };
350
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
351
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
352
+ export default _default;
353
+ //# sourceMappingURL=Login.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Login.vue.d.ts","sourceRoot":"","sources":["../../../src/components/workflows/Login.vue"],"names":[],"mappings":"AAgRA,OAAO,KAAK,EAAE,QAAQ,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AASzC,OAAO,KAAK,EAAE,gBAAgB,EAAE,8BAA8B,EAAE,MAAM,kBAAkB,CAAC;AAKzF,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,OAAO,CAAC;;;cAmBZ,QAAQ,CAAC,8BAA8B,CAAC;;;6BAiE5B,MAAM,GAAG,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAPH,MAAM,GAAG;;;cAAT,MAAM,GAAG;;;cAAT,MAAM,GAAG;;mCAgCjB,MAAM;;;cA1FxB,QAAQ,CAAC,8BAA8B,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAdpE,wBAqIG"}