Skip to content

Commit 0634fc3

Browse files
authored
Merge pull request #625 from codatio/speakeasy-sdk-regen-1726242685
chore: 🐝 Update SDK - Generate Sync for Payables version 1 library SYNC-FOR-PAYABLES-VERSION-1-LIBRARY 2.3.0
2 parents e1096c4 + cefd5c1 commit 0634fc3

File tree

600 files changed

+59641
-13757
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

600 files changed

+59641
-13757
lines changed

β€Ž.speakeasy/workflow.lockβ€Ž

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,13 @@ sources:
3535
tags:
3636
- latest
3737
- main
38+
sync-for-payables-version-1-source:
39+
sourceNamespace: sync-for-payables-version-1-source
40+
sourceRevisionDigest: sha256:d91d7da27f07044c21e155a8787ef998eab1eb641136347c1287053f8e8087fb
41+
sourceBlobDigest: sha256:e1fb1fe0af40cf137b8b320fd75e913c83e54e0a2bb2e80a5af69e0bce409e71
42+
tags:
43+
- latest
44+
- main
3845
sync-for-payroll-source:
3946
sourceNamespace: sync-for-payroll-source
4047
sourceRevisionDigest: sha256:95fbbd9d479c192baabe63b6b95494bf55876fb9007df3657fa51660a8c73431
@@ -68,6 +75,11 @@ targets:
6875
sourceNamespace: sync-for-payables-source
6976
sourceRevisionDigest: sha256:daca0e08a3d44b87bb2242380dfc8be94f2cb83b1ea0a252af7f31f9b0c2c247
7077
sourceBlobDigest: sha256:6ed96ad8ecab289621839d0df446a473e3dc8ea83765e3316020a6670b44da0b
78+
sync-for-payables-version-1-library:
79+
source: sync-for-payables-version-1-source
80+
sourceNamespace: sync-for-payables-version-1-source
81+
sourceRevisionDigest: sha256:d91d7da27f07044c21e155a8787ef998eab1eb641136347c1287053f8e8087fb
82+
sourceBlobDigest: sha256:e1fb1fe0af40cf137b8b320fd75e913c83e54e0a2bb2e80a5af69e0bce409e71
7183
sync-for-payroll-library:
7284
source: sync-for-payroll-source
7385
sourceNamespace: sync-for-payroll-source
@@ -132,6 +144,8 @@ workflow:
132144
sync-for-payables-version-1-source:
133145
inputs:
134146
- location: https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Sync-Payables-v1.yaml
147+
registry:
148+
location: registry.speakeasyapi.dev/codat/codat/sync-for-payables-version-1-source
135149
sync-for-payroll-source:
136150
inputs:
137151
- location: https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Sync-Payroll.yaml

β€Ž.speakeasy/workflow.yamlβ€Ž

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ sources:
5656
sync-for-payables-version-1-source:
5757
inputs:
5858
- location: https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Sync-Payables-v1.yaml
59+
registry:
60+
location: registry.speakeasyapi.dev/codat/codat/sync-for-payables-version-1-source
5961
sync-for-payroll-source:
6062
inputs:
6163
- location: https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Sync-Payroll.yaml
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
/* eslint-env node */
2+
module.exports = {
3+
root: true,
4+
extends: [
5+
"eslint:recommended",
6+
"plugin:@typescript-eslint/recommended",
7+
"plugin:import/recommended",
8+
"plugin:import/typescript",
9+
],
10+
parser: "@typescript-eslint/parser",
11+
plugins: ["@typescript-eslint"],
12+
settings: {
13+
"import/resolver": {
14+
typescript: true,
15+
node: true,
16+
},
17+
},
18+
rules: {
19+
// Handled by typescript compiler
20+
"@typescript-eslint/no-unused-vars": "off",
21+
"@typescript-eslint/ban-types": "off",
22+
"@typescript-eslint/no-namespace": "off",
23+
"@typescript-eslint/no-explicit-any": "off",
24+
"import/no-named-as-default-member": "off",
25+
26+
"import/no-default-export": "error",
27+
},
28+
};

β€Žprevious-versions/sync-for-payables-version-1/.eslintrc.ymlβ€Ž

Lines changed: 0 additions & 17 deletions
This file was deleted.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,19 @@
1+
/models
2+
/sdk/models/errors
3+
/sdk/types
4+
/node_modules
5+
/lib
6+
/sdk
7+
/funcs
8+
/hooks
9+
/index.*
10+
/core.*
11+
/cjs
12+
/esm
13+
/dist
14+
/.tsbuildinfo
15+
/.tshy
16+
/.tshy-*
17+
/__tests__
118
dist/
219
node_modules/
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
**/*
2+
!/**/*.ts
3+
!/**/*.js
4+
!/**/*.map
5+
6+
/.eslintrc.js
7+
/cjs
8+
/.tshy
9+
/.tshy-*
10+
/__tests__

0 commit comments

Comments
Β (0)