@salesforce/lds-adapters-industries-externaldocument 1.124.2 → 1.124.3

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 (25) hide show
  1. package/dist/es/es2018/industries-externaldocument.js +766 -766
  2. package/dist/{types → es/es2018/types}/src/generated/adapters/adapter-utils.d.ts +66 -66
  3. package/dist/{types → es/es2018/types}/src/generated/adapters/createExternalDocument.d.ts +15 -15
  4. package/dist/{types → es/es2018/types}/src/generated/adapters/getExternalDocument.d.ts +27 -27
  5. package/dist/{types → es/es2018/types}/src/generated/adapters/saveExternalDocument.d.ts +15 -15
  6. package/dist/{types → es/es2018/types}/src/generated/artifacts/main.d.ts +3 -3
  7. package/dist/{types → es/es2018/types}/src/generated/artifacts/sfdc.d.ts +5 -5
  8. package/dist/{types → es/es2018/types}/src/generated/resources/getConnectExternalDocument.d.ts +16 -16
  9. package/dist/{types → es/es2018/types}/src/generated/resources/patchConnectExternalDocument.d.ts +13 -13
  10. package/dist/{types → es/es2018/types}/src/generated/resources/postConnectExternalDocument.d.ts +13 -13
  11. package/dist/{types → es/es2018/types}/src/generated/types/ExternalDocCreationInputRepresentation.d.ts +39 -39
  12. package/dist/{types → es/es2018/types}/src/generated/types/ExternalDocCreationInputRepresentationWrapper.d.ts +39 -39
  13. package/dist/{types → es/es2018/types}/src/generated/types/ExternalDocCreationOutputRepresentation.d.ts +48 -48
  14. package/dist/{types → es/es2018/types}/src/generated/types/ExternalDocumentMetadataRepresentation.d.ts +30 -30
  15. package/dist/{types → es/es2018/types}/src/generated/types/ExternalDocumentOutputRepresentation.d.ts +45 -45
  16. package/dist/{types → es/es2018/types}/src/generated/types/ObjectReferenceRepresentation.d.ts +33 -33
  17. package/dist/{types → es/es2018/types}/src/generated/types/SaveExternalDocumentInputRepresentation.d.ts +36 -36
  18. package/dist/{types → es/es2018/types}/src/generated/types/SaveExternalDocumentInputRepresentationWrapper.d.ts +39 -39
  19. package/dist/{types → es/es2018/types}/src/generated/types/SaveExternalDocumentRepresentation.d.ts +45 -45
  20. package/dist/{types → es/es2018/types}/src/generated/types/type-utils.d.ts +39 -39
  21. package/package.json +5 -5
  22. package/sfdc/index.d.ts +1 -1
  23. package/sfdc/index.js +795 -795
  24. package/dist/umd/es2018/industries-externaldocument.js +0 -811
  25. package/dist/umd/es5/industries-externaldocument.js +0 -816
