Skip to content

Commit

Permalink
update declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
ZenVoich committed Aug 24, 2023
1 parent 55f88d7 commit 94a445b
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 20 deletions.
2 changes: 0 additions & 2 deletions cli/declarations/main/main.did
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ type PackageSummary__1 =
owner: principal;
ownerInfo: User;
publication: PackagePublication;
testStats: TestStats__1;
};
type PackageSummary =
record {
Expand All @@ -121,7 +120,6 @@ type PackageSummary =
owner: principal;
ownerInfo: User;
publication: PackagePublication;
testStats: TestStats__1;
};
type PackagePublication =
record {
Expand Down
2 changes: 0 additions & 2 deletions cli/declarations/main/main.did.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ export interface PackagePublication {
export interface PackageSummary {
'ownerInfo' : User,
'owner' : Principal,
'testStats' : TestStats__1,
'downloadsTotal' : bigint,
'downloadsInLast30Days' : bigint,
'downloadsInLast7Days' : bigint,
Expand All @@ -90,7 +89,6 @@ export interface PackageSummary {
export interface PackageSummary__1 {
'ownerInfo' : User,
'owner' : Principal,
'testStats' : TestStats__1,
'downloadsTotal' : bigint,
'downloadsInLast30Days' : bigint,
'downloadsInLast7Days' : bigint,
Expand Down
10 changes: 4 additions & 6 deletions cli/declarations/main/main.did.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,6 @@ export const idlFactory = ({ IDL }) => {
'githubVerified' : IDL.Bool,
'github' : IDL.Text,
});
const TestStats__1 = IDL.Record({
'passedNames' : IDL.Vec(IDL.Text),
'passed' : IDL.Nat,
});
const Script = IDL.Record({ 'value' : IDL.Text, 'name' : IDL.Text });
const PackageName = IDL.Text;
const DependencyV2 = IDL.Record({
Expand Down Expand Up @@ -73,7 +69,6 @@ export const idlFactory = ({ IDL }) => {
const PackageSummary = IDL.Record({
'ownerInfo' : User,
'owner' : IDL.Principal,
'testStats' : TestStats__1,
'downloadsTotal' : IDL.Nat,
'downloadsInLast30Days' : IDL.Nat,
'downloadsInLast7Days' : IDL.Nat,
Expand All @@ -83,13 +78,16 @@ export const idlFactory = ({ IDL }) => {
const PackageSummary__1 = IDL.Record({
'ownerInfo' : User,
'owner' : IDL.Principal,
'testStats' : TestStats__1,
'downloadsTotal' : IDL.Nat,
'downloadsInLast30Days' : IDL.Nat,
'downloadsInLast7Days' : IDL.Nat,
'config' : PackageConfigV2__1,
'publication' : PackagePublication,
});
const TestStats__1 = IDL.Record({
'passedNames' : IDL.Vec(IDL.Text),
'passed' : IDL.Nat,
});
const DownloadsSnapshot = IDL.Record({
'startTime' : Time,
'endTime' : Time,
Expand Down
2 changes: 0 additions & 2 deletions frontend/declarations/main/main.did
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ type PackageSummary__1 =
owner: principal;
ownerInfo: User;
publication: PackagePublication;
testStats: TestStats__1;
};
type PackageSummary =
record {
Expand All @@ -121,7 +120,6 @@ type PackageSummary =
owner: principal;
ownerInfo: User;
publication: PackagePublication;
testStats: TestStats__1;
};
type PackagePublication =
record {
Expand Down
2 changes: 0 additions & 2 deletions frontend/declarations/main/main.did.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ export interface PackagePublication {
export interface PackageSummary {
'ownerInfo' : User,
'owner' : Principal,
'testStats' : TestStats__1,
'downloadsTotal' : bigint,
'downloadsInLast30Days' : bigint,
'downloadsInLast7Days' : bigint,
Expand All @@ -90,7 +89,6 @@ export interface PackageSummary {
export interface PackageSummary__1 {
'ownerInfo' : User,
'owner' : Principal,
'testStats' : TestStats__1,
'downloadsTotal' : bigint,
'downloadsInLast30Days' : bigint,
'downloadsInLast7Days' : bigint,
Expand Down
10 changes: 4 additions & 6 deletions frontend/declarations/main/main.did.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,6 @@ export const idlFactory = ({ IDL }) => {
'githubVerified' : IDL.Bool,
'github' : IDL.Text,
});
const TestStats__1 = IDL.Record({
'passedNames' : IDL.Vec(IDL.Text),
'passed' : IDL.Nat,
});
const Script = IDL.Record({ 'value' : IDL.Text, 'name' : IDL.Text });
const PackageName = IDL.Text;
const DependencyV2 = IDL.Record({
Expand Down Expand Up @@ -73,7 +69,6 @@ export const idlFactory = ({ IDL }) => {
const PackageSummary = IDL.Record({
'ownerInfo' : User,
'owner' : IDL.Principal,
'testStats' : TestStats__1,
'downloadsTotal' : IDL.Nat,
'downloadsInLast30Days' : IDL.Nat,
'downloadsInLast7Days' : IDL.Nat,
Expand All @@ -83,13 +78,16 @@ export const idlFactory = ({ IDL }) => {
const PackageSummary__1 = IDL.Record({
'ownerInfo' : User,
'owner' : IDL.Principal,
'testStats' : TestStats__1,
'downloadsTotal' : IDL.Nat,
'downloadsInLast30Days' : IDL.Nat,
'downloadsInLast7Days' : IDL.Nat,
'config' : PackageConfigV2__1,
'publication' : PackagePublication,
});
const TestStats__1 = IDL.Record({
'passedNames' : IDL.Vec(IDL.Text),
'passed' : IDL.Nat,
});
const DownloadsSnapshot = IDL.Record({
'startTime' : Time,
'endTime' : Time,
Expand Down

0 comments on commit 94a445b

Please sign in to comment.