@schemastore/cryproj 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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +2 -2
  3. package/index.d.ts +59 -43
  4. 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.
6
6
 
7
7
  ## Details
8
- Files were exported from https://github.com/ffflorian/schemastore-updater/tree/master/schemas/cryproj.
8
+ Files were exported from https://github.com/ffflorian/schemastore-updater/tree/main/schemas/cryproj.
9
9
 
10
10
  ## Additional Details
11
- * Last updated: Thu, Jul 25, 2019, 17:59:05 GMT
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
- /* tslint:disable */
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
- name: VariableName;
2709
- value: ValueOfTheCVar;
2710
- [k: string]: any;
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]: any;
2722
- };
2723
- [k: string]: any;
2724
- }[];
2725
- [k: string]: any;
2726
- };
2727
- info: {
2728
- name: ProjectName;
2729
- guid?: ProjectGUID;
2730
- [k: string]: any;
2731
- };
2732
- require: {
2733
- engine: EngineVersion;
2734
- plugins?: {
2735
- path: PluginName;
2736
- type: PluginType;
2737
- platforms?: ThisPluginWillBeUsedOnlyByThesePlatforms[];
2738
- [k: string]: any;
2739
- }[];
2740
- [k: string]: any;
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
- name: CommandName;
2746
- value: ValueOfTheCommand;
2747
- [k: string]: any;
2748
- }[];
2749
- [k: string]: any;
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;
2765
+ [k: string]: unknown;
2750
2766
  }
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
- "author": "Florian Keller <github@floriankeller.de>",
2
+ "author": "Florian Imdahl <git@ffflorian.de>",
3
3
  "dependencies": {},
4
4
  "description": "TypeScript definitions for cryproj.",
5
5
  "license": "MIT",
6
6
  "main": "index.d.ts",
7
7
  "name": "@schemastore/cryproj",
8
- "repository": "https://github.com/ffflorian/schemastore-updater/tree/master/schemas/cryproj",
8
+ "repository": "https://github.com/ffflorian/schemastore-updater/tree/main/schemas/cryproj",
9
9
  "scripts": {},
10
- "typesPublisherContentHash": "a9ddd43cf59b4a50fcbf5445754cccbe4f5210b289fad8c9139e55dd504147ae",
10
+ "typesPublisherContentHash": "c9418ecdfb9495f122b8c833925041f3d1ae891d1bf815e22532f2b3a69b53fb",
11
11
  "types": "index.d.ts",
12
- "version": "0.0.3",
12
+ "version": "0.0.5",
13
13
  "typeScriptVersion": "2.2"
14
14
  }