@schemastore/cryproj.54.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.
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.54.schema.
6
6
 
7
7
  ## Details
8
- Files were exported from https://github.com/ffflorian/schemastore-updater/tree/master/schemas/cryproj.54.schema.
8
+ Files were exported from https://github.com/ffflorian/schemastore-updater/tree/main/schemas/cryproj.54.schema.
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,
@@ -2470,18 +2470,22 @@ export type VariableName =
2470
2470
  * The default value of the CVar
2471
2471
  */
2472
2472
  export type ValueOfTheCVar = string;
2473
+ export type PropertiesConsoleVariables = PropertiesConsoleVariablesItems[];
2473
2474
  /**
2474
2475
  * This indicates where the assets are stored
2475
2476
  */
2476
2477
  export type AssetsFolder = string;
2478
+ export type PropertiesContentPropertiesAssets = AssetsFolder[];
2477
2479
  /**
2478
2480
  * This indicates where the code is stored
2479
2481
  */
2480
2482
  export type CodeFolder = string;
2483
+ export type PropertiesContentPropertiesCode = CodeFolder[];
2481
2484
  export type LibSName = string;
2482
2485
  export type LibSNameToImportForAllTheSupportedPlatforms = string;
2483
2486
  export type LibSNameToImportForTheWinX64Platform = string;
2484
2487
  export type LibSNameToImportForTheWinX86Platform = string;
2488
+ export type PropertiesContentPropertiesLibs = PropertiesContentPropertiesLibsItems[];
2485
2489
  /**
2486
2490
  * This indicates the project name
2487
2491
  */
@@ -2500,6 +2504,9 @@ export type PluginName = string;
2500
2504
  */
2501
2505
  export type PluginType = "EPluginType::Native" | "EPluginType::Managed";
2502
2506
  export type ThisPluginWillBeUsedOnlyByThesePlatforms = "pc" | "ps4" | "xboxone" | "linux";
2507
+ export type PropertiesPluginsItemsPropertiesPlatforms = ThisPluginWillBeUsedOnlyByThesePlatforms[];
2508
+ export type PropertiesRequirePropertiesPlugins = PropertiesRequirePropertiesPluginsItems[];
2509
+ export type PropertiesType = string;
2503
2510
  export type ProjectVersion = number;
2504
2511
  /**
2505
2512
  * Console command name
@@ -2696,49 +2703,58 @@ export type CommandName =
2696
2703
  * Arguments that has to be passed to the command. Leave empty if it has not parameters
2697
2704
  */
2698
2705
  export type ValueOfTheCommand = string;
2706
+ export type PropertiesConsoleCommands = PropertiesConsoleCommandsItems[];
2699
2707
 
2700
2708
  export interface CryProjSchema {
2701
- console_variables?: {
2702
- name: VariableName;
2703
- value: ValueOfTheCVar;
2704
- [k: string]: any;
2705
- }[];
2706
- content: {
2707
- assets?: AssetsFolder[];
2708
- code: CodeFolder[];
2709
- libs?: {
2710
- name?: LibSName;
2711
- shared?: {
2712
- any?: LibSNameToImportForAllTheSupportedPlatforms;
2713
- win_x64?: LibSNameToImportForTheWinX64Platform;
2714
- win_x86?: LibSNameToImportForTheWinX86Platform;
2715
- [k: string]: any;
2716
- };
2717
- [k: string]: any;
2718
- }[];
2719
- [k: string]: any;
2720
- };
2721
- info: {
2722
- name: ProjectName;
2723
- guid?: ProjectGUID;
2724
- [k: string]: any;
2725
- };
2726
- require: {
2727
- engine: EngineVersion;
2728
- plugins?: {
2729
- path: PluginName;
2730
- type: PluginType;
2731
- platforms?: ThisPluginWillBeUsedOnlyByThesePlatforms[];
2732
- [k: string]: any;
2733
- }[];
2734
- [k: string]: any;
2735
- };
2736
- type?: string;
2709
+ console_variables?: PropertiesConsoleVariables;
2710
+ content: PropertiesContent;
2711
+ info: PropertiesInfo;
2712
+ require: PropertiesRequire;
2713
+ type?: PropertiesType;
2737
2714
  version: ProjectVersion;
2738
- console_commands?: {
2739
- name: CommandName;
2740
- value: ValueOfTheCommand;
2741
- [k: string]: any;
2742
- }[];
2743
- [k: string]: any;
2715
+ console_commands?: PropertiesConsoleCommands;
2716
+ [k: string]: unknown;
2717
+ }
2718
+ export interface PropertiesConsoleVariablesItems {
2719
+ name: VariableName;
2720
+ value: ValueOfTheCVar;
2721
+ [k: string]: unknown;
2722
+ }
2723
+ export interface PropertiesContent {
2724
+ assets?: PropertiesContentPropertiesAssets;
2725
+ code: PropertiesContentPropertiesCode;
2726
+ libs?: PropertiesContentPropertiesLibs;
2727
+ [k: string]: unknown;
2728
+ }
2729
+ export interface PropertiesContentPropertiesLibsItems {
2730
+ name?: LibSName;
2731
+ shared?: PropertiesContentPropertiesLibsItemsPropertiesShared;
2732
+ [k: string]: unknown;
2733
+ }
2734
+ export interface PropertiesContentPropertiesLibsItemsPropertiesShared {
2735
+ any?: LibSNameToImportForAllTheSupportedPlatforms;
2736
+ win_x64?: LibSNameToImportForTheWinX64Platform;
2737
+ win_x86?: LibSNameToImportForTheWinX86Platform;
2738
+ [k: string]: unknown;
2739
+ }
2740
+ export interface PropertiesInfo {
2741
+ name: ProjectName;
2742
+ guid?: ProjectGUID;
2743
+ [k: string]: unknown;
2744
+ }
2745
+ export interface PropertiesRequire {
2746
+ engine: EngineVersion;
2747
+ plugins?: PropertiesRequirePropertiesPlugins;
2748
+ [k: string]: unknown;
2749
+ }
2750
+ export interface PropertiesRequirePropertiesPluginsItems {
2751
+ path: PluginName;
2752
+ type: PluginType;
2753
+ platforms?: PropertiesPluginsItemsPropertiesPlatforms;
2754
+ [k: string]: unknown;
2755
+ }
2756
+ export interface PropertiesConsoleCommandsItems {
2757
+ name: CommandName;
2758
+ value: ValueOfTheCommand;
2759
+ [k: string]: unknown;
2744
2760
  }
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.54.schema.",
5
5
  "license": "MIT",
6
6
  "main": "index.d.ts",
7
7
  "name": "@schemastore/cryproj.54.schema",
8
- "repository": "https://github.com/ffflorian/schemastore-updater/tree/master/schemas/cryproj.54.schema",
8
+ "repository": "https://github.com/ffflorian/schemastore-updater/tree/main/schemas/cryproj.54.schema",
9
9
  "scripts": {},
10
- "typesPublisherContentHash": "a14d11a77b99448c3436e124f60cda54d805ae8ac4580caaab15c2da64bfbd5e",
10
+ "typesPublisherContentHash": "7c936790f9120e6dc26ed92d055484e558cfddbe044dc58bba9adf1ebe882a9f",
11
11
  "types": "index.d.ts",
12
- "version": "0.0.3",
12
+ "version": "0.0.5",
13
13
  "typeScriptVersion": "2.2"
14
14
  }