@schemastore/cryproj.52.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.52.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.52.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,
|
|
@@ -2455,18 +2455,22 @@ export type VariableName =
|
|
|
2455
2455
|
* The default value of the CVar
|
|
2456
2456
|
*/
|
|
2457
2457
|
export type ValueOfTheCVar = string;
|
|
2458
|
+
export type PropertiesConsoleVariables = PropertiesConsoleVariablesItems[];
|
|
2458
2459
|
/**
|
|
2459
2460
|
* This indicates where the assets are stored
|
|
2460
2461
|
*/
|
|
2461
2462
|
export type AssetsFolder = string;
|
|
2463
|
+
export type PropertiesContentPropertiesAssets = AssetsFolder[];
|
|
2462
2464
|
/**
|
|
2463
2465
|
* This indicates where the code is stored
|
|
2464
2466
|
*/
|
|
2465
2467
|
export type CodeFolder = string;
|
|
2468
|
+
export type PropertiesContentPropertiesCode = CodeFolder[];
|
|
2466
2469
|
export type LibSName = string;
|
|
2467
2470
|
export type LibSNameToImportForAllTheSupportedPlatforms = string;
|
|
2468
2471
|
export type LibSNameToImportForTheWinX64Platform = string;
|
|
2469
2472
|
export type LibSNameToImportForTheWinX86Platform = string;
|
|
2473
|
+
export type PropertiesContentPropertiesLibs = PropertiesContentPropertiesLibsItems[];
|
|
2470
2474
|
/**
|
|
2471
2475
|
* This indicates the project name
|
|
2472
2476
|
*/
|
|
@@ -2485,6 +2489,9 @@ export type PluginName = string;
|
|
|
2485
2489
|
*/
|
|
2486
2490
|
export type PluginType = "EPluginType::Native" | "EPluginType::Managed";
|
|
2487
2491
|
export type ThisPluginWillBeUsedOnlyByThesePlatforms = "pc" | "ps4" | "xboxone" | "linux";
|
|
2492
|
+
export type PropertiesPluginsItemsPropertiesPlatforms = ThisPluginWillBeUsedOnlyByThesePlatforms[];
|
|
2493
|
+
export type PropertiesRequirePropertiesPlugins = PropertiesRequirePropertiesPluginsItems[];
|
|
2494
|
+
export type PropertiesType = string;
|
|
2488
2495
|
export type ProjectVersion = number;
|
|
2489
2496
|
/**
|
|
2490
2497
|
* Console command name
|
|
@@ -2675,49 +2682,58 @@ export type CommandName =
|
|
|
2675
2682
|
* Arguments that has to be passed to the command. Leave empty if it has not parameters
|
|
2676
2683
|
*/
|
|
2677
2684
|
export type ValueOfTheCommand = string;
|
|
2685
|
+
export type PropertiesConsoleCommands = PropertiesConsoleCommandsItems[];
|
|
2678
2686
|
|
|
2679
2687
|
export interface CryProjSchema {
|
|
2680
|
-
console_variables?:
|
|
2681
|
-
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
content: {
|
|
2686
|
-
assets?: AssetsFolder[];
|
|
2687
|
-
code: CodeFolder[];
|
|
2688
|
-
libs?: {
|
|
2689
|
-
name?: LibSName;
|
|
2690
|
-
shared?: {
|
|
2691
|
-
any?: LibSNameToImportForAllTheSupportedPlatforms;
|
|
2692
|
-
win_x64?: LibSNameToImportForTheWinX64Platform;
|
|
2693
|
-
win_x86?: LibSNameToImportForTheWinX86Platform;
|
|
2694
|
-
[k: string]: any;
|
|
2695
|
-
};
|
|
2696
|
-
[k: string]: any;
|
|
2697
|
-
}[];
|
|
2698
|
-
[k: string]: any;
|
|
2699
|
-
};
|
|
2700
|
-
info: {
|
|
2701
|
-
name: ProjectName;
|
|
2702
|
-
guid?: ProjectGUID;
|
|
2703
|
-
[k: string]: any;
|
|
2704
|
-
};
|
|
2705
|
-
require: {
|
|
2706
|
-
engine: EngineVersion;
|
|
2707
|
-
plugins?: {
|
|
2708
|
-
path: PluginName;
|
|
2709
|
-
type: PluginType;
|
|
2710
|
-
platforms?: ThisPluginWillBeUsedOnlyByThesePlatforms[];
|
|
2711
|
-
[k: string]: any;
|
|
2712
|
-
}[];
|
|
2713
|
-
[k: string]: any;
|
|
2714
|
-
};
|
|
2715
|
-
type?: string;
|
|
2688
|
+
console_variables?: PropertiesConsoleVariables;
|
|
2689
|
+
content: PropertiesContent;
|
|
2690
|
+
info: PropertiesInfo;
|
|
2691
|
+
require: PropertiesRequire;
|
|
2692
|
+
type?: PropertiesType;
|
|
2716
2693
|
version: ProjectVersion;
|
|
2717
|
-
console_commands?:
|
|
2718
|
-
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
-
|
|
2722
|
-
|
|
2694
|
+
console_commands?: PropertiesConsoleCommands;
|
|
2695
|
+
[k: string]: unknown;
|
|
2696
|
+
}
|
|
2697
|
+
export interface PropertiesConsoleVariablesItems {
|
|
2698
|
+
name: VariableName;
|
|
2699
|
+
value: ValueOfTheCVar;
|
|
2700
|
+
[k: string]: unknown;
|
|
2701
|
+
}
|
|
2702
|
+
export interface PropertiesContent {
|
|
2703
|
+
assets?: PropertiesContentPropertiesAssets;
|
|
2704
|
+
code: PropertiesContentPropertiesCode;
|
|
2705
|
+
libs?: PropertiesContentPropertiesLibs;
|
|
2706
|
+
[k: string]: unknown;
|
|
2707
|
+
}
|
|
2708
|
+
export interface PropertiesContentPropertiesLibsItems {
|
|
2709
|
+
name?: LibSName;
|
|
2710
|
+
shared?: PropertiesContentPropertiesLibsItemsPropertiesShared;
|
|
2711
|
+
[k: string]: unknown;
|
|
2712
|
+
}
|
|
2713
|
+
export interface PropertiesContentPropertiesLibsItemsPropertiesShared {
|
|
2714
|
+
any?: LibSNameToImportForAllTheSupportedPlatforms;
|
|
2715
|
+
win_x64?: LibSNameToImportForTheWinX64Platform;
|
|
2716
|
+
win_x86?: LibSNameToImportForTheWinX86Platform;
|
|
2717
|
+
[k: string]: unknown;
|
|
2718
|
+
}
|
|
2719
|
+
export interface PropertiesInfo {
|
|
2720
|
+
name: ProjectName;
|
|
2721
|
+
guid?: ProjectGUID;
|
|
2722
|
+
[k: string]: unknown;
|
|
2723
|
+
}
|
|
2724
|
+
export interface PropertiesRequire {
|
|
2725
|
+
engine: EngineVersion;
|
|
2726
|
+
plugins?: PropertiesRequirePropertiesPlugins;
|
|
2727
|
+
[k: string]: unknown;
|
|
2728
|
+
}
|
|
2729
|
+
export interface PropertiesRequirePropertiesPluginsItems {
|
|
2730
|
+
path: PluginName;
|
|
2731
|
+
type: PluginType;
|
|
2732
|
+
platforms?: PropertiesPluginsItemsPropertiesPlatforms;
|
|
2733
|
+
[k: string]: unknown;
|
|
2734
|
+
}
|
|
2735
|
+
export interface PropertiesConsoleCommandsItems {
|
|
2736
|
+
name: CommandName;
|
|
2737
|
+
value: ValueOfTheCommand;
|
|
2738
|
+
[k: string]: unknown;
|
|
2723
2739
|
}
|
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.52.schema.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "index.d.ts",
|
|
7
7
|
"name": "@schemastore/cryproj.52.schema",
|
|
8
|
-
"repository": "https://github.com/ffflorian/schemastore-updater/tree/
|
|
8
|
+
"repository": "https://github.com/ffflorian/schemastore-updater/tree/main/schemas/cryproj.52.schema",
|
|
9
9
|
"scripts": {},
|
|
10
|
-
"typesPublisherContentHash": "
|
|
10
|
+
"typesPublisherContentHash": "62103bffce52aabd48dfb1d0943530fbaee3ac417e59ffb87afc371ad985e59b",
|
|
11
11
|
"types": "index.d.ts",
|
|
12
|
-
"version": "0.0.
|
|
12
|
+
"version": "0.0.5",
|
|
13
13
|
"typeScriptVersion": "2.2"
|
|
14
14
|
}
|