@codemation/core-nodes 0.1.0 → 0.1.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @codemation/core-nodes
2
2
 
3
+ ## 0.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`056c045`](https://github.com/MadeRelevant/codemation/commit/056c045d7813e7e6b749f0dc03bb43855ff7f58c)]:
8
+ - @codemation/core@0.5.0
9
+
3
10
  ## 0.1.0
4
11
 
5
12
  ### Minor Changes
package/dist/index.d.cts CHANGED
@@ -626,16 +626,24 @@ type OAuth2ProviderFromPublicConfig = Readonly<{
626
626
  tokenUrlFieldKey: string;
627
627
  userInfoUrlFieldKey?: string;
628
628
  }>;
629
+ type CredentialOAuth2ScopesFromPublicConfig = Readonly<{
630
+ presetFieldKey: string;
631
+ presetScopes: Readonly<Record<string, ReadonlyArray<string>>>;
632
+ customPresetKey?: string;
633
+ customScopesFieldKey?: string;
634
+ }>;
629
635
  type CredentialOAuth2AuthDefinition = Readonly<{
630
636
  kind: "oauth2";
631
637
  providerId: string;
632
638
  scopes: ReadonlyArray<string>;
639
+ scopesFromPublicConfig?: CredentialOAuth2ScopesFromPublicConfig;
633
640
  clientIdFieldKey?: string;
634
641
  clientSecretFieldKey?: string;
635
642
  } | {
636
643
  kind: "oauth2";
637
644
  providerFromPublicConfig: OAuth2ProviderFromPublicConfig;
638
645
  scopes: ReadonlyArray<string>;
646
+ scopesFromPublicConfig?: CredentialOAuth2ScopesFromPublicConfig;
639
647
  clientIdFieldKey?: string;
640
648
  clientSecretFieldKey?: string;
641
649
  }>;
package/dist/index.d.ts CHANGED
@@ -626,16 +626,24 @@ type OAuth2ProviderFromPublicConfig = Readonly<{
626
626
  tokenUrlFieldKey: string;
627
627
  userInfoUrlFieldKey?: string;
628
628
  }>;
629
+ type CredentialOAuth2ScopesFromPublicConfig = Readonly<{
630
+ presetFieldKey: string;
631
+ presetScopes: Readonly<Record<string, ReadonlyArray<string>>>;
632
+ customPresetKey?: string;
633
+ customScopesFieldKey?: string;
634
+ }>;
629
635
  type CredentialOAuth2AuthDefinition = Readonly<{
630
636
  kind: "oauth2";
631
637
  providerId: string;
632
638
  scopes: ReadonlyArray<string>;
639
+ scopesFromPublicConfig?: CredentialOAuth2ScopesFromPublicConfig;
633
640
  clientIdFieldKey?: string;
634
641
  clientSecretFieldKey?: string;
635
642
  } | {
636
643
  kind: "oauth2";
637
644
  providerFromPublicConfig: OAuth2ProviderFromPublicConfig;
638
645
  scopes: ReadonlyArray<string>;
646
+ scopesFromPublicConfig?: CredentialOAuth2ScopesFromPublicConfig;
639
647
  clientIdFieldKey?: string;
640
648
  clientSecretFieldKey?: string;
641
649
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemation/core-nodes",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -31,7 +31,7 @@
31
31
  "@langchain/core": "^1.1.31",
32
32
  "@langchain/openai": "^1.2.12",
33
33
  "lucide-react": "^0.577.0",
34
- "@codemation/core": "0.4.0"
34
+ "@codemation/core": "0.5.0"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@types/node": "^25.3.5",