@metaplex-foundation/mpl-core
Advanced tools
Comparing version 1.0.0-alpha.4 to 1.0.0-alpha.5
@@ -5,7 +5,8 @@ import { Context } from '@metaplex-foundation/umi'; | ||
import { ExternalPluginAdapterInitInfoArgs } from '../../plugins/externalPluginAdapters'; | ||
export type AddCollectionPluginArgsPlugin = Exclude<CollectionAddablePluginAuthorityPairArgsV2, { | ||
type: 'Edition '; | ||
}> | ExternalPluginAdapterInitInfoArgs; | ||
export type AddCollectionPluginArgs = Omit<Parameters<typeof addCollectionPluginV1>[1], 'plugin' | 'initAuthority'> & { | ||
plugin: Exclude<CollectionAddablePluginAuthorityPairArgsV2, { | ||
type: 'Edition '; | ||
}> | ExternalPluginAdapterInitInfoArgs; | ||
plugin: AddCollectionPluginArgsPlugin; | ||
}; | ||
export declare const addCollectionPlugin: (context: Pick<Context, 'payer' | 'programs' | 'eddsa' | 'identity'>, { plugin, ...args }: AddCollectionPluginArgs) => import("@metaplex-foundation/umi").TransactionBuilder; |
@@ -5,5 +5,6 @@ import { Context } from '@metaplex-foundation/umi'; | ||
import { ExternalPluginAdapterInitInfoArgs } from '../../plugins/externalPluginAdapters'; | ||
export type CreateCollectionArgsPlugin = CollectionPluginAuthorityPairArgsV2 | ExternalPluginAdapterInitInfoArgs; | ||
export type CreateCollectionArgs = Omit<Parameters<typeof createCollectionV2>[1], 'plugins' | 'externalPluginAdapters'> & { | ||
plugins?: (CollectionPluginAuthorityPairArgsV2 | ExternalPluginAdapterInitInfoArgs)[]; | ||
plugins?: CreateCollectionArgsPlugin[]; | ||
}; | ||
export declare const createCollection: (context: Pick<Context, 'payer' | 'programs' | 'eddsa' | 'identity'>, { plugins, ...args }: CreateCollectionArgs) => import("@metaplex-foundation/umi").TransactionBuilder; |
import { Context } from '@metaplex-foundation/umi'; | ||
import { PluginType, removeCollectionPluginV1 } from '../../generated'; | ||
import { ExternalPluginAdapterKey } from '../../plugins'; | ||
export type RemoveCollectionPluginArgsPlugin = { | ||
type: Exclude<keyof typeof PluginType, 'Edition'>; | ||
} | ExternalPluginAdapterKey; | ||
export type RemoveCollectionPluginArgs = Omit<Parameters<typeof removeCollectionPluginV1>[1], 'plugin' | 'pluginType'> & { | ||
plugin: { | ||
type: Exclude<keyof typeof PluginType, 'Edition'>; | ||
} | ExternalPluginAdapterKey; | ||
plugin: RemoveCollectionPluginArgsPlugin; | ||
}; | ||
export declare const removeCollectionPlugin: (context: Pick<Context, 'payer' | 'programs' | 'eddsa' | 'identity'>, { plugin, ...args }: RemoveCollectionPluginArgs) => import("@metaplex-foundation/umi").TransactionBuilder; |
@@ -5,5 +5,6 @@ import { Context } from '@metaplex-foundation/umi'; | ||
import { ExternalPluginAdapterUpdateInfoArgs } from '../../plugins/externalPluginAdapters'; | ||
export type UpdateCollectionPluginArgsPlugin = CollectionAllPluginArgsV2 | ExternalPluginAdapterUpdateInfoArgs; | ||
export type UpdateCollectionPluginArgs = Omit<Parameters<typeof updateCollectionPluginV1>[1], 'plugin'> & { | ||
plugin: CollectionAllPluginArgsV2 | ExternalPluginAdapterUpdateInfoArgs; | ||
plugin: UpdateCollectionPluginArgsPlugin; | ||
}; | ||
export declare const updateCollectionPlugin: (context: Pick<Context, 'payer' | 'programs' | 'identity'>, { plugin, ...args }: UpdateCollectionPluginArgs) => import("@metaplex-foundation/umi").TransactionBuilder; |
{ | ||
"name": "@metaplex-foundation/mpl-core", | ||
"version": "1.0.0-alpha.4", | ||
"version": "1.0.0-alpha.5", | ||
"description": "Digital Assets", | ||
@@ -5,0 +5,0 @@ "main": "dist/src/index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
707545
11347