Skip to content

Commit

Permalink
Bump http package version
Browse files Browse the repository at this point in the history
  • Loading branch information
emostov committed Sep 1, 2023
1 parent 1e0b53a commit 98b6dd4
Show file tree
Hide file tree
Showing 14 changed files with 129 additions and 19 deletions.
3 changes: 2 additions & 1 deletion examples/with-federated-passkeys/src/pages/api/subOrg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default async function createUser(

try {
const createSubOrgActivity = await activityPoller({
type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V2",
type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V3",
timestampMs: String(Date.now()),
organizationId: process.env.NEXT_PUBLIC_ORGANIZATION_ID!,
parameters: {
Expand All @@ -62,6 +62,7 @@ export default async function createUser(
],
},
],
privateKeys: [],
},
});

Expand Down
3 changes: 2 additions & 1 deletion examples/with-viem-and-passkeys/src/pages/api/subOrg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default async function createUser(
});

const completedActivity = await activityPoller({
type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V2",
type: "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V3",
timestampMs: String(Date.now()),
organizationId: process.env.NEXT_PUBLIC_ORGANIZATION_ID!,
parameters: {
Expand All @@ -59,6 +59,7 @@ export default async function createUser(
],
},
],
privateKeys: [],
},
});

Expand Down
7 changes: 7 additions & 0 deletions packages/cosmjs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @turnkey/cosmjs

## 0.4.8

### Patch Changes

- Updated dependencies
- @turnkey/http@1.2.0

## 0.4.7

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cosmjs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turnkey/cosmjs",
"version": "0.4.7",
"version": "0.4.8",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "Apache-2.0",
Expand Down
7 changes: 7 additions & 0 deletions packages/ethers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @turnkey/ethers

## 0.16.8

### Patch Changes

- Updated dependencies
- @turnkey/http@1.2.0

## 0.16.7

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ethers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turnkey/ethers",
"version": "0.16.7",
"version": "0.16.8",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "Apache-2.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @turnkey/http

## 1.2.0

### Minor Changes

- The return type for `createSubOrganization` has been updated to include a `privateKeys` field to reflect that it now calls createSubOrganizationV3

## 1.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/http/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turnkey/http",
"version": "1.1.1",
"version": "1.2.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "Apache-2.0",
Expand Down

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

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

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

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

7 changes: 7 additions & 0 deletions packages/viem/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @turnkey/viem

## 0.2.3

### Patch Changes

- Updated dependencies
- @turnkey/http@1.2.0

## 0.2.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/viem/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turnkey/viem",
"version": "0.2.2",
"version": "0.2.3",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "Apache-2.0",
Expand Down

0 comments on commit 98b6dd4

Please sign in to comment.