@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.
@@ -88,6 +88,7 @@ export interface ListPaginate {
88
88
  }
89
89
  export interface ListParams {
90
90
  order: [] | [ListOrder];
91
+ owner: [] | [Principal];
91
92
  matcher: [] | [string];
92
93
  paginate: [] | [ListPaginate];
93
94
  }
@@ -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
  };
@@ -74,6 +74,7 @@ export const idlFactory = ({IDL}) => {
74
74
  });
75
75
  const ListParams = IDL.Record({
76
76
  order: IDL.Opt(ListOrder),
77
+ owner: IDL.Opt(IDL.Principal),
77
78
  matcher: IDL.Opt(IDL.Text),
78
79
  paginate: IDL.Opt(ListPaginate)
79
80
  });