@@ -1,39 +1,39 @@
1
- import { NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
- export declare const ObjectFreeze: {
3
- <T extends Function>(f: T): T;
4
- <T_1 extends {
5
- [idx: string]: object | U | null | undefined;
6
- }, U extends string | number | bigint | boolean | symbol>(o: T_1): Readonly<T_1>;
7
- <T_2>(o: T_2): Readonly<T_2>;
8
- }, ObjectKeys: {
9
- (o: object): string[];
10
- (o: {}): string[];
11
- }, ObjectCreate: {
12
- (o: object | null): any;
13
- (o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
14
- }, ObjectAssign: {
15
- <T extends {}, U>(target: T, source: U): T & U;
16
- <T_1 extends {}, U_1, V>(target: T_1, source1: U_1, source2: V): T_1 & U_1 & V;
17
- <T_2 extends {}, U_2, V_1, W>(target: T_2, source1: U_2, source2: V_1, source3: W): T_2 & U_2 & V_1 & W;
18
- (target: object, ...sources: any[]): any;
19
- };
20
- export declare const ArrayIsArray: (arg: any) => arg is any[];
21
- export declare const JSONStringify: {
22
- (value: any, replacer?: ((this: any, key: string, value: any) => any) | undefined, space?: string | number | undefined): string;
23
- (value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string;
24
- };
25
- type AllowedPrimitives = boolean | string | number | Date | null;
26
- type Value<T> = T extends AllowedPrimitives ? T : RecursivePartial<T>;
27
- export type RecursivePartial<T> = null | {
28
- [P in keyof T]?: T[P] extends Array<infer U> ? Array<Value<U>> | null : Value<T[P]> | null;
29
- };
30
- export declare function equalsArray<U, V extends U[]>(a: V, b: V, equalsItem: (itemA: U, itemB: U) => boolean | void): boolean;
31
- export declare function equalsObject<U, V extends {
32
- [key: string]: U;
33
- }>(a: V, b: V, equalsProp: (propA: U, propB: U) => boolean | void): boolean;
34
- export declare function deepFreeze(value: any): void;
35
- export declare function createLink(ref: string | $64$luvio_engine_NormalizedKeyMetadata): {
36
- __ref: string;
37
- };
38
- export declare function assignMetadataLink(entry: any, metadataKey: string | $64$luvio_engine_NormalizedKeyMetadata): void;
39
- export {};
1
+ import { NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const ObjectFreeze: {
3
+ <T extends Function>(f: T): T;
4
+ <T_1 extends {
5
+ [idx: string]: object | U | null | undefined;
6
+ }, U extends string | number | bigint | boolean | symbol>(o: T_1): Readonly<T_1>;
7
+ <T_2>(o: T_2): Readonly<T_2>;
8
+ }, ObjectKeys: {
9
+ (o: object): string[];
10
+ (o: {}): string[];
11
+ }, ObjectCreate: {
12
+ (o: object | null): any;
13
+ (o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
14
+ }, ObjectAssign: {
15
+ <T extends {}, U>(target: T, source: U): T & U;
16
+ <T_1 extends {}, U_1, V>(target: T_1, source1: U_1, source2: V): T_1 & U_1 & V;
17
+ <T_2 extends {}, U_2, V_1, W>(target: T_2, source1: U_2, source2: V_1, source3: W): T_2 & U_2 & V_1 & W;
18
+ (target: object, ...sources: any[]): any;
19
+ };
20
+ export declare const ArrayIsArray: (arg: any) => arg is any[];
21
+ export declare const JSONStringify: {
22
+ (value: any, replacer?: ((this: any, key: string, value: any) => any) | undefined, space?: string | number | undefined): string;
23
+ (value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string;
24
+ };
25
+ type AllowedPrimitives = boolean | string | number | Date | null;
26
+ type Value<T> = T extends AllowedPrimitives ? T : RecursivePartial<T>;
27
+ export type RecursivePartial<T> = null | {
28
+ [P in keyof T]?: T[P] extends Array<infer U> ? Array<Value<U>> | null : Value<T[P]> | null;
29
+ };
30
+ export declare function equalsArray<U, V extends U[]>(a: V, b: V, equalsItem: (itemA: U, itemB: U) => boolean | void): boolean;
31
+ export declare function equalsObject<U, V extends {
32
+ [key: string]: U;
33
+ }>(a: V, b: V, equalsProp: (propA: U, propB: U) => boolean | void): boolean;
34
+ export declare function deepFreeze(value: any): void;
35
+ export declare function createLink(ref: string | $64$luvio_engine_NormalizedKeyMetadata): {
36
+ __ref: string;
37
+ };
38
+ export declare function assignMetadataLink(entry: any, metadataKey: string | $64$luvio_engine_NormalizedKeyMetadata): void;
39
+ export {};
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-industries-externaldocument",
3
- "version": "1.124.2",
3
+ "version": "1.124.3",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "This External Document API family will allow to create, edit or read the information about the document which is present in the external editor outside Salesforce. ",
6
- "main": "dist/umd/es2018/industries-externaldocument.js",
6
+ "main": "dist/es/es2018/industries-externaldocument.js",
7
7
  "module": "dist/es/es2018/industries-externaldocument.js",
8
- "types": "dist/types/src/generated/artifacts/main.d.ts",
8
+ "types": "dist/es/es2018/types/src/generated/artifacts/main.d.ts",
9
9
  "files": [
10
10
  "dist",
11
11
  "sfdc",
@@ -14,8 +14,8 @@
14
14
  "exports": {
15
15
  ".": {
16
16
  "import": "./dist/es/es2018/industries-externaldocument.js",
17
- "require": "./dist/umd/es2018/industries-externaldocument.js",
18
- "types": "./dist/types/src/generated/artifacts/main.d.ts"
17
+ "require": "./dist/es/es2018/industries-externaldocument.js",
18
+ "types": "./dist/es/es2018/types/src/generated/artifacts/main.d.ts"
19
19
  },
20
20
  "./sfdc": {
21
21
  "import": "./sfdc/index.js",
package/sfdc/index.d.ts CHANGED
@@ -1 +1 @@
1
- export * from '../dist/types/src/generated/artifacts/sfdc';
1
+ export * from '../dist/es/es2018/types/src/generated/artifacts/sfdc';