@contractspec/example.calendar-google 1.61.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +9 -9
- package/CHANGELOG.md +41 -6
- package/dist/browser/docs/calendar-google.docblock.js +1 -1
- package/dist/browser/docs/index.js +1 -1
- package/dist/browser/example.js +1 -1
- package/dist/browser/index.js +2 -2
- package/dist/docs/calendar-google.docblock.d.ts +0 -1
- package/dist/docs/calendar-google.docblock.js +1 -1
- package/dist/docs/index.d.ts +0 -1
- package/dist/docs/index.js +1 -1
- package/dist/example.d.ts +1 -2
- package/dist/example.js +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +2 -2
- package/dist/node/docs/calendar-google.docblock.js +1 -1
- package/dist/node/docs/index.js +1 -1
- package/dist/node/example.js +1 -1
- package/dist/node/index.js +2 -2
- package/dist/run.d.ts +0 -1
- package/dist/sync.d.ts +0 -1
- package/package.json +6 -6
- package/src/docs/calendar-google.docblock.ts +2 -2
- package/src/example.ts +1 -1
- package/dist/docs/calendar-google.docblock.d.ts.map +0 -1
- package/dist/docs/index.d.ts.map +0 -1
- package/dist/example.d.ts.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/run.d.ts.map +0 -1
- package/dist/sync.d.ts.map +0 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -3,32 +3,32 @@ $ bun run prebuild && bun run build:bundle && bun run build:types
|
|
|
3
3
|
$ contractspec-bun-build prebuild
|
|
4
4
|
$ contractspec-bun-build transpile
|
|
5
5
|
[contractspec-bun-build] transpile target=bun root=src entries=6
|
|
6
|
-
Bundled 6 modules in
|
|
6
|
+
Bundled 6 modules in 34ms
|
|
7
7
|
|
|
8
8
|
docs/calendar-google.docblock.js 1.63 KB (entry point)
|
|
9
|
-
./index.js 5.
|
|
9
|
+
./index.js 5.65 KB (entry point)
|
|
10
10
|
docs/index.js 1.63 KB (entry point)
|
|
11
|
-
./example.js 0.
|
|
11
|
+
./example.js 0.97 KB (entry point)
|
|
12
12
|
./run.js 3.15 KB (entry point)
|
|
13
13
|
./sync.js 3.1 KB (entry point)
|
|
14
14
|
|
|
15
15
|
[contractspec-bun-build] transpile target=node root=src entries=6
|
|
16
|
-
Bundled 6 modules in
|
|
16
|
+
Bundled 6 modules in 33ms
|
|
17
17
|
|
|
18
18
|
docs/calendar-google.docblock.js 1.62 KB (entry point)
|
|
19
|
-
./index.js 5.
|
|
19
|
+
./index.js 5.64 KB (entry point)
|
|
20
20
|
docs/index.js 1.62 KB (entry point)
|
|
21
|
-
./example.js 0.
|
|
21
|
+
./example.js 0.96 KB (entry point)
|
|
22
22
|
./run.js 3.15 KB (entry point)
|
|
23
23
|
./sync.js 3.1 KB (entry point)
|
|
24
24
|
|
|
25
25
|
[contractspec-bun-build] transpile target=browser root=src entries=6
|
|
26
|
-
Bundled 6 modules in
|
|
26
|
+
Bundled 6 modules in 17ms
|
|
27
27
|
|
|
28
28
|
docs/calendar-google.docblock.js 1.62 KB (entry point)
|
|
29
|
-
./index.js 5.
|
|
29
|
+
./index.js 5.64 KB (entry point)
|
|
30
30
|
docs/index.js 1.62 KB (entry point)
|
|
31
|
-
./example.js 0.
|
|
31
|
+
./example.js 0.96 KB (entry point)
|
|
32
32
|
./run.js 3.15 KB (entry point)
|
|
33
33
|
./sync.js 3.1 KB (entry point)
|
|
34
34
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# @contractspec/example.calendar-google
|
|
2
2
|
|
|
3
|
+
## 2.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- a09bafc: feat: optimize performance
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 7f3203a: fix: make workspace test runs resilient when packages have no tests
|
|
12
|
+
|
|
13
|
+
Updates package test scripts to pass cleanly when no matching test files exist:
|
|
14
|
+
- Uses `bun test --pass-with-no-tests` in Bun-based packages that currently ship without test files.
|
|
15
|
+
- Uses `jest --passWithNoTests` for the UI kit web package.
|
|
16
|
+
- Adds `.vscode-test.mjs` for `vscode-contractspec` so VS Code extension test runs have an explicit config and stop failing on missing default configuration.
|
|
17
|
+
|
|
18
|
+
This keeps `turbo run test` deterministic across the monorepo while preserving existing test execution behavior where tests are present.
|
|
19
|
+
|
|
20
|
+
- Updated dependencies [a09bafc]
|
|
21
|
+
- Updated dependencies [f152678]
|
|
22
|
+
- @contractspec/integration.providers-impls@2.0.0
|
|
23
|
+
- @contractspec/lib.contracts-spec@2.0.0
|
|
24
|
+
|
|
25
|
+
## 1.62.0
|
|
26
|
+
|
|
27
|
+
### Minor Changes
|
|
28
|
+
|
|
29
|
+
- 064258d: feat: upgrade all dependencies
|
|
30
|
+
|
|
31
|
+
### Patch Changes
|
|
32
|
+
|
|
33
|
+
- Updated dependencies [064258d]
|
|
34
|
+
- Updated dependencies [064258d]
|
|
35
|
+
- @contractspec/integration.providers-impls@1.62.0
|
|
36
|
+
- @contractspec/lib.contracts@1.62.0
|
|
37
|
+
|
|
3
38
|
## 1.61.0
|
|
4
39
|
|
|
5
40
|
### Minor Changes
|
|
@@ -10,7 +45,7 @@
|
|
|
10
45
|
|
|
11
46
|
- Updated dependencies [374fd71]
|
|
12
47
|
- @contractspec/integration.providers-impls@1.61.0
|
|
13
|
-
- @contractspec/lib.contracts@1.61.0
|
|
48
|
+
- @contractspec/lib.contracts-spec@1.61.0
|
|
14
49
|
|
|
15
50
|
## 1.60.0
|
|
16
51
|
|
|
@@ -22,7 +57,7 @@
|
|
|
22
57
|
|
|
23
58
|
- Updated dependencies
|
|
24
59
|
- @contractspec/integration.providers-impls@1.60.0
|
|
25
|
-
- @contractspec/lib.contracts@1.60.0
|
|
60
|
+
- @contractspec/lib.contracts-spec@1.60.0
|
|
26
61
|
|
|
27
62
|
## 1.59.0
|
|
28
63
|
|
|
@@ -34,7 +69,7 @@
|
|
|
34
69
|
|
|
35
70
|
- Updated dependencies [1a0cf44]
|
|
36
71
|
- @contractspec/integration.providers-impls@1.59.0
|
|
37
|
-
- @contractspec/lib.contracts@1.59.0
|
|
72
|
+
- @contractspec/lib.contracts-spec@1.59.0
|
|
38
73
|
|
|
39
74
|
## 1.58.0
|
|
40
75
|
|
|
@@ -47,7 +82,7 @@
|
|
|
47
82
|
- Updated dependencies [d1f0fd0]
|
|
48
83
|
- Updated dependencies [4355a9e]
|
|
49
84
|
- @contractspec/integration.providers-impls@1.58.0
|
|
50
|
-
- @contractspec/lib.contracts@1.58.0
|
|
85
|
+
- @contractspec/lib.contracts-spec@1.58.0
|
|
51
86
|
|
|
52
87
|
## 1.57.0
|
|
53
88
|
|
|
@@ -65,7 +100,7 @@
|
|
|
65
100
|
- Updated dependencies [4651e06]
|
|
66
101
|
- Updated dependencies [ad9d10a]
|
|
67
102
|
- Updated dependencies [11a5a05]
|
|
68
|
-
- @contractspec/lib.contracts@1.57.0
|
|
103
|
+
- @contractspec/lib.contracts-spec@1.57.0
|
|
69
104
|
- @contractspec/integration.providers-impls@1.57.0
|
|
70
105
|
|
|
71
106
|
## 1.56.1
|
|
@@ -78,4 +113,4 @@
|
|
|
78
113
|
|
|
79
114
|
- Updated dependencies
|
|
80
115
|
- @contractspec/integration.providers-impls@1.56.1
|
|
81
|
-
- @contractspec/lib.contracts@1.56.1
|
|
116
|
+
- @contractspec/lib.contracts-spec@1.56.1
|
package/dist/browser/example.js
CHANGED
package/dist/browser/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// src/docs/calendar-google.docblock.ts
|
|
2
|
-
import { registerDocBlocks } from "@contractspec/lib.contracts/docs";
|
|
2
|
+
import { registerDocBlocks } from "@contractspec/lib.contracts-spec/docs";
|
|
3
3
|
var blocks = [
|
|
4
4
|
{
|
|
5
5
|
id: "docs.examples.calendar-google",
|
|
@@ -44,7 +44,7 @@ var blocks = [
|
|
|
44
44
|
];
|
|
45
45
|
registerDocBlocks(blocks);
|
|
46
46
|
// src/example.ts
|
|
47
|
-
import { defineExample } from "@contractspec/lib.contracts";
|
|
47
|
+
import { defineExample } from "@contractspec/lib.contracts-spec";
|
|
48
48
|
var example = defineExample({
|
|
49
49
|
meta: {
|
|
50
50
|
key: "calendar-google",
|
package/dist/docs/index.d.ts
CHANGED
package/dist/docs/index.js
CHANGED
package/dist/example.d.ts
CHANGED
package/dist/example.js
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
// src/docs/calendar-google.docblock.ts
|
|
3
|
-
import { registerDocBlocks } from "@contractspec/lib.contracts/docs";
|
|
3
|
+
import { registerDocBlocks } from "@contractspec/lib.contracts-spec/docs";
|
|
4
4
|
var blocks = [
|
|
5
5
|
{
|
|
6
6
|
id: "docs.examples.calendar-google",
|
|
@@ -45,7 +45,7 @@ var blocks = [
|
|
|
45
45
|
];
|
|
46
46
|
registerDocBlocks(blocks);
|
|
47
47
|
// src/example.ts
|
|
48
|
-
import { defineExample } from "@contractspec/lib.contracts";
|
|
48
|
+
import { defineExample } from "@contractspec/lib.contracts-spec";
|
|
49
49
|
var example = defineExample({
|
|
50
50
|
meta: {
|
|
51
51
|
key: "calendar-google",
|
package/dist/node/docs/index.js
CHANGED
package/dist/node/example.js
CHANGED
package/dist/node/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// src/docs/calendar-google.docblock.ts
|
|
2
|
-
import { registerDocBlocks } from "@contractspec/lib.contracts/docs";
|
|
2
|
+
import { registerDocBlocks } from "@contractspec/lib.contracts-spec/docs";
|
|
3
3
|
var blocks = [
|
|
4
4
|
{
|
|
5
5
|
id: "docs.examples.calendar-google",
|
|
@@ -44,7 +44,7 @@ var blocks = [
|
|
|
44
44
|
];
|
|
45
45
|
registerDocBlocks(blocks);
|
|
46
46
|
// src/example.ts
|
|
47
|
-
import { defineExample } from "@contractspec/lib.contracts";
|
|
47
|
+
import { defineExample } from "@contractspec/lib.contracts-spec";
|
|
48
48
|
var example = defineExample({
|
|
49
49
|
meta: {
|
|
50
50
|
key: "calendar-google",
|
package/dist/run.d.ts
CHANGED
package/dist/sync.d.ts
CHANGED
|
@@ -7,4 +7,3 @@ export declare function runCalendarSyncFromEnv(): Promise<CalendarSyncOutput>;
|
|
|
7
7
|
export declare function buildSampleEvent(calendarId: string): CalendarEventInput;
|
|
8
8
|
export declare function buildUpcomingQuery(calendarId: string): CalendarListEventsQuery;
|
|
9
9
|
export declare function createProviderFromEnv(calendarId: string): CalendarProvider;
|
|
10
|
-
//# sourceMappingURL=sync.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.calendar-google",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Google Calendar integration example: list and create events.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -66,19 +66,19 @@
|
|
|
66
66
|
"lint": "bun lint:fix",
|
|
67
67
|
"lint:fix": "eslint src --fix",
|
|
68
68
|
"lint:check": "eslint src",
|
|
69
|
-
"test": "bun test",
|
|
69
|
+
"test": "bun test --pass-with-no-tests",
|
|
70
70
|
"prebuild": "contractspec-bun-build prebuild",
|
|
71
71
|
"typecheck": "tsc --noEmit"
|
|
72
72
|
},
|
|
73
73
|
"dependencies": {
|
|
74
|
-
"@contractspec/integration.providers-impls": "
|
|
75
|
-
"@contractspec/lib.contracts": "
|
|
74
|
+
"@contractspec/integration.providers-impls": "2.0.0",
|
|
75
|
+
"@contractspec/lib.contracts-spec": "2.0.0",
|
|
76
76
|
"googleapis": "^171.4.0"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
-
"@contractspec/tool.typescript": "
|
|
79
|
+
"@contractspec/tool.typescript": "2.0.0",
|
|
80
80
|
"typescript": "^5.9.3",
|
|
81
|
-
"@contractspec/tool.bun": "
|
|
81
|
+
"@contractspec/tool.bun": "2.0.0"
|
|
82
82
|
},
|
|
83
83
|
"publishConfig": {
|
|
84
84
|
"access": "public",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { DocBlock } from '@contractspec/lib.contracts/docs';
|
|
2
|
-
import { registerDocBlocks } from '@contractspec/lib.contracts/docs';
|
|
1
|
+
import type { DocBlock } from '@contractspec/lib.contracts-spec/docs';
|
|
2
|
+
import { registerDocBlocks } from '@contractspec/lib.contracts-spec/docs';
|
|
3
3
|
|
|
4
4
|
const blocks: DocBlock[] = [
|
|
5
5
|
{
|
package/src/example.ts
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"calendar-google.docblock.d.ts","sourceRoot":"","sources":["../../src/docs/calendar-google.docblock.ts"],"names":[],"mappings":""}
|
package/dist/docs/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/docs/index.ts"],"names":[],"mappings":"AAAA,OAAO,4BAA4B,CAAC"}
|
package/dist/example.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"example.d.ts","sourceRoot":"","sources":["../src/example.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,OAAO,mDA2BX,CAAC;AAEH,eAAe,OAAO,CAAC"}
|
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAC;AAC/C,OAAO,QAAQ,CAAC"}
|
package/dist/run.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"run.d.ts","sourceRoot":"","sources":["../src/run.ts"],"names":[],"mappings":""}
|
package/dist/sync.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"sync.d.ts","sourceRoot":"","sources":["../src/sync.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EACV,aAAa,EACb,kBAAkB,EAClB,uBAAuB,EACvB,gBAAgB,EACjB,MAAM,oDAAoD,CAAC;AAE5D,MAAM,WAAW,kBAAkB;IACjC,OAAO,CAAC,EAAE,aAAa,GAAG,kBAAkB,CAAC;IAC7C,QAAQ,EAAE,aAAa,EAAE,GAAG,kBAAkB,EAAE,CAAC;CAClD;AAED,wBAAsB,sBAAsB,IAAI,OAAO,CAAC,kBAAkB,CAAC,CAc1E;AAED,wBAAgB,gBAAgB,CAAC,UAAU,EAAE,MAAM,GAAG,kBAAkB,CAevE;AAED,wBAAgB,kBAAkB,CAChC,UAAU,EAAE,MAAM,GACjB,uBAAuB,CASzB;AAED,wBAAgB,qBAAqB,CAAC,UAAU,EAAE,MAAM,GAAG,gBAAgB,CAG1E"}
|