@osdk/generator 0.0.14 → 0.0.15

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 (18) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/build/js/index.js +165 -169
  3. package/build/js/index.js.map +1 -1
  4. package/build/js/index.mjs +163 -167
  5. package/build/js/index.mjs.map +1 -1
  6. package/build/types/v1.1/backcompat/generateOAuthDistDir.d.ts +2 -0
  7. package/build/types/v1.1/backcompat/internal-foundry-oauth-dist/generateConfidentialClientDir.d.ts +2 -0
  8. package/build/types/v1.1/backcompat/internal-foundry-oauth-dist/generatePublicClientDir.d.ts +2 -0
  9. package/build/types/v1.1/backcompat/internal-foundry-oauth-dist/generateUserTokenDir.d.ts +2 -0
  10. package/build/types/v1.1/backcompat/internal-foundry-ontology-runtime-dist/baseTypes/generateAttachmentsDir.d.ts +2 -0
  11. package/build/types/v1.1/backcompat/internal-foundry-ontology-runtime-dist/baseTypes/generateGeoshapesDir.d.ts +2 -0
  12. package/build/types/v1.1/backcompat/internal-foundry-ontology-runtime-dist/baseTypes/generateObjectSetDir.d.ts +2 -0
  13. package/build/types/v1.1/backcompat/internal-foundry-ontology-runtime-dist/baseTypes/generateSharedObjectCode.d.ts +2 -0
  14. package/build/types/v1.1/backcompat/internal-foundry-ontology-runtime-dist/baseTypes/generateTimeSeriesDir.d.ts +2 -0
  15. package/build/types/v1.1/backcompat/internal-foundry-ontology-runtime-dist/generateBaseTypesDir.d.ts +2 -0
  16. package/build/types/v1.1/backcompat/internal-foundry-ontology-runtime-dist/generateClientDir.d.ts +2 -0
  17. package/build/types/v1.1/backcompat/internal-foundry-ontology-runtime-dist/generateFiltersDir.d.ts +2 -0
  18. package/package.json +1 -1
@@ -0,0 +1,2 @@
1
+ import type { MinimalFs } from "../../MinimalFs";
2
+ export declare function generateOAuthClientDistDir(outDir: string, fs: MinimalFs): Promise<void>;
@@ -0,0 +1,2 @@
1
+ import type { MinimalFs } from "../../../MinimalFs";
2
+ export declare function generateConfidentialClientDir(fs: MinimalFs, oauthDistDir: string): Promise<void>;
@@ -0,0 +1,2 @@
1
+ import type { MinimalFs } from "../../../MinimalFs";
2
+ export declare function generatePublicClientDir(fs: MinimalFs, oauthDistDir: string): Promise<void>;
@@ -0,0 +1,2 @@
1
+ import type { MinimalFs } from "../../../MinimalFs";
2
+ export declare function generateUserTokenDir(fs: MinimalFs, oauthDistDir: string): Promise<void>;
@@ -0,0 +1,2 @@
1
+ import type { MinimalFs } from "../../../../MinimalFs";
2
+ export declare function generateAttachmentsDir(attachmentsDir: string, fs: MinimalFs): Promise<void>;
@@ -0,0 +1,2 @@
1
+ import type { MinimalFs } from "../../../../MinimalFs";
2
+ export declare function generateGeoshapesDir(runtimeDistDir: string, fs: MinimalFs): Promise<void>;
@@ -0,0 +1,2 @@
1
+ import type { MinimalFs } from "../../../../MinimalFs";
2
+ export declare function generateObjectSetDir(objectSetDir: string, fs: MinimalFs): Promise<void>;
@@ -0,0 +1,2 @@
1
+ import type { MinimalFs } from "../../../../MinimalFs";
2
+ export declare function generateSharedObjectCodeDir(sharedObjectCodeDir: string, fs: MinimalFs): Promise<void>;
@@ -0,0 +1,2 @@
1
+ import type { MinimalFs } from "../../../../MinimalFs";
2
+ export declare function generateTimeSeriesDir(timeseriesDir: string, fs: MinimalFs): Promise<void>;
@@ -0,0 +1,2 @@
1
+ import type { MinimalFs } from "../../../MinimalFs";
2
+ export declare function generateBaseTypesDir(runtimeDistDir: string, fs: MinimalFs): Promise<void>;
@@ -0,0 +1,2 @@
1
+ import type { MinimalFs } from "../../../MinimalFs";
2
+ export declare function generateClientDir(runtimeDistDir: string, fs: MinimalFs): Promise<void>;
@@ -0,0 +1,2 @@
1
+ import type { MinimalFs } from "../../../MinimalFs";
2
+ export declare function generateFiltersDir(runtimeDistDir: string, fs: MinimalFs): Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/generator",
3
- "version": "0.0.14",
3
+ "version": "0.0.15",
4
4
  "description": "",
5
5
  "access": "public",
6
6
  "license": "Apache-2.0",