@schemastore/cryproj.53.schema 0.0.3 → 0.0.5
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/LICENSE +21 -0
- package/README.md +2 -2
- package/index.d.ts +59 -43
- package/package.json +4 -4
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) Florian Imdahl. All rights reserved.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE
|
package/README.md
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
This package contains type definitions for cryproj.53.schema.
|
|
6
6
|
|
|
7
7
|
## Details
|
|
8
|
-
Files were exported from https://github.com/ffflorian/schemastore-updater/tree/
|
|
8
|
+
Files were exported from https://github.com/ffflorian/schemastore-updater/tree/main/schemas/cryproj.53.schema.
|
|
9
9
|
|
|
10
10
|
## Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Fri, Feb 24, 2023, 11:23:32 GMT
|
|
12
12
|
* Dependencies: none
|
package/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*
|
|
1
|
+
/* eslint-disable */
|
|
2
2
|
/**
|
|
3
3
|
* This file was automatically generated by json-schema-to-typescript.
|
|
4
4
|
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
@@ -2463,18 +2463,22 @@ export type VariableName =
|
|
|
2463
2463
|
* The default value of the CVar
|
|
2464
2464
|
*/
|
|
2465
2465
|
export type ValueOfTheCVar = string;
|
|
2466
|
+
export type PropertiesConsoleVariables = PropertiesConsoleVariablesItems[];
|
|
2466
2467
|
/**
|
|
2467
2468
|
* This indicates where the assets are stored
|
|
2468
2469
|
*/
|
|
2469
2470
|
export type AssetsFolder = string;
|
|
2471
|
+
export type PropertiesContentPropertiesAssets = AssetsFolder[];
|
|
2470
2472
|
/**
|
|
2471
2473
|
* This indicates where the code is stored
|
|
2472
2474
|
*/
|
|
2473
2475
|
export type CodeFolder = string;
|
|
2476
|
+
export type PropertiesContentPropertiesCode = CodeFolder[];
|
|
2474
2477
|
export type LibSName = string;
|
|
2475
2478
|
export type LibSNameToImportForAllTheSupportedPlatforms = string;
|
|
2476
2479
|
export type LibSNameToImportForTheWinX64Platform = string;
|
|
2477
2480
|
export type LibSNameToImportForTheWinX86Platform = string;
|
|
2481
|
+
export type PropertiesContentPropertiesLibs = PropertiesContentPropertiesLibsItems[];
|
|
2478
2482
|
/**
|
|
2479
2483
|
* This indicates the project name
|
|
2480
2484
|
*/
|
|
@@ -2493,6 +2497,9 @@ export type PluginName = string;
|
|
|
2493
2497
|
*/
|
|
2494
2498
|
export type PluginType = "EPluginType::Native" | "EPluginType::Managed";
|
|
2495
2499
|
export type ThisPluginWillBeUsedOnlyByThesePlatforms = "pc" | "ps4" | "xboxone" | "linux";
|
|
2500
|
+
export type PropertiesPluginsItemsPropertiesPlatforms = ThisPluginWillBeUsedOnlyByThesePlatforms[];
|
|
2501
|
+
export type PropertiesRequirePropertiesPlugins = PropertiesRequirePropertiesPluginsItems[];
|
|
2502
|
+
export type PropertiesType = string;
|
|
2496
2503
|
export type ProjectVersion = number;
|
|
2497
2504
|
/**
|
|
2498
2505
|
* Console command name
|
|
@@ -2690,49 +2697,58 @@ export type CommandName =
|
|
|
2690
2697
|
* Arguments that has to be passed to the command. Leave empty if it has not parameters
|
|
2691
2698
|
*/
|
|
2692
2699
|
export type ValueOfTheCommand = string;
|
|
2700
|
+
export type PropertiesConsoleCommands = PropertiesConsoleCommandsItems[];
|
|
2693
2701
|
|
|
2694
2702
|
export interface CryProjSchema {
|
|
2695
|
-
console_variables?:
|
|
2696
|
-
|
|
2697
|
-
|
|
2698
|
-
|
|
2699
|
-
|
|
2700
|
-
content: {
|
|
2701
|
-
assets?: AssetsFolder[];
|
|
2702
|
-
code: CodeFolder[];
|
|
2703
|
-
libs?: {
|
|
2704
|
-
name?: LibSName;
|
|
2705
|
-
shared?: {
|
|
2706
|
-
any?: LibSNameToImportForAllTheSupportedPlatforms;
|
|
2707
|
-
win_x64?: LibSNameToImportForTheWinX64Platform;
|
|
2708
|
-
win_x86?: LibSNameToImportForTheWinX86Platform;
|
|
2709
|
-
[k: string]: any;
|
|
2710
|
-
};
|
|
2711
|
-
[k: string]: any;
|
|
2712
|
-
}[];
|
|
2713
|
-
[k: string]: any;
|
|
2714
|
-
};
|
|
2715
|
-
info: {
|
|
2716
|
-
name: ProjectName;
|
|
2717
|
-
guid?: ProjectGUID;
|
|
2718
|
-
[k: string]: any;
|
|
2719
|
-
};
|
|
2720
|
-
require: {
|
|
2721
|
-
engine: EngineVersion;
|
|
2722
|
-
plugins?: {
|
|
2723
|
-
path: PluginName;
|
|
2724
|
-
type: PluginType;
|
|
2725
|
-
platforms?: ThisPluginWillBeUsedOnlyByThesePlatforms[];
|
|
2726
|
-
[k: string]: any;
|
|
2727
|
-
}[];
|
|
2728
|
-
[k: string]: any;
|
|
2729
|
-
};
|
|
2730
|
-
type?: string;
|
|
2703
|
+
console_variables?: PropertiesConsoleVariables;
|
|
2704
|
+
content: PropertiesContent;
|
|
2705
|
+
info: PropertiesInfo;
|
|
2706
|
+
require: PropertiesRequire;
|
|
2707
|
+
type?: PropertiesType;
|
|
2731
2708
|
version: ProjectVersion;
|
|
2732
|
-
console_commands?:
|
|
2733
|
-
|
|
2734
|
-
|
|
2735
|
-
|
|
2736
|
-
|
|
2737
|
-
|
|
2709
|
+
console_commands?: PropertiesConsoleCommands;
|
|
2710
|
+
[k: string]: unknown;
|
|
2711
|
+
}
|
|
2712
|
+
export interface PropertiesConsoleVariablesItems {
|
|
2713
|
+
name: VariableName;
|
|
2714
|
+
value: ValueOfTheCVar;
|
|
2715
|
+
[k: string]: unknown;
|
|
2716
|
+
}
|
|
2717
|
+
export interface PropertiesContent {
|
|
2718
|
+
assets?: PropertiesContentPropertiesAssets;
|
|
2719
|
+
code: PropertiesContentPropertiesCode;
|
|
2720
|
+
libs?: PropertiesContentPropertiesLibs;
|
|
2721
|
+
[k: string]: unknown;
|
|
2722
|
+
}
|
|
2723
|
+
export interface PropertiesContentPropertiesLibsItems {
|
|
2724
|
+
name?: LibSName;
|
|
2725
|
+
shared?: PropertiesContentPropertiesLibsItemsPropertiesShared;
|
|
2726
|
+
[k: string]: unknown;
|
|
2727
|
+
}
|
|
2728
|
+
export interface PropertiesContentPropertiesLibsItemsPropertiesShared {
|
|
2729
|
+
any?: LibSNameToImportForAllTheSupportedPlatforms;
|
|
2730
|
+
win_x64?: LibSNameToImportForTheWinX64Platform;
|
|
2731
|
+
win_x86?: LibSNameToImportForTheWinX86Platform;
|
|
2732
|
+
[k: string]: unknown;
|
|
2733
|
+
}
|
|
2734
|
+
export interface PropertiesInfo {
|
|
2735
|
+
name: ProjectName;
|
|
2736
|
+
guid?: ProjectGUID;
|
|
2737
|
+
[k: string]: unknown;
|
|
2738
|
+
}
|
|
2739
|
+
export interface PropertiesRequire {
|
|
2740
|
+
engine: EngineVersion;
|
|
2741
|
+
plugins?: PropertiesRequirePropertiesPlugins;
|
|
2742
|
+
[k: string]: unknown;
|
|
2743
|
+
}
|
|
2744
|
+
export interface PropertiesRequirePropertiesPluginsItems {
|
|
2745
|
+
path: PluginName;
|
|
2746
|
+
type: PluginType;
|
|
2747
|
+
platforms?: PropertiesPluginsItemsPropertiesPlatforms;
|
|
2748
|
+
[k: string]: unknown;
|
|
2749
|
+
}
|
|
2750
|
+
export interface PropertiesConsoleCommandsItems {
|
|
2751
|
+
name: CommandName;
|
|
2752
|
+
value: ValueOfTheCommand;
|
|
2753
|
+
[k: string]: unknown;
|
|
2738
2754
|
}
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
|
-
"author": "Florian
|
|
2
|
+
"author": "Florian Imdahl <git@ffflorian.de>",
|
|
3
3
|
"dependencies": {},
|
|
4
4
|
"description": "TypeScript definitions for cryproj.53.schema.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "index.d.ts",
|
|
7
7
|
"name": "@schemastore/cryproj.53.schema",
|
|
8
|
-
"repository": "https://github.com/ffflorian/schemastore-updater/tree/
|
|
8
|
+
"repository": "https://github.com/ffflorian/schemastore-updater/tree/main/schemas/cryproj.53.schema",
|
|
9
9
|
"scripts": {},
|
|
10
|
-
"typesPublisherContentHash": "
|
|
10
|
+
"typesPublisherContentHash": "5e831d62a58296cd534a776c7504982cf2b369ce46ba7f042a410ec23a239cce",
|
|
11
11
|
"types": "index.d.ts",
|
|
12
|
-
"version": "0.0.
|
|
12
|
+
"version": "0.0.5",
|
|
13
13
|
"typeScriptVersion": "2.2"
|
|
14
14
|
}
|