@junobuild/admin 0.0.9 → 0.0.11
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/browser/index.js +16 -16
- package/dist/browser/index.js.map +4 -4
- package/dist/declarations/satellite/satellite.did.d.ts +1 -0
- package/dist/declarations/satellite/satellite.factory.did.js +3 -0
- package/dist/declarations/satellite/satellite.factory.did.mjs +1 -0
- package/dist/node/index.mjs +21 -21
- package/dist/node/index.mjs.map +4 -4
- package/dist/types/api/mission-control.api.d.ts +12 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/services/mission-control.services.d.ts +9 -0
- package/dist/types/services/satellite.services.d.ts +1 -1
- package/dist/types/types/controllers.types.d.ts +4 -0
- package/dist/types/utils/controllers.utils.d.ts +7 -0
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
// @ts-ignore
|
|
1
2
|
export const idlFactory = ({IDL}) => {
|
|
2
3
|
const CommitBatch = IDL.Record({
|
|
3
4
|
batch_id: IDL.Nat,
|
|
@@ -74,6 +75,7 @@ export const idlFactory = ({IDL}) => {
|
|
|
74
75
|
});
|
|
75
76
|
const ListParams = IDL.Record({
|
|
76
77
|
order: IDL.Opt(ListOrder),
|
|
78
|
+
owner: IDL.Opt(IDL.Principal),
|
|
77
79
|
matcher: IDL.Opt(IDL.Text),
|
|
78
80
|
paginate: IDL.Opt(ListPaginate)
|
|
79
81
|
});
|
|
@@ -186,6 +188,7 @@ export const idlFactory = ({IDL}) => {
|
|
|
186
188
|
version: IDL.Func([], [IDL.Text], ['query'])
|
|
187
189
|
});
|
|
188
190
|
};
|
|
191
|
+
// @ts-ignore
|
|
189
192
|
export const init = ({IDL}) => {
|
|
190
193
|
return [];
|
|
191
194
|
};
|