Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
76330a2
feat(ts): use Module transpile prop to attach manual code (box/box-co…
box-sdk-build Nov 7, 2024
0d287c3
chore: add codegen diff job (box/box-codegen#598)
box-sdk-build Nov 13, 2024
5e8bc11
test: Improve tests for `search` and `sign request` managers (box/box…
box-sdk-build Nov 14, 2024
457d235
chore: Update .codegen.json with commit hash of codegen and openapi spec
box-sdk-build Nov 14, 2024
90086e6
chore: Update .codegen.json with commit hash of codegen and openapi spec
box-sdk-build Nov 14, 2024
c30dc5f
fix: Support status codes with no content (box/box-codegen#604)
box-sdk-build Nov 15, 2024
fdb8680
Auto resolve conflict by keeping our changes
Nov 15, 2024
b94c087
chore: Adding support for changelog spellcheck (box/box-codegen#602)
box-sdk-build Nov 15, 2024
6a67ba0
docs: Update collaboration resource (box/box-openapi#483)
box-sdk-build Nov 18, 2024
d0a7e0b
feat: Include `rawData` to Java serialisable objects (box/box-codegen…
box-sdk-build Nov 19, 2024
1a2152f
Auto resolve conflict by keeping our changes
Nov 19, 2024
532f541
Auto resolve conflict by keeping our changes
Nov 20, 2024
73ecd02
fix: fix upload for streaming bodies by adding duplex member to fetch…
box-sdk-build Nov 20, 2024
74630ba
chore: Update .codegen.json with commit hash of codegen and openapi spec
box-sdk-build Nov 20, 2024
955662d
chore: Update .codegen.json with commit hash of codegen and openapi spec
box-sdk-build Nov 20, 2024
555dfb5
Auto resolve conflict by keeping our changes
Nov 20, 2024
700dcb8
Auto resolve conflict by keeping our changes
Nov 20, 2024
007dbd2
test: fix collection test (box/box-codegen#614)
box-sdk-build Nov 21, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .codegen.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{ "engineHash": "6941b33", "specHash": "6d5f53e", "version": "1.7.0" }
{ "engineHash": "cb62e1c", "specHash": "6d5f53e", "version": "1.7.0" }
6 changes: 3 additions & 3 deletions package-lock.json

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

10 changes: 2 additions & 8 deletions src/test/collections.generated.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,7 @@ test('testCollections', async function testCollections(): Promise<any> {
const collectionItemsAfterUpdate: ItemsOffsetPaginated =
await client.collections.getCollectionItems(favouriteCollection.id!);
if (
!(
collectionItemsAfterUpdate.entries!.length ==
collectionItems.entries!.length + 1
)
!(collectionItemsAfterUpdate.totalCount! == collectionItems.totalCount! + 1)
) {
throw new Error('Assertion failed');
}
Expand All @@ -80,10 +77,7 @@ test('testCollections', async function testCollections(): Promise<any> {
const collectionItemsAfterRemove: ItemsOffsetPaginated =
await client.collections.getCollectionItems(favouriteCollection.id!);
if (
!(
collectionItemsAfterRemove.entries!.length ==
collectionItems.entries!.length
)
!(collectionItemsAfterRemove.totalCount! == collectionItems.totalCount!)
) {
throw new Error('Assertion failed');
}
Expand Down
Loading