codify-schemas 1.0.77 → 1.0.79
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/.env +2 -2
- package/dist/messages/get-resource-info-response-data-schema.json +6 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types/index.js.map +1 -1
- package/package.json +1 -1
- package/scripts/upload-resources.ts +8 -4
- package/src/messages/get-resource-info-response-data-schema.json +6 -0
- package/src/messages/get-resource-info-response-data-schema.test.ts +8 -2
- package/src/schemastore/codify-schema.json +79 -0
- package/src/types/index.ts +2 -0
package/.env
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
SUPABASE_URL=https://kdctbvqvqjfquplxhqrm.supabase.co
|
|
2
|
+
SUPABASE_SERVICE_ROLE_KEY=sb_secret_bdMjQlO7HDGBvvlDX0oCRQ_3vG1t3vx
|
package/dist/types/index.d.ts
CHANGED
|
@@ -100,6 +100,7 @@ export interface GetResourceInfoResponseData {
|
|
|
100
100
|
requiredParameters: string[] | null;
|
|
101
101
|
preventImport?: boolean;
|
|
102
102
|
};
|
|
103
|
+
sensitiveParameters: string[];
|
|
103
104
|
allowMultiple: boolean;
|
|
104
105
|
}
|
|
105
106
|
export interface MatchRequestData {
|
|
@@ -122,6 +123,7 @@ export interface ImportRequestData {
|
|
|
122
123
|
core: ResourceConfig;
|
|
123
124
|
parameters: Record<string, unknown>;
|
|
124
125
|
autoSearchAll?: boolean;
|
|
126
|
+
includeSensitive?: boolean;
|
|
125
127
|
}
|
|
126
128
|
export interface ImportResponseData {
|
|
127
129
|
request: ResourceJson;
|
package/dist/types/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAsBA,MAAM,CAAN,IAAY,aAGX;AAHD,WAAY,aAAa;IACvB,oCAAmB,CAAA;IACnB,gCAAe,CAAA;AACjB,CAAC,EAHW,aAAa,KAAb,aAAa,QAGxB;AA6CD,MAAM,CAAN,IAAY,iBAMX;AAND,WAAY,iBAAiB;IAC3B,sCAAiB,CAAA;IACjB,wCAAmB,CAAA;IACnB,sCAAiB,CAAA;IACjB,0CAAqB,CAAA;IACrB,kCAAa,CAAA;AACf,CAAC,EANW,iBAAiB,KAAjB,iBAAiB,QAM5B;AAED,MAAM,CAAN,IAAY,kBAKX;AALD,WAAY,kBAAkB;IAC5B,iCAAW,CAAA;IACX,uCAAiB,CAAA;IACjB,uCAAiB,CAAA;IACjB,mCAAa,CAAA;AACf,CAAC,EALW,kBAAkB,KAAlB,kBAAkB,QAK7B;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAsBA,MAAM,CAAN,IAAY,aAGX;AAHD,WAAY,aAAa;IACvB,oCAAmB,CAAA;IACnB,gCAAe,CAAA;AACjB,CAAC,EAHW,aAAa,KAAb,aAAa,QAGxB;AA6CD,MAAM,CAAN,IAAY,iBAMX;AAND,WAAY,iBAAiB;IAC3B,sCAAiB,CAAA;IACjB,wCAAmB,CAAA;IACnB,sCAAiB,CAAA;IACjB,0CAAqB,CAAA;IACrB,kCAAa,CAAA;AACf,CAAC,EANW,iBAAiB,KAAjB,iBAAiB,QAM5B;AAED,MAAM,CAAN,IAAY,kBAKX;AALD,WAAY,kBAAkB;IAC5B,iCAAW,CAAA;IACX,uCAAiB,CAAA;IACjB,uCAAiB,CAAA;IACjB,mCAAa,CAAA;AACf,CAAC,EALW,kBAAkB,KAAlB,kBAAkB,QAK7B;AAoHD,MAAM,CAAN,IAAY,WAGX;AAHD,WAAY,WAAW;IACrB,kCAAmB,CAAA;IACnB,8BAAe,CAAA;AACjB,CAAC,EAHW,WAAW,KAAX,WAAW,QAGtB"}
|
package/package.json
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
|
-
import 'dotenv
|
|
1
|
+
import dotenv from 'dotenv'
|
|
2
2
|
import CodifySchema from '../src/schemastore/codify-schema.json' with {type: 'json'}
|
|
3
3
|
import {createClient} from "@supabase/supabase-js";
|
|
4
4
|
|
|
5
|
+
dotenv.config({ path: '../.env' })
|
|
6
|
+
|
|
5
7
|
/**
|
|
6
8
|
* This is an upload script to upload new resources. Update the codify-schema.json file and
|
|
7
9
|
* run this script. Since it's a worker you'll need to open up the URL before it runs.
|
|
8
10
|
*/
|
|
9
11
|
|
|
10
12
|
const client = createClient(
|
|
11
|
-
process.env.
|
|
12
|
-
process.env.
|
|
13
|
+
process.env.SUPABASE_URL!,
|
|
14
|
+
process.env.SUPABASE_SERVICE_ROLE_KEY!,
|
|
13
15
|
);
|
|
14
16
|
|
|
15
17
|
async function main() {
|
|
@@ -17,7 +19,8 @@ async function main() {
|
|
|
17
19
|
const defaultPlugin = await client.from('registry_plugins').upsert({
|
|
18
20
|
name: 'default',
|
|
19
21
|
}, {onConflict: 'name'})
|
|
20
|
-
.select()
|
|
22
|
+
.select()
|
|
23
|
+
.throwOnError();
|
|
21
24
|
|
|
22
25
|
const { id: pluginId, name: pluginName } = defaultPlugin.data![0];
|
|
23
26
|
const resources = CodifySchema.items.oneOf;
|
|
@@ -31,6 +34,7 @@ async function main() {
|
|
|
31
34
|
plugin_id: pluginId,
|
|
32
35
|
plugin_name: pluginName,
|
|
33
36
|
schema: JSON.stringify(resource),
|
|
37
|
+
documentation_url: resource.$comment,
|
|
34
38
|
}, {onConflict: ['type', 'plugin_id']})
|
|
35
39
|
.select();
|
|
36
40
|
|
|
@@ -40,7 +40,8 @@ describe('Get resources response data schema', () => {
|
|
|
40
40
|
"items": {
|
|
41
41
|
"type": "string"
|
|
42
42
|
}
|
|
43
|
-
}
|
|
43
|
+
},
|
|
44
|
+
"sensitiveParameters": ['schema']
|
|
44
45
|
},
|
|
45
46
|
dependencies: [
|
|
46
47
|
"typeA",
|
|
@@ -134,10 +135,15 @@ describe('Get resources response data schema', () => {
|
|
|
134
135
|
"items": {
|
|
135
136
|
"type": "string"
|
|
136
137
|
}
|
|
138
|
+
},
|
|
139
|
+
"sensitiveProperties": {
|
|
140
|
+
"type": "array",
|
|
141
|
+
"items": {
|
|
142
|
+
"type": "string"
|
|
143
|
+
}
|
|
137
144
|
}
|
|
138
145
|
}
|
|
139
146
|
}
|
|
140
|
-
|
|
141
147
|
})).to.be.false;
|
|
142
148
|
|
|
143
149
|
expect(validate({
|
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
"additionalProperties": false
|
|
36
36
|
},
|
|
37
37
|
{
|
|
38
|
+
"$comment": "https://docs.codifycli.com/core-resources/git/git/",
|
|
38
39
|
"description": "Set and manage global git settings (email and username)",
|
|
39
40
|
"type": "object",
|
|
40
41
|
"properties": {
|
|
@@ -93,6 +94,7 @@
|
|
|
93
94
|
]
|
|
94
95
|
},
|
|
95
96
|
{
|
|
97
|
+
"$comment": "https://docs.codifycli.com/core-resources/path/",
|
|
96
98
|
"description": "Manages user paths. It will permanently save paths by adding them to the shell startup script.",
|
|
97
99
|
"type": "object",
|
|
98
100
|
"properties": {
|
|
@@ -139,6 +141,7 @@
|
|
|
139
141
|
]
|
|
140
142
|
},
|
|
141
143
|
{
|
|
144
|
+
"$comment": "https://docs.codifycli.com/core-resources/alias/",
|
|
142
145
|
"description": "Manages user aliases. It permanently saves the alias by adding it to the shell startup script.",
|
|
143
146
|
"type": "object",
|
|
144
147
|
"properties": {
|
|
@@ -175,6 +178,7 @@
|
|
|
175
178
|
"additionalProperties": false
|
|
176
179
|
},
|
|
177
180
|
{
|
|
181
|
+
"$comment": "https://docs.codifycli.com/core-resources/homebrew/",
|
|
178
182
|
"description": "Install homebrew and manages formulae, casks and taps.",
|
|
179
183
|
"type": "object",
|
|
180
184
|
"properties": {
|
|
@@ -230,6 +234,7 @@
|
|
|
230
234
|
]
|
|
231
235
|
},
|
|
232
236
|
{
|
|
237
|
+
"$comment": "https://docs.codifycli.com/core-resources/python/pyenv/",
|
|
233
238
|
"type": "object",
|
|
234
239
|
"description": "Install and manage Python versions using pyenv.",
|
|
235
240
|
"properties": {
|
|
@@ -267,6 +272,7 @@
|
|
|
267
272
|
]
|
|
268
273
|
},
|
|
269
274
|
{
|
|
275
|
+
"$comment": "https://docs.codifycli.com/core-resources/git/git-lfs/",
|
|
270
276
|
"description": "Installs git-lfs. This resource will automatically activate git-lfs as well.",
|
|
271
277
|
"type": "object",
|
|
272
278
|
"properties": {
|
|
@@ -293,6 +299,7 @@
|
|
|
293
299
|
]
|
|
294
300
|
},
|
|
295
301
|
{
|
|
302
|
+
"$comment": "https://docs.codifycli.com/core-resources/aws-cli/",
|
|
296
303
|
"type": "object",
|
|
297
304
|
"description": "Installs aws-cli.",
|
|
298
305
|
"properties": {
|
|
@@ -319,6 +326,7 @@
|
|
|
319
326
|
]
|
|
320
327
|
},
|
|
321
328
|
{
|
|
329
|
+
"$comment": "https://docs.codifycli.com/core-resources/aws-profile/",
|
|
322
330
|
"type": "object",
|
|
323
331
|
"description": "Configures AWS profiles.",
|
|
324
332
|
"properties": {
|
|
@@ -378,6 +386,7 @@
|
|
|
378
386
|
]
|
|
379
387
|
},
|
|
380
388
|
{
|
|
389
|
+
"$comment": "https://docs.codifycli.com/core-resources/terraform/",
|
|
381
390
|
"description": "Installs Terraform.",
|
|
382
391
|
"type": "object",
|
|
383
392
|
"properties": {
|
|
@@ -412,6 +421,7 @@
|
|
|
412
421
|
]
|
|
413
422
|
},
|
|
414
423
|
{
|
|
424
|
+
"$comment": "https://docs.codifycli.com/core-resources/javascript/nvm/",
|
|
415
425
|
"description": "Install and manage Node versions using nvm.",
|
|
416
426
|
"type": "object",
|
|
417
427
|
"properties": {
|
|
@@ -449,6 +459,7 @@
|
|
|
449
459
|
]
|
|
450
460
|
},
|
|
451
461
|
{
|
|
462
|
+
"$comment": "https://docs.codifycli.com/core-resources/jenv/",
|
|
452
463
|
"type": "object",
|
|
453
464
|
"description": "Install jenv and manage Java versions using jenv. Jenv cannot install Java directly, it needs to be installed separately and added to Jenv.",
|
|
454
465
|
"properties": {
|
|
@@ -486,6 +497,7 @@
|
|
|
486
497
|
]
|
|
487
498
|
},
|
|
488
499
|
{
|
|
500
|
+
"$comment": "https://docs.codifycli.com/core-resources/pgcli/",
|
|
489
501
|
"type": "object",
|
|
490
502
|
"description": "Installs pgcli.",
|
|
491
503
|
"properties": {
|
|
@@ -512,6 +524,7 @@
|
|
|
512
524
|
]
|
|
513
525
|
},
|
|
514
526
|
{
|
|
527
|
+
"$comment": "https://docs.codifycli.com/core-resources/vscode/",
|
|
515
528
|
"description": "Installs Vscode.",
|
|
516
529
|
"type": "object",
|
|
517
530
|
"properties": {
|
|
@@ -543,6 +556,7 @@
|
|
|
543
556
|
]
|
|
544
557
|
},
|
|
545
558
|
{
|
|
559
|
+
"$comment": "https://docs.codifycli.com/core-resources/git/git-repository/",
|
|
546
560
|
"description": "Git clone a repository. Choose either to specify the exact directory to clone into or the parent directory (it deduces the folder name using the repository name).",
|
|
547
561
|
"type": "object",
|
|
548
562
|
"properties": {
|
|
@@ -585,6 +599,7 @@
|
|
|
585
599
|
]
|
|
586
600
|
},
|
|
587
601
|
{
|
|
602
|
+
"$comment": "https://docs.codifycli.com/core-resources/android-studio/",
|
|
588
603
|
"type": "object",
|
|
589
604
|
"description": "Install Android Studios.",
|
|
590
605
|
"properties": {
|
|
@@ -620,6 +635,7 @@
|
|
|
620
635
|
]
|
|
621
636
|
},
|
|
622
637
|
{
|
|
638
|
+
"$comment": "https://docs.codifycli.com/core-resources/asdf/asdf/",
|
|
623
639
|
"type": "object",
|
|
624
640
|
"description": "Installs asdf and manages asdf plugins. Use 'asdf-install' or 'asdf-plugin' to install the actual tool. Use 'asdf-global' or 'asdf-local' to activate the tool in the shell.",
|
|
625
641
|
"properties": {
|
|
@@ -653,6 +669,7 @@
|
|
|
653
669
|
]
|
|
654
670
|
},
|
|
655
671
|
{
|
|
672
|
+
"$comment": "https://docs.codifycli.com/core-resources/asdf/asdf-plugin/",
|
|
656
673
|
"description": "Installs a plugin and manages specific tool versions.",
|
|
657
674
|
"type": "object",
|
|
658
675
|
"properties": {
|
|
@@ -695,6 +712,7 @@
|
|
|
695
712
|
"additionalProperties": false
|
|
696
713
|
},
|
|
697
714
|
{
|
|
715
|
+
"$comment": "https://docs.codifycli.com/core-resources/asdf/asdf-global/",
|
|
698
716
|
"type": "object",
|
|
699
717
|
"description": "Manage the asdf global version for a tool. An asdf-global or asdf-local resource must be specified before a tool installed with asdf is active in the shell.",
|
|
700
718
|
"properties": {
|
|
@@ -731,6 +749,7 @@
|
|
|
731
749
|
"additionalProperties": false
|
|
732
750
|
},
|
|
733
751
|
{
|
|
752
|
+
"$comment": "https://docs.codifycli.com/core-resources/asdf/asdf-local/",
|
|
734
753
|
"description": "Manage the asdf local version for a tool. An asdf-global or asdf-local resource must be specified before a tool installed with asdf is active in the shell.",
|
|
735
754
|
"type": "object",
|
|
736
755
|
"properties": {
|
|
@@ -778,6 +797,7 @@
|
|
|
778
797
|
"additionalProperties": false
|
|
779
798
|
},
|
|
780
799
|
{
|
|
800
|
+
"$comment": "https://docs.codifycli.com/core-resources/asdf/asdf-install/",
|
|
781
801
|
"type": "object",
|
|
782
802
|
"description": "Install a .tools-version file or directly install an asdf plugin + tool version.",
|
|
783
803
|
"properties": {
|
|
@@ -819,6 +839,7 @@
|
|
|
819
839
|
]
|
|
820
840
|
},
|
|
821
841
|
{
|
|
842
|
+
"$comment": "https://docs.codifycli.com/core-resources/ssh/ssh-key/",
|
|
822
843
|
"description": "Generate and manage a ssh private/public key.",
|
|
823
844
|
"type": "object",
|
|
824
845
|
"properties": {
|
|
@@ -877,6 +898,7 @@
|
|
|
877
898
|
"additionalProperties": false
|
|
878
899
|
},
|
|
879
900
|
{
|
|
901
|
+
"$comment": "https://docs.codifycli.com/core-resources/ssh/ssh-config/",
|
|
880
902
|
"description": "Configures the ssh config file.",
|
|
881
903
|
"type": "object",
|
|
882
904
|
"properties": {
|
|
@@ -962,6 +984,7 @@
|
|
|
962
984
|
"additionalProperties": false
|
|
963
985
|
},
|
|
964
986
|
{
|
|
987
|
+
"$comment": "https://docs.codifycli.com/core-resources/ssh/ssh-add/",
|
|
965
988
|
"description": "Adds ssh private keys to the ssh agent.",
|
|
966
989
|
"type": "object",
|
|
967
990
|
"properties": {
|
|
@@ -997,6 +1020,7 @@
|
|
|
997
1020
|
"additionalProperties": false
|
|
998
1021
|
},
|
|
999
1022
|
{
|
|
1023
|
+
"$comment": "https://docs.codifycli.com/core-resources/scripting/action/",
|
|
1000
1024
|
"description": "Run custom scripts using the action resource. A condition can be specified to conditionally trigger a script.",
|
|
1001
1025
|
"type": "object",
|
|
1002
1026
|
"properties": {
|
|
@@ -1036,6 +1060,7 @@
|
|
|
1036
1060
|
"additionalProperties": false
|
|
1037
1061
|
},
|
|
1038
1062
|
{
|
|
1063
|
+
"$comment": "https://docs.codifycli.com/core-resources/files/file/",
|
|
1039
1064
|
"description": "Manages a file.",
|
|
1040
1065
|
"type": "object",
|
|
1041
1066
|
"properties": {
|
|
@@ -1076,6 +1101,52 @@
|
|
|
1076
1101
|
"additionalProperties": false
|
|
1077
1102
|
},
|
|
1078
1103
|
{
|
|
1104
|
+
"$comment": "https://docs.codifycli.com/core-resources/files/remote-file/",
|
|
1105
|
+
"description": "Represents a file stored on codify cloud. Use apply to pull changes from remote and save to local. Use refresh and import to upload changes to remote.",
|
|
1106
|
+
"type": "object",
|
|
1107
|
+
"properties": {
|
|
1108
|
+
"path": {
|
|
1109
|
+
"type": "string",
|
|
1110
|
+
"description": "The local path of the file."
|
|
1111
|
+
},
|
|
1112
|
+
"remote": {
|
|
1113
|
+
"type": "string",
|
|
1114
|
+
"description": "The remote codify cloud file path. This should be in the format of codify://<uuid>:<file_path>"
|
|
1115
|
+
},
|
|
1116
|
+
"hash": {
|
|
1117
|
+
"type": "string",
|
|
1118
|
+
"description": "Leave empty. The md5 hash of the file."
|
|
1119
|
+
},
|
|
1120
|
+
"onlyCreate": {
|
|
1121
|
+
"type": "boolean",
|
|
1122
|
+
"description": "Forces the resource to only create the file if it doesn't exist but don't detect any content changes. Also skips uploading the file to Codify cloud on refresh and import."
|
|
1123
|
+
},
|
|
1124
|
+
"name": {
|
|
1125
|
+
"description": "Optional name. Useful for specifying multiple resources of the same type",
|
|
1126
|
+
"type": "string",
|
|
1127
|
+
"pattern": "^[\\w-]+$"
|
|
1128
|
+
},
|
|
1129
|
+
"dependsOn": {
|
|
1130
|
+
"type": "array",
|
|
1131
|
+
"items": {
|
|
1132
|
+
"type": "string"
|
|
1133
|
+
},
|
|
1134
|
+
"uniqueItems": true
|
|
1135
|
+
},
|
|
1136
|
+
"type": {
|
|
1137
|
+
"const": "remote-file",
|
|
1138
|
+
"type": "string"
|
|
1139
|
+
}
|
|
1140
|
+
},
|
|
1141
|
+
"required": [
|
|
1142
|
+
"path",
|
|
1143
|
+
"remote",
|
|
1144
|
+
"type"
|
|
1145
|
+
],
|
|
1146
|
+
"additionalProperties": false
|
|
1147
|
+
},
|
|
1148
|
+
{
|
|
1149
|
+
"$comment": "https://docs.codifycli.com/core-resources/python/virtualenv-project/",
|
|
1079
1150
|
"type": "object",
|
|
1080
1151
|
"description": "Install and manage local packages with virtualenv",
|
|
1081
1152
|
"properties": {
|
|
@@ -1102,6 +1173,7 @@
|
|
|
1102
1173
|
]
|
|
1103
1174
|
},
|
|
1104
1175
|
{
|
|
1176
|
+
"$comment": "https://docs.codifycli.com/core-resources/python/virtualenv-project/",
|
|
1105
1177
|
"type": "object",
|
|
1106
1178
|
"description": "Install and manage local packages for a project with virtualenv",
|
|
1107
1179
|
"properties": {
|
|
@@ -1157,6 +1229,7 @@
|
|
|
1157
1229
|
]
|
|
1158
1230
|
},
|
|
1159
1231
|
{
|
|
1232
|
+
"$comment": "https://docs.codifycli.com/core-resources/javascript/pnpm/",
|
|
1160
1233
|
"description": "Install and manage Node dependencies and versions using pnpm.",
|
|
1161
1234
|
"type": "object",
|
|
1162
1235
|
"properties": {
|
|
@@ -1215,6 +1288,7 @@
|
|
|
1215
1288
|
]
|
|
1216
1289
|
},
|
|
1217
1290
|
{
|
|
1291
|
+
"$comment": "https://docs.codifycli.com/core-resources/python/venv-project/",
|
|
1218
1292
|
"type": "object",
|
|
1219
1293
|
"description": "Install and manage local packages for a project with venv",
|
|
1220
1294
|
"properties": {
|
|
@@ -1286,6 +1360,7 @@
|
|
|
1286
1360
|
]
|
|
1287
1361
|
},
|
|
1288
1362
|
{
|
|
1363
|
+
"$comment": "https://docs.codifycli.com/core-resources/python/pip/",
|
|
1289
1364
|
"type": "object",
|
|
1290
1365
|
"description": "Install and manage packages using pip",
|
|
1291
1366
|
"properties": {
|
|
@@ -1349,6 +1424,7 @@
|
|
|
1349
1424
|
]
|
|
1350
1425
|
},
|
|
1351
1426
|
{
|
|
1427
|
+
"$comment": "https://docs.codifycli.com/core-resources/python/pip-sync/",
|
|
1352
1428
|
"type": "object",
|
|
1353
1429
|
"description": "Install and manage though pip-tools by installing + uninstalling packages using pip-sync",
|
|
1354
1430
|
"properties": {
|
|
@@ -1391,6 +1467,7 @@
|
|
|
1391
1467
|
]
|
|
1392
1468
|
},
|
|
1393
1469
|
{
|
|
1470
|
+
"$comment": "https://docs.codifycli.com/core-resources/macports/",
|
|
1394
1471
|
"description": "Install macports and manage packages.",
|
|
1395
1472
|
"type": "object",
|
|
1396
1473
|
"properties": {
|
|
@@ -1442,6 +1519,7 @@
|
|
|
1442
1519
|
]
|
|
1443
1520
|
},
|
|
1444
1521
|
{
|
|
1522
|
+
"$comment": "https://docs.codifycli.com/core-resources/javascript/npm/",
|
|
1445
1523
|
"description": "Install and manage packages using NPM.",
|
|
1446
1524
|
"type": "object",
|
|
1447
1525
|
"properties": {
|
|
@@ -1496,6 +1574,7 @@
|
|
|
1496
1574
|
]
|
|
1497
1575
|
},
|
|
1498
1576
|
{
|
|
1577
|
+
"$comment": "https://docs.codifycli.com/core-resources/docker/",
|
|
1499
1578
|
"type": "object",
|
|
1500
1579
|
"description": "Installs docker.",
|
|
1501
1580
|
"properties": {
|
package/src/types/index.ts
CHANGED
|
@@ -116,6 +116,7 @@ export interface GetResourceInfoResponseData {
|
|
|
116
116
|
requiredParameters: string[] | null;
|
|
117
117
|
preventImport?: boolean;
|
|
118
118
|
},
|
|
119
|
+
sensitiveParameters: string[];
|
|
119
120
|
allowMultiple: boolean;
|
|
120
121
|
}
|
|
121
122
|
|
|
@@ -141,6 +142,7 @@ export interface ImportRequestData {
|
|
|
141
142
|
core: ResourceConfig;
|
|
142
143
|
parameters: Record<string, unknown>;
|
|
143
144
|
autoSearchAll?: boolean;
|
|
145
|
+
includeSensitive?: boolean;
|
|
144
146
|
}
|
|
145
147
|
|
|
146
148
|
export interface ImportResponseData {
|