@schemastore/cryproj 0.0.4 → 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 +1 -1
- package/README.md +1 -1
- package/index.d.ts +58 -42
- package/package.json +3 -3
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) Florian
|
|
3
|
+
Copyright (c) Florian Imdahl. All rights reserved.
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -8,5 +8,5 @@ This package contains type definitions for cryproj.
|
|
|
8
8
|
Files were exported from https://github.com/ffflorian/schemastore-updater/tree/main/schemas/cryproj.
|
|
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,
|
|
@@ -2474,18 +2474,22 @@ export type VariableName =
|
|
|
2474
2474
|
* The default value of the CVar
|
|
2475
2475
|
*/
|
|
2476
2476
|
export type ValueOfTheCVar = string;
|
|
2477
|
+
export type PropertiesConsoleVariables = PropertiesConsoleVariablesItems[];
|
|
2477
2478
|
/**
|
|
2478
2479
|
* This indicates where the assets are stored
|
|
2479
2480
|
*/
|
|
2480
2481
|
export type AssetsFolder = string;
|
|
2482
|
+
export type PropertiesContentPropertiesAssets = AssetsFolder[];
|
|
2481
2483
|
/**
|
|
2482
2484
|
* This indicates where the code is stored
|
|
2483
2485
|
*/
|
|
2484
2486
|
export type CodeFolder = string;
|
|
2487
|
+
export type PropertiesContentPropertiesCode = CodeFolder[];
|
|
2485
2488
|
export type LibSName = string;
|
|
2486
2489
|
export type LibSNameToImportForAllTheSupportedPlatforms = string;
|
|
2487
2490
|
export type LibSNameToImportForTheWinX64Platform = string;
|
|
2488
2491
|
export type LibSNameToImportForTheWinX86Platform = string;
|
|
2492
|
+
export type PropertiesContentPropertiesLibs = PropertiesContentPropertiesLibsItems[];
|
|
2489
2493
|
/**
|
|
2490
2494
|
* This indicates the project name
|
|
2491
2495
|
*/
|
|
@@ -2504,6 +2508,9 @@ export type PluginName = string;
|
|
|
2504
2508
|
*/
|
|
2505
2509
|
export type PluginType = "EPluginType::Native" | "EPluginType::Managed";
|
|
2506
2510
|
export type ThisPluginWillBeUsedOnlyByThesePlatforms = "pc" | "ps4" | "xboxone" | "linux";
|
|
2511
|
+
export type PropertiesPluginsItemsPropertiesPlatforms = ThisPluginWillBeUsedOnlyByThesePlatforms[];
|
|
2512
|
+
export type PropertiesRequirePropertiesPlugins = PropertiesRequirePropertiesPluginsItems[];
|
|
2513
|
+
export type PropertiesType = string;
|
|
2507
2514
|
export type ProjectVersion = number;
|
|
2508
2515
|
/**
|
|
2509
2516
|
* Console command name
|
|
@@ -2702,49 +2709,58 @@ export type CommandName =
|
|
|
2702
2709
|
* Arguments that has to be passed to the command. Leave empty if it has not parameters
|
|
2703
2710
|
*/
|
|
2704
2711
|
export type ValueOfTheCommand = string;
|
|
2712
|
+
export type PropertiesConsoleCommands = PropertiesConsoleCommandsItems[];
|
|
2705
2713
|
|
|
2706
2714
|
export interface CryProjSchema {
|
|
2707
|
-
console_variables?:
|
|
2708
|
-
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
|
|
2712
|
-
content: {
|
|
2713
|
-
assets?: AssetsFolder[];
|
|
2714
|
-
code: CodeFolder[];
|
|
2715
|
-
libs?: {
|
|
2716
|
-
name?: LibSName;
|
|
2717
|
-
shared?: {
|
|
2718
|
-
any?: LibSNameToImportForAllTheSupportedPlatforms;
|
|
2719
|
-
win_x64?: LibSNameToImportForTheWinX64Platform;
|
|
2720
|
-
win_x86?: LibSNameToImportForTheWinX86Platform;
|
|
2721
|
-
[k: string]: unknown;
|
|
2722
|
-
};
|
|
2723
|
-
[k: string]: unknown;
|
|
2724
|
-
}[];
|
|
2725
|
-
[k: string]: unknown;
|
|
2726
|
-
};
|
|
2727
|
-
info: {
|
|
2728
|
-
name: ProjectName;
|
|
2729
|
-
guid?: ProjectGUID;
|
|
2730
|
-
[k: string]: unknown;
|
|
2731
|
-
};
|
|
2732
|
-
require: {
|
|
2733
|
-
engine: EngineVersion;
|
|
2734
|
-
plugins?: {
|
|
2735
|
-
path: PluginName;
|
|
2736
|
-
type: PluginType;
|
|
2737
|
-
platforms?: ThisPluginWillBeUsedOnlyByThesePlatforms[];
|
|
2738
|
-
[k: string]: unknown;
|
|
2739
|
-
}[];
|
|
2740
|
-
[k: string]: unknown;
|
|
2741
|
-
};
|
|
2742
|
-
type?: string;
|
|
2715
|
+
console_variables?: PropertiesConsoleVariables;
|
|
2716
|
+
content: PropertiesContent;
|
|
2717
|
+
info: PropertiesInfo;
|
|
2718
|
+
require: PropertiesRequire;
|
|
2719
|
+
type?: PropertiesType;
|
|
2743
2720
|
version: ProjectVersion;
|
|
2744
|
-
console_commands?:
|
|
2745
|
-
|
|
2746
|
-
|
|
2747
|
-
|
|
2748
|
-
|
|
2721
|
+
console_commands?: PropertiesConsoleCommands;
|
|
2722
|
+
[k: string]: unknown;
|
|
2723
|
+
}
|
|
2724
|
+
export interface PropertiesConsoleVariablesItems {
|
|
2725
|
+
name: VariableName;
|
|
2726
|
+
value: ValueOfTheCVar;
|
|
2727
|
+
[k: string]: unknown;
|
|
2728
|
+
}
|
|
2729
|
+
export interface PropertiesContent {
|
|
2730
|
+
assets?: PropertiesContentPropertiesAssets;
|
|
2731
|
+
code: PropertiesContentPropertiesCode;
|
|
2732
|
+
libs?: PropertiesContentPropertiesLibs;
|
|
2733
|
+
[k: string]: unknown;
|
|
2734
|
+
}
|
|
2735
|
+
export interface PropertiesContentPropertiesLibsItems {
|
|
2736
|
+
name?: LibSName;
|
|
2737
|
+
shared?: PropertiesContentPropertiesLibsItemsPropertiesShared;
|
|
2738
|
+
[k: string]: unknown;
|
|
2739
|
+
}
|
|
2740
|
+
export interface PropertiesContentPropertiesLibsItemsPropertiesShared {
|
|
2741
|
+
any?: LibSNameToImportForAllTheSupportedPlatforms;
|
|
2742
|
+
win_x64?: LibSNameToImportForTheWinX64Platform;
|
|
2743
|
+
win_x86?: LibSNameToImportForTheWinX86Platform;
|
|
2744
|
+
[k: string]: unknown;
|
|
2745
|
+
}
|
|
2746
|
+
export interface PropertiesInfo {
|
|
2747
|
+
name: ProjectName;
|
|
2748
|
+
guid?: ProjectGUID;
|
|
2749
|
+
[k: string]: unknown;
|
|
2750
|
+
}
|
|
2751
|
+
export interface PropertiesRequire {
|
|
2752
|
+
engine: EngineVersion;
|
|
2753
|
+
plugins?: PropertiesRequirePropertiesPlugins;
|
|
2754
|
+
[k: string]: unknown;
|
|
2755
|
+
}
|
|
2756
|
+
export interface PropertiesRequirePropertiesPluginsItems {
|
|
2757
|
+
path: PluginName;
|
|
2758
|
+
type: PluginType;
|
|
2759
|
+
platforms?: PropertiesPluginsItemsPropertiesPlatforms;
|
|
2760
|
+
[k: string]: unknown;
|
|
2761
|
+
}
|
|
2762
|
+
export interface PropertiesConsoleCommandsItems {
|
|
2763
|
+
name: CommandName;
|
|
2764
|
+
value: ValueOfTheCommand;
|
|
2749
2765
|
[k: string]: unknown;
|
|
2750
2766
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"author": "Florian
|
|
2
|
+
"author": "Florian Imdahl <git@ffflorian.de>",
|
|
3
3
|
"dependencies": {},
|
|
4
4
|
"description": "TypeScript definitions for cryproj.",
|
|
5
5
|
"license": "MIT",
|
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
"name": "@schemastore/cryproj",
|
|
8
8
|
"repository": "https://github.com/ffflorian/schemastore-updater/tree/main/schemas/cryproj",
|
|
9
9
|
"scripts": {},
|
|
10
|
-
"typesPublisherContentHash": "
|
|
10
|
+
"typesPublisherContentHash": "c9418ecdfb9495f122b8c833925041f3d1ae891d1bf815e22532f2b3a69b53fb",
|
|
11
11
|
"types": "index.d.ts",
|
|
12
|
-
"version": "0.0.
|
|
12
|
+
"version": "0.0.5",
|
|
13
13
|
"typeScriptVersion": "2.2"
|
|
14
14
|
}
|