@@ -10,7 +10,7 @@ import { request } from "./request";
10
10
* the field 'omschrijving'.
11
11
*/
12
12
export async function listInformatieObjectTypeChoices (
13
- zaaktypeUrl ?: string ,
13
+ zaaktypeIdentificatie ?: string ,
14
14
signal ?: AbortSignal ,
15
15
) {
16
16
return cacheMemo (
@@ -20,7 +20,7 @@ export async function listInformatieObjectTypeChoices(
20
20
"GET" ,
21
21
"/_informatieobjecttype-choices/" ,
22
22
{
23
- zaaktype : zaaktypeUrl ,
23
+ zaaktypeIdentificatie : zaaktypeIdentificatie ,
24
24
} ,
25
25
undefined ,
26
26
undefined ,
@@ -30,7 +30,7 @@ export async function listInformatieObjectTypeChoices(
30
30
31
31
return promise ;
32
32
} ,
33
- [ zaaktypeUrl ] ,
33
+ [ zaaktypeIdentificatie ] ,
34
34
) ;
35
35
}
36
36
@@ -39,7 +39,7 @@ export async function listInformatieObjectTypeChoices(
39
39
* 'omschrijving'.
40
40
*/
41
41
export async function listStatusTypeChoices (
42
- zaaktypeUrl ?: string ,
42
+ zaaktypeIdentificatie ?: string ,
43
43
signal ?: AbortSignal ,
44
44
) {
45
45
return cacheMemo (
@@ -49,7 +49,7 @@ export async function listStatusTypeChoices(
49
49
"GET" ,
50
50
"/_statustype-choices/" ,
51
51
{
52
- zaaktype : zaaktypeUrl ,
52
+ zaaktypeIdentificatie : zaaktypeIdentificatie ,
53
53
} ,
54
54
undefined ,
55
55
undefined ,
@@ -59,7 +59,7 @@ export async function listStatusTypeChoices(
59
59
60
60
return promise ;
61
61
} ,
62
- [ zaaktypeUrl ] ,
62
+ [ zaaktypeIdentificatie ] ,
63
63
) ;
64
64
}
65
65
@@ -68,7 +68,7 @@ export async function listStatusTypeChoices(
68
68
* resultaattype. The label is the field 'omschrijving'.
69
69
*/
70
70
export async function listResultaatTypeChoices (
71
- zaaktypeUrl ?: string ,
71
+ zaaktypeIdentificatie ?: string ,
72
72
signal ?: AbortSignal ,
73
73
) {
74
74
return cacheMemo (
@@ -78,7 +78,7 @@ export async function listResultaatTypeChoices(
78
78
"GET" ,
79
79
"/_external-resultaattype-choices/" ,
80
80
{
81
- zaaktype : zaaktypeUrl ,
81
+ zaaktypeIdentificatie : zaaktypeIdentificatie ,
82
82
} ,
83
83
undefined ,
84
84
undefined ,
@@ -88,7 +88,7 @@ export async function listResultaatTypeChoices(
88
88
89
89
return promise ;
90
90
} ,
91
- [ zaaktypeUrl ] ,
91
+ [ zaaktypeIdentificatie ] ,
92
92
) ;
93
93
}
94
94
@@ -128,7 +128,7 @@ export async function listSelectielijstKlasseChoices(
128
128
129
129
/**
130
130
* Retrieve zaaktypen from Open Zaak and return a value and a label per zaaktype.
131
- * The label is the 'omschrijving' field, and the value is the URL . The response is cached for 15 minutes.
131
+ * The label is the 'omschrijving' field, and the value is the identificatie . The response is cached for 15 minutes.
132
132
* @param [params] - Additional search parameters for filtering (this keeps filters in sync with objects on page).
133
133
* @param [external=false] - Fetch zaaktypen from ZRC Service (Open Zaak) (slower/can't be combined with other filtering options).
134
134
* @param signal - Abort signal, should be called in cleanup function in React `useEffect()` hooks.
0 commit comments