@almadar/patterns 2.29.0 → 2.30.1
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/component-mapping.json +11 -1
- package/dist/event-contracts.json +1 -1
- package/dist/index.d.ts +100 -0
- package/dist/index.js +79 -7
- package/dist/index.js.map +1 -1
- package/dist/patterns-registry.json +67 -5
- package/dist/registry.json +67 -5
- package/dist/services-registry.json +29 -131
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "1.0.0",
|
|
3
|
-
"exportedAt": "2026-05-
|
|
3
|
+
"exportedAt": "2026-05-16T15:27:31.928Z",
|
|
4
4
|
"patterns": {
|
|
5
5
|
"entity-table": {
|
|
6
6
|
"type": "entity-table",
|
|
@@ -2154,6 +2154,11 @@
|
|
|
2154
2154
|
"string"
|
|
2155
2155
|
]
|
|
2156
2156
|
},
|
|
2157
|
+
"value": {
|
|
2158
|
+
"types": [
|
|
2159
|
+
"string"
|
|
2160
|
+
]
|
|
2161
|
+
},
|
|
2157
2162
|
"label": {
|
|
2158
2163
|
"types": [
|
|
2159
2164
|
"string"
|
|
@@ -2193,7 +2198,6 @@
|
|
|
2193
2198
|
}
|
|
2194
2199
|
},
|
|
2195
2200
|
"required": [
|
|
2196
|
-
"id",
|
|
2197
2201
|
"label"
|
|
2198
2202
|
]
|
|
2199
2203
|
}
|
|
@@ -2213,6 +2217,11 @@
|
|
|
2213
2217
|
"string"
|
|
2214
2218
|
]
|
|
2215
2219
|
},
|
|
2220
|
+
"value": {
|
|
2221
|
+
"types": [
|
|
2222
|
+
"string"
|
|
2223
|
+
]
|
|
2224
|
+
},
|
|
2216
2225
|
"label": {
|
|
2217
2226
|
"types": [
|
|
2218
2227
|
"string"
|
|
@@ -2252,7 +2261,6 @@
|
|
|
2252
2261
|
}
|
|
2253
2262
|
},
|
|
2254
2263
|
"required": [
|
|
2255
|
-
"id",
|
|
2256
2264
|
"label"
|
|
2257
2265
|
]
|
|
2258
2266
|
}
|
|
@@ -7901,8 +7909,8 @@
|
|
|
7901
7909
|
"types": [
|
|
7902
7910
|
"string"
|
|
7903
7911
|
],
|
|
7904
|
-
"description": "Panel width @default 'w-96'",
|
|
7905
|
-
"default": "w-96"
|
|
7912
|
+
"description": "Panel width as Tailwind class string. Default fills the viewport on mobile and snaps to `w-96` (384 px) at `sm:` and above so phones don't lose content to a fixed 384 px column. Consumers passing a custom value should include a `w-full` mobile fallback in the same string (e.g. `\"w-full sm:w-[480px]\"`) — Tailwind's JIT can't see dynamically-concatenated class names. @default 'w-full sm:w-96'",
|
|
7913
|
+
"default": "w-full sm:w-96"
|
|
7906
7914
|
},
|
|
7907
7915
|
"position": {
|
|
7908
7916
|
"types": [
|
|
@@ -12307,6 +12315,14 @@
|
|
|
12307
12315
|
"description": "Event emitted on swipe right (prev week): UI:{swipeRightEvent}",
|
|
12308
12316
|
"kind": "event-ref",
|
|
12309
12317
|
"emitPayloadSchema": []
|
|
12318
|
+
},
|
|
12319
|
+
"dayWindow": {
|
|
12320
|
+
"types": [
|
|
12321
|
+
"number",
|
|
12322
|
+
"string"
|
|
12323
|
+
],
|
|
12324
|
+
"description": "Override the viewport-driven day window. `'auto'` (default) tracks `window.innerWidth` — 1 day on mobile, 3 on tablet, 7 on laptop+. Pass an explicit number to force a fixed window (useful for print layouts or screenshot tests).",
|
|
12325
|
+
"default": "auto"
|
|
12310
12326
|
}
|
|
12311
12327
|
}
|
|
12312
12328
|
},
|
|
@@ -30150,6 +30166,52 @@
|
|
|
30150
30166
|
}
|
|
30151
30167
|
}
|
|
30152
30168
|
},
|
|
30169
|
+
"aside": {
|
|
30170
|
+
"type": "aside",
|
|
30171
|
+
"category": "component",
|
|
30172
|
+
"description": "Aside Atom Component Semantic wrapper for the native `<aside>` landmark. Owns raw HTML so molecules (SidePanel, navigation rails, callouts) can compose the semantic-aside primitive without falling back to a raw element.",
|
|
30173
|
+
"suggestedFor": [
|
|
30174
|
+
"aside"
|
|
30175
|
+
],
|
|
30176
|
+
"typicalSize": "small",
|
|
30177
|
+
"propsSchema": {
|
|
30178
|
+
"className": {
|
|
30179
|
+
"types": [
|
|
30180
|
+
"string"
|
|
30181
|
+
],
|
|
30182
|
+
"description": "Additional CSS classes"
|
|
30183
|
+
},
|
|
30184
|
+
"children": {
|
|
30185
|
+
"types": [
|
|
30186
|
+
"node"
|
|
30187
|
+
],
|
|
30188
|
+
"description": "Aside contents"
|
|
30189
|
+
}
|
|
30190
|
+
}
|
|
30191
|
+
},
|
|
30192
|
+
"dialog": {
|
|
30193
|
+
"type": "dialog",
|
|
30194
|
+
"category": "container",
|
|
30195
|
+
"description": "Dialog Atom Component Semantic wrapper for the native `<dialog>` element. Owns the raw HTML rendering so molecules (Modal, ConfirmDialog, etc.) can compose the dialog primitive without dropping back to raw HTML. Defaults `role=\"dialog\"` and `aria-modal=\"true\"`; both overridable for non-modal use cases.",
|
|
30196
|
+
"suggestedFor": [
|
|
30197
|
+
"dialog"
|
|
30198
|
+
],
|
|
30199
|
+
"typicalSize": "small",
|
|
30200
|
+
"propsSchema": {
|
|
30201
|
+
"className": {
|
|
30202
|
+
"types": [
|
|
30203
|
+
"string"
|
|
30204
|
+
],
|
|
30205
|
+
"description": "Additional CSS classes"
|
|
30206
|
+
},
|
|
30207
|
+
"children": {
|
|
30208
|
+
"types": [
|
|
30209
|
+
"node"
|
|
30210
|
+
],
|
|
30211
|
+
"description": "Dialog contents"
|
|
30212
|
+
}
|
|
30213
|
+
}
|
|
30214
|
+
},
|
|
30153
30215
|
"heading": {
|
|
30154
30216
|
"type": "heading",
|
|
30155
30217
|
"category": "component",
|
package/dist/registry.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "1.0.0",
|
|
3
|
-
"exportedAt": "2026-05-
|
|
3
|
+
"exportedAt": "2026-05-16T15:27:31.928Z",
|
|
4
4
|
"patterns": {
|
|
5
5
|
"entity-table": {
|
|
6
6
|
"type": "entity-table",
|
|
@@ -2154,6 +2154,11 @@
|
|
|
2154
2154
|
"string"
|
|
2155
2155
|
]
|
|
2156
2156
|
},
|
|
2157
|
+
"value": {
|
|
2158
|
+
"types": [
|
|
2159
|
+
"string"
|
|
2160
|
+
]
|
|
2161
|
+
},
|
|
2157
2162
|
"label": {
|
|
2158
2163
|
"types": [
|
|
2159
2164
|
"string"
|
|
@@ -2193,7 +2198,6 @@
|
|
|
2193
2198
|
}
|
|
2194
2199
|
},
|
|
2195
2200
|
"required": [
|
|
2196
|
-
"id",
|
|
2197
2201
|
"label"
|
|
2198
2202
|
]
|
|
2199
2203
|
}
|
|
@@ -2213,6 +2217,11 @@
|
|
|
2213
2217
|
"string"
|
|
2214
2218
|
]
|
|
2215
2219
|
},
|
|
2220
|
+
"value": {
|
|
2221
|
+
"types": [
|
|
2222
|
+
"string"
|
|
2223
|
+
]
|
|
2224
|
+
},
|
|
2216
2225
|
"label": {
|
|
2217
2226
|
"types": [
|
|
2218
2227
|
"string"
|
|
@@ -2252,7 +2261,6 @@
|
|
|
2252
2261
|
}
|
|
2253
2262
|
},
|
|
2254
2263
|
"required": [
|
|
2255
|
-
"id",
|
|
2256
2264
|
"label"
|
|
2257
2265
|
]
|
|
2258
2266
|
}
|
|
@@ -7901,8 +7909,8 @@
|
|
|
7901
7909
|
"types": [
|
|
7902
7910
|
"string"
|
|
7903
7911
|
],
|
|
7904
|
-
"description": "Panel width @default 'w-96'",
|
|
7905
|
-
"default": "w-96"
|
|
7912
|
+
"description": "Panel width as Tailwind class string. Default fills the viewport on mobile and snaps to `w-96` (384 px) at `sm:` and above so phones don't lose content to a fixed 384 px column. Consumers passing a custom value should include a `w-full` mobile fallback in the same string (e.g. `\"w-full sm:w-[480px]\"`) — Tailwind's JIT can't see dynamically-concatenated class names. @default 'w-full sm:w-96'",
|
|
7913
|
+
"default": "w-full sm:w-96"
|
|
7906
7914
|
},
|
|
7907
7915
|
"position": {
|
|
7908
7916
|
"types": [
|
|
@@ -12307,6 +12315,14 @@
|
|
|
12307
12315
|
"description": "Event emitted on swipe right (prev week): UI:{swipeRightEvent}",
|
|
12308
12316
|
"kind": "event-ref",
|
|
12309
12317
|
"emitPayloadSchema": []
|
|
12318
|
+
},
|
|
12319
|
+
"dayWindow": {
|
|
12320
|
+
"types": [
|
|
12321
|
+
"number",
|
|
12322
|
+
"string"
|
|
12323
|
+
],
|
|
12324
|
+
"description": "Override the viewport-driven day window. `'auto'` (default) tracks `window.innerWidth` — 1 day on mobile, 3 on tablet, 7 on laptop+. Pass an explicit number to force a fixed window (useful for print layouts or screenshot tests).",
|
|
12325
|
+
"default": "auto"
|
|
12310
12326
|
}
|
|
12311
12327
|
}
|
|
12312
12328
|
},
|
|
@@ -30150,6 +30166,52 @@
|
|
|
30150
30166
|
}
|
|
30151
30167
|
}
|
|
30152
30168
|
},
|
|
30169
|
+
"aside": {
|
|
30170
|
+
"type": "aside",
|
|
30171
|
+
"category": "component",
|
|
30172
|
+
"description": "Aside Atom Component Semantic wrapper for the native `<aside>` landmark. Owns raw HTML so molecules (SidePanel, navigation rails, callouts) can compose the semantic-aside primitive without falling back to a raw element.",
|
|
30173
|
+
"suggestedFor": [
|
|
30174
|
+
"aside"
|
|
30175
|
+
],
|
|
30176
|
+
"typicalSize": "small",
|
|
30177
|
+
"propsSchema": {
|
|
30178
|
+
"className": {
|
|
30179
|
+
"types": [
|
|
30180
|
+
"string"
|
|
30181
|
+
],
|
|
30182
|
+
"description": "Additional CSS classes"
|
|
30183
|
+
},
|
|
30184
|
+
"children": {
|
|
30185
|
+
"types": [
|
|
30186
|
+
"node"
|
|
30187
|
+
],
|
|
30188
|
+
"description": "Aside contents"
|
|
30189
|
+
}
|
|
30190
|
+
}
|
|
30191
|
+
},
|
|
30192
|
+
"dialog": {
|
|
30193
|
+
"type": "dialog",
|
|
30194
|
+
"category": "container",
|
|
30195
|
+
"description": "Dialog Atom Component Semantic wrapper for the native `<dialog>` element. Owns the raw HTML rendering so molecules (Modal, ConfirmDialog, etc.) can compose the dialog primitive without dropping back to raw HTML. Defaults `role=\"dialog\"` and `aria-modal=\"true\"`; both overridable for non-modal use cases.",
|
|
30196
|
+
"suggestedFor": [
|
|
30197
|
+
"dialog"
|
|
30198
|
+
],
|
|
30199
|
+
"typicalSize": "small",
|
|
30200
|
+
"propsSchema": {
|
|
30201
|
+
"className": {
|
|
30202
|
+
"types": [
|
|
30203
|
+
"string"
|
|
30204
|
+
],
|
|
30205
|
+
"description": "Additional CSS classes"
|
|
30206
|
+
},
|
|
30207
|
+
"children": {
|
|
30208
|
+
"types": [
|
|
30209
|
+
"node"
|
|
30210
|
+
],
|
|
30211
|
+
"description": "Dialog contents"
|
|
30212
|
+
}
|
|
30213
|
+
}
|
|
30214
|
+
},
|
|
30153
30215
|
"heading": {
|
|
30154
30216
|
"type": "heading",
|
|
30155
30217
|
"category": "component",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "1.0.0",
|
|
3
|
-
"exportedAt": "2026-
|
|
3
|
+
"exportedAt": "2026-05-16T15:27:35.167Z",
|
|
4
4
|
"services": {
|
|
5
5
|
"llm": {
|
|
6
6
|
"name": "llm",
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
},
|
|
90
90
|
{
|
|
91
91
|
"name": "schema",
|
|
92
|
-
"type": "
|
|
92
|
+
"type": "JsonSchemaDefinition",
|
|
93
93
|
"required": true,
|
|
94
94
|
"description": ""
|
|
95
95
|
},
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
}
|
|
102
102
|
],
|
|
103
103
|
"responseShape": {
|
|
104
|
-
"data": "
|
|
104
|
+
"data": "ExtractedData",
|
|
105
105
|
"confidence": "number"
|
|
106
106
|
}
|
|
107
107
|
},
|
|
@@ -171,7 +171,7 @@
|
|
|
171
171
|
}
|
|
172
172
|
],
|
|
173
173
|
"responseShape": {
|
|
174
|
-
"items": "
|
|
174
|
+
"items": "EntityRow[]"
|
|
175
175
|
}
|
|
176
176
|
},
|
|
177
177
|
{
|
|
@@ -192,7 +192,7 @@
|
|
|
192
192
|
}
|
|
193
193
|
],
|
|
194
194
|
"responseShape": {
|
|
195
|
-
"item": "
|
|
195
|
+
"item": "EntityRow | null"
|
|
196
196
|
}
|
|
197
197
|
},
|
|
198
198
|
{
|
|
@@ -207,13 +207,13 @@
|
|
|
207
207
|
},
|
|
208
208
|
{
|
|
209
209
|
"name": "data",
|
|
210
|
-
"type": "
|
|
210
|
+
"type": "ServiceParams",
|
|
211
211
|
"required": true,
|
|
212
212
|
"description": ""
|
|
213
213
|
}
|
|
214
214
|
],
|
|
215
215
|
"responseShape": {
|
|
216
|
-
"item": "
|
|
216
|
+
"item": "EntityRow"
|
|
217
217
|
}
|
|
218
218
|
},
|
|
219
219
|
{
|
|
@@ -234,13 +234,13 @@
|
|
|
234
234
|
},
|
|
235
235
|
{
|
|
236
236
|
"name": "data",
|
|
237
|
-
"type": "
|
|
237
|
+
"type": "ServiceParams",
|
|
238
238
|
"required": true,
|
|
239
239
|
"description": ""
|
|
240
240
|
}
|
|
241
241
|
],
|
|
242
242
|
"responseShape": {
|
|
243
|
-
"item": "
|
|
243
|
+
"item": "EntityRow | null"
|
|
244
244
|
}
|
|
245
245
|
},
|
|
246
246
|
{
|
|
@@ -285,7 +285,7 @@
|
|
|
285
285
|
},
|
|
286
286
|
{
|
|
287
287
|
"name": "payload",
|
|
288
|
-
"type": "
|
|
288
|
+
"type": "ServiceParams",
|
|
289
289
|
"required": false,
|
|
290
290
|
"description": ""
|
|
291
291
|
}
|
|
@@ -429,7 +429,7 @@
|
|
|
429
429
|
}
|
|
430
430
|
],
|
|
431
431
|
"responseShape": {
|
|
432
|
-
"session": "
|
|
432
|
+
"session": "EventPayload | null"
|
|
433
433
|
}
|
|
434
434
|
},
|
|
435
435
|
{
|
|
@@ -483,7 +483,7 @@
|
|
|
483
483
|
}
|
|
484
484
|
],
|
|
485
485
|
"responseShape": {
|
|
486
|
-
"preferences": "
|
|
486
|
+
"preferences": "EventPayload | null"
|
|
487
487
|
}
|
|
488
488
|
},
|
|
489
489
|
{
|
|
@@ -498,7 +498,7 @@
|
|
|
498
498
|
},
|
|
499
499
|
{
|
|
500
500
|
"name": "preferences",
|
|
501
|
-
"type": "
|
|
501
|
+
"type": "ServiceParams",
|
|
502
502
|
"required": true,
|
|
503
503
|
"description": ""
|
|
504
504
|
}
|
|
@@ -594,7 +594,7 @@
|
|
|
594
594
|
},
|
|
595
595
|
{
|
|
596
596
|
"name": "context",
|
|
597
|
-
"type": "
|
|
597
|
+
"type": "ServiceParams",
|
|
598
598
|
"required": false,
|
|
599
599
|
"description": ""
|
|
600
600
|
}
|
|
@@ -602,7 +602,7 @@
|
|
|
602
602
|
"responseShape": {
|
|
603
603
|
"response": "string",
|
|
604
604
|
"threadId": "string",
|
|
605
|
-
"toolCalls": "
|
|
605
|
+
"toolCalls": "readonly EventPayloadValue[]"
|
|
606
606
|
}
|
|
607
607
|
},
|
|
608
608
|
{
|
|
@@ -887,108 +887,6 @@
|
|
|
887
887
|
"body": "string",
|
|
888
888
|
"state": "string"
|
|
889
889
|
}
|
|
890
|
-
},
|
|
891
|
-
{
|
|
892
|
-
"name": "getFile",
|
|
893
|
-
"description": "Read a file from a repository at a given ref",
|
|
894
|
-
"params": [
|
|
895
|
-
{
|
|
896
|
-
"name": "owner",
|
|
897
|
-
"type": "string",
|
|
898
|
-
"required": true,
|
|
899
|
-
"description": "Repository owner"
|
|
900
|
-
},
|
|
901
|
-
{
|
|
902
|
-
"name": "repo",
|
|
903
|
-
"type": "string",
|
|
904
|
-
"required": true,
|
|
905
|
-
"description": "Repository name"
|
|
906
|
-
},
|
|
907
|
-
{
|
|
908
|
-
"name": "path",
|
|
909
|
-
"type": "string",
|
|
910
|
-
"required": true,
|
|
911
|
-
"description": "Path to file within the repo"
|
|
912
|
-
},
|
|
913
|
-
{
|
|
914
|
-
"name": "ref",
|
|
915
|
-
"type": "string",
|
|
916
|
-
"required": false,
|
|
917
|
-
"description": "Branch, tag, or commit SHA"
|
|
918
|
-
}
|
|
919
|
-
],
|
|
920
|
-
"responseShape": {
|
|
921
|
-
"id": "string",
|
|
922
|
-
"result": "object"
|
|
923
|
-
}
|
|
924
|
-
},
|
|
925
|
-
{
|
|
926
|
-
"name": "listCommits",
|
|
927
|
-
"description": "List commits on a branch or path",
|
|
928
|
-
"params": [
|
|
929
|
-
{
|
|
930
|
-
"name": "owner",
|
|
931
|
-
"type": "string",
|
|
932
|
-
"required": true,
|
|
933
|
-
"description": "Repository owner"
|
|
934
|
-
},
|
|
935
|
-
{
|
|
936
|
-
"name": "repo",
|
|
937
|
-
"type": "string",
|
|
938
|
-
"required": true,
|
|
939
|
-
"description": "Repository name"
|
|
940
|
-
},
|
|
941
|
-
{
|
|
942
|
-
"name": "path",
|
|
943
|
-
"type": "string",
|
|
944
|
-
"required": false,
|
|
945
|
-
"description": "Restrict to commits touching this path"
|
|
946
|
-
},
|
|
947
|
-
{
|
|
948
|
-
"name": "ref",
|
|
949
|
-
"type": "string",
|
|
950
|
-
"required": false,
|
|
951
|
-
"description": "Branch or tag"
|
|
952
|
-
}
|
|
953
|
-
],
|
|
954
|
-
"responseShape": {
|
|
955
|
-
"id": "string",
|
|
956
|
-
"result": "object"
|
|
957
|
-
}
|
|
958
|
-
},
|
|
959
|
-
{
|
|
960
|
-
"name": "createIssue",
|
|
961
|
-
"description": "Create a new issue",
|
|
962
|
-
"params": [
|
|
963
|
-
{
|
|
964
|
-
"name": "owner",
|
|
965
|
-
"type": "string",
|
|
966
|
-
"required": true,
|
|
967
|
-
"description": "Repository owner"
|
|
968
|
-
},
|
|
969
|
-
{
|
|
970
|
-
"name": "repo",
|
|
971
|
-
"type": "string",
|
|
972
|
-
"required": true,
|
|
973
|
-
"description": "Repository name"
|
|
974
|
-
},
|
|
975
|
-
{
|
|
976
|
-
"name": "path",
|
|
977
|
-
"type": "string",
|
|
978
|
-
"required": false,
|
|
979
|
-
"description": "Reserved for op uniformity"
|
|
980
|
-
},
|
|
981
|
-
{
|
|
982
|
-
"name": "ref",
|
|
983
|
-
"type": "string",
|
|
984
|
-
"required": false,
|
|
985
|
-
"description": "Reserved for op uniformity"
|
|
986
|
-
}
|
|
987
|
-
],
|
|
988
|
-
"responseShape": {
|
|
989
|
-
"id": "string",
|
|
990
|
-
"result": "object"
|
|
991
|
-
}
|
|
992
890
|
}
|
|
993
891
|
],
|
|
994
892
|
"credentials": [
|
|
@@ -1186,7 +1084,7 @@
|
|
|
1186
1084
|
},
|
|
1187
1085
|
{
|
|
1188
1086
|
"name": "schema",
|
|
1189
|
-
"type": "
|
|
1087
|
+
"type": "IntegrationParams",
|
|
1190
1088
|
"required": true,
|
|
1191
1089
|
"description": ""
|
|
1192
1090
|
},
|
|
@@ -1685,7 +1583,7 @@
|
|
|
1685
1583
|
},
|
|
1686
1584
|
{
|
|
1687
1585
|
"name": "content",
|
|
1688
|
-
"type": "
|
|
1586
|
+
"type": "string",
|
|
1689
1587
|
"required": true,
|
|
1690
1588
|
"description": ""
|
|
1691
1589
|
},
|
|
@@ -1697,7 +1595,7 @@
|
|
|
1697
1595
|
},
|
|
1698
1596
|
{
|
|
1699
1597
|
"name": "metadata",
|
|
1700
|
-
"type": "
|
|
1598
|
+
"type": "IntegrationParams",
|
|
1701
1599
|
"required": false,
|
|
1702
1600
|
"description": ""
|
|
1703
1601
|
}
|
|
@@ -1727,10 +1625,10 @@
|
|
|
1727
1625
|
}
|
|
1728
1626
|
],
|
|
1729
1627
|
"responseShape": {
|
|
1730
|
-
"content": "
|
|
1628
|
+
"content": "string",
|
|
1731
1629
|
"contentType": "string",
|
|
1732
1630
|
"size": "number",
|
|
1733
|
-
"metadata": "
|
|
1631
|
+
"metadata": "IntegrationParams"
|
|
1734
1632
|
}
|
|
1735
1633
|
},
|
|
1736
1634
|
{
|
|
@@ -1848,7 +1746,7 @@
|
|
|
1848
1746
|
},
|
|
1849
1747
|
{
|
|
1850
1748
|
"name": "payload",
|
|
1851
|
-
"type": "
|
|
1749
|
+
"type": "ServiceParams",
|
|
1852
1750
|
"required": true,
|
|
1853
1751
|
"description": ""
|
|
1854
1752
|
},
|
|
@@ -1913,7 +1811,7 @@
|
|
|
1913
1811
|
},
|
|
1914
1812
|
{
|
|
1915
1813
|
"name": "result",
|
|
1916
|
-
"type": "
|
|
1814
|
+
"type": "ServiceParams",
|
|
1917
1815
|
"required": false,
|
|
1918
1816
|
"description": ""
|
|
1919
1817
|
}
|
|
@@ -2002,7 +1900,7 @@
|
|
|
2002
1900
|
}
|
|
2003
1901
|
],
|
|
2004
1902
|
"responseShape": {
|
|
2005
|
-
"value": "
|
|
1903
|
+
"value": "ServiceParams"
|
|
2006
1904
|
}
|
|
2007
1905
|
},
|
|
2008
1906
|
{
|
|
@@ -2017,7 +1915,7 @@
|
|
|
2017
1915
|
},
|
|
2018
1916
|
{
|
|
2019
1917
|
"name": "value",
|
|
2020
|
-
"type": "
|
|
1918
|
+
"type": "ServiceParams",
|
|
2021
1919
|
"required": true,
|
|
2022
1920
|
"description": ""
|
|
2023
1921
|
},
|
|
@@ -2144,7 +2042,7 @@
|
|
|
2144
2042
|
},
|
|
2145
2043
|
{
|
|
2146
2044
|
"name": "message",
|
|
2147
|
-
"type": "
|
|
2045
|
+
"type": "ServiceParams",
|
|
2148
2046
|
"required": true,
|
|
2149
2047
|
"description": ""
|
|
2150
2048
|
}
|
|
@@ -2321,7 +2219,7 @@
|
|
|
2321
2219
|
},
|
|
2322
2220
|
{
|
|
2323
2221
|
"name": "attributes",
|
|
2324
|
-
"type": "
|
|
2222
|
+
"type": "IntegrationParams",
|
|
2325
2223
|
"required": false,
|
|
2326
2224
|
"description": ""
|
|
2327
2225
|
},
|
|
@@ -2376,7 +2274,7 @@
|
|
|
2376
2274
|
},
|
|
2377
2275
|
{
|
|
2378
2276
|
"name": "attributes",
|
|
2379
|
-
"type": "
|
|
2277
|
+
"type": "IntegrationParams",
|
|
2380
2278
|
"required": false,
|
|
2381
2279
|
"description": ""
|
|
2382
2280
|
}
|
|
@@ -2409,7 +2307,7 @@
|
|
|
2409
2307
|
},
|
|
2410
2308
|
{
|
|
2411
2309
|
"name": "labels",
|
|
2412
|
-
"type": "
|
|
2310
|
+
"type": "IntegrationParams",
|
|
2413
2311
|
"required": false,
|
|
2414
2312
|
"description": ""
|
|
2415
2313
|
}
|
|
@@ -2508,7 +2406,7 @@
|
|
|
2508
2406
|
},
|
|
2509
2407
|
{
|
|
2510
2408
|
"name": "context",
|
|
2511
|
-
"type": "
|
|
2409
|
+
"type": "IntegrationParams",
|
|
2512
2410
|
"required": false,
|
|
2513
2411
|
"description": ""
|
|
2514
2412
|
}
|