Skip to content

Commit

Permalink
Merge pull request #1 from senecajs/lc-remove-template-labels
Browse files Browse the repository at this point in the history
Create initial provider version
  • Loading branch information
rjrodger authored Dec 4, 2024
2 parents 0d0db5b + f6fa6c4 commit 1779645
Show file tree
Hide file tree
Showing 15 changed files with 512 additions and 289 deletions.
6 changes: 6 additions & 0 deletions dist/TilloProvider-doc.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
declare const docs: {
get_info: {
desc: string;
};
};
export default docs;
13 changes: 13 additions & 0 deletions dist/TilloProvider-doc.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/TilloProvider-doc.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions dist/tillo-provider.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
type TilloProviderOptions = {
url: string;
fetch: any;
entity: Record<string, any>;
debug: boolean;
};
declare function TilloProvider(this: any, options: TilloProviderOptions): {
exports: {};
};
export default TilloProvider;
149 changes: 149 additions & 0 deletions dist/tillo-provider.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/tillo-provider.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"name": "@seneca/tangocard-provider",
"name": "@seneca/tillo-provider",
"version": "1.0.0",
"main": "dist/tangocard-provider.js",
"main": "dist/tillo-provider.js",
"type": "commonjs",
"types": "dist/tangocard-provider.d.ts",
"description": "Seneca entity provider for the Tangocard API.",
"homepage": "https://github.com/senecajs/seneca-tangocard-provider",
"types": "dist/tillo-provider.d.ts",
"description": "Seneca entity provider for the Tillocard API.",
"homepage": "https://github.com/senecajs/seneca-tillo-provider",
"keywords": [
"seneca",
"tangocard",
"tangocard-provider"
"tillo",
"tillo-provider"
],
"author": "Richard Rodger - richardrodger.com",
"repository": {
"type": "git",
"url": "git://github.com/senecajs/seneca-tangocard-provider.git"
"url": "git://github.com/senecajs/seneca-tillo-provider.git"
},
"scripts": {
"test": "jest --coverage",
Expand Down Expand Up @@ -44,7 +44,7 @@
"peerDependencies": {
"@seneca/env": ">=0.2",
"@seneca/provider": ">=1.0",
"seneca": ">=3",
"seneca": ">=3||>=4.0.0-rc2",
"seneca-entity": ">=19",
"seneca-promisify": ">=3"
},
Expand Down
2 changes: 1 addition & 1 deletion src/TangocardProvider-doc.ts → src/TilloProvider-doc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
const docs = {

get_info: {
desc: 'Get information about the Tangocard SDK.',
desc: 'Get information about the Tillo SDK.',
},

}
Expand Down
Loading

0 comments on commit 1779645

Please sign in to comment